[
  {
    "path": ".gitignore",
    "content": ".DS_Store\n\n# History files\n.Rhistory\n.Rapp.history\n\n# Session Data files\n.RData\n\n# Example code in package build process\n*-Ex.R\n\n# Output files from R CMD build\n/*.tar.gz\n\n# Output files from R CMD check\n/*.Rcheck/\n\n# RStudio files\n.Rproj.user/\n\n# produced vignettes\nvignettes/*.html\nvignettes/*.pdf\n\n# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3\n.httr-oauth\n\n# knitr and R markdown default cache directories\n/*_cache/\n/cache/\n\n# Temporary files created by R markdown\n*.utf8.md\n*.knit.md\n\n# Shiny token, see https://shiny.rstudio.com/articles/shinyapps.html\nrsconnect/\n.Rproj.user\n\n# Don't need renv in docs/\ndocs/renv.lock"
  },
  {
    "path": ".nojekyll",
    "content": ""
  },
  {
    "path": "00_narrative.Rmd",
    "content": "---\ntitle: \"History of Teacup Giraffes\"\noutput:\n  bookdown::html_document2:\n    includes:\n      in_header: assets/00_narrative.html\n    toc: false\n---"
  },
  {
    "path": "01_introToR.Rmd",
    "content": "---\ntitle: \"Introduction to the R programming language\"\noutput:\n  bookdown::html_document2:\n    includes:\n      in_header: assets/01_introToR_image.html\n      after_body: assets/foot.html\n---\n# Ready to begin? \nYou’re about to start an adventure to learn R and statistics. If this is your first time working with R, then you should begin on this page. If you’re comfortable with R basics and you’d like to start with the statistical content, please proceed onto the islands with this [link](02_bellCurve.html).\n\n# Using interactive windows\nThroughout this material we will use an interactive version of R provided by [learnR](https://rstudio.github.io/learnr/). Although this way of using R comes with some limitations regarding functionality, it will give us the benefit of being able to run R code without switching from a web browser to a standalone application such as [RStudio](https://www.rstudio.com/). \n\nBelow you can see an example of an interactive R window. In the white window (under the button with the text *Start Over*) is where you will write code to be executed. To run code you have written, click the green *Run Code* button and observe how information pops up under the window. If no errors were made, this is where the answer will be returned. Error messages are shown in a red box, also under the learnR window. \n\nNow spend a few minutes using the window below as a calculator and run simple calculations by clicking *Run Code*.\n\n<!---LEARNR EX 1-->\n\n<iframe class=\"interactive\" id=\"myIframe1\" src=\"https://tinystats.shinyapps.io/01-intro-ex1/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n# Objects in R\nR is an object oriented programming language, meaning when working in R we will create different types of objects and use operators and functions to manipulate these objects. \n\nTo create a new object in R we first pick a name for the object and tell R what to assign to it using **assignment operators**; either `=` or a small arrow `<-` made from the combination of `<` and `-`. \n\n* Use the window below to assign numbers to objects and output the content by typing out the name of the object.\n* After creating two numerical objects, use the mathematical operator `+` to add these objects together and see what happens when you run the code.\n\n<!---LEARNR EX 2-->\n\n<iframe class=\"interactive\" id=\"myIframe2\" src=\"https://tinystats.shinyapps.io/01-intro-ex2/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n# Common functions\nMost of the time when we work in R, we will use functions; either pre-written functions or ones we write ourselves. **Functions** make it easy to use sets of code instructions repeatedly (without filling our scripts with the code underlying the function) and help us carry out multiple tasks in a single step without having to go through the details of how the steps are executed. \n\nTo use functions in R, we type the name of the function followed by parentheses (e.g. `print( )`). Within the parentheses is where we will specify the function input and options, separated by commas `,`. One function you will use a lot is the **combine function** `c( )`, which as the name suggests lets you concatenate different types of values. \n\n* In the window below, create an object combining a set of numerical values using `c( )`, separating the different values with commas. \n* Then sum up the content of this object using `sum( )`.\n\n\n<!---LEARNR EX 3-->\n\n<iframe class=\"interactive\" id=\"myIframe3\" src=\"https://tinystats.shinyapps.io/01-intro-ex3/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n# Writing your own function\nR makes it easy to create user defined functions by using `function( )`. Here is how it works:\n\n  * Give your function an object name and assign the function to it, e.g. `my_function_name <- function( )`. \n  * Within the parentheses you specify inputs and options just like how pre-written functions work, e.g. `function(input_data)`\n  * Next, put all the code you want your function to execute inside curly brackets like this: `function(input_data){code to run}`\n  * Use `return( )` to specify what you want to your function to output once it is done running the code. \n  \nUse the following instructions to complete the function in the window below:\n\n  * We've started writing a function for you that will sum up values and take the square root of the sum. To take the square root, we use the `sqrt( )` function.  \n  * Complete this function by filling in `input_data` for the sum( ), and then filling in the remaining empty parentheses with the appropriate object names.\n    * Now create an object containing a set of numerical values and call it `my_combined_values`. Then try out your new function on this object, which will compute the square root of the object's sum.\n\n\n<!---LEARNR EX 4-->\n\n<iframe class=\"interactive\" id=\"myIframe4\" src=\"https://tinystats.shinyapps.io/01-intro-ex4/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n# Functions within functions\nIt is also possible (and sometimes very useful) to put a function within another function. For example, we could combine multiple steps into one like this: `sqrt(prod(c(1,2)))`, resulting in one line of code that both generates the values and directly calculates the square root of the product of those values.\n\n# Vectors\nThe `c( )` function will combine values and create a specific type of data structure called an **atomic vector**. A vector is a simple one-dimensional structure that can contain only one type of value. This means that storing multiple numeric values in a vector, as we have already done, works just fine. But there are other types of values that can be used in R, for example **character** values. These values are created by putting text or numbers within quotes such as `\"Giraffe\"`. If we try to combine numeric and character values in the same vector, R will convert both values to the character type.  \n\n```{r}\nc(\"Giraffe\", 123)\n```\n\nThis behavior is not always desirable, so it is a good idea to try to only combine values of the same type.\n\n# Boolean values and logical operators\nAnother type of variable in R is the boolean (TRUE/FALSE) type. **Boolean** or logical vectors can only take two different values; TRUE or FALSE (case sensitive). You will see these types of values mostly when logical operators are used to test how different objects relate to each other. For example, the **logical operator** `==` can be used to test if two different objects are exactly the same and `TRUE` will be returned only if the identity is fulfilled.\n\n\n```{r}\n\"Giraffe\" == \"Teacup\"\nsqrt(100) == 10\n```\n\n\n# Data frames\nVectors are one of multiple data structures in R. We will not cover all types of structures here, but perhaps the most common one encountered when analyzing data in R is the **data frame**. Data frames are two dimensional, which basically means that data frames let you store multiple vectors in one object. Oftentimes, each vector will be a new column in the data frame. One constraint though is that all vectors/columns need to be of the same length. \n\n* In the window below, use the `data.frame()` function to create a data frame with two columns called *x* and *y*. When creating data frames we specify a column by giving the column a name and assigning values or vectors to it, e.g. `data.frame(x= c(\"Giraffe\", \"Teacup\"))`. \n* Also observe what happens when you try to combine an x and y vector of different lengths. \n\n<!---LEARNR EX 5-->\n\n<iframe class=\"interactive\" id=\"myIframe5\" src=\"https://tinystats.shinyapps.io/01-intro-ex5/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\nAs you could see above, running a line of code with just the name of a data structure (in this case, the letter *d*) will print the full data frame in the console output (if no errors were made!). If you instead are interested in only one of the columns, this can be specified by using the `$` operator followed by the column's name, e.g `d$x`. Try it out below!\n\n<!---LEARNR EX 6-->\n\n<iframe class=\"interactive\" id=\"myIframe6\" src=\"https://tinystats.shinyapps.io/01-intro-ex6/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n# You're ready to go! \nThis was a brief introduction into R, but now you know what you need to get started with the [first module](02_bellCurve.html)!\n\n<script>\n  iFrameResize({}, \".interactive\");\n</script>\n"
  },
  {
    "path": "02_bellCurve.Rmd",
    "content": "---\ntitle: \"The Normal Distribution\"\noutput:\n  bookdown::html_document2:\n    includes:\n      in_header: assets/02_bellCurve_image.html\n      after_body: assets/foot.html\n---\n\n```{r setup, include=FALSE}\nknitr::opts_chunk$set(echo = TRUE, fig.align = \"center\")\nlibrary(here)\nlibrary(plotly)\nlibrary(tweenr)\nlibrary(here)\nlibrary(ggplot2)\n\n```\n\n:::obj\n\n  **Module learning objectives**\n  \n  1. Define what a distribution is\n  1. Describe the characteristics of a normal distribution \n  1. Create a histogram using `ggplot` and modify its appearance\n  1. Define sample and population\n  1. Explain why distributions of sample data that come from populations with normal distibutions don't always look normal\n\n:::\n\n# Welcome to the island\n\nTwo weeks after starting grad school, you're assigned to go to a small island east of Madagascar to study a mysterious mammalian species that has caught your advisor's interest. After a long trip on various ships and smaller boats, you arrive on the island, excited to collect data on this new species. \n\nThe only information your advisor has given you is that they are small giraffe-like creatures. He called them teacup giraffes. You waste no time to suit up in your field gear, and your guide leads you deep into the dense island brush. Filled with anticipation, you start searching for your first subject.\n\nAfter a one hour hike, you reach a clearing where tall cypress trees encircle low growth vegetation. Suddenly, you experience your first encounter with a little giraffe, whose cool drink from a puddle you seem to have interrupted. Smaller than you had imagined--its slender body does not even clear the height of a dandelion. You toss a celery stick in its direction, and you're pleasantly surprised that it immediately trots over to you and starts vigorously munching, creating a celery confetti cloud. After observing this behavior for a while and taking some notes on how quickly it devours your celery supply, you bring out your measuring tape and record the giraffe's height.\n\n\\\n\n```{r, out.width=\"600px\", echo= FALSE}\nknitr::include_graphics(\"images/02_bellCurve/Cool-Drink.jpg\")\n```\n\n\\\n\nA few minuters later, you leave the clearing and forge a path through thick ferns and palm leaves. You pause for a drink from your water bottle long enough to pinpoint a fast-paced crunching noise. In the shade of a fallen tree, there's another teacup giraffe annihilating a small patch of wild celery for its afternoon snack. You're surprised how much smaller this one is--about as tall as your Swiss army knife. Throughout the day you encounter several teacup giraffes, and you realize that although all petite, they are remarkably variable in stature.\n\nThe next week is spent trekking and measuring every giraffe you can manage to get near enough. You take advantage of the fact that they come running everytime you pull out a celery stalk from your lunch bag, and you're relieved that it takes them long enough to finish snacking for you to measure their height. With the help of your guide, you manage to measure 50 giraffes in the first week.\n\n\n```{r, out.width=\"800px\", echo= FALSE}\nknitr::include_graphics(\"images/02_bellCurve/giraffe_lineup4.jpg\")\n```\n\n\nThere is a second island not too far away, where your guide has indicated there may be more giraffes. You wonder how the population of giraffes on the second island may be different, and so you make arrangements to go to Island #2 the following week. It is not too long until you have added another 50 measurements of these tiny giraffes from this second excursion.\n\n```{r, out.width=\"800px\", echo= FALSE}\nknitr::include_graphics(\"images/02_bellCurve/giraffe_islands2.jpg\")\n```\n\n\n# Visualize the data\n\nAfter collecting 100 measurements, you decide to take a first look at the data. What's the best way to look at data when you know nothing about it...? You take a long walk on the beach to ponder this.\n\nYou can start by scanning the values for the shortest and tallest heights. You see the range is between 6 and 20cm. So you draw a ruler in the sand with the extreme heights on either end. You'd like to see how many times each height occurs in your data set, and so you grab a small colorful stone from the shore to represent each individual giraffe's height and place it just above your ruler mark. You put out a new stone for each height and continue doing this for each individual to see which heights \"stack up\" along your ruler. To keep track of which heights came from different islands, you pick differently colored stones for each group. Look below for a sped-up version of this process! The y-axis is frequency. The x-axis is the height.\n\n```{r, include=FALSE}\nknitr::opts_chunk$set(echo = TRUE)\n\nset.seed(12)\nx <- round(rnorm(50, 10, 2))\nx2 <- round(rnorm(50, 18, 1.2))\nx <- c(x, x2)\ndf <- data.frame(x = x, y = 23, type = rep(c(\"Island #1\", \"Island #2\"), \n    each = 50))\ndfs <- list(df)\nfor (i in seq_len(nrow(df)))\n{\n    dftemp <- tail(dfs, 1)\n    dftemp[[1]]$y[i] <- sum(dftemp[[1]]$x[seq_len(i)] == dftemp[[1]]$x[i])\n    dfs <- append(dfs, dftemp)\n}\ndfs <- append(dfs, dfs[rep(length(dfs), 3)])\ndft <- tween_states(dfs, 10, 1, \"cubic-in\", 500)\ndft$y <- dft$y - 0.5\ndft <- dft[dft$y != 23, ]\n\nm <- list(l = 50, r = 50, b = 10, t = 10, pad = 4)\n\np <- \n  dft %>% \n  plot_ly(x = ~x, y = ~y, frame = ~.frame, color = ~type, \n          colors = c(\"green3\", \"turquoise3\"), \n          marker = list(size = 16), width = 630, height = 390) %>%\n  config(displayModeBar = F) %>%\n  layout(xaxis = list(range = c(4, 23), title = \"Teacup Giraffe heights\", zeroline = F), \n         yaxis = list(range = c(-0.5, 21), title = \"Frequency\", zeroline = F), \n         legend = list(x = 0.075, y = 0.91), \n         autosize = F, margin = m) %>%\n  animation_opts(frame = 50, transition = 0, redraw = FALSE) %>%\n  animation_slider(hide = T) %>%\n  animation_button(x = 1, xanchor = \"right\", y = 0, yanchor = \"bottom\")\np\n\nhtmltools::save_html(p, here(file = \"images/02_bellCurve/two_animated_hist.html\"))\n```\n<div style=\"margin-top:30px\">\n</div>\n<center>\n<iframe style=\"margin:0px; padding:0px; display:block; border:0px\" src=\"images/02_bellCurve/two_animated_hist.html\" width=\"650\" height=\"450\" scrolling=\"yes\" seamless=\"seamless\" frameBorder=\"0\"> </iframe>\n</center>\n\nAs you put the last stone in place, your local guide saunters by and glances at your markings, \"What a nice histogram!\" \n\n\n# Distributions\n\nThe histogram above shows the **distribution**, or shape, of your data. The distribution of a variable in a data set gives you information about:\n\n  * All the values the variable takes on in your data set, when the data are split into reasonably sized groups  \n  * How often each value occurs  \n  * The shape, center, and amount of variability in the data  \n \nChecking the distribution of the data is always one of the first steps of data anlaysis. By knowing the shape of the data, you gain insights into some of the data's statistical properties (which become useful down the line, for example, when you need to decide whether a particular statistical test would be appropriate). \n\n# The normal distribution\n\nAlthough the data can be distributed in many shapes, there are some general shapes that occur so frequently in nature that these distributions are given their own names. The most well-known distribution has a shape similar to a bell and is called the *normal distribution* (or sometimes \"the bell curve\" or just \"normal curve\"). \n \n There are a few characteristics of the normal distribution:\n \n  * There is a single peak\n  * The mass of the distribution is at its center\n  * There is symmetry about the center line\n  \n\n```{r, out.width=\"100%\", echo= FALSE}\nknitr::include_graphics(\"images/02_bellCurve/normal_hist.png\")\n```\n\n \nTaking a look at the stones in the sand, you see two bell-shaped distributions. One for each island. It looks like giraffe heights on each island follow a normal distribution--- and that's a good thing because you remember your stats textbook always talking about how normally distributed data behaves well! Phew!\n\nHappy with your progress thus far, you are excited to send your histogram results to your PhD mentor back in the homeland. Instead of taking a picture of your stone histogram, you turn to R to create the perfect figure.\n<div style=\"margin-bottom:50px\"></div></p>\n\n# Our dataframe\n\nTime to apply your [Intro to R knowledge](01_introToR.html). The heights from your logbook have been stored in a data frame called `d`. Below we show the last few observations from this vector, using the `tail()` function, which all happen to be from Island #2.\n\n<div style=\"margin-bottom:15px\">\n</div>\n\n```{r, echo=FALSE}\nset.seed(12)\n\nx <- rnorm(50, 10, 2)\nx2 <- rnorm(50, 18, 1.2)\nx <- data.frame(x = x, type = \"Island #1\")\nx2 <- data.frame(x = x2, type = \"Island #2\")\n\nd <- rbind(x, x2)\ncolnames(d) <- c(\"Height\", \"Location\")\n```\n\n```{r, include = TRUE}\ntail(d)\n```\n\n<div style=\"margin-bottom:50px\"></div>\n\n# Making a histogram with `ggplot2`\n\nWe will use the *ggplot2* package for all our graphing. Check out [this page](https://ggplot2.tidyverse.org/reference) as a reference. \n\nWe need some basic components as a bare minimum to get started. We can customize components later to make the graph more to our liking. The steps we will go through are:\n\n  * First we need to tell R that we want to create a ggplot. This is done by **using the `ggplot( )` function**. Within the parentheses, we can specify the data frame that contains what we want to plot, using the option `data = d`. We also have to tell ggplot *what* columns of the data frame to actually plot-- we do this with the argument that stands for aesthetics: `aes( )`. In our case, only the x-axis variable `Height` needs to be specified.\n\n  * Next, **add a `geom` layer**, which will determine the type of visual representation that will be used for the data. Different ggplot layers and options are added using a plus sign `+`. In our case, we will write `+` and then `geom_histogram( )`. To make your plot look similar to your sand drawing, you want to add an optional argument within the parentheses of `geom_histogram`, which will set the bin width to 1cm: `geom_histogram( binwidth = 1 )`.\n\nHere we are using `geom_histogram`, but there are many other `geom_` layers that you could use instead for different plot types. Check some of them out [here](https://ggplot2.tidyverse.org/reference/#section-layer-geoms).\n\nA note about the `+`: You can keep adding new specifications on one long continuous line of code, separating each one with a `+`.  However, if you'd like to make the code easier to read by adding each specification to a new line, make sure the `+` is added to the end of the first line and not the new one.\n\nIt's a good idea to save any ggplot you make as an object. It's a helpful practice for when you'll do more complicated graphing later (e.g. combining plots).\n\nRun the code below to see what this basic histogram in ggplot looks like:\n\n\n<!---LEARNR EX 1-->\n\n<iframe class=\"interactive\" id=\"myIframe1\" src=\"https://tinystats.shinyapps.io/02-bellCurve-ex1/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n\n# Customize your ggplot\n\nLet's go over some quick ways we can customize any ggplot. First, we can tell ggplot that we want the data from the two islands to be different colors. And second, we can to specify the colors we want to use. \n\n**Different color for each group:** Within `aes( )`, we add a `fill = ` argument. Here is where you put the name of the variable that contains the categories that you want to distinguish with different colors. \n\nYou might be wondering why we don't use the `color= ` here instead (which is a valid argument for `aes( )`), and this is because we want to change the color of the *fill* of the bars, while `color = ` would change only the bar outline color (see below).\n\nTo choose colors ggplot should use, we need to add a new option ` + scale_fill_manual( )` and then specify the colors with the argument `values = `. To read more about how to create your own color scale, see this [page](https://ggplot2.tidyverse.org/reference/scale_manual.html). If you have more than one color you need to specify, make sure you combine them within the `c( )` function. \n\nColors in R can be specified in different ways. For example, you can use a string of the color name (see possible colors [here](http://sape.inf.usi.ch/quick-reference/ggplot2/colour)) or with [hex color codes](https://htmlcolorcodes.com/).\n\n**Outline Color:** To change the color of the outline, specify `color = ` within the parentheses of the `geom_` (i.e. `geom_histogram`). \n\n\nIn the window below, we have added some options that you can play around with. Use the descriptions above to:\n\n * Specify the variable that `fill` should be set to, as well as the colors for the fill and outline.\n * Try out some color specifications on your own, and then check out the solution to see what we picked.\n\n\\\n\n<!---LEARNR EX 2-->\n\n<iframe class=\"interactive\" id=\"myIframe2\" src=\"https://tinystats.shinyapps.io/02-bellCurve-ex2/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n\n\n```{r, out.width=\"600px\", echo= FALSE}\nknitr::include_graphics(\"images/02_bellCurve/Painter.png\")\n```\n\n\n**Playing around with \"complete themes\": ** ggplot has a nice way of changing many non-data display parameters at once though what is referred to as \"complete themes\". Check this [page](https://ggplot2.tidyverse.org/reference/ggtheme.html) for the available options.\n\n * Have fun testing out a few different complete themes by adding the argument with a `+` sign. \n * Try 3 different complete themes and take note of how the plot changes.\n\n <div style=\"margin-bottom:50px\"></div>\n\n<!---LEARNR EX 3-->\n\n<iframe class=\"interactive\" id=\"myIframe3\" src=\"https://tinystats.shinyapps.io/02-bellCurve-ex3/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n\\\n\nAfter trying different themes, you pick `theme_light()` and feel pretty good about your ggplot accomplishment. You send your plot to your PhD advisor, and within what feels like only minutes, you have a new attachment in your email inbox:  \n\n\\\n\n```{r, out.width=\"600px\", echo= FALSE}\nknitr::include_graphics(\"images/02_bellCurve/advisor_email.png\")\n```\n\n\nYou've got some more changes to make to your plot. Let's start with something easy:\n \n(1) **Remove the space between the bars and the x-axis**: Use the `scale_y_continuous()` argument, and inside the parentheses specify `expand = ` followed by two numbers within the `c( )` command. These two numbers represent how much above or below the data's range you would like to extend the y-axis by. \n\nThe function `scale_y_continuous` can be used for other purposes. See some examples and more documentation can be found [here](https://ggplot2.tidyverse.org/reference/scale_continuous.html).\n\n * Set axis limits\n * Set axis breaks \n * Transformations\n \n\\\n\n(2) **Change axes labels**: Add `labs( )` to the existing ggplot layers and specify each axis you'd like to label as arguments, e.g. `x = `, followed by the string for your label. If you'd like to learn more about manipulations you can do with `labs( )`, see [this reference](https://ggplot2.tidyverse.org/reference/labs.html). \n\n(3) In addition, `labs( )` can be used to **remove labels**. In this case, we can also include `fill = NULL` to remove the legend label (recall that the categories for our legend were determined by the `fill` argument in `aes()` previously).\n\nUse the window below to:\n\n * Remove the space and legend label\n * Change the x-axis label to \"Teacup Giraffe heights\" and the y-axis label to \"Frequency\".\n\n <div style=\"margin-bottom:50px\"></div>\n\n<!---LEARNR EX 4-->\n\n<iframe class=\"interactive\" id=\"myIframe4\" src=\"https://tinystats.shinyapps.io/02-bellCurve-ex4/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n\\\n\n(4) **Remove panel border** and 5.**Remove minor grid lines**: To make detailed changes to the layout, we can add a `theme( )` argument. Nested within `theme( )` we can use additional arguments, such as `panel.border= ` and `panel.grid.minor= `. Many `theme( )` arguments can be set to `element_blank( )` to remove the element in question. To read more about what can be modifed with `theme( )`, check out this [resource](https://ggplot2.tidyverse.org/reference/theme.html).\n\n * In the window below, use what you just learned to remove the panel border and the minor grid lines of the plot. \n\n\n<!---LEARNR EX 5-->\n\n<iframe class=\"interactive\" id=\"myIframe5\" src=\"https://tinystats.shinyapps.io/02-bellCurve-ex5/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n\\\n\n(6) **Move the Legend**: We will add two more arguments to `theme( )` to move the legend and make its background transparent. To change its position, use `legend.position = ` followed by the `c( )` command, in which you will specify the x- and y- positions. These values must be between 0 and 1. Specifying `c(0,0)`, for example, would place the legend at the bottom left of the plot, while `c(1,1)` would place it at the top right.  \n\nTo change the legend background to be transparent, we essentially remove it. Add the argument `legend.background =`. Take a look at previous steps to determine how you remove an element.  \n\n\n<!---LEARNR EX 6-->\n\n<iframe class=\"interactive\" id=\"myIframe6\" src=\"https://tinystats.shinyapps.io/02-bellCurve-ex6/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n\\\n\nHopefully your PhD advisor in the homeland will be satisfied with your new ggplot!\n\n\\\n\n# Things to think about {#bell-ttta}\n\nSince we could not take the height of every giraffe on each of the two islands, and it is unclear how many giraffes live on the islands, we had to rely on taking the heights of randomly selected groups of giraffes. \n\nA **sample**, in our case the 50 giraffes from each island, is a subset of a population. The **population** is defined as all available observations in a defined geographic area at a given point in time -- in this case, all existing giraffes on one of the islands while you are there. \n\nIf we pick our sample in a random way, then our hope is that our sample data will be representative of the population. The larger our sample is, the more of the population it will include, and thus, the more closely the sample will resemble the population in its statistical attributes (e.g the distribution). We then must acknowledge that the smaller our sample is, the less likely it is that it will be representative of the population. \n\nThe animation below illustrates how small samples can depart from the characteristics of the population. \n\n* The panels below show samples that all come from the same population. \n* Each frame of a panel, is a new sample drawn of the specified size.\n* Observe that the smaller samples tend to:\n    + Have oddly shaped distributions\n    + Jump around a lot\n  \n**Take heed that with inadequate sample sizes, your sample data may barely resemble the population you're interested in!**\n\n\nYou decided that you had the resources to collect data on 50 giraffes on each of the islands. Will a sample of 50 be good enough to get a sense for the true values of the giraffe populations?\n\n\\\n\n```{r fig.show=\"animate\", animation.hook = 'gifski', fig.width=10, fig.height=2, echo=FALSE, message=FALSE, warning=FALSE, results = 'hide', cache=TRUE}\nlims <- data.frame(min = c(0, 0, 0, 0), max = c(4, 16, 120, 1200))\ncols <- c(\"brown1\", \"darkturquoise\", \"royalblue1\", \"darkorchid1\")\nns <- c(\"10\", \"100\", \"1,000\", \"10,000\")\nplot1 <- function(x) {\n    d <- lapply(c(10, 100, 1000, 10000), function(x) {\n        d <- data.frame(x = rnorm(x), frame = x)\n        return(d)\n    })\n    \n    p <- lapply(1:4, function(y) ggplot(data = d[[y]], aes(x)) + geom_histogram(binwidth = 0.25, \n        color = \"white\", fill = cols[y]) + theme_light() + theme(panel.border = element_blank(), \n        panel.grid.minor = element_blank(), panel.grid.major = element_line(size = 0.2), \n        axis.ticks = element_blank(), strip.background = element_blank(), \n        strip.text.x = element_text(color = \"black\"), axis.text.x = element_blank(), \n        plot.title = element_text(hjust = 0.5, size = 12)) + guides(fill = FALSE) + \n        labs(x = NULL, y = NULL) + scale_y_continuous(expand = c(0, 0), \n        limits = c(lims[y, 1], lims[y, 2])) + xlim(-5, 5) + ggtitle(paste0(\"N=\", \n        ns[y])))\n    p <- cowplot::plot_grid(p[[1]], p[[2]], p[[3]], p[[4]], ncol = 4, align = \"hv\")\n    p\n}\n\nlapply(1:8, function(x) plot1())\n```\n\n\n\n<script>\n  iFrameResize({}, \".interactive\");\n</script>\n"
  },
  {
    "path": "03_mean.Rmd",
    "content": "---\ntitle: \"Mean, Median, and Mode\"\noutput:\n  bookdown::html_document2:\n    includes:\n      in_header: assets/03_mean_image.html\n      after_body: assets/foot.html\n---\n\n```{r setup, include=FALSE}\nknitr::opts_chunk$set(echo = TRUE, fig.align=\"center\")\n\nlibrary(ggplot2)\n#library(fGarch)\n#library(gifski)\nlibrary(emdbook)\nlibrary(plotly)\nlibrary(here)\n\n```\n\n:::obj\n**Module learning objectives**\n\n1. Describe 3 measures of centrality\n1. Explain the mathematical notation used for calculating the mean \n1. Write a function which calculates the mean for any vector\n1. Write a function which calculates the median for any vector\n1. Describe how the reliability of a sample mean will scale with increasing sample size\n\n:::\n\n# What are measures of centrality?\n\n\\\n\n```{r, echo=FALSE}\nset.seed(12)\nx <- rnorm(50, 10, 2)\nx2 <- rnorm(50, 18, 1.2)\nx <- data.frame(x = x, type = \"Island #1\")\nx2 <- data.frame(x = x2, type = \"Island #2\")\n\nd <- rbind(x, x2)\n\n# p <- ggplot(data = d, aes(d$x, fill = d$type)) + geom_histogram(binwidth = 1, \n#     color = \"white\") + theme_light() + scale_fill_manual(values = c(\"green3\", \n#     \"turquoise3\")) + labs(x = \"Teacup Giraffe heights\", y = \"Frequency\", \n#     fill = NULL) + scale_y_continuous(expand = c(0, 0)) + theme(panel.border = element_blank(), \n#     panel.grid.minor = element_blank(), axis.ticks.y = element_blank(), \n#     legend.position = c(0.165, 0.92), legend.background = element_blank())\n# \n# ggsave(filename = \"/Users/Desiree/Documents/New R Projects/Cars/p.png\", \n#     width = 5, height = 3, p)\n```\n\n```{r, out.width=\"500px\", echo= FALSE}\nknitr::include_graphics(\"images/03_mean/mean_hist.png\")\n```\n\n\\\n\nYou've just collected a lot data and graphed heights. Although informative, a graphical display of these data is difficult to summarize -- we need to describe these heights with a single number that will be meaningful and allow us to do statistics.\n\nWe can do this with a **measure of centrality**, the concept that one number in the \"center\" of the data set is a good summary of all the values. Below are examples of different measures of centrality. \n\n * The **mean** is the average and the measure of centrality that you are probably most familiar with. This is a good measure to use when the data are normally distributed. We describe it in detail below. \n\n * The **median** is the value in the middle of the data set. Half of the observations lie above the median and half below. When the data are normally distributed, the median and the mean will be very close to each other. When your data are not normally distributed (skewed to the left or right) the median is a more appropriate measure of centrality (see the animation below).  \n \n\\\n\n```{r, fig.show='animate', animation.hook='gifski', fig.width=6, fig.height=2, echo=FALSE, message=FALSE, warning=FALSE, results='hide', interval=0.5, cache=TRUE}\n\n# skew <- seq(0.5, 1, 0.05)\n# skew2 <- seq(1.1, 2, 0.1)\n# skew3 <- seq(1.9, 1, -0.1)\n# skew4 <- seq(0.95, 0.55, -0.05)\n# skew <- c(skew, skew2, skew3, skew4)\n# plot1 <- function(x) {\n#     d <- lapply(1:40, function(x) {\n#         d <- data.frame(x = rsnorm(1e+05, mean = 0, sd = 2, xi = skew[x]), \n#             frame = x)\n#         return(d)\n#     })\n#     medians <- c(seq(0.31, -0.31, -0.031), seq(-0.279, 0.279, 0.031))\n#     # medians <<- lapply(1:40, function(x) median(d[[x]]$x))\n#     p <- lapply(1:40, function(y) ggplot(data = d[[y]], aes(x)) + geom_histogram(binwidth = 0.25, \n#         color = \"white\", fill = \"skyblue2\") + theme_light() + theme(panel.border = element_blank(), \n#         panel.grid.minor = element_blank(), axis.ticks = element_blank(), \n#         axis.text = element_blank()) + guides(fill = FALSE) + labs(x = NULL, \n#         y = NULL) + scale_y_continuous(expand = c(0, 0), limits = c(0, \n#         5600), breaks = c(0, 2000, 4000)) + geom_vline(xintercept = 0, \n#         size = 0.5, linetype = \"dashed\") + geom_vline(xintercept = medians[y], \n#         size = 0.5) + xlim(-5, 5) + annotate(\"text\", label = \"Mean\", size = 3.4, \n#         x = -4.1, y = 5300, hjust = 0) + annotate(\"text\", label = \"Median\", \n#         size = 3.4, x = -4.1, y = 4600, hjust = 0) + geom_segment(aes(x = -4.8, \n#         xend = -4.3, y = 5300, yend = 5300), linetype = \"dashed\") + geom_segment(aes(x = -4.8, \n#         xend = -4.3, y = 4600, yend = 4600)))\n#     print(p)\n# }\n# \n# gif_file <- file.path(getwd(), \"median.gif\")\n# save_gif(plot1(), gif_file = gif_file, progress = FALSE, loop = TRUE, delay = 0.5, \n#     width = 400, height = 133, res = 100)\n# \n# utils::browseURL(gif_file)\n\n```\n\n\n<center> ![](images/03_mean/median.gif) </center>\n\n\\\n\n* The **mode** is the value (height, in our case) that occurs most frequently in the data set. It's not typically used in statistics, and we won't cover it further here.\n\n\\\n\n# Taking the mean\nThe mean of a variable is the sum of its values, divided by the number of values. \n\nThis concept can be represented with equation below. In our case, each \"x\" represents a giraffe height (i.e. a single observation), and the numerical subscript indicates its order in the sample. We'll use ${\\bar{x}}$ (read \"x-bar\") to represent the mean of the height variable.\n\n<div style=\"margin-bottom:50px\"></div>\n\\begin{equation}\n (\\#eq:equation1)\n \\Large{\\bar{x}} = \\frac{x_1 + x_2 + ... + x_n}{n}\n \\end{equation}\n<div style=\"margin-bottom:50px\">\n</div>\nTo make this more efficient, instead of writing \"${x_1 + x_2 + ... + x_n}$\", we can use the uppercase sigma symbol $\\sum{}$ to represent summation of all the observations. \n\n\\\n\n\\begin{equation}\n (\\#eq:equation2)\n \\Large{\\bar{x}} = \\frac{\\sum_{i=1}^{n}{x_i}}{n}\n \\end{equation}\n \n\\\n\nThis might look intimidating, but equation \\@ref(eq:equation2) is really showing the same thing as \\@ref(eq:equation1). Let's go through the steps again, breaking the symbols apart a bit (see annotated equation \\@ref(eq:equation3) below). The sigma means 'add up'. What are we adding up? All the heights \"x\". The \"i&nbsp;=&nbsp;\" part indicates which term to begin with. For our purposes, this will always be the first observation, hence $i$ = 1. The character on top of the sigma is the last observation we include in our summation. In this case it's n -- because we're adding all n = 50 observations in each group of giraffes. In both equations, we still divide by the total number of observations in each group we have: again, n.\n\n\\\n\n\n<center>\n\\begin{equation}\n (\\#eq:equation3)\n\\vcenter{\\img[width=400px]{images/03_mean/eq_annotated.png}}\n \\end{equation}\n</center>\n\n\n# Notation for sample vs population\n\nRecall our discussion about a [sample versus a population](02_bellCurve.html#bell-ttta). Different symbols are used to represent the mean for each of these. We've already discussed $\\bar{x}$ for the sample mean. The analogous symbol for the population mean is ${\\mu}$ (read \"mu\"). Additionally, when referring to the size of the population, we will use a capital ${N}$ instead of a lowercase one. \n\n\\\n\n# Code it up\n\nUsing \\@ref(eq:equation2), it's easy to translate this equation into code in R. The heights recorded from island 1 have been stored in a vector called `heights_island1`. Below we show the first few observations from this vector, using the `head()` function.\n<div style=\"margin-bottom:15px\">\n</div>\n```{r, echo=FALSE}\nset.seed(12)\nheights_island1 <- rnorm(50, 10, 2)\n```\n\n```{r, echo=TRUE}\nhead(heights_island1)\n```\n\n\\\n\nUse the interactive window below to calculate the mean \"by hand\".\n\n<!---LEARNR EX 1-->\n\n<iframe class=\"interactive\" id=\"myIframe1\" src=\"https://tinystats.shinyapps.io/03-mean-ex1/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n\n# Create your own function\nNow it's your turn to write your own function. Call it \"my_mean\" and have it calculate the mean of any given vector. You're going to use the rules for writing a function in R that you've used previously. As a reminder, you'll use `function()` and embed your code (that you completed in the window above) within curly brackets`{}`. The advantage of making a \"homemade\" function is that you can string together all the steps from the previous exercise into a single command.  \n\n\n<!---LEARNR EX 2-->\n\n<iframe class=\"interactive\" id=\"myIframe2\" src=\"https://tinystats.shinyapps.io/03-mean-ex2/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n You can also complete the exercise above in RStudio on your local computer. This way you will be able to save your `my_mean()` function and script for future use.  \n \n\\\n\n# Take a tea break!\n\n```{r, out.width=\"600px\", echo= FALSE}\nknitr::include_graphics(\"images/03_mean/Teacup.png\")\n```\n\n\n# Taking the median\nTo calculate the median go through the following steps:\n\n* Assess whether there is an odd or even number of observations\n* Order all observations from smallest to largest\n* If an odd number, then the median is the middle value at position: (n + 1) / 2\n* If an even number, then:\n    + Find the value at the position: n / 2\n    + Find the value at the position: (n / 2) + 1\n    + The median will be the mean of the values at these two positions.\n  \nBefore you write your own median function, two concepts need to be introduced: 1) the modulus operator `%%` and 2) `if...else` statements. \n\nThe **modulus operation** gives the remainder after division of one number by another. For example, in R `11 %% 5` returns the `1`, which is the remainer of `11` divided by `5`.  If the modulus operation returns `0`, then there is no remainder. It is useful to apply the modulus operation `x %% 2` to determine whether a number `x` is even or odd by testing if the result is exactly equal to 0. See example code below.\n<div style=\"margin-bottom:15px\">\n\n<style>\n  .col2 {\n    columns: 2 200px;         /* number of columns and width in pixels*/\n    -webkit-columns: 2 200px; /* chrome, safari */\n    -moz-columns: 2 200px;    /* firefox */\n  }\n</style>\n\n</div>\n<div class=\"col2\">\n```{r, tut=FALSE, prompt=TRUE}\n10 %% 2\n10 %% 2 == 0\n11 %% 2\n11 %% 2 == 0\n```\n</div>\n\n\\\n\nAn `if...else` statement is useful when you want to specify distinct outcomes for objects dependent on whether they meet your set criteria. See below.\n\n\n<!---LEARNR EX 3-->\n\n<iframe class=\"interactive\" id=\"myIframe3\" src=\"https://tinystats.shinyapps.io/03-mean-ex3/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n\nNow that you have a sense for how the `%%` operator can be used to test whether a number is EVEN or ODD, and how `if...else` statements work, use both of these concepts in the window below to write your own function that calculates the median of any vector. \n\n\n<!---LEARNR EX 4-->\n\n<iframe class=\"interactive\" id=\"myIframe4\" src=\"https://tinystats.shinyapps.io/03-mean-ex4b/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n\n# Things to think about\nRemember that the sample mean is an estimate of the entire population's mean (which would often be impossibly large to measure). How reliably does the mean of a sample represent the population mean? *Warning*: if a small sample has been used, the sample mean may not be a reliable at all! Estimates from small samples are subject to the whims of randomness. On the other hand, the larger the sample, the closer the sample size appraches the population size, and the more reliable the sample estimate becomes.\n\nPressing 'Play' on the plot below will illustrate this concept. \n<a name=\"mean_animation\">\n```{r, tut=FALSE, echo=FALSE, message= FALSE, cache=TRUE}\n\nm <- list(l = 50, r = 50, b = 10, t = 10, pad = 4)\n\naccumulate_by <- function(dat, var) {\n    var <- lazyeval::f_eval(var, dat)\n    lvls <- plotly:::getLevels(var)\n    dats <- \n      lapply(seq_along(lvls), function(x) {\n        cbind(dat[var %in% lvls[seq(1, x)], ], frame = lvls[[x]])\n      })\n    dplyr::bind_rows(dats)\n}\n\nd <- do.call(rbind, lapply(lseq(10, 10000, 300), function(x) {\n    d <- data.frame(x = rnorm(x), frame = x/300, N = x)\n    return(d)\n}))\n\ndd <- \n  aggregate(data = d, x ~ frame + N, FUN = mean) %>% \n  accumulate_by(~N)\n\np <- \n  dd %>% \n  plot_ly(x = ~log10(N), y = ~x, frame = ~frame...4, type = \"scatter\", mode = \"lines\",\n          line = list(simplyfy = F, color = \"orangered\"), width = 550, height = 350) %>% \n  animation_opts(frame = 10, transition = 0, redraw = FALSE) %>% \n  config(displayModeBar = F) %>%\n  layout(xaxis = list(title = \"Sample Size (log10)\", zeroline = F), \n         yaxis = list(range = c(-0.7, 0.7), title = \"Mean\", zeroline = F), \n         autosize = F, margin = m) %>%\n  animation_slider(hide = T) %>%\n  animation_button(x = 1, xanchor = \"right\", y = 0, yanchor = \"bottom\")\n\nhtmltools::save_html(p, here(\"images/03_mean/Law_of_large_numbers.html\"))\n\n```\n</a>\n<center><iframe style=\"margin: 0px;\" src=\"images/03_mean/Law_of_large_numbers.html\" width=\"570\" height=\"400\" scrolling=\"yes\" seamless=\"seamless\" frameBorder=\"0\"> </iframe></center>\n\n <script type=\"text/x-mathjax-config\">\n    MathJax.Ajax.config.path[\"img\"] = \"https://cdn.rawgit.com/pkra/mathjax-img/1.0.0/\";\n    MathJax.Hub.Config({\n    extensions: [\"tex2jax.js\",\"[img]/img.js\"],\n    jax: [\"input/TeX\",\"output/HTML-CSS\"],\n    tex2jax: {inlineMath: [[\"$\",\"$\"],[\"\\\\(\",\"\\\\)\"]]},\n    });\n </script>\n\n* The animation above shows the values of means calculated from increasingly larger samples: small samples on the left and larger samples to the right (on the x-axis).\n* Each point on the zig-zag line is the mean calculated from a random sample. The true mean of the population is 0.\n* The y-axis shows what the mean is for a sample of that particular size. Though the y-values vary here, remember that if the sample were a good estimate of the population, the y-values should be very close to 0.  \n* You can see that when the samples are small the sample mean isn't necessarily a good representation of the population that it was sampled from--and that is not a good thing.\n\nFor further reading see the [Law of Large Numbers](https://en.wikipedia.org/wiki/Law_of_large_numbers).\n\n<script>\n  iFrameResize({}, \".interactive\");\n</script>\n"
  },
  {
    "path": "04_variance.Rmd",
    "content": "---\ntitle: \"The Spread of the Data\"\noutput:\n  bookdown::html_document2:\n    includes:\n      in_header: assets/04_variance_image.html\n      after_body: assets/foot.html\n---\n\n:::obj\n\n**Module learning objectives**\n\n1. Describe the steps for constructing the sum of squares\n1. Describe how the standard deviations can allow us to determine which data values are common or rare \n1. Write a function for the variance and standard deviation\n1. Explain why the sample variance would be downwardly biased if we did not correct it by diving by (n-1)\n\n:::\n\n\n```{r setup, include=FALSE}\nknitr::opts_chunk$set(echo = TRUE, fig.align = \"center\")\nlibrary(ggplot2)\nlibrary(plotly)\nlibrary(here)\n```\n\n\n# Measures of spread\nAfter successfully computing the mean, you return to the memory of the first day you had collected data. There was one teacup giraffe that was your favorite-- it was relatively small with purple spots and perky tail! You begin to wonder how rare it would be to encounter a giraffe smaller than this one. To answer this question, you need to be able to calculate a **measure of spread**. \n\n<center>![](images/04_variance/holding.png){width=600px}</center>\n\nYou might start by quantifying the simplest measure of spread, the **range**. This at least tells us the boundaries within which all the sample heights fall, but the range ignores important contextual information. For example, two data sets can have very different spreads but still have the same range.\n\n<center>![](images/04_variance/Range.png){width=600px}</center>\n\nIf we want to avoid undue influence of outliers for the measure of spread, the range is not good enough to provide us with a wholistic, robust measure.\n\nWhat is a more stable measurement? The answer is the **variance**.\n\n# Variance in plain language\nYou need a solid understanding of variance in order to grasp the mechanics of any statistical test. But what does the concept variance really capture?\n\n  * Recall the normal distribution: when we inspect the distributions below visually, we see that they all have the same mean, but some distributions are more spread out. Bell curves that are more \"squished together\" are composed of observations that are more similar to one another, while bell curves that are more \"spread out\" are composed of observations that have greater variability. Wider bell-curves mean greater variance! In plain language, the variance gives us an idea of how similar observations are to one another, and to the average value. \n  \n  ![](images/04_variance/bells_edited-04.png)\n\n# How to calculate variance\nLet's begin by going through the steps and equations for calculating the variance of a *population*. We'll explain how to modify this for calculating the *sample* variance later on.\n\nFirst, the idea is to capture how far away individual observations lie from the mean. In other words, we could subtract the mean from each observation. This is called the **deviation** from the mean. And since we're calculating a *population* variance, we will use $\\mu$ for the mean instead of ${\\bar{x}}$. \n\nCalculating the deviations is a great start, but we're back to the problem of needing to summarize multiple values. Since these newly calculated values are both negative and positive, we quickly realize that adding them up (like the first step when calculating the mean) would not be a productive idea since the negatives cancel the positives.\n\nWhat's the easiest thing to do when you want to retain how far away a point is from the mean irrespective of whether it's above or below the mean? How about taking the absolute value?\n\nThough the absolute value of the deviation would be a valid measure of distance from the mean, it turns out that it has some mathematical properties that don't make it the best choice, especially for more complex statistial analyses involving the variance later down the line. \n\n# Why we square the deviations\nThere is an alternative with simpler, \"better behaved\" mathematical properties: **squaring the deviations**. Squaring will always give us positive values, so the values can never cancel each other out. It's worth pointing out, however, that a consequence of squaring deviations will tend to amplify the influence of values at extreme distances from the mean. You can read [this thread](https://stats.stackexchange.com/questions/118/why-square-the-difference-instead-of-taking-the-absolute-value-in-standard-devia) for a more detailed discussion about absolute values versus squared deviations. \n\n# Sum of squares\nNow we have positive, squared deviation values that can be summed to a single total. We call this total **the sum of squares**, and the equation is shown below. \n\n<div style=\"margin-bottom:50px\">\n</div>\n\\begin{equation}\n (\\#eq:equation1)\n \\Large {\\sum_{i=1}^N (x_i - \\mu)^2}\n \\end{equation}\n<div style=\"margin-bottom:50px\">\n</div>\n\nThe sum of squares is an important calculation that we will see again for other statistical operations. The animation below illustrates how these sums of squares are \"constructed\" starting with the sample observations and then squaring each one's distance away from the mean.  \n\n```{r fig.show=\"animate\", animation.hook = 'gifski', fig.width=7.2, fig.height=4.8, echo=FALSE, message=FALSE, warning=FALSE, results = 'hide', interval=0.01666667, fig.align='center', cache = TRUE}\ns <- data.frame(x=c(113, 146.5, 132, 70.5, 121, 55), y=c(8.75,1.25,3.75,3.75,6.25,1.25))\ns <- s[order(s$x),]\ns <- s[c(1,2,3,6,5,4),]\ns2 <- s\ns <- s[c(1,2,6,5,4,3),]\nm <- mean(s[,1])\nm2 <- 85\nlim <- c(0, 60)\nd <- data.frame(x1=s[,1], x2=rep(m, 6), y1=s$y, y2=(abs(s[,1]-m))+s$y)\nco <- c(\"#6FB4CE\", \"#D97FDA\", \"#DC5F24\", \"#C46A79\", \"#f93188\", \"#F88336\")\n\nv <- do.call(cbind, lapply(1:6, function(x) seq(d[x,]$x1, d[x,]$x2, by = (d[x,]$x2-d[x,]$x1)/29)))\nvv <- lapply(1:30, function(y) data.frame(x1=v[y,], x2=d$x1, y1=s$y, y2=(abs(s[,1]-m))+s$y))\n\npp <- function(x){\n  p1 <- ggplot()+geom_point(data=s, aes(x=x, y=y),color=co, size=4)+\n    theme_light()+ylim(lim)+geom_segment(aes(x = x2, y = y1, xend = x1, yend = y1), data = x, color=co, size=2)+labs(x=\"Teacup giraffe height\", y=NULL)+theme(panel.border=element_blank(),panel.grid.minor=element_blank(), axis.ticks=element_blank())+\n    geom_segment(aes(x=m, xend=m, y=0, yend=lim[2]), linetype=\"dashed\", color=\"black\", size=2)+\n    annotate('text', x = 111.33, y = 53, label = \"bar(x)\",parse = TRUE,size=15)\n  p1\n}\n\nlapply(vv, function(x) pp(x))\n\nh <- do.call(cbind, lapply(1:6, function(x) seq(d[x,]$y1, d[x,]$y2, by = (d[x,]$y2-d[x,]$y1)/29)))\nhh <- lapply(1:30, function(y) data.frame(x1=s[,1], x2=rep(m, 6), y1=s$y, y2=h[y,]))\n\npp2 <- function(x){\n  p2 <- ggplot()+geom_point(data=s, aes(x=x, y=y),color=co, size=4)+\n    theme_light()+ylim(lim)+geom_segment(aes(x = x1, y = y1, xend = x2, yend = y1), data = d, color=co, size=2)+\n  geom_segment(aes(x = x1, y = y2, xend = x1, yend = y1), data = x, color=co, size=2)+labs(x=\"Teacup giraffe height\", y=NULL)+theme(panel.border=element_blank(),panel.grid.minor=element_blank(), axis.ticks=element_blank())+\n    geom_segment(aes(x=m, xend=m, y=0, yend=lim[2]), linetype=\"dashed\", color=\"black\", size=2)+\n    annotate('text', x = 111.33, y = 53, label = \"bar(x)\",parse = TRUE,size=15)\np2\n}\n\nlapply(hh, function(x) pp2(x))\n\npp22 <- function(x){\n  p2 <- ggplot()+theme_light()+geom_rect(data=d, mapping=aes(xmin=x1, xmax=x2, ymin=y1, ymax=y2), color=alpha(co, x),fill=co, alpha=x/5, size=2)+ylim(lim)+geom_segment(aes(x = x1, y = y1, xend = x2, yend = y1), data = d, color=co, size=2)+\n  geom_segment(aes(x = x1, y = y2, xend = x1, yend = y1), data = d, color=co, size=2)+\n    geom_point(data=s, aes(x=x, y=y),color=co, size=4)+\n    labs(x=\"Teacup giraffe height\", y=NULL)+theme(panel.border=element_blank(),panel.grid.minor=element_blank(), axis.ticks=element_blank())+\n    geom_segment(aes(x=m, xend=m, y=0, yend=lim[2]), linetype=\"dashed\", color=\"black\", size=2)+\n    annotate('text', x = 111.33, y = 53, label = \"bar(x)\",parse = TRUE,size=15)\np2\n}\nlapply(seq(0,1,0.1), function(x) pp22(x))\n\npp3 <- function(x){\np3 <- ggplot()+theme_light()+geom_rect(data=d, mapping=aes(xmin=x1, xmax=x2, ymin=y1, ymax=y2), color=co,fill=co, alpha=0.2, size=2)+\n  geom_point(data=s, aes(x=x, y=y), color=co, size=4)+\n  ylim(lim)+labs(x=\"Teacup giraffe height\", y=NULL)+theme(panel.border=element_blank(),panel.grid.minor=element_blank(), axis.ticks=element_blank())+\n    geom_segment(aes(x=m, xend=m, y=0, yend=lim[2]), linetype=\"dashed\", color=\"black\", size=2)+\n    annotate('text', x = 111.33, y = 53, label = \"bar(x)\",parse = TRUE,size=15)\np3\n}\nlapply(1:15, function(x) pp3())\n\n```\n\nOnce the squares have been \"constructed\", we sum their squares, producing a single value.\n\n![](images/04_variance/Squares1.png)\n\n# Variance, $\\sigma^2$\nWe need to take into account how many observations contributed to these sum of squares. So, we divide the sum of squares by N. This step essentially takes the average of the squared differences from the mean. This is the variance.\n\n\n<div style=\"margin-bottom:50px\">\n</div>\n\\begin{equation}\n (\\#eq:equation2)\n \\Large \\sigma^2 = \\frac{\\sum_{i=1}^N (x_i - \\mu)^2}{N}\n \\end{equation}\n<div style=\"margin-bottom:50px\">\n</div>\n\n# Standard Deviation, $\\sigma$\nThe problem with variance is that its value is not easily interpretable, the units will be squared and therefore not on the same scale as the mean. It would not be very intuitive to interpret giraffe heights written in *millimeters squared*! The **standard deviation** fixes that. We \"un-square\" the variance, and now we return to the data's original units (millimeters). The standard deviation equation is below:\n\n<div style=\"margin-bottom:50px\">\n</div>\n\\begin{equation}\n (\\#eq:equation3)\n \\Large \\sigma = \\sqrt{\\frac{\\sum_{i=1}^N (x_i - \\mu)^2}{N}}\n \\end{equation}\n<div style=\"margin-bottom:50px\"></div>\n\n# Population vs sample equations\nOne more thing: the equations above are for calculating the variance and standard deviation of a population. In real life applications, the population equations will almost never be used during data analysis. To calculate the variance and standard deviation for a sample instead, we will need to divide by n-1 instead of N, which we explain at the end of this module. Note that we also change to the corresponding symbols for the sample mean ($\\bar{x}$),  sample size (lowercase $n$), and use a lowercase $s$ in place of $\\sigma$. \n\nWhen we apply this change, our equation for the **sample variance, $s^2$ ** is:\n\n<div style=\"margin-bottom:50px\">\n</div>\n\\begin{equation}\n (\\#eq:equation4)\n \\Large s^2 = \\frac{\\sum_{i=1}^n (x_i - \\bar{x})^2}{n-1}\n \\end{equation}\n<div style=\"margin-bottom:50px\"></div>\n\nAnd for **sample standard deviation, $s$**:\n\n<div style=\"margin-bottom:50px\">\n</div>\n\\begin{equation}\n (\\#eq:equation5)\n \\Large s = \\sqrt{\\frac{\\sum_{i=1}^n (x_i - \\bar{x})^2}{n-1}}\n \\end{equation}\n<div style=\"margin-bottom:50px\"></div>\n\n# Meaning of the standard deviation\nSince we're now focusing on samples, let's think about how we can apply the standard deviation in a useful way to normal distributions to predict how \"rare\" or \"common\" particular observations in a data set may be. For the normal distribution, almost all of the data will fall within ± 3 standard deviations from the mean. This rule of thumb, called the **empirical rule**, is illustrated below and you can [read more about it here](https://newonlinecourses.science.psu.edu/stat200/lesson/2/2.2/2.2.7).\n<a name=\"empirical\">\n![](images/04_variance/General_empirical.jpg)\n</a>\n\n  * The entire normal distribution includes 100% of the data. The empirical rule states that the interval created by **1 standard deviation above and below the mean includes 68% of all the data**. Observations within these bounds would be fairly common, but it would not be exceedingly rare to observe data that fall *outside* of these bounds. \n  \n  * **2 standard deviations above and below the mean** encompasses approximately **95%** of the data. Observations that fall within these bounds include the common and also infrequent observations. Observations that fall *outside* of 2 standard deviations would be uncommon.\n  \n  * **3 standard deviations above and below the mean** encompass **99.7%** of the data, capturing almost all possible observations in the set. Observations that fall oustide of these bounds into the extremes of distribution's tails would be exceedingly rare to observe (but still possible if you sample large enough groups to detect these rare events!).\n  \n  \n# Example\n\nLet's calculate the variance and standard deviation using 6 observations of giraffe heights from a subset of our data, including your favorite small one with the purple spots.\n\n(1) **Calculate the sample mean**, $\\bar{x}$:\n\n```{r}\nh <- c(113, 146.5, 132, 70.5, 121, 55) \nmean(h)\n```\n\n\nWe'll plot the mean $\\bar{x}$ below with a gray line. \n\n![](images/04_variance/giraffe_variance1.jpg)\n (2) **Find the deviation** from the mean, the difference between each giraffe's height and $\\bar{x}$.\n \n```{r}\ndeviation <- h - mean(h)\ndeviation\n```\n ![](images/04_variance/giraffe_variance2.jpg)\n \n \n (3) **Calculate Variance**: Square the deviations, add them all up to get the sum of squares, and then take the average of the sum of squares (adjusted to \"n-1\" because we're using a sample).\n```{r}\nSS <- sum(deviation^2)\nvariance <-  SS/(length(h)-1) # Divides by N-1\nvariance\n```\n(4) **Standard Deviation**: Take the square root of the variance.\n\n```{r}\nsqrt(variance)\n```\n\nBecause the standard devation is a standardized score-- we can now focus on particular giraffes and see whether or not they lie within 1 standard deviation of the mean. \n\n![](images/04_variance/giraffe_variance3.jpg)\n\nWe see the little blue spotted giraffe is more than 1 standard deviation below the mean-- and so we can conclude that a little guy of his height is rather short-- even smaller than your favorite! Similarly, the giraffe with bright pink spots is taller than 1 standard deviation above the mean-- quite tall!\n\n# Standard deviation application example\nUsing the standard deviation and the empirical rule described earlier, we now finally have the tools to answer our original question from the start of the module: how probable it is to find a giraffe smaller than our favorite purple-spotted one?\n\n  * Our giraffe of interest happens to be almost exactly 1 standard deviation below the mean, so this makes it easy to assess the probability of encountering a giraffe shorter than him.\n\n  * If we assume our sample comes from a normally distributed population, then **what percentage of giraffes will be shorter than the one with purple spots?**\n  \n   ![](images/04_variance/Empirical_example.png)\n  \nWe can apply the knowledge that the full percentage area under the curve is 100%, and what we know from the empirical rule, to conclude that there is approximately 16% of giraffes will be shorter than the one with purple spots. So, it would be common to find giraffes taller than our favorite but somewhat of a treat to find ones smaller--like the blue one!\n\nMaybe this explains why the little blue spotted giraffe is so cute--- it is not so common to find ones so small!\n\n# Code it up\nUsing \\@ref(eq:equation4) and \\@ref(eq:equation5), it's easy to translate the equations for the variance and standard deviation into code in R. \n  \n  * In the window below, you will write two separate functions, one to calculate the sample variance and another to calculate the sample standard deviation. Name your functions `my_variance` and `my_sd`. \n  \n  * Test your functions on the vector `heights_island1` and compare the output of your \"handwritten\" functions with the base R function of `var( )` and `sd( )`. \n  \n<!---LEARNR EX 1-->\n\n<iframe class=\"interactive\" id=\"myIframe1\" src=\"https://tinystats.shinyapps.io/04-variance-ex1/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n<div style=\"margin-top:50px\"></div>\n<center>![](images/04_variance/Marmalade.png){width=650px}</center>\n  \n# Population vs Sample ($N$ vs $n-1$)\nWe have to correct the calculated variance by dividing by $n-1$. Let's explain why:\n\n  * Let's recall that when we calculate the sum of squares, we only have the sample mean $\\bar{x}$ to go off of as our center point. \n  \n  <center>![](images/04_variance/Static_ssq.png){width=500px}</center>\n\n  * We must first acknowledge that while the population $\\mu$ is unknowable, the chance that the sample $\\bar{x}$ and the population $\\mu$ are the same is unlikely.\n    + It's also worth pointing out that the risk that $\\bar{x}$ and $\\mu$ are not even values close to each other is much increased when $\\bar{x}$ has been calculated from a small sample. \n    \n  * Recognizing that the true population mean value is probably some *other* value than $\\bar{x}$, let's recalculate the sum of squares. This time we will use an imaginary true population $\\mu$ as our center point, which in the animation below will be represented with a line at an arbitrary distance away from $\\bar{x}$.\n\n```{r fig.show=\"animate\", animation.hook = 'gifski', fig.width=5.04, fig.height=7, echo=FALSE, message=FALSE, warning=FALSE, results = 'hide', interval=0.01666667, fig.align = 'center', cache=TRUE}\ns <- data.frame(x=c(113, 146.5, 132, 70.5, 121, 55), y=c(9,1.5,4,4,6.5,1.5))\ns <- s[order(s$x),]\ns <- s[c(1,2,3,6,5,4),]\ns2 <- s\ns <- s[c(1,2,6,5,4,3),]\nm <- mean(s[,1])\nm2 <- 85\nlim <- c(-73, 60)\nd <- data.frame(x1=s[,1], x2=rep(m, 6), y1=s$y, y2=(abs(s[,1]-m))+s$y)\nco <- c(\"#6FB4CE\", \"#D97FDA\", \"#DC5F24\", \"#C46A79\", \"#f93188\", \"#F88336\")\nco2 <- c(\"grey30\", \"grey40\", \"grey80\", \"grey70\", \"grey60\", \"grey50\")\n\n\ns2$y <- (s2$y)*-1\ns2[3,2] <- -9\ns2 <- s2[c(1,2,4:6,3),]\nd2 <- data.frame(x1=s2[,1], x2=rep(m2, 6), y1=s2$y, y2=(-abs(s2[,1]-m2))+s2$y)\n\nv <- do.call(cbind, lapply(1:6, function(x) seq(d[x,]$x1, d[x,]$x2, by = (d[x,]$x2-d[x,]$x1)/29)))\nvv <- lapply(1:30, function(y) data.frame(x1=v[y,], x2=d$x1, y1=s$y, y2=(abs(s[,1]-m))+s$y))\n\nv2 <- do.call(cbind, lapply(1:6, function(x) seq(d2[x,]$x1, d2[x,]$x2, by = (d2[x,]$x2-d2[x,]$x1)/29)))\nvv2 <- lapply(1:30, function(y) data.frame(x1.2=v2[y,], x2.2=d2$x1, y1.2=s2$y, y2.2=(abs(s2[,1]-m2))+s2$y))\n\nvv <- lapply(1:30, function(x) cbind(vv[[x]], vv2[[x]]))\n\npp <- function(x){\n  p1 <- ggplot()+geom_point(data=s, aes(x=x, y=y),color=co, size=3)+geom_point(data=s2, aes(x=x, y=y),color=co2, size=3)+theme_light()+ylim(lim)+geom_segment(aes(x = x2, y = y1, xend = x1, yend = y1), data = x, color=co, size=1.5)+geom_segment(aes(x = x2.2, y = y1.2, xend = x1.2, yend = y1.2), data = x, color=co2, size=1.5)+labs(x=\"Teacup giraffe heights\", y=NULL)+theme(panel.border=element_blank(),panel.grid.minor=element_blank(), axis.ticks=element_blank())+\n    geom_segment(aes(x=m, xend=m, y=0, yend=lim[2]), linetype=\"dashed\", color=\"black\", size=1.5)+\n    geom_segment(aes(x=m2, xend=m2, y=0, yend=lim[1]), linetype=\"solid\", color=\"black\", size=1.5)+\n    annotate('text', x = 80, y = -60, label = \"mu\",parse = TRUE,size=12)+\n    annotate('text', x = 111.33, y = 53, label = \"bar(x)\",parse = TRUE,size=12)\n  p1\n}\n\nlapply(vv, function(x) pp(x))\n\nh <- do.call(cbind, lapply(1:6, function(x) seq(d[x,]$y1, d[x,]$y2, by = (d[x,]$y2-d[x,]$y1)/29)))\nhh <- lapply(1:30, function(y) data.frame(x1=s[,1], x2=rep(m, 6), y1=s$y, y2=h[y,]))\n\nh2 <- do.call(cbind, lapply(1:6, function(x) seq(d2[x,]$y1, d2[x,]$y2, by = (d2[x,]$y2-d2[x,]$y1)/29)))\nhh2 <- lapply(1:30, function(y) data.frame(x1.2=s2[,1], x2.2=rep(m2, 6), y1.2=s2$y, y2.2=h2[y,]))\n\nhh <- lapply(1:30, function(x) cbind(hh[[x]], hh2[[x]]))\n\npp2 <- function(x){\n  p2 <- ggplot()+geom_point(data=s, aes(x=x, y=y),color=co, size=3)+geom_point(data=s2, aes(x=x, y=y),color=co2, size=3)+theme_light()+ylim(lim)+geom_segment(aes(x = x1, y = y1, xend = x2, yend = y1), data = d, color=co, size=1.5)+geom_segment(aes(x = x1, y = y1, xend = x2, yend = y1), data = d2, color=co2, size=1.5)+\n  geom_segment(aes(x = x1.2, y = y2.2, xend = x1.2, yend = y1.2), data = x, color=co2, size=1.5)+geom_segment(aes(x = x1, y = y2, xend = x1, yend = y1), data = x, color=co, size=1.5)+labs(x=\"Teacup giraffe heights\", y=NULL)+theme(panel.border=element_blank(),panel.grid.minor=element_blank(), axis.ticks=element_blank())+\n    geom_segment(aes(x=m, xend=m, y=0, yend=lim[2]), linetype=\"dashed\", color=\"black\", size=1.5)+\n    geom_segment(aes(x=m2, xend=m2, y=0, yend=lim[1]), linetype=\"solid\", color=\"black\", size=1.5)+\n    annotate('text', x = 80, y = -60, label = \"mu\",parse = TRUE,size=12)+\n    annotate('text', x = 111.33, y = 53, label = \"bar(x)\",parse = TRUE,size=12)\np2\n}\n\nlapply(hh, function(x) pp2(x))\n\npp22 <- function(x){\n  p2 <- ggplot()+theme_light()+geom_rect(data=d, mapping=aes(xmin=x1, xmax=x2, ymin=y1, ymax=y2), color=alpha(co, x),fill=co, alpha=x/5, size=1.5)+geom_rect(data=d2, mapping=aes(xmin=x1, xmax=x2, ymin=y1, ymax=y2), color=alpha(co2, x),fill=co2, alpha=x/5, size=1.5)+ylim(lim)+geom_segment(aes(x = x1, y = y1, xend = x2, yend = y1), data = d, color=co, size=1.5)+geom_segment(aes(x = x1, y = y1, xend = x2, yend = y1), data = d2, color=co2, size=1.5)+\n  geom_segment(aes(x = x1, y = y2, xend = x1, yend = y1), data = d, color=co, size=1.5)+geom_segment(aes(x = x1, y = y2, xend = x1, yend = y1), data = d2, color=co2, size=2)+geom_point(data=s, aes(x=x, y=y),color=co, size=3)+geom_point(data=s2, aes(x=x, y=y),color=co2, size=3)+\n    labs(x=\"Teacup giraffe heights\", y=NULL)+theme(panel.border=element_blank(),panel.grid.minor=element_blank(), axis.ticks=element_blank())+\n    geom_segment(aes(x=m, xend=m, y=0, yend=lim[2]), linetype=\"dashed\", color=\"black\", size=1.5)+\n    geom_segment(aes(x=m2, xend=m2, y=0, yend=lim[1]), linetype=\"solid\", color=\"black\", size=1.5)+\n    annotate('text', x = 80, y = -60, label = \"mu\",parse = TRUE,size=12)+\n    annotate('text', x = 111.33, y = 53, label = \"bar(x)\",parse = TRUE,size=12)\np2\n}\nlapply(seq(0,1,0.1), function(x) pp22(x))\n\npp3 <- function(x){\np3 <- ggplot()+theme_light()+geom_rect(data=d, mapping=aes(xmin=x1, xmax=x2, ymin=y1, ymax=y2), color=co,fill=co, alpha=0.2, size=1.5)+geom_rect(data=d2, mapping=aes(xmin=x1, xmax=x2, ymin=y1, ymax=y2), color=co2,fill=co2, alpha=0.2, size=1.5)+geom_point(data=s, aes(x=x, y=y), color=co, size=3)+geom_point(data=s2, aes(x=x, y=y), color=co2, size=3)+ylim(lim)+labs(x=\"Teacup giraffe heights\", y=NULL)+theme(panel.border=element_blank(),panel.grid.minor=element_blank(), axis.ticks=element_blank())+\n    geom_segment(aes(x=m, xend=m, y=0, yend=lim[2]), linetype=\"dashed\", color=\"black\", size=1.5)+\n    geom_segment(aes(x=m2, xend=m2, y=0, yend=lim[1]), linetype=\"solid\", color=\"black\", size=1.5)+\n    annotate('text', x = 80, y = -60, label = \"mu\",parse = TRUE,size=12)+\n    annotate('text', x = 111.33, y = 53, label = \"bar(x)\",parse = TRUE,size=12)\np3\n}\nlapply(1:15, function(x) pp3())\n\n```\n \n  * When we compare the sum of squares in both of these scenarios: 1) using $\\bar{x}$ or 2) using our imaginary $\\mu$, we see that the sum of squares from $\\mu$ will *always* be greater than the $\\bar{x}$ sum of squares. This is true because by definition of being the sample mean, the line at $\\bar{x}$ will always be the \"center\" of the values in our sample. Its location already minimizes the total distance of all the observations to the center. A line at any other location (i.e. $\\mu$) would be a line that is not mimimizing the distance for observations in our sample.\n  \n<center>![](images/04_variance/Squares2.png){width=750px}</center>\n\n  * Therefore, when we calculate the sum of squares (and consequently, the variance and the standard deviation) using the sample mean $\\bar{x}$, we are most likely arriving at a value that is downwardly biased compared to what the true variance or standard deviation would be if we were able to know and use the population mean $\\mu$. \n  \n  * This is why we need to adjust our sample variance by diving by $n-1$ instead of just $N$. By diving by a smaller value (i.e. $n-1$ instead of N), we ensure that the overall value of the variance and standard deviation will be a little larger, correcting for the downward bias we just described. \n  \n# Things to think about\n**How badly might the sample variance be downwardly biased?**: Well, it depends on how far away $\\bar{x}$ is from the true $\\mu$. The further away it is, the worse the downward bias will be!\n  \n  * Of course, we want to avoid having a very downwardly biased variance. What controls how far away $\\bar{x}$ is from $\\mu$? The sample size! As pointed out previously, the larger the sample, the greater the likelihood that your sample mean will resemble the population mean. \n  \n  * Press Play on the animation below. The plot shows the relationship between bias in the variance, the sample size, and the distance between $\\bar{x}$ and $\\mu$. Each dot represents one out of a thousand random samples all from the same population. The vertical dotted line represents $\\mu$, and the horizontal dotted line represents the true population variance (animation inspired by Khan Academy [video](https://www.khanacademy.org/math/ap-statistics/summarizing-quantitative-data-ap/more-standard-deviation/v/simulation-showing-bias-in-sample-variance).)\n\n```{r, tut=FALSE, echo=FALSE, message= FALSE, warning=FALSE, cache=TRUE}\n\n\nset.seed(12)\nd <- rnorm(50, 10, 2)\nd1 <- rnorm(50, 18, 1.2)\nd <- c(d,d1)\nmm <- mean(d)\nv <- var(d)\ngen_data <- function(x){\n  d2 <- sample(size=sample(size=1, seq(from = 2, to = 10, by = 1)), d)\n  dd <- data.frame(mean=mean(d2), unb_var=var(d2), b_var=var(d2)* (length(d2) - 1) / length(d2), N=length(d2), perc=(var(d2)* (length(d2) - 1) / length(d2))/var(d))\n}\n\ndata <- do.call(rbind, lapply(1:1003, function(x) gen_data()))\n\nff <- function(x){\n  d <- data[1:x,]\n  d$frame <- x+1\n  return(d)\n}\n\npd <- do.call(rbind, lapply(seq(9, 1000, 10), function(x) ff(x)))\n\np <- data.frame(mean=Inf, unb_var=Inf, b_var=Inf, N=2, perc=Inf, frame=0)\npd <- rbind(pd, p)\n\nvline <- function(x = 0, color = \"black\") {\n  list(\n    type = \"line\", \n    y0 = 0, \n    y1 = 1, \n    yref = \"paper\",\n    x0 = x, \n    x1 = x, \n    line = list(color = color, dash=\"dash\", width=3)\n  )\n}\n\nhline <- function(y = 0, color = \"black\") {\n  list(\n    type = \"line\", \n    x0 = 0, \n    x1 = 1, \n    xref = \"paper\",\n    y0 = y, \n    y1 = y, \n    line = list(color = color, dash=\"dash\", width=3)\n  )\n}\n\nm <- list(\n  l = 100,\n  r = 100,\n  b = 10,\n  t = 10,\n  pad = 4\n)\n\np <- pd %>%\n  plot_ly(\n    width=700, \n    height=450,\n    type = 'scatter',\n    mode='markers',\n    x = ~mean,\n    y = ~b_var,\n    frame = ~frame,\n    color = ~N,\n    colors = c(\"midnightblue\", \"skyblue2\"),\n    marker = list(size = 20, opacity=0.75),\n    hoverinfo=\"text\",\n    text=~paste(\"Mean:\", round(mean, 2), \"\\nVariance:\",\n                round(b_var, 2))\n  )%>% \n  animation_opts(\n    frame = 1,\n    transition = 0,\n    redraw = FALSE\n  )%>%\n  config(displayModeBar = F) %>%\n    layout(margin=m,autosize=F, \n      xaxis = list(range=c(7,20.5), zeroline=FALSE, title=\"Mean\"),\n      yaxis = list(range=c(-2,38), zeroline=FALSE, title=\"Biased variance\"), \n      shapes = list(hline(v),vline(mm)))%>%\n  animation_slider(currentvalue = list(prefix = \"Number of Samples: \", font = list(color=\"grey70\", size=14)))\n  htmltools::save_html(p,here(\"images/04_variance/mega_dots.html\"))\n```  \n\n<center><iframe style=\"margin: 0px;\" src=\"images/04_variance/mega_dots.html\" width=\"720\" height=\"500\" scrolling=\"yes\" seamless=\"seamless\" frameBorder=\"0\"> </iframe></center>\n\n  * When the samples whose means $\\bar{x}$ are far off from the true population mean, they tend to have downwardly biased variance. \n  \n  * Take a look at the points that are furthest away from the true population mean-- the samples represented by these points primarily came from small sample sizes (dark blue dots).\n  \n# How the correction works \nThe plot below shows the percentage of the true population variance that an uncorrected sample variance achieves on average. These data were generated by sampling from the same population as the animation above. This time the data have been grouped into bars by how many observations each random sample had. (Animation inspired by Khan Academy [video](https://www.khanacademy.org/math/ap-statistics/summarizing-quantitative-data-ap/more-standard-deviation/v/simulation-showing-bias-in-sample-variance))\n  \n```{r, tut=FALSE, echo=FALSE, message= FALSE, warning=FALSE, cache=TRUE}\n\ndata <- do.call(rbind, lapply(1:20000, function(x) gen_data()))\nmm <- aggregate(b_var~N, data=data, function(y) (mean(y)/var(d))*100)\n\n\np2 <- mm %>%\n  plot_ly(\n    width=650, \n    height=350,\n    type = 'bar',\n    x = ~N,\n    y = ~b_var,\n    color = ~N,\n    colors = c(\"midnightblue\", \"skyblue2\"),\n    marker = list(size = 2, opacity=1),\n    hoverinfo=\"y\"\n  )%>% \n  config(displayModeBar = F) %>%\n  layout(margin=m,autosize=F,\n    yaxis = list(range=c(0,90), zeroline=FALSE, title=\"Biased Sample variance / Pop. variance (%)\"), \n    xaxis = list(title=\"Sample Size\"))%>%\n  hide_colorbar()\n  htmltools::save_html(p2, here(\"images/04_variance/static_bar.html\"))\n```\n\n<center><iframe style=\"margin: 0px;\" src=\"images/04_variance/static_bar.html\" width=\"670\" height=\"400\" scrolling=\"yes\" seamless=\"seamless\" frameBorder=\"0\"> </iframe></center>\n\n   * Notice that the variances from smaller samples do the worst job of approaching 100% of the true variance. In fact, without correction the sample variance is downwardly biased by a factor of $n/(n-1)$.\n\n   * You can hover over the bars above to see what the average percentage of the true variance actually is for the different samples sizes. If we multiply this percentage by the correction, we fix the discrepancy between sample and population variance. We demonstrate this below for samples of size n = 3. \n  \n```{r, tut= FALSE} \nn = 3\ncorrection = n/(n-1)\n\nhover_value = 67.22902 # % value when hovering over bar for n = 3\n\n# Apply correction\npercent_of_true_variance <- hover_value * correction\n\npercent_of_true_variance \n```\nAs we can see, the correction works by adjusting the downwardly biased sample variance to close to 100% of the true variance. \n\nTry hovering over a few other bars and see yourself that correction works independent of the sample size. You can use the window below as a calculator to change the N and the hover values and then run the code. \n\n<!---LEARNR EX 2-->\n\n<iframe class=\"interactive\" id=\"myIframe2\" src=\"https://tinystats.shinyapps.io/04-variance-ex2/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n<script>\n  iFrameResize({}, \".interactive\");\n</script>\n"
  },
  {
    "path": "05_correlation.Rmd",
    "content": "---\ntitle: \"Covariance and Correlation\"\noutput:\n  bookdown::html_document2:\n    includes:\n      in_header: assets/05_correlation_image.html\n      after_body: assets/foot.html\n---\n\n```{r setup, include=FALSE}\nlibrary(MASS)\nlibrary(plotly)\nlibrary(here)\nlibrary(ggplot2)\n```\n\n:::obj\n\n**Module learning objectives**\n\n1. Create a scatterplot using ggplot\n1. Identify the similarities and differences between calculating the variance and covariance \n1. Write a function for the covariance and Pearson's correlation coefficient\n1. Interpret the meaning behind Pearson's correlation correlation\n1. Describe the purpose of dividing by the product of the standard deviations when calculating the correlation.\n\n:::\n\n# Gathering data on another variable\nOver the course of your time on the islands, you notice that the teacup giraffes seem to have an affinity for celery, which you have already used to entice so they come close enough for a height measurement. Suprisingly, one of the small ones had eaten so much of it! You decide to quantify how much celery each of the giraffes consumed to see if there is any relationship to height.\n\nYou systematically measure the amount of celery eaten and add it to your log of data, which is stored as a data frame called `giraffe_data`.\n\nWe can check out the first entries of the data frame by using the `head( )` command:\n```{r, echo= FALSE}\n\nset.seed(12)\nx1 <- rnorm(50, 10, 2)\n\nx2 <- scale(matrix(rnorm(50), ncol=1))\nx12 <- cbind(scale(x1),x2)\n\nc1 <- var(x12)\nchol1 <- solve(chol(c1))\nnewx <-  x12 %*% chol1\n\nnewc <- matrix(c(1,-0.52, -0.52, 1), ncol=2)\nchol2 <- chol(newc)\nfinalx <- newx %*% chol2 * sd(x1) + mean(x1)\n\nfinalx[,2] <- (2*finalx[,2]-5)\n\ngiraffe_data <- finalx\ncolnames(giraffe_data) <- c(\"Heights\", \"Celery_Eaten\")\n\ngiraffe_data <- as.data.frame(giraffe_data)\npoints <- giraffe_data[c(12, 50, 14, 43, 32),]\n```\n\n```{r}\nhead(giraffe_data)\n```\n\n\n\n# Make a scatter plot\n\nIt's difficult to get an idea if there's any relationship by just looking at the data frame. We learn so much more from creating a plot. Let's revisit our newly acquired ggplot skills to make a scatter plot.\n\nA lot of the code used [previously](02_bellCurve.html) can be re-used for the scatter plot. Two main differences are the following:\n\n(1) Because we now have an additional variable, we need to **assign a `y = ` for the `aes( )` command within `ggplot( )`**. Create the plot so that `Celery_Eaten` will be on the y-axis. \n\n(2) **Add (`+`) a `geom_point( )`** element instead of `geom_hist( )`\n\n\nAlso, we will add lines to our plot, representing the mean of each variable. Here's how we'll do that:\n\n(3) **Add a horizontal line** by adding (`+`) a `geom_hline( )` component. This takes the argument `yintercept = `, which equals the value for where the horizontal line should cross the y-intercept. \n    * Since we want to place this line at the mean of y variable (${\\bar{y}}$), we can use the `mean( )` function instead of specifying a numeric value directly.\n \n(4) **Add a vertical line** by following the same structure as above but using `geom_vline( )` and `xintercept = ` instead. This vertical line will represent the mean (${\\bar{x}}$) of the heights.\n\nConstruct a scatter plot of the data using the window below: \n\n<!---LEARNR EX 1-->\n\n<iframe class=\"interactive\" id=\"myIframe1\" src=\"https://tinystats.shinyapps.io/05-correlation-ex1/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\nGreat, now you have a scatter plot! But recalling the email from your advisor the last time you plotted data, you decide you'd like to customize the look of the plot the same way you did when you created the ggplot histogram. \n\nPlay around with some aesthetics in the window below, and then run the solution to see what we chose. \n\n<!---LEARNR EX 2-->\n<iframe class = \"interactive\" id=\"myIframe2\" src=\"https://tinystats.shinyapps.io/05-correlation-ex2/\n\" scrolling=\"no\" frameborder=\"no\"></iframe>\n<!------------->\n\n\nLooking at the scatter plot, there seems to be a relationship between height and celery eaten, but you will need to quantify this more formally to be sure.\n\n# Relationship between two variables\nHow can the relationship between two variables (and its strength) be quantified? This can be done by assessing how the two variables change together -- one such measure is the **covariance**. \n\nThe covariance elegantly combines the deviations of observations from two different variables into a single value. This is how it's done:\n\n(1) As we did for the variance, we begin by measuring how far each observation lies from its mean. But unlike when we calculated the variance, each observation now includes two variables. We will need to **calculate the observation's distance from each variable's mean**. We call each distance the **deviation** scores on x and on y, respectively. Like the variance, the observation can fall above or below the mean, and as a result the corresponding deviation score will have either a positive or negative sign. \n\nWe observe this below with a subset of 5 points from our scatter plot. Positive deviations are shown in red, negative deviations in blue. \n\n<center>![points](images/05_correlation/points.jpg){width=650px}</center>\n\nWhy do we use the deviations? Because we want to know whether the x-values and y-values move together with respect to their means or not. For example, when an observation's deviation on x is above $\\bar{x}$, will its deviation on y also be above $\\bar{y}$? Using this line of thought, we can begin to systematically characterize how \"together\" the x and y values will change as we go through all observations. \n\n# Crossproduct\nAfter obtaining the deviation scores, we need to combine them into a single measure. We do not simply combine the deviation scores themselves by adding (please see the [page about the variance](04_variance.html) for a discussion of why this is). Instead, we take both deviation scores from the same observation and multiply them together to create a two-dimensional \"shape\" (analagous to when we multiplied a single deviation score by itself to create a square in the variance calculation).\n\n**NOTE:** The resulting value is now on the order of a \"squared\" term. This will become important later.\n\n(2) **Multiply the two deviation scores.** This is called the **crossproduct**. The shapes created by the crossproduct will serve as the \"squared\" terms that we can then use in the next step to sum and summarize the deviations into a single value. \n\nThe equation is shown below for the *sample* crossproduct of the deviation scores. \n\n<div style=\"margin-bottom:50px\">\n</div>\n\\begin{equation}\n (\\#eq:equation1)\n \\Large (x_i - \\bar{x})(y_i - \\bar{y})\n \\end{equation}\n<div style=\"margin-bottom:50px\">\n</div>\n\n Let's explore the attributes of the crossproduct: \n \n <div style=\"margin-bottom:50px\">\n</div>\n\n  * First, we should note that the *overall sign* of the crossproduct will depend on whether or not the two x- and y- values from the same observation move in the same directions relative to their means. Look at the annotated plot below. The crossproducts will either create \"negative\" shapes (shown in blue) or \"positive\" shapes (in red). A third outcome is that the crossproduct could also be 0 -- this will occur when an observation falls on the mean.\n  \n  * Second, the **magnitude of the crossproduct** will scale with the absolute value of the deviation scores. In other words, the further away both deviation scores are from their means, the larger the area of their shapes will be.\n  \n<center>![](images/05_correlation/points1.jpg){width=650px}</center>\n\nThe animation below shows the \"construction\" of the crossproducts from the 5 observations we have been following:\n \n```{r fig.show=\"animate\", animation.hook = 'gifski', fig.width=7.2, fig.height=4.8, echo=FALSE, message=FALSE, warning=FALSE, results = 'hide', interval=0.01666667, fig.align='center', cache=TRUE, include=FALSE}\nset.seed(12)\nx1 <- rnorm(50, 10, 2)\n\nx2 <- scale(matrix(rnorm(50), ncol=1))\nx12 <- cbind(scale(x1),x2)\n\nc1 <- var(x12)\nchol1 <- solve(chol(c1))\nnewx <-  x12 %*% chol1\n\nnewc <- matrix(c(1,-0.52, -0.52, 1), ncol=2)\nchol2 <- chol(newc)\nfinalx <- newx %*% chol2 * sd(x1) + mean(x1)\n\nfinalx[,2] <- (2*finalx[,2]-5)\n\ngiraffe_data <- finalx\ncolnames(giraffe_data) <- c(\"Heights\", \"Celery_Eaten\")\n\ngiraffe_data <- as.data.frame(giraffe_data)\n\npoints <- giraffe_data[c(12, 50, 14, 43, 32),]\nm = mean(giraffe_data[,1])\nm2 = mean(giraffe_data[,2])\nco <- c(\"#289BF8\", \"#FF5E78\", \"#FF5E78\", \"#FF5E78\", \"#289BF8\")\nlimx <- c(5.5, 14.4)\nlimy <- c(5.3, 23)\n\nd <- data.frame(x1=points[,1], x2=m, y1=points[,2], y2=m2)\nv <- do.call(cbind, lapply(1:5, function(x) seq(d[x,]$x1, d[x,]$x2, by = (d[x,]$x2-d[x,]$x1)/29)))\nvv <- lapply(1:30, function(y) data.frame(x1=v[y,], x2=d$x1, y1=points[,2], y2=points[,2]))\n\npp <- function(x){\n  p1 <- ggplot()+geom_point(data=points, aes(x=Heights, y=Celery_Eaten),color=co, size=4)+\n    theme_light()+geom_segment(aes(x = x2, y = y1, xend = x1, yend = y1), data = x, color=co, size=2)+labs(x=\"Heights\", y=\"Celery Eaten\")+theme(panel.border=element_blank(),panel.grid.minor=element_blank(), axis.ticks=element_blank())+xlim(limx)+ylim(limy)+geom_vline(xintercept = mean(giraffe_data$Heights), col=\"grey50\", linetype=\"dashed\", size = 2) + geom_hline(yintercept = mean(giraffe_data$Celery_Eaten), col= \"grey81\", linetype=\"dashed\", size= 2)\n  p1\n}\n\nlapply(vv, function(x) pp(x))\n\nh <- do.call(cbind, lapply(1:5, function(x) seq(d[x,]$y1, d[x,]$y2, by = (d[x,]$y2-d[x,]$y1)/29)))\nhh <- lapply(1:30, function(y) data.frame(x1=points[,1], x2=m, y1=points[,2], y2=h[y,]))\n\npp2 <- function(x){\n  p2 <- ggplot()+geom_point(data=points, aes(x=Heights, y=Celery_Eaten),color=co, size=4)+\n    theme_light()+geom_segment(aes(x = x1, y = y1, xend = x2, yend = y1), data = d, color=co, size=2)+\n  geom_segment(aes(x = x1, y = y2, xend = x1, yend = y1), data = x, color=co, size=2)+labs(x=\"Heights\", y=\"Celery Eaten\")+theme(panel.border=element_blank(),panel.grid.minor=element_blank(), axis.ticks=element_blank())+xlim(limx)+ylim(limy)+geom_vline(xintercept = mean(giraffe_data$Heights), col=\"grey50\", linetype=\"dashed\", size = 2) + geom_hline(yintercept = mean(giraffe_data$Celery_Eaten), col= \"grey81\", linetype=\"dashed\", size= 2)\n  p2\n}\n\nlapply(hh, function(x) pp2(x))\n\npp22 <- function(x){\n  p2 <- ggplot()+theme_light()+geom_rect(data=d, mapping=aes(xmin=x1, xmax=x2, ymin=y1, ymax=y2), color=alpha(co, x),fill=co, alpha=x/5, size=2)+geom_segment(aes(x = x1, y = y1, xend = x2, yend = y1), data = d, color=co, size=2)+\n  geom_segment(aes(x = x1, y = y2, xend = x1, yend = y1), data = d, color=co, size=2)+\n    geom_point(data=points, aes(x=Heights, y=Celery_Eaten),color=co, size=4)+\n    labs(x=\"Heights\", y=\"Celery Eaten\")+theme(panel.border=element_blank(),panel.grid.minor=element_blank(), axis.ticks=element_blank())+xlim(limx)+ylim(limy)+geom_vline(xintercept = mean(giraffe_data$Heights), col=\"grey50\", linetype=\"dashed\", size = 2) + geom_hline(yintercept = mean(giraffe_data$Celery_Eaten), col= \"grey81\", linetype=\"dashed\", size= 2)\np2\n}\nlapply(seq(0,1,0.1), function(x) pp22(x))\n\npp3 <- function(x){\np3 <- ggplot()+theme_light()+geom_rect(data=d, mapping=aes(xmin=x1, xmax=x2, ymin=y1, ymax=y2), color=co,fill=co, alpha=0.2, size=2)+\n  geom_point(data=points, aes(x=Heights, y=Celery_Eaten),color=co, size=4)+\n  labs(x=\"Heights\", y=\"Celery Eaten\")+theme(panel.border=element_blank(),panel.grid.minor=element_blank(), axis.ticks=element_blank())+xlim(limx)+ylim(limy)+geom_vline(xintercept = mean(giraffe_data$Heights), col=\"grey50\", linetype=\"dashed\", size = 2) + geom_hline(yintercept = mean(giraffe_data$Celery_Eaten), col= \"grey81\", linetype=\"dashed\", size= 2)\np3\n}\nlapply(1:15, function(x) pp3())\n```\n\n<video class=\"small_vid\"  autoplay loop muted playsinline>\n  <source src=\"images/05_correlation/lines.webm\" type=\"video/webm\">\n  <source src=\"images/05_correlation/lines.mp4\" type=\"video/mp4\">\n</video>\n\n\\\n \n(3) **Sum the crossproducts.** The sum of the crossproduct gives us a single number.\n<div style=\"margin-bottom:50px\">\n</div>\n<center>![](images/05_correlation/Shapes 2.png){width=90%}</center>\n<div style=\"margin-bottom:50px\">\n</div>\n\nAs we add the crossproducts, some of the \"negative\" and \"positive\" values of the shapes will cancel each other out. This is okay because this tells us important information about our two variables. If the negative and positive shapes cancel each other out completely, it would mean that there is no relationship. In most cases this will not happen, and the sum of the crossproducts will be positive or negative. In general, the larger the magnitude of the sum of the crossproducts, the more strongly the two variables move together. The equation is shown below.\n\n<div style=\"margin-bottom:50px\">\n</div>\n\\begin{equation}\n (\\#eq:equation2)\n \\Large \\sum_{i=1}^n (x_i - \\bar{x})(y_i - \\bar{y})\n \\end{equation}\n<div style=\"margin-bottom:50px\">\n</div>\n\n# Covariance\n(4) We then **divide the sum of the crossproduct by $n-1$ (or $N$ in the population equation)** so that we have taken into account how many observations contributed to this quantity. (Why $n-1$? See [here](04_variance.html).) This final number is called the **covariance**, and its value tells us how much our two variables fluctuate together. The higher the absolute value, the stronger the relationship.\n\nThe equation for the covariance (abbreviated \"cov\") of the variables x and y is shown below. As a preference of style, we multiply by $\\frac{1}{n-1}$ instead of dividing the entire term by $n-1$. \n\n<div style=\"margin-bottom:50px\">\n</div>\n\\begin{equation}\n (\\#eq:equation3)\n \\Large cov(x,y) = {\\frac{1}{n-1}\\sum_{i=1}^n (x_i - \\bar{x})(y_i - \\bar{y})}\n \\end{equation}\n<div style=\"margin-bottom:50px\">\n</div>\n\n\n# Problem of interpretation\nHowever, the covariance is not an intuitive value. Remember that we have been working with terms that are on the \"squared\" scale, which is not only difficult to interpret (just like the variance is) but it is also the product of two variables on possibly different scales. How could we interpret a covariance with units of millimeters*grams mean?\n\nAnother point to make is that value of the covariance will be vastly different if we had decided to change the units (millimeters vs centimeters, or grams vs kilograms). \n\nAs a result, the covariance is not an easy metric to work with or to compare with other covariances. So we need to standardize it!\n\n# Pearson correlation coefficient, $r$\nHow do we standardize the covariance?\n\nThe solution is to (1) take the standard deviations of each variable, (2) multiply them together, and (3) divide the covariance by this product -- the resulting value is called the **Pearson correlation coefficient**. When referring to the population correlation coefficient, the symbol $\\rho$ (pronounced \"rho\") is used. When referring to the sample correlation coefficient, a lowercase $r$ is used (often called \"Pearson's r\").\n\n<div style=\"margin-bottom:50px\">\n\nHere is the equation for the **population correlation**:\n</div>\n\\begin{equation}\n (\\#eq:equation4)\n \\Large \\rho(x,y) = \\frac{ \\frac{1}{N} \\sum_{i=1}^N (x_i - \\mu_x)(y_i - \\mu_y)}{\\sigma_x \\sigma_y}\n \\end{equation}\n<div style=\"margin-bottom:50px\">\n</div>\n\n<div style=\"margin-bottom:50px\">\n</div>\nThis equation is used for the **sample correlation**:\n\\begin{equation}\n (\\#eq:equation5)\n \\Large r(x,y) = \\frac{ \\frac{1}{n-1} \\sum_{i=1}^n (x_i - \\bar{x})(y_i - \\bar{y})}{s_x s_y}\n \\end{equation}\n<div style=\"margin-bottom:50px\">\n</div>\n\n# What does the correlation mean?\nWe can interpret the correlation as a measure of **the strength and direction** of the relationship between two variables. It is a \"standardized\" version of the covariance. \n\n  * The correlation will always be between -1 and 1. At these extreme values, the two variables have the strongest relationship possible, in which each data point will fall exactly on a line. When the absolute value of the correlation coefficient approaches 0, the observations will be more \"scattered\". \n  * The sign of the correlation coefficient indicates the direction of the linear relationship.  When $r$= 0 there is no relationship between the variables. Look at the figure below to see what observations of different $r$ values look like. \n\n<center>![](images/05_correlation/diff_corr.png){width=90%}</center>  \n\n**Your turn**\n\nImagine you're given a plot like the one below. What would you say it's correlation value is? Try out your guess for a few plots, and if you need a hint to help you visualize, click *Show trend line*.  \n\n\n<!--------SHINY1------>\n<iframe class=\"interactive\" src=\"https://tinystats.shinyapps.io/Guess_corr/?showcase=0\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n# Code it up\n\n* In the window below, write your own function to compute the sample covariance of two variables, and call it `my_covariance( )`. \n* Then create a second function called `my_correlation( )` in which you will compute the correlation of two variables. You may incorporate your function `my_covariance( )` in this step to save yourself some time.\n* Once you've created both functions, use them to compute the covariance and correlation between `Heights` and `Celery_Eaten` within the data frame `giraffe_data`.\n* Finally, compare your functions' outputs with the base R functions for covariance, `cov( )` and `cor( )`. \n\nRemember, you will need to write both functions so that they will take two parameters, one for each variable. The parameters for `my_covariance( )` have been setup for you.\n\n<!--LEARNR EX 3--->\n\n<iframe class = \"interactive\" id=\"myIframe3\" src=\"https://tinystats.shinyapps.io/05-correlation-ex3/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!----------->\n\n\\\n\nWow, you can see that there is a negative relationship between giraffe heights and how much celery teacup giraffes eat. Could this be due to celery being a negative calorie vegetable? Are these giraffes onto something?\n\n<center>![](images/05_correlation/Celery.png){width=30%}</center>\n\n# The Standardizer\nYou can take a look at the animation below to see a conceptual summary of how correlation will standarize the covariance, translating it into an easily interpretable metric that will always be bound by -1 and 1. \n\n<!-- # ```{r, fig.show='animate', animation.hook = 'gifski', interval= 0.15, fig.width=10, fig.height=5, echo=FALSE, results=\"hide\", message=FALSE} -->\n<!-- #  -->\n<!-- # getwd() -->\n<!-- #  -->\n<!-- # library(jpeg) -->\n<!-- # library(gifski) -->\n<!-- # frames <- list.files(path=\"factory/\") -->\n<!-- #  -->\n<!-- # factory <- function(x){ -->\n<!-- # img <- readJPEG(paste0(\"factory/\",frames[x]), native=TRUE) -->\n<!-- # plot(0:1, 0:1, type=\"n\", ann=FALSE, axes=FALSE) -->\n<!-- # rasterImage(img,0,0,1,1) -->\n<!-- # } -->\n<!-- #  -->\n<!-- # lapply(1:175, function(x) factory(x)) -->\n<!-- #  -->\n<!-- #  -->\n<!-- # # gif_file <-  file.path(getwd(), 'factory.gif') -->\n<!-- # # save_gif(lapply(1:175, function(x) factory(x)), gif_file= gif_file, progress = TRUE, loop= TRUE, delay= 0.5, width=400, height= 133) -->\n<!-- # #  -->\n<!-- # # utils::browseURL(gif_file) -->\n<!-- #  -->\n<!-- # ``` -->\n<!--![](images/05_correlation/factory.gif)-->\n\n<video controls disablePictureInPicture controlslist=\"nodownload nofullscreen noremoteplayback\" loop muted playsinline poster=\"images/05_correlation/factory.png\">\n  <source src=\"images/05_correlation/factory.webm\" type=\"video/webm\">\n  <source src=\"images/05_correlation/factory.mp4\" type=\"video/mp4\">\n</video>\n\n# Why divide by $\\sigma_x\\sigma_y$? \nWell it's complicated, (see [here](https://www.quora.com/What-is-an-intuitive-explanation-for-why-the-sample-correlation-coefficient-is-equal-to-the-sample-covariance-divided-by-the-standard-deviations-of-x-and-y-multiplied-by-one-another) and [here](https://math.stackexchange.com/questions/158449/proving-that-the-magnitude-of-the-sample-correlation-coefficient-is-at-most-1)) but it builds on the mathematical principle that the covariance of x and y will never exceed the product of the standard deviations of x and y. This means that the maximum correlation value will occur when the absolute value of the covariance and the product of the standard deviations are equal. \n\n\nIf you don't take our word for it, press play below to see what the relationship between ${s}_x{s}_y$ and ${cov(x,y)}$ looks like. \n\n```{r, tut=FALSE, echo=FALSE, message= FALSE, cache=TRUE}\ncor_var <- function(x){\n  r <- 0\n  d <- mvrnorm(n = 6, mu = c(0,0), Sigma = matrix(c(1, r, r, 2), nrow = 2))\n  d <- round(d, 1)\n  return(d)\n}\n\nd <- lapply(1:5006, function(x) cor_var())\ndd <- as.data.frame(do.call(rbind, lapply(d, function(x) cbind(var(x)[1,1], var(x)[2,2], var(x)[1,2], cor(x)[1,2]))))\ncolnames(dd) <- c(\"var_x\", \"var_y\", \"cov_xy\", \"cor\")\ndd$p_sd <- sqrt(dd$var_x)*sqrt(dd$var_y)\n\nff <- function(x){\n  d <- dd[1:x,]\n  d$frame <- x+1\n  return(d)\n}\n\npd <- do.call(rbind, lapply(seq(99, 3000, 100), function(x) ff(x)))\n\np <- data.frame(var_x=Inf, var_y=Inf, cov_xy=Inf, cor=0, p_sd=Inf, frame=0)\npd <- rbind(pd, p)\npd <- round(pd, 2)\n\nm <- list(\n  l = 100,\n  r = 100,\n  b = 10,\n  t = 10,\n  pad = 4\n)\n\np <- pd %>%\n  plot_ly(\n    width=700, \n    height=450,\n    type = 'scatter',\n    mode='markers',\n    x = ~cov_xy,\n    y = ~p_sd,\n    frame = ~frame,\n    color = ~cor,\n    colors = c(\"#289BF8\",\"#FF5E78\"),\n    marker = list(size = 12, opacity=1),\n    hoverinfo=\"text\",\n    text=~paste(\"Covariance:\", round(cov_xy, 2), \"\\nPooled SD:\",\n                round(p_sd, 2))\n  )%>% \n  animation_opts(\n    frame = 100,\n    transition = 0,\n    redraw = FALSE\n  )%>%\n  config(displayModeBar = F) %>%\n  layout(margin= m, autosize=F,\n    xaxis = list(range=c(-3,3), zeroline=FALSE, title=\"Covariance\"),\n    yaxis = list(range=c(-0.1,4.5), zeroline=FALSE, title=\"Product of standard deviations\")\n    )%>%\n  animation_slider(currentvalue = list(prefix = \"Number of Samples: \", font = list(color=\"grey70\", size=14)))\n\nhtmltools::save_html(p,here(\"images/05_correlation/cov_vs_sxsy.html\"))\n\n```\n<center><iframe style=\"margin: 0;\" src=\"images/05_correlation/cov_vs_sxsy.html\" width=\"720\" height=\"500\" scrolling=\"yes\" seamless=\"seamless\" frameBorder=\"0\"> </iframe></center>\n\nAs you look at the plot above, you may have the following questions:\n\n  * Why are there clearly defined boundaries?\n  \n    + Because at the edges is where the covariance is the greatest value that it can be-- it is equal to the product of the standard deviations there.\n    \n    + The slope is 1 at this boundary.\n    \n  * Where in the plot do the strongest correlations end up?\n  \n      + On the edges -- when the absolute value of the numerator and denominator of the equation are equal-- the quotient will = 1 (or negative 1, depending on the sign of the covariance in the numerator).\n    \n# Things to think about\n\n**Correlation does not capture relationships that are not linear**: If the relationship is not linear, then correlation will not be meaningful. Check out the plot below. There is a clear U-shaped relationship between the two variables, but the correlation coefficient for these data is very close to 0. To measure non-linear relationships a different metric must be used.\n\n<center>![](images/05_correlation/corr_curve.png){width=40%}</center>\n  \n\n**Correlation is not causation**: Just because there is a linear relationship between two variables does not mean we have evidence that one variable causes the other. Even if there really was a cause-and-effect relationship, with correlation we cannot say which variable is the cause and which is the effect. It's also possible that there exists some other unmeasured variable affecting the linear relationship we observe. And of course, any apparent relationship may be due to nothing more than random chance.  \n\n<script>\n  iFrameResize({}, \".interactive\");\n</script>\n"
  },
  {
    "path": "06_standardError.Rmd",
    "content": "---\ntitle: \"Intro to Inference\"\noutput:\n  bookdown::html_document2:\n    includes:\n      in_header: assets/06_standardError_image.html\n      after_body: assets/foot.html\n---\n\n```{r setup, include = FALSE}\nlibrary(ggplot2)\nlibrary(tweenr)\nlibrary(parallel)\nlibrary(MASS)\n```\n\n\n:::obj\n**Module learning objectives**\n\n1. Determine how to quantify the uncertainty of an estimate\n1. Describe the concept of statistical inference \n1. Interpret sampling distributions and explain how they are influenced by sample size\n1. Define and calculate standard error\n1. Use the standard error to construct 95% confidence intervals\n:::\n\n# How accurate is our estimate of the mean?\n\nLet's revisit the first few days during which we collected data stored in the vector `heights_island1`. We were able to verify that the heights were normally distributed and calculated our sample mean, ${\\bar{x}}$. However, we know that ${\\bar{x}}$ is only an *estimate* of the true population mean, ${\\mu}$, which is the true value of interest. It is unlikely that we will ever know the value of ${\\mu}$, since access to all possible observations is rare. Therefore we will have to rely on ${\\bar{x}}$ estimates from random samples drawn from the population as the best approximation of ${\\mu}$.\n\nNot all sample means are created equal. Some are better estimates than others. Recall the [animation](03_mean.html#mean_animation) showing the relationship between sample size and variability of the mean. As we learned from this animation, in the long-run, large samples are necessary to get an accurate estimate of ${\\mu}$.\n\n\n<div class= \"alert alert-note\">\n> **A note about language:** here, words like \"accuracy\", \"precision\", and \"uncertainty\" are used in a rather fast and loose way. We're using the laymen's application of these terms to refer to the long-run variability of estimates produced from repeated, independent trials. There are stricter, more formal statistical uses for these words, but for right now, we're going to ignore these nuances so that we can move on with understanding these concepts in broad strokes.\n\n</div>\n\nOne reason we care about our sample estimate's accuracy is because we want to be able to answer questions about the population by making inferences. **Statistical inference** uses math to draw conclusions about the population based on a subset of the full picture (i.e. a sample). Subsets of data are of course limited, so it's therefore important to acknowledge that the strength of the conclusions drawn about the population is dependent on the precision of the sample estimate. For example, say that we guess that the population mean value of giraffe heights on Island 1 is less than 11 cm. We can make some inferences about whether or not this is a good guess based on what we learn from our sample of giraffe heights. We'll revisit this question a few times below. \n\n# Creating a sampling distribution\n\nThe mean of our sample of 50 giraffes from Island 1 was:\n\n```{r, echo=FALSE}\nset.seed(12)\nheights_island1 <- rnorm(50, 10, 2)\n``` \n\n```{r}\nmean(heights_island1)\n``` \n\nHow can we quantify the accuracy of this estimate, given its sample size?\n\nIn theory, one way to illustrate this is to generate data not just from a single sample but from many samples of the same size (N) drawn from the same population. \n\nImagine that after you collected all 50 measurements for `heights_island1`, you wake up one morning with no memory of collecting data at all---and so you go out and collect 50 giraffe heights again and subsequently calculate the mean. Further imagine that this groundhog day (or more correctly, groundhog *week*) situation repeats itself many, many times.\n\nWhen you finally return to your sanity, you find stacks of notebooks filled with mean values from each of your individual data collections. \n\n<center>![](images/06_standardError/Notebooks.jpg){width=600px}</center>\n\nInstead of viewing this as a massive waste of time, you make the best out of the situation and create a histogram of all the means. In other words you create a plot showing the distribution of the sample means, also known as a **sampling distribution**. \n\nThe animation below illustrates the process of creating the sampling distribution for 1,000 sample means.\n\nOn the left side, each histogram represents a sample (e.g. `heights_island1` would be one sample, and we're flashing through 1,000 of them in total). Correspondingly, each dot signifies an observation. After each sample histogram is completed, ${\\bar{x}}$ is calculated. This ${\\bar{x}}$ value is then subsequently added to the histogram of the sampling distribution on the right. As you can see below, this process is repeated, allowing the sampling distribution to build up.\n\n<center>\n```{r fig.show=\"animate\", animation.hook = 'gifski', fig.width=7, fig.height=3, echo=FALSE, message=FALSE, warning=FALSE, results = 'hide', interval=0.08, loop=FALSE, cache=TRUE}\n\nppplot <- function(sub){\nx <- round(rnorm(50, 9.7, 2.1))\nm <- mean(x)\ndf <- data.frame(x = x, y = 23)\ndfs <- list(df)\nfor(i in seq_len(nrow(df))) {\n  dftemp <- tail(dfs, 1)\n  dftemp[[1]]$y[i] <- sum(dftemp[[1]]$x[seq_len(i)] == dftemp[[1]]$x[i])\n  dfs <- append(dfs, dftemp)\n}\ndfs <- append(dfs, dfs[rep(length(dfs), 3)])\ndft <- tween_states(dfs, 10, 1, 'cubic-in', 50)\ndft$y <- dft$y - 0.5\ndft <- dft[dft$y != 23, ]\n\nppl <- function(frame){\n  p <- ggplot(data = dft[dft$.frame==frame,], aes(x=x, y=y)) + \n    geom_point(shape=16, color=\"green3\", size = 4) + \n    ylim(0,16) + xlim(3,17) + \n    theme_light() + \n    theme(panel.border = element_blank(), panel.grid.minor=element_blank()) + \n    labs(x=\"Giraffe Heights\", y=NULL)\n  df <- data.frame()\n  p2 <- ggplot(df) + geom_point() + xlim(0, 16) + ylim(3, 17)+theme_void()\n  p3 <- ggplot(df) + geom_point() + xlim(8.7, 10.7) + ylim(0, 150) + \n    theme_light() + \n    theme(panel.border=element_blank(), panel.grid.minor=element_blank()) + labs(x = \"Sample means\", y = NULL)\n  cowplot::plot_grid(p, p2, p3, align =\"h\", rel_widths = c(1, 0.55, 1), ncol = 3)\n  \n}\n\nppl2 <- function(frame){\n  p <- ggplot(data=dft[dft$.frame==53,], aes(x=x, y=y)) + \n    geom_point(shape = 16, color = \"green3\", size = 4) + \n    ylim(0,16) + xlim(3,17) + \n    theme_light() + \n    theme(panel.border = element_blank(), panel.grid.minor = element_blank()) + \n    geom_vline(xintercept = m, linetype = 2) + \n    labs(x = \"Giraffe Heights\", y = NULL)\n  p\n  df <- data.frame()\n  lb1 <- paste0(\"bar(x)\", \"[\", sub, \"]\", \" == \", round(m,2))\n  p2 <- ggplot(df) + \n    geom_point() + \n    xlim(0, 16) + ylim(3, 17) + \n    theme_void() + \n    annotate(\"text\", x = 8, y=10, label = lb1, parse = TRUE, size = 7) + \n    annotate(\"segment\", x = 1, xend = 15, y = 8, yend = 8, colour = \"black\", size = 1, arrow = arrow(type = \"closed\", length = unit(0.3,\"cm\")))\n  p3 <- ggplot(df) + geom_point() + xlim(8.7, 10.7) + ylim(0, 150)+theme_light()+theme(panel.border=element_blank(), panel.grid.minor=element_blank())+annotate(\"segment\", x = m, xend = m, y = 20, yend = 4, colour = \"black\", size=1, arrow=arrow(type = \"closed\", length = unit(0.3,\"cm\")))+labs(x=\"Sample means\", y=NULL)\n  cowplot::plot_grid(p,p2,p3, align=\"h\", rel_widths = c(1,0.55,1), ncol = 3)\n}\n\npf <- list(lapply(seq(1, 53, 2), function(x) ppl(x)), lapply(rep(53, 3), function(x) ppl(x)), lapply(1:40, function(x) ppl2()))\nreturn(pf)\n}\nmclapply(1:3, function(x) ppplot(x), mc.cores = 8, mc.cleanup = TRUE)\n\ncircleFun <- function(center=c(0,0), diameter=1, npoints=100, start=0, end=2, filled=TRUE){\n  tt <- seq(start*pi, end*pi, length.out=npoints)\n  df <- data.frame(\n    x = center[1] + diameter / 2 * cos(tt),\n    y = center[2] + diameter / 2 * sin(tt)\n  )\n  if(filled==TRUE) { \n    df <- rbind(df, center)\n  }\n  return(df)\n}\nfullCircle <- circleFun(c(1, -1), 2.3, start=0, end=2, filled=FALSE)\nfullCircle2 <- circleFun(c(1, -1), 2, start=0, end=2, filled=FALSE)\nfullCircle3 <- circleFun(c(1, -1), 1.3, start=0, end=2, filled=FALSE)\nfullCircle4 <- circleFun(c(1, -1), 0.3, start=0, end=2, filled=FALSE)\nfullCircle5 <- circleFun(c(1, -1), 0.1, start=0, end=2, filled=FALSE)\n\ntris <- circleFun(c(1, -1), 1.6, start=1.2, end=-0.2, filled=FALSE, npoints=50)\ntris2 <- circleFun(c(1, -1), 0.2, start=1.4, end=0, filled=FALSE, npoints=50)\ntris3 <- circleFun(c(1, -1), 0.2, start=1, end=-0.4, filled=FALSE,npoints=50)\n\ns <- c(rep(1,10), 1:50)\n\ntrii <- lapply(s, function(x) data.frame(x=c(tris[x,1],tris2[x,1],tris3[x,1]), y=c(tris[x,2],tris2[x,2],tris3[x,2])))\n\nquarterCircle <- circleFun(c(1,-1), diameter = 1.85, start=1, end=1.25, filled=TRUE)\nquarterCircle2 <- circleFun(c(1,-1), diameter = 1.85, start=0.75, end=1, filled=TRUE)\nquarterCircle3 <- circleFun(c(1,-1), diameter = 1.85, start=0.5, end=0.75, filled=TRUE)\nquarterCircle4 <- circleFun(c(1,-1), diameter = 1.85, start=0.25, end=0.5, filled=TRUE)\nquarterCircle5 <- circleFun(c(1,-1), diameter = 1.85, start=0.25, end=0, filled=TRUE)\nquarterCircle6 <- circleFun(c(1,-1), diameter = 1.85, start=2, end=1.75, filled=TRUE)\n\nx <- round(rnorm(50, 9.7, 2.1))\nm <- mean(x)\ndf <- data.frame(x = x, y = 23)\ndfs <- list(df)\nfor(i in seq_len(nrow(df))) {\n  dftemp <- tail(dfs, 1)\n  dftemp[[1]]$y[i] <- sum(dftemp[[1]]$x[seq_len(i)] == dftemp[[1]]$x[i])\n  dfs <- append(dfs, dftemp)\n}\ndfs <- append(dfs, dfs[rep(length(dfs), 3)])\ndft <- tween_states(dfs, 10, 1, 'cubic-in', 50)\ndft$y <- dft$y - 0.5\ndft <- dft[dft$y != 23, ]\ndft <- dft[dft$.frame %in% c(1:26, seq(27, 53, 2)),]\ndft$.frame <- rep(1:40, each=50)\n\nplots <- function(dd){\np <- ggplot() + \n  geom_polygon(data=fullCircle, aes(x, y), color=\"#40596b\", fill=\"#40596b\") +\n  geom_polygon(data=fullCircle2, aes(x, y), color=\"white\", fill=\"white\") +\n  geom_polygon(data=quarterCircle, aes(x,y), color=\"#cdd6e0\", fill=\"#cdd6e0\") + \n  geom_polygon(data=quarterCircle2, aes(x,y), color=\"#acb3ba\", fill=\"#acb3ba\") + \n  geom_polygon(data=quarterCircle3, aes(x,y), color=\"#ffd15c\", fill=\"#ffd15c\") +\n  geom_polygon(data=quarterCircle4, aes(x,y), color=\"#f8b64c\", fill=\"#f8b64c\") +\n  geom_polygon(data=quarterCircle5, aes(x,y), color=\"#ff7058\", fill=\"#ff7058\") +\n  geom_polygon(data=quarterCircle6, aes(x,y), color=\"#f1543f\", fill=\"#f1543f\") +\n  geom_polygon(data=fullCircle3, aes(x,y), color=\"white\", fill=\"white\") +\n  geom_polygon(data=fullCircle4, aes(x,y), color=\"#40596b\", fill=\"#40596b\") +\n  geom_polygon(data=trii[[dd]], aes(x,y), color=\"#40596b\", fill=\"#40596b\") +\n  geom_polygon(data=fullCircle5, aes(x,y), color=\"white\", fill=\"white\") +\n  coord_equal() +\n  theme_void()\n  ddd <- ifelse(dd<20, 1, ifelse(dd<35, 2, ifelse(dd<45, 3, ifelse(dd<50, 4, ifelse(dd<53, 5, ifelse(dd<55, 6, ifelse(dd<57, 7, ifelse(dd<59, 8, base::sample(1:10,1)))))))))\n  p2 <- ggplot(data=dft[dft$.frame==dd,],aes(x=x, y=y))+geom_point(shape=16, color=\"green3\", size=4)+ylim(0,16)+xlim(3,17)+theme_light()+theme(panel.border=element_blank(), panel.grid.minor=element_blank())+labs(x=\"Giraffe Heights\", y=NULL)\n  df <- data.frame()\n  p3 <- ggplot(df) + geom_point() + xlim(8.7, 10.7) + ylim(0, 150)+theme_light()+theme(panel.border=element_blank(), panel.grid.minor=element_blank())+labs(x=\"Sample means\", y=NULL)\n  cowplot::plot_grid(p2,p,p3, align=\"h\",rel_widths = c(1,0.55, 1), ncol=3)\n}\n\nlapply(seq(1,40,3), function(x) plots(x))\n\nhists <- function(x){\n  x <- round(rnorm(50, 9.7, 2.1))\n  m <- mean(x)\n  return(m)\n}  \n\ndh <- do.call(rbind, lapply(1:1000, function(x) hists()))\n\n hh <- function(x){\n  d <- data.frame(Height=dh[1:x])\n  return(d)\n}\n\ndhh <<- lapply(1:1000, function(x) hh(x))\n\nplots2 <- function(dd){\np <- ggplot() + \n  geom_polygon(data=fullCircle, aes(x, y), color=\"#40596b\", fill=\"#40596b\") +\n  geom_polygon(data=fullCircle2, aes(x, y), color=\"white\", fill=\"white\") +\n  geom_polygon(data=quarterCircle, aes(x,y), color=\"#cdd6e0\", fill=\"#cdd6e0\") + \n  geom_polygon(data=quarterCircle2, aes(x,y), color=\"#acb3ba\", fill=\"#acb3ba\") + \n  geom_polygon(data=quarterCircle3, aes(x,y), color=\"#ffd15c\", fill=\"#ffd15c\") +\n  geom_polygon(data=quarterCircle4, aes(x,y), color=\"#f8b64c\", fill=\"#f8b64c\") +\n  geom_polygon(data=quarterCircle5, aes(x,y), color=\"#ff7058\", fill=\"#ff7058\") +\n  geom_polygon(data=quarterCircle6, aes(x,y), color=\"#f1543f\", fill=\"#f1543f\") +\n  geom_polygon(data=fullCircle3, aes(x,y), color=\"white\", fill=\"white\") +\n  geom_polygon(data=fullCircle4, aes(x,y), color=\"#40596b\", fill=\"#40596b\") +\n  geom_polygon(data=trii[[dd]], aes(x,y), color=\"#40596b\", fill=\"#40596b\") +\n  geom_polygon(data=fullCircle5, aes(x,y), color=\"white\", fill=\"white\") +\n  coord_equal() +\n  theme_void()\n  ddd <- ifelse(dd<20, 1, ifelse(dd<35, 2, ifelse(dd<45, 3, ifelse(dd<50, 4, ifelse(dd<53, 5, ifelse(dd<55, 6, ifelse(dd<57, 7, ifelse(dd<59, 8, base::sample(1:10,1)))))))))\n  set.seed(ddd)\n  x <- round(rnorm(50, 9.7, 2.1))\nm <- mean(x)\ndf <- data.frame(x = x, y = 23)\ndfs <- list(df)\nfor(i in seq_len(nrow(df))) {\n  dftemp <- tail(dfs, 1)\n  dftemp[[1]]$y[i] <- sum(dftemp[[1]]$x[seq_len(i)] == dftemp[[1]]$x[i])\n  dfs <- append(dfs, dftemp)\n}\ndfs <- append(dfs, dfs[rep(length(dfs), 3)])\ndft <- tween_states(dfs, 10, 1, 'cubic-in', 50)\ndft$y <- dft$y - 0.5\ndft <- dft[dft$y != 23, ]\n  p2 <- ggplot(data=dft[dft$.frame==53,],aes(x=x, y=y))+geom_point(shape=16, color=\"green3\", size=4)+ylim(0,16)+xlim(3,17)+theme_light()+theme(panel.border=element_blank(), panel.grid.minor=element_blank())+geom_vline(xintercept = m, linetype=2)+labs(x=\"Giraffe Heights\", y=NULL)\n  df <- data.frame()\n\np3 <- ggplot(data = dhh[[dd-40]], aes(x = Height)) +\n  geom_histogram(binwidth = 0.1, color = \"white\", fill=\"green3\") +\n  theme_light() +\n  scale_y_continuous(limits = c(0,150)) +\n  labs(x=NULL, y=NULL) +\n  xlim(8.7, 10.7) + \n  theme(panel.border=element_blank(), panel.grid.minor=element_blank()) +\n  labs(x=\"Sample means\", y=NULL)\n  cowplot::plot_grid(p2,p,p3, align=\"h\",rel_widths = c(1,0.55, 1), ncol=3)\n}\nlapply(seq(41,50,2), function(x) plots2(x))\nlapply(seq(51,60,1), function(x) plots2(x))\n\n\nplots3 <- function(dd){\n  \np <- ggplot() + \n  geom_polygon(data=fullCircle, aes(x, y), color=\"#40596b\", fill=\"#40596b\") +\n  geom_polygon(data=fullCircle2, aes(x, y), color=\"white\", fill=\"white\") +\n  geom_polygon(data=quarterCircle, aes(x,y), color=\"#cdd6e0\", fill=\"#cdd6e0\") + \n  geom_polygon(data=quarterCircle2, aes(x,y), color=\"#acb3ba\", fill=\"#acb3ba\") + \n  geom_polygon(data=quarterCircle3, aes(x,y), color=\"#ffd15c\", fill=\"#ffd15c\") +\n  geom_polygon(data=quarterCircle4, aes(x,y), color=\"#f8b64c\", fill=\"#f8b64c\") +\n  geom_polygon(data=quarterCircle5, aes(x,y), color=\"#ff7058\", fill=\"#ff7058\") +\n  geom_polygon(data=quarterCircle6, aes(x,y), color=\"#f1543f\", fill=\"#f1543f\") +\n  geom_polygon(data=fullCircle3, aes(x,y), color=\"white\", fill=\"white\") +\n  geom_polygon(data=fullCircle4, aes(x,y), color=\"#40596b\", fill=\"#40596b\") +\n  geom_polygon(data=trii[[60]], aes(x,y), color=\"#40596b\", fill=\"#40596b\") +\n  geom_polygon(data=fullCircle5, aes(x,y), color=\"white\", fill=\"white\") +\n  coord_equal() +\n  theme_void()\n\nx <- round(rnorm(50, 9.7, 2.1))\nm <- mean(x)\ndf <- data.frame(x = x, y = 23)\ndfs <- list(df)\nfor(i in seq_len(nrow(df))) {\n  dftemp <- tail(dfs, 1)\n  dftemp[[1]]$y[i] <- sum(dftemp[[1]]$x[seq_len(i)] == dftemp[[1]]$x[i])\n  dfs <- append(dfs, dftemp)\n}\ndfs <- append(dfs, dfs[rep(length(dfs), 3)])\ndft <- tween_states(dfs, 10, 1, 'cubic-in', 50)\ndft$y <- dft$y - 0.5\ndft <- dft[dft$y != 23, ]\n\n  p2 <- ggplot(data=dft[dft$.frame==53,],aes(x=x, y=y))+geom_point(shape=16, color=\"green3\", size=4)+ylim(0,16)+xlim(3,17)+theme_light()+theme(panel.border=element_blank(), panel.grid.minor=element_blank())+geom_vline(xintercept = m, linetype=2)+labs(x=\"Giraffe Heights\", y=NULL)\n  \nhh <- function(x){\n  d <- data.frame(Height=dh[1:x])\n  return(d)\n}\n\ndhh <- lapply(1:1000, function(x) hh(x))\np3 <- ggplot(data = dhh[[dd+40]], aes(x = Height)) +\n  geom_histogram(binwidth = 0.1, color = \"white\", fill=\"green3\") +\n  theme_light() +\n  scale_y_continuous(limits = c(0,150)) +\n  labs(x=NULL, y=NULL) +\n  xlim(8.7, 10.7) + \n  theme(panel.border=element_blank(), panel.grid.minor=element_blank()) +\n  labs(x=\"Sample means\", y=NULL)\n\n  cowplot::plot_grid(p2,p,p3, align=\"h\",rel_widths = c(1,0.55, 1), ncol = 3)\n}\nmclapply(seq(1,300, 20), function(x) plots3(x), mc.cores = 8, mc.cleanup = TRUE)\n\nplots3.2 <- function(dd){\nsub <- dd+40  \n\nx <- round(rnorm(50, 9.7, 2.1))\nm <- mean(x)\ndf <- data.frame(x = x, y = 23)\ndfs <- list(df)\nfor(i in seq_len(nrow(df))) {\n  dftemp <- tail(dfs, 1)\n  dftemp[[1]]$y[i] <- sum(dftemp[[1]]$x[seq_len(i)] == dftemp[[1]]$x[i])\n  dfs <- append(dfs, dftemp)\n}\ndfs <- append(dfs, dfs[rep(length(dfs), 3)])\ndft <- tween_states(dfs, 10, 1, 'cubic-in', 50)\ndft$y <- dft$y - 0.5\ndft <- dft[dft$y != 23, ]\n\ndf <- data.frame()\n  lb1 <- paste0(\"bar(x)\", \"[\", sub, \"]\", \" == \", round(m,1))\n  p <- ggplot(df) + geom_point() + xlim(0, 16) + ylim(3, 17)+theme_void()+annotate(\"text\", x = 1, y=10, label=lb1, parse = TRUE, size=7,hjust = 0)+annotate(\"segment\", x = 1, xend = 15, y = 8, yend = 8, colour = \"black\", size=1, arrow=arrow(type = \"closed\", length = unit(0.3,\"cm\")))\n\n  p2 <- ggplot(data=dft[dft$.frame==53,],aes(x=x, y=y))+geom_point(shape=16, color=\"green3\", size=4)+ylim(0,16)+xlim(3,17)+theme_light()+theme(panel.border=element_blank(), panel.grid.minor=element_blank())+geom_vline(xintercept = m, linetype=2)+labs(x=\"Giraffe Heights\", y=NULL)\n  \nhh <- function(x){\n  d <- data.frame(Height=dh[1:x])\n  return(d)\n}\n\ndhh <- lapply(1:1000, function(x) hh(x))\np3 <- ggplot(data = dhh[[dd+40]], aes(x = Height)) +\n  geom_histogram(binwidth = 0.1, color = \"white\", fill=\"green3\") +\n  theme_light() +\n  scale_y_continuous(limits = c(0,150)) +\n  labs(x=NULL, y=NULL) +\n  xlim(8.7, 10.7) + \n  theme(panel.border=element_blank(), panel.grid.minor=element_blank()) +\n  labs(x=\"Sample means\", y=NULL)\n\n  cowplot::plot_grid(p2,p,p3, align=\"h\",rel_widths = c(1,0.55, 1), ncol = 3)\n}\nmclapply(seq(301,960, 20), function(x) plots3.2(x), mc.cores = 8, mc.cleanup = TRUE)\n\nx <- round(mvrnorm(50, 9.8, 2.1^2, empirical = T))\nm <- mean(x)\ndf <- data.frame(x = x, y = 23)\ndfs <- list(df)\nfor(i in seq_len(nrow(df))) {\n  dftemp <- tail(dfs, 1)\n  dftemp[[1]]$y[i] <- sum(dftemp[[1]]$x[seq_len(i)] == dftemp[[1]]$x[i])\n  dfs <- append(dfs, dftemp)\n}\ndfs <- append(dfs, dfs[rep(length(dfs), 3)])\ndft <- tween_states(dfs, 10, 1, 'cubic-in', 50)\ndft$y <- dft$y - 0.5\ndft <- dft[dft$y != 23, ]\n\nplots4 <- function(dd){\n  \ndf <- data.frame()\n  lb1 <- paste0(\"bar(x)\", \"[\", 1000, \"]\", \" == \", 9.8)\n  p <- ggplot(df) + geom_point() + xlim(0, 16) + ylim(3, 17)+theme_void()+annotate(\"text\", x = 1, y=10, label=lb1, parse = TRUE, size=7,hjust = 0)+annotate(\"segment\", x = 1, xend = 15, y = 8, yend = 8, colour = \"black\", size=1, arrow=arrow(type = \"closed\", length = unit(0.3,\"cm\")))\n\n  p2 <- ggplot(data=dft[dft$.frame==53,],aes(x=x, y=y))+geom_point(shape=16, color=\"green3\", size=4)+ylim(0,16)+xlim(3,17)+theme_light()+theme(panel.border=element_blank(), panel.grid.minor=element_blank())+geom_vline(xintercept = 9.8, linetype=2)+labs(x=\"Giraffe Heights\", y=NULL)\n  \nhh <- function(x){\n  d <- data.frame(Height=dh[1:x])\n  return(d)\n}\n\ndhh <<- lapply(1:1000, function(x) hh(x))\np3 <- ggplot(data = dhh[[dd+40]], aes(x = Height)) +\n  geom_histogram(binwidth = 0.1, color = \"white\", fill=\"green3\") +\n  theme_light() +\n  scale_y_continuous(limits = c(0,150)) +\n  labs(x=NULL, y=NULL) +\n  xlim(8.7, 10.7) + \n  theme(panel.border=element_blank(), panel.grid.minor=element_blank()) +\n  labs(x=\"Sample means\", y=NULL)\n\n  cowplot::plot_grid(p2,p,p3, align=\"h\",rel_widths = c(1,0.55, 1), ncol = 3)\n}\n\nmclapply(rep(960, 40), function(x) plots4(x), mc.cores = 8, mc.cleanup = TRUE)\n```\n</center>\n\n<br>\n<br>\n\nA histogram of the sampling distribution is shown below. It is a histogram made up of many means.\n\n<br>\n\n<center>\n```{r, tut=FALSE, echo=FALSE, message= FALSE, warning=FALSE, fig.height=2.7, fig.width=4.5, cache= TRUE}\n\nsamp <- function(n){\n  x <- rnorm(n, 9.7, 2.1)\n  m <- mean(x)\n  s <- sd(x)\n  return(c(m,s))\n}\n\nd2 <- as.data.frame(do.call(rbind, lapply(1:1000, function(x) samp(50))))\ncolnames(d2) <- c(\"mean\", \"sd\")\n\nggplot(data = dhh[[1000]], aes(x = Height)) +\n  geom_histogram(binwidth = 0.1, color = \"white\", fill = \"green3\") +\n  theme_light() +\n  scale_y_continuous(expand = c(0,0)) +\n  labs(x = \"Sample means\", y = NULL) +\n  theme(panel.border = element_blank(), panel.grid.minor = element_blank()) \n```\n</center>\n\nLooking at the spread of ${\\bar{x}}$ values that this groundhog experience generated, we can get a sense of the range of many possible estimates of ${\\mu}$ that a sample of 50 giraffes can produce. \n\n**The sampling distribution provides us with the first hint of the precision of our original `heights_island1` estimate**, which we'll quantify in more detail later on, but for now it's enough to notice that the range of possible ${\\bar{x}}$ values are between `r round(min(d2$mean),1)` and `r round(max(d2$mean), 1)`. This means that ${\\bar{x}}$ values outside of this range are essentially improbable.\n\nLet's return to our question about whether the true mean of giraffe heights on Island 1 is less than 11 cm. Our sampling distribution suggests that ${\\mu}$ *is* less than 11 cm, since values greater than that are not within the range of this sampling distribution. \n\n\n# Sample size and sampling distribution\n\nBack to the idea that larger samples are \"better\", we can explore what happens if we redo the groundhog scenario, this time sampling 500 individuals (instead of 50) before taking the mean each time, repeating this until thousands of ${\\bar{x}}$ values have been recorded. For completeness, let's imagine the same marathon data collection using samples that are smaller---of 5 giraffes each. We compare the resulting sampling distributions from all three scenarios below. The middle sampling distribution corresponds to the sampling distribution we already generated above.\n\n<center>\n```{r, tut=FALSE, echo=FALSE, message= FALSE, warning=FALSE, fig.height=6, fig.width=6, cache = TRUE}\n\nsamp <- function(n){\n  x <- rnorm(n, 9.7, 2.1)\n  m <- mean(x)\n  s <- sd(x)\n  return(c(m,s))\n}\n\nd <- as.data.frame(do.call(rbind, lapply(1:1000, function(x) samp(5))))\n#d2 <- as.data.frame(do.call(rbind, lapply(1:1000, function(x) samp(50))))\nd3<- as.data.frame(do.call(rbind, lapply(1:1000, function(x) samp(500))))\ncolnames(d) <- colnames(d2) <- colnames(d3) <- c(\"mean\", \"sd\")\n\np <- ggplot(data = d, aes(x = mean)) +\n  geom_histogram(binwidth = 0.06, color = \"white\", fill=\"green3\") +\n  theme_light() +\n  scale_y_continuous(expand = c(0,0)) +\n  labs(x = \"Sample means N=5\", y = NULL) +\n  theme(panel.border = element_blank(), panel.grid.minor = element_blank(), legend.position = , legend.background = ) +\n  xlim(6.7,12.7) \n\np2 <- ggplot(data = dhh[[1000]], aes(x = Height)) +\n  geom_histogram(binwidth = 0.06, color = \"white\", fill=\"green3\") +\n  theme_light() +\n  scale_y_continuous(expand = c(0,0)) +\n  labs(x=\"Sample means N=50\", y=\"Frequency\") +\n  theme(panel.border = element_blank(), panel.grid.minor = element_blank(), legend.position = , legend.background = ) +\n  xlim(6.7,12.7)\n\np3 <- ggplot(data = d3, aes(x = mean)) +\n  geom_histogram(binwidth = 0.06, color = \"white\", fill=\"green3\") +\n  theme_light() +\n  scale_y_continuous(expand = c(0,0)) +\n  labs(x=\"Sample means N=500\", y = NULL) +\n  theme(panel.border = element_blank(), panel.grid.minor = element_blank(), legend.position = , legend.background = ) +\n  xlim(6.7, 12.7)\n\ncowplot::plot_grid(p3,p2,p, ncol = 1, align = \"hv\") \n```\n</center>\n\nWhat do we notice?\n\n1) All histograms look normal. \n2) All distributions have approximately the same mean.\n3) Distributions generated from larger samples are less dispersed.\n\nWe can take the mean of the sampling distribution itself-- **the mean of the sampling distribution is a mean of means.** This mean can be interpreted to be the same as a mean that would have resulted from a single large sample, made up of all the individual observations from each of the samples whose ${\\bar{x}}$ values are included in the sampling distribution.\n\nNote that if we had only generated a sampling distribution made up of samples of 5 giraffes, we would not have been able to exclude 11 cm as a possible value for ${\\mu}$. In fact, if we were to draw a vertical line in the middle of each of the sampling distributions (the mean), we can tell that the population mean is likely even less than 10 cm.\n\nIn the following window, you will test the relationship between sampling distribution and sample size. The function below (behind-the-scenes code not shown) will plot a sampling distribution made up of 1000 samples, with each sample containing `N` number of observations. Try setting `N` to a few different values. What does the resulting sampling distribution looks like? See if you can confirm for yourself that the above points are true.\n\n\n<!---LEARNR EX 1-->\n\n<iframe class=\"interactive\" id=\"myIframe1\" src=\"https://tinystats.shinyapps.io/06-standardError-ex1/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n\n# Standard Error of the Mean\nAs we've done before, we want to summarize this spread of mean estimates with a single value. We've already learned how to quantify a measure of spread--the standard deviation. If we take the standard deviations of each of the three different sampling scenarios above, then we accept that *distributions based on smaller samples should have larger standard deviations*. \n\nIn the window below, calculate the standard deviation of each of the three sampling distributions (i.e. for N = 500, N = 50, and N = 5), and confirm that the italicized point above is true. (If you're working in R locally, use your \"homemade\" standard deviation function from the [Variance](04_variance.html) module.)\n\nTo complete this exercise, you will need to use the objects `sampling_distribution_N500`, `sampling_distribution_N50`, `sampling_distribution_N5`, which are vectors storing the thousands of ${\\bar{x}}$ values from the corresponding groundhog sampling distributions.\n\n<!---LEARNR EX 2-->\n\n<iframe class=\"interactive\" id=\"myIframe2\" src=\"https://tinystats.shinyapps.io/06-standardError-ex2/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n\nWhen you calculate the standard deviation of a sampling distribution of ${\\bar{x}}$ values, you are calculating the **standard error of the mean (SEM)**, or just \"standard error\". The SEM is the value that we use to capture the level of precision of our sample estimate. But, we need a better and more efficient way to arrive at this value without relying on a groundhog day situation. Keep reading to learn more.\n\n<div class= \"alert alert-note\">\n> **A note about SEM:** Here \"standard error\" will imply standard error of the *mean*. But we can technically calculate the standard error of any sample statistic, not just the mean. We'll talk about that more in future modules.\n\n</div>\n\n# Time for a tea break!\n<center>![](images/06_standardError/Slingshot.jpg){width=800px}</center>\n\n# Standard error in practice\nDeriving the equation used for calculating the standard error of the mean using theory (i.e. without going out and resampling MANY times) is a bit complicated, but if you're interested, you can learn more about it [here](https://stats.stackexchange.com/questions/89154/general-method-for-deriving-the-standard-error). Instead, we can capture the relationship between **standard deviation**, **sample size**, and **standard error** with the plot below.\n\n<center>\n```{r, tut=FALSE, echo=FALSE, message= FALSE, warning=FALSE, out.height=2, cache = TRUE, fig.align=\"center\"}\n\nd <- data.frame(N = seq(5, 1000, 5), sd = 2.1)\nd$sterr <- d$sd/sqrt(d$N)\n\nd %>%\n  plot_ly(\n    width = 600, \n    height = 350,\n    type = 'scatter',\n    mode ='markers',\n    x = ~N,\n    y = ~sterr,\n    marker = list(size = 10, opacity = 0.75),\n    hoverinfo = \"text\",\n    text=~paste(\"Standard Error:\", round(sterr, 3), \"\\nN:\", round(N, 1))\n  )%>%\n  config(displayModeBar = F) %>%\nlayout(autosize = F, width = 600, height = 350,\n  xaxis = list(zeroline = F),\n  yaxis = list(title = \"Standard Error\", zeroline = F) \n  )\n\n```\n</center>\n\nThe standard deviation in this plot is `2.1`, which represents ${\\sigma}$ for giraffe heights on Island 1. This population value is technically still unknown but can be deduced in theory by repeating the groundhog day example for the standard deviation instead of for the mean. It's important to note that the plot would have the same *shape* regardless of what scenario or standard deviation we were using.\n\n**Can you figure out what the equation is for the SEM?** Look at the plot above, hover over the points, and see if you can gather how standard error of the mean, standard deviation, and sample size are related. Here are some hints:\n\n* SEM will be on one side of the equation, standard devation, and N will be on the other.\n* The equation will involve division.\n* There is one more missing piece of the puzzle: When you look at the shape of the plot above. What type of function does this remind you of? We haven't covered this explicitly, but take a look [here](https://www.mathsisfun.com/sets/functions-common.html) and see if you get any ideas.\n\nUse the window below as a calculator to see if you can figure out the equation for the SEM.\n\n<!---LEARNR EX 3-->\n\n<iframe class=\"interactive\" id=\"myIframe3\" src=\"https://tinystats.shinyapps.io/06-standardError-ex3/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\n  \nIn case you weren't able to figure it out, remember to check the `Solutions` tab in the exercise window or take a look at this [link](https://en.wikipedia.org/wiki/Standard_error) for the equation for calculating the SEM. Recall that we're working with the sample (and not population) standard deviation ($s$), so make sure you find the correct equation.\n\n# Confirming that the SEM equation works\nLet's test out the SEM equation on our original sample of `heights_island1` and compare it to what we would have gotten by taking the standard deviation of the sampling distribution example with the N= 50 case. **Does the SEM seem like a good approximation of the standard deviation of the sampling distribution?**\n\nBelow, you will use the object `heights_island1`, which contains our single sample of N=50, and the object `sampling_distribution_N50`, which contains the data from the corresponding groundhog sampling distribution.\n\n\n<!---LEARNR EX 4-->\n\n<iframe class=\"interactive\" id=\"myIframe4\" src=\"https://tinystats.shinyapps.io/06-standardError-ex4/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\nClose enough! We wouldn't expect these to be *exactly* the same because of sampling variability.\n  \n\n# How do we apply the SEM?\nNow that we have a better understanding of how to gauge the precision of our sample estimates, we can test our question about the ${\\mu}$ being less than 11 cm once and for all.\n\nTo formally make inferences, we need to revisit the principles of the [empirical rule](04_variance.html#empirical) to construct confidence intervals. (Confidence intervals are just one way to make inferences-- we'll discuss other ways later.)\n\nRemember, that the SEM is just the standard deviation of the sampling distribution, so we can apply the empirical rule. As a result, ± 2 SEM from a point estimate will capture ~95% of the sampling distribution. Actually, we were a little bit sloppy earlier when we said 2 standard deviations captures 95% of a normal distribution; this will actually give you 95.45% of the data. The true value is 1.96 standard deviations--and this is what we use to construct a 95% confidence interval (CI).\n\nLoosely speaking, a 95% CI is the range of values that we are 95% confident contains the true mean of the population. We want to know whether our guess of 11 cm falls outside of this range of certainty. If it does -- we can be sure enough that the true ${\\mu}$ of giraffe heights on Island 1 is less than 11 cm.\n\nUse the window below to find out and make your first inference by constructing the 95% CI for the `heights_island1` mean estimate!\n\n\n<!---LEARNR EX 5-->\n\n<iframe class=\"interactive\" id=\"myIframe5\" src=\"https://tinystats.shinyapps.io/06-standardError-ex5/\" scrolling=\"no\" frameborder=\"no\"></iframe>\n\n<!------------->\n\nThe upper limit of our 95% CI is less than 11 cm, so the population mean of heights on island 1 is likely less than 11 cm. In the scientific community, this is a bonafide way of drawing this conclusion.\n\n<center> ![](images/06_standardError/Babyinference.jpg){width=600px} </center>\n\n\n# Things to think about\n\nWe've been a little fast and loose with our words. The formal definition of CIs is the following: \n\n**If we were to sample over and over again, then 95% of the time the CIs would contain the true mean.**\n\n\nImportantly, some examples of what the 95% CI does NOT mean are:\n\n* A 95% CI does **not** mean that it contains 95% of the sample data.\n* A CI is not a definitive range of likely values for the sample statistic, but you can think of it as estimate of likely values for the population parameter.\n* It does not mean that values outside of the 95% CI have a 5% chance of being the true mean.\n\n\nThe precise interpretation of CIs is quite a nuanced and rather hotly debated topic [see here](https://featuredcontent.psychonomic.org/confidence-intervals-more-like-confusion-intervals/) and becomes somewhat philosophical-- so if these definition subtleties seem confusing, don't feel bad. As mentioned in the blog post linked above, one recent paper reported that 97% of surveyed researchers endorsed at least one misconception (out of 6) about CIs. \n\n<script>\n  iFrameResize({}, \".interactive\");\n</script>\n"
  },
  {
    "path": "07_ttest.Rmd",
    "content": "---\ntitle: \"t-test\"\noutput:\n  bookdown::html_document2:\n    includes:\n      in_header: assets/07_tTest_image.html\n      after_body: assets/foot.html\n---\n\n\n:::obj\n**Module learning objectives**\n\n1. Determine how to quantify the uncertainty of an estimate\n1. Describe the concept of statistical inference \n\n:::\n\n# The Two Islands\n\nYou'd like to make an [inference](06_standardError.html) to formally investigate whether you have any reason to believe that the mean of heights on Island 1 differs from the mean of the heights on Island 2. \n\nThe means of the heights of both islands are shown below:\n\n```{r, echo= FALSE} \n\nset.seed(12)\nheights_island1 <- rnorm(50, 10, 2)\nheights_island2 <- rnorm(50, 18, 1.2)\n\n```\n\n\n```{r}\nmean(heights_island1)\nmean(heights_island2)\n\n```\n\nIt's obvious that the mean of the two **samples** we took are different, but the main question is if the **population** means are different?\n\nThis question is of interest because if the two population means are different, it may indicate that a cool evolutionary story is at play. For example, based on your experience it seems clear that the two groups of giraffes have been isolated. Their tiny stature would make it near impossible to move back and forth between the two islands, hence impeding mixing between the two groups. Over time, selection pressures could then have made the two groups distinct regarding height.\n\nHow do we test this?\n\n# Testing for group difference \n\nWhen testing for group mean differenes, [it is much more common for a researcher to be interested in the **difference** between means than in the specific values of the means themselves. ] stolen\n\nWhen we focus on the **mean difference**, represented by $\\Delta_{\\bar{x}}$ (read \"delta x-bar\"), we can ask: is the $\\Delta_{\\bar{x}}$ meaningfully different from 0?\n\nThe sample mean difference is below:\n```{r}\nmean(heights_island2) - mean(heights_island1)\n\n```\n\nThis is just another estimate at the sample level whose precision we need to quantify to be able to make inferences.\n\nFormally, statistical inference is about testing hypotheses (which we intentionally did not introduce in the previous module). In research, a **hypothesis** is a statement of a suggested outcome for a study [THIS SENTENCE IS TOO VAGUE]. The goal of statistcal inference is to reject the **null hypotheses** ($H_0$, read \"H-nought\"), the default suggested outcome, which assumes that there is no association or difference between two or more groups. If we cannot reject $H_0$, then it means we must accept the alternative, $H_A$, that there *is* a meaningful difference or association.\n\nOur null hypothesis is the following: the mean difference between the two populations is 0. The corresponding equations are shown below for the null and alternative hypotheses. Here, we use $\\Delta_{\\mu}$, because we are referring to the population values.\n\n$H_0$ :  $\\Delta_{\\mu}$ = 0\n<br> \n$H_A$ :  $\\Delta_{\\mu}$ $\\neq$ 0\n[MAKE EQUATION??]\n\nOne way to reject the null hypothesis would be to construct 95% CIs around the estimate for $\\Delta_{\\bar{x}}$.\n\n# Pooled standard deviation\nAs we learned previously, a prerequisite to calculating 95% CIs is to calculate the standard error (which we know will require the sample standard deviation). However, we're now working with two samples, so which sample's standard deviation do we use? Can we use both?\n\nIn this particular case, the standard error of the mean difference can be calculated based on a *combined*, or **pooled standard deviation** ($s_{p}$) from two samples. We use the standard deviation of each sample, weighted by sample size.\n\n\n<div style=\"margin-bottom:50px\"></div>\n\\begin{equation}\n (\\#eq:equation1)\n \\Large s_{p} = \\sqrt{\\frac{s^2(n_1-1) + s^2(n_2-1)}{(n_1-1) + (n_2-1)}}\n \\end{equation}\n<div style=\"margin-bottom:50px\"></div>\n\n\nOne thing to point out is that standard deviations from samples cannot be added together -- but variances can be, which is why in (1) we use $s^2$ in the numerator only to take then the square root of the entire term.\n\nWe see that the variances are being multiplied by a term containing the sample size ($n$). In the case that each of our samples were differently sized, we would want to more heavily weight the variance of the sample that was larger. In our case now, both of our samples have the same $n$, but we introduce the equation for more general cases.\n\nIf you're wondering why $n-1$ is necessary for the weighting, and not just $n$, hold that thought and we'll return to it later. But for now, we'll just point out that it is *not* to adjust for the inherent bias when calculating sample variance (i.e. not the same reason that we used N-1 in the variance module [link]).\n\n```{r, include=FALSE}\ntutorial::go_interactive(height = 160)\n```\n\n[DATA CAMP WINDOW WHERE THEY WILL CALCULATE THE S_P OF THE DATA]\n\n\n\n# Standard Error (SE) of the mean difference\n\nAfter calculating the pooled standard deviation, the next step is to determine the standard error of the mean difference. We will follow the same logic as we did when calculated the standard error based on a single sample -- except now we will use the pooled standard deviation. Again, we will be adding the terms from the two samples together, so to be able to sum these we need to use the pooled *variance* (the square of the pooled standard deviation.)\n\n[ annotated?]\n\n<div style=\"margin-bottom: 50px;\"></div>\n\\begin{equation}\n (\\#eq:equation2)\n \\Large SE_{({\\bar{x_1}-\\bar{x_2})}} = \\sqrt{\\frac{s_p^2}{n_1} + {\\frac{s_p^2}{n_2}}}\n \\end{equation}\n<div style=\"margin-bottom:50px\"></div>\n\n\n[DATA CAMP WINDOW WHERE THEY WILL CALCULATE THE SE OF THE MEAN DIFF]\n\nNow that you know the standard error, you are ready to construct the 95% CI around the mean difference. As before, this will be the mean difference plus/minus 1.96 * $SE_{({\\bar{x_1}-\\bar{x_2})}}$. \n\nNow we can see whether or not our null hypothesis can be rejected. If the 95% CI for values of ${({\\bar{x_1}-\\bar{x_2})}$ includes 0, then we do not have reason to believe that the population means are different. \n\n[Construct interval for yourself below, DATA CAMP, INSTRUCTIONS]\n\n```{r, include=FALSE}\ntutorial::go_interactive(height = 160)\n```\n\n```{r ex=\"ttest2\", type=\"pre-exercise-code\"}\n\nset.seed(12)\n\nheights_island1 <- rnorm(50,10,2)\nheights_island2 <- rnorm(50, 18, 1.2)\n\n```\n\n```{r ex=\"ttest2\", type=\"sample-code\"}\n\n# Calculate the mean diff\n\nmean_diff <-  \n\n# Calculate the Sp for heights_island1 and heights_island2\nSp <- \n\n# Calculate the SE_meandiff\nSE_meandiff <- \n\n# Add ± 1.96 SEM to the sample mean to construct the upper and lower bounds of the 95% CI\n\nupperCI <- \nlowerCI <- \n  \nmeandiff_95CI <- c(lowerCI, upperCI)\nmeandiff_95CI\n```\n\n```{r ex=\"ttest2\", type=\"solution\"}\n\n# Calculate the mean difference\nmean_diff <-  mean(heights_island2) - mean(heights_island1)\n\n# Calculate the Sp for heights_island1 and heights_island2\nN1=50\nN2=50\n\nSp <- sqrt(((sd(heights_island1)^2)*(N1-1) + (sd(heights_island2)^2)*(N2-1))/((N1-1)+(N2-1)))\n\nSp <- sqrt((var(heights_island1)*(49) + var(heights_island2)*(49))/(N1+N2-2))\n\n# Calculate the SE_meandiff\n\nSE_meandiff <- sqrt(Sp^2/N1 + Sp^2/N2)\n\n# Add ± 1.96 SEM to the sample mean to construct the upper and lower bounds of the 95% CI\n\nupperCI <- mean_diff + 1.96*SE_meandiff\nlowerCI <-  mean_diff - 1.96*SE_meandiff\n  \nmeandiff_95CI <- c(lowerCI, upperCI)\nmeandiff_95CI\n\n```\n\nOur 95% CI does not include 0 by a lot! So we can conclude that the population means from Island 1 and Island 2 are mostly likely distinct. In other words, we can reject $H_0$, the null hypothesis. In doing so, we say that the mean difference is *statistically significant*. \n\n[T test function will calculate the 95CI using the t distribution @ 97.5%m, which doesn't always give 1.96]\n\n# P-values\n\nEven though CIs are great tools for inference, you are probably most familiar with seeing p-values in scientific literature. The **p-value** that is output from your statistical test gives you a metric that tells you whether or not your results are statistically significant. Typically, p-values < 0.05 meet this criterion. \n\nThe \"p\" in p-value stands for \"probability\". Probability of what? The **p-value** is the probability that you would have gotten your results or something more extreme if in fact the null hypothesis were true. \"More extreme\", in this case, would be a mean difference even greater than what we see in the present data. The lower the p-value, the less likely you'd be getting your results due to chance alone.\n\nNow let's derive the p-value for the mean difference of the two island heights, and make sure that we can draw the same conclusion that we did when we used the 95% CI for inference. In order to do this, we will use a statistical test for comparing two groups: the **t-test**.\n\n# The t-test\n\nThe t-test is all about the **t-statistic**, which is produced when the mean difference is divided by the standard error. When we divide by the standard error, we turn our mean difference estimate into a unitless metric that is not dependent on the scale that means were recorded with (i.e. centimeters). Furthermore, dividing by the standard error also will also account for the uncertainty in the estimate. \n\n\n\n\n- The t-statistic is essentially combining whatever our sample estimate is (e.g. mean difference, sample mean, etc.) and its uncertainty (i.e. standard error) into one value.  \n- we convert the t-statistic into a p-value via the a specific kind of distribution called the t-distribution. [plot, here's an example of one]\n- the further out in the tails of the t-distribution that the t-statistic falls. The lower the pvalue will be. \n\n\n(3) Degrees of freedom; Hasse has some ideas.\n(4) A formal definition of hypothesis including null hypothesis. \n\nImplement, and then formally answer the question.\n\n# Degrees of Freedom\n\n- You know the final answer of a single estimate. You can pick whatever you want, until you're down to the last choice....then you don't have the \"freedom\". --> explains why we use Total -1 = DF.\n- Explain Whyyyyyyyyy we need it. \n- The t-distribution will look different depending on the degrees of freedom\n\nIntermediate step here between CI and p-values.\nT-test statistic greater than 1.96 will result in a significant p-value.\n\nWrite your own t-test function.\n\nStart with same N, but then “to make it a more useful model, you need to be able to handle when the sample sizes are not the same.”\n\n**Unequal variance: more fodder for things to think about**\n\n\n\n\n"
  },
  {
    "path": "Giraffe.Rproj",
    "content": "Version: 1.0\n\nRestoreWorkspace: Default\nSaveWorkspace: Default\nAlwaysSaveHistory: Default\n\nEnableCodeIndexing: Yes\nUseSpacesForTab: Yes\nNumSpacesForTab: 2\nEncoding: UTF-8\n\nRnwWeave: Sweave\nLaTeX: pdfLaTeX\n\nBuildType: Website\n"
  },
  {
    "path": "README.md",
    "content": "# Teacups, Giraffes, & Statistics <img src='assets/hex_tinystats.png' align=\"right\" height=\"138.5\" />\n\nAn open resource which uses R Markdown to create a series of modules for learning R basics and statistics. Built with R Markdown in RStudio. This project is ongoing, and more modules are in development.\n\nCreated by:\n\n* [Hasse Walum](https://github.com/haswal), Emory University, USA\n* [Desirée De Leon](https://github.com/dcossyleon), Emory University, USA\n\nThis repository holds the source materials for this project. To view the online modules, please visit: https://tinystats.github.io/teacups-giraffes-and-statistics/. \n\n### Licensing\n\nThe illustrations and [narrative](https://tinystats.github.io/teacups-giraffes-and-statistics/00_narrative.html) in this project are licensed under the [cc-by-nc-nd](https://creativecommons.org/licenses/by-nc-nd/2.0/) license. This means that these specific parts of the project cannot be modified or remixed if you use our materials.\n\nEverything else in this project is licensed under the [cc-by-nc-sa 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) license. In summary, this means that you can adapt the lesson material to suit your needs as long as you cite the original project and authors. \n\n# Getting Started\n\n\n[**Intro to R:**](https://tinystats.github.io/teacups-giraffes-and-statistics/01_introToR.html) This module will introduce you to some basic tools and terminology that you will need to be familiar with to complete the modules. You can work through the exercises or use this page as a reference.\n\n# The Modules\n\n\n1. [**Introduction to the Normal Distribution.**](02_bellCurve.html) This module introduces the basics to visualizing data using `ggplot` and evaluating the data for normality.\n2. [**Mean, Median, Mode.**](03_mean.html) Write your own functions for calculating the median and mean.\n3. [**Spread of the Data**](04_variance.html). Write your own functions for calculating the variance and the standard deviation.\n4. [**Covariance and Correlation**](05_correlation.html) Write your own function to quantify the strength of the relationship between two variables.\n5. [**Standard Error, Introduction to Inference**](06_standardError.html)\n\n\n\n## Planned Modules\n\n6. T-Test, Inference Part II\n7. ANOVA\n8. Linear Regression\n9. Revisiting T-Tests, ANOVA, and Regression: Assumptions & Violations\n10. Bootstrapping\n11. Permutation\n12. Simulation & Power\n13. Winner's Curse\n14. Multiple Comparisons & Questionable Research Practices\n# apps\n"
  },
  {
    "path": "_bookdown_files/02_bellCurve_cache/html/__packages",
    "content": "here\nggplot2\nplotly\ntweenr\n"
  },
  {
    "path": "_bookdown_files/03_mean_cache/html/__packages",
    "content": "here\nggplot2\nplotly\ntweenr\nemdbook\n"
  },
  {
    "path": "_bookdown_files/03_mean_cache/html/unnamed-chunk-3_10110fd506496d65a16c9f8d338a2668.rdb",
    "content": ""
  },
  {
    "path": "_bookdown_files/04_variance_cache/html/__packages",
    "content": "here\nggplot2\nplotly\ntweenr\nemdbook\n"
  },
  {
    "path": "_bookdown_files/05_correlation_cache/html/__packages",
    "content": "here\nggplot2\nplotly\ntweenr\nMASS\nemdbook\n"
  },
  {
    "path": "_bookdown_files/06_standardError_cache/html/__packages",
    "content": "here\nggplot2\nplotly\ntweenr\nMASS\nemdbook\n"
  },
  {
    "path": "_site.yml",
    "content": "name: \"cars\"\noutput_dir: \"docs\"\nnavbar:\n  title: \" \"\n  left:\n  - icon: \"fa-home\"\n    href: index.html\n  - text: \"History of Teacup Giraffes\"\n    href: 00_narrative.html\n  - text: \"Modules\"\n    menu:\n      - text: \"Intro to R\"\n        href: 01_introToR.html\n      - text: \"Intro to the Normal Distribution\"\n        href: 02_bellCurve.html\n      - text: \"Mean, Median, Mode\"\n        href: 03_mean.html\n      - text: \"Spread of the Data\"\n        href: 04_variance.html\n      - text: \"Covariance and Correlation\"\n        href: 05_correlation.html\n      - text: \"Standard Error\"\n        href: 06_standardError.html\n  - text: \"About the Authors\"\n    href: aboutTheAuthors.html\n  right:\n  - icon: \"fa-github\"\n    href: https://github.com/tinystats/teacups-giraffes-and-statistics\noutput: \n  bookdown::html_document2:\n    toc: true\n    toc_float: true\n    theme: cosmo\n    number_sections: false\n\n    \n   \n\n\n\n  "
  },
  {
    "path": "aboutTheAuthors.Rmd",
    "content": "---\ntitle: \"About the authors\"\noutput:\n  bookdown::html_document2:\n    includes:\n      in_header: assets/aboutTheAuthors_image.html\n    toc: false\n---"
  },
  {
    "path": "assets/00_narrative.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t\n\t\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/landing.css\" rel=\"stylesheet\">\n  <link href=\"assets/mobile_narrative.css\" rel=\"stylesheet\">\n</head>\n\n<body>\n  \n  <div class=\"narrative-container\">\n    <div class = \"slider\">\n      <div id = slide0 class = \"slide-content\">\n        <div class = \"narrative-cover\">\n          <img src=\"images/00_narrative/cover.jpg\">\n        </div>\n        <div class = \"narrative-text\"> \n          <p>Teacup giraffes were first discovered by the Swedish naturalist and priest Olof Torén, an apostle of Carl Linnaeus, during his travels on the Swedish East India Company ship <i>Hoppet</i>. Departing from the port of Gothenburg, <i>Hoppet</i> set sail on the 26th of January 1748, an extraordinarily gloomy day when sea and sky was a single ashen entity and winds from the northwest brought a snow-mixed horizontal rain. The mood onboard the ship was cheerful nonetheless, as the crew dreamt of the transparent waters of southern seas, filled with colorful beings and stories to bring back home.</p>\n          \n<p>One suffocating evening in July 1748, shortly after <i>Hoppet</i> had rounded the Cape of Good Hope and sailed east of Madagascar, captain Erik Moreen was attacked by a headache so vicious it made him seasick for the first time since the beginning of his nautical career. Desperate to ease the pain he called on the ship surgeon, a crooked man who spent most of his time investigating fungi in the deepest corners of the ship’s bilge where the air tasted like year old bread.</p>\n\n          <p> <img class = \"narrative-illo-small\" align = \"left\" src=\"images/00_narrative/Vial.jpg\"> The surgeon brought a small bottle containing a beverage brewed of equal parts fermented goat milk and a distillate of mushrooms which, when dissolved, produced such a colorful luminance that the use of protective goggles was necessary to prevent achromatopsia. Ignoring the surgeon’s recommendation to limit the dose to a few drops of the brew, the captain emptied the bottle in one gulp and for a few moments lost all senses while the hair on the back of his head spun into permanent curls. </p>\n          \n          <p>Although the pain subsided within less than thirty minutes, this was just the beginning of a nightmarish intoxication. The captain heard sirens sing lost lullabies from all directions, saw the kraken swallow the moon and spit it out as thousands of stars, and was convinced that all of his crew had turned into sharp-stemmed ferns, stationary and threatening to amputate him with every wavering step he took across the deck. During this confusion the captain tied himself to the fore-mast, prepared to fall head first into the flaming depths of the underworld. He was standing there as the sun rose, as his inebriation started to fade into melancholy, and saw two small islands appear on the horizon. </p>\n          \n          <p> <img class = \"narrative-illo-small\" align = \"right\" src=\"images/00_narrative/Froth.jpg\">The ocean then formed a frothy path in front of Erik Moreen, from the bow to the two islands. In the captain’s still quivering mind time seemed to move backwards, and he tried to find solace from the rootlessness of this experience by searching his mind for pleasant memories. The path suddenly seemed indistinguishable from the road connecting the port of Gothenburg to his home in <i>Guldheden</i>, many nautical miles away. He even swore he could see a colony of black-backed gulls circling in the sky above him, establishing his notion that <i>Hoppet</i> somehow had made it back to the north. Confident he would soon be reunited with his wife, the captain gave orders to sail in the direction of the islands and would not listen to any objections until the ship was stranded on a sandbank no more than a stone’s throw away from its destination. Although Erik Moreen recovered from the surgeon’s medicament after a few days, the crew’s trust in him was not as easily restored and he was temporarily relieved of his duties as captain. </p>\n          \n          <p>During the days it took the crew to dig <i>Hoppet</i> out of the sand, naturalist and ship priest Olof Torén visited the islands a few times but was apparently not very impressed by this occurrence. In his journals from this time, only one sentence makes mention of this part of the voyage: </p>\n          \n          <p class=\"blockquote\">Northeast of Madagascar lie two small islands not worth visiting for any other reason than the fact that they are inhabited by small, quadrupedal mammals with relatively long necks.</p>\n        </div>\n      </div>\n      \n      <div id = slide6  class=\"slide-content\">\n        <div class =\"narrative-text\"> \n          <p>In line with the often undemocratic nature of human experiences, Olof Torén would encounter teacup giraffes twice over the course of a few years, while it would take centuries after they were first discovered before anybody else did. The second time Olof Torén visited the two small islands where teacup giraffes still live today, it was during his second and last intercontinental journey at sea, this time on the Swedish East India Company ship <i>Götha Leijon</i>. In 1750 he found himself back in the cerulean waters northeast of Madagascar. Again, it was an event characterized by pain that would bring the naturalist and ship priest to the teacup giraffe islands, but pain of the soul rather than the body. </p>\n          \n          <p> <img class=\"narrative-illo-small\" align = \"left\" src=\"images/00_narrative/Ships2.jpg\"> In the evenings, Olof Torén and supercargo Anders Gotheen, a man who would not hesitate to let people know his personal values aligned perfectly with the new ideals of the intellectual revolution today known as the <i>Enlightenment</i>, enjoyed sitting down for a game of backgammon on the main deck. Or rather, Olof Torén enjoyed the game while Anders Gotheen, as he liked to say, enjoyed engaging in dialectic discourse while playing a game only slightly distracting since winning after all was mostly a question of luck. Olof Torén had noticed that conversations with Anders Gotheen often made him worried about things he had not previously contemplated and was therefore less amused by the dialectic aspect of their game nights.  </p>\n          \n          <p>This particular evening it seemed Anders Gotheen would definitely lose. He watched Olof Torén bear off three of his white checkers and as he collected the dice supercargo Gotheen turned to the naturalist.</p>\n          <p class=\"dialogue\">– For the intellectually brave and honest, he said, no comfort can be found in the concept of infinity. Everything typical of human life, he continued, is characterized by the notion of a finite world, and therefore a free human mind can never truly be consoled by the appreciation of endlessness. He paused and drank some wine from a metal cup. </p>\n          <p class=\"dialogue\">– This is also true for the afterlife, he then added. </p>\n          <p> <img class=\"narrative-illo-small\" align = \"right\" src=\"images/00_narrative/Fireside.jpg\"> The reason why, as Olof Torén would explain it a few days later during a one-way conversation with a group of patiently listening teacup giraffes, what Anders Gotheen said that evening had so effectively shaken the foundation of his world view, was not because it directly challenged his faith. No, it was the fact that what Anders Gotheen had said instead questioned how much existential relief any belief could offer whatsoever that resulted in a detrimental blow to his conviction.</p>\n          \n          <p>For what felt like a very long time, Olof Torén listened to Anders Gotheen in detail describe the philosophical abyss all perspectives on <i>life after death</i> inescapably lead to. He started to feel lightheaded and ended the game early so that he could climb up to the upper deck to get some fresh air. It was a clear night and the sky seemed filled with an infinite number of stars. His head was now spinning, he lost his balance, made a futile attempt to reach for the shrouds, but inevitably fell overboard.</p>\n          \n          <p>Olof Torén treaded water all night, motivated by his new fear of death. When the sun rose he for a moment forgot about the thoughts that had been plaguing him during those long hours in the dark water, because the early morning light draped the world in a calming emerald luster. He could now see he had drifted to only a yards away from the sandbank where <i>Hoppet</i> had been stranded a few years earlier. The sunlight was filtered through the foliage of a thousand palm trees on the islands between him and the rising sun and this is what created the green morning experience. He swam to the island closest to him and passed out on the beach, exhausted both physically and mentally. </p>\n          \n          <p>When Olof Torén woke up the sun was about to set. As he slowly opened his eyes he saw a group of teacup giraffes walking towards him on the beach, and briefly thought they had come to welcome him back to the islands. But the small giraffe caravan walked past him and continued towards a large flat stone projecting out of the sand not far from where he was lying. In the light of dusk, everything on the beach seemed to cast extraordinarily long shadows and from where Olof Torén was positioned the stone looked enormous. The shape made him think of <i>runestones</i>, rocks Vikings would raise and decorate with runic inscriptions, but the size more resembled the <i>moai</i> stone statues of Easter island. The teacup giraffes took turns standing in front of the stone observing a large silhouette appear on the granite surface ahead. They seemed infatuated by watching their shadow twin move as they moved, grasping for palm tree leaves non-shadow teacup giraffes would never reach, and making low pitched vocal sounds reminding Olof Torén of larger animals. It was as if these giraffes knew about their unusually small stature and used the evening light to pretend they were tall, like their full-size relatives on the African mainland.<img class= \"narrative-illo-big\" src=\"images/00_narrative/ShadowPlay.jpg\"></p>\n          \n          <p>This time around Olof Torén spent two days in the company of teacup giraffes and grew to appreciate their cheerful demeanor, social competence and general friendliness. When not playing with shadows, chasing fireflies or resting in the crisp air next to a waterfall, they foraged the jungle for celery which seemed to be their favorite food. Time passed quickly on the islands because the teacup giraffes had an almost endless repertoire of delightful behaviors and at times it even appeared they adapted their conduct to what Olof Torén showed appreciation for.</p>\n          \n          <p><img class=\"narrative-illo-big\" src=\"images/00_narrative/Swing.jpg\"></p>\n          <p>On the Swedish East India Company ship <i>Götha Leijon</i>, the consensus was that Olof Torén was unlikely to still be alive, but most of the crew were god fearing men and the idea of leaving a priest to drown without a convincing rescue attempt seemed like the type of thing the almighty would never forget. Some of the them had been present for the Erik Moreen debacle a few years earlier and remembered the location of the islands from this incident.</p>\n          \n          <p>Olof Torén saw the ship approach the islands from far away. After two days on the teacup giraffe diet he was famished because the more celery he ate the hungrier he became. Longing for the salted meats that made up a large part of the meals onboard Swedish East India Company ships, he said goodbye to his new four-legged friends and waded out in the water to meet the rowboat launched to pick him up. As he climbed onboard he turned around to catch a last glimpse of the giraffes and saw them gather on the beach for another evening shadow play ritual.</p>\n          \n          <p>Back on <i>Götha Leijon</i>, Olof Torén wrote down all the details of teacup giraffes’ lives he could remember. During a game of backgammon, he tried to describe their unusual physique and social behaviors, but was soon interrupted by Anders Gotheen who said</p>\n          <p class=\"dialogue\"> – The human mind works in mysterious ways when deprived of energy</p>\n        </div>\n      </div>\n      \n      <div id = slide10  class=\"slide-content\">\n        <div class = \"narrative-text\"> \n          <p>Olof Torén would in fact have a hard time convincing friends and colleagues, people he met as <i>Götha Leijon</i> sailed to Surat and Canton, as well as Carl Linnaeus, that his accounts of the teacup giraffe islands reflected reality. Maybe the feeling of not being trusted contributed to why his health started to deteriorate after his return to Sweden in 1752. On the 3rd of May 1753, a few months before his death, he wrote a last letter to Linnaeus. On the final page of this letter he drew a picture of two giraffes, one short and one tall. They were standing in front of a pair of heavy church doors and both their shadows stretched far above the tower and into the sky. The short giraffe, a female with pointy ears, looked like she was smiling.</p>\n          \n          <p>Even today, when there are few true mysteries left in the world and all corners of the globe have been so carefully measured and illuminated that no colorless spots stain the pages of the modern atlas, teacup giraffes remain a relatively well kept secret. These animals were briefly mentioned in 9th edition of Carl Linnaeus’ <i>Systema Naturae</i> and given the Latin name <i>Giraffa minima</i>, but were removed before printing the 10th edition because of doubts about the trustworthiness of Olof Torén’s descriptions. <img class=\"narrative-illo-200\" align = \"right\" src=\"images/00_narrative/backpack_350px.jpg\">No songs have been sung about them, Rudyard Kipling was oblivious to their existence when writing the <i>Jungle Book</i>, schoolchildren have never wondered how many teacup giraffes they could fit in a backpack, and they were never made famous by a Twinings advertisement campaign.</p>\n        \n          <p> But in December 2018, the <i>Olof Torén foundation</i> in Uppsala decided it was time that teacup giraffes were given a more prominent place in the world of zoology. The foundation set aside money for a stipend and requested applications from “young aspiring scientists devoted to conducting old-school observational field work and interested in spending time on remote islands in the Indian Ocean studying possibly the least known mammal on the planet”. <img class=\"narrative-illo-small\" align = \"left\" src=\"images/00_narrative/uppsala.jpg\"> In the announcement they also wrote “One crucial piece of information missing about teacup giraffes regards their physique, because although it is known that they are small, no reliable records of their exact size can be found anywhere”. And this is true because people falling overboard rarely bring measuring equipment. </p>\n          </div>\n        </div>\n      \n        <div class = \"end-text\">The End</div>\n    </div>\n  </div>\n</body>"
  },
  {
    "path": "assets/01_introToR_image.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n</head>\n\n  <div class=\"image-descript\"> \n\t\t<img class=\"big_image\" src=\"images/big_image/Ship.jpg\">\n\t\t<div class=\"image-text\">\n\t\t\t<div class=\"lil-image-text\">Before the Adventure Begins:</div>\n\t\t\t<div class=\"big-image-text\"><strong>Intro to R</strong></div>\n\t\t</div>\n  </div>"
  },
  {
    "path": "assets/02_bellCurve_image.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n</head>\n\n<div class=\"image-descript\"> \n\t<img class=\"big_image\" src=\"images/big_image/Hills.jpg\"> \n\t<div class=\"image-text\">\n\t  <div class=\"lil-image-text\">Introduction to the</div>\n\t  <div class=\"big-image-text\"><strong>NORMAL DISTRIBUTION</strong></div>\n\t</div>\n</div>"
  },
  {
    "path": "assets/03_mean_image.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n</head>\n\n\n\n  <div class=\"image-descript\"> \n\t\t<img class=\"big_image\" src=\"images/big_image/cave.jpg\">\n\t\t<div class=\"image-text\">\n\t\t\t<div class=\"lil-image-text\">Measures of centrality:</div>\n\t\t\t<div class=\"big-image-text\"><strong>MEAN, MEDIAN, & MODE</strong></div>\n\t\t</div>\n  </div>"
  },
  {
    "path": "assets/04_variance_image.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n\n</head>\n\n  <div class=\"image-descript\"> \n\t\t<img class=\"big_image\" src=\"images/big_image/giraffe_beach.jpg\">\n\t\t<div class=\"image-text\">\n\t\t\t<div class=\"lil-image-text\">The Spread of the Data:</div>\n\t\t\t<div class=\"big-image-text\"><strong>VARIANCE & STANDARD DEVIATION</strong></div>\n\t\t</div>\n  </div>"
  },
  {
    "path": "assets/05_correlation_image.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n  \n</head>\n\n\n  <!---div class=\"image-descript\"> \n\t\t<img class=\"big_image\" src=\"images/big_image/Log.jpg\">\n\t\t<div class=\"image-text\">\n\t\t\t<div class=\"lil-image-text\">A Tale of Two Variables:</div>\n\t\t\t<div class=\"big-image-text\"><strong>COVARIANCE & CORRELATION</strong></div>\n\t\t</div>\n  </div-->\n  \n  \n<div class= \"hero-container\"> \n   <div class=\"hero-image\"> \n\t\t<div class=\"hero-image-text\">\n\t\t  <div class=\"hero-image-text-little\">A tale of two variables:</div>\n\t\t\t<div class=\"hero-image-text-big\">Covariance & correlation</div>\n\t\t</div>\n  </div>\n</div>  "
  },
  {
    "path": "assets/06_standardError_image.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n</head>\n\n  <div class=\"image-descript\"> \n\t\t<img class=\"big_image\" src=\"images/big_image/Archer2.jpg\">\n\t\t<div class=\"image-text\">\n\t\t\t<div class=\"lil-image-text\">Introduction to Inference:</div>\n\t\t\t<div class=\"big-image-text\"><strong>Standard Error</strong></div>\n\t\t</div>\n  </div>"
  },
  {
    "path": "assets/07_tTest_image.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n</head>\n\n\n  <div class=\"image-descript\"> \n\t\t<img class=\"big_image\" src=\"images/big_image/07_tTest_image.jpg\">\n\t\t<div class=\"image-text\">\n\t\t\t<div class=\"lil-image-text\">The difference between two groups:</div>\n\t\t\t<div class=\"big-image-text\"><strong>T-TEST</strong></div>\n\t\t</div>\n  </div>"
  },
  {
    "path": "assets/Landing_page.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t\n\t<!-- Clickable Giraffe -->\n  <script>\n    $(document).ready(function() {\n      $('.giraffe-container').click(function() {\n        $('body').addClass('expanded');\n      });\n    });\n  </script>\n\t\n\t<!-- CSS -->\n\t<link href=\"assets/landing.css\" rel=\"stylesheet\">\n  <link href=\"assets/button.css\" rel=\"stylesheet\">\n  <link href=\"assets/mobile_landing.css\" rel=\"stylesheet\">\n\n</head>\n\n<body>\n  <div id=\"preload\">\n    <img src=\"images/Landing_page/g1_1200px.jpg\">\n  </div>\n  <section class=\"landing container\">\n    <section class=\"giraffe-container\" >\n      <div class=\"singleGiraffe-clickme\"></div>\n      <div class=\"singleGiraffe-clickme-hover\"></div>\n      <div class=\"giraffeForest\">\n        <div class=\"g1 opacity-after-click\"></div>\n      </div>\n      <div class=\"singleGiraffe\"></div>\n      <section class=\"image-descript\"> \n      \t<div class=\"image-text\">\n      \t\t<div class=\"landing small-text\">Welcome to the Wonderful World of</div>\n      \t\t<div class=\"landing big-text\"><strong>TEACUPS, GIRAFFES, & STATISTICS</strong></div>\n      \t</div>\n      </section>\n    </section>\n    \n    <div class=\"appears-after-click\">\n      <div class=\"about\">A delightful series of modules to learn statistics and R coding for students, scientists, and stats-enthusiasts.</div>\n      <div class=\"landing-buttons\"> \n        <a id=\"container\" href=\"00_narrative.html\">\n          <button class=\"learn-more\">\n            <span class=\"circle\">\n              <span class=\"icon arrow\"></span>\n            </span>\n            <span class=\"button-text\">Read the History of Teacup Giraffes</span>\n          </button>\n        </a>\n        <a id=\"container\" href=\"01_introToR.html\">\n          <button class=\"learn-more deemphasized\">\n            <span class=\"circle\">\n              <span class=\"icon arrow\"></span>\n            </span>\n            <span class=\"button-text\">Skip Straight to the Stats</span>\n          </button>\n        </a>\n      </div>\n      \n      \n    </div>\n  </section>\n</body>\n\n"
  },
  {
    "path": "assets/aboutTheAuthors_image.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n</head>\n\n<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n<link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n<link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\"><link href=\"assets/style.css\" rel=\"stylesheet\">\n\n\n<div class=\"image-descript\"> \n\t<img class=\"main-image\" src=\"images/aboutTheAuthors/Jungle.jpg\"> \n\t<!--<div class=\"color-overlay\"></div>-->\n\t<div class=\"image-text image-text-about-the-authors\">\n\t\t<!--div class=\"lil-image-text\"></div-->\n\t\t<div class=\"big-image-text\"><strong>ABOUT THE AUTHORS</strong></div>\n\t</div>\n</div>\n\n\n<div class=\"back-panel\"> \n\t<div class=\"back-panel-contents\">\n\t\t<div class=\"about-the-author-color-textbox\">\n\t\t\t<div class=\"about-the-author-color-textbox-title\">HASSE WALUM</div>\n\t\t\t<div class=\"about-the-author-color-textbox-text\"> Hasse is a tall, Swedish teacup giraffe (one of the few giraffes from the North).  When not munching on celery and doing creative writing, he spends his time working as an instructor at Emory University, coding in R, thinking about issues related to scientific rigor, and analyzing gene expression data. </div>\n\t\t</div>\n\t\t<div class=\"about-the-author-subimage\"> <img src=\"images/aboutTheAuthors/giraffe_avatar.jpg\"> </div>\n\t\t<div class=\"about-the-author-color-textbox\">\n\t\t\t<div class=\"about-the-author-color-textbox-title\"\"> DESIRÉE DE LEON</div>\n\t\t\t<div class=\"about-the-author-color-textbox-text\"\">Desirée is a multidisciplinary teacup giraffe who is a recent PhD grad in neuroscience at Emory University, and also enjoys illustrating and bluegrass (both the music and the plant). Her graduate research involved using R to analyze pedigree data of cute monkey families living at the Yerkes National Primate Research Center.</div>\n\t\t</div>\n\t</div>\n</div>"
  },
  {
    "path": "assets/button.css",
    "content": "\n  a, a:active, a:focus{\n      outline: none; /* Removes dotted link outline. Works in Firefox, Chrome, IE8 and above */ \n  }\n  \n/*------ BUTTONS ------*/\n\n.landing-buttons {\n  display: flex;\n  flex-wrap: wrap; /* so that it will wrap nicely on mobile */\n  justify-content: center;\n  margin: 0 auto;\n  visibility: visible;\n}\n\nbody.expanded .appears-after-click {\n  display: block;\n  animation: 3s fadeIn;\n  animation-fill-mode: forwards;\n}\n\n@keyframes fadeIn {\n  0% {\n    opacity: 0;\n  }\n  100% {\n    visibility: visible;\n    opacity: 1;\n  }\n}\n\n\nbutton {\n  position: relative;\n  display: inline-block;\n  cursor: pointer;\n  outline: none;\n  border: 0;\n  vertical-align: middle;\n  text-decoration: none;\n  background: transparent;\n  padding: 0;\n  font-size: inherit;\n  font-family: inherit;\n}\n\nbutton.learn-more {\n  width: 27rem;\n  height: auto;\n   margin: 1em\n}\n\nbutton.learn-more .circle {\n  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);\n  position: relative;\n  display: block;\n  margin: 0;\n  width: 3em;\n  height: 3em;\n  background: #282936;\n  border-radius: 1.625em;\n}\n\nbutton.learn-more.deemphasized .circle {\n  background: white;\n  border: 3px solid #282936;\n}\n\nbutton.learn-more .circle .icon {\n  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  margin: auto;\n  background: #fff;\n}\nbutton.learn-more.deemphasized .circle .icon {\n  background: #282936;\n}\nbutton.learn-more .circle .icon.arrow {\n  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);\n  left: 0.925rem;\n  width: 2.225rem;\n  height: 0.225rem;\n  background: none;\n}\n\nbutton.learn-more.deemphasized .circle .icon.arrow {\n  left: 0.625rem; /*accounts for 3px border, which pushes arrow*/\n}\n\nbutton.learn-more .circle .icon.arrow::before {\n  position: absolute;\n  content: '';\n  top: -0.45rem;\n  right: -0.0375rem;\n  width: 1.125rem;\n  height: 1.125rem;\n  border-top: 0.325rem solid #fff;\n  border-right: 0.325rem solid #fff;\n  -webkit-transform: rotate(45deg);\n          transform: rotate(45deg);\n}\nbutton.learn-more.deemphasized .circle .icon.arrow::before {\n  border-top: 0.325rem solid #282936;\n  border-right: 0.325rem solid #282936;\n}\n\nbutton.learn-more .button-text {\n  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  padding: 0.75rem 0;\n  margin: 0 0 0 7.3rem;\n  color: #282936;\n  font-weight: 600;\n  line-height: 1.3;\n  text-align: left;\n  text-transform: uppercase;\n  font-size: 1.5rem;\n  font-family: \"Source Sans Pro\";\n  letter-spacing: 1px;\n  /*to vertically center text in button, 2 properties below*/\n  display: flex;\n  align-items: center;\n}\nbutton:hover .circle {\n  width: 100%;\n}\nbutton:hover .circle .icon.arrow {\n  background: #fff;\n  -webkit-transform: translate(1.7rem, 0);\n          transform: translate(1.7rem, 0);\n}\nbutton:hover.deemphasized .circle .icon.arrow {\n  background: #282936;\n}\nbutton:hover .button-text {\n  color: white;\n}\nbutton:hover.deemphasized .button-text {\n  color: #282936;\n}\n\n\n/* ---See mobile_landing.css for button styles on mobile--- */\n"
  },
  {
    "path": "assets/foot.html",
    "content": "<!DOCTYPE html>\n\n<div class=\"foot\">\n\t<hr> \n\t<p style=\"text-align: center;\"> <span style=\"color: #808080; display: inline-block; width: 58%;\"> \tThis project was created entirely in RStudio using R Markdown and published on GitHub pages. \n </span></p>\n\t<p style=\"text-align: center;\">\n\t</p>\n</div>"
  },
  {
    "path": "assets/landing.css",
    "content": "@import url('https://fonts.googleapis.com/css?family=Lora:400,400i&display=swap');\n\n/*Loads background-images in HTML as <img> tags, so that they are already loaded when animated to display later*/\n#preload {\n  display: none;\n}\n\n/* JS appear: */\n/* After clicking, the class `.expanded` is added to the body tag, which applies the styles below to the elements below */\n\nbody.expanded .image-descript {\n  display: flex;\n}\nbody.expanded .singleGiraffe-clickme {\n  display: none;\n}\nbody.expanded .singleGiraffe {\n  display: block;\n}\nbody.expanded .giraffeForest {\n  display: block;\n}\n    \n\n\n/*------------NARRATIVE-----------*/\n\n.narrative-container {\n  max-width: 650px;\n  margin: 4em auto;\n}\n\n.narrative-cover {\n  text-align: center;\n  margin: 0 auto 2em auto;\n  max-width: 650px;\n  background-color: white;\n}\n\n.narrative-illo-200 {\n  max-width: 200px !important;\n  display: inline-block !important;\n  margin: 0.5em 1em 0.5em 0.5em;\n}\n.narrative-illo-small {\n  max-width: 350px !important;\n  display: inline-block !important;\n  margin: 0.5em 1em 0.5em 0.5em;\n}\n.narrative-illo-big {\n  display: block !important;\n  max-width: 90% !important;\n  margin: 0.5em auto;\n}\n\n.narrative-text {\n  font-family: \"Source Sans Pro\";\n  line-height: 1.75;\n}\n\n.dialogue {\n  text-indent: 2em;\n}\n\np.blockquote{\n  background: #fcf8f0;\n  border-left: 10px solid #f2e0c3;\n  padding: 1.5em 10px;\n  font-family: \"Lora\";\n  font-style: italic;\n  font-size: 0.85em;\n  margin: 1em 2em 1em 2em !important;\n}\n\n.slide-content > .narrative-text > p:first-of-type:first-letter { /*drop cap for first p that is a direct child of .narrative-text, which is in turn a direct child of .slide-content*/\n  color: #3fb5bd;\n  float: left;\n  font-family: 'Lora', serif;\n  font-weight: bold;\n  font-size: 7em;\n  line-height: 65px;\n  padding: 20px 8px 0 3px;\n  margin-bottom: 9px;\n}\n\n.narrative-text p {\n  margin-bottom: 1.5em;\n}\n\n.slide-content { /* space separating each \"chapter\" */\n  margin-bottom: 3em;\n}\n\n.end-text{\n  text-align: center;\n  margin-top: 100px 0 50px 0;\n  font-size: 3em;\n  font-family: 'Lora';\n  font-weight: 600;\n  color: #3fb5bd;\n}\n\n\n/*------------NAVBAR-------------*/\n.navbar-default {\n  background-color: #ffffff33;\n  box-shadow: 0 0 50px rgba(255, 255, 255, 0.76);\n  background-image: linear-gradient(to bottom, #ffffff, #ffffff, #ffffffed, #ffffffba, #ffffff33) !important;\n  border: none;\n}\n\n.navbar-default .navbar-nav>li>a {\n  color: black;\n}\n\n.navbar-default .navbar-nav>.active>a, \n.navbar-default .navbar-nav>.active>a:hover, \n.navbar-default .navbar-nav>.active>a:focus\n/*.navbar-default .navbar-nav>li>a:hover,*/\n/*.navbar-default .navbar-nav>li>a:focus */{\n    color: #989898;\n    background-color: #ffffff33;\n    background-image: linear-gradient(to bottom, #ffffff, #ffffff, #ffffffed, #ffffffba, #ffffff33) !important;\n}\n\n/* Hovering over navbar + dropdown */\n\n.navbar-default .navbar-nav>li>a:hover,\n.navbar-default .navbar-nav>li>a:focus{\n    color: #989898;\n    background-color: white;\n}\n\n\n/* hamburger menu on mobile */\n\n.icon-bar {\n  background-color: black !important;\n}\n\n.navbar-default .navbar-toggle:hover, \n.navbar-default .navbar-toggle:focus {\n    background-color: #ffffff !important;\n}\n\n\n/* Whole document: */\n\nbody {\n\tfont-size: 19px;\n}\n\n.title{\n  display: none;\n}\n\n.main-container {\n\tmax-width: 1326px !important;\n  }\n\n\n .container-fluid {                  /* margin: 0 Left-aligns container; margin: auto to \"center\" (Default)*/\n    margin-right: auto !important; \n    margin-left: auto !important;\n} \n\n.row-fluid{\n  display: flex;\n  position: relative;\n}\n\n.col-xs-12 .col-sm-4 .col-md-3{\n  width: 25%;\n  position: relative;\n}\n\n.tocify-extend-page {\n  height: 0px !important; /* Gets rid of extra space after footer*/\n}\n\n\nbody, html {\n  height: 100%;\n}\n\n\n/*@media screen and (max-width: 300px) {\n .image-descript {\n  display: none;\n }*/\n\n\n\n/* --------------v2 Landing Page---------------*/\n\n.landing-container {\n  max-width: 700px;\n}\n\n  .giraffe-container {\n    height: 500px;\n    margin: 0.5em auto 0em auto;\n    position: relative;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n  }\n  \n    .singleGiraffe-clickme {\n      height: 400px;\n      width: 354px;\n      left: 52%;\n      margin-left: -177px; /*half the container's width*, along with left: 50%*/\n      position: absolute;\n      display: block;\n      cursor: pointer;\n      background-repeat: no-repeat;\n      background-size: contain;\n      background-position: bottom;\n      background-image: url(\"../images/Landing_page/singleGiraffe-clickme.jpg\");\n    }\n\n    .singleGiraffe-clickme-hover {\n      height: 400px;\n      width: 354px;\n      left: 52%;\n      margin-left: -177px; /*half the container's width*, along with left: 50%*/\n      position: absolute;\n      display: block;\n      cursor: pointer;\n      background-repeat: no-repeat;\n      background-size: contain;\n      background-position: bottom;\n      background-image: url(\"../images/Landing_page/singleGiraffe-clickme-hover.jpg\");\n      opacity: 0;\n    }\n    \n    .singleGiraffe-clickme-hover:hover {\n      opacity: 1;\n    }\n\n    .singleGiraffe {\n      height: 400px;\n      width: 354px;\n      left: 52%;\n      margin-left: -177px; /*half the container's width*, along with left: 50%*/\n      position: absolute;\n      display: none;\n      background-repeat: no-repeat;\n      background-size: contain;\n      background-position: bottom;  \n      background-image: url(\"../images/Landing_page/singleGiraffe.png\");\n      animation: slide-up 1s forwards;\n    }\n\n    .giraffeForest {\n      position: absolute;\n      height: 500px;\n      width: 1200px;\n      left: 50%;\n      margin-left: -600px;\n      display: none;\n      background-repeat: no-repeat;\n      background-size: contain;\n      background-position: center; \n    }\n    \n    .g1 {\n      display: block;\n      height: 500px;\n      background-image: url('../images/Landing_page/g1_1200px.jpg');\n      background-size: contain;\n      background-repeat: no-repeat;\n      animation: slide-in-from-top 1s forwards;\n    }\n    \n     @keyframes slide-up {\n      0% { opacity: 1; transform: translateY(0px); }\n      100% { opacity: 1; transform: translateY(-15px); }\n    }\n    \n    @keyframes slide-in-from-bottom {\n      0% { opacity: 0; transform: translateY(100px); }\n      100% { opacity: 1; transform: translateY(0); }\n    }\n    \n     @keyframes slide-in-from-top {\n      0% { opacity: 0; transform: translateY(-100px); }\n      100% { opacity: 1; transform: translateY(0); }\n    }\n    \n    @keyframes slide-in-from-right{\n      0% { opacity: 0; transform: translateX(100px); }\n      100% { opacity: 1; transform: translateX(0); }\n    }\n    \n    @keyframes slide-in-from-left {\n      0% { opacity: 0; transform: translateX(100px); }\n      100% { opacity: 1; transform: translateX(0); }\n    }\n\n.image-descript {\n  position: relative;\n  display: none;\n  animation: slide-in-from-bottom 1s forwards;\n  justify-content: center; /* flex horizontal center */\n  align-items: center; /*flex vertical center*/\n}\n .big-text {\n    text-align: center;\n    color: #ffffff;\n    visibility: visible;\n    font-size: 3em;\n    text-shadow: 1px 1px 35px #0e0d0d38;\n    letter-spacing: 0.065em;\n  }\n  .small-text { \n      color: white;\n      margin: 0 auto 5px auto;\n      text-align: center; \n      display:block;\n      font-family: 'Lora', serif;\n      font-size: 22px;\n      font-weight: 500;\n      line-height: 1.5em;\n      letter-spacing: 1px;\n      font-style: italic;\n      text-shadow: 1px 1px 35px #0e0d0d38;\n    }\n\n\n/*------ LANDING WELCOME INFO----- */\n\n.appears-after-click {\n  display: none;\n}\n\n.appears-after-click .about {\n  text-align: center;\n  font-family: \"Source Sans Pro\";\n  font-size: 1.2em;\n  color: #707070;\n  max-width: 725px;\n  margin: 0 auto 1em auto;\n}\n\n\n\n\n/* Tablet */\n@media only screen and (min-width: 480px) and (max-width: 540px) {\n  .toc-content {\n    width: 100%;\n  }\n}\n\n@media only screen and (min-width: 541px) and (max-width: 649px) {\n  .toc-content {\n    width: 100%;\n  }\n}\n\n\n@media only screen and (min-width: 650px) and (max-width: 767px) {\n  .toc-content {\n    width: 100%;\n  }\n}\n\n\n/*iPad portrait*/\n\n@media only screen and (min-width: 768px) and (max-width: 1023px) {\n  .toc-content {\n    width: 100%;\n  }\n}\n\n\n/*iPad Pro portarit */\n\n@media only screen and (min-width: 1024px) and (max-width: 1225px) {\n  .toc-content {\n    width: 100%;\n  }\n}\n\n\n\n@media only screen and (max-width: 768px) {\n  .col-xs-12.col-sm-4.col-md-3 {\n    display: none !important;\n  }\n}\n\n\n/* New hero images */\n\n.hero-container {\n  height: 550px;\n  background-color: #1b3a42;\n  margin-bottom: 2em;\n}\n\n.hero-image {\n  max-width: 1800px;\n  margin-top: -50px !important;\n  margin-left: auto;\n  margin-right: auto;\n  position: relative;\n  margin-bottom: 2em;\n  background-image: linear-gradient( rgba(0,0,0,.2), rgba(0,0,0,.2) ),\n  url(../images/big_image/Log.jpg); /* liner gradient tints the image darker for readability*/\n  height: 550px;\n  background-size: cover;\n  background-color: #1b3a42;\n  background-position: center bottom;\n  display: flex; /* Change to `display: none` for no hero image */\n  justify-content: center;\n  align-items: center;\n}\n\n\n.hero-image-text-little {\n  position: relative;\n  font-family: 'Lora', serif;\n  font-size: 24px;\n  font-weight: 500;\n  line-height: 1.5em;\n  letter-spacing: 1px;\n  font-style: italic;\n  font-weight: normal;\n  color: #fff;\n  text-align: center;\n}\n\n.hero-image-text-big {\n  position: relative;\n  letter-spacing: 0.065em;\n  line-height: 1em;\n  font-size: 68px;\n  text-transform: uppercase;\n  text-align: center;\n  display: block;\n  color: #fff;\n  margin-bottom: 2.5rem;\n  font-weight: bold;\n}\n\n\n@media only screen and (max-width: 770px) {\n  .hero-image-text-big{\n    font-size: 3rem;\n    padding: 2rem 0rem 0rem 0rem;\n  }\n\n  .hero-image-text-little{\n    font-size: 19px;\n  }\n  \n  .hero-image {\n    max-width: 770px;\n    height: 300px;\n  }\n  \n    .hero-container {\n    height: 300px;\n    background-color: #1b3a42;\n    margin-bottom: 1em;\n  }\n  \n  .toc-content.col-xs-12.col-sm-8.col-md-9{\n    width: 100%;\n    padding-left: 1px;\n    padding-right: 1px;\n  }\n}\n\n\n"
  },
  {
    "path": "assets/landing_styles.css",
    "content": "* {\n  margin: 0;\n  padding: 0;\n}\n\n\nbody {\n\t  \t\tfont-size: 1em;\n\t\t  \tcolor: rgba(26,26,26,.9);\n\t\t   \tfont-family: 'Open Sans', sans-serif;\n\t\t   \tbackground-color: #f5f5f5;\n\t\t}\n\t\t  \t.branding-bar{\n\t\t\t    width: 100%; \n\t\t\t    height: 60px;\n\t\t\t    background-color: #22222270;\n\t\t\t    padding-right:4em;\n\t\t\t    text-align: left;\n\t\t\t    font-size: 1em;\n\t\t\t    color:#f7f7f7;\n\t\t\t    line-height: 80px;\n\t\t\t    position:fixed;\n\t\t\t    z-index: 999;\n\t\t\t    \n\t\t\t}\n\n\t\t\t\t.button-link{\n\t\t\t\t\tpadding-left: 2em;\n\t\t\t\t\tpadding-right: 2em;\n\t\t\t\t\tpadding-top:1em;\n\t\t\t\t\tpadding-bottom:1em;\n\t\t\t\t\tborder-radius: 50px;\n\t\t\t\t    /* this is irrelevant, and just so the element can be visualised/displayed: */\n\t\t\t\t    margin: 2em auto;\n\t\t\t\t    border: 1.5px solid #fff;\n    \t\t\t\tcolor: #fff;\n    \t\t\t\tfont-size: .75em;\n    \t\t\t\ttext-decoration: none;\n    \t\t\t\tmargin-right: 5%;\n    \t\t\t\tletter-spacing: 0.065em;\t\t\n\t\t\t\t}\n\n\t\t\t\t.button-link:hover {\n\t\t\t\t\tcolor: #002878;\n\t\t\t\t\tbackground-color:white;\n\t\t\t\t}\n\n\n\t\t\t\t.bar-link{\n\t\t\t\t\tcolor: #fff;\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t\tfont-size: .75em;\n\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\tmargin-right: 2em;\n\t\t\t\t\tletter-spacing: 0.065em;\n\t\t\t\t}\n\n\t\t\t\t.bar-link:hover{\n\t\t\t\t\tcolor:#f5f5f5;\n\t\t\t\t\tfont-style: bold;\n\t\t\t\t}\n\t\t\t\t\n.image-descript {\n    position: relative;\n}\n\n.main-image {\n\t\twidth: 100%;\n\t\tdisplay: block; /*This gets rid of the weird little space from inline-block*/\n\t}\n\n.image-text{\n\t\tposition: absolute;\n\t\ttop:30%;\n\t\tleft:0;\n\t\tright:0;\n\t\tbottom:0;\n\t}\n\n.lil-image-text { \n\t\tcolor: #ededea;\n\t\tmargin-top: 20px;\n    \tmargin-right: auto;\n    \tmargin-bottom: 20px;\n    \tmargin-left: auto;\n\t\tpadding-top: 2em;\n\t\ttext-align: center; \n\t\tdisplay:block;\n\t\tfont-family: 'Lora', serif;\n    \tfont-size: 18px;\n    \tfont-weight: 400;\n    \tline-height: 1.5em;\n    \tletter-spacing: 1px;\n    \tfont-style: italic;\n    \tcolor: #fff;\n\t}\n\n\n.big-image-text { \n\t\tletter-spacing: 0.065em;\n\t\tline-height: 1em;\n\t\tfont-size: 68px;\n\t\ttext-transform: uppercase;\n\t\ttext-align: center; \n\t\tdisplay:block;\n\t\tcolor: #fff;\n\t}\n\n\n.color-overlay {\n\tposition: absolute;\n\ttop: 0;\n\tright: 0;\n\tbottom: 0;\n\tleft: 0;\n\tbackground-color: rgba(0,0,0,.1);\n}\n"
  },
  {
    "path": "assets/mobile_landing.css",
    "content": "\n/* IPHONE 6/7/8 */\n/* In summary:\n1. Makes text on image smaller\n1. Gets rid of hover-specific styles/ images\n*/\n\n@media only screen and (max-width: 500px) {\n  .giraffe-container { /* takes margin-top from 0.5em to 0*/\n    margin: 0 auto;\n  }\n  \n  .big-text {\n    font-size: 2.1em; /*down from 3em */\n    text-shadow: 1px 1px 35px #0e0d0d78; /*text shadow a little darker */\n    line-height: 1.2; /* makes smaller */\n  }\n  .small-text {\n    font-size:18px; /*smaller*/\n    text-shadow: 1px 1px 35px #0e0d0d78; /*text shadow a little darker */\n  }\n  \n .singleGiraffe-clickme-hover {\n   display: none;\n }\n  \n  .landing.about {\n    font-size: 1.1em; /*smaller*/\n  }\n  \n  /*-------- BUTTONS on iphone-------- */\n  /*Takes hovered styles and applies them to the static element */\n  \n  button.learn-more .circle .icon.arrow {\n    background-color: white;\n  }\n  button.learn-more .circle {\n    width: 100%; \n  }\n  button.learn-more .circle .icon.arrow {\n  background: none; /*Eliminates arrow's horizontal line*/\n  -webkit-transform: translate(1.7rem, 0);\n          transform: translate(1.7rem, 0);\n  }\n  button.learn-more.deemphasized .circle .icon.arrow {\n    background: none; /*Eliminates arrow's horizontal line*/\n  }\n  button.learn-more .button-text {\n    color: white;\n  }\n  button.learn-more.deemphasized .button-text {\n    color: #282936;\n  }\n}\n\n\n\n/*--------- IPAD portrait-------- */\n\n@media only screen and (min-width: 501px) and (max-width: 768px) {\n.big-text {\n    text-shadow: 1px 1px 35px #0e0d0d78; /*text shadow a little darker */\n    line-height: 1.2; /* makes smaller */\n  }\n  .small-text {\n    font-size:18px; /*smaller*/\n    text-shadow: 1px 1px 35px #0e0d0d78; /*text shadow a little darker */\n  }\n  \n  /* Remove hovered styles for clickme giraffe and buttons*/\n\n    .singleGiraffe-clickme-hover {\n       display: none;\n     }\n\n    /*--BUTTON--*/\n      button.learn-more .circle .icon.arrow {\n        background-color: white;\n      }\n      button.learn-more .circle {\n        width: 100%; \n      }\n      button.learn-more .circle .icon.arrow {\n      background: none; /*Eliminates arrow's horizontal line*/\n      -webkit-transform: translate(1.7rem, 0);\n              transform: translate(1.7rem, 0);\n      }\n      button.learn-more.deemphasized .circle .icon.arrow {\n        background: none; /*Eliminates arrow's horizontal line*/\n      }\n      button.learn-more .button-text {\n        color: white;\n      }\n      button.learn-more.deemphasized .button-text {\n        color: #282936;\n      }\n}\n\n\n/* LARGE MONITORS */\n\n@media only screen and (min-width: 1500px) {\n  .giraffe-container {\n    height: 500px;\n    margin: 2em auto 1em auto;\n    position: relative;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n  }\n  \n   .singleGiraffe {\n      animation: none;\n    }\n}\n\n\n@media (max-width: 767px) {\n  .navbar-default .navbar-nav .open .dropdown-menu>li>a {\n      color: black !important;\n  }\n}"
  },
  {
    "path": "assets/mobile_narrative.css",
    "content": "/*  IPHONE6/7/8 */\n\n@media only screen and (max-width: 540px) {\n .narrative-container { \n   margin: 0 auto 1em auto; /* reduce margin top */\n }\n \n  .narrative-text {\n    padding: 0 16px; /* adds padding to sides */\n    margin: 0 auto; /* attempts to center */\n  }\n  \n  .narrative-illo-200 {\n    max-width: 300px !important; /*makes larger, essentially full screen*/\n  }\n  \n  .narrative-illo-small { \n    margin: 0.5em auto; /* override margin so doesn't overflow */\n  }\n  \n  .narrative-illo-big {\n    max-width: 100% !important; /* overrides 90% */\n  }\n  \n  p.blockquote {\n    margin: 0em 1em 0em 1em !important; /* makes wider */\n  }\n  \n  .slide-content > .narrative-text > p:first-of-type:first-letter { /*drop cap*/\n    font-size: 4.5em;\n    line-height: 30px;\n    padding: 20px 5px 0 0;\n  }\n}\n\n@media (max-width: 767px) {\n  .navbar-default .navbar-nav .open .dropdown-menu>li>a {\n      color: black !important;\n  }\n}"
  },
  {
    "path": "assets/style.css",
    "content": "@import url('https://fonts.googleapis.com/css?family=Lora:400,400i&display=swap');\n\n/*------------NAVBAR-------------*/\n.navbar-default {\n    background-color: #22222270;\n    border: none;\n}\n\n\n/* Whole document: */\n\nbody {\n\tfont-size: 20px;\n}\n\n.title{\n  display: none;\n}\n\nh1 {\n  padding-top: 2em !important;\n  margin-top: -1em !important;\n}\n\n\np {\n  margin: 1em 0 1em 0 !important;\n}\n\nul {\n  margin-bottom: 1em;\n}\n\n  .main-container {\n\tmax-width: 1326px !important;\n  }\n\n.alert-info { /* old objective box */\n  padding: 1.5em;\n  background-color: #a0d1ef !important;\n}\n\n.alert-note {\n  color: #777777;\n  background-color: #f6f3f3;\n  width: 90%;\n  margin: 0 auto;\n}\n\n\nblockquote {\n  margin: 0 0 0 0 !important;\n  padding: 0.5px 21px;  /* I changed from default of 10.5px 21px*/\n}\n\n.blockquote-note {\n  color: #777777;\n  background-color: #f6f3f3;\n  width: 90%;\n  margin: 0 auto;\n}\n\n\n .container-fluid {                  /* margin: 0 Left-aligns container; margin: auto to \"center\" (Default)*/\n    margin-right: auto !important; \n    margin-left: auto !important;\n} \n\n\n.row-fluid{\n  display: flex;\n  position: relative;\n}\n\n.col-xs-12.col-sm-4.col-md-3{\n  width: 35%; /* should agree with body width aka toc-content, overriding default 25% from cosmo theme */\n  position: relative;\n}\n\n/*-----------TABLE OF CONTENTS-------------*/\n\n/* GIRAFFE LOGO */\n#TOC::before {\n  content: \"\";\n  display: block; /*change from block to none for landing page */\n  height: 150px;\n  margin: 10px 10px 40px 10px;\n  background-image: url(\"../images/toc-giraffe-logo.jpg\");\n  background-size: contain;\n  background-position: center center;\n  background-repeat: no-repeat;\n}\n\ndiv.tocify {\n    width: 100% !important;\n    max-width: 260px;\n    max-height: 85%;\n    font-size: 16px;\n}\n\n.tocify {\n  border: none;\n  position: -webkit-sticky;\n  position: sticky; \n  top: 60px; \n  width: 100%;\n}\n\n#TOC {\n  position: -webkit-sticky !important;\n  position: sticky !important;\n  margin-left: auto !important;\n  margin-right: auto !important; /* to center the TOC within it's col-xs-12, etc. container */\n}\n\n.toc-content { /*actually, the body content*/\n  width: 65%\n}\n\n.list-group-item {\n    position: relative;\n    display: block;\n    padding: 10px 15px;\n    margin-bottom: -1px;\n    background-color: white;\n    border: none;\n    color: gray;\n}\n\n.list-group-item:hover {\n    z-index: 2;\n    color: DarkSlateGray;\n    background-color: white;\n    border: none;\n}\n\n.list-group-item.active{\n    z-index: 2;\n    color: black;\n    background-color: white;\n    border: none;\n}\n\n.list-group-item.active:focus {\n    z-index: 2;\n    color: black;\n    background-color: white;\n    border: none;\n}\n\n.list-group-item.active:hover {\n  z-index: 2;\n  color: DarkSlateGray;\n  background-color: white;\n  border: none;\n}\n\n/*---------FOOTER-----------*/\n.foot_image {\n  width: 50px;\n  filter: grayscale(0%);\n  margin-left: 1em;\n  margin-right: 1em;\n}\n\n.foot {\n  font-size: .75em;\n  text-transform: uppercase;\n  color: #808080;\n  text-align: center;\n}\n\n.foot hr{\n  width: 90%;\n}\n\n\n.tocify-extend-page {\n  height: 0px !important; /* Gets rid of extra space after footer*/\n}\n\n\n/* DATA CAMP WINDOWS */\n\n.powered-by-datacamp {\n  display: none !important;\n}\n\n.datacamp-exercise {\n  margin: 0 0 1em 0 !important;\n}\n\n\n/* LARGE IMAGE AT TOP OF EACH MODULE PAGE*/\n.image-descript {\n    position: relative;\n}\n\n/*.main-image is for landing page*/\n.main-image {\n  width: 100%;\n  display: block; /*This gets rid of the weird little space from inline-block*/\n  margin-top: -50px;\n  margin-bottom: 10px;\n}\n\n.button {\n  border: 2px solid white;\n  background-color: #0000001a;\n  text-align: center;\n  color: white;\n  padding: 1rem;\n  font-size: 2rem;\n  cursor: pointer;\n  margin: 0 auto;\n  width: 150px;\n  text-transform: uppercase;\n}\n\n.button:hover {\n  background-color: white;\n  color: DarkSlateGray;\n  text-decoration: none !important;\n}\n\na.button-landing-page {\n    color: white !important;\n    border: none;\n    text-decoration: none !important;\n}\n\n\na.button-landing-page:focus{\n    z-index: 2;\n    color: DarkSlateGray;\n    border: none;\n    text-decoration: none !important;\n}\n\na.button-landing-page:hover{\n    z-index: 2;\n    color: DarkSlateGray;\n    border: none;\n    text-decoration: none !important;\n}\n\nbody, html {\n  height: 100%;\n}\n\n\n\n/*.big_image is for module pages*/\n\n.big_image {\n  margin-top: -66px;\n  margin-bottom: 2em;\n  width: 100%;\n}\n\n.image-text{\n    position: absolute;\n    top:30%;\n    left:0;\n    right:0;\n    bottom:0;\n  }\n  \n.lil-image-text { \n    color: white;\n    margin-top: 0px;\n      margin-right: auto;\n      margin-bottom: 20px;\n      margin-left: auto;\n    padding-top: 0px;\n    text-align: center; \n    display:block;\n    font-family: 'Lora', serif;\n      font-size: 22px;\n      font-weight: 500;\n      line-height: 1.5em;\n      letter-spacing: 1px;\n      font-style: italic;\n      font-weight: normal;\n      color: #fff;\n  }\n\n\n/*@media screen and (max-width: 300px) {\n .image-descript {\n  display: none;\n }*/\n\n\n.big-image-text { \n  letter-spacing: 0.065em;\n  line-height: 1em;\n  font-size: 68px;\n  text-transform: uppercase;\n  text-align: center; \n  display:block;\n  color: #fff;\n  margin-bottom: 3rem;\n}\n\n\n.color-overlay {\n  position: absolute;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  background-color: rgba(0,0,0,.1);\n}\n\n/* Landing Page*/\n\n.back-panel {\n  max-width: 1500px;\n  background: white;\n  margin: 0 auto;\n  margin-top: 3em;\n  padding: 0 0em;\n}\n\n.back-panel-contents {\n  width: 100%;\n  display: flex;\n  margin: 0 auto;\n}\n\n.back-panel-contents_row-reverse {\n  flex-direction: row-reverse;\n}\n\n.color-textbox {\n  width:70%;\n  background: #4accc2;\n  color: white;\n  text-align: center;\n  font-weight: normal;\n  margin-bottom: 3em;\n}\n\n.color-textbox-blue {\n  background: #5eade3;\n}\n\n\n.color-textbox-orchid {\n  background: orchid;\n}\n\n.color-textbox-title {\n  text-align: center;\n  font-weight: bold;\n  font-size: 3.2rem;\n  padding: 8rem 3rem 0rem 3rem;\n}\n\n.color-textbox-text {\n  font-size: 3rem;\n  padding: 3rem 8rem 0rem 8rem;\n  font-weight: normal;\n  text-transform: normal;\n}\n\n.landing-subimage {\n  width:30%;\n  margin-bottom: 3em;\n}\n\n\n.images-landing {\n  margin-bottom: 0em !important;\n}\n\n\n\n/* SMARTPHONES PORTRAIT */\n@media only screen and (min-width: 300px) and (max-width: 479px) {\n.lil-image-text {\n    font-size: 1rem;\n  }\n\n  .big-image-text {\n    line-height: normal;\n    font-size: 1.5rem;\n  }\n\n  .back-panel {\n    margin-top: 0;\n  }\n  .back-panel-contents {\n    display: flex;\n  }\n\n  .landing-subimage {\n    width: 75%;\n    margin: 0 auto;\n  }\n\n  .color-textbox {\n    width: 100%;\n    padding: 1.25rem;\n    margin-bottom: 1.5rem;\n  }\n\n  .color-textbox-title{\n    font-size: 2rem;\n    margin-bottom: 1.5rem;\n    padding: 0rem;\n  }\n\n  .color-textbox-text{\n    font-size: 1.5rem;\n    padding: 0rem;\n  }\n\n}\n\n/* Tablet */\n@media only screen and (min-width: 480px) and (max-width: 540px) {\n  .color-textbox-title{\n    font-size: 1.5rem;\n    padding: 2.25rem 0rem 0em 0rem;\n  }\n\n  .color-textbox-text{\n    font-size: 1.4rem;\n    padding: 1rem 5rem 0rem 5rem;\n  }\n\n  .toc-content {\n    width: 100%;\n  }\n}\n\n@media only screen and (min-width: 541px) and (max-width: 649px) {\n  .color-textbox-title{\n    font-size: 2rem;\n    padding: 2.5rem 0rem 0em 0rem;\n  }\n\n  .color-textbox-text{\n    font-size: 1.75rem;\n    padding: 1rem 5rem 0rem 5rem;\n  }\n\n  .toc-content {\n    width: 100%;\n  }\n}\n\n\n@media only screen and (min-width: 650px) and (max-width: 767px) {\n  .color-textbox-title{\n    font-size: 2rem;\n    padding: 4rem 0rem 0em 0rem;\n  }\n\n  .color-textbox-text{\n    font-size: 2rem;\n    padding: 1rem 5rem 0rem 5rem;\n  }\n\n  .toc-content {\n    width: 100%;\n  }\n}\n\n\n/*iPad portrait*/\n\n@media only screen and (min-width: 768px) and (max-width: 1023px) {\n  .color-textbox-title{\n    font-size: 2.35rem;\n    padding: 6rem 0rem 0rem 0rem;\n  }\n\n  .color-textbox-text{\n    font-size: 2.25rem;\n    padding: 1rem 5rem 0rem 5rem;\n  }\n\n}\n\n\n/*iPad Pro portarit */\n\n@media only screen and (min-width: 1024px) and (max-width: 1225px) {\n  .color-textbox-title{\n    font-size: 3rem;\n    padding: 6rem 0rem 0rem 0rem;\n  }\n\n  .color-textbox-text{\n    font-size: 3rem;\n    padding: 1rem 5rem 0rem 5rem;\n  }\n\n}\n\n\n/* ABOUT THE AUTHORS CSS */\n\n.image-text-about-the-authors {\n  top:44%;\n}\n\n.about-the-author-color-textbox {\n  width:33.3%;\n  background: white;\n  color: black;\n  text-align: center;\n  font-weight: normal;\n  margin-bottom: 1em;\n  margin: 0 auto;\n}\n\n.about-the-author-color-textbox-title {\n  text-align: center;\n  font-weight: bold;\n  font-size: 2.2rem;\n  padding: 4rem 3rem 0rem 3rem;\n  margin: 0 auto;\n}\n\n.about-the-author-color-textbox-text {\n  font-size: 2rem;\n  padding: 3rem 8rem 0rem 8rem;\n  font-weight: normal;\n  text-transform: normal;\n}\n\n.about-the-author-subimage {\n  width: 40%;\n  margin: 0 auto;\n}\n\n@media only screen and (max-width: 768px) {\n  \n.about-the-author-color-textbox {\n  width:100%;\n}\n  \n  .about-the-author-color-textbox-text {\n    min-width: 300px;\n    padding: 3rem 2rem 0rem 2rem;\n\n}\n\n.about-the-author-color-textbox-title {\n  text-align: center;\n  font-weight: bold;\n  font-size: 2.2rem;\n  padding: 8rem 3rem 0rem 3rem;\n  max-width: 100%;\n  min-width: 300px;\n}\n\n.about-the-author-subimage {\n  min-width: 300px;\n  margin: 0 auto;\n}\n  \n  .back-panel-contents {\n  width: 100%;\n  display: flex;\n  flex-wrap: wrap;\n  margin: 0 auto;\n}\n  \n  .lil-image-text {\n    font-size: 15px;\n  }\n\n  .big-image-text {\n    line-height: normal;\n    font-size: 31px;\n  }\n\n  .col-xs-12.col-sm-4.col-md-3 {\n    display: none !important;\n  }\n}\n\n\n/* New hero images */\n\n.hero-container {\n  height: 550px;\n  background-color: #1b3a42;\n  margin-bottom: 2em;\n}\n\n.hero-image {\n    max-width: 1800px;\n    margin-top: -66px !important;\n    margin-left: auto;\n    margin-right: auto;\n    position: relative;\n    margin-bottom: 2em;\n    background-image: linear-gradient( rgba(0,0,0,.2), rgba(0,0,0,.2) ),\n    url(../images/big_image/Log.jpg); /* liner gradient tints the image darker for readability*/\n    height: 550px;\n    background-size: cover;\n    background-color: #1b3a42;\n    background-position: center bottom;\n    display: flex; /* Change to `display: none` for no hero image */\n    justify-content: center;\n    align-items: center;\n}\n\n\n.hero-image-text-little {\n  position: relative;\n  font-family: 'Lora', serif;\n      font-size: 24px;\n      font-weight: 500;\n      line-height: 1.5em;\n      letter-spacing: 1px;\n      font-style: italic;\n      font-weight: normal;\n      color: #fff;\n      text-align: center;\n}\n\n.hero-image-text-big {\n  position: relative;\n  letter-spacing: 0.065em;\n  line-height: 1em;\n  font-size: 68px;\n  text-transform: uppercase;\n  text-align: center;\n  display: block;\n  color: #fff;\n  margin-bottom: 2.5rem;\n  font-weight: bold;\n}\n\n\n@media only screen and (max-width: 770px) {\n  .hero-image-text-big{\n    font-size: 3rem;\n    padding: 2rem 0rem 0rem 0rem;\n  }\n\n  .hero-image-text-little{\n    font-size: 19px;\n  }\n  \n  .hero-image {\n    max-width: 770px;\n    height: 300px;\n  }\n  \n    .hero-container {\n    height: 300px;\n    background-color: #1b3a42;\n    margin-bottom: 1em;\n  }\n  \n.toc-content.col-xs-12.col-sm-8.col-md-9{\n  width: 100%;\n  padding-left: 1px;\n  padding-right: 1px;\n}\n  \n\n}\n\n/*------------iframe-----------------*/\n\niframe.interactive {\n    min-width: 100%;\n    margin: 0 auto;\n  }\n  \n/*----------- video for gif----------- */\n\nvideo {\n  width: 100%;\n}\n\n.small_vid {\n  width:600px;\n  display: block;\n  margin: 0 auto;\n}\n\n/*----------DIV TIPS------------*/\n\ndiv.note, div.tip, div.gotcha, div.design, div.hat, div.obj{\n  border: 4px #c5ede2;\n  border-style: solid;\n  padding: 1em;\n  margin: 1em 0;\n  \n  /*uncomment for icon */\n  \n  /* padding-left: 100px; \n  background-size: 70px; \n  background-repeat: no-repeat;\n  background-position: 15px center; */\n  min-height: 120px;\n  color: #638f9d;\n  background-color: #ffffff;\n}\n\ndiv.obj {\n  font-size: 16px;\n  line-height: 1.5em;\n  /*background-image: url(\"../images/arrow.png\");*/\n}\n\ndiv.obj>p:first-child {\n  padding-top: 0;\n  margin-top: 0 !important;\n  font-family: \"Source Sans Pro\";\n  text-transform: uppercase;\n  letter-spacing: 0.1em;\n}\n\n"
  },
  {
    "path": "docs/00_narrative.html",
    "content": "<!DOCTYPE html>\n\n<html>\n\n<head>\n\n<meta charset=\"utf-8\" />\n<meta name=\"generator\" content=\"pandoc\" />\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=EDGE\" />\n\n\n\n\n<title>History of Teacup Giraffes</title>\n\n<script src=\"site_libs/jquery-3.6.0/jquery-3.6.0.min.js\"></script>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n<link href=\"site_libs/bootstrap-3.3.5/css/cosmo.min.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/bootstrap-3.3.5/js/bootstrap.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/html5shiv.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/respond.min.js\"></script>\n<style>h1 {font-size: 34px;}\n       h1.title {font-size: 38px;}\n       h2 {font-size: 30px;}\n       h3 {font-size: 24px;}\n       h4 {font-size: 18px;}\n       h5 {font-size: 16px;}\n       h6 {font-size: 12px;}\n       code {color: inherit; background-color: rgba(0, 0, 0, 0.04);}\n       pre:not([class]) { background-color: white }</style>\n<script src=\"site_libs/navigation-1.1/tabsets.js\"></script>\n<link href=\"site_libs/highlightjs-9.12.0/default.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/highlightjs-9.12.0/highlight.js\"></script>\n<link href=\"site_libs/font-awesome-5.1.0/css/all.css\" rel=\"stylesheet\" />\n<link href=\"site_libs/font-awesome-5.1.0/css/v4-shims.css\" rel=\"stylesheet\" />\n<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t\n\t\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/landing.css\" rel=\"stylesheet\">\n  <link href=\"assets/mobile_narrative.css\" rel=\"stylesheet\">\n</head>\n\n<body>\n  \n  <div class=\"narrative-container\">\n    <div class = \"slider\">\n      <div id = slide0 class = \"slide-content\">\n        <div class = \"narrative-cover\">\n          <img src=\"images/00_narrative/cover.jpg\">\n        </div>\n        <div class = \"narrative-text\"> \n          <p>Teacup giraffes were first discovered by the Swedish naturalist and priest Olof Torén, an apostle of Carl Linnaeus, during his travels on the Swedish East India Company ship <i>Hoppet</i>. Departing from the port of Gothenburg, <i>Hoppet</i> set sail on the 26th of January 1748, an extraordinarily gloomy day when sea and sky was a single ashen entity and winds from the northwest brought a snow-mixed horizontal rain. The mood onboard the ship was cheerful nonetheless, as the crew dreamt of the transparent waters of southern seas, filled with colorful beings and stories to bring back home.</p>\n          \n<p>One suffocating evening in July 1748, shortly after <i>Hoppet</i> had rounded the Cape of Good Hope and sailed east of Madagascar, captain Erik Moreen was attacked by a headache so vicious it made him seasick for the first time since the beginning of his nautical career. Desperate to ease the pain he called on the ship surgeon, a crooked man who spent most of his time investigating fungi in the deepest corners of the ship’s bilge where the air tasted like year old bread.</p>\n\n          <p> <img class = \"narrative-illo-small\" align = \"left\" src=\"images/00_narrative/Vial.jpg\"> The surgeon brought a small bottle containing a beverage brewed of equal parts fermented goat milk and a distillate of mushrooms which, when dissolved, produced such a colorful luminance that the use of protective goggles was necessary to prevent achromatopsia. Ignoring the surgeon’s recommendation to limit the dose to a few drops of the brew, the captain emptied the bottle in one gulp and for a few moments lost all senses while the hair on the back of his head spun into permanent curls. </p>\n          \n          <p>Although the pain subsided within less than thirty minutes, this was just the beginning of a nightmarish intoxication. The captain heard sirens sing lost lullabies from all directions, saw the kraken swallow the moon and spit it out as thousands of stars, and was convinced that all of his crew had turned into sharp-stemmed ferns, stationary and threatening to amputate him with every wavering step he took across the deck. During this confusion the captain tied himself to the fore-mast, prepared to fall head first into the flaming depths of the underworld. He was standing there as the sun rose, as his inebriation started to fade into melancholy, and saw two small islands appear on the horizon. </p>\n          \n          <p> <img class = \"narrative-illo-small\" align = \"right\" src=\"images/00_narrative/Froth.jpg\">The ocean then formed a frothy path in front of Erik Moreen, from the bow to the two islands. In the captain’s still quivering mind time seemed to move backwards, and he tried to find solace from the rootlessness of this experience by searching his mind for pleasant memories. The path suddenly seemed indistinguishable from the road connecting the port of Gothenburg to his home in <i>Guldheden</i>, many nautical miles away. He even swore he could see a colony of black-backed gulls circling in the sky above him, establishing his notion that <i>Hoppet</i> somehow had made it back to the north. Confident he would soon be reunited with his wife, the captain gave orders to sail in the direction of the islands and would not listen to any objections until the ship was stranded on a sandbank no more than a stone’s throw away from its destination. Although Erik Moreen recovered from the surgeon’s medicament after a few days, the crew’s trust in him was not as easily restored and he was temporarily relieved of his duties as captain. </p>\n          \n          <p>During the days it took the crew to dig <i>Hoppet</i> out of the sand, naturalist and ship priest Olof Torén visited the islands a few times but was apparently not very impressed by this occurrence. In his journals from this time, only one sentence makes mention of this part of the voyage: </p>\n          \n          <p class=\"blockquote\">Northeast of Madagascar lie two small islands not worth visiting for any other reason than the fact that they are inhabited by small, quadrupedal mammals with relatively long necks.</p>\n        </div>\n      </div>\n      \n      <div id = slide6  class=\"slide-content\">\n        <div class =\"narrative-text\"> \n          <p>In line with the often undemocratic nature of human experiences, Olof Torén would encounter teacup giraffes twice over the course of a few years, while it would take centuries after they were first discovered before anybody else did. The second time Olof Torén visited the two small islands where teacup giraffes still live today, it was during his second and last intercontinental journey at sea, this time on the Swedish East India Company ship <i>Götha Leijon</i>. In 1750 he found himself back in the cerulean waters northeast of Madagascar. Again, it was an event characterized by pain that would bring the naturalist and ship priest to the teacup giraffe islands, but pain of the soul rather than the body. </p>\n          \n          <p> <img class=\"narrative-illo-small\" align = \"left\" src=\"images/00_narrative/Ships2.jpg\"> In the evenings, Olof Torén and supercargo Anders Gotheen, a man who would not hesitate to let people know his personal values aligned perfectly with the new ideals of the intellectual revolution today known as the <i>Enlightenment</i>, enjoyed sitting down for a game of backgammon on the main deck. Or rather, Olof Torén enjoyed the game while Anders Gotheen, as he liked to say, enjoyed engaging in dialectic discourse while playing a game only slightly distracting since winning after all was mostly a question of luck. Olof Torén had noticed that conversations with Anders Gotheen often made him worried about things he had not previously contemplated and was therefore less amused by the dialectic aspect of their game nights.  </p>\n          \n          <p>This particular evening it seemed Anders Gotheen would definitely lose. He watched Olof Torén bear off three of his white checkers and as he collected the dice supercargo Gotheen turned to the naturalist.</p>\n          <p class=\"dialogue\">– For the intellectually brave and honest, he said, no comfort can be found in the concept of infinity. Everything typical of human life, he continued, is characterized by the notion of a finite world, and therefore a free human mind can never truly be consoled by the appreciation of endlessness. He paused and drank some wine from a metal cup. </p>\n          <p class=\"dialogue\">– This is also true for the afterlife, he then added. </p>\n          <p> <img class=\"narrative-illo-small\" align = \"right\" src=\"images/00_narrative/Fireside.jpg\"> The reason why, as Olof Torén would explain it a few days later during a one-way conversation with a group of patiently listening teacup giraffes, what Anders Gotheen said that evening had so effectively shaken the foundation of his world view, was not because it directly challenged his faith. No, it was the fact that what Anders Gotheen had said instead questioned how much existential relief any belief could offer whatsoever that resulted in a detrimental blow to his conviction.</p>\n          \n          <p>For what felt like a very long time, Olof Torén listened to Anders Gotheen in detail describe the philosophical abyss all perspectives on <i>life after death</i> inescapably lead to. He started to feel lightheaded and ended the game early so that he could climb up to the upper deck to get some fresh air. It was a clear night and the sky seemed filled with an infinite number of stars. His head was now spinning, he lost his balance, made a futile attempt to reach for the shrouds, but inevitably fell overboard.</p>\n          \n          <p>Olof Torén treaded water all night, motivated by his new fear of death. When the sun rose he for a moment forgot about the thoughts that had been plaguing him during those long hours in the dark water, because the early morning light draped the world in a calming emerald luster. He could now see he had drifted to only a yards away from the sandbank where <i>Hoppet</i> had been stranded a few years earlier. The sunlight was filtered through the foliage of a thousand palm trees on the islands between him and the rising sun and this is what created the green morning experience. He swam to the island closest to him and passed out on the beach, exhausted both physically and mentally. </p>\n          \n          <p>When Olof Torén woke up the sun was about to set. As he slowly opened his eyes he saw a group of teacup giraffes walking towards him on the beach, and briefly thought they had come to welcome him back to the islands. But the small giraffe caravan walked past him and continued towards a large flat stone projecting out of the sand not far from where he was lying. In the light of dusk, everything on the beach seemed to cast extraordinarily long shadows and from where Olof Torén was positioned the stone looked enormous. The shape made him think of <i>runestones</i>, rocks Vikings would raise and decorate with runic inscriptions, but the size more resembled the <i>moai</i> stone statues of Easter island. The teacup giraffes took turns standing in front of the stone observing a large silhouette appear on the granite surface ahead. They seemed infatuated by watching their shadow twin move as they moved, grasping for palm tree leaves non-shadow teacup giraffes would never reach, and making low pitched vocal sounds reminding Olof Torén of larger animals. It was as if these giraffes knew about their unusually small stature and used the evening light to pretend they were tall, like their full-size relatives on the African mainland.<img class= \"narrative-illo-big\" src=\"images/00_narrative/ShadowPlay.jpg\"></p>\n          \n          <p>This time around Olof Torén spent two days in the company of teacup giraffes and grew to appreciate their cheerful demeanor, social competence and general friendliness. When not playing with shadows, chasing fireflies or resting in the crisp air next to a waterfall, they foraged the jungle for celery which seemed to be their favorite food. Time passed quickly on the islands because the teacup giraffes had an almost endless repertoire of delightful behaviors and at times it even appeared they adapted their conduct to what Olof Torén showed appreciation for.</p>\n          \n          <p><img class=\"narrative-illo-big\" src=\"images/00_narrative/Swing.jpg\"></p>\n          <p>On the Swedish East India Company ship <i>Götha Leijon</i>, the consensus was that Olof Torén was unlikely to still be alive, but most of the crew were god fearing men and the idea of leaving a priest to drown without a convincing rescue attempt seemed like the type of thing the almighty would never forget. Some of the them had been present for the Erik Moreen debacle a few years earlier and remembered the location of the islands from this incident.</p>\n          \n          <p>Olof Torén saw the ship approach the islands from far away. After two days on the teacup giraffe diet he was famished because the more celery he ate the hungrier he became. Longing for the salted meats that made up a large part of the meals onboard Swedish East India Company ships, he said goodbye to his new four-legged friends and waded out in the water to meet the rowboat launched to pick him up. As he climbed onboard he turned around to catch a last glimpse of the giraffes and saw them gather on the beach for another evening shadow play ritual.</p>\n          \n          <p>Back on <i>Götha Leijon</i>, Olof Torén wrote down all the details of teacup giraffes’ lives he could remember. During a game of backgammon, he tried to describe their unusual physique and social behaviors, but was soon interrupted by Anders Gotheen who said</p>\n          <p class=\"dialogue\"> – The human mind works in mysterious ways when deprived of energy</p>\n        </div>\n      </div>\n      \n      <div id = slide10  class=\"slide-content\">\n        <div class = \"narrative-text\"> \n          <p>Olof Torén would in fact have a hard time convincing friends and colleagues, people he met as <i>Götha Leijon</i> sailed to Surat and Canton, as well as Carl Linnaeus, that his accounts of the teacup giraffe islands reflected reality. Maybe the feeling of not being trusted contributed to why his health started to deteriorate after his return to Sweden in 1752. On the 3rd of May 1753, a few months before his death, he wrote a last letter to Linnaeus. On the final page of this letter he drew a picture of two giraffes, one short and one tall. They were standing in front of a pair of heavy church doors and both their shadows stretched far above the tower and into the sky. The short giraffe, a female with pointy ears, looked like she was smiling.</p>\n          \n          <p>Even today, when there are few true mysteries left in the world and all corners of the globe have been so carefully measured and illuminated that no colorless spots stain the pages of the modern atlas, teacup giraffes remain a relatively well kept secret. These animals were briefly mentioned in 9th edition of Carl Linnaeus’ <i>Systema Naturae</i> and given the Latin name <i>Giraffa minima</i>, but were removed before printing the 10th edition because of doubts about the trustworthiness of Olof Torén’s descriptions. <img class=\"narrative-illo-200\" align = \"right\" src=\"images/00_narrative/backpack_350px.jpg\">No songs have been sung about them, Rudyard Kipling was oblivious to their existence when writing the <i>Jungle Book</i>, schoolchildren have never wondered how many teacup giraffes they could fit in a backpack, and they were never made famous by a Twinings advertisement campaign.</p>\n        \n          <p> But in December 2018, the <i>Olof Torén foundation</i> in Uppsala decided it was time that teacup giraffes were given a more prominent place in the world of zoology. The foundation set aside money for a stipend and requested applications from “young aspiring scientists devoted to conducting old-school observational field work and interested in spending time on remote islands in the Indian Ocean studying possibly the least known mammal on the planet”. <img class=\"narrative-illo-small\" align = \"left\" src=\"images/00_narrative/uppsala.jpg\"> In the announcement they also wrote “One crucial piece of information missing about teacup giraffes regards their physique, because although it is known that they are small, no reliable records of their exact size can be found anywhere”. And this is true because people falling overboard rarely bring measuring equipment. </p>\n          </div>\n        </div>\n      \n        <div class = \"end-text\">The End</div>\n    </div>\n  </div>\n</body>\n\n<style type=\"text/css\">\n  code{white-space: pre-wrap;}\n  span.smallcaps{font-variant: small-caps;}\n  span.underline{text-decoration: underline;}\n  div.column{display: inline-block; vertical-align: top; width: 50%;}\n  div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}\n  ul.task-list{list-style: none;}\n    </style>\n\n<style type=\"text/css\">code{white-space: pre;}</style>\n<script type=\"text/javascript\">\nif (window.hljs) {\n  hljs.configure({languages: []});\n  hljs.initHighlightingOnLoad();\n  if (document.readyState && document.readyState === \"complete\") {\n    window.setTimeout(function() { hljs.initHighlighting(); }, 0);\n  }\n}\n</script>\n\n\n\n\n\n\n\n\n\n<style type = \"text/css\">\n.main-container {\n  max-width: 940px;\n  margin-left: auto;\n  margin-right: auto;\n}\nimg {\n  max-width:100%;\n}\n.tabbed-pane {\n  padding-top: 12px;\n}\n.html-widget {\n  margin-bottom: 20px;\n}\nbutton.code-folding-btn:focus {\n  outline: none;\n}\nsummary {\n  display: list-item;\n}\ndetails > summary > p:only-child {\n  display: inline;\n}\npre code {\n  padding: 0;\n}\n</style>\n\n\n<style type=\"text/css\">\n.dropdown-submenu {\n  position: relative;\n}\n.dropdown-submenu>.dropdown-menu {\n  top: 0;\n  left: 100%;\n  margin-top: -6px;\n  margin-left: -1px;\n  border-radius: 0 6px 6px 6px;\n}\n.dropdown-submenu:hover>.dropdown-menu {\n  display: block;\n}\n.dropdown-submenu>a:after {\n  display: block;\n  content: \" \";\n  float: right;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n  border-width: 5px 0 5px 5px;\n  border-left-color: #cccccc;\n  margin-top: 5px;\n  margin-right: -10px;\n}\n.dropdown-submenu:hover>a:after {\n  border-left-color: #adb5bd;\n}\n.dropdown-submenu.pull-left {\n  float: none;\n}\n.dropdown-submenu.pull-left>.dropdown-menu {\n  left: -100%;\n  margin-left: 10px;\n  border-radius: 6px 0 6px 6px;\n}\n</style>\n\n<script type=\"text/javascript\">\n// manage active state of menu based on current page\n$(document).ready(function () {\n  // active menu anchor\n  href = window.location.pathname\n  href = href.substr(href.lastIndexOf('/') + 1)\n  if (href === \"\")\n    href = \"index.html\";\n  var menuAnchor = $('a[href=\"' + href + '\"]');\n\n  // mark it active\n  menuAnchor.tab('show');\n\n  // if it's got a parent navbar menu mark it active as well\n  menuAnchor.closest('li.dropdown').addClass('active');\n\n  // Navbar adjustments\n  var navHeight = $(\".navbar\").first().height() + 15;\n  var style = document.createElement('style');\n  var pt = \"padding-top: \" + navHeight + \"px; \";\n  var mt = \"margin-top: -\" + navHeight + \"px; \";\n  var css = \"\";\n  // offset scroll position for anchor links (for fixed navbar)\n  for (var i = 1; i <= 6; i++) {\n    css += \".section h\" + i + \"{ \" + pt + mt + \"}\\n\";\n  }\n  style.innerHTML = \"body {\" + pt + \"padding-bottom: 40px; }\\n\" + css;\n  document.head.appendChild(style);\n});\n</script>\n\n<!-- tabsets -->\n\n<style type=\"text/css\">\n.tabset-dropdown > .nav-tabs {\n  display: inline-table;\n  max-height: 500px;\n  min-height: 44px;\n  overflow-y: auto;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n}\n\n.tabset-dropdown > .nav-tabs > li.active:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {\n  content: \"&#xe258;\";\n  border: none;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs > li.active {\n  display: block;\n}\n\n.tabset-dropdown > .nav-tabs > li > a,\n.tabset-dropdown > .nav-tabs > li > a:focus,\n.tabset-dropdown > .nav-tabs > li > a:hover {\n  border: none;\n  display: inline-block;\n  border-radius: 4px;\n  background-color: transparent;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li {\n  display: block;\n  float: none;\n}\n\n.tabset-dropdown > .nav-tabs > li {\n  display: none;\n}\n</style>\n\n<!-- code folding -->\n\n\n\n\n</head>\n\n<body>\n\n\n<div class=\"container-fluid main-container\">\n\n\n\n\n<div class=\"navbar navbar-default  navbar-fixed-top\" role=\"navigation\">\n  <div class=\"container\">\n    <div class=\"navbar-header\">\n      <button type=\"button\" class=\"navbar-toggle collapsed\" data-toggle=\"collapse\" data-bs-toggle=\"collapse\" data-target=\"#navbar\" data-bs-target=\"#navbar\">\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n      </button>\n      <a class=\"navbar-brand\" href=\"index.html\"> </a>\n    </div>\n    <div id=\"navbar\" class=\"navbar-collapse collapse\">\n      <ul class=\"nav navbar-nav\">\n        <li>\n  <a href=\"index.html\">\n    <span class=\"fa fa-home\"></span>\n     \n  </a>\n</li>\n<li>\n  <a href=\"00_narrative.html\">History of Teacup Giraffes</a>\n</li>\n<li class=\"dropdown\">\n  <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\" role=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\">\n    Modules\n     \n    <span class=\"caret\"></span>\n  </a>\n  <ul class=\"dropdown-menu\" role=\"menu\">\n    <li>\n      <a href=\"01_introToR.html\">Intro to R</a>\n    </li>\n    <li>\n      <a href=\"02_bellCurve.html\">Intro to the Normal Distribution</a>\n    </li>\n    <li>\n      <a href=\"03_mean.html\">Mean, Median, Mode</a>\n    </li>\n    <li>\n      <a href=\"04_variance.html\">Spread of the Data</a>\n    </li>\n    <li>\n      <a href=\"05_correlation.html\">Covariance and Correlation</a>\n    </li>\n    <li>\n      <a href=\"06_standardError.html\">Standard Error</a>\n    </li>\n  </ul>\n</li>\n<li>\n  <a href=\"aboutTheAuthors.html\">About the Authors</a>\n</li>\n      </ul>\n      <ul class=\"nav navbar-nav navbar-right\">\n        <li>\n  <a href=\"https://github.com/tinystats/teacups-giraffes-and-statistics\">\n    <span class=\"fa fa-github\"></span>\n     \n  </a>\n</li>\n      </ul>\n    </div><!--/.nav-collapse -->\n  </div><!--/.container -->\n</div><!--/.navbar -->\n\n<div id=\"header\">\n\n\n\n<h1 class=\"title toc-ignore\">History of Teacup Giraffes</h1>\n\n</div>\n\n\n\n\n\n\n\n</div>\n\n<script>\n\n// add bootstrap table styles to pandoc tables\nfunction bootstrapStylePandocTables() {\n  $('tr.odd').parent('tbody').parent('table').addClass('table table-condensed');\n}\n$(document).ready(function () {\n  bootstrapStylePandocTables();\n});\n\n\n</script>\n\n<!-- tabsets -->\n\n<script>\n$(document).ready(function () {\n  window.buildTabsets(\"TOC\");\n});\n\n$(document).ready(function () {\n  $('.tabset-dropdown > .nav-tabs > li').click(function () {\n    $(this).parent().toggleClass('nav-tabs-open');\n  });\n});\n</script>\n\n<!-- code folding -->\n\n\n<!-- dynamically load mathjax for compatibility with self-contained -->\n<script>\n  (function () {\n    var script = document.createElement(\"script\");\n    script.type = \"text/javascript\";\n    script.src  = \"https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML\";\n    document.getElementsByTagName(\"head\")[0].appendChild(script);\n  })();\n</script>\n\n</body>\n</html>\n"
  },
  {
    "path": "docs/00_narrative.utf8.html",
    "content": "<!DOCTYPE html>\n\n<html>\n\n<head>\n\n<meta charset=\"utf-8\" />\n<meta name=\"generator\" content=\"pandoc\" />\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=EDGE\" />\n\n\n\n\n<title>History of Teacup Giraffes</title>\n\n<script src=\"site_libs/jquery-3.6.0/jquery-3.6.0.min.js\"></script>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n<link href=\"site_libs/bootstrap-3.3.5/css/cosmo.min.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/bootstrap-3.3.5/js/bootstrap.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/html5shiv.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/respond.min.js\"></script>\n<style>h1 {font-size: 34px;}\n       h1.title {font-size: 38px;}\n       h2 {font-size: 30px;}\n       h3 {font-size: 24px;}\n       h4 {font-size: 18px;}\n       h5 {font-size: 16px;}\n       h6 {font-size: 12px;}\n       code {color: inherit; background-color: rgba(0, 0, 0, 0.04);}\n       pre:not([class]) { background-color: white }</style>\n<script src=\"site_libs/navigation-1.1/tabsets.js\"></script>\n<link href=\"site_libs/highlightjs-9.12.0/default.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/highlightjs-9.12.0/highlight.js\"></script>\n<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t\n\t\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/landing.css\" rel=\"stylesheet\">\n  <link href=\"assets/mobile_narrative.css\" rel=\"stylesheet\">\n</head>\n\n<body>\n  \n  <div class=\"narrative-container\">\n    <div class = \"slider\">\n      <div id = slide0 class = \"slide-content\">\n        <div class = \"narrative-cover\">\n          <img src=\"images/00_narrative/cover.jpg\">\n        </div>\n        <div class = \"narrative-text\"> \n          <p>Teacup giraffes were first discovered by the Swedish naturalist and priest Olof Torén, an apostle of Carl Linnaeus, during his travels on the Swedish East India Company ship <i>Hoppet</i>. Departing from the port of Gothenburg, <i>Hoppet</i> set sail on the 26th of January 1748, an extraordinarily gloomy day when sea and sky was a single ashen entity and winds from the northwest brought a snow-mixed horizontal rain. The mood onboard the ship was cheerful nonetheless, as the crew dreamt of the transparent waters of southern seas, filled with colorful beings and stories to bring back home.</p>\n          \n<p>One suffocating evening in July 1748, shortly after <i>Hoppet</i> had rounded the Cape of Good Hope and sailed east of Madagascar, captain Erik Moreen was attacked by a headache so vicious it made him seasick for the first time since the beginning of his nautical career. Desperate to ease the pain he called on the ship surgeon, a crooked man who spent most of his time investigating fungi in the deepest corners of the ship’s bilge where the air tasted like year old bread.</p>\n\n          <p> <img class = \"narrative-illo-small\" align = \"left\" src=\"images/00_narrative/Vial.jpg\"> The surgeon brought a small bottle containing a beverage brewed of equal parts fermented goat milk and a distillate of mushrooms which, when dissolved, produced such a colorful luminance that the use of protective goggles was necessary to prevent achromatopsia. Ignoring the surgeon’s recommendation to limit the dose to a few drops of the brew, the captain emptied the bottle in one gulp and for a few moments lost all senses while the hair on the back of his head spun into permanent curls. </p>\n          \n          <p>Although the pain subsided within less than thirty minutes, this was just the beginning of a nightmarish intoxication. The captain heard sirens sing lost lullabies from all directions, saw the kraken swallow the moon and spit it out as thousands of stars, and was convinced that all of his crew had turned into sharp-stemmed ferns, stationary and threatening to amputate him with every wavering step he took across the deck. During this confusion the captain tied himself to the fore-mast, prepared to fall head first into the flaming depths of the underworld. He was standing there as the sun rose, as his inebriation started to fade into melancholy, and saw two small islands appear on the horizon. </p>\n          \n          <p> <img class = \"narrative-illo-small\" align = \"right\" src=\"images/00_narrative/Froth.jpg\">The ocean then formed a frothy path in front of Erik Moreen, from the bow to the two islands. In the captain’s still quivering mind time seemed to move backwards, and he tried to find solace from the rootlessness of this experience by searching his mind for pleasant memories. The path suddenly seemed indistinguishable from the road connecting the port of Gothenburg to his home in <i>Guldheden</i>, many nautical miles away. He even swore he could see a colony of black-backed gulls circling in the sky above him, establishing his notion that <i>Hoppet</i> somehow had made it back to the north. Confident he would soon be reunited with his wife, the captain gave orders to sail in the direction of the islands and would not listen to any objections until the ship was stranded on a sandbank no more than a stone’s throw away from its destination. Although Erik Moreen recovered from the surgeon’s medicament after a few days, the crew’s trust in him was not as easily restored and he was temporarily relieved of his duties as captain. </p>\n          \n          <p>During the days it took the crew to dig <i>Hoppet</i> out of the sand, naturalist and ship priest Olof Torén visited the islands a few times but was apparently not very impressed by this occurrence. In his journals from this time, only one sentence makes mention of this part of the voyage: </p>\n          \n          <p class=\"blockquote\">Northeast of Madagascar lie two small islands not worth visiting for any other reason than the fact that they are inhabited by small, quadrupedal mammals with relatively long necks.</p>\n        </div>\n      </div>\n      \n      <div id = slide6  class=\"slide-content\">\n        <div class =\"narrative-text\"> \n          <p>In line with the often undemocratic nature of human experiences, Olof Torén would encounter teacup giraffes twice over the course of a few years, while it would take centuries after they were first discovered before anybody else did. The second time Olof Torén visited the two small islands where teacup giraffes still live today, it was during his second and last intercontinental journey at sea, this time on the Swedish East India Company ship <i>Götha Leijon</i>. In 1750 he found himself back in the cerulean waters northeast of Madagascar. Again, it was an event characterized by pain that would bring the naturalist and ship priest to the teacup giraffe islands, but pain of the soul rather than the body. </p>\n          \n          <p> <img class=\"narrative-illo-small\" align = \"left\" src=\"images/00_narrative/Ships2.jpg\"> In the evenings, Olof Torén and supercargo Anders Gotheen, a man who would not hesitate to let people know his personal values aligned perfectly with the new ideals of the intellectual revolution today known as the <i>Enlightenment</i>, enjoyed sitting down for a game of backgammon on the main deck. Or rather, Olof Torén enjoyed the game while Anders Gotheen, as he liked to say, enjoyed engaging in dialectic discourse while playing a game only slightly distracting since winning after all was mostly a question of luck. Olof Torén had noticed that conversations with Anders Gotheen often made him worried about things he had not previously contemplated and was therefore less amused by the dialectic aspect of their game nights.  </p>\n          \n          <p>This particular evening it seemed Anders Gotheen would definitely lose. He watched Olof Torén bear off three of his white checkers and as he collected the dice supercargo Gotheen turned to the naturalist.</p>\n          <p class=\"dialogue\">– For the intellectually brave and honest, he said, no comfort can be found in the concept of infinity. Everything typical of human life, he continued, is characterized by the notion of a finite world, and therefore a free human mind can never truly be consoled by the appreciation of endlessness. He paused and drank some wine from a metal cup. </p>\n          <p class=\"dialogue\">– This is also true for the afterlife, he then added. </p>\n          <p> <img class=\"narrative-illo-small\" align = \"right\" src=\"images/00_narrative/Fireside.jpg\"> The reason why, as Olof Torén would explain it a few days later during a one-way conversation with a group of patiently listening teacup giraffes, what Anders Gotheen said that evening had so effectively shaken the foundation of his world view, was not because it directly challenged his faith. No, it was the fact that what Anders Gotheen had said instead questioned how much existential relief any belief could offer whatsoever that resulted in a detrimental blow to his conviction.</p>\n          \n          <p>For what felt like a very long time, Olof Torén listened to Anders Gotheen in detail describe the philosophical abyss all perspectives on <i>life after death</i> inescapably lead to. He started to feel lightheaded and ended the game early so that he could climb up to the upper deck to get some fresh air. It was a clear night and the sky seemed filled with an infinite number of stars. His head was now spinning, he lost his balance, made a futile attempt to reach for the shrouds, but inevitably fell overboard.</p>\n          \n          <p>Olof Torén treaded water all night, motivated by his new fear of death. When the sun rose he for a moment forgot about the thoughts that had been plaguing him during those long hours in the dark water, because the early morning light draped the world in a calming emerald luster. He could now see he had drifted to only a yards away from the sandbank where <i>Hoppet</i> had been stranded a few years earlier. The sunlight was filtered through the foliage of a thousand palm trees on the islands between him and the rising sun and this is what created the green morning experience. He swam to the island closest to him and passed out on the beach, exhausted both physically and mentally. </p>\n          \n          <p>When Olof Torén woke up the sun was about to set. As he slowly opened his eyes he saw a group of teacup giraffes walking towards him on the beach, and briefly thought they had come to welcome him back to the islands. But the small giraffe caravan walked past him and continued towards a large flat stone projecting out of the sand not far from where he was lying. In the light of dusk, everything on the beach seemed to cast extraordinarily long shadows and from where Olof Torén was positioned the stone looked enormous. The shape made him think of <i>runestones</i>, rocks Vikings would raise and decorate with runic inscriptions, but the size more resembled the <i>moai</i> stone statues of Easter island. The teacup giraffes took turns standing in front of the stone observing a large silhouette appear on the granite surface ahead. They seemed infatuated by watching their shadow twin move as they moved, grasping for palm tree leaves non-shadow teacup giraffes would never reach, and making low pitched vocal sounds reminding Olof Torén of larger animals. It was as if these giraffes knew about their unusually small stature and used the evening light to pretend they were tall, like their full-size relatives on the African mainland.<img class= \"narrative-illo-big\" src=\"images/00_narrative/ShadowPlay.jpg\"></p>\n          \n          <p>This time around Olof Torén spent two days in the company of teacup giraffes and grew to appreciate their cheerful demeanor, social competence and general friendliness. When not playing with shadows, chasing fireflies or resting in the crisp air next to a waterfall, they foraged the jungle for celery which seemed to be their favorite food. Time passed quickly on the islands because the teacup giraffes had an almost endless repertoire of delightful behaviors and at times it even appeared they adapted their conduct to what Olof Torén showed appreciation for.</p>\n          \n          <p><img class=\"narrative-illo-big\" src=\"images/00_narrative/Swing.jpg\"></p>\n          <p>On the Swedish East India Company ship <i>Götha Leijon</i>, the consensus was that Olof Torén was unlikely to still be alive, but most of the crew were god fearing men and the idea of leaving a priest to drown without a convincing rescue attempt seemed like the type of thing the almighty would never forget. Some of the them had been present for the Erik Moreen debacle a few years earlier and remembered the location of the islands from this incident.</p>\n          \n          <p>Olof Torén saw the ship approach the islands from far away. After two days on the teacup giraffe diet he was famished because the more celery he ate the hungrier he became. Longing for the salted meats that made up a large part of the meals onboard Swedish East India Company ships, he said goodbye to his new four-legged friends and waded out in the water to meet the rowboat launched to pick him up. As he climbed onboard he turned around to catch a last glimpse of the giraffes and saw them gather on the beach for another evening shadow play ritual.</p>\n          \n          <p>Back on <i>Götha Leijon</i>, Olof Torén wrote down all the details of teacup giraffes’ lives he could remember. During a game of backgammon, he tried to describe their unusual physique and social behaviors, but was soon interrupted by Anders Gotheen who said</p>\n          <p class=\"dialogue\"> – The human mind works in mysterious ways when deprived of energy</p>\n        </div>\n      </div>\n      \n      <div id = slide10  class=\"slide-content\">\n        <div class = \"narrative-text\"> \n          <p>Olof Torén would in fact have a hard time convincing friends and colleagues, people he met as <i>Götha Leijon</i> sailed to Surat and Canton, as well as Carl Linnaeus, that his accounts of the teacup giraffe islands reflected reality. Maybe the feeling of not being trusted contributed to why his health started to deteriorate after his return to Sweden in 1752. On the 3rd of May 1753, a few months before his death, he wrote a last letter to Linnaeus. On the final page of this letter he drew a picture of two giraffes, one short and one tall. They were standing in front of a pair of heavy church doors and both their shadows stretched far above the tower and into the sky. The short giraffe, a female with pointy ears, looked like she was smiling.</p>\n          \n          <p>Even today, when there are few true mysteries left in the world and all corners of the globe have been so carefully measured and illuminated that no colorless spots stain the pages of the modern atlas, teacup giraffes remain a relatively well kept secret. These animals were briefly mentioned in 9th edition of Carl Linnaeus’ <i>Systema Naturae</i> and given the Latin name <i>Giraffa minima</i>, but were removed before printing the 10th edition because of doubts about the trustworthiness of Olof Torén’s descriptions. <img class=\"narrative-illo-200\" align = \"right\" src=\"images/00_narrative/backpack_350px.jpg\">No songs have been sung about them, Rudyard Kipling was oblivious to their existence when writing the <i>Jungle Book</i>, schoolchildren have never wondered how many teacup giraffes they could fit in a backpack, and they were never made famous by a Twinings advertisement campaign.</p>\n        \n          <p> But in December 2018, the <i>Olof Torén foundation</i> in Uppsala decided it was time that teacup giraffes were given a more prominent place in the world of zoology. The foundation set aside money for a stipend and requested applications from “young aspiring scientists devoted to conducting old-school observational field work and interested in spending time on remote islands in the Indian Ocean studying possibly the least known mammal on the planet”. <img class=\"narrative-illo-small\" align = \"left\" src=\"images/00_narrative/uppsala.jpg\"> In the announcement they also wrote “One crucial piece of information missing about teacup giraffes regards their physique, because although it is known that they are small, no reliable records of their exact size can be found anywhere”. And this is true because people falling overboard rarely bring measuring equipment. </p>\n          </div>\n        </div>\n      \n        <div class = \"end-text\">The End</div>\n    </div>\n  </div>\n</body>\n\n<style type=\"text/css\">\n  code{white-space: pre-wrap;}\n  span.smallcaps{font-variant: small-caps;}\n  span.underline{text-decoration: underline;}\n  div.column{display: inline-block; vertical-align: top; width: 50%;}\n  div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}\n  ul.task-list{list-style: none;}\n    </style>\n\n<style type=\"text/css\">code{white-space: pre;}</style>\n<script type=\"text/javascript\">\nif (window.hljs) {\n  hljs.configure({languages: []});\n  hljs.initHighlightingOnLoad();\n  if (document.readyState && document.readyState === \"complete\") {\n    window.setTimeout(function() { hljs.initHighlighting(); }, 0);\n  }\n}\n</script>\n\n\n\n\n\n\n\n\n\n<style type = \"text/css\">\n.main-container {\n  max-width: 940px;\n  margin-left: auto;\n  margin-right: auto;\n}\nimg {\n  max-width:100%;\n}\n.tabbed-pane {\n  padding-top: 12px;\n}\n.html-widget {\n  margin-bottom: 20px;\n}\nbutton.code-folding-btn:focus {\n  outline: none;\n}\nsummary {\n  display: list-item;\n}\ndetails > summary > p:only-child {\n  display: inline;\n}\npre code {\n  padding: 0;\n}\n</style>\n\n\n<style type=\"text/css\">\n.dropdown-submenu {\n  position: relative;\n}\n.dropdown-submenu>.dropdown-menu {\n  top: 0;\n  left: 100%;\n  margin-top: -6px;\n  margin-left: -1px;\n  border-radius: 0 6px 6px 6px;\n}\n.dropdown-submenu:hover>.dropdown-menu {\n  display: block;\n}\n.dropdown-submenu>a:after {\n  display: block;\n  content: \" \";\n  float: right;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n  border-width: 5px 0 5px 5px;\n  border-left-color: #cccccc;\n  margin-top: 5px;\n  margin-right: -10px;\n}\n.dropdown-submenu:hover>a:after {\n  border-left-color: #adb5bd;\n}\n.dropdown-submenu.pull-left {\n  float: none;\n}\n.dropdown-submenu.pull-left>.dropdown-menu {\n  left: -100%;\n  margin-left: 10px;\n  border-radius: 6px 0 6px 6px;\n}\n</style>\n\n<script type=\"text/javascript\">\n// manage active state of menu based on current page\n$(document).ready(function () {\n  // active menu anchor\n  href = window.location.pathname\n  href = href.substr(href.lastIndexOf('/') + 1)\n  if (href === \"\")\n    href = \"index.html\";\n  var menuAnchor = $('a[href=\"' + href + '\"]');\n\n  // mark it active\n  menuAnchor.tab('show');\n\n  // if it's got a parent navbar menu mark it active as well\n  menuAnchor.closest('li.dropdown').addClass('active');\n\n  // Navbar adjustments\n  var navHeight = $(\".navbar\").first().height() + 15;\n  var style = document.createElement('style');\n  var pt = \"padding-top: \" + navHeight + \"px; \";\n  var mt = \"margin-top: -\" + navHeight + \"px; \";\n  var css = \"\";\n  // offset scroll position for anchor links (for fixed navbar)\n  for (var i = 1; i <= 6; i++) {\n    css += \".section h\" + i + \"{ \" + pt + mt + \"}\\n\";\n  }\n  style.innerHTML = \"body {\" + pt + \"padding-bottom: 40px; }\\n\" + css;\n  document.head.appendChild(style);\n});\n</script>\n\n<!-- tabsets -->\n\n<style type=\"text/css\">\n.tabset-dropdown > .nav-tabs {\n  display: inline-table;\n  max-height: 500px;\n  min-height: 44px;\n  overflow-y: auto;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n}\n\n.tabset-dropdown > .nav-tabs > li.active:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {\n  content: \"&#xe258;\";\n  border: none;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs > li.active {\n  display: block;\n}\n\n.tabset-dropdown > .nav-tabs > li > a,\n.tabset-dropdown > .nav-tabs > li > a:focus,\n.tabset-dropdown > .nav-tabs > li > a:hover {\n  border: none;\n  display: inline-block;\n  border-radius: 4px;\n  background-color: transparent;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li {\n  display: block;\n  float: none;\n}\n\n.tabset-dropdown > .nav-tabs > li {\n  display: none;\n}\n</style>\n\n<!-- code folding -->\n\n\n\n\n</head>\n\n<body>\n\n\n<div class=\"container-fluid main-container\">\n\n\n\n\n<div class=\"navbar navbar-default  navbar-fixed-top\" role=\"navigation\">\n  <div class=\"container\">\n    <div class=\"navbar-header\">\n      <button type=\"button\" class=\"navbar-toggle collapsed\" data-toggle=\"collapse\" data-bs-toggle=\"collapse\" data-target=\"#navbar\" data-bs-target=\"#navbar\">\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n      </button>\n      <a class=\"navbar-brand\" href=\"index.html\"> </a>\n    </div>\n    <div id=\"navbar\" class=\"navbar-collapse collapse\">\n      <ul class=\"nav navbar-nav\">\n        <li>\n  <a href=\"index.html\">\n    <span class=\"fa fa-home\"></span>\n     \n  </a>\n</li>\n<li>\n  <a href=\"00_narrative.html\">History of Teacup Giraffes</a>\n</li>\n<li class=\"dropdown\">\n  <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\" role=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\">\n    Modules\n     \n    <span class=\"caret\"></span>\n  </a>\n  <ul class=\"dropdown-menu\" role=\"menu\">\n    <li>\n      <a href=\"01_introToR.html\">Intro to R</a>\n    </li>\n    <li>\n      <a href=\"02_bellCurve.html\">Intro to the Normal Distribution</a>\n    </li>\n    <li>\n      <a href=\"03_mean.html\">Mean, Median, Mode</a>\n    </li>\n    <li>\n      <a href=\"04_variance.html\">Spread of the Data</a>\n    </li>\n    <li>\n      <a href=\"05_correlation.html\">Covariance and Correlation</a>\n    </li>\n    <li>\n      <a href=\"06_standardError.html\">Standard Error</a>\n    </li>\n  </ul>\n</li>\n<li>\n  <a href=\"aboutTheAuthors.html\">About the Authors</a>\n</li>\n      </ul>\n      <ul class=\"nav navbar-nav navbar-right\">\n        <li>\n  <a href=\"https://github.com/tinystats/teacups-giraffes-and-statistics\">\n    <span class=\"fa fa-github\"></span>\n     \n  </a>\n</li>\n      </ul>\n    </div><!--/.nav-collapse -->\n  </div><!--/.container -->\n</div><!--/.navbar -->\n\n<div id=\"header\">\n\n\n\n<h1 class=\"title toc-ignore\">History of Teacup Giraffes</h1>\n\n</div>\n\n\n\n\n\n\n\n</div>\n\n<script>\n\n// add bootstrap table styles to pandoc tables\nfunction bootstrapStylePandocTables() {\n  $('tr.odd').parent('tbody').parent('table').addClass('table table-condensed');\n}\n$(document).ready(function () {\n  bootstrapStylePandocTables();\n});\n\n\n</script>\n\n<!-- tabsets -->\n\n<script>\n$(document).ready(function () {\n  window.buildTabsets(\"TOC\");\n});\n\n$(document).ready(function () {\n  $('.tabset-dropdown > .nav-tabs > li').click(function () {\n    $(this).parent().toggleClass('nav-tabs-open');\n  });\n});\n</script>\n\n<!-- code folding -->\n\n\n<!-- dynamically load mathjax for compatibility with self-contained -->\n<script>\n  (function () {\n    var script = document.createElement(\"script\");\n    script.type = \"text/javascript\";\n    script.src  = \"https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML\";\n    document.getElementsByTagName(\"head\")[0].appendChild(script);\n  })();\n</script>\n\n</body>\n</html>\n"
  },
  {
    "path": "docs/01_introToR.html",
    "content": "<!DOCTYPE html>\n\n<html>\n\n<head>\n\n<meta charset=\"utf-8\" />\n<meta name=\"generator\" content=\"pandoc\" />\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=EDGE\" />\n\n\n\n\n<title>Introduction to the R programming language</title>\n\n<script src=\"site_libs/jquery-3.6.0/jquery-3.6.0.min.js\"></script>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n<link href=\"site_libs/bootstrap-3.3.5/css/cosmo.min.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/bootstrap-3.3.5/js/bootstrap.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/html5shiv.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/respond.min.js\"></script>\n<style>h1 {font-size: 34px;}\n       h1.title {font-size: 38px;}\n       h2 {font-size: 30px;}\n       h3 {font-size: 24px;}\n       h4 {font-size: 18px;}\n       h5 {font-size: 16px;}\n       h6 {font-size: 12px;}\n       code {color: inherit; background-color: rgba(0, 0, 0, 0.04);}\n       pre:not([class]) { background-color: white }</style>\n<script src=\"site_libs/jqueryui-1.11.4/jquery-ui.min.js\"></script>\n<link href=\"site_libs/tocify-1.9.1/jquery.tocify.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/tocify-1.9.1/jquery.tocify.js\"></script>\n<script src=\"site_libs/navigation-1.1/tabsets.js\"></script>\n<link href=\"site_libs/highlightjs-9.12.0/default.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/highlightjs-9.12.0/highlight.js\"></script>\n<link href=\"site_libs/font-awesome-5.1.0/css/all.css\" rel=\"stylesheet\" />\n<link href=\"site_libs/font-awesome-5.1.0/css/v4-shims.css\" rel=\"stylesheet\" />\n<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n</head>\n\n  <div class=\"image-descript\"> \n\t\t<img class=\"big_image\" src=\"images/big_image/Ship.jpg\">\n\t\t<div class=\"image-text\">\n\t\t\t<div class=\"lil-image-text\">Before the Adventure Begins:</div>\n\t\t\t<div class=\"big-image-text\"><strong>Intro to R</strong></div>\n\t\t</div>\n  </div>\n\n<style type=\"text/css\">\n  code{white-space: pre-wrap;}\n  span.smallcaps{font-variant: small-caps;}\n  span.underline{text-decoration: underline;}\n  div.column{display: inline-block; vertical-align: top; width: 50%;}\n  div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}\n  ul.task-list{list-style: none;}\n    </style>\n\n<style type=\"text/css\">code{white-space: pre;}</style>\n<script type=\"text/javascript\">\nif (window.hljs) {\n  hljs.configure({languages: []});\n  hljs.initHighlightingOnLoad();\n  if (document.readyState && document.readyState === \"complete\") {\n    window.setTimeout(function() { hljs.initHighlighting(); }, 0);\n  }\n}\n</script>\n\n\n\n\n\n\n\n\n\n<style type = \"text/css\">\n.main-container {\n  max-width: 940px;\n  margin-left: auto;\n  margin-right: auto;\n}\nimg {\n  max-width:100%;\n}\n.tabbed-pane {\n  padding-top: 12px;\n}\n.html-widget {\n  margin-bottom: 20px;\n}\nbutton.code-folding-btn:focus {\n  outline: none;\n}\nsummary {\n  display: list-item;\n}\ndetails > summary > p:only-child {\n  display: inline;\n}\npre code {\n  padding: 0;\n}\n</style>\n\n\n<style type=\"text/css\">\n.dropdown-submenu {\n  position: relative;\n}\n.dropdown-submenu>.dropdown-menu {\n  top: 0;\n  left: 100%;\n  margin-top: -6px;\n  margin-left: -1px;\n  border-radius: 0 6px 6px 6px;\n}\n.dropdown-submenu:hover>.dropdown-menu {\n  display: block;\n}\n.dropdown-submenu>a:after {\n  display: block;\n  content: \" \";\n  float: right;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n  border-width: 5px 0 5px 5px;\n  border-left-color: #cccccc;\n  margin-top: 5px;\n  margin-right: -10px;\n}\n.dropdown-submenu:hover>a:after {\n  border-left-color: #adb5bd;\n}\n.dropdown-submenu.pull-left {\n  float: none;\n}\n.dropdown-submenu.pull-left>.dropdown-menu {\n  left: -100%;\n  margin-left: 10px;\n  border-radius: 6px 0 6px 6px;\n}\n</style>\n\n<script type=\"text/javascript\">\n// manage active state of menu based on current page\n$(document).ready(function () {\n  // active menu anchor\n  href = window.location.pathname\n  href = href.substr(href.lastIndexOf('/') + 1)\n  if (href === \"\")\n    href = \"index.html\";\n  var menuAnchor = $('a[href=\"' + href + '\"]');\n\n  // mark it active\n  menuAnchor.tab('show');\n\n  // if it's got a parent navbar menu mark it active as well\n  menuAnchor.closest('li.dropdown').addClass('active');\n\n  // Navbar adjustments\n  var navHeight = $(\".navbar\").first().height() + 15;\n  var style = document.createElement('style');\n  var pt = \"padding-top: \" + navHeight + \"px; \";\n  var mt = \"margin-top: -\" + navHeight + \"px; \";\n  var css = \"\";\n  // offset scroll position for anchor links (for fixed navbar)\n  for (var i = 1; i <= 6; i++) {\n    css += \".section h\" + i + \"{ \" + pt + mt + \"}\\n\";\n  }\n  style.innerHTML = \"body {\" + pt + \"padding-bottom: 40px; }\\n\" + css;\n  document.head.appendChild(style);\n});\n</script>\n\n<!-- tabsets -->\n\n<style type=\"text/css\">\n.tabset-dropdown > .nav-tabs {\n  display: inline-table;\n  max-height: 500px;\n  min-height: 44px;\n  overflow-y: auto;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n}\n\n.tabset-dropdown > .nav-tabs > li.active:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {\n  content: \"&#xe258;\";\n  border: none;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs > li.active {\n  display: block;\n}\n\n.tabset-dropdown > .nav-tabs > li > a,\n.tabset-dropdown > .nav-tabs > li > a:focus,\n.tabset-dropdown > .nav-tabs > li > a:hover {\n  border: none;\n  display: inline-block;\n  border-radius: 4px;\n  background-color: transparent;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li {\n  display: block;\n  float: none;\n}\n\n.tabset-dropdown > .nav-tabs > li {\n  display: none;\n}\n</style>\n\n<!-- code folding -->\n\n\n\n<style type=\"text/css\">\n\n#TOC {\n  margin: 25px 0px 20px 0px;\n}\n@media (max-width: 768px) {\n#TOC {\n  position: relative;\n  width: 100%;\n}\n}\n\n@media print {\n.toc-content {\n  /* see https://github.com/w3c/csswg-drafts/issues/4434 */\n  float: right;\n}\n}\n\n.toc-content {\n  padding-left: 30px;\n  padding-right: 40px;\n}\n\ndiv.main-container {\n  max-width: 1200px;\n}\n\ndiv.tocify {\n  width: 20%;\n  max-width: 260px;\n  max-height: 85%;\n}\n\n@media (min-width: 768px) and (max-width: 991px) {\n  div.tocify {\n    width: 25%;\n  }\n}\n\n@media (max-width: 767px) {\n  div.tocify {\n    width: 100%;\n    max-width: none;\n  }\n}\n\n.tocify ul, .tocify li {\n  line-height: 20px;\n}\n\n.tocify-subheader .tocify-item {\n  font-size: 0.90em;\n}\n\n.tocify .list-group-item {\n  border-radius: 0px;\n}\n\n\n</style>\n\n\n\n</head>\n\n<body>\n\n\n<div class=\"container-fluid main-container\">\n\n\n<!-- setup 3col/9col grid for toc_float and main content  -->\n<div class=\"row\">\n<div class=\"col-xs-12 col-sm-4 col-md-3\">\n<div id=\"TOC\" class=\"tocify\">\n</div>\n</div>\n\n<div class=\"toc-content col-xs-12 col-sm-8 col-md-9\">\n\n\n\n\n<div class=\"navbar navbar-default  navbar-fixed-top\" role=\"navigation\">\n  <div class=\"container\">\n    <div class=\"navbar-header\">\n      <button type=\"button\" class=\"navbar-toggle collapsed\" data-toggle=\"collapse\" data-bs-toggle=\"collapse\" data-target=\"#navbar\" data-bs-target=\"#navbar\">\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n      </button>\n      <a class=\"navbar-brand\" href=\"index.html\"> </a>\n    </div>\n    <div id=\"navbar\" class=\"navbar-collapse collapse\">\n      <ul class=\"nav navbar-nav\">\n        <li>\n  <a href=\"index.html\">\n    <span class=\"fa fa-home\"></span>\n     \n  </a>\n</li>\n<li>\n  <a href=\"00_narrative.html\">History of Teacup Giraffes</a>\n</li>\n<li class=\"dropdown\">\n  <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\" role=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\">\n    Modules\n     \n    <span class=\"caret\"></span>\n  </a>\n  <ul class=\"dropdown-menu\" role=\"menu\">\n    <li>\n      <a href=\"01_introToR.html\">Intro to R</a>\n    </li>\n    <li>\n      <a href=\"02_bellCurve.html\">Intro to the Normal Distribution</a>\n    </li>\n    <li>\n      <a href=\"03_mean.html\">Mean, Median, Mode</a>\n    </li>\n    <li>\n      <a href=\"04_variance.html\">Spread of the Data</a>\n    </li>\n    <li>\n      <a href=\"05_correlation.html\">Covariance and Correlation</a>\n    </li>\n    <li>\n      <a href=\"06_standardError.html\">Standard Error</a>\n    </li>\n  </ul>\n</li>\n<li>\n  <a href=\"aboutTheAuthors.html\">About the Authors</a>\n</li>\n      </ul>\n      <ul class=\"nav navbar-nav navbar-right\">\n        <li>\n  <a href=\"https://github.com/tinystats/teacups-giraffes-and-statistics\">\n    <span class=\"fa fa-github\"></span>\n     \n  </a>\n</li>\n      </ul>\n    </div><!--/.nav-collapse -->\n  </div><!--/.container -->\n</div><!--/.navbar -->\n\n<div id=\"header\">\n\n\n\n<h1 class=\"title toc-ignore\">Introduction to the R programming language</h1>\n\n</div>\n\n\n<div id=\"ready-to-begin\" class=\"section level1\">\n<h1>Ready to begin?</h1>\n<p>You’re about to start an adventure to learn R and statistics. If this is your first time working with R, then you should begin on this page. If you’re comfortable with R basics and you’d like to start with the statistical content, please proceed onto the islands with this <a href=\"02_bellCurve.html\">link</a>.</p>\n</div>\n<div id=\"using-interactive-windows\" class=\"section level1\">\n<h1>Using interactive windows</h1>\n<p>Throughout this material we will use an interactive version of R provided by <a href=\"https://rstudio.github.io/learnr/\">learnR</a>. Although this way of using R comes with some limitations regarding functionality, it will give us the benefit of being able to run R code without switching from a web browser to a standalone application such as <a href=\"https://www.rstudio.com/\">RStudio</a>.</p>\n<p>Below you can see an example of an interactive R window. In the white window (under the button with the text <em>Start Over</em>) is where you will write code to be executed. To run code you have written, click the green <em>Run Code</em> button and observe how information pops up under the window. If no errors were made, this is where the answer will be returned. Error messages are shown in a red box, also under the learnR window.</p>\n<p>Now spend a few minutes using the window below as a calculator and run simple calculations by clicking <em>Run Code</em>.</p>\n<!---LEARNR EX 1-->\n<iframe class=\"interactive\" id=\"myIframe1\" src=\"https://tinystats.shinyapps.io/01-intro-ex1/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n</div>\n<div id=\"objects-in-r\" class=\"section level1\">\n<h1>Objects in R</h1>\n<p>R is an object oriented programming language, meaning when working in R we will create different types of objects and use operators and functions to manipulate these objects.</p>\n<p>To create a new object in R we first pick a name for the object and tell R what to assign to it using <strong>assignment operators</strong>; either <code>=</code> or a small arrow <code>&lt;-</code> made from the combination of <code>&lt;</code> and <code>-</code>.</p>\n<ul>\n<li>Use the window below to assign numbers to objects and output the content by typing out the name of the object.</li>\n<li>After creating two numerical objects, use the mathematical operator <code>+</code> to add these objects together and see what happens when you run the code.</li>\n</ul>\n<!---LEARNR EX 2-->\n<iframe class=\"interactive\" id=\"myIframe2\" src=\"https://tinystats.shinyapps.io/01-intro-ex2/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n</div>\n<div id=\"common-functions\" class=\"section level1\">\n<h1>Common functions</h1>\n<p>Most of the time when we work in R, we will use functions; either pre-written functions or ones we write ourselves. <strong>Functions</strong> make it easy to use sets of code instructions repeatedly (without filling our scripts with the code underlying the function) and help us carry out multiple tasks in a single step without having to go through the details of how the steps are executed.</p>\n<p>To use functions in R, we type the name of the function followed by parentheses (e.g. <code>print( )</code>). Within the parentheses is where we will specify the function input and options, separated by commas <code>,</code>. One function you will use a lot is the <strong>combine function</strong> <code>c( )</code>, which as the name suggests lets you concatenate different types of values.</p>\n<ul>\n<li>In the window below, create an object combining a set of numerical values using <code>c( )</code>, separating the different values with commas.</li>\n<li>Then sum up the content of this object using <code>sum( )</code>.</li>\n</ul>\n<!---LEARNR EX 3-->\n<iframe class=\"interactive\" id=\"myIframe3\" src=\"https://tinystats.shinyapps.io/01-intro-ex3/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n</div>\n<div id=\"writing-your-own-function\" class=\"section level1\">\n<h1>Writing your own function</h1>\n<p>R makes it easy to create user defined functions by using <code>function( )</code>. Here is how it works:</p>\n<ul>\n<li>Give your function an object name and assign the function to it, e.g. <code>my_function_name &lt;- function( )</code>.</li>\n<li>Within the parentheses you specify inputs and options just like how pre-written functions work, e.g. <code>function(input_data)</code></li>\n<li>Next, put all the code you want your function to execute inside curly brackets like this: <code>function(input_data){code to run}</code></li>\n<li>Use <code>return( )</code> to specify what you want to your function to output once it is done running the code.</li>\n</ul>\n<p>Use the following instructions to complete the function in the window below:</p>\n<ul>\n<li>We’ve started writing a function for you that will sum up values and take the square root of the sum. To take the square root, we use the <code>sqrt( )</code> function.<br />\n</li>\n<li>Complete this function by filling in <code>input_data</code> for the sum( ), and then filling in the remaining empty parentheses with the appropriate object names.\n<ul>\n<li>Now create an object containing a set of numerical values and call it <code>my_combined_values</code>. Then try out your new function on this object, which will compute the square root of the object’s sum.</li>\n</ul></li>\n</ul>\n<!---LEARNR EX 4-->\n<iframe class=\"interactive\" id=\"myIframe4\" src=\"https://tinystats.shinyapps.io/01-intro-ex4/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n</div>\n<div id=\"functions-within-functions\" class=\"section level1\">\n<h1>Functions within functions</h1>\n<p>It is also possible (and sometimes very useful) to put a function within another function. For example, we could combine multiple steps into one like this: <code>sqrt(prod(c(1,2)))</code>, resulting in one line of code that both generates the values and directly calculates the square root of the product of those values.</p>\n</div>\n<div id=\"vectors\" class=\"section level1\">\n<h1>Vectors</h1>\n<p>The <code>c( )</code> function will combine values and create a specific type of data structure called an <strong>atomic vector</strong>. A vector is a simple one-dimensional structure that can contain only one type of value. This means that storing multiple numeric values in a vector, as we have already done, works just fine. But there are other types of values that can be used in R, for example <strong>character</strong> values. These values are created by putting text or numbers within quotes such as <code>\"Giraffe\"</code>. If we try to combine numeric and character values in the same vector, R will convert both values to the character type.</p>\n<pre class=\"r\"><code>c(&quot;Giraffe&quot;, 123)</code></pre>\n<pre><code>## [1] &quot;Giraffe&quot; &quot;123&quot;</code></pre>\n<p>This behavior is not always desirable, so it is a good idea to try to only combine values of the same type.</p>\n</div>\n<div id=\"boolean-values-and-logical-operators\" class=\"section level1\">\n<h1>Boolean values and logical operators</h1>\n<p>Another type of variable in R is the boolean (TRUE/FALSE) type. <strong>Boolean</strong> or logical vectors can only take two different values; TRUE or FALSE (case sensitive). You will see these types of values mostly when logical operators are used to test how different objects relate to each other. For example, the <strong>logical operator</strong> <code>==</code> can be used to test if two different objects are exactly the same and <code>TRUE</code> will be returned only if the identity is fulfilled.</p>\n<pre class=\"r\"><code>&quot;Giraffe&quot; == &quot;Teacup&quot;</code></pre>\n<pre><code>## [1] FALSE</code></pre>\n<pre class=\"r\"><code>sqrt(100) == 10</code></pre>\n<pre><code>## [1] TRUE</code></pre>\n</div>\n<div id=\"data-frames\" class=\"section level1\">\n<h1>Data frames</h1>\n<p>Vectors are one of multiple data structures in R. We will not cover all types of structures here, but perhaps the most common one encountered when analyzing data in R is the <strong>data frame</strong>. Data frames are two dimensional, which basically means that data frames let you store multiple vectors in one object. Oftentimes, each vector will be a new column in the data frame. One constraint though is that all vectors/columns need to be of the same length.</p>\n<ul>\n<li>In the window below, use the <code>data.frame()</code> function to create a data frame with two columns called <em>x</em> and <em>y</em>. When creating data frames we specify a column by giving the column a name and assigning values or vectors to it, e.g. <code>data.frame(x= c(\"Giraffe\", \"Teacup\"))</code>.</li>\n<li>Also observe what happens when you try to combine an x and y vector of different lengths.</li>\n</ul>\n<!---LEARNR EX 5-->\n<iframe class=\"interactive\" id=\"myIframe5\" src=\"https://tinystats.shinyapps.io/01-intro-ex5/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n<p>As you could see above, running a line of code with just the name of a data structure (in this case, the letter <em>d</em>) will print the full data frame in the console output (if no errors were made!). If you instead are interested in only one of the columns, this can be specified by using the <code>$</code> operator followed by the column’s name, e.g <code>d$x</code>. Try it out below!</p>\n<!---LEARNR EX 6-->\n<iframe class=\"interactive\" id=\"myIframe6\" src=\"https://tinystats.shinyapps.io/01-intro-ex6/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n</div>\n<div id=\"youre-ready-to-go\" class=\"section level1\">\n<h1>You’re ready to go!</h1>\n<p>This was a brief introduction into R, but now you know what you need to get started with the <a href=\"02_bellCurve.html\">first module</a>!</p>\n<script>\n  iFrameResize({}, \".interactive\");\n</script>\n</div>\n\n<!DOCTYPE html>\n\n<div class=\"foot\">\n\t<hr> \n\t<p style=\"text-align: center;\"> <span style=\"color: #808080; display: inline-block; width: 58%;\"> \tThis project was created entirely in RStudio using R Markdown and published on GitHub pages. \n </span></p>\n\t<p style=\"text-align: center;\">\n\t</p>\n</div>\n\n\n</div>\n</div>\n\n</div>\n\n<script>\n\n// add bootstrap table styles to pandoc tables\nfunction bootstrapStylePandocTables() {\n  $('tr.odd').parent('tbody').parent('table').addClass('table table-condensed');\n}\n$(document).ready(function () {\n  bootstrapStylePandocTables();\n});\n\n\n</script>\n\n<!-- tabsets -->\n\n<script>\n$(document).ready(function () {\n  window.buildTabsets(\"TOC\");\n});\n\n$(document).ready(function () {\n  $('.tabset-dropdown > .nav-tabs > li').click(function () {\n    $(this).parent().toggleClass('nav-tabs-open');\n  });\n});\n</script>\n\n<!-- code folding -->\n\n<script>\n$(document).ready(function ()  {\n\n    // temporarily add toc-ignore selector to headers for the consistency with Pandoc\n    $('.unlisted.unnumbered').addClass('toc-ignore')\n\n    // move toc-ignore selectors from section div to header\n    $('div.section.toc-ignore')\n        .removeClass('toc-ignore')\n        .children('h1,h2,h3,h4,h5').addClass('toc-ignore');\n\n    // establish options\n    var options = {\n      selectors: \"h1,h2,h3\",\n      theme: \"bootstrap3\",\n      context: '.toc-content',\n      hashGenerator: function (text) {\n        return text.replace(/[.\\\\/?&!#<>]/g, '').replace(/\\s/g, '_');\n      },\n      ignoreSelector: \".toc-ignore\",\n      scrollTo: 0\n    };\n    options.showAndHide = true;\n    options.smoothScroll = true;\n\n    // tocify\n    var toc = $(\"#TOC\").tocify(options).data(\"toc-tocify\");\n});\n</script>\n\n<!-- dynamically load mathjax for compatibility with self-contained -->\n<script>\n  (function () {\n    var script = document.createElement(\"script\");\n    script.type = \"text/javascript\";\n    script.src  = \"https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML\";\n    document.getElementsByTagName(\"head\")[0].appendChild(script);\n  })();\n</script>\n\n</body>\n</html>\n"
  },
  {
    "path": "docs/02_bellCurve.html",
    "content": "<!DOCTYPE html>\n\n<html>\n\n<head>\n\n<meta charset=\"utf-8\" />\n<meta name=\"generator\" content=\"pandoc\" />\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=EDGE\" />\n\n\n\n\n<title>The Normal Distribution</title>\n\n<script src=\"site_libs/jquery-3.6.0/jquery-3.6.0.min.js\"></script>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n<link href=\"site_libs/bootstrap-3.3.5/css/cosmo.min.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/bootstrap-3.3.5/js/bootstrap.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/html5shiv.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/respond.min.js\"></script>\n<style>h1 {font-size: 34px;}\n       h1.title {font-size: 38px;}\n       h2 {font-size: 30px;}\n       h3 {font-size: 24px;}\n       h4 {font-size: 18px;}\n       h5 {font-size: 16px;}\n       h6 {font-size: 12px;}\n       code {color: inherit; background-color: rgba(0, 0, 0, 0.04);}\n       pre:not([class]) { background-color: white }</style>\n<script src=\"site_libs/jqueryui-1.11.4/jquery-ui.min.js\"></script>\n<link href=\"site_libs/tocify-1.9.1/jquery.tocify.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/tocify-1.9.1/jquery.tocify.js\"></script>\n<script src=\"site_libs/navigation-1.1/tabsets.js\"></script>\n<link href=\"site_libs/highlightjs-9.12.0/default.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/highlightjs-9.12.0/highlight.js\"></script>\n<script src=\"site_libs/htmlwidgets-1.5.4/htmlwidgets.js\"></script>\n<script src=\"site_libs/plotly-binding-4.10.0/plotly.js\"></script>\n<script src=\"site_libs/typedarray-0.1/typedarray.min.js\"></script>\n<link href=\"site_libs/crosstalk-1.2.0/css/crosstalk.min.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/crosstalk-1.2.0/js/crosstalk.min.js\"></script>\n<link href=\"site_libs/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/plotly-main-2.5.1/plotly-latest.min.js\"></script>\n<link href=\"site_libs/font-awesome-5.1.0/css/all.css\" rel=\"stylesheet\" />\n<link href=\"site_libs/font-awesome-5.1.0/css/v4-shims.css\" rel=\"stylesheet\" />\n<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n</head>\n\n<div class=\"image-descript\"> \n\t<img class=\"big_image\" src=\"images/big_image/Hills.jpg\"> \n\t<div class=\"image-text\">\n\t  <div class=\"lil-image-text\">Introduction to the</div>\n\t  <div class=\"big-image-text\"><strong>NORMAL DISTRIBUTION</strong></div>\n\t</div>\n</div>\n\n<style type=\"text/css\">\n  code{white-space: pre-wrap;}\n  span.smallcaps{font-variant: small-caps;}\n  span.underline{text-decoration: underline;}\n  div.column{display: inline-block; vertical-align: top; width: 50%;}\n  div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}\n  ul.task-list{list-style: none;}\n    </style>\n\n<style type=\"text/css\">code{white-space: pre;}</style>\n<script type=\"text/javascript\">\nif (window.hljs) {\n  hljs.configure({languages: []});\n  hljs.initHighlightingOnLoad();\n  if (document.readyState && document.readyState === \"complete\") {\n    window.setTimeout(function() { hljs.initHighlighting(); }, 0);\n  }\n}\n</script>\n\n\n\n\n\n\n\n\n\n<style type = \"text/css\">\n.main-container {\n  max-width: 940px;\n  margin-left: auto;\n  margin-right: auto;\n}\nimg {\n  max-width:100%;\n}\n.tabbed-pane {\n  padding-top: 12px;\n}\n.html-widget {\n  margin-bottom: 20px;\n}\nbutton.code-folding-btn:focus {\n  outline: none;\n}\nsummary {\n  display: list-item;\n}\ndetails > summary > p:only-child {\n  display: inline;\n}\npre code {\n  padding: 0;\n}\n</style>\n\n\n<style type=\"text/css\">\n.dropdown-submenu {\n  position: relative;\n}\n.dropdown-submenu>.dropdown-menu {\n  top: 0;\n  left: 100%;\n  margin-top: -6px;\n  margin-left: -1px;\n  border-radius: 0 6px 6px 6px;\n}\n.dropdown-submenu:hover>.dropdown-menu {\n  display: block;\n}\n.dropdown-submenu>a:after {\n  display: block;\n  content: \" \";\n  float: right;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n  border-width: 5px 0 5px 5px;\n  border-left-color: #cccccc;\n  margin-top: 5px;\n  margin-right: -10px;\n}\n.dropdown-submenu:hover>a:after {\n  border-left-color: #adb5bd;\n}\n.dropdown-submenu.pull-left {\n  float: none;\n}\n.dropdown-submenu.pull-left>.dropdown-menu {\n  left: -100%;\n  margin-left: 10px;\n  border-radius: 6px 0 6px 6px;\n}\n</style>\n\n<script type=\"text/javascript\">\n// manage active state of menu based on current page\n$(document).ready(function () {\n  // active menu anchor\n  href = window.location.pathname\n  href = href.substr(href.lastIndexOf('/') + 1)\n  if (href === \"\")\n    href = \"index.html\";\n  var menuAnchor = $('a[href=\"' + href + '\"]');\n\n  // mark it active\n  menuAnchor.tab('show');\n\n  // if it's got a parent navbar menu mark it active as well\n  menuAnchor.closest('li.dropdown').addClass('active');\n\n  // Navbar adjustments\n  var navHeight = $(\".navbar\").first().height() + 15;\n  var style = document.createElement('style');\n  var pt = \"padding-top: \" + navHeight + \"px; \";\n  var mt = \"margin-top: -\" + navHeight + \"px; \";\n  var css = \"\";\n  // offset scroll position for anchor links (for fixed navbar)\n  for (var i = 1; i <= 6; i++) {\n    css += \".section h\" + i + \"{ \" + pt + mt + \"}\\n\";\n  }\n  style.innerHTML = \"body {\" + pt + \"padding-bottom: 40px; }\\n\" + css;\n  document.head.appendChild(style);\n});\n</script>\n\n<!-- tabsets -->\n\n<style type=\"text/css\">\n.tabset-dropdown > .nav-tabs {\n  display: inline-table;\n  max-height: 500px;\n  min-height: 44px;\n  overflow-y: auto;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n}\n\n.tabset-dropdown > .nav-tabs > li.active:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {\n  content: \"&#xe258;\";\n  border: none;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs > li.active {\n  display: block;\n}\n\n.tabset-dropdown > .nav-tabs > li > a,\n.tabset-dropdown > .nav-tabs > li > a:focus,\n.tabset-dropdown > .nav-tabs > li > a:hover {\n  border: none;\n  display: inline-block;\n  border-radius: 4px;\n  background-color: transparent;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li {\n  display: block;\n  float: none;\n}\n\n.tabset-dropdown > .nav-tabs > li {\n  display: none;\n}\n</style>\n\n<!-- code folding -->\n\n\n\n<style type=\"text/css\">\n\n#TOC {\n  margin: 25px 0px 20px 0px;\n}\n@media (max-width: 768px) {\n#TOC {\n  position: relative;\n  width: 100%;\n}\n}\n\n@media print {\n.toc-content {\n  /* see https://github.com/w3c/csswg-drafts/issues/4434 */\n  float: right;\n}\n}\n\n.toc-content {\n  padding-left: 30px;\n  padding-right: 40px;\n}\n\ndiv.main-container {\n  max-width: 1200px;\n}\n\ndiv.tocify {\n  width: 20%;\n  max-width: 260px;\n  max-height: 85%;\n}\n\n@media (min-width: 768px) and (max-width: 991px) {\n  div.tocify {\n    width: 25%;\n  }\n}\n\n@media (max-width: 767px) {\n  div.tocify {\n    width: 100%;\n    max-width: none;\n  }\n}\n\n.tocify ul, .tocify li {\n  line-height: 20px;\n}\n\n.tocify-subheader .tocify-item {\n  font-size: 0.90em;\n}\n\n.tocify .list-group-item {\n  border-radius: 0px;\n}\n\n\n</style>\n\n\n\n</head>\n\n<body>\n\n\n<div class=\"container-fluid main-container\">\n\n\n<!-- setup 3col/9col grid for toc_float and main content  -->\n<div class=\"row\">\n<div class=\"col-xs-12 col-sm-4 col-md-3\">\n<div id=\"TOC\" class=\"tocify\">\n</div>\n</div>\n\n<div class=\"toc-content col-xs-12 col-sm-8 col-md-9\">\n\n\n\n\n<div class=\"navbar navbar-default  navbar-fixed-top\" role=\"navigation\">\n  <div class=\"container\">\n    <div class=\"navbar-header\">\n      <button type=\"button\" class=\"navbar-toggle collapsed\" data-toggle=\"collapse\" data-bs-toggle=\"collapse\" data-target=\"#navbar\" data-bs-target=\"#navbar\">\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n      </button>\n      <a class=\"navbar-brand\" href=\"index.html\"> </a>\n    </div>\n    <div id=\"navbar\" class=\"navbar-collapse collapse\">\n      <ul class=\"nav navbar-nav\">\n        <li>\n  <a href=\"index.html\">\n    <span class=\"fa fa-home\"></span>\n     \n  </a>\n</li>\n<li>\n  <a href=\"00_narrative.html\">History of Teacup Giraffes</a>\n</li>\n<li class=\"dropdown\">\n  <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\" role=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\">\n    Modules\n     \n    <span class=\"caret\"></span>\n  </a>\n  <ul class=\"dropdown-menu\" role=\"menu\">\n    <li>\n      <a href=\"01_introToR.html\">Intro to R</a>\n    </li>\n    <li>\n      <a href=\"02_bellCurve.html\">Intro to the Normal Distribution</a>\n    </li>\n    <li>\n      <a href=\"03_mean.html\">Mean, Median, Mode</a>\n    </li>\n    <li>\n      <a href=\"04_variance.html\">Spread of the Data</a>\n    </li>\n    <li>\n      <a href=\"05_correlation.html\">Covariance and Correlation</a>\n    </li>\n    <li>\n      <a href=\"06_standardError.html\">Standard Error</a>\n    </li>\n  </ul>\n</li>\n<li>\n  <a href=\"aboutTheAuthors.html\">About the Authors</a>\n</li>\n      </ul>\n      <ul class=\"nav navbar-nav navbar-right\">\n        <li>\n  <a href=\"https://github.com/tinystats/teacups-giraffes-and-statistics\">\n    <span class=\"fa fa-github\"></span>\n     \n  </a>\n</li>\n      </ul>\n    </div><!--/.nav-collapse -->\n  </div><!--/.container -->\n</div><!--/.navbar -->\n\n<div id=\"header\">\n\n\n\n<h1 class=\"title toc-ignore\">The Normal Distribution</h1>\n\n</div>\n\n\n<div class=\"obj\">\n<p><strong>Module learning objectives</strong></p>\n<ol style=\"list-style-type: decimal\">\n<li>Define what a distribution is</li>\n<li>Describe the characteristics of a normal distribution</li>\n<li>Create a histogram using <code>ggplot</code> and modify its appearance</li>\n<li>Define sample and population</li>\n<li>Explain why distributions of sample data that come from populations with normal distibutions don’t always look normal</li>\n</ol>\n</div>\n<div id=\"welcome-to-the-island\" class=\"section level1\">\n<h1>Welcome to the island</h1>\n<p>Two weeks after starting grad school, you’re assigned to go to a small island east of Madagascar to study a mysterious mammalian species that has caught your advisor’s interest. After a long trip on various ships and smaller boats, you arrive on the island, excited to collect data on this new species.</p>\n<p>The only information your advisor has given you is that they are small giraffe-like creatures. He called them teacup giraffes. You waste no time to suit up in your field gear, and your guide leads you deep into the dense island brush. Filled with anticipation, you start searching for your first subject.</p>\n<p>After a one hour hike, you reach a clearing where tall cypress trees encircle low growth vegetation. Suddenly, you experience your first encounter with a little giraffe, whose cool drink from a puddle you seem to have interrupted. Smaller than you had imagined–its slender body does not even clear the height of a dandelion. You toss a celery stick in its direction, and you’re pleasantly surprised that it immediately trots over to you and starts vigorously munching, creating a celery confetti cloud. After observing this behavior for a while and taking some notes on how quickly it devours your celery supply, you bring out your measuring tape and record the giraffe’s height.</p>\n<p><br />\n</p>\n<p><img src=\"images/02_bellCurve/Cool-Drink.jpg\" width=\"600px\" style=\"display: block; margin: auto;\" /></p>\n<p><br />\n</p>\n<p>A few minuters later, you leave the clearing and forge a path through thick ferns and palm leaves. You pause for a drink from your water bottle long enough to pinpoint a fast-paced crunching noise. In the shade of a fallen tree, there’s another teacup giraffe annihilating a small patch of wild celery for its afternoon snack. You’re surprised how much smaller this one is–about as tall as your Swiss army knife. Throughout the day you encounter several teacup giraffes, and you realize that although all petite, they are remarkably variable in stature.</p>\n<p>The next week is spent trekking and measuring every giraffe you can manage to get near enough. You take advantage of the fact that they come running everytime you pull out a celery stalk from your lunch bag, and you’re relieved that it takes them long enough to finish snacking for you to measure their height. With the help of your guide, you manage to measure 50 giraffes in the first week.</p>\n<p><img src=\"images/02_bellCurve/giraffe_lineup4.jpg\" width=\"800px\" style=\"display: block; margin: auto;\" /></p>\n<p>There is a second island not too far away, where your guide has indicated there may be more giraffes. You wonder how the population of giraffes on the second island may be different, and so you make arrangements to go to Island #2 the following week. It is not too long until you have added another 50 measurements of these tiny giraffes from this second excursion.</p>\n<p><img src=\"images/02_bellCurve/giraffe_islands2.jpg\" width=\"800px\" style=\"display: block; margin: auto;\" /></p>\n</div>\n<div id=\"visualize-the-data\" class=\"section level1\">\n<h1>Visualize the data</h1>\n<p>After collecting 100 measurements, you decide to take a first look at the data. What’s the best way to look at data when you know nothing about it…? You take a long walk on the beach to ponder this.</p>\n<p>You can start by scanning the values for the shortest and tallest heights. You see the range is between 6 and 20cm. So you draw a ruler in the sand with the extreme heights on either end. You’d like to see how many times each height occurs in your data set, and so you grab a small colorful stone from the shore to represent each individual giraffe’s height and place it just above your ruler mark. You put out a new stone for each height and continue doing this for each individual to see which heights “stack up” along your ruler. To keep track of which heights came from different islands, you pick differently colored stones for each group. Look below for a sped-up version of this process! The y-axis is frequency. The x-axis is the height.</p>\n<div style=\"margin-top:30px\">\n\n</div>\n<center>\n<iframe style=\"margin:0px; padding:0px; display:block; border:0px\" src=\"images/02_bellCurve/two_animated_hist.html\" width=\"650\" height=\"450\" scrolling=\"yes\" seamless=\"seamless\" frameBorder=\"0\">\n</iframe>\n</center>\n<p>As you put the last stone in place, your local guide saunters by and glances at your markings, “What a nice histogram!”</p>\n</div>\n<div id=\"distributions\" class=\"section level1\">\n<h1>Distributions</h1>\n<p>The histogram above shows the <strong>distribution</strong>, or shape, of your data. The distribution of a variable in a data set gives you information about:</p>\n<ul>\n<li>All the values the variable takes on in your data set, when the data are split into reasonably sized groups<br />\n</li>\n<li>How often each value occurs<br />\n</li>\n<li>The shape, center, and amount of variability in the data</li>\n</ul>\n<p>Checking the distribution of the data is always one of the first steps of data anlaysis. By knowing the shape of the data, you gain insights into some of the data’s statistical properties (which become useful down the line, for example, when you need to decide whether a particular statistical test would be appropriate).</p>\n</div>\n<div id=\"the-normal-distribution\" class=\"section level1\">\n<h1>The normal distribution</h1>\n<p>Although the data can be distributed in many shapes, there are some general shapes that occur so frequently in nature that these distributions are given their own names. The most well-known distribution has a shape similar to a bell and is called the <em>normal distribution</em> (or sometimes “the bell curve” or just “normal curve”).</p>\n<p>There are a few characteristics of the normal distribution:</p>\n<ul>\n<li>There is a single peak</li>\n<li>The mass of the distribution is at its center</li>\n<li>There is symmetry about the center line</li>\n</ul>\n<p><img src=\"images/02_bellCurve/normal_hist.png\" width=\"100%\" style=\"display: block; margin: auto;\" /></p>\n<p>Taking a look at the stones in the sand, you see two bell-shaped distributions. One for each island. It looks like giraffe heights on each island follow a normal distribution— and that’s a good thing because you remember your stats textbook always talking about how normally distributed data behaves well! Phew!</p>\nHappy with your progress thus far, you are excited to send your histogram results to your PhD mentor back in the homeland. Instead of taking a picture of your stone histogram, you turn to R to create the perfect figure.\n<div style=\"margin-bottom:50px\">\n\n</div>\n</p>\n</div>\n<div id=\"our-dataframe\" class=\"section level1\">\n<h1>Our dataframe</h1>\n<p>Time to apply your <a href=\"01_introToR.html\">Intro to R knowledge</a>. The heights from your logbook have been stored in a data frame called <code>d</code>. Below we show the last few observations from this vector, using the <code>tail()</code> function, which all happen to be from Island #2.</p>\n<div style=\"margin-bottom:15px\">\n\n</div>\n<pre class=\"r\"><code>tail(d)</code></pre>\n<pre><code>##       Height  Location\n## 95  19.24044 Island #2\n## 96  17.58925 Island #2\n## 97  18.54274 Island #2\n## 98  17.16631 Island #2\n## 99  17.71318 Island #2\n## 100 16.79124 Island #2</code></pre>\n<div style=\"margin-bottom:50px\">\n\n</div>\n</div>\n<div id=\"making-a-histogram-with-ggplot2\" class=\"section level1\">\n<h1>Making a histogram with <code>ggplot2</code></h1>\n<p>We will use the <em>ggplot2</em> package for all our graphing. Check out <a href=\"https://ggplot2.tidyverse.org/reference\">this page</a> as a reference.</p>\n<p>We need some basic components as a bare minimum to get started. We can customize components later to make the graph more to our liking. The steps we will go through are:</p>\n<ul>\n<li><p>First we need to tell R that we want to create a ggplot. This is done by <strong>using the <code>ggplot( )</code> function</strong>. Within the parentheses, we can specify the data frame that contains what we want to plot, using the option <code>data = d</code>. We also have to tell ggplot <em>what</em> columns of the data frame to actually plot– we do this with the argument that stands for aesthetics: <code>aes( )</code>. In our case, only the x-axis variable <code>Height</code> needs to be specified.</p></li>\n<li><p>Next, <strong>add a <code>geom</code> layer</strong>, which will determine the type of visual representation that will be used for the data. Different ggplot layers and options are added using a plus sign <code>+</code>. In our case, we will write <code>+</code> and then <code>geom_histogram( )</code>. To make your plot look similar to your sand drawing, you want to add an optional argument within the parentheses of <code>geom_histogram</code>, which will set the bin width to 1cm: <code>geom_histogram( binwidth = 1 )</code>.</p></li>\n</ul>\n<p>Here we are using <code>geom_histogram</code>, but there are many other <code>geom_</code> layers that you could use instead for different plot types. Check some of them out <a href=\"https://ggplot2.tidyverse.org/reference/#section-layer-geoms\">here</a>.</p>\n<p>A note about the <code>+</code>: You can keep adding new specifications on one long continuous line of code, separating each one with a <code>+</code>. However, if you’d like to make the code easier to read by adding each specification to a new line, make sure the <code>+</code> is added to the end of the first line and not the new one.</p>\n<p>It’s a good idea to save any ggplot you make as an object. It’s a helpful practice for when you’ll do more complicated graphing later (e.g. combining plots).</p>\n<p>Run the code below to see what this basic histogram in ggplot looks like:</p>\n<!---LEARNR EX 1-->\n<iframe class=\"interactive\" id=\"myIframe1\" src=\"https://tinystats.shinyapps.io/02-bellCurve-ex1/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n</div>\n<div id=\"customize-your-ggplot\" class=\"section level1\">\n<h1>Customize your ggplot</h1>\n<p>Let’s go over some quick ways we can customize any ggplot. First, we can tell ggplot that we want the data from the two islands to be different colors. And second, we can to specify the colors we want to use.</p>\n<p><strong>Different color for each group:</strong> Within <code>aes( )</code>, we add a <code>fill =</code> argument. Here is where you put the name of the variable that contains the categories that you want to distinguish with different colors.</p>\n<p>You might be wondering why we don’t use the <code>color=</code> here instead (which is a valid argument for <code>aes( )</code>), and this is because we want to change the color of the <em>fill</em> of the bars, while <code>color =</code> would change only the bar outline color (see below).</p>\n<p>To choose colors ggplot should use, we need to add a new option <code>+ scale_fill_manual( )</code> and then specify the colors with the argument <code>values =</code>. To read more about how to create your own color scale, see this <a href=\"https://ggplot2.tidyverse.org/reference/scale_manual.html\">page</a>. If you have more than one color you need to specify, make sure you combine them within the <code>c( )</code> function.</p>\n<p>Colors in R can be specified in different ways. For example, you can use a string of the color name (see possible colors <a href=\"http://sape.inf.usi.ch/quick-reference/ggplot2/colour\">here</a>) or with <a href=\"https://htmlcolorcodes.com/\">hex color codes</a>.</p>\n<p><strong>Outline Color:</strong> To change the color of the outline, specify <code>color =</code> within the parentheses of the <code>geom_</code> (i.e. <code>geom_histogram</code>).</p>\n<p>In the window below, we have added some options that you can play around with. Use the descriptions above to:</p>\n<ul>\n<li>Specify the variable that <code>fill</code> should be set to, as well as the colors for the fill and outline.</li>\n<li>Try out some color specifications on your own, and then check out the solution to see what we picked.</li>\n</ul>\n<p><br />\n</p>\n<!---LEARNR EX 2-->\n<iframe class=\"interactive\" id=\"myIframe2\" src=\"https://tinystats.shinyapps.io/02-bellCurve-ex2/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n<p><img src=\"images/02_bellCurve/Painter.png\" width=\"600px\" style=\"display: block; margin: auto;\" /></p>\n<p><strong>Playing around with “complete themes”: </strong> ggplot has a nice way of changing many non-data display parameters at once though what is referred to as “complete themes”. Check this <a href=\"https://ggplot2.tidyverse.org/reference/ggtheme.html\">page</a> for the available options.</p>\n<ul>\n<li>Have fun testing out a few different complete themes by adding the argument with a <code>+</code> sign.</li>\n<li>Try 3 different complete themes and take note of how the plot changes.</li>\n</ul>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<!---LEARNR EX 3-->\n<iframe class=\"interactive\" id=\"myIframe3\" src=\"https://tinystats.shinyapps.io/02-bellCurve-ex3/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n<p><br />\n</p>\n<p>After trying different themes, you pick <code>theme_light()</code> and feel pretty good about your ggplot accomplishment. You send your plot to your PhD advisor, and within what feels like only minutes, you have a new attachment in your email inbox:</p>\n<p><br />\n</p>\n<p><img src=\"images/02_bellCurve/advisor_email.png\" width=\"600px\" style=\"display: block; margin: auto;\" /></p>\n<p>You’ve got some more changes to make to your plot. Let’s start with something easy:</p>\n<ol style=\"list-style-type: decimal\">\n<li><strong>Remove the space between the bars and the x-axis</strong>: Use the <code>scale_y_continuous()</code> argument, and inside the parentheses specify <code>expand =</code> followed by two numbers within the <code>c( )</code> command. These two numbers represent how much above or below the data’s range you would like to extend the y-axis by.</li>\n</ol>\n<p>The function <code>scale_y_continuous</code> can be used for other purposes. See some examples and more documentation can be found <a href=\"https://ggplot2.tidyverse.org/reference/scale_continuous.html\">here</a>.</p>\n<ul>\n<li>Set axis limits</li>\n<li>Set axis breaks</li>\n<li>Transformations</li>\n</ul>\n<p><br />\n</p>\n<ol start=\"2\" style=\"list-style-type: decimal\">\n<li><p><strong>Change axes labels</strong>: Add <code>labs( )</code> to the existing ggplot layers and specify each axis you’d like to label as arguments, e.g. <code>x =</code>, followed by the string for your label. If you’d like to learn more about manipulations you can do with <code>labs( )</code>, see <a href=\"https://ggplot2.tidyverse.org/reference/labs.html\">this reference</a>.</p></li>\n<li><p>In addition, <code>labs( )</code> can be used to <strong>remove labels</strong>. In this case, we can also include <code>fill = NULL</code> to remove the legend label (recall that the categories for our legend were determined by the <code>fill</code> argument in <code>aes()</code> previously).</p></li>\n</ol>\n<p>Use the window below to:</p>\n<ul>\n<li>Remove the space and legend label</li>\n<li>Change the x-axis label to “Teacup Giraffe heights” and the y-axis label to “Frequency”.</li>\n</ul>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<!---LEARNR EX 4-->\n<iframe class=\"interactive\" id=\"myIframe4\" src=\"https://tinystats.shinyapps.io/02-bellCurve-ex4/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n<p><br />\n</p>\n<ol start=\"4\" style=\"list-style-type: decimal\">\n<li><strong>Remove panel border</strong> and 5.<strong>Remove minor grid lines</strong>: To make detailed changes to the layout, we can add a <code>theme( )</code> argument. Nested within <code>theme( )</code> we can use additional arguments, such as <code>panel.border=</code> and <code>panel.grid.minor=</code>. Many <code>theme( )</code> arguments can be set to <code>element_blank( )</code> to remove the element in question. To read more about what can be modifed with <code>theme( )</code>, check out this <a href=\"https://ggplot2.tidyverse.org/reference/theme.html\">resource</a>.</li>\n</ol>\n<ul>\n<li>In the window below, use what you just learned to remove the panel border and the minor grid lines of the plot.</li>\n</ul>\n<!---LEARNR EX 5-->\n<iframe class=\"interactive\" id=\"myIframe5\" src=\"https://tinystats.shinyapps.io/02-bellCurve-ex5/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n<p><br />\n</p>\n<ol start=\"6\" style=\"list-style-type: decimal\">\n<li><strong>Move the Legend</strong>: We will add two more arguments to <code>theme( )</code> to move the legend and make its background transparent. To change its position, use <code>legend.position =</code> followed by the <code>c( )</code> command, in which you will specify the x- and y- positions. These values must be between 0 and 1. Specifying <code>c(0,0)</code>, for example, would place the legend at the bottom left of the plot, while <code>c(1,1)</code> would place it at the top right.</li>\n</ol>\n<p>To change the legend background to be transparent, we essentially remove it. Add the argument <code>legend.background =</code>. Take a look at previous steps to determine how you remove an element.</p>\n<!---LEARNR EX 6-->\n<iframe class=\"interactive\" id=\"myIframe6\" src=\"https://tinystats.shinyapps.io/02-bellCurve-ex6/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n<p><br />\n</p>\n<p>Hopefully your PhD advisor in the homeland will be satisfied with your new ggplot!</p>\n<p><br />\n</p>\n</div>\n<div id=\"bell-ttta\" class=\"section level1\">\n<h1>Things to think about</h1>\n<p>Since we could not take the height of every giraffe on each of the two islands, and it is unclear how many giraffes live on the islands, we had to rely on taking the heights of randomly selected groups of giraffes.</p>\n<p>A <strong>sample</strong>, in our case the 50 giraffes from each island, is a subset of a population. The <strong>population</strong> is defined as all available observations in a defined geographic area at a given point in time – in this case, all existing giraffes on one of the islands while you are there.</p>\n<p>If we pick our sample in a random way, then our hope is that our sample data will be representative of the population. The larger our sample is, the more of the population it will include, and thus, the more closely the sample will resemble the population in its statistical attributes (e.g the distribution). We then must acknowledge that the smaller our sample is, the less likely it is that it will be representative of the population.</p>\n<p>The animation below illustrates how small samples can depart from the characteristics of the population.</p>\n<ul>\n<li>The panels below show samples that all come from the same population.</li>\n<li>Each frame of a panel, is a new sample drawn of the specified size.</li>\n<li>Observe that the smaller samples tend to:\n<ul>\n<li>Have oddly shaped distributions</li>\n<li>Jump around a lot</li>\n</ul></li>\n</ul>\n<p><strong>Take heed that with inadequate sample sizes, your sample data may barely resemble the population you’re interested in!</strong></p>\n<p>You decided that you had the resources to collect data on 50 giraffes on each of the islands. Will a sample of 50 be good enough to get a sense for the true values of the giraffe populations?</p>\n<p><br />\n</p>\n<p><img src=\"02_bellCurve_files/figure-html/unnamed-chunk-10-.gif\" width=\"960\" style=\"display: block; margin: auto;\" /></p>\n<script>\n  iFrameResize({}, \".interactive\");\n</script>\n</div>\n\n<!DOCTYPE html>\n\n<div class=\"foot\">\n\t<hr> \n\t<p style=\"text-align: center;\"> <span style=\"color: #808080; display: inline-block; width: 58%;\"> \tThis project was created entirely in RStudio using R Markdown and published on GitHub pages. \n </span></p>\n\t<p style=\"text-align: center;\">\n\t</p>\n</div>\n\n\n</div>\n</div>\n\n</div>\n\n<script>\n\n// add bootstrap table styles to pandoc tables\nfunction bootstrapStylePandocTables() {\n  $('tr.odd').parent('tbody').parent('table').addClass('table table-condensed');\n}\n$(document).ready(function () {\n  bootstrapStylePandocTables();\n});\n\n\n</script>\n\n<!-- tabsets -->\n\n<script>\n$(document).ready(function () {\n  window.buildTabsets(\"TOC\");\n});\n\n$(document).ready(function () {\n  $('.tabset-dropdown > .nav-tabs > li').click(function () {\n    $(this).parent().toggleClass('nav-tabs-open');\n  });\n});\n</script>\n\n<!-- code folding -->\n\n<script>\n$(document).ready(function ()  {\n\n    // temporarily add toc-ignore selector to headers for the consistency with Pandoc\n    $('.unlisted.unnumbered').addClass('toc-ignore')\n\n    // move toc-ignore selectors from section div to header\n    $('div.section.toc-ignore')\n        .removeClass('toc-ignore')\n        .children('h1,h2,h3,h4,h5').addClass('toc-ignore');\n\n    // establish options\n    var options = {\n      selectors: \"h1,h2,h3\",\n      theme: \"bootstrap3\",\n      context: '.toc-content',\n      hashGenerator: function (text) {\n        return text.replace(/[.\\\\/?&!#<>]/g, '').replace(/\\s/g, '_');\n      },\n      ignoreSelector: \".toc-ignore\",\n      scrollTo: 0\n    };\n    options.showAndHide = true;\n    options.smoothScroll = true;\n\n    // tocify\n    var toc = $(\"#TOC\").tocify(options).data(\"toc-tocify\");\n});\n</script>\n\n<!-- dynamically load mathjax for compatibility with self-contained -->\n<script>\n  (function () {\n    var script = document.createElement(\"script\");\n    script.type = \"text/javascript\";\n    script.src  = \"https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML\";\n    document.getElementsByTagName(\"head\")[0].appendChild(script);\n  })();\n</script>\n\n</body>\n</html>\n"
  },
  {
    "path": "docs/03_mean.html",
    "content": "<!DOCTYPE html>\n\n<html>\n\n<head>\n\n<meta charset=\"utf-8\" />\n<meta name=\"generator\" content=\"pandoc\" />\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=EDGE\" />\n\n\n\n\n<title>Mean, Median, and Mode</title>\n\n<script src=\"site_libs/jquery-3.6.0/jquery-3.6.0.min.js\"></script>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n<link href=\"site_libs/bootstrap-3.3.5/css/cosmo.min.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/bootstrap-3.3.5/js/bootstrap.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/html5shiv.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/respond.min.js\"></script>\n<style>h1 {font-size: 34px;}\n       h1.title {font-size: 38px;}\n       h2 {font-size: 30px;}\n       h3 {font-size: 24px;}\n       h4 {font-size: 18px;}\n       h5 {font-size: 16px;}\n       h6 {font-size: 12px;}\n       code {color: inherit; background-color: rgba(0, 0, 0, 0.04);}\n       pre:not([class]) { background-color: white }</style>\n<script src=\"site_libs/jqueryui-1.11.4/jquery-ui.min.js\"></script>\n<link href=\"site_libs/tocify-1.9.1/jquery.tocify.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/tocify-1.9.1/jquery.tocify.js\"></script>\n<script src=\"site_libs/navigation-1.1/tabsets.js\"></script>\n<link href=\"site_libs/highlightjs-9.12.0/default.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/highlightjs-9.12.0/highlight.js\"></script>\n<link href=\"site_libs/font-awesome-5.1.0/css/all.css\" rel=\"stylesheet\" />\n<link href=\"site_libs/font-awesome-5.1.0/css/v4-shims.css\" rel=\"stylesheet\" />\n<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n</head>\n\n\n\n  <div class=\"image-descript\"> \n\t\t<img class=\"big_image\" src=\"images/big_image/cave.jpg\">\n\t\t<div class=\"image-text\">\n\t\t\t<div class=\"lil-image-text\">Measures of centrality:</div>\n\t\t\t<div class=\"big-image-text\"><strong>MEAN, MEDIAN, & MODE</strong></div>\n\t\t</div>\n  </div>\n\n<style type=\"text/css\">\n  code{white-space: pre-wrap;}\n  span.smallcaps{font-variant: small-caps;}\n  span.underline{text-decoration: underline;}\n  div.column{display: inline-block; vertical-align: top; width: 50%;}\n  div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}\n  ul.task-list{list-style: none;}\n    </style>\n\n<style type=\"text/css\">code{white-space: pre;}</style>\n<script type=\"text/javascript\">\nif (window.hljs) {\n  hljs.configure({languages: []});\n  hljs.initHighlightingOnLoad();\n  if (document.readyState && document.readyState === \"complete\") {\n    window.setTimeout(function() { hljs.initHighlighting(); }, 0);\n  }\n}\n</script>\n\n\n\n\n\n\n\n\n\n<style type = \"text/css\">\n.main-container {\n  max-width: 940px;\n  margin-left: auto;\n  margin-right: auto;\n}\nimg {\n  max-width:100%;\n}\n.tabbed-pane {\n  padding-top: 12px;\n}\n.html-widget {\n  margin-bottom: 20px;\n}\nbutton.code-folding-btn:focus {\n  outline: none;\n}\nsummary {\n  display: list-item;\n}\ndetails > summary > p:only-child {\n  display: inline;\n}\npre code {\n  padding: 0;\n}\n</style>\n\n\n<style type=\"text/css\">\n.dropdown-submenu {\n  position: relative;\n}\n.dropdown-submenu>.dropdown-menu {\n  top: 0;\n  left: 100%;\n  margin-top: -6px;\n  margin-left: -1px;\n  border-radius: 0 6px 6px 6px;\n}\n.dropdown-submenu:hover>.dropdown-menu {\n  display: block;\n}\n.dropdown-submenu>a:after {\n  display: block;\n  content: \" \";\n  float: right;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n  border-width: 5px 0 5px 5px;\n  border-left-color: #cccccc;\n  margin-top: 5px;\n  margin-right: -10px;\n}\n.dropdown-submenu:hover>a:after {\n  border-left-color: #adb5bd;\n}\n.dropdown-submenu.pull-left {\n  float: none;\n}\n.dropdown-submenu.pull-left>.dropdown-menu {\n  left: -100%;\n  margin-left: 10px;\n  border-radius: 6px 0 6px 6px;\n}\n</style>\n\n<script type=\"text/javascript\">\n// manage active state of menu based on current page\n$(document).ready(function () {\n  // active menu anchor\n  href = window.location.pathname\n  href = href.substr(href.lastIndexOf('/') + 1)\n  if (href === \"\")\n    href = \"index.html\";\n  var menuAnchor = $('a[href=\"' + href + '\"]');\n\n  // mark it active\n  menuAnchor.tab('show');\n\n  // if it's got a parent navbar menu mark it active as well\n  menuAnchor.closest('li.dropdown').addClass('active');\n\n  // Navbar adjustments\n  var navHeight = $(\".navbar\").first().height() + 15;\n  var style = document.createElement('style');\n  var pt = \"padding-top: \" + navHeight + \"px; \";\n  var mt = \"margin-top: -\" + navHeight + \"px; \";\n  var css = \"\";\n  // offset scroll position for anchor links (for fixed navbar)\n  for (var i = 1; i <= 6; i++) {\n    css += \".section h\" + i + \"{ \" + pt + mt + \"}\\n\";\n  }\n  style.innerHTML = \"body {\" + pt + \"padding-bottom: 40px; }\\n\" + css;\n  document.head.appendChild(style);\n});\n</script>\n\n<!-- tabsets -->\n\n<style type=\"text/css\">\n.tabset-dropdown > .nav-tabs {\n  display: inline-table;\n  max-height: 500px;\n  min-height: 44px;\n  overflow-y: auto;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n}\n\n.tabset-dropdown > .nav-tabs > li.active:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {\n  content: \"&#xe258;\";\n  border: none;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs > li.active {\n  display: block;\n}\n\n.tabset-dropdown > .nav-tabs > li > a,\n.tabset-dropdown > .nav-tabs > li > a:focus,\n.tabset-dropdown > .nav-tabs > li > a:hover {\n  border: none;\n  display: inline-block;\n  border-radius: 4px;\n  background-color: transparent;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li {\n  display: block;\n  float: none;\n}\n\n.tabset-dropdown > .nav-tabs > li {\n  display: none;\n}\n</style>\n\n<!-- code folding -->\n\n\n\n<style type=\"text/css\">\n\n#TOC {\n  margin: 25px 0px 20px 0px;\n}\n@media (max-width: 768px) {\n#TOC {\n  position: relative;\n  width: 100%;\n}\n}\n\n@media print {\n.toc-content {\n  /* see https://github.com/w3c/csswg-drafts/issues/4434 */\n  float: right;\n}\n}\n\n.toc-content {\n  padding-left: 30px;\n  padding-right: 40px;\n}\n\ndiv.main-container {\n  max-width: 1200px;\n}\n\ndiv.tocify {\n  width: 20%;\n  max-width: 260px;\n  max-height: 85%;\n}\n\n@media (min-width: 768px) and (max-width: 991px) {\n  div.tocify {\n    width: 25%;\n  }\n}\n\n@media (max-width: 767px) {\n  div.tocify {\n    width: 100%;\n    max-width: none;\n  }\n}\n\n.tocify ul, .tocify li {\n  line-height: 20px;\n}\n\n.tocify-subheader .tocify-item {\n  font-size: 0.90em;\n}\n\n.tocify .list-group-item {\n  border-radius: 0px;\n}\n\n\n</style>\n\n\n\n</head>\n\n<body>\n\n\n<div class=\"container-fluid main-container\">\n\n\n<!-- setup 3col/9col grid for toc_float and main content  -->\n<div class=\"row\">\n<div class=\"col-xs-12 col-sm-4 col-md-3\">\n<div id=\"TOC\" class=\"tocify\">\n</div>\n</div>\n\n<div class=\"toc-content col-xs-12 col-sm-8 col-md-9\">\n\n\n\n\n<div class=\"navbar navbar-default  navbar-fixed-top\" role=\"navigation\">\n  <div class=\"container\">\n    <div class=\"navbar-header\">\n      <button type=\"button\" class=\"navbar-toggle collapsed\" data-toggle=\"collapse\" data-bs-toggle=\"collapse\" data-target=\"#navbar\" data-bs-target=\"#navbar\">\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n      </button>\n      <a class=\"navbar-brand\" href=\"index.html\"> </a>\n    </div>\n    <div id=\"navbar\" class=\"navbar-collapse collapse\">\n      <ul class=\"nav navbar-nav\">\n        <li>\n  <a href=\"index.html\">\n    <span class=\"fa fa-home\"></span>\n     \n  </a>\n</li>\n<li>\n  <a href=\"00_narrative.html\">History of Teacup Giraffes</a>\n</li>\n<li class=\"dropdown\">\n  <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\" role=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\">\n    Modules\n     \n    <span class=\"caret\"></span>\n  </a>\n  <ul class=\"dropdown-menu\" role=\"menu\">\n    <li>\n      <a href=\"01_introToR.html\">Intro to R</a>\n    </li>\n    <li>\n      <a href=\"02_bellCurve.html\">Intro to the Normal Distribution</a>\n    </li>\n    <li>\n      <a href=\"03_mean.html\">Mean, Median, Mode</a>\n    </li>\n    <li>\n      <a href=\"04_variance.html\">Spread of the Data</a>\n    </li>\n    <li>\n      <a href=\"05_correlation.html\">Covariance and Correlation</a>\n    </li>\n    <li>\n      <a href=\"06_standardError.html\">Standard Error</a>\n    </li>\n  </ul>\n</li>\n<li>\n  <a href=\"aboutTheAuthors.html\">About the Authors</a>\n</li>\n      </ul>\n      <ul class=\"nav navbar-nav navbar-right\">\n        <li>\n  <a href=\"https://github.com/tinystats/teacups-giraffes-and-statistics\">\n    <span class=\"fa fa-github\"></span>\n     \n  </a>\n</li>\n      </ul>\n    </div><!--/.nav-collapse -->\n  </div><!--/.container -->\n</div><!--/.navbar -->\n\n<div id=\"header\">\n\n\n\n<h1 class=\"title toc-ignore\">Mean, Median, and Mode</h1>\n\n</div>\n\n\n<div class=\"obj\">\n<p><strong>Module learning objectives</strong></p>\n<ol style=\"list-style-type: decimal\">\n<li>Describe 3 measures of centrality</li>\n<li>Explain the mathematical notation used for calculating the mean</li>\n<li>Write a function which calculates the mean for any vector</li>\n<li>Write a function which calculates the median for any vector</li>\n<li>Describe how the reliability of a sample mean will scale with increasing sample size</li>\n</ol>\n</div>\n<div id=\"what-are-measures-of-centrality\" class=\"section level1\">\n<h1>What are measures of centrality?</h1>\n<p><br />\n</p>\n<p><img src=\"images/03_mean/mean_hist.png\" width=\"500px\" style=\"display: block; margin: auto;\" /></p>\n<p><br />\n</p>\n<p>You’ve just collected a lot data and graphed heights. Although informative, a graphical display of these data is difficult to summarize – we need to describe these heights with a single number that will be meaningful and allow us to do statistics.</p>\n<p>We can do this with a <strong>measure of centrality</strong>, the concept that one number in the “center” of the data set is a good summary of all the values. Below are examples of different measures of centrality.</p>\n<ul>\n<li><p>The <strong>mean</strong> is the average and the measure of centrality that you are probably most familiar with. This is a good measure to use when the data are normally distributed. We describe it in detail below.</p></li>\n<li><p>The <strong>median</strong> is the value in the middle of the data set. Half of the observations lie above the median and half below. When the data are normally distributed, the median and the mean will be very close to each other. When your data are not normally distributed (skewed to the left or right) the median is a more appropriate measure of centrality (see the animation below).</p></li>\n</ul>\n<p><br />\n</p>\n<center>\n<img src=\"images/03_mean/median.gif\" />\n</center>\n<p><br />\n</p>\n<ul>\n<li>The <strong>mode</strong> is the value (height, in our case) that occurs most frequently in the data set. It’s not typically used in statistics, and we won’t cover it further here.</li>\n</ul>\n<p><br />\n</p>\n</div>\n<div id=\"taking-the-mean\" class=\"section level1\">\n<h1>Taking the mean</h1>\n<p>The mean of a variable is the sum of its values, divided by the number of values.</p>\n<p>This concept can be represented with equation below. In our case, each “x” represents a giraffe height (i.e. a single observation), and the numerical subscript indicates its order in the sample. We’ll use <span class=\"math inline\">\\({\\bar{x}}\\)</span> (read “x-bar”) to represent the mean of the height variable.</p>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<span class=\"math display\" id=\"eq:equation1\">\\[\\begin{equation}\n\\tag{1}\n\\Large{\\bar{x}} = \\frac{x_1 + x_2 + ... + x_n}{n}\n\\end{equation}\\]</span>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<p>To make this more efficient, instead of writing “<span class=\"math inline\">\\({x_1 + x_2 + ... + x_n}\\)</span>”, we can use the uppercase sigma symbol <span class=\"math inline\">\\(\\sum{}\\)</span> to represent summation of all the observations.</p>\n<p><br />\n</p>\n<p><span class=\"math display\" id=\"eq:equation2\">\\[\\begin{equation}\n\\tag{2}\n\\Large{\\bar{x}} = \\frac{\\sum_{i=1}^{n}{x_i}}{n}\n\\end{equation}\\]</span></p>\n<p><br />\n</p>\n<p>This might look intimidating, but equation <a href=\"#eq:equation2\">(2)</a> is really showing the same thing as <a href=\"#eq:equation1\">(1)</a>. Let’s go through the steps again, breaking the symbols apart a bit (see annotated equation <a href=\"#eq:equation3\">(3)</a> below). The sigma means ‘add up’. What are we adding up? All the heights “x”. The “i = ” part indicates which term to begin with. For our purposes, this will always be the first observation, hence <span class=\"math inline\">\\(i\\)</span> = 1. The character on top of the sigma is the last observation we include in our summation. In this case it’s n – because we’re adding all n = 50 observations in each group of giraffes. In both equations, we still divide by the total number of observations in each group we have: again, n.</p>\n<p><br />\n</p>\n<center>\n<span class=\"math display\" id=\"eq:equation3\">\\[\\begin{equation}\n\\tag{3}\n\\vcenter{\\img[width=400px]{images/03_mean/eq_annotated.png}}\n\\end{equation}\\]</span>\n</center>\n</div>\n<div id=\"notation-for-sample-vs-population\" class=\"section level1\">\n<h1>Notation for sample vs population</h1>\n<p>Recall our discussion about a <a href=\"02_bellCurve.html#bell-ttta\">sample versus a population</a>. Different symbols are used to represent the mean for each of these. We’ve already discussed <span class=\"math inline\">\\(\\bar{x}\\)</span> for the sample mean. The analogous symbol for the population mean is <span class=\"math inline\">\\({\\mu}\\)</span> (read “mu”). Additionally, when referring to the size of the population, we will use a capital <span class=\"math inline\">\\({N}\\)</span> instead of a lowercase one.</p>\n<p><br />\n</p>\n</div>\n<div id=\"code-it-up\" class=\"section level1\">\n<h1>Code it up</h1>\nUsing <a href=\"#eq:equation2\">(2)</a>, it’s easy to translate this equation into code in R. The heights recorded from island 1 have been stored in a vector called <code>heights_island1</code>. Below we show the first few observations from this vector, using the <code>head()</code> function.\n<div style=\"margin-bottom:15px\">\n\n</div>\n<pre class=\"r\"><code>head(heights_island1)</code></pre>\n<pre><code>## [1]  7.038865 13.154339  8.086511  8.159990  6.004716  9.455408</code></pre>\n<p><br />\n</p>\n<p>Use the interactive window below to calculate the mean “by hand”.</p>\n<!---LEARNR EX 1-->\n<iframe class=\"interactive\" id=\"myIframe1\" src=\"https://tinystats.shinyapps.io/03-mean-ex1/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n</div>\n<div id=\"create-your-own-function\" class=\"section level1\">\n<h1>Create your own function</h1>\n<p>Now it’s your turn to write your own function. Call it “my_mean” and have it calculate the mean of any given vector. You’re going to use the rules for writing a function in R that you’ve used previously. As a reminder, you’ll use <code>function()</code> and embed your code (that you completed in the window above) within curly brackets<code>{}</code>. The advantage of making a “homemade” function is that you can string together all the steps from the previous exercise into a single command.</p>\n<!---LEARNR EX 2-->\n<iframe class=\"interactive\" id=\"myIframe2\" src=\"https://tinystats.shinyapps.io/03-mean-ex2/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n<p>You can also complete the exercise above in RStudio on your local computer. This way you will be able to save your <code>my_mean()</code> function and script for future use.</p>\n<p><br />\n</p>\n</div>\n<div id=\"take-a-tea-break\" class=\"section level1\">\n<h1>Take a tea break!</h1>\n<p><img src=\"images/03_mean/Teacup.png\" width=\"600px\" style=\"display: block; margin: auto;\" /></p>\n</div>\n<div id=\"taking-the-median\" class=\"section level1\">\n<h1>Taking the median</h1>\n<p>To calculate the median go through the following steps:</p>\n<ul>\n<li>Assess whether there is an odd or even number of observations</li>\n<li>Order all observations from smallest to largest</li>\n<li>If an odd number, then the median is the middle value at position: (n + 1) / 2</li>\n<li>If an even number, then:\n<ul>\n<li>Find the value at the position: n / 2</li>\n<li>Find the value at the position: (n / 2) + 1</li>\n<li>The median will be the mean of the values at these two positions.</li>\n</ul></li>\n</ul>\n<p>Before you write your own median function, two concepts need to be introduced: 1) the modulus operator <code>%%</code> and 2) <code>if...else</code> statements.</p>\nThe <strong>modulus operation</strong> gives the remainder after division of one number by another. For example, in R <code>11 %% 5</code> returns the <code>1</code>, which is the remainer of <code>11</code> divided by <code>5</code>. If the modulus operation returns <code>0</code>, then there is no remainder. It is useful to apply the modulus operation <code>x %% 2</code> to determine whether a number <code>x</code> is even or odd by testing if the result is exactly equal to 0. See example code below.\n<div style=\"margin-bottom:15px\">\n<style>\n  .col2 {\n    columns: 2 200px;         /* number of columns and width in pixels*/\n    -webkit-columns: 2 200px; /* chrome, safari */\n    -moz-columns: 2 200px;    /* firefox */\n  }\n</style>\n</div>\n<div class=\"col2\">\n<pre class=\"r\"><code>&gt; 10 %% 2</code></pre>\n<pre><code>## [1] 0</code></pre>\n<pre class=\"r\"><code>&gt; 10 %% 2 == 0</code></pre>\n<pre><code>## [1] TRUE</code></pre>\n<pre class=\"r\"><code>&gt; 11 %% 2</code></pre>\n<pre><code>## [1] 1</code></pre>\n<pre class=\"r\"><code>&gt; 11 %% 2 == 0</code></pre>\n<pre><code>## [1] FALSE</code></pre>\n</div>\n<p><br />\n</p>\n<p>An <code>if...else</code> statement is useful when you want to specify distinct outcomes for objects dependent on whether they meet your set criteria. See below.</p>\n<!---LEARNR EX 3-->\n<iframe class=\"interactive\" id=\"myIframe3\" src=\"https://tinystats.shinyapps.io/03-mean-ex3/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n<p>Now that you have a sense for how the <code>%%</code> operator can be used to test whether a number is EVEN or ODD, and how <code>if...else</code> statements work, use both of these concepts in the window below to write your own function that calculates the median of any vector.</p>\n<!---LEARNR EX 4-->\n<iframe class=\"interactive\" id=\"myIframe4\" src=\"https://tinystats.shinyapps.io/03-mean-ex4b/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n</div>\n<div id=\"things-to-think-about\" class=\"section level1\">\n<h1>Things to think about</h1>\n<p>Remember that the sample mean is an estimate of the entire population’s mean (which would often be impossibly large to measure). How reliably does the mean of a sample represent the population mean? <em>Warning</em>: if a small sample has been used, the sample mean may not be a reliable at all! Estimates from small samples are subject to the whims of randomness. On the other hand, the larger the sample, the closer the sample size appraches the population size, and the more reliable the sample estimate becomes.</p>\n<p>Pressing ‘Play’ on the plot below will illustrate this concept.\n<a name=\"mean_animation\"></p>\n</a>\n<center>\n<iframe style=\"margin: 0px;\" src=\"images/03_mean/Law_of_large_numbers.html\" width=\"570\" height=\"400\" scrolling=\"yes\" seamless=\"seamless\" frameBorder=\"0\">\n</iframe>\n</center>\n<script type=\"text/x-mathjax-config\">\n    MathJax.Ajax.config.path[\"img\"] = \"https://cdn.rawgit.com/pkra/mathjax-img/1.0.0/\";\n    MathJax.Hub.Config({\n    extensions: [\"tex2jax.js\",\"[img]/img.js\"],\n    jax: [\"input/TeX\",\"output/HTML-CSS\"],\n    tex2jax: {inlineMath: [[\"$\",\"$\"],[\"\\\\(\",\"\\\\)\"]]},\n    });\n </script>\n<ul>\n<li>The animation above shows the values of means calculated from increasingly larger samples: small samples on the left and larger samples to the right (on the x-axis).</li>\n<li>Each point on the zig-zag line is the mean calculated from a random sample. The true mean of the population is 0.</li>\n<li>The y-axis shows what the mean is for a sample of that particular size. Though the y-values vary here, remember that if the sample were a good estimate of the population, the y-values should be very close to 0.<br />\n</li>\n<li>You can see that when the samples are small the sample mean isn’t necessarily a good representation of the population that it was sampled from–and that is not a good thing.</li>\n</ul>\n<p>For further reading see the <a href=\"https://en.wikipedia.org/wiki/Law_of_large_numbers\">Law of Large Numbers</a>.</p>\n<script>\n  iFrameResize({}, \".interactive\");\n</script>\n</div>\n\n<!DOCTYPE html>\n\n<div class=\"foot\">\n\t<hr> \n\t<p style=\"text-align: center;\"> <span style=\"color: #808080; display: inline-block; width: 58%;\"> \tThis project was created entirely in RStudio using R Markdown and published on GitHub pages. \n </span></p>\n\t<p style=\"text-align: center;\">\n\t</p>\n</div>\n\n\n</div>\n</div>\n\n</div>\n\n<script>\n\n// add bootstrap table styles to pandoc tables\nfunction bootstrapStylePandocTables() {\n  $('tr.odd').parent('tbody').parent('table').addClass('table table-condensed');\n}\n$(document).ready(function () {\n  bootstrapStylePandocTables();\n});\n\n\n</script>\n\n<!-- tabsets -->\n\n<script>\n$(document).ready(function () {\n  window.buildTabsets(\"TOC\");\n});\n\n$(document).ready(function () {\n  $('.tabset-dropdown > .nav-tabs > li').click(function () {\n    $(this).parent().toggleClass('nav-tabs-open');\n  });\n});\n</script>\n\n<!-- code folding -->\n\n<script>\n$(document).ready(function ()  {\n\n    // temporarily add toc-ignore selector to headers for the consistency with Pandoc\n    $('.unlisted.unnumbered').addClass('toc-ignore')\n\n    // move toc-ignore selectors from section div to header\n    $('div.section.toc-ignore')\n        .removeClass('toc-ignore')\n        .children('h1,h2,h3,h4,h5').addClass('toc-ignore');\n\n    // establish options\n    var options = {\n      selectors: \"h1,h2,h3\",\n      theme: \"bootstrap3\",\n      context: '.toc-content',\n      hashGenerator: function (text) {\n        return text.replace(/[.\\\\/?&!#<>]/g, '').replace(/\\s/g, '_');\n      },\n      ignoreSelector: \".toc-ignore\",\n      scrollTo: 0\n    };\n    options.showAndHide = true;\n    options.smoothScroll = true;\n\n    // tocify\n    var toc = $(\"#TOC\").tocify(options).data(\"toc-tocify\");\n});\n</script>\n\n<!-- dynamically load mathjax for compatibility with self-contained -->\n<script>\n  (function () {\n    var script = document.createElement(\"script\");\n    script.type = \"text/javascript\";\n    script.src  = \"https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML\";\n    document.getElementsByTagName(\"head\")[0].appendChild(script);\n  })();\n</script>\n\n</body>\n</html>\n"
  },
  {
    "path": "docs/04_variance.html",
    "content": "<!DOCTYPE html>\n\n<html>\n\n<head>\n\n<meta charset=\"utf-8\" />\n<meta name=\"generator\" content=\"pandoc\" />\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=EDGE\" />\n\n\n\n\n<title>The Spread of the Data</title>\n\n<script src=\"site_libs/jquery-3.6.0/jquery-3.6.0.min.js\"></script>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n<link href=\"site_libs/bootstrap-3.3.5/css/cosmo.min.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/bootstrap-3.3.5/js/bootstrap.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/html5shiv.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/respond.min.js\"></script>\n<style>h1 {font-size: 34px;}\n       h1.title {font-size: 38px;}\n       h2 {font-size: 30px;}\n       h3 {font-size: 24px;}\n       h4 {font-size: 18px;}\n       h5 {font-size: 16px;}\n       h6 {font-size: 12px;}\n       code {color: inherit; background-color: rgba(0, 0, 0, 0.04);}\n       pre:not([class]) { background-color: white }</style>\n<script src=\"site_libs/jqueryui-1.11.4/jquery-ui.min.js\"></script>\n<link href=\"site_libs/tocify-1.9.1/jquery.tocify.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/tocify-1.9.1/jquery.tocify.js\"></script>\n<script src=\"site_libs/navigation-1.1/tabsets.js\"></script>\n<link href=\"site_libs/highlightjs-9.12.0/default.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/highlightjs-9.12.0/highlight.js\"></script>\n<link href=\"site_libs/font-awesome-5.1.0/css/all.css\" rel=\"stylesheet\" />\n<link href=\"site_libs/font-awesome-5.1.0/css/v4-shims.css\" rel=\"stylesheet\" />\n<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n\n</head>\n\n  <div class=\"image-descript\"> \n\t\t<img class=\"big_image\" src=\"images/big_image/giraffe_beach.jpg\">\n\t\t<div class=\"image-text\">\n\t\t\t<div class=\"lil-image-text\">The Spread of the Data:</div>\n\t\t\t<div class=\"big-image-text\"><strong>VARIANCE & STANDARD DEVIATION</strong></div>\n\t\t</div>\n  </div>\n\n<style type=\"text/css\">\n  code{white-space: pre-wrap;}\n  span.smallcaps{font-variant: small-caps;}\n  span.underline{text-decoration: underline;}\n  div.column{display: inline-block; vertical-align: top; width: 50%;}\n  div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}\n  ul.task-list{list-style: none;}\n    </style>\n\n<style type=\"text/css\">code{white-space: pre;}</style>\n<script type=\"text/javascript\">\nif (window.hljs) {\n  hljs.configure({languages: []});\n  hljs.initHighlightingOnLoad();\n  if (document.readyState && document.readyState === \"complete\") {\n    window.setTimeout(function() { hljs.initHighlighting(); }, 0);\n  }\n}\n</script>\n\n\n\n\n\n\n\n\n\n<style type = \"text/css\">\n.main-container {\n  max-width: 940px;\n  margin-left: auto;\n  margin-right: auto;\n}\nimg {\n  max-width:100%;\n}\n.tabbed-pane {\n  padding-top: 12px;\n}\n.html-widget {\n  margin-bottom: 20px;\n}\nbutton.code-folding-btn:focus {\n  outline: none;\n}\nsummary {\n  display: list-item;\n}\ndetails > summary > p:only-child {\n  display: inline;\n}\npre code {\n  padding: 0;\n}\n</style>\n\n\n<style type=\"text/css\">\n.dropdown-submenu {\n  position: relative;\n}\n.dropdown-submenu>.dropdown-menu {\n  top: 0;\n  left: 100%;\n  margin-top: -6px;\n  margin-left: -1px;\n  border-radius: 0 6px 6px 6px;\n}\n.dropdown-submenu:hover>.dropdown-menu {\n  display: block;\n}\n.dropdown-submenu>a:after {\n  display: block;\n  content: \" \";\n  float: right;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n  border-width: 5px 0 5px 5px;\n  border-left-color: #cccccc;\n  margin-top: 5px;\n  margin-right: -10px;\n}\n.dropdown-submenu:hover>a:after {\n  border-left-color: #adb5bd;\n}\n.dropdown-submenu.pull-left {\n  float: none;\n}\n.dropdown-submenu.pull-left>.dropdown-menu {\n  left: -100%;\n  margin-left: 10px;\n  border-radius: 6px 0 6px 6px;\n}\n</style>\n\n<script type=\"text/javascript\">\n// manage active state of menu based on current page\n$(document).ready(function () {\n  // active menu anchor\n  href = window.location.pathname\n  href = href.substr(href.lastIndexOf('/') + 1)\n  if (href === \"\")\n    href = \"index.html\";\n  var menuAnchor = $('a[href=\"' + href + '\"]');\n\n  // mark it active\n  menuAnchor.tab('show');\n\n  // if it's got a parent navbar menu mark it active as well\n  menuAnchor.closest('li.dropdown').addClass('active');\n\n  // Navbar adjustments\n  var navHeight = $(\".navbar\").first().height() + 15;\n  var style = document.createElement('style');\n  var pt = \"padding-top: \" + navHeight + \"px; \";\n  var mt = \"margin-top: -\" + navHeight + \"px; \";\n  var css = \"\";\n  // offset scroll position for anchor links (for fixed navbar)\n  for (var i = 1; i <= 6; i++) {\n    css += \".section h\" + i + \"{ \" + pt + mt + \"}\\n\";\n  }\n  style.innerHTML = \"body {\" + pt + \"padding-bottom: 40px; }\\n\" + css;\n  document.head.appendChild(style);\n});\n</script>\n\n<!-- tabsets -->\n\n<style type=\"text/css\">\n.tabset-dropdown > .nav-tabs {\n  display: inline-table;\n  max-height: 500px;\n  min-height: 44px;\n  overflow-y: auto;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n}\n\n.tabset-dropdown > .nav-tabs > li.active:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {\n  content: \"&#xe258;\";\n  border: none;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs > li.active {\n  display: block;\n}\n\n.tabset-dropdown > .nav-tabs > li > a,\n.tabset-dropdown > .nav-tabs > li > a:focus,\n.tabset-dropdown > .nav-tabs > li > a:hover {\n  border: none;\n  display: inline-block;\n  border-radius: 4px;\n  background-color: transparent;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li {\n  display: block;\n  float: none;\n}\n\n.tabset-dropdown > .nav-tabs > li {\n  display: none;\n}\n</style>\n\n<!-- code folding -->\n\n\n\n<style type=\"text/css\">\n\n#TOC {\n  margin: 25px 0px 20px 0px;\n}\n@media (max-width: 768px) {\n#TOC {\n  position: relative;\n  width: 100%;\n}\n}\n\n@media print {\n.toc-content {\n  /* see https://github.com/w3c/csswg-drafts/issues/4434 */\n  float: right;\n}\n}\n\n.toc-content {\n  padding-left: 30px;\n  padding-right: 40px;\n}\n\ndiv.main-container {\n  max-width: 1200px;\n}\n\ndiv.tocify {\n  width: 20%;\n  max-width: 260px;\n  max-height: 85%;\n}\n\n@media (min-width: 768px) and (max-width: 991px) {\n  div.tocify {\n    width: 25%;\n  }\n}\n\n@media (max-width: 767px) {\n  div.tocify {\n    width: 100%;\n    max-width: none;\n  }\n}\n\n.tocify ul, .tocify li {\n  line-height: 20px;\n}\n\n.tocify-subheader .tocify-item {\n  font-size: 0.90em;\n}\n\n.tocify .list-group-item {\n  border-radius: 0px;\n}\n\n\n</style>\n\n\n\n</head>\n\n<body>\n\n\n<div class=\"container-fluid main-container\">\n\n\n<!-- setup 3col/9col grid for toc_float and main content  -->\n<div class=\"row\">\n<div class=\"col-xs-12 col-sm-4 col-md-3\">\n<div id=\"TOC\" class=\"tocify\">\n</div>\n</div>\n\n<div class=\"toc-content col-xs-12 col-sm-8 col-md-9\">\n\n\n\n\n<div class=\"navbar navbar-default  navbar-fixed-top\" role=\"navigation\">\n  <div class=\"container\">\n    <div class=\"navbar-header\">\n      <button type=\"button\" class=\"navbar-toggle collapsed\" data-toggle=\"collapse\" data-bs-toggle=\"collapse\" data-target=\"#navbar\" data-bs-target=\"#navbar\">\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n      </button>\n      <a class=\"navbar-brand\" href=\"index.html\"> </a>\n    </div>\n    <div id=\"navbar\" class=\"navbar-collapse collapse\">\n      <ul class=\"nav navbar-nav\">\n        <li>\n  <a href=\"index.html\">\n    <span class=\"fa fa-home\"></span>\n     \n  </a>\n</li>\n<li>\n  <a href=\"00_narrative.html\">History of Teacup Giraffes</a>\n</li>\n<li class=\"dropdown\">\n  <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\" role=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\">\n    Modules\n     \n    <span class=\"caret\"></span>\n  </a>\n  <ul class=\"dropdown-menu\" role=\"menu\">\n    <li>\n      <a href=\"01_introToR.html\">Intro to R</a>\n    </li>\n    <li>\n      <a href=\"02_bellCurve.html\">Intro to the Normal Distribution</a>\n    </li>\n    <li>\n      <a href=\"03_mean.html\">Mean, Median, Mode</a>\n    </li>\n    <li>\n      <a href=\"04_variance.html\">Spread of the Data</a>\n    </li>\n    <li>\n      <a href=\"05_correlation.html\">Covariance and Correlation</a>\n    </li>\n    <li>\n      <a href=\"06_standardError.html\">Standard Error</a>\n    </li>\n  </ul>\n</li>\n<li>\n  <a href=\"aboutTheAuthors.html\">About the Authors</a>\n</li>\n      </ul>\n      <ul class=\"nav navbar-nav navbar-right\">\n        <li>\n  <a href=\"https://github.com/tinystats/teacups-giraffes-and-statistics\">\n    <span class=\"fa fa-github\"></span>\n     \n  </a>\n</li>\n      </ul>\n    </div><!--/.nav-collapse -->\n  </div><!--/.container -->\n</div><!--/.navbar -->\n\n<div id=\"header\">\n\n\n\n<h1 class=\"title toc-ignore\">The Spread of the Data</h1>\n\n</div>\n\n\n<div class=\"obj\">\n<p><strong>Module learning objectives</strong></p>\n<ol style=\"list-style-type: decimal\">\n<li>Describe the steps for constructing the sum of squares</li>\n<li>Describe how the standard deviations can allow us to determine which data values are common or rare</li>\n<li>Write a function for the variance and standard deviation</li>\n<li>Explain why the sample variance would be downwardly biased if we did not correct it by diving by (n-1)</li>\n</ol>\n</div>\n<div id=\"measures-of-spread\" class=\"section level1\">\n<h1>Measures of spread</h1>\n<p>After successfully computing the mean, you return to the memory of the first day you had collected data. There was one teacup giraffe that was your favorite– it was relatively small with purple spots and perky tail! You begin to wonder how rare it would be to encounter a giraffe smaller than this one. To answer this question, you need to be able to calculate a <strong>measure of spread</strong>.</p>\n<center>\n<img src=\"images/04_variance/holding.png\" width=\"600\" />\n</center>\n<p>You might start by quantifying the simplest measure of spread, the <strong>range</strong>. This at least tells us the boundaries within which all the sample heights fall, but the range ignores important contextual information. For example, two data sets can have very different spreads but still have the same range.</p>\n<center>\n<img src=\"images/04_variance/Range.png\" width=\"600\" />\n</center>\n<p>If we want to avoid undue influence of outliers for the measure of spread, the range is not good enough to provide us with a wholistic, robust measure.</p>\n<p>What is a more stable measurement? The answer is the <strong>variance</strong>.</p>\n</div>\n<div id=\"variance-in-plain-language\" class=\"section level1\">\n<h1>Variance in plain language</h1>\n<p>You need a solid understanding of variance in order to grasp the mechanics of any statistical test. But what does the concept variance really capture?</p>\n<ul>\n<li>Recall the normal distribution: when we inspect the distributions below visually, we see that they all have the same mean, but some distributions are more spread out. Bell curves that are more “squished together” are composed of observations that are more similar to one another, while bell curves that are more “spread out” are composed of observations that have greater variability. Wider bell-curves mean greater variance! In plain language, the variance gives us an idea of how similar observations are to one another, and to the average value.</li>\n</ul>\n<p><img src=\"images/04_variance/bells_edited-04.png\" /></p>\n</div>\n<div id=\"how-to-calculate-variance\" class=\"section level1\">\n<h1>How to calculate variance</h1>\n<p>Let’s begin by going through the steps and equations for calculating the variance of a <em>population</em>. We’ll explain how to modify this for calculating the <em>sample</em> variance later on.</p>\n<p>First, the idea is to capture how far away individual observations lie from the mean. In other words, we could subtract the mean from each observation. This is called the <strong>deviation</strong> from the mean. And since we’re calculating a <em>population</em> variance, we will use <span class=\"math inline\">\\(\\mu\\)</span> for the mean instead of <span class=\"math inline\">\\({\\bar{x}}\\)</span>.</p>\n<p>Calculating the deviations is a great start, but we’re back to the problem of needing to summarize multiple values. Since these newly calculated values are both negative and positive, we quickly realize that adding them up (like the first step when calculating the mean) would not be a productive idea since the negatives cancel the positives.</p>\n<p>What’s the easiest thing to do when you want to retain how far away a point is from the mean irrespective of whether it’s above or below the mean? How about taking the absolute value?</p>\n<p>Though the absolute value of the deviation would be a valid measure of distance from the mean, it turns out that it has some mathematical properties that don’t make it the best choice, especially for more complex statistial analyses involving the variance later down the line.</p>\n</div>\n<div id=\"why-we-square-the-deviations\" class=\"section level1\">\n<h1>Why we square the deviations</h1>\n<p>There is an alternative with simpler, “better behaved” mathematical properties: <strong>squaring the deviations</strong>. Squaring will always give us positive values, so the values can never cancel each other out. It’s worth pointing out, however, that a consequence of squaring deviations will tend to amplify the influence of values at extreme distances from the mean. You can read <a href=\"https://stats.stackexchange.com/questions/118/why-square-the-difference-instead-of-taking-the-absolute-value-in-standard-devia\">this thread</a> for a more detailed discussion about absolute values versus squared deviations.</p>\n</div>\n<div id=\"sum-of-squares\" class=\"section level1\">\n<h1>Sum of squares</h1>\n<p>Now we have positive, squared deviation values that can be summed to a single total. We call this total <strong>the sum of squares</strong>, and the equation is shown below.</p>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<span class=\"math display\" id=\"eq:equation1\">\\[\\begin{equation}\n\\tag{1}\n\\Large {\\sum_{i=1}^N (x_i - \\mu)^2}\n\\end{equation}\\]</span>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<p>The sum of squares is an important calculation that we will see again for other statistical operations. The animation below illustrates how these sums of squares are “constructed” starting with the sample observations and then squaring each one’s distance away from the mean.</p>\n<p><img src=\"04_variance_files/figure-html/unnamed-chunk-1-.gif\" width=\"691.2\" style=\"display: block; margin: auto;\" /></p>\n<p>Once the squares have been “constructed”, we sum their squares, producing a single value.</p>\n<p><img src=\"images/04_variance/Squares1.png\" /></p>\n</div>\n<div id=\"variance-sigma2\" class=\"section level1\">\n<h1>Variance, <span class=\"math inline\">\\(\\sigma^2\\)</span></h1>\n<p>We need to take into account how many observations contributed to these sum of squares. So, we divide the sum of squares by N. This step essentially takes the average of the squared differences from the mean. This is the variance.</p>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<span class=\"math display\" id=\"eq:equation2\">\\[\\begin{equation}\n\\tag{2}\n\\Large \\sigma^2 = \\frac{\\sum_{i=1}^N (x_i - \\mu)^2}{N}\n\\end{equation}\\]</span>\n<div style=\"margin-bottom:50px\">\n\n</div>\n</div>\n<div id=\"standard-deviation-sigma\" class=\"section level1\">\n<h1>Standard Deviation, <span class=\"math inline\">\\(\\sigma\\)</span></h1>\n<p>The problem with variance is that its value is not easily interpretable, the units will be squared and therefore not on the same scale as the mean. It would not be very intuitive to interpret giraffe heights written in <em>millimeters squared</em>! The <strong>standard deviation</strong> fixes that. We “un-square” the variance, and now we return to the data’s original units (millimeters). The standard deviation equation is below:</p>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<span class=\"math display\" id=\"eq:equation3\">\\[\\begin{equation}\n\\tag{3}\n\\Large \\sigma = \\sqrt{\\frac{\\sum_{i=1}^N (x_i - \\mu)^2}{N}}\n\\end{equation}\\]</span>\n<div style=\"margin-bottom:50px\">\n\n</div>\n</div>\n<div id=\"population-vs-sample-equations\" class=\"section level1\">\n<h1>Population vs sample equations</h1>\n<p>One more thing: the equations above are for calculating the variance and standard deviation of a population. In real life applications, the population equations will almost never be used during data analysis. To calculate the variance and standard deviation for a sample instead, we will need to divide by n-1 instead of N, which we explain at the end of this module. Note that we also change to the corresponding symbols for the sample mean (<span class=\"math inline\">\\(\\bar{x}\\)</span>), sample size (lowercase <span class=\"math inline\">\\(n\\)</span>), and use a lowercase <span class=\"math inline\">\\(s\\)</span> in place of <span class=\"math inline\">\\(\\sigma\\)</span>.</p>\n<p>When we apply this change, our equation for the <strong>sample variance, <span class=\"math inline\">\\(s^2\\)</span> </strong> is:</p>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<span class=\"math display\" id=\"eq:equation4\">\\[\\begin{equation}\n\\tag{4}\n\\Large s^2 = \\frac{\\sum_{i=1}^n (x_i - \\bar{x})^2}{n-1}\n\\end{equation}\\]</span>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<p>And for <strong>sample standard deviation, <span class=\"math inline\">\\(s\\)</span></strong>:</p>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<span class=\"math display\" id=\"eq:equation5\">\\[\\begin{equation}\n\\tag{5}\n\\Large s = \\sqrt{\\frac{\\sum_{i=1}^n (x_i - \\bar{x})^2}{n-1}}\n\\end{equation}\\]</span>\n<div style=\"margin-bottom:50px\">\n\n</div>\n</div>\n<div id=\"meaning-of-the-standard-deviation\" class=\"section level1\">\n<h1>Meaning of the standard deviation</h1>\n<p>Since we’re now focusing on samples, let’s think about how we can apply the standard deviation in a useful way to normal distributions to predict how “rare” or “common” particular observations in a data set may be. For the normal distribution, almost all of the data will fall within ± 3 standard deviations from the mean. This rule of thumb, called the <strong>empirical rule</strong>, is illustrated below and you can <a href=\"https://newonlinecourses.science.psu.edu/stat200/lesson/2/2.2/2.2.7\">read more about it here</a>.\n<a name=\"empirical\">\n<img src=\"images/04_variance/General_empirical.jpg\" />\n</a></p>\n<ul>\n<li><p>The entire normal distribution includes 100% of the data. The empirical rule states that the interval created by <strong>1 standard deviation above and below the mean includes 68% of all the data</strong>. Observations within these bounds would be fairly common, but it would not be exceedingly rare to observe data that fall <em>outside</em> of these bounds.</p></li>\n<li><p><strong>2 standard deviations above and below the mean</strong> encompasses approximately <strong>95%</strong> of the data. Observations that fall within these bounds include the common and also infrequent observations. Observations that fall <em>outside</em> of 2 standard deviations would be uncommon.</p></li>\n<li><p><strong>3 standard deviations above and below the mean</strong> encompass <strong>99.7%</strong> of the data, capturing almost all possible observations in the set. Observations that fall oustide of these bounds into the extremes of distribution’s tails would be exceedingly rare to observe (but still possible if you sample large enough groups to detect these rare events!).</p></li>\n</ul>\n</div>\n<div id=\"example\" class=\"section level1\">\n<h1>Example</h1>\n<p>Let’s calculate the variance and standard deviation using 6 observations of giraffe heights from a subset of our data, including your favorite small one with the purple spots.</p>\n<ol style=\"list-style-type: decimal\">\n<li><strong>Calculate the sample mean</strong>, <span class=\"math inline\">\\(\\bar{x}\\)</span>:</li>\n</ol>\n<pre class=\"r\"><code>h &lt;- c(113, 146.5, 132, 70.5, 121, 55) \nmean(h)</code></pre>\n<pre><code>## [1] 106.3333</code></pre>\n<p>We’ll plot the mean <span class=\"math inline\">\\(\\bar{x}\\)</span> below with a gray line.</p>\n<p><img src=\"images/04_variance/giraffe_variance1.jpg\" />\n(2) <strong>Find the deviation</strong> from the mean, the difference between each giraffe’s height and <span class=\"math inline\">\\(\\bar{x}\\)</span>.</p>\n<pre class=\"r\"><code>deviation &lt;- h - mean(h)\ndeviation</code></pre>\n<pre><code>## [1]   6.666667  40.166667  25.666667 -35.833333  14.666667 -51.333333</code></pre>\n<p><img src=\"images/04_variance/giraffe_variance2.jpg\" /></p>\n<ol start=\"3\" style=\"list-style-type: decimal\">\n<li><strong>Calculate Variance</strong>: Square the deviations, add them all up to get the sum of squares, and then take the average of the sum of squares (adjusted to “n-1” because we’re using a sample).</li>\n</ol>\n<pre class=\"r\"><code>SS &lt;- sum(deviation^2)\nvariance &lt;-  SS/(length(h)-1) # Divides by N-1\nvariance</code></pre>\n<pre><code>## [1] 1290.167</code></pre>\n<ol start=\"4\" style=\"list-style-type: decimal\">\n<li><strong>Standard Deviation</strong>: Take the square root of the variance.</li>\n</ol>\n<pre class=\"r\"><code>sqrt(variance)</code></pre>\n<pre><code>## [1] 35.91889</code></pre>\n<p>Because the standard devation is a standardized score– we can now focus on particular giraffes and see whether or not they lie within 1 standard deviation of the mean.</p>\n<p><img src=\"images/04_variance/giraffe_variance3.jpg\" /></p>\n<p>We see the little blue spotted giraffe is more than 1 standard deviation below the mean– and so we can conclude that a little guy of his height is rather short– even smaller than your favorite! Similarly, the giraffe with bright pink spots is taller than 1 standard deviation above the mean– quite tall!</p>\n</div>\n<div id=\"standard-deviation-application-example\" class=\"section level1\">\n<h1>Standard deviation application example</h1>\n<p>Using the standard deviation and the empirical rule described earlier, we now finally have the tools to answer our original question from the start of the module: how probable it is to find a giraffe smaller than our favorite purple-spotted one?</p>\n<ul>\n<li><p>Our giraffe of interest happens to be almost exactly 1 standard deviation below the mean, so this makes it easy to assess the probability of encountering a giraffe shorter than him.</p></li>\n<li><p>If we assume our sample comes from a normally distributed population, then <strong>what percentage of giraffes will be shorter than the one with purple spots?</strong></p></li>\n</ul>\n<p><img src=\"images/04_variance/Empirical_example.png\" /></p>\n<p>We can apply the knowledge that the full percentage area under the curve is 100%, and what we know from the empirical rule, to conclude that there is approximately 16% of giraffes will be shorter than the one with purple spots. So, it would be common to find giraffes taller than our favorite but somewhat of a treat to find ones smaller–like the blue one!</p>\n<p>Maybe this explains why the little blue spotted giraffe is so cute— it is not so common to find ones so small!</p>\n</div>\n<div id=\"code-it-up\" class=\"section level1\">\n<h1>Code it up</h1>\n<p>Using <a href=\"#eq:equation4\">(4)</a> and <a href=\"#eq:equation5\">(5)</a>, it’s easy to translate the equations for the variance and standard deviation into code in R.</p>\n<ul>\n<li><p>In the window below, you will write two separate functions, one to calculate the sample variance and another to calculate the sample standard deviation. Name your functions <code>my_variance</code> and <code>my_sd</code>.</p></li>\n<li><p>Test your functions on the vector <code>heights_island1</code> and compare the output of your “handwritten” functions with the base R function of <code>var( )</code> and <code>sd( )</code>.</p></li>\n</ul>\n<!---LEARNR EX 1-->\n<iframe class=\"interactive\" id=\"myIframe1\" src=\"https://tinystats.shinyapps.io/04-variance-ex1/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n<div style=\"margin-top:50px\">\n\n</div>\n<center>\n<img src=\"images/04_variance/Marmalade.png\" width=\"650\" />\n</center>\n</div>\n<div id=\"population-vs-sample-n-vs-n-1\" class=\"section level1\">\n<h1>Population vs Sample (<span class=\"math inline\">\\(N\\)</span> vs <span class=\"math inline\">\\(n-1\\)</span>)</h1>\n<p>We have to correct the calculated variance by dividing by <span class=\"math inline\">\\(n-1\\)</span>. Let’s explain why:</p>\n<ul>\n<li>Let’s recall that when we calculate the sum of squares, we only have the sample mean <span class=\"math inline\">\\(\\bar{x}\\)</span> to go off of as our center point.</li>\n</ul>\n<center>\n<img src=\"images/04_variance/Static_ssq.png\" width=\"500\" />\n</center>\n<ul>\n<li>We must first acknowledge that while the population <span class=\"math inline\">\\(\\mu\\)</span> is unknowable, the chance that the sample <span class=\"math inline\">\\(\\bar{x}\\)</span> and the population <span class=\"math inline\">\\(\\mu\\)</span> are the same is unlikely.\n<ul>\n<li>It’s also worth pointing out that the risk that <span class=\"math inline\">\\(\\bar{x}\\)</span> and <span class=\"math inline\">\\(\\mu\\)</span> are not even values close to each other is much increased when <span class=\"math inline\">\\(\\bar{x}\\)</span> has been calculated from a small sample.</li>\n</ul></li>\n<li>Recognizing that the true population mean value is probably some <em>other</em> value than <span class=\"math inline\">\\(\\bar{x}\\)</span>, let’s recalculate the sum of squares. This time we will use an imaginary true population <span class=\"math inline\">\\(\\mu\\)</span> as our center point, which in the animation below will be represented with a line at an arbitrary distance away from <span class=\"math inline\">\\(\\bar{x}\\)</span>.</li>\n</ul>\n<p><img src=\"04_variance_files/figure-html/unnamed-chunk-6-.gif\" width=\"483.84\" style=\"display: block; margin: auto;\" /></p>\n<ul>\n<li>When we compare the sum of squares in both of these scenarios: 1) using <span class=\"math inline\">\\(\\bar{x}\\)</span> or 2) using our imaginary <span class=\"math inline\">\\(\\mu\\)</span>, we see that the sum of squares from <span class=\"math inline\">\\(\\mu\\)</span> will <em>always</em> be greater than the <span class=\"math inline\">\\(\\bar{x}\\)</span> sum of squares. This is true because by definition of being the sample mean, the line at <span class=\"math inline\">\\(\\bar{x}\\)</span> will always be the “center” of the values in our sample. Its location already minimizes the total distance of all the observations to the center. A line at any other location (i.e. <span class=\"math inline\">\\(\\mu\\)</span>) would be a line that is not mimimizing the distance for observations in our sample.</li>\n</ul>\n<center>\n<img src=\"images/04_variance/Squares2.png\" width=\"750\" />\n</center>\n<ul>\n<li><p>Therefore, when we calculate the sum of squares (and consequently, the variance and the standard deviation) using the sample mean <span class=\"math inline\">\\(\\bar{x}\\)</span>, we are most likely arriving at a value that is downwardly biased compared to what the true variance or standard deviation would be if we were able to know and use the population mean <span class=\"math inline\">\\(\\mu\\)</span>.</p></li>\n<li><p>This is why we need to adjust our sample variance by diving by <span class=\"math inline\">\\(n-1\\)</span> instead of just <span class=\"math inline\">\\(N\\)</span>. By diving by a smaller value (i.e. <span class=\"math inline\">\\(n-1\\)</span> instead of N), we ensure that the overall value of the variance and standard deviation will be a little larger, correcting for the downward bias we just described.</p></li>\n</ul>\n</div>\n<div id=\"things-to-think-about\" class=\"section level1\">\n<h1>Things to think about</h1>\n<p><strong>How badly might the sample variance be downwardly biased?</strong>: Well, it depends on how far away <span class=\"math inline\">\\(\\bar{x}\\)</span> is from the true <span class=\"math inline\">\\(\\mu\\)</span>. The further away it is, the worse the downward bias will be!</p>\n<ul>\n<li><p>Of course, we want to avoid having a very downwardly biased variance. What controls how far away <span class=\"math inline\">\\(\\bar{x}\\)</span> is from <span class=\"math inline\">\\(\\mu\\)</span>? The sample size! As pointed out previously, the larger the sample, the greater the likelihood that your sample mean will resemble the population mean.</p></li>\n<li><p>Press Play on the animation below. The plot shows the relationship between bias in the variance, the sample size, and the distance between <span class=\"math inline\">\\(\\bar{x}\\)</span> and <span class=\"math inline\">\\(\\mu\\)</span>. Each dot represents one out of a thousand random samples all from the same population. The vertical dotted line represents <span class=\"math inline\">\\(\\mu\\)</span>, and the horizontal dotted line represents the true population variance (animation inspired by Khan Academy <a href=\"https://www.khanacademy.org/math/ap-statistics/summarizing-quantitative-data-ap/more-standard-deviation/v/simulation-showing-bias-in-sample-variance\">video</a>.)</p></li>\n</ul>\n<center>\n<iframe style=\"margin: 0px;\" src=\"images/04_variance/mega_dots.html\" width=\"720\" height=\"500\" scrolling=\"yes\" seamless=\"seamless\" frameBorder=\"0\">\n</iframe>\n</center>\n<ul>\n<li><p>When the samples whose means <span class=\"math inline\">\\(\\bar{x}\\)</span> are far off from the true population mean, they tend to have downwardly biased variance.</p></li>\n<li><p>Take a look at the points that are furthest away from the true population mean– the samples represented by these points primarily came from small sample sizes (dark blue dots).</p></li>\n</ul>\n</div>\n<div id=\"how-the-correction-works\" class=\"section level1\">\n<h1>How the correction works</h1>\n<p>The plot below shows the percentage of the true population variance that an uncorrected sample variance achieves on average. These data were generated by sampling from the same population as the animation above. This time the data have been grouped into bars by how many observations each random sample had. (Animation inspired by Khan Academy <a href=\"https://www.khanacademy.org/math/ap-statistics/summarizing-quantitative-data-ap/more-standard-deviation/v/simulation-showing-bias-in-sample-variance\">video</a>)</p>\n<center>\n<iframe style=\"margin: 0px;\" src=\"images/04_variance/static_bar.html\" width=\"670\" height=\"400\" scrolling=\"yes\" seamless=\"seamless\" frameBorder=\"0\">\n</iframe>\n</center>\n<ul>\n<li><p>Notice that the variances from smaller samples do the worst job of approaching 100% of the true variance. In fact, without correction the sample variance is downwardly biased by a factor of <span class=\"math inline\">\\(n/(n-1)\\)</span>.</p></li>\n<li><p>You can hover over the bars above to see what the average percentage of the true variance actually is for the different samples sizes. If we multiply this percentage by the correction, we fix the discrepancy between sample and population variance. We demonstrate this below for samples of size n = 3.</p></li>\n</ul>\n<pre class=\"r\"><code>n = 3\ncorrection = n/(n-1)\n\nhover_value = 67.22902 # % value when hovering over bar for n = 3\n\n# Apply correction\npercent_of_true_variance &lt;- hover_value * correction\n\npercent_of_true_variance </code></pre>\n<pre><code>## [1] 100.8435</code></pre>\n<p>As we can see, the correction works by adjusting the downwardly biased sample variance to close to 100% of the true variance.</p>\n<p>Try hovering over a few other bars and see yourself that correction works independent of the sample size. You can use the window below as a calculator to change the N and the hover values and then run the code.</p>\n<!---LEARNR EX 2-->\n<iframe class=\"interactive\" id=\"myIframe2\" src=\"https://tinystats.shinyapps.io/04-variance-ex2/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n<script>\n  iFrameResize({}, \".interactive\");\n</script>\n</div>\n\n<!DOCTYPE html>\n\n<div class=\"foot\">\n\t<hr> \n\t<p style=\"text-align: center;\"> <span style=\"color: #808080; display: inline-block; width: 58%;\"> \tThis project was created entirely in RStudio using R Markdown and published on GitHub pages. \n </span></p>\n\t<p style=\"text-align: center;\">\n\t</p>\n</div>\n\n\n</div>\n</div>\n\n</div>\n\n<script>\n\n// add bootstrap table styles to pandoc tables\nfunction bootstrapStylePandocTables() {\n  $('tr.odd').parent('tbody').parent('table').addClass('table table-condensed');\n}\n$(document).ready(function () {\n  bootstrapStylePandocTables();\n});\n\n\n</script>\n\n<!-- tabsets -->\n\n<script>\n$(document).ready(function () {\n  window.buildTabsets(\"TOC\");\n});\n\n$(document).ready(function () {\n  $('.tabset-dropdown > .nav-tabs > li').click(function () {\n    $(this).parent().toggleClass('nav-tabs-open');\n  });\n});\n</script>\n\n<!-- code folding -->\n\n<script>\n$(document).ready(function ()  {\n\n    // temporarily add toc-ignore selector to headers for the consistency with Pandoc\n    $('.unlisted.unnumbered').addClass('toc-ignore')\n\n    // move toc-ignore selectors from section div to header\n    $('div.section.toc-ignore')\n        .removeClass('toc-ignore')\n        .children('h1,h2,h3,h4,h5').addClass('toc-ignore');\n\n    // establish options\n    var options = {\n      selectors: \"h1,h2,h3\",\n      theme: \"bootstrap3\",\n      context: '.toc-content',\n      hashGenerator: function (text) {\n        return text.replace(/[.\\\\/?&!#<>]/g, '').replace(/\\s/g, '_');\n      },\n      ignoreSelector: \".toc-ignore\",\n      scrollTo: 0\n    };\n    options.showAndHide = true;\n    options.smoothScroll = true;\n\n    // tocify\n    var toc = $(\"#TOC\").tocify(options).data(\"toc-tocify\");\n});\n</script>\n\n<!-- dynamically load mathjax for compatibility with self-contained -->\n<script>\n  (function () {\n    var script = document.createElement(\"script\");\n    script.type = \"text/javascript\";\n    script.src  = \"https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML\";\n    document.getElementsByTagName(\"head\")[0].appendChild(script);\n  })();\n</script>\n\n</body>\n</html>\n"
  },
  {
    "path": "docs/05_correlation.html",
    "content": "<!DOCTYPE html>\n\n<html>\n\n<head>\n\n<meta charset=\"utf-8\" />\n<meta name=\"generator\" content=\"pandoc\" />\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=EDGE\" />\n\n\n\n\n<title>Covariance and Correlation</title>\n\n<script src=\"site_libs/jquery-3.6.0/jquery-3.6.0.min.js\"></script>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n<link href=\"site_libs/bootstrap-3.3.5/css/cosmo.min.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/bootstrap-3.3.5/js/bootstrap.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/html5shiv.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/respond.min.js\"></script>\n<style>h1 {font-size: 34px;}\n       h1.title {font-size: 38px;}\n       h2 {font-size: 30px;}\n       h3 {font-size: 24px;}\n       h4 {font-size: 18px;}\n       h5 {font-size: 16px;}\n       h6 {font-size: 12px;}\n       code {color: inherit; background-color: rgba(0, 0, 0, 0.04);}\n       pre:not([class]) { background-color: white }</style>\n<script src=\"site_libs/jqueryui-1.11.4/jquery-ui.min.js\"></script>\n<link href=\"site_libs/tocify-1.9.1/jquery.tocify.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/tocify-1.9.1/jquery.tocify.js\"></script>\n<script src=\"site_libs/navigation-1.1/tabsets.js\"></script>\n<link href=\"site_libs/highlightjs-9.12.0/default.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/highlightjs-9.12.0/highlight.js\"></script>\n<link href=\"site_libs/font-awesome-5.1.0/css/all.css\" rel=\"stylesheet\" />\n<link href=\"site_libs/font-awesome-5.1.0/css/v4-shims.css\" rel=\"stylesheet\" />\n<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n  \n</head>\n\n\n  <!---div class=\"image-descript\"> \n\t\t<img class=\"big_image\" src=\"images/big_image/Log.jpg\">\n\t\t<div class=\"image-text\">\n\t\t\t<div class=\"lil-image-text\">A Tale of Two Variables:</div>\n\t\t\t<div class=\"big-image-text\"><strong>COVARIANCE & CORRELATION</strong></div>\n\t\t</div>\n  </div-->\n  \n  \n<div class= \"hero-container\"> \n   <div class=\"hero-image\"> \n\t\t<div class=\"hero-image-text\">\n\t\t  <div class=\"hero-image-text-little\">A tale of two variables:</div>\n\t\t\t<div class=\"hero-image-text-big\">Covariance & correlation</div>\n\t\t</div>\n  </div>\n</div>  \n\n<style type=\"text/css\">\n  code{white-space: pre-wrap;}\n  span.smallcaps{font-variant: small-caps;}\n  span.underline{text-decoration: underline;}\n  div.column{display: inline-block; vertical-align: top; width: 50%;}\n  div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}\n  ul.task-list{list-style: none;}\n    </style>\n\n<style type=\"text/css\">code{white-space: pre;}</style>\n<script type=\"text/javascript\">\nif (window.hljs) {\n  hljs.configure({languages: []});\n  hljs.initHighlightingOnLoad();\n  if (document.readyState && document.readyState === \"complete\") {\n    window.setTimeout(function() { hljs.initHighlighting(); }, 0);\n  }\n}\n</script>\n\n\n\n\n\n\n\n\n\n<style type = \"text/css\">\n.main-container {\n  max-width: 940px;\n  margin-left: auto;\n  margin-right: auto;\n}\nimg {\n  max-width:100%;\n}\n.tabbed-pane {\n  padding-top: 12px;\n}\n.html-widget {\n  margin-bottom: 20px;\n}\nbutton.code-folding-btn:focus {\n  outline: none;\n}\nsummary {\n  display: list-item;\n}\ndetails > summary > p:only-child {\n  display: inline;\n}\npre code {\n  padding: 0;\n}\n</style>\n\n\n<style type=\"text/css\">\n.dropdown-submenu {\n  position: relative;\n}\n.dropdown-submenu>.dropdown-menu {\n  top: 0;\n  left: 100%;\n  margin-top: -6px;\n  margin-left: -1px;\n  border-radius: 0 6px 6px 6px;\n}\n.dropdown-submenu:hover>.dropdown-menu {\n  display: block;\n}\n.dropdown-submenu>a:after {\n  display: block;\n  content: \" \";\n  float: right;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n  border-width: 5px 0 5px 5px;\n  border-left-color: #cccccc;\n  margin-top: 5px;\n  margin-right: -10px;\n}\n.dropdown-submenu:hover>a:after {\n  border-left-color: #adb5bd;\n}\n.dropdown-submenu.pull-left {\n  float: none;\n}\n.dropdown-submenu.pull-left>.dropdown-menu {\n  left: -100%;\n  margin-left: 10px;\n  border-radius: 6px 0 6px 6px;\n}\n</style>\n\n<script type=\"text/javascript\">\n// manage active state of menu based on current page\n$(document).ready(function () {\n  // active menu anchor\n  href = window.location.pathname\n  href = href.substr(href.lastIndexOf('/') + 1)\n  if (href === \"\")\n    href = \"index.html\";\n  var menuAnchor = $('a[href=\"' + href + '\"]');\n\n  // mark it active\n  menuAnchor.tab('show');\n\n  // if it's got a parent navbar menu mark it active as well\n  menuAnchor.closest('li.dropdown').addClass('active');\n\n  // Navbar adjustments\n  var navHeight = $(\".navbar\").first().height() + 15;\n  var style = document.createElement('style');\n  var pt = \"padding-top: \" + navHeight + \"px; \";\n  var mt = \"margin-top: -\" + navHeight + \"px; \";\n  var css = \"\";\n  // offset scroll position for anchor links (for fixed navbar)\n  for (var i = 1; i <= 6; i++) {\n    css += \".section h\" + i + \"{ \" + pt + mt + \"}\\n\";\n  }\n  style.innerHTML = \"body {\" + pt + \"padding-bottom: 40px; }\\n\" + css;\n  document.head.appendChild(style);\n});\n</script>\n\n<!-- tabsets -->\n\n<style type=\"text/css\">\n.tabset-dropdown > .nav-tabs {\n  display: inline-table;\n  max-height: 500px;\n  min-height: 44px;\n  overflow-y: auto;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n}\n\n.tabset-dropdown > .nav-tabs > li.active:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {\n  content: \"&#xe258;\";\n  border: none;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs > li.active {\n  display: block;\n}\n\n.tabset-dropdown > .nav-tabs > li > a,\n.tabset-dropdown > .nav-tabs > li > a:focus,\n.tabset-dropdown > .nav-tabs > li > a:hover {\n  border: none;\n  display: inline-block;\n  border-radius: 4px;\n  background-color: transparent;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li {\n  display: block;\n  float: none;\n}\n\n.tabset-dropdown > .nav-tabs > li {\n  display: none;\n}\n</style>\n\n<!-- code folding -->\n\n\n\n<style type=\"text/css\">\n\n#TOC {\n  margin: 25px 0px 20px 0px;\n}\n@media (max-width: 768px) {\n#TOC {\n  position: relative;\n  width: 100%;\n}\n}\n\n@media print {\n.toc-content {\n  /* see https://github.com/w3c/csswg-drafts/issues/4434 */\n  float: right;\n}\n}\n\n.toc-content {\n  padding-left: 30px;\n  padding-right: 40px;\n}\n\ndiv.main-container {\n  max-width: 1200px;\n}\n\ndiv.tocify {\n  width: 20%;\n  max-width: 260px;\n  max-height: 85%;\n}\n\n@media (min-width: 768px) and (max-width: 991px) {\n  div.tocify {\n    width: 25%;\n  }\n}\n\n@media (max-width: 767px) {\n  div.tocify {\n    width: 100%;\n    max-width: none;\n  }\n}\n\n.tocify ul, .tocify li {\n  line-height: 20px;\n}\n\n.tocify-subheader .tocify-item {\n  font-size: 0.90em;\n}\n\n.tocify .list-group-item {\n  border-radius: 0px;\n}\n\n\n</style>\n\n\n\n</head>\n\n<body>\n\n\n<div class=\"container-fluid main-container\">\n\n\n<!-- setup 3col/9col grid for toc_float and main content  -->\n<div class=\"row\">\n<div class=\"col-xs-12 col-sm-4 col-md-3\">\n<div id=\"TOC\" class=\"tocify\">\n</div>\n</div>\n\n<div class=\"toc-content col-xs-12 col-sm-8 col-md-9\">\n\n\n\n\n<div class=\"navbar navbar-default  navbar-fixed-top\" role=\"navigation\">\n  <div class=\"container\">\n    <div class=\"navbar-header\">\n      <button type=\"button\" class=\"navbar-toggle collapsed\" data-toggle=\"collapse\" data-bs-toggle=\"collapse\" data-target=\"#navbar\" data-bs-target=\"#navbar\">\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n      </button>\n      <a class=\"navbar-brand\" href=\"index.html\"> </a>\n    </div>\n    <div id=\"navbar\" class=\"navbar-collapse collapse\">\n      <ul class=\"nav navbar-nav\">\n        <li>\n  <a href=\"index.html\">\n    <span class=\"fa fa-home\"></span>\n     \n  </a>\n</li>\n<li>\n  <a href=\"00_narrative.html\">History of Teacup Giraffes</a>\n</li>\n<li class=\"dropdown\">\n  <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\" role=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\">\n    Modules\n     \n    <span class=\"caret\"></span>\n  </a>\n  <ul class=\"dropdown-menu\" role=\"menu\">\n    <li>\n      <a href=\"01_introToR.html\">Intro to R</a>\n    </li>\n    <li>\n      <a href=\"02_bellCurve.html\">Intro to the Normal Distribution</a>\n    </li>\n    <li>\n      <a href=\"03_mean.html\">Mean, Median, Mode</a>\n    </li>\n    <li>\n      <a href=\"04_variance.html\">Spread of the Data</a>\n    </li>\n    <li>\n      <a href=\"05_correlation.html\">Covariance and Correlation</a>\n    </li>\n    <li>\n      <a href=\"06_standardError.html\">Standard Error</a>\n    </li>\n  </ul>\n</li>\n<li>\n  <a href=\"aboutTheAuthors.html\">About the Authors</a>\n</li>\n      </ul>\n      <ul class=\"nav navbar-nav navbar-right\">\n        <li>\n  <a href=\"https://github.com/tinystats/teacups-giraffes-and-statistics\">\n    <span class=\"fa fa-github\"></span>\n     \n  </a>\n</li>\n      </ul>\n    </div><!--/.nav-collapse -->\n  </div><!--/.container -->\n</div><!--/.navbar -->\n\n<div id=\"header\">\n\n\n\n<h1 class=\"title toc-ignore\">Covariance and Correlation</h1>\n\n</div>\n\n\n<div class=\"obj\">\n<p><strong>Module learning objectives</strong></p>\n<ol style=\"list-style-type: decimal\">\n<li>Create a scatterplot using ggplot</li>\n<li>Identify the similarities and differences between calculating the variance and covariance</li>\n<li>Write a function for the covariance and Pearson’s correlation coefficient</li>\n<li>Interpret the meaning behind Pearson’s correlation correlation</li>\n<li>Describe the purpose of dividing by the product of the standard deviations when calculating the correlation.</li>\n</ol>\n</div>\n<div id=\"gathering-data-on-another-variable\" class=\"section level1\">\n<h1>Gathering data on another variable</h1>\n<p>Over the course of your time on the islands, you notice that the teacup giraffes seem to have an affinity for celery, which you have already used to entice so they come close enough for a height measurement. Suprisingly, one of the small ones had eaten so much of it! You decide to quantify how much celery each of the giraffes consumed to see if there is any relationship to height.</p>\n<p>You systematically measure the amount of celery eaten and add it to your log of data, which is stored as a data frame called <code>giraffe_data</code>.</p>\n<p>We can check out the first entries of the data frame by using the <code>head( )</code> command:</p>\n<pre class=\"r\"><code>head(giraffe_data)</code></pre>\n<pre><code>##     Heights Celery_Eaten\n## 1  7.038865     16.36129\n## 2 13.154339     10.72354\n## 3  8.086511     17.16798\n## 4  8.159990     22.52115\n## 5  6.004716     13.77993\n## 6  9.455408     16.92304</code></pre>\n</div>\n<div id=\"make-a-scatter-plot\" class=\"section level1\">\n<h1>Make a scatter plot</h1>\n<p>It’s difficult to get an idea if there’s any relationship by just looking at the data frame. We learn so much more from creating a plot. Let’s revisit our newly acquired ggplot skills to make a scatter plot.</p>\n<p>A lot of the code used <a href=\"02_bellCurve.html\">previously</a> can be re-used for the scatter plot. Two main differences are the following:</p>\n<ol style=\"list-style-type: decimal\">\n<li><p>Because we now have an additional variable, we need to <strong>assign a <code>y =</code> for the <code>aes( )</code> command within <code>ggplot( )</code></strong>. Create the plot so that <code>Celery_Eaten</code> will be on the y-axis.</p></li>\n<li><p><strong>Add (<code>+</code>) a <code>geom_point( )</code></strong> element instead of <code>geom_hist( )</code></p></li>\n</ol>\n<p>Also, we will add lines to our plot, representing the mean of each variable. Here’s how we’ll do that:</p>\n<ol start=\"3\" style=\"list-style-type: decimal\">\n<li><strong>Add a horizontal line</strong> by adding (<code>+</code>) a <code>geom_hline( )</code> component. This takes the argument <code>yintercept =</code>, which equals the value for where the horizontal line should cross the y-intercept.\n<ul>\n<li>Since we want to place this line at the mean of y variable (<span class=\"math inline\">\\({\\bar{y}}\\)</span>), we can use the <code>mean( )</code> function instead of specifying a numeric value directly.</li>\n</ul></li>\n<li><strong>Add a vertical line</strong> by following the same structure as above but using <code>geom_vline( )</code> and <code>xintercept =</code> instead. This vertical line will represent the mean (<span class=\"math inline\">\\({\\bar{x}}\\)</span>) of the heights.</li>\n</ol>\n<p>Construct a scatter plot of the data using the window below:</p>\n<!---LEARNR EX 1-->\n<iframe class=\"interactive\" id=\"myIframe1\" src=\"https://tinystats.shinyapps.io/05-correlation-ex1/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n<p>Great, now you have a scatter plot! But recalling the email from your advisor the last time you plotted data, you decide you’d like to customize the look of the plot the same way you did when you created the ggplot histogram.</p>\n<p>Play around with some aesthetics in the window below, and then run the solution to see what we chose.</p>\n<!---LEARNR EX 2-->\n<iframe class=\"interactive\" id=\"myIframe2\" src=\"https://tinystats.shinyapps.io/05-correlation-ex2/\n\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n<p>Looking at the scatter plot, there seems to be a relationship between height and celery eaten, but you will need to quantify this more formally to be sure.</p>\n</div>\n<div id=\"relationship-between-two-variables\" class=\"section level1\">\n<h1>Relationship between two variables</h1>\n<p>How can the relationship between two variables (and its strength) be quantified? This can be done by assessing how the two variables change together – one such measure is the <strong>covariance</strong>.</p>\n<p>The covariance elegantly combines the deviations of observations from two different variables into a single value. This is how it’s done:</p>\n<ol style=\"list-style-type: decimal\">\n<li>As we did for the variance, we begin by measuring how far each observation lies from its mean. But unlike when we calculated the variance, each observation now includes two variables. We will need to <strong>calculate the observation’s distance from each variable’s mean</strong>. We call each distance the <strong>deviation</strong> scores on x and on y, respectively. Like the variance, the observation can fall above or below the mean, and as a result the corresponding deviation score will have either a positive or negative sign.</li>\n</ol>\n<p>We observe this below with a subset of 5 points from our scatter plot. Positive deviations are shown in red, negative deviations in blue.</p>\n<center>\n<div class=\"figure\">\n<img src=\"images/05_correlation/points.jpg\" width=\"650\" alt=\"\" />\n<p class=\"caption\">points</p>\n</div>\n</center>\n<p>Why do we use the deviations? Because we want to know whether the x-values and y-values move together with respect to their means or not. For example, when an observation’s deviation on x is above <span class=\"math inline\">\\(\\bar{x}\\)</span>, will its deviation on y also be above <span class=\"math inline\">\\(\\bar{y}\\)</span>? Using this line of thought, we can begin to systematically characterize how “together” the x and y values will change as we go through all observations.</p>\n</div>\n<div id=\"crossproduct\" class=\"section level1\">\n<h1>Crossproduct</h1>\n<p>After obtaining the deviation scores, we need to combine them into a single measure. We do not simply combine the deviation scores themselves by adding (please see the <a href=\"04_variance.html\">page about the variance</a> for a discussion of why this is). Instead, we take both deviation scores from the same observation and multiply them together to create a two-dimensional “shape” (analagous to when we multiplied a single deviation score by itself to create a square in the variance calculation).</p>\n<p><strong>NOTE:</strong> The resulting value is now on the order of a “squared” term. This will become important later.</p>\n<ol start=\"2\" style=\"list-style-type: decimal\">\n<li><strong>Multiply the two deviation scores.</strong> This is called the <strong>crossproduct</strong>. The shapes created by the crossproduct will serve as the “squared” terms that we can then use in the next step to sum and summarize the deviations into a single value.</li>\n</ol>\n<p>The equation is shown below for the <em>sample</em> crossproduct of the deviation scores.</p>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<span class=\"math display\" id=\"eq:equation1\">\\[\\begin{equation}\n\\tag{1}\n\\Large (x_i - \\bar{x})(y_i - \\bar{y})\n\\end{equation}\\]</span>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<p>Let’s explore the attributes of the crossproduct:</p>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<ul>\n<li><p>First, we should note that the <em>overall sign</em> of the crossproduct will depend on whether or not the two x- and y- values from the same observation move in the same directions relative to their means. Look at the annotated plot below. The crossproducts will either create “negative” shapes (shown in blue) or “positive” shapes (in red). A third outcome is that the crossproduct could also be 0 – this will occur when an observation falls on the mean.</p></li>\n<li><p>Second, the <strong>magnitude of the crossproduct</strong> will scale with the absolute value of the deviation scores. In other words, the further away both deviation scores are from their means, the larger the area of their shapes will be.</p></li>\n</ul>\n<center>\n<img src=\"images/05_correlation/points1.jpg\" width=\"650\" />\n</center>\n<p>The animation below shows the “construction” of the crossproducts from the 5 observations we have been following:</p>\n<video class=\"small_vid\"  autoplay loop muted playsinline>\n<source src=\"images/05_correlation/lines.webm\" type=\"video/webm\">\n<source src=\"images/05_correlation/lines.mp4\" type=\"video/mp4\">\n</video>\n<p><br />\n</p>\n<ol start=\"3\" style=\"list-style-type: decimal\">\n<li><strong>Sum the crossproducts.</strong> The sum of the crossproduct gives us a single number.\n<div style=\"margin-bottom:50px\">\n\n</div>\n<center>\n<img src=\"images/05_correlation/Shapes%202.png\" style=\"width:90.0%\" />\n</center>\n<div style=\"margin-bottom:50px\">\n\n</div></li>\n</ol>\n<p>As we add the crossproducts, some of the “negative” and “positive” values of the shapes will cancel each other out. This is okay because this tells us important information about our two variables. If the negative and positive shapes cancel each other out completely, it would mean that there is no relationship. In most cases this will not happen, and the sum of the crossproducts will be positive or negative. In general, the larger the magnitude of the sum of the crossproducts, the more strongly the two variables move together. The equation is shown below.</p>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<span class=\"math display\" id=\"eq:equation2\">\\[\\begin{equation}\n\\tag{2}\n\\Large \\sum_{i=1}^n (x_i - \\bar{x})(y_i - \\bar{y})\n\\end{equation}\\]</span>\n<div style=\"margin-bottom:50px\">\n\n</div>\n</div>\n<div id=\"covariance\" class=\"section level1\">\n<h1>Covariance</h1>\n<ol start=\"4\" style=\"list-style-type: decimal\">\n<li>We then <strong>divide the sum of the crossproduct by <span class=\"math inline\">\\(n-1\\)</span> (or <span class=\"math inline\">\\(N\\)</span> in the population equation)</strong> so that we have taken into account how many observations contributed to this quantity. (Why <span class=\"math inline\">\\(n-1\\)</span>? See <a href=\"04_variance.html\">here</a>.) This final number is called the <strong>covariance</strong>, and its value tells us how much our two variables fluctuate together. The higher the absolute value, the stronger the relationship.</li>\n</ol>\n<p>The equation for the covariance (abbreviated “cov”) of the variables x and y is shown below. As a preference of style, we multiply by <span class=\"math inline\">\\(\\frac{1}{n-1}\\)</span> instead of dividing the entire term by <span class=\"math inline\">\\(n-1\\)</span>.</p>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<span class=\"math display\" id=\"eq:equation3\">\\[\\begin{equation}\n\\tag{3}\n\\Large cov(x,y) = {\\frac{1}{n-1}\\sum_{i=1}^n (x_i - \\bar{x})(y_i - \\bar{y})}\n\\end{equation}\\]</span>\n<div style=\"margin-bottom:50px\">\n\n</div>\n</div>\n<div id=\"problem-of-interpretation\" class=\"section level1\">\n<h1>Problem of interpretation</h1>\n<p>However, the covariance is not an intuitive value. Remember that we have been working with terms that are on the “squared” scale, which is not only difficult to interpret (just like the variance is) but it is also the product of two variables on possibly different scales. How could we interpret a covariance with units of millimeters*grams mean?</p>\n<p>Another point to make is that value of the covariance will be vastly different if we had decided to change the units (millimeters vs centimeters, or grams vs kilograms).</p>\n<p>As a result, the covariance is not an easy metric to work with or to compare with other covariances. So we need to standardize it!</p>\n</div>\n<div id=\"pearson-correlation-coefficient-r\" class=\"section level1\">\n<h1>Pearson correlation coefficient, <span class=\"math inline\">\\(r\\)</span></h1>\n<p>How do we standardize the covariance?</p>\n<p>The solution is to (1) take the standard deviations of each variable, (2) multiply them together, and (3) divide the covariance by this product – the resulting value is called the <strong>Pearson correlation coefficient</strong>. When referring to the population correlation coefficient, the symbol <span class=\"math inline\">\\(\\rho\\)</span> (pronounced “rho”) is used. When referring to the sample correlation coefficient, a lowercase <span class=\"math inline\">\\(r\\)</span> is used (often called “Pearson’s r”).</p>\n<div style=\"margin-bottom:50px\">\n<p>Here is the equation for the <strong>population correlation</strong>:</p>\n</div>\n<span class=\"math display\" id=\"eq:equation4\">\\[\\begin{equation}\n\\tag{4}\n\\Large \\rho(x,y) = \\frac{ \\frac{1}{N} \\sum_{i=1}^N (x_i - \\mu_x)(y_i - \\mu_y)}{\\sigma_x \\sigma_y}\n\\end{equation}\\]</span>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<div style=\"margin-bottom:50px\">\n\n</div>\nThis equation is used for the <strong>sample correlation</strong>:\n<span class=\"math display\" id=\"eq:equation5\">\\[\\begin{equation}\n\\tag{5}\n\\Large r(x,y) = \\frac{ \\frac{1}{n-1} \\sum_{i=1}^n (x_i - \\bar{x})(y_i - \\bar{y})}{s_x s_y}\n\\end{equation}\\]</span>\n<div style=\"margin-bottom:50px\">\n\n</div>\n</div>\n<div id=\"what-does-the-correlation-mean\" class=\"section level1\">\n<h1>What does the correlation mean?</h1>\n<p>We can interpret the correlation as a measure of <strong>the strength and direction</strong> of the relationship between two variables. It is a “standardized” version of the covariance.</p>\n<ul>\n<li>The correlation will always be between -1 and 1. At these extreme values, the two variables have the strongest relationship possible, in which each data point will fall exactly on a line. When the absolute value of the correlation coefficient approaches 0, the observations will be more “scattered”.</li>\n<li>The sign of the correlation coefficient indicates the direction of the linear relationship. When <span class=\"math inline\">\\(r\\)</span>= 0 there is no relationship between the variables. Look at the figure below to see what observations of different <span class=\"math inline\">\\(r\\)</span> values look like.</li>\n</ul>\n<center>\n<img src=\"images/05_correlation/diff_corr.png\" style=\"width:90.0%\" />\n</center>\n<p><strong>Your turn</strong></p>\n<p>Imagine you’re given a plot like the one below. What would you say it’s correlation value is? Try out your guess for a few plots, and if you need a hint to help you visualize, click <em>Show trend line</em>.</p>\n<!--------SHINY1------>\n<iframe class=\"interactive\" src=\"https://tinystats.shinyapps.io/Guess_corr/?showcase=0\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n</div>\n<div id=\"code-it-up\" class=\"section level1\">\n<h1>Code it up</h1>\n<ul>\n<li>In the window below, write your own function to compute the sample covariance of two variables, and call it <code>my_covariance( )</code>.</li>\n<li>Then create a second function called <code>my_correlation( )</code> in which you will compute the correlation of two variables. You may incorporate your function <code>my_covariance( )</code> in this step to save yourself some time.</li>\n<li>Once you’ve created both functions, use them to compute the covariance and correlation between <code>Heights</code> and <code>Celery_Eaten</code> within the data frame <code>giraffe_data</code>.</li>\n<li>Finally, compare your functions’ outputs with the base R functions for covariance, <code>cov( )</code> and <code>cor( )</code>.</li>\n</ul>\n<p>Remember, you will need to write both functions so that they will take two parameters, one for each variable. The parameters for <code>my_covariance( )</code> have been setup for you.</p>\n<!--LEARNR EX 3--->\n<iframe class=\"interactive\" id=\"myIframe3\" src=\"https://tinystats.shinyapps.io/05-correlation-ex3/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!----------->\n<p><br />\n</p>\n<p>Wow, you can see that there is a negative relationship between giraffe heights and how much celery teacup giraffes eat. Could this be due to celery being a negative calorie vegetable? Are these giraffes onto something?</p>\n<center>\n<img src=\"images/05_correlation/Celery.png\" style=\"width:30.0%\" />\n</center>\n</div>\n<div id=\"the-standardizer\" class=\"section level1\">\n<h1>The Standardizer</h1>\n<p>You can take a look at the animation below to see a conceptual summary of how correlation will standarize the covariance, translating it into an easily interpretable metric that will always be bound by -1 and 1.</p>\n<!-- # ```{r, fig.show='animate', animation.hook = 'gifski', interval= 0.15, fig.width=10, fig.height=5, echo=FALSE, results=\"hide\", message=FALSE} -->\n<!-- #  -->\n<!-- # getwd() -->\n<!-- #  -->\n<!-- # library(jpeg) -->\n<!-- # library(gifski) -->\n<!-- # frames <- list.files(path=\"factory/\") -->\n<!-- #  -->\n<!-- # factory <- function(x){ -->\n<!-- # img <- readJPEG(paste0(\"factory/\",frames[x]), native=TRUE) -->\n<!-- # plot(0:1, 0:1, type=\"n\", ann=FALSE, axes=FALSE) -->\n<!-- # rasterImage(img,0,0,1,1) -->\n<!-- # } -->\n<!-- #  -->\n<!-- # lapply(1:175, function(x) factory(x)) -->\n<!-- #  -->\n<!-- #  -->\n<!-- # # gif_file <-  file.path(getwd(), 'factory.gif') -->\n<!-- # # save_gif(lapply(1:175, function(x) factory(x)), gif_file= gif_file, progress = TRUE, loop= TRUE, delay= 0.5, width=400, height= 133) -->\n<!-- # #  -->\n<!-- # # utils::browseURL(gif_file) -->\n<!-- #  -->\n<!-- # ``` -->\n<!--![](images/05_correlation/factory.gif)-->\n<video controls disablePictureInPicture controlslist=\"nodownload nofullscreen noremoteplayback\" loop muted playsinline poster=\"images/05_correlation/factory.png\">\n<source src=\"images/05_correlation/factory.webm\" type=\"video/webm\">\n<source src=\"images/05_correlation/factory.mp4\" type=\"video/mp4\">\n</video>\n</div>\n<div id=\"why-divide-by-sigma_xsigma_y\" class=\"section level1\">\n<h1>Why divide by <span class=\"math inline\">\\(\\sigma_x\\sigma_y\\)</span>?</h1>\n<p>Well it’s complicated, (see <a href=\"https://www.quora.com/What-is-an-intuitive-explanation-for-why-the-sample-correlation-coefficient-is-equal-to-the-sample-covariance-divided-by-the-standard-deviations-of-x-and-y-multiplied-by-one-another\">here</a> and <a href=\"https://math.stackexchange.com/questions/158449/proving-that-the-magnitude-of-the-sample-correlation-coefficient-is-at-most-1\">here</a>) but it builds on the mathematical principle that the covariance of x and y will never exceed the product of the standard deviations of x and y. This means that the maximum correlation value will occur when the absolute value of the covariance and the product of the standard deviations are equal.</p>\n<p>If you don’t take our word for it, press play below to see what the relationship between <span class=\"math inline\">\\({s}_x{s}_y\\)</span> and <span class=\"math inline\">\\({cov(x,y)}\\)</span> looks like.</p>\n<center>\n<iframe style=\"margin: 0;\" src=\"images/05_correlation/cov_vs_sxsy.html\" width=\"720\" height=\"500\" scrolling=\"yes\" seamless=\"seamless\" frameBorder=\"0\">\n</iframe>\n</center>\n<p>As you look at the plot above, you may have the following questions:</p>\n<ul>\n<li><p>Why are there clearly defined boundaries?</p>\n<ul>\n<li><p>Because at the edges is where the covariance is the greatest value that it can be– it is equal to the product of the standard deviations there.</p></li>\n<li><p>The slope is 1 at this boundary.</p></li>\n</ul></li>\n<li><p>Where in the plot do the strongest correlations end up?</p>\n<ul>\n<li>On the edges – when the absolute value of the numerator and denominator of the equation are equal– the quotient will = 1 (or negative 1, depending on the sign of the covariance in the numerator).</li>\n</ul></li>\n</ul>\n</div>\n<div id=\"things-to-think-about\" class=\"section level1\">\n<h1>Things to think about</h1>\n<p><strong>Correlation does not capture relationships that are not linear</strong>: If the relationship is not linear, then correlation will not be meaningful. Check out the plot below. There is a clear U-shaped relationship between the two variables, but the correlation coefficient for these data is very close to 0. To measure non-linear relationships a different metric must be used.</p>\n<center>\n<img src=\"images/05_correlation/corr_curve.png\" style=\"width:40.0%\" />\n</center>\n<p><strong>Correlation is not causation</strong>: Just because there is a linear relationship between two variables does not mean we have evidence that one variable causes the other. Even if there really was a cause-and-effect relationship, with correlation we cannot say which variable is the cause and which is the effect. It’s also possible that there exists some other unmeasured variable affecting the linear relationship we observe. And of course, any apparent relationship may be due to nothing more than random chance.</p>\n<script>\n  iFrameResize({}, \".interactive\");\n</script>\n</div>\n\n<!DOCTYPE html>\n\n<div class=\"foot\">\n\t<hr> \n\t<p style=\"text-align: center;\"> <span style=\"color: #808080; display: inline-block; width: 58%;\"> \tThis project was created entirely in RStudio using R Markdown and published on GitHub pages. \n </span></p>\n\t<p style=\"text-align: center;\">\n\t</p>\n</div>\n\n\n</div>\n</div>\n\n</div>\n\n<script>\n\n// add bootstrap table styles to pandoc tables\nfunction bootstrapStylePandocTables() {\n  $('tr.odd').parent('tbody').parent('table').addClass('table table-condensed');\n}\n$(document).ready(function () {\n  bootstrapStylePandocTables();\n});\n\n\n</script>\n\n<!-- tabsets -->\n\n<script>\n$(document).ready(function () {\n  window.buildTabsets(\"TOC\");\n});\n\n$(document).ready(function () {\n  $('.tabset-dropdown > .nav-tabs > li').click(function () {\n    $(this).parent().toggleClass('nav-tabs-open');\n  });\n});\n</script>\n\n<!-- code folding -->\n\n<script>\n$(document).ready(function ()  {\n\n    // temporarily add toc-ignore selector to headers for the consistency with Pandoc\n    $('.unlisted.unnumbered').addClass('toc-ignore')\n\n    // move toc-ignore selectors from section div to header\n    $('div.section.toc-ignore')\n        .removeClass('toc-ignore')\n        .children('h1,h2,h3,h4,h5').addClass('toc-ignore');\n\n    // establish options\n    var options = {\n      selectors: \"h1,h2,h3\",\n      theme: \"bootstrap3\",\n      context: '.toc-content',\n      hashGenerator: function (text) {\n        return text.replace(/[.\\\\/?&!#<>]/g, '').replace(/\\s/g, '_');\n      },\n      ignoreSelector: \".toc-ignore\",\n      scrollTo: 0\n    };\n    options.showAndHide = true;\n    options.smoothScroll = true;\n\n    // tocify\n    var toc = $(\"#TOC\").tocify(options).data(\"toc-tocify\");\n});\n</script>\n\n<!-- dynamically load mathjax for compatibility with self-contained -->\n<script>\n  (function () {\n    var script = document.createElement(\"script\");\n    script.type = \"text/javascript\";\n    script.src  = \"https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML\";\n    document.getElementsByTagName(\"head\")[0].appendChild(script);\n  })();\n</script>\n\n</body>\n</html>\n"
  },
  {
    "path": "docs/06_standardError.html",
    "content": "<!DOCTYPE html>\n\n<html>\n\n<head>\n\n<meta charset=\"utf-8\" />\n<meta name=\"generator\" content=\"pandoc\" />\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=EDGE\" />\n\n\n\n\n<title>Intro to Inference</title>\n\n<script src=\"site_libs/jquery-3.6.0/jquery-3.6.0.min.js\"></script>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n<link href=\"site_libs/bootstrap-3.3.5/css/cosmo.min.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/bootstrap-3.3.5/js/bootstrap.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/html5shiv.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/respond.min.js\"></script>\n<style>h1 {font-size: 34px;}\n       h1.title {font-size: 38px;}\n       h2 {font-size: 30px;}\n       h3 {font-size: 24px;}\n       h4 {font-size: 18px;}\n       h5 {font-size: 16px;}\n       h6 {font-size: 12px;}\n       code {color: inherit; background-color: rgba(0, 0, 0, 0.04);}\n       pre:not([class]) { background-color: white }</style>\n<script src=\"site_libs/jqueryui-1.11.4/jquery-ui.min.js\"></script>\n<link href=\"site_libs/tocify-1.9.1/jquery.tocify.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/tocify-1.9.1/jquery.tocify.js\"></script>\n<script src=\"site_libs/navigation-1.1/tabsets.js\"></script>\n<link href=\"site_libs/highlightjs-9.12.0/default.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/highlightjs-9.12.0/highlight.js\"></script>\n<script src=\"site_libs/htmlwidgets-1.5.4/htmlwidgets.js\"></script>\n<script src=\"site_libs/plotly-binding-4.10.0/plotly.js\"></script>\n<script src=\"site_libs/typedarray-0.1/typedarray.min.js\"></script>\n<link href=\"site_libs/crosstalk-1.2.0/css/crosstalk.min.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/crosstalk-1.2.0/js/crosstalk.min.js\"></script>\n<link href=\"site_libs/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/plotly-main-2.5.1/plotly-latest.min.js\"></script>\n<link href=\"site_libs/font-awesome-5.1.0/css/all.css\" rel=\"stylesheet\" />\n<link href=\"site_libs/font-awesome-5.1.0/css/v4-shims.css\" rel=\"stylesheet\" />\n<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n</head>\n\n  <div class=\"image-descript\"> \n\t\t<img class=\"big_image\" src=\"images/big_image/Archer2.jpg\">\n\t\t<div class=\"image-text\">\n\t\t\t<div class=\"lil-image-text\">Introduction to Inference:</div>\n\t\t\t<div class=\"big-image-text\"><strong>Standard Error</strong></div>\n\t\t</div>\n  </div>\n\n<style type=\"text/css\">\n  code{white-space: pre-wrap;}\n  span.smallcaps{font-variant: small-caps;}\n  span.underline{text-decoration: underline;}\n  div.column{display: inline-block; vertical-align: top; width: 50%;}\n  div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}\n  ul.task-list{list-style: none;}\n    </style>\n\n<style type=\"text/css\">code{white-space: pre;}</style>\n<script type=\"text/javascript\">\nif (window.hljs) {\n  hljs.configure({languages: []});\n  hljs.initHighlightingOnLoad();\n  if (document.readyState && document.readyState === \"complete\") {\n    window.setTimeout(function() { hljs.initHighlighting(); }, 0);\n  }\n}\n</script>\n\n\n\n\n\n\n\n\n\n<style type = \"text/css\">\n.main-container {\n  max-width: 940px;\n  margin-left: auto;\n  margin-right: auto;\n}\nimg {\n  max-width:100%;\n}\n.tabbed-pane {\n  padding-top: 12px;\n}\n.html-widget {\n  margin-bottom: 20px;\n}\nbutton.code-folding-btn:focus {\n  outline: none;\n}\nsummary {\n  display: list-item;\n}\ndetails > summary > p:only-child {\n  display: inline;\n}\npre code {\n  padding: 0;\n}\n</style>\n\n\n<style type=\"text/css\">\n.dropdown-submenu {\n  position: relative;\n}\n.dropdown-submenu>.dropdown-menu {\n  top: 0;\n  left: 100%;\n  margin-top: -6px;\n  margin-left: -1px;\n  border-radius: 0 6px 6px 6px;\n}\n.dropdown-submenu:hover>.dropdown-menu {\n  display: block;\n}\n.dropdown-submenu>a:after {\n  display: block;\n  content: \" \";\n  float: right;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n  border-width: 5px 0 5px 5px;\n  border-left-color: #cccccc;\n  margin-top: 5px;\n  margin-right: -10px;\n}\n.dropdown-submenu:hover>a:after {\n  border-left-color: #adb5bd;\n}\n.dropdown-submenu.pull-left {\n  float: none;\n}\n.dropdown-submenu.pull-left>.dropdown-menu {\n  left: -100%;\n  margin-left: 10px;\n  border-radius: 6px 0 6px 6px;\n}\n</style>\n\n<script type=\"text/javascript\">\n// manage active state of menu based on current page\n$(document).ready(function () {\n  // active menu anchor\n  href = window.location.pathname\n  href = href.substr(href.lastIndexOf('/') + 1)\n  if (href === \"\")\n    href = \"index.html\";\n  var menuAnchor = $('a[href=\"' + href + '\"]');\n\n  // mark it active\n  menuAnchor.tab('show');\n\n  // if it's got a parent navbar menu mark it active as well\n  menuAnchor.closest('li.dropdown').addClass('active');\n\n  // Navbar adjustments\n  var navHeight = $(\".navbar\").first().height() + 15;\n  var style = document.createElement('style');\n  var pt = \"padding-top: \" + navHeight + \"px; \";\n  var mt = \"margin-top: -\" + navHeight + \"px; \";\n  var css = \"\";\n  // offset scroll position for anchor links (for fixed navbar)\n  for (var i = 1; i <= 6; i++) {\n    css += \".section h\" + i + \"{ \" + pt + mt + \"}\\n\";\n  }\n  style.innerHTML = \"body {\" + pt + \"padding-bottom: 40px; }\\n\" + css;\n  document.head.appendChild(style);\n});\n</script>\n\n<!-- tabsets -->\n\n<style type=\"text/css\">\n.tabset-dropdown > .nav-tabs {\n  display: inline-table;\n  max-height: 500px;\n  min-height: 44px;\n  overflow-y: auto;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n}\n\n.tabset-dropdown > .nav-tabs > li.active:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {\n  content: \"&#xe258;\";\n  border: none;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs > li.active {\n  display: block;\n}\n\n.tabset-dropdown > .nav-tabs > li > a,\n.tabset-dropdown > .nav-tabs > li > a:focus,\n.tabset-dropdown > .nav-tabs > li > a:hover {\n  border: none;\n  display: inline-block;\n  border-radius: 4px;\n  background-color: transparent;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li {\n  display: block;\n  float: none;\n}\n\n.tabset-dropdown > .nav-tabs > li {\n  display: none;\n}\n</style>\n\n<!-- code folding -->\n\n\n\n<style type=\"text/css\">\n\n#TOC {\n  margin: 25px 0px 20px 0px;\n}\n@media (max-width: 768px) {\n#TOC {\n  position: relative;\n  width: 100%;\n}\n}\n\n@media print {\n.toc-content {\n  /* see https://github.com/w3c/csswg-drafts/issues/4434 */\n  float: right;\n}\n}\n\n.toc-content {\n  padding-left: 30px;\n  padding-right: 40px;\n}\n\ndiv.main-container {\n  max-width: 1200px;\n}\n\ndiv.tocify {\n  width: 20%;\n  max-width: 260px;\n  max-height: 85%;\n}\n\n@media (min-width: 768px) and (max-width: 991px) {\n  div.tocify {\n    width: 25%;\n  }\n}\n\n@media (max-width: 767px) {\n  div.tocify {\n    width: 100%;\n    max-width: none;\n  }\n}\n\n.tocify ul, .tocify li {\n  line-height: 20px;\n}\n\n.tocify-subheader .tocify-item {\n  font-size: 0.90em;\n}\n\n.tocify .list-group-item {\n  border-radius: 0px;\n}\n\n\n</style>\n\n\n\n</head>\n\n<body>\n\n\n<div class=\"container-fluid main-container\">\n\n\n<!-- setup 3col/9col grid for toc_float and main content  -->\n<div class=\"row\">\n<div class=\"col-xs-12 col-sm-4 col-md-3\">\n<div id=\"TOC\" class=\"tocify\">\n</div>\n</div>\n\n<div class=\"toc-content col-xs-12 col-sm-8 col-md-9\">\n\n\n\n\n<div class=\"navbar navbar-default  navbar-fixed-top\" role=\"navigation\">\n  <div class=\"container\">\n    <div class=\"navbar-header\">\n      <button type=\"button\" class=\"navbar-toggle collapsed\" data-toggle=\"collapse\" data-bs-toggle=\"collapse\" data-target=\"#navbar\" data-bs-target=\"#navbar\">\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n      </button>\n      <a class=\"navbar-brand\" href=\"index.html\"> </a>\n    </div>\n    <div id=\"navbar\" class=\"navbar-collapse collapse\">\n      <ul class=\"nav navbar-nav\">\n        <li>\n  <a href=\"index.html\">\n    <span class=\"fa fa-home\"></span>\n     \n  </a>\n</li>\n<li>\n  <a href=\"00_narrative.html\">History of Teacup Giraffes</a>\n</li>\n<li class=\"dropdown\">\n  <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\" role=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\">\n    Modules\n     \n    <span class=\"caret\"></span>\n  </a>\n  <ul class=\"dropdown-menu\" role=\"menu\">\n    <li>\n      <a href=\"01_introToR.html\">Intro to R</a>\n    </li>\n    <li>\n      <a href=\"02_bellCurve.html\">Intro to the Normal Distribution</a>\n    </li>\n    <li>\n      <a href=\"03_mean.html\">Mean, Median, Mode</a>\n    </li>\n    <li>\n      <a href=\"04_variance.html\">Spread of the Data</a>\n    </li>\n    <li>\n      <a href=\"05_correlation.html\">Covariance and Correlation</a>\n    </li>\n    <li>\n      <a href=\"06_standardError.html\">Standard Error</a>\n    </li>\n  </ul>\n</li>\n<li>\n  <a href=\"aboutTheAuthors.html\">About the Authors</a>\n</li>\n      </ul>\n      <ul class=\"nav navbar-nav navbar-right\">\n        <li>\n  <a href=\"https://github.com/tinystats/teacups-giraffes-and-statistics\">\n    <span class=\"fa fa-github\"></span>\n     \n  </a>\n</li>\n      </ul>\n    </div><!--/.nav-collapse -->\n  </div><!--/.container -->\n</div><!--/.navbar -->\n\n<div id=\"header\">\n\n\n\n<h1 class=\"title toc-ignore\">Intro to Inference</h1>\n\n</div>\n\n\n<div class=\"obj\">\n<p><strong>Module learning objectives</strong></p>\n<ol style=\"list-style-type: decimal\">\n<li>Determine how to quantify the uncertainty of an estimate</li>\n<li>Describe the concept of statistical inference</li>\n<li>Interpret sampling distributions and explain how they are influenced by sample size</li>\n<li>Define and calculate standard error</li>\n<li>Use the standard error to construct 95% confidence intervals</li>\n</ol>\n</div>\n<div id=\"how-accurate-is-our-estimate-of-the-mean\" class=\"section level1\">\n<h1>How accurate is our estimate of the mean?</h1>\n<p>Let’s revisit the first few days during which we collected data stored in the vector <code>heights_island1</code>. We were able to verify that the heights were normally distributed and calculated our sample mean, <span class=\"math inline\">\\({\\bar{x}}\\)</span>. However, we know that <span class=\"math inline\">\\({\\bar{x}}\\)</span> is only an <em>estimate</em> of the true population mean, <span class=\"math inline\">\\({\\mu}\\)</span>, which is the true value of interest. It is unlikely that we will ever know the value of <span class=\"math inline\">\\({\\mu}\\)</span>, since access to all possible observations is rare. Therefore we will have to rely on <span class=\"math inline\">\\({\\bar{x}}\\)</span> estimates from random samples drawn from the population as the best approximation of <span class=\"math inline\">\\({\\mu}\\)</span>.</p>\n<p>Not all sample means are created equal. Some are better estimates than others. Recall the <a href=\"03_mean.html#mean_animation\">animation</a> showing the relationship between sample size and variability of the mean. As we learned from this animation, in the long-run, large samples are necessary to get an accurate estimate of <span class=\"math inline\">\\({\\mu}\\)</span>.</p>\n<div class=\"alert alert-note\">\n<blockquote>\n<p><strong>A note about language:</strong> here, words like “accuracy”, “precision”, and “uncertainty” are used in a rather fast and loose way. We’re using the laymen’s application of these terms to refer to the long-run variability of estimates produced from repeated, independent trials. There are stricter, more formal statistical uses for these words, but for right now, we’re going to ignore these nuances so that we can move on with understanding these concepts in broad strokes.</p>\n</blockquote>\n</div>\n<p>One reason we care about our sample estimate’s accuracy is because we want to be able to answer questions about the population by making inferences. <strong>Statistical inference</strong> uses math to draw conclusions about the population based on a subset of the full picture (i.e. a sample). Subsets of data are of course limited, so it’s therefore important to acknowledge that the strength of the conclusions drawn about the population is dependent on the precision of the sample estimate. For example, say that we guess that the population mean value of giraffe heights on Island 1 is less than 11 cm. We can make some inferences about whether or not this is a good guess based on what we learn from our sample of giraffe heights. We’ll revisit this question a few times below.</p>\n</div>\n<div id=\"creating-a-sampling-distribution\" class=\"section level1\">\n<h1>Creating a sampling distribution</h1>\n<p>The mean of our sample of 50 giraffes from Island 1 was:</p>\n<pre class=\"r\"><code>mean(heights_island1)</code></pre>\n<pre><code>## [1] 9.714141</code></pre>\n<p>How can we quantify the accuracy of this estimate, given its sample size?</p>\n<p>In theory, one way to illustrate this is to generate data not just from a single sample but from many samples of the same size (N) drawn from the same population.</p>\n<p>Imagine that after you collected all 50 measurements for <code>heights_island1</code>, you wake up one morning with no memory of collecting data at all—and so you go out and collect 50 giraffe heights again and subsequently calculate the mean. Further imagine that this groundhog day (or more correctly, groundhog <em>week</em>) situation repeats itself many, many times.</p>\n<p>When you finally return to your sanity, you find stacks of notebooks filled with mean values from each of your individual data collections.</p>\n<center>\n<img src=\"images/06_standardError/Notebooks.jpg\" width=\"600\" />\n</center>\n<p>Instead of viewing this as a massive waste of time, you make the best out of the situation and create a histogram of all the means. In other words you create a plot showing the distribution of the sample means, also known as a <strong>sampling distribution</strong>.</p>\n<p>The animation below illustrates the process of creating the sampling distribution for 1,000 sample means.</p>\n<p>On the left side, each histogram represents a sample (e.g. <code>heights_island1</code> would be one sample, and we’re flashing through 1,000 of them in total). Correspondingly, each dot signifies an observation. After each sample histogram is completed, <span class=\"math inline\">\\({\\bar{x}}\\)</span> is calculated. This <span class=\"math inline\">\\({\\bar{x}}\\)</span> value is then subsequently added to the histogram of the sampling distribution on the right. As you can see below, this process is repeated, allowing the sampling distribution to build up.</p>\n<center>\n<img src=\"06_standardError_files/figure-html/unnamed-chunk-3-.gif\" width=\"672\" />\n</center>\n<p><br>\n<br></p>\n<p>A histogram of the sampling distribution is shown below. It is a histogram made up of many means.</p>\n<p><br></p>\n<center>\n<img src=\"06_standardError_files/figure-html/unnamed-chunk-4-1.png\" width=\"432\" />\n</center>\n<p>Looking at the spread of <span class=\"math inline\">\\({\\bar{x}}\\)</span> values that this groundhog experience generated, we can get a sense of the range of many possible estimates of <span class=\"math inline\">\\({\\mu}\\)</span> that a sample of 50 giraffes can produce.</p>\n<p><strong>The sampling distribution provides us with the first hint of the precision of our original <code>heights_island1</code> estimate</strong>, which we’ll quantify in more detail later on, but for now it’s enough to notice that the range of possible <span class=\"math inline\">\\({\\bar{x}}\\)</span> values are between 8.9 and 10.7. This means that <span class=\"math inline\">\\({\\bar{x}}\\)</span> values outside of this range are essentially improbable.</p>\n<p>Let’s return to our question about whether the true mean of giraffe heights on Island 1 is less than 11 cm. Our sampling distribution suggests that <span class=\"math inline\">\\({\\mu}\\)</span> <em>is</em> less than 11 cm, since values greater than that are not within the range of this sampling distribution.</p>\n</div>\n<div id=\"sample-size-and-sampling-distribution\" class=\"section level1\">\n<h1>Sample size and sampling distribution</h1>\n<p>Back to the idea that larger samples are “better”, we can explore what happens if we redo the groundhog scenario, this time sampling 500 individuals (instead of 50) before taking the mean each time, repeating this until thousands of <span class=\"math inline\">\\({\\bar{x}}\\)</span> values have been recorded. For completeness, let’s imagine the same marathon data collection using samples that are smaller—of 5 giraffes each. We compare the resulting sampling distributions from all three scenarios below. The middle sampling distribution corresponds to the sampling distribution we already generated above.</p>\n<center>\n<img src=\"06_standardError_files/figure-html/unnamed-chunk-5-1.png\" width=\"576\" />\n</center>\n<p>What do we notice?</p>\n<ol style=\"list-style-type: decimal\">\n<li>All histograms look normal.</li>\n<li>All distributions have approximately the same mean.</li>\n<li>Distributions generated from larger samples are less dispersed.</li>\n</ol>\n<p>We can take the mean of the sampling distribution itself– <strong>the mean of the sampling distribution is a mean of means.</strong> This mean can be interpreted to be the same as a mean that would have resulted from a single large sample, made up of all the individual observations from each of the samples whose <span class=\"math inline\">\\({\\bar{x}}\\)</span> values are included in the sampling distribution.</p>\n<p>Note that if we had only generated a sampling distribution made up of samples of 5 giraffes, we would not have been able to exclude 11 cm as a possible value for <span class=\"math inline\">\\({\\mu}\\)</span>. In fact, if we were to draw a vertical line in the middle of each of the sampling distributions (the mean), we can tell that the population mean is likely even less than 10 cm.</p>\n<p>In the following window, you will test the relationship between sampling distribution and sample size. The function below (behind-the-scenes code not shown) will plot a sampling distribution made up of 1000 samples, with each sample containing <code>N</code> number of observations. Try setting <code>N</code> to a few different values. What does the resulting sampling distribution looks like? See if you can confirm for yourself that the above points are true.</p>\n<!---LEARNR EX 1-->\n<iframe class=\"interactive\" id=\"myIframe1\" src=\"https://tinystats.shinyapps.io/06-standardError-ex1/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n</div>\n<div id=\"standard-error-of-the-mean\" class=\"section level1\">\n<h1>Standard Error of the Mean</h1>\n<p>As we’ve done before, we want to summarize this spread of mean estimates with a single value. We’ve already learned how to quantify a measure of spread–the standard deviation. If we take the standard deviations of each of the three different sampling scenarios above, then we accept that <em>distributions based on smaller samples should have larger standard deviations</em>.</p>\n<p>In the window below, calculate the standard deviation of each of the three sampling distributions (i.e. for N = 500, N = 50, and N = 5), and confirm that the italicized point above is true. (If you’re working in R locally, use your “homemade” standard deviation function from the <a href=\"04_variance.html\">Variance</a> module.)</p>\n<p>To complete this exercise, you will need to use the objects <code>sampling_distribution_N500</code>, <code>sampling_distribution_N50</code>, <code>sampling_distribution_N5</code>, which are vectors storing the thousands of <span class=\"math inline\">\\({\\bar{x}}\\)</span> values from the corresponding groundhog sampling distributions.</p>\n<!---LEARNR EX 2-->\n<iframe class=\"interactive\" id=\"myIframe2\" src=\"https://tinystats.shinyapps.io/06-standardError-ex2/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n<p>When you calculate the standard deviation of a sampling distribution of <span class=\"math inline\">\\({\\bar{x}}\\)</span> values, you are calculating the <strong>standard error of the mean (SEM)</strong>, or just “standard error”. The SEM is the value that we use to capture the level of precision of our sample estimate. But, we need a better and more efficient way to arrive at this value without relying on a groundhog day situation. Keep reading to learn more.</p>\n<div class=\"alert alert-note\">\n<blockquote>\n<p><strong>A note about SEM:</strong> Here “standard error” will imply standard error of the <em>mean</em>. But we can technically calculate the standard error of any sample statistic, not just the mean. We’ll talk about that more in future modules.</p>\n</blockquote>\n</div>\n</div>\n<div id=\"time-for-a-tea-break\" class=\"section level1\">\n<h1>Time for a tea break!</h1>\n<center>\n<img src=\"images/06_standardError/Slingshot.jpg\" width=\"800\" />\n</center>\n</div>\n<div id=\"standard-error-in-practice\" class=\"section level1\">\n<h1>Standard error in practice</h1>\n<p>Deriving the equation used for calculating the standard error of the mean using theory (i.e. without going out and resampling MANY times) is a bit complicated, but if you’re interested, you can learn more about it <a href=\"https://stats.stackexchange.com/questions/89154/general-method-for-deriving-the-standard-error\">here</a>. Instead, we can capture the relationship between <strong>standard deviation</strong>, <strong>sample size</strong>, and <strong>standard error</strong> with the plot below.</p>\n<center>\n<div id=\"htmlwidget-2ff3788926b5c1f9f2e1\" style=\"width:600px;height:350px;\" class=\"plotly html-widget\"></div>\n<script type=\"application/json\" data-for=\"htmlwidget-2ff3788926b5c1f9f2e1\">{\"x\":{\"visdat\":{\"1437b6a515f47\":[\"function () \",\"plotlyVisDat\"]},\"cur_data\":\"1437b6a515f47\",\"attrs\":{\"1437b6a515f47\":{\"mode\":\"markers\",\"x\":{},\"y\":{},\"marker\":{\"size\":10,\"opacity\":0.75},\"hoverinfo\":\"text\",\"text\":{},\"alpha_stroke\":1,\"sizes\":[10,100],\"spans\":[1,20],\"type\":\"scatter\"}},\"layout\":{\"width\":600,\"height\":350,\"margin\":{\"b\":40,\"l\":60,\"t\":25,\"r\":10},\"autosize\":false,\"xaxis\":{\"domain\":[0,1],\"automargin\":true,\"zeroline\":false,\"title\":\"N\"},\"yaxis\":{\"domain\":[0,1],\"automargin\":true,\"title\":\"Standard Error\",\"zeroline\":false},\"hovermode\":\"closest\",\"showlegend\":false},\"source\":\"A\",\"config\":{\"modeBarButtonsToAdd\":[\"hoverclosest\",\"hovercompare\"],\"showSendToCloud\":false,\"displayModeBar\":false},\"data\":[{\"mode\":\"markers\",\"x\":[5,10,15,20,25,30,35,40,45,50,55,60,65,70,75,80,85,90,95,100,105,110,115,120,125,130,135,140,145,150,155,160,165,170,175,180,185,190,195,200,205,210,215,220,225,230,235,240,245,250,255,260,265,270,275,280,285,290,295,300,305,310,315,320,325,330,335,340,345,350,355,360,365,370,375,380,385,390,395,400,405,410,415,420,425,430,435,440,445,450,455,460,465,470,475,480,485,490,495,500,505,510,515,520,525,530,535,540,545,550,555,560,565,570,575,580,585,590,595,600,605,610,615,620,625,630,635,640,645,650,655,660,665,670,675,680,685,690,695,700,705,710,715,720,725,730,735,740,745,750,755,760,765,770,775,780,785,790,795,800,805,810,815,820,825,830,835,840,845,850,855,860,865,870,875,880,885,890,895,900,905,910,915,920,925,930,935,940,945,950,955,960,965,970,975,980,985,990,995,1000],\"y\":[0.939148550549912,0.66407830863536,0.542217668469038,0.469574275274956,0.42,0.383405790253616,0.354964786985977,0.33203915431768,0.313049516849971,0.29698484809835,0.283163942234562,0.271108834234519,0.260472942637338,0.250998007960223,0.242487113059643,0.234787137637478,0.227776980709589,0.221359436211787,0.215455453937882,0.21,0.204939015319192,0.200227143741574,0.195826009730466,0.191702895126808,0.187829710109982,0.184182184054476,0.180739222823013,0.177482393492988,0.174395507692854,0.171464281994822,0.168676059069525,0.16601957715884,0.16348477827392,0.161062647657948,0.158745078663875,0.156524758424985,0.1543950706397,0.152350012523102,0.150384123548281,0.148492424049175,0.146670362111611,0.144913767461894,0.143218811288799,0.141581971117281,0.14,0.138469899413115,0.136988895341223,0.13555441711726,0.134164078649987,0.132815661727072,0.131507101127881,0.130236471318669,0.12900197453513,0.127801930084539,0.126634764722661,0.125499003980111,0.124393264329409,0.123316246098088,0.122266727045312,0.121243556529821,0.120245650205912,0.119271985191884,0.118321595661992,0.117393568818739,0.116487041207298,0.115601195338268,0.114735256588712,0.113888490354794,0.113060199432215,0.112249721603218,0.111456427411198,0.110679718105893,0.109919023743945,0.109173801431108,0.108443533693808,0.107727726968941,0.107025910201901,0.106337633543785,0.105662467139592,0.105,0.10434983894999,0.103711607648207,0.103084945671501,0.102469507659596,0.10186496251526,0.101270992655787,0.100687293311931,0.100113571870787,0.0995495472593952,0.0989949493661166,0.098449518497084,0.097913004865233,0.0973851681096354,0.0968657768430329,0.0963546082256359,0.0958514475634041,0.095356087929165,0.0948683298050514,0.0943879807448539,0.0939148550549912,0.0934487734928968,0.09298956298171,0.0925370563402387,0.0920910920272381,0.0916515138991168,0.0912181709802446,0.0907909172450946,0.0903696114115064,0.0899541167444051,0.0895443008693564,0.0891400355953819,0.0887411967464942,0.088347664001451,0.0879593207412561,0.0875760539039714,0.087197753846427,0.0868243142124459,0.0864556318072249,0.0860916064775327,0.0857321409974112,0.0853771409590829,0.0850265146687862,0.0846801730472787,0.0843380295347624,0.084,0.0836660026534076,0.0833359579639172,0.08300978857942,0.0826874192506066,0.0823687767580373,0.0820537898422792,0.0817423891369599,0.0814345071045955,0.0811300779750569,0.0808290376865476,0.0805313238289739,0.0802368755895914,0.0799456337008225,0.0796575403901426,0.0793725393319377,0.0790905756012445,0.0788115956292842,0.0785355471607104,0.0782623792124926,0.0779920420343618,0.0777244870707486,0.0774596669241484,0.0771975353198498,0.0769380470719677,0.0766811580507233,0.0764268251509181,0.0761750062615512,0.0759256602365297,0.0756787468664269,0.0754342268512455,0.0751920617741405,0.0749522140760662,0.0747146470313061,0.0744793247238504,0.0742462120245875,0.0740152745692753,0.0737864787372622,0.0735597916309262,0.0733351810558057,0.0731126155013931,0.0728920641225655,0.0726734967216282,0.0724568837309472,0.0722421961961471,0.0720294057598537,0.0718184846459608,0.0716094056443997,0.0714021420963948,0.0711966678801851,0.0709929573971954,0.0707909855586404,0.0705907277725455,0.070392159931169,0.0701952583988119,0.07,0.069806362008026,0.0696143221338386,0.0694238585152651,0.0692349497065576,0.0690475746682501,0.0688617127573151,0.0686773437176115,0.0684944476706114,0.0683130051063973,0.0681329968749203,0.0679544041775102,0.0677772085586298,0.0676013918978633,0.0674269364021332,0.0672538245981366,0.0670820393249937,0.0669115637271024,0.0667423812471915,0.0665744756195654,0.066407830863536],\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"size\":10,\"opacity\":0.75,\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Standard Error: 0.939 <br />N: 5\",\"Standard Error: 0.664 <br />N: 10\",\"Standard Error: 0.542 <br />N: 15\",\"Standard Error: 0.47 <br />N: 20\",\"Standard Error: 0.42 <br />N: 25\",\"Standard Error: 0.383 <br />N: 30\",\"Standard Error: 0.355 <br />N: 35\",\"Standard Error: 0.332 <br />N: 40\",\"Standard Error: 0.313 <br />N: 45\",\"Standard Error: 0.297 <br />N: 50\",\"Standard Error: 0.283 <br />N: 55\",\"Standard Error: 0.271 <br />N: 60\",\"Standard Error: 0.26 <br />N: 65\",\"Standard Error: 0.251 <br />N: 70\",\"Standard Error: 0.242 <br />N: 75\",\"Standard Error: 0.235 <br />N: 80\",\"Standard Error: 0.228 <br />N: 85\",\"Standard Error: 0.221 <br />N: 90\",\"Standard Error: 0.215 <br />N: 95\",\"Standard Error: 0.21 <br />N: 100\",\"Standard Error: 0.205 <br />N: 105\",\"Standard Error: 0.2 <br />N: 110\",\"Standard Error: 0.196 <br />N: 115\",\"Standard Error: 0.192 <br />N: 120\",\"Standard Error: 0.188 <br />N: 125\",\"Standard Error: 0.184 <br />N: 130\",\"Standard Error: 0.181 <br />N: 135\",\"Standard Error: 0.177 <br />N: 140\",\"Standard Error: 0.174 <br />N: 145\",\"Standard Error: 0.171 <br />N: 150\",\"Standard Error: 0.169 <br />N: 155\",\"Standard Error: 0.166 <br />N: 160\",\"Standard Error: 0.163 <br />N: 165\",\"Standard Error: 0.161 <br />N: 170\",\"Standard Error: 0.159 <br />N: 175\",\"Standard Error: 0.157 <br />N: 180\",\"Standard Error: 0.154 <br />N: 185\",\"Standard Error: 0.152 <br />N: 190\",\"Standard Error: 0.15 <br />N: 195\",\"Standard Error: 0.148 <br />N: 200\",\"Standard Error: 0.147 <br />N: 205\",\"Standard Error: 0.145 <br />N: 210\",\"Standard Error: 0.143 <br />N: 215\",\"Standard Error: 0.142 <br />N: 220\",\"Standard Error: 0.14 <br />N: 225\",\"Standard Error: 0.138 <br />N: 230\",\"Standard Error: 0.137 <br />N: 235\",\"Standard Error: 0.136 <br />N: 240\",\"Standard Error: 0.134 <br />N: 245\",\"Standard Error: 0.133 <br />N: 250\",\"Standard Error: 0.132 <br />N: 255\",\"Standard Error: 0.13 <br />N: 260\",\"Standard Error: 0.129 <br />N: 265\",\"Standard Error: 0.128 <br />N: 270\",\"Standard Error: 0.127 <br />N: 275\",\"Standard Error: 0.125 <br />N: 280\",\"Standard Error: 0.124 <br />N: 285\",\"Standard Error: 0.123 <br />N: 290\",\"Standard Error: 0.122 <br />N: 295\",\"Standard Error: 0.121 <br />N: 300\",\"Standard Error: 0.12 <br />N: 305\",\"Standard Error: 0.119 <br />N: 310\",\"Standard Error: 0.118 <br />N: 315\",\"Standard Error: 0.117 <br />N: 320\",\"Standard Error: 0.116 <br />N: 325\",\"Standard Error: 0.116 <br />N: 330\",\"Standard Error: 0.115 <br />N: 335\",\"Standard Error: 0.114 <br />N: 340\",\"Standard Error: 0.113 <br />N: 345\",\"Standard Error: 0.112 <br />N: 350\",\"Standard Error: 0.111 <br />N: 355\",\"Standard Error: 0.111 <br />N: 360\",\"Standard Error: 0.11 <br />N: 365\",\"Standard Error: 0.109 <br />N: 370\",\"Standard Error: 0.108 <br />N: 375\",\"Standard Error: 0.108 <br />N: 380\",\"Standard Error: 0.107 <br />N: 385\",\"Standard Error: 0.106 <br />N: 390\",\"Standard Error: 0.106 <br />N: 395\",\"Standard Error: 0.105 <br />N: 400\",\"Standard Error: 0.104 <br />N: 405\",\"Standard Error: 0.104 <br />N: 410\",\"Standard Error: 0.103 <br />N: 415\",\"Standard Error: 0.102 <br />N: 420\",\"Standard Error: 0.102 <br />N: 425\",\"Standard Error: 0.101 <br />N: 430\",\"Standard Error: 0.101 <br />N: 435\",\"Standard Error: 0.1 <br />N: 440\",\"Standard Error: 0.1 <br />N: 445\",\"Standard Error: 0.099 <br />N: 450\",\"Standard Error: 0.098 <br />N: 455\",\"Standard Error: 0.098 <br />N: 460\",\"Standard Error: 0.097 <br />N: 465\",\"Standard Error: 0.097 <br />N: 470\",\"Standard Error: 0.096 <br />N: 475\",\"Standard Error: 0.096 <br />N: 480\",\"Standard Error: 0.095 <br />N: 485\",\"Standard Error: 0.095 <br />N: 490\",\"Standard Error: 0.094 <br />N: 495\",\"Standard Error: 0.094 <br />N: 500\",\"Standard Error: 0.093 <br />N: 505\",\"Standard Error: 0.093 <br />N: 510\",\"Standard Error: 0.093 <br />N: 515\",\"Standard Error: 0.092 <br />N: 520\",\"Standard Error: 0.092 <br />N: 525\",\"Standard Error: 0.091 <br />N: 530\",\"Standard Error: 0.091 <br />N: 535\",\"Standard Error: 0.09 <br />N: 540\",\"Standard Error: 0.09 <br />N: 545\",\"Standard Error: 0.09 <br />N: 550\",\"Standard Error: 0.089 <br />N: 555\",\"Standard Error: 0.089 <br />N: 560\",\"Standard Error: 0.088 <br />N: 565\",\"Standard Error: 0.088 <br />N: 570\",\"Standard Error: 0.088 <br />N: 575\",\"Standard Error: 0.087 <br />N: 580\",\"Standard Error: 0.087 <br />N: 585\",\"Standard Error: 0.086 <br />N: 590\",\"Standard Error: 0.086 <br />N: 595\",\"Standard Error: 0.086 <br />N: 600\",\"Standard Error: 0.085 <br />N: 605\",\"Standard Error: 0.085 <br />N: 610\",\"Standard Error: 0.085 <br />N: 615\",\"Standard Error: 0.084 <br />N: 620\",\"Standard Error: 0.084 <br />N: 625\",\"Standard Error: 0.084 <br />N: 630\",\"Standard Error: 0.083 <br />N: 635\",\"Standard Error: 0.083 <br />N: 640\",\"Standard Error: 0.083 <br />N: 645\",\"Standard Error: 0.082 <br />N: 650\",\"Standard Error: 0.082 <br />N: 655\",\"Standard Error: 0.082 <br />N: 660\",\"Standard Error: 0.081 <br />N: 665\",\"Standard Error: 0.081 <br />N: 670\",\"Standard Error: 0.081 <br />N: 675\",\"Standard Error: 0.081 <br />N: 680\",\"Standard Error: 0.08 <br />N: 685\",\"Standard Error: 0.08 <br />N: 690\",\"Standard Error: 0.08 <br />N: 695\",\"Standard Error: 0.079 <br />N: 700\",\"Standard Error: 0.079 <br />N: 705\",\"Standard Error: 0.079 <br />N: 710\",\"Standard Error: 0.079 <br />N: 715\",\"Standard Error: 0.078 <br />N: 720\",\"Standard Error: 0.078 <br />N: 725\",\"Standard Error: 0.078 <br />N: 730\",\"Standard Error: 0.077 <br />N: 735\",\"Standard Error: 0.077 <br />N: 740\",\"Standard Error: 0.077 <br />N: 745\",\"Standard Error: 0.077 <br />N: 750\",\"Standard Error: 0.076 <br />N: 755\",\"Standard Error: 0.076 <br />N: 760\",\"Standard Error: 0.076 <br />N: 765\",\"Standard Error: 0.076 <br />N: 770\",\"Standard Error: 0.075 <br />N: 775\",\"Standard Error: 0.075 <br />N: 780\",\"Standard Error: 0.075 <br />N: 785\",\"Standard Error: 0.075 <br />N: 790\",\"Standard Error: 0.074 <br />N: 795\",\"Standard Error: 0.074 <br />N: 800\",\"Standard Error: 0.074 <br />N: 805\",\"Standard Error: 0.074 <br />N: 810\",\"Standard Error: 0.074 <br />N: 815\",\"Standard Error: 0.073 <br />N: 820\",\"Standard Error: 0.073 <br />N: 825\",\"Standard Error: 0.073 <br />N: 830\",\"Standard Error: 0.073 <br />N: 835\",\"Standard Error: 0.072 <br />N: 840\",\"Standard Error: 0.072 <br />N: 845\",\"Standard Error: 0.072 <br />N: 850\",\"Standard Error: 0.072 <br />N: 855\",\"Standard Error: 0.072 <br />N: 860\",\"Standard Error: 0.071 <br />N: 865\",\"Standard Error: 0.071 <br />N: 870\",\"Standard Error: 0.071 <br />N: 875\",\"Standard Error: 0.071 <br />N: 880\",\"Standard Error: 0.071 <br />N: 885\",\"Standard Error: 0.07 <br />N: 890\",\"Standard Error: 0.07 <br />N: 895\",\"Standard Error: 0.07 <br />N: 900\",\"Standard Error: 0.07 <br />N: 905\",\"Standard Error: 0.07 <br />N: 910\",\"Standard Error: 0.069 <br />N: 915\",\"Standard Error: 0.069 <br />N: 920\",\"Standard Error: 0.069 <br />N: 925\",\"Standard Error: 0.069 <br />N: 930\",\"Standard Error: 0.069 <br />N: 935\",\"Standard Error: 0.068 <br />N: 940\",\"Standard Error: 0.068 <br />N: 945\",\"Standard Error: 0.068 <br />N: 950\",\"Standard Error: 0.068 <br />N: 955\",\"Standard Error: 0.068 <br />N: 960\",\"Standard Error: 0.068 <br />N: 965\",\"Standard Error: 0.067 <br />N: 970\",\"Standard Error: 0.067 <br />N: 975\",\"Standard Error: 0.067 <br />N: 980\",\"Standard Error: 0.067 <br />N: 985\",\"Standard Error: 0.067 <br />N: 990\",\"Standard Error: 0.067 <br />N: 995\",\"Standard Error: 0.066 <br />N: 1000\"],\"type\":\"scatter\",\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"line\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"frame\":null}],\"highlight\":{\"on\":\"plotly_click\",\"persistent\":false,\"dynamic\":false,\"selectize\":false,\"opacityDim\":0.2,\"selected\":{\"opacity\":1},\"debounce\":0},\"shinyEvents\":[\"plotly_hover\",\"plotly_click\",\"plotly_selected\",\"plotly_relayout\",\"plotly_brushed\",\"plotly_brushing\",\"plotly_clickannotation\",\"plotly_doubleclick\",\"plotly_deselect\",\"plotly_afterplot\",\"plotly_sunburstclick\"],\"base_url\":\"https://plot.ly\"},\"evals\":[],\"jsHooks\":[]}</script>\n</center>\n<p>The standard deviation in this plot is <code>2.1</code>, which represents <span class=\"math inline\">\\({\\sigma}\\)</span> for giraffe heights on Island 1. This population value is technically still unknown but can be deduced in theory by repeating the groundhog day example for the standard deviation instead of for the mean. It’s important to note that the plot would have the same <em>shape</em> regardless of what scenario or standard deviation we were using.</p>\n<p><strong>Can you figure out what the equation is for the SEM?</strong> Look at the plot above, hover over the points, and see if you can gather how standard error of the mean, standard deviation, and sample size are related. Here are some hints:</p>\n<ul>\n<li>SEM will be on one side of the equation, standard devation, and N will be on the other.</li>\n<li>The equation will involve division.</li>\n<li>There is one more missing piece of the puzzle: When you look at the shape of the plot above. What type of function does this remind you of? We haven’t covered this explicitly, but take a look <a href=\"https://www.mathsisfun.com/sets/functions-common.html\">here</a> and see if you get any ideas.</li>\n</ul>\n<p>Use the window below as a calculator to see if you can figure out the equation for the SEM.</p>\n<!---LEARNR EX 3-->\n<iframe class=\"interactive\" id=\"myIframe3\" src=\"https://tinystats.shinyapps.io/06-standardError-ex3/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n<p>In case you weren’t able to figure it out, remember to check the <code>Solutions</code> tab in the exercise window or take a look at this <a href=\"https://en.wikipedia.org/wiki/Standard_error\">link</a> for the equation for calculating the SEM. Recall that we’re working with the sample (and not population) standard deviation (<span class=\"math inline\">\\(s\\)</span>), so make sure you find the correct equation.</p>\n</div>\n<div id=\"confirming-that-the-sem-equation-works\" class=\"section level1\">\n<h1>Confirming that the SEM equation works</h1>\n<p>Let’s test out the SEM equation on our original sample of <code>heights_island1</code> and compare it to what we would have gotten by taking the standard deviation of the sampling distribution example with the N= 50 case. <strong>Does the SEM seem like a good approximation of the standard deviation of the sampling distribution?</strong></p>\n<p>Below, you will use the object <code>heights_island1</code>, which contains our single sample of N=50, and the object <code>sampling_distribution_N50</code>, which contains the data from the corresponding groundhog sampling distribution.</p>\n<!---LEARNR EX 4-->\n<iframe class=\"interactive\" id=\"myIframe4\" src=\"https://tinystats.shinyapps.io/06-standardError-ex4/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n<p>Close enough! We wouldn’t expect these to be <em>exactly</em> the same because of sampling variability.</p>\n</div>\n<div id=\"how-do-we-apply-the-sem\" class=\"section level1\">\n<h1>How do we apply the SEM?</h1>\n<p>Now that we have a better understanding of how to gauge the precision of our sample estimates, we can test our question about the <span class=\"math inline\">\\({\\mu}\\)</span> being less than 11 cm once and for all.</p>\n<p>To formally make inferences, we need to revisit the principles of the <a href=\"04_variance.html#empirical\">empirical rule</a> to construct confidence intervals. (Confidence intervals are just one way to make inferences– we’ll discuss other ways later.)</p>\n<p>Remember, that the SEM is just the standard deviation of the sampling distribution, so we can apply the empirical rule. As a result, ± 2 SEM from a point estimate will capture ~95% of the sampling distribution. Actually, we were a little bit sloppy earlier when we said 2 standard deviations captures 95% of a normal distribution; this will actually give you 95.45% of the data. The true value is 1.96 standard deviations–and this is what we use to construct a 95% confidence interval (CI).</p>\n<p>Loosely speaking, a 95% CI is the range of values that we are 95% confident contains the true mean of the population. We want to know whether our guess of 11 cm falls outside of this range of certainty. If it does – we can be sure enough that the true <span class=\"math inline\">\\({\\mu}\\)</span> of giraffe heights on Island 1 is less than 11 cm.</p>\n<p>Use the window below to find out and make your first inference by constructing the 95% CI for the <code>heights_island1</code> mean estimate!</p>\n<!---LEARNR EX 5-->\n<iframe class=\"interactive\" id=\"myIframe5\" src=\"https://tinystats.shinyapps.io/06-standardError-ex5/\" scrolling=\"no\" frameborder=\"no\">\n</iframe>\n<!------------->\n<p>The upper limit of our 95% CI is less than 11 cm, so the population mean of heights on island 1 is likely less than 11 cm. In the scientific community, this is a bonafide way of drawing this conclusion.</p>\n<center>\n<img src=\"images/06_standardError/BabyInference.jpg\" width=\"600\" />\n</center>\n</div>\n<div id=\"things-to-think-about\" class=\"section level1\">\n<h1>Things to think about</h1>\n<p>We’ve been a little fast and loose with our words. The formal definition of CIs is the following:</p>\n<p><strong>If we were to sample over and over again, then 95% of the time the CIs would contain the true mean.</strong></p>\n<p>Importantly, some examples of what the 95% CI does NOT mean are:</p>\n<ul>\n<li>A 95% CI does <strong>not</strong> mean that it contains 95% of the sample data.</li>\n<li>A CI is not a definitive range of likely values for the sample statistic, but you can think of it as estimate of likely values for the population parameter.</li>\n<li>It does not mean that values outside of the 95% CI have a 5% chance of being the true mean.</li>\n</ul>\n<p>The precise interpretation of CIs is quite a nuanced and rather hotly debated topic <a href=\"https://featuredcontent.psychonomic.org/confidence-intervals-more-like-confusion-intervals/\">see here</a> and becomes somewhat philosophical– so if these definition subtleties seem confusing, don’t feel bad. As mentioned in the blog post linked above, one recent paper reported that 97% of surveyed researchers endorsed at least one misconception (out of 6) about CIs.</p>\n<script>\n  iFrameResize({}, \".interactive\");\n</script>\n</div>\n\n<!DOCTYPE html>\n\n<div class=\"foot\">\n\t<hr> \n\t<p style=\"text-align: center;\"> <span style=\"color: #808080; display: inline-block; width: 58%;\"> \tThis project was created entirely in RStudio using R Markdown and published on GitHub pages. \n </span></p>\n\t<p style=\"text-align: center;\">\n\t</p>\n</div>\n\n\n</div>\n</div>\n\n</div>\n\n<script>\n\n// add bootstrap table styles to pandoc tables\nfunction bootstrapStylePandocTables() {\n  $('tr.odd').parent('tbody').parent('table').addClass('table table-condensed');\n}\n$(document).ready(function () {\n  bootstrapStylePandocTables();\n});\n\n\n</script>\n\n<!-- tabsets -->\n\n<script>\n$(document).ready(function () {\n  window.buildTabsets(\"TOC\");\n});\n\n$(document).ready(function () {\n  $('.tabset-dropdown > .nav-tabs > li').click(function () {\n    $(this).parent().toggleClass('nav-tabs-open');\n  });\n});\n</script>\n\n<!-- code folding -->\n\n<script>\n$(document).ready(function ()  {\n\n    // temporarily add toc-ignore selector to headers for the consistency with Pandoc\n    $('.unlisted.unnumbered').addClass('toc-ignore')\n\n    // move toc-ignore selectors from section div to header\n    $('div.section.toc-ignore')\n        .removeClass('toc-ignore')\n        .children('h1,h2,h3,h4,h5').addClass('toc-ignore');\n\n    // establish options\n    var options = {\n      selectors: \"h1,h2,h3\",\n      theme: \"bootstrap3\",\n      context: '.toc-content',\n      hashGenerator: function (text) {\n        return text.replace(/[.\\\\/?&!#<>]/g, '').replace(/\\s/g, '_');\n      },\n      ignoreSelector: \".toc-ignore\",\n      scrollTo: 0\n    };\n    options.showAndHide = true;\n    options.smoothScroll = true;\n\n    // tocify\n    var toc = $(\"#TOC\").tocify(options).data(\"toc-tocify\");\n});\n</script>\n\n<!-- dynamically load mathjax for compatibility with self-contained -->\n<script>\n  (function () {\n    var script = document.createElement(\"script\");\n    script.type = \"text/javascript\";\n    script.src  = \"https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML\";\n    document.getElementsByTagName(\"head\")[0].appendChild(script);\n  })();\n</script>\n\n</body>\n</html>\n"
  },
  {
    "path": "docs/07_ttest.html",
    "content": "<!DOCTYPE html>\n\n<html>\n\n<head>\n\n<meta charset=\"utf-8\" />\n<meta name=\"generator\" content=\"pandoc\" />\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=EDGE\" />\n\n\n\n\n<title>t-test</title>\n\n<script src=\"site_libs/jquery-3.6.0/jquery-3.6.0.min.js\"></script>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n<link href=\"site_libs/bootstrap-3.3.5/css/cosmo.min.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/bootstrap-3.3.5/js/bootstrap.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/html5shiv.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/respond.min.js\"></script>\n<style>h1 {font-size: 34px;}\n       h1.title {font-size: 38px;}\n       h2 {font-size: 30px;}\n       h3 {font-size: 24px;}\n       h4 {font-size: 18px;}\n       h5 {font-size: 16px;}\n       h6 {font-size: 12px;}\n       code {color: inherit; background-color: rgba(0, 0, 0, 0.04);}\n       pre:not([class]) { background-color: white }</style>\n<script src=\"site_libs/jqueryui-1.11.4/jquery-ui.min.js\"></script>\n<link href=\"site_libs/tocify-1.9.1/jquery.tocify.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/tocify-1.9.1/jquery.tocify.js\"></script>\n<script src=\"site_libs/navigation-1.1/tabsets.js\"></script>\n<link href=\"site_libs/highlightjs-9.12.0/default.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/highlightjs-9.12.0/highlight.js\"></script>\n<link href=\"site_libs/font-awesome-5.1.0/css/all.css\" rel=\"stylesheet\" />\n<link href=\"site_libs/font-awesome-5.1.0/css/v4-shims.css\" rel=\"stylesheet\" />\n<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n</head>\n\n\n  <div class=\"image-descript\"> \n\t\t<img class=\"big_image\" src=\"images/big_image/07_tTest_image.jpg\">\n\t\t<div class=\"image-text\">\n\t\t\t<div class=\"lil-image-text\">The difference between two groups:</div>\n\t\t\t<div class=\"big-image-text\"><strong>T-TEST</strong></div>\n\t\t</div>\n  </div>\n\n<style type=\"text/css\">\n  code{white-space: pre-wrap;}\n  span.smallcaps{font-variant: small-caps;}\n  span.underline{text-decoration: underline;}\n  div.column{display: inline-block; vertical-align: top; width: 50%;}\n  div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}\n  ul.task-list{list-style: none;}\n    </style>\n\n<style type=\"text/css\">code{white-space: pre;}</style>\n<script type=\"text/javascript\">\nif (window.hljs) {\n  hljs.configure({languages: []});\n  hljs.initHighlightingOnLoad();\n  if (document.readyState && document.readyState === \"complete\") {\n    window.setTimeout(function() { hljs.initHighlighting(); }, 0);\n  }\n}\n</script>\n\n\n\n\n\n\n\n\n\n<style type = \"text/css\">\n.main-container {\n  max-width: 940px;\n  margin-left: auto;\n  margin-right: auto;\n}\nimg {\n  max-width:100%;\n}\n.tabbed-pane {\n  padding-top: 12px;\n}\n.html-widget {\n  margin-bottom: 20px;\n}\nbutton.code-folding-btn:focus {\n  outline: none;\n}\nsummary {\n  display: list-item;\n}\ndetails > summary > p:only-child {\n  display: inline;\n}\npre code {\n  padding: 0;\n}\n</style>\n\n\n<style type=\"text/css\">\n.dropdown-submenu {\n  position: relative;\n}\n.dropdown-submenu>.dropdown-menu {\n  top: 0;\n  left: 100%;\n  margin-top: -6px;\n  margin-left: -1px;\n  border-radius: 0 6px 6px 6px;\n}\n.dropdown-submenu:hover>.dropdown-menu {\n  display: block;\n}\n.dropdown-submenu>a:after {\n  display: block;\n  content: \" \";\n  float: right;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n  border-width: 5px 0 5px 5px;\n  border-left-color: #cccccc;\n  margin-top: 5px;\n  margin-right: -10px;\n}\n.dropdown-submenu:hover>a:after {\n  border-left-color: #adb5bd;\n}\n.dropdown-submenu.pull-left {\n  float: none;\n}\n.dropdown-submenu.pull-left>.dropdown-menu {\n  left: -100%;\n  margin-left: 10px;\n  border-radius: 6px 0 6px 6px;\n}\n</style>\n\n<script type=\"text/javascript\">\n// manage active state of menu based on current page\n$(document).ready(function () {\n  // active menu anchor\n  href = window.location.pathname\n  href = href.substr(href.lastIndexOf('/') + 1)\n  if (href === \"\")\n    href = \"index.html\";\n  var menuAnchor = $('a[href=\"' + href + '\"]');\n\n  // mark it active\n  menuAnchor.tab('show');\n\n  // if it's got a parent navbar menu mark it active as well\n  menuAnchor.closest('li.dropdown').addClass('active');\n\n  // Navbar adjustments\n  var navHeight = $(\".navbar\").first().height() + 15;\n  var style = document.createElement('style');\n  var pt = \"padding-top: \" + navHeight + \"px; \";\n  var mt = \"margin-top: -\" + navHeight + \"px; \";\n  var css = \"\";\n  // offset scroll position for anchor links (for fixed navbar)\n  for (var i = 1; i <= 6; i++) {\n    css += \".section h\" + i + \"{ \" + pt + mt + \"}\\n\";\n  }\n  style.innerHTML = \"body {\" + pt + \"padding-bottom: 40px; }\\n\" + css;\n  document.head.appendChild(style);\n});\n</script>\n\n<!-- tabsets -->\n\n<style type=\"text/css\">\n.tabset-dropdown > .nav-tabs {\n  display: inline-table;\n  max-height: 500px;\n  min-height: 44px;\n  overflow-y: auto;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n}\n\n.tabset-dropdown > .nav-tabs > li.active:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {\n  content: \"&#xe258;\";\n  border: none;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs > li.active {\n  display: block;\n}\n\n.tabset-dropdown > .nav-tabs > li > a,\n.tabset-dropdown > .nav-tabs > li > a:focus,\n.tabset-dropdown > .nav-tabs > li > a:hover {\n  border: none;\n  display: inline-block;\n  border-radius: 4px;\n  background-color: transparent;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li {\n  display: block;\n  float: none;\n}\n\n.tabset-dropdown > .nav-tabs > li {\n  display: none;\n}\n</style>\n\n<!-- code folding -->\n\n\n\n<style type=\"text/css\">\n\n#TOC {\n  margin: 25px 0px 20px 0px;\n}\n@media (max-width: 768px) {\n#TOC {\n  position: relative;\n  width: 100%;\n}\n}\n\n@media print {\n.toc-content {\n  /* see https://github.com/w3c/csswg-drafts/issues/4434 */\n  float: right;\n}\n}\n\n.toc-content {\n  padding-left: 30px;\n  padding-right: 40px;\n}\n\ndiv.main-container {\n  max-width: 1200px;\n}\n\ndiv.tocify {\n  width: 20%;\n  max-width: 260px;\n  max-height: 85%;\n}\n\n@media (min-width: 768px) and (max-width: 991px) {\n  div.tocify {\n    width: 25%;\n  }\n}\n\n@media (max-width: 767px) {\n  div.tocify {\n    width: 100%;\n    max-width: none;\n  }\n}\n\n.tocify ul, .tocify li {\n  line-height: 20px;\n}\n\n.tocify-subheader .tocify-item {\n  font-size: 0.90em;\n}\n\n.tocify .list-group-item {\n  border-radius: 0px;\n}\n\n\n</style>\n\n\n\n</head>\n\n<body>\n\n\n<div class=\"container-fluid main-container\">\n\n\n<!-- setup 3col/9col grid for toc_float and main content  -->\n<div class=\"row\">\n<div class=\"col-xs-12 col-sm-4 col-md-3\">\n<div id=\"TOC\" class=\"tocify\">\n</div>\n</div>\n\n<div class=\"toc-content col-xs-12 col-sm-8 col-md-9\">\n\n\n\n\n<div class=\"navbar navbar-default  navbar-fixed-top\" role=\"navigation\">\n  <div class=\"container\">\n    <div class=\"navbar-header\">\n      <button type=\"button\" class=\"navbar-toggle collapsed\" data-toggle=\"collapse\" data-bs-toggle=\"collapse\" data-target=\"#navbar\" data-bs-target=\"#navbar\">\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n      </button>\n      <a class=\"navbar-brand\" href=\"index.html\"> </a>\n    </div>\n    <div id=\"navbar\" class=\"navbar-collapse collapse\">\n      <ul class=\"nav navbar-nav\">\n        <li>\n  <a href=\"index.html\">\n    <span class=\"fa fa-home\"></span>\n     \n  </a>\n</li>\n<li>\n  <a href=\"00_narrative.html\">History of Teacup Giraffes</a>\n</li>\n<li class=\"dropdown\">\n  <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\" role=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\">\n    Modules\n     \n    <span class=\"caret\"></span>\n  </a>\n  <ul class=\"dropdown-menu\" role=\"menu\">\n    <li>\n      <a href=\"01_introToR.html\">Intro to R</a>\n    </li>\n    <li>\n      <a href=\"02_bellCurve.html\">Intro to the Normal Distribution</a>\n    </li>\n    <li>\n      <a href=\"03_mean.html\">Mean, Median, Mode</a>\n    </li>\n    <li>\n      <a href=\"04_variance.html\">Spread of the Data</a>\n    </li>\n    <li>\n      <a href=\"05_correlation.html\">Covariance and Correlation</a>\n    </li>\n    <li>\n      <a href=\"06_standardError.html\">Standard Error</a>\n    </li>\n  </ul>\n</li>\n<li>\n  <a href=\"aboutTheAuthors.html\">About the Authors</a>\n</li>\n      </ul>\n      <ul class=\"nav navbar-nav navbar-right\">\n        <li>\n  <a href=\"https://github.com/tinystats/teacups-giraffes-and-statistics\">\n    <span class=\"fa fa-github\"></span>\n     \n  </a>\n</li>\n      </ul>\n    </div><!--/.nav-collapse -->\n  </div><!--/.container -->\n</div><!--/.navbar -->\n\n<div id=\"header\">\n\n\n\n<h1 class=\"title toc-ignore\">t-test</h1>\n\n</div>\n\n\n<script src=\"https://cdn.datacamp.com/datacamp-light-latest.min.js\"></script>\n<div class=\"obj\">\n<p><strong>Module learning objectives</strong></p>\n<ol style=\"list-style-type: decimal\">\n<li>Determine how to quantify the uncertainty of an estimate</li>\n<li>Describe the concept of statistical inference</li>\n</ol>\n</div>\n<div id=\"the-two-islands\" class=\"section level1\">\n<h1>The Two Islands</h1>\n<p>You’d like to make an <a href=\"06_standardError.html\">inference</a> to formally investigate whether you have any reason to believe that the mean of heights on Island 1 differs from the mean of the heights on Island 2.</p>\n<p>The means of the heights of both islands are shown below:</p>\n<pre class=\"r\"><code>mean(heights_island1)</code></pre>\n<pre><code>## [1] 9.714141</code></pre>\n<pre class=\"r\"><code>mean(heights_island2)</code></pre>\n<pre><code>## [1] 18.09671</code></pre>\n<p>It’s obvious that the mean of the two <strong>samples</strong> we took are different, but the main question is if the <strong>population</strong> means are different?</p>\n<p>This question is of interest because if the two population means are different, it may indicate that a cool evolutionary story is at play. For example, based on your experience it seems clear that the two groups of giraffes have been isolated. Their tiny stature would make it near impossible to move back and forth between the two islands, hence impeding mixing between the two groups. Over time, selection pressures could then have made the two groups distinct regarding height.</p>\n<p>How do we test this?</p>\n</div>\n<div id=\"testing-for-group-difference\" class=\"section level1\">\n<h1>Testing for group difference</h1>\n<p>When testing for group mean differenes, [it is much more common for a researcher to be interested in the <strong>difference</strong> between means than in the specific values of the means themselves. ] stolen</p>\n<p>When we focus on the <strong>mean difference</strong>, represented by <span class=\"math inline\">\\(\\Delta_{\\bar{x}}\\)</span> (read “delta x-bar”), we can ask: is the <span class=\"math inline\">\\(\\Delta_{\\bar{x}}\\)</span> meaningfully different from 0?</p>\n<p>The sample mean difference is below:</p>\n<pre class=\"r\"><code>mean(heights_island2) - mean(heights_island1)</code></pre>\n<pre><code>## [1] 8.38257</code></pre>\n<p>This is just another estimate at the sample level whose precision we need to quantify to be able to make inferences.</p>\n<p>Formally, statistical inference is about testing hypotheses (which we intentionally did not introduce in the previous module). In research, a <strong>hypothesis</strong> is a statement of a suggested outcome for a study [THIS SENTENCE IS TOO VAGUE]. The goal of statistcal inference is to reject the <strong>null hypotheses</strong> (<span class=\"math inline\">\\(H_0\\)</span>, read “H-nought”), the default suggested outcome, which assumes that there is no association or difference between two or more groups. If we cannot reject <span class=\"math inline\">\\(H_0\\)</span>, then it means we must accept the alternative, <span class=\"math inline\">\\(H_A\\)</span>, that there <em>is</em> a meaningful difference or association.</p>\n<p>Our null hypothesis is the following: the mean difference between the two populations is 0. The corresponding equations are shown below for the null and alternative hypotheses. Here, we use <span class=\"math inline\">\\(\\Delta_{\\mu}\\)</span>, because we are referring to the population values.</p>\n<p><span class=\"math inline\">\\(H_0\\)</span> : <span class=\"math inline\">\\(\\Delta_{\\mu}\\)</span> = 0\n<br>\n<span class=\"math inline\">\\(H_A\\)</span> : <span class=\"math inline\">\\(\\Delta_{\\mu}\\)</span> <span class=\"math inline\">\\(\\neq\\)</span> 0\n[MAKE EQUATION??]</p>\n<p>One way to reject the null hypothesis would be to construct 95% CIs around the estimate for <span class=\"math inline\">\\(\\Delta_{\\bar{x}}\\)</span>.</p>\n</div>\n<div id=\"pooled-standard-deviation\" class=\"section level1\">\n<h1>Pooled standard deviation</h1>\n<p>As we learned previously, a prerequisite to calculating 95% CIs is to calculate the standard error (which we know will require the sample standard deviation). However, we’re now working with two samples, so which sample’s standard deviation do we use? Can we use both?</p>\n<p>In this particular case, the standard error of the mean difference can be calculated based on a <em>combined</em>, or <strong>pooled standard deviation</strong> (<span class=\"math inline\">\\(s_{p}\\)</span>) from two samples. We use the standard deviation of each sample, weighted by sample size.</p>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<span class=\"math display\" id=\"eq:equation1\">\\[\\begin{equation}\n\\tag{1}\n\\Large s_{p} = \\sqrt{\\frac{s^2(n_1-1) + s^2(n_2-1)}{(n_1-1) + (n_2-1)}}\n\\end{equation}\\]</span>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<p>One thing to point out is that standard deviations from samples cannot be added together – but variances can be, which is why in (1) we use <span class=\"math inline\">\\(s^2\\)</span> in the numerator only to take then the square root of the entire term.</p>\n<p>We see that the variances are being multiplied by a term containing the sample size (<span class=\"math inline\">\\(n\\)</span>). In the case that each of our samples were differently sized, we would want to more heavily weight the variance of the sample that was larger. In our case now, both of our samples have the same <span class=\"math inline\">\\(n\\)</span>, but we introduce the equation for more general cases.</p>\n<p>If you’re wondering why <span class=\"math inline\">\\(n-1\\)</span> is necessary for the weighting, and not just <span class=\"math inline\">\\(n\\)</span>, hold that thought and we’ll return to it later. But for now, we’ll just point out that it is <em>not</em> to adjust for the inherent bias when calculating sample variance (i.e. not the same reason that we used N-1 in the variance module [link]).</p>\n<p>[DATA CAMP WINDOW WHERE THEY WILL CALCULATE THE S_P OF THE DATA]</p>\n</div>\n<div id=\"standard-error-se-of-the-mean-difference\" class=\"section level1\">\n<h1>Standard Error (SE) of the mean difference</h1>\n<p>After calculating the pooled standard deviation, the next step is to determine the standard error of the mean difference. We will follow the same logic as we did when calculated the standard error based on a single sample – except now we will use the pooled standard deviation. Again, we will be adding the terms from the two samples together, so to be able to sum these we need to use the pooled <em>variance</em> (the square of the pooled standard deviation.)</p>\n<p>[ annotated?]</p>\n<div style=\"margin-bottom: 50px;\">\n\n</div>\n<span class=\"math display\" id=\"eq:equation2\">\\[\\begin{equation}\n\\tag{2}\n\\Large SE_{({\\bar{x_1}-\\bar{x_2})}} = \\sqrt{\\frac{s_p^2}{n_1} + {\\frac{s_p^2}{n_2}}}\n\\end{equation}\\]</span>\n<div style=\"margin-bottom:50px\">\n\n</div>\n<p>[DATA CAMP WINDOW WHERE THEY WILL CALCULATE THE SE OF THE MEAN DIFF]</p>\n<p>Now that you know the standard error, you are ready to construct the 95% CI around the mean difference. As before, this will be the mean difference plus/minus 1.96 * <span class=\"math inline\">\\(SE_{({\\bar{x_1}-\\bar{x_2})}}\\)</span>.</p>\n<p>Now we can see whether or not our null hypothesis can be rejected. If the 95% CI for values of <span class=\"math inline\">\\({({\\bar{x_1}-\\bar{x_2})}\\)</span> includes 0, then we do not have reason to believe that the population means are different.</p>\n<p>[Construct interval for yourself below, DATA CAMP, INSTRUCTIONS]</p>\n<div data-datacamp-exercise=\"\" data-height=\"160\" data-encoded=\"true\">\neyJsYW5ndWFnZSI6InIiLCJwcmVfZXhlcmNpc2VfY29kZSI6InNldC5zZWVkKDEyKVxuXG5oZWlnaHRzX2lzbGFuZDEgPC0gcm5vcm0oNTAsMTAsMilcbmhlaWdodHNfaXNsYW5kMiA8LSBybm9ybSg1MCwgMTgsIDEuMikiLCJzYW1wbGUiOiIjIENhbGN1bGF0ZSB0aGUgbWVhbiBkaWZmXG5cbm1lYW5fZGlmZiA8LSAgXG5cbiMgQ2FsY3VsYXRlIHRoZSBTcCBmb3IgaGVpZ2h0c19pc2xhbmQxIGFuZCBoZWlnaHRzX2lzbGFuZDJcblNwIDwtIFxuXG4jIENhbGN1bGF0ZSB0aGUgU0VfbWVhbmRpZmZcblNFX21lYW5kaWZmIDwtIFxuXG4jIEFkZCBcdTAwYjEgMS45NiBTRU0gdG8gdGhlIHNhbXBsZSBtZWFuIHRvIGNvbnN0cnVjdCB0aGUgdXBwZXIgYW5kIGxvd2VyIGJvdW5kcyBvZiB0aGUgOTUlIENJXG5cbnVwcGVyQ0kgPC0gXG5sb3dlckNJIDwtIFxuICBcbm1lYW5kaWZmXzk1Q0kgPC0gYyhsb3dlckNJLCB1cHBlckNJKVxubWVhbmRpZmZfOTVDSSIsInNvbHV0aW9uIjoiIyBDYWxjdWxhdGUgdGhlIG1lYW4gZGlmZmVyZW5jZVxubWVhbl9kaWZmIDwtICBtZWFuKGhlaWdodHNfaXNsYW5kMikgLSBtZWFuKGhlaWdodHNfaXNsYW5kMSlcblxuIyBDYWxjdWxhdGUgdGhlIFNwIGZvciBoZWlnaHRzX2lzbGFuZDEgYW5kIGhlaWdodHNfaXNsYW5kMlxuTjE9NTBcbk4yPTUwXG5cblNwIDwtIHNxcnQoKChzZChoZWlnaHRzX2lzbGFuZDEpXjIpKihOMS0xKSArIChzZChoZWlnaHRzX2lzbGFuZDIpXjIpKihOMi0xKSkvKChOMS0xKSsoTjItMSkpKVxuXG5TcCA8LSBzcXJ0KCh2YXIoaGVpZ2h0c19pc2xhbmQxKSooNDkpICsgdmFyKGhlaWdodHNfaXNsYW5kMikqKDQ5KSkvKE4xK04yLTIpKVxuXG4jIENhbGN1bGF0ZSB0aGUgU0VfbWVhbmRpZmZcblxuU0VfbWVhbmRpZmYgPC0gc3FydChTcF4yL04xICsgU3BeMi9OMilcblxuIyBBZGQgXHUwMGIxIDEuOTYgU0VNIHRvIHRoZSBzYW1wbGUgbWVhbiB0byBjb25zdHJ1Y3QgdGhlIHVwcGVyIGFuZCBsb3dlciBib3VuZHMgb2YgdGhlIDk1JSBDSVxuXG51cHBlckNJIDwtIG1lYW5fZGlmZiArIDEuOTYqU0VfbWVhbmRpZmZcbmxvd2VyQ0kgPC0gIG1lYW5fZGlmZiAtIDEuOTYqU0VfbWVhbmRpZmZcbiAgXG5tZWFuZGlmZl85NUNJIDwtIGMobG93ZXJDSSwgdXBwZXJDSSlcbm1lYW5kaWZmXzk1Q0kifQ==\n</div>\n<p>Our 95% CI does not include 0 by a lot! So we can conclude that the population means from Island 1 and Island 2 are mostly likely distinct. In other words, we can reject <span class=\"math inline\">\\(H_0\\)</span>, the null hypothesis. In doing so, we say that the mean difference is <em>statistically significant</em>.</p>\n<p>[T test function will calculate the 95CI using the t distribution @ 97.5%m, which doesn’t always give 1.96]</p>\n</div>\n<div id=\"p-values\" class=\"section level1\">\n<h1>P-values</h1>\n<p>Even though CIs are great tools for inference, you are probably most familiar with seeing p-values in scientific literature. The <strong>p-value</strong> that is output from your statistical test gives you a metric that tells you whether or not your results are statistically significant. Typically, p-values &lt; 0.05 meet this criterion.</p>\n<p>The “p” in p-value stands for “probability”. Probability of what? The <strong>p-value</strong> is the probability that you would have gotten your results or something more extreme if in fact the null hypothesis were true. “More extreme”, in this case, would be a mean difference even greater than what we see in the present data. The lower the p-value, the less likely you’d be getting your results due to chance alone.</p>\n<p>Now let’s derive the p-value for the mean difference of the two island heights, and make sure that we can draw the same conclusion that we did when we used the 95% CI for inference. In order to do this, we will use a statistical test for comparing two groups: the <strong>t-test</strong>.</p>\n</div>\n<div id=\"the-t-test\" class=\"section level1\">\n<h1>The t-test</h1>\n<p>The t-test is all about the <strong>t-statistic</strong>, which is produced when the mean difference is divided by the standard error. When we divide by the standard error, we turn our mean difference estimate into a unitless metric that is not dependent on the scale that means were recorded with (i.e. centimeters). Furthermore, dividing by the standard error also will also account for the uncertainty in the estimate.</p>\n<ul>\n<li>The t-statistic is essentially combining whatever our sample estimate is (e.g. mean difference, sample mean, etc.) and its uncertainty (i.e. standard error) into one value.<br />\n</li>\n<li>we convert the t-statistic into a p-value via the a specific kind of distribution called the t-distribution. [plot, here’s an example of one]</li>\n<li>the further out in the tails of the t-distribution that the t-statistic falls. The lower the pvalue will be.</li>\n</ul>\n<ol start=\"3\" style=\"list-style-type: decimal\">\n<li>Degrees of freedom; Hasse has some ideas.</li>\n<li>A formal definition of hypothesis including null hypothesis.</li>\n</ol>\n<p>Implement, and then formally answer the question.</p>\n</div>\n<div id=\"degrees-of-freedom\" class=\"section level1\">\n<h1>Degrees of Freedom</h1>\n<ul>\n<li>You know the final answer of a single estimate. You can pick whatever you want, until you’re down to the last choice….then you don’t have the “freedom”. –&gt; explains why we use Total -1 = DF.</li>\n<li>Explain Whyyyyyyyyy we need it.</li>\n<li>The t-distribution will look different depending on the degrees of freedom</li>\n</ul>\n<p>Intermediate step here between CI and p-values.\nT-test statistic greater than 1.96 will result in a significant p-value.</p>\n<p>Write your own t-test function.</p>\n<p>Start with same N, but then “to make it a more useful model, you need to be able to handle when the sample sizes are not the same.”</p>\n<p><strong>Unequal variance: more fodder for things to think about</strong></p>\n</div>\n\n<!DOCTYPE html>\n\n<div class=\"foot\">\n\t<hr> \n\t<p style=\"text-align: center;\"> <span style=\"color: #808080; display: inline-block; width: 58%;\"> \tThis project was created entirely in RStudio using R Markdown and published on GitHub pages. \n </span></p>\n\t<p style=\"text-align: center;\">\n\t</p>\n</div>\n\n\n</div>\n</div>\n\n</div>\n\n<script>\n\n// add bootstrap table styles to pandoc tables\nfunction bootstrapStylePandocTables() {\n  $('tr.odd').parent('tbody').parent('table').addClass('table table-condensed');\n}\n$(document).ready(function () {\n  bootstrapStylePandocTables();\n});\n\n\n</script>\n\n<!-- tabsets -->\n\n<script>\n$(document).ready(function () {\n  window.buildTabsets(\"TOC\");\n});\n\n$(document).ready(function () {\n  $('.tabset-dropdown > .nav-tabs > li').click(function () {\n    $(this).parent().toggleClass('nav-tabs-open');\n  });\n});\n</script>\n\n<!-- code folding -->\n\n<script>\n$(document).ready(function ()  {\n\n    // temporarily add toc-ignore selector to headers for the consistency with Pandoc\n    $('.unlisted.unnumbered').addClass('toc-ignore')\n\n    // move toc-ignore selectors from section div to header\n    $('div.section.toc-ignore')\n        .removeClass('toc-ignore')\n        .children('h1,h2,h3,h4,h5').addClass('toc-ignore');\n\n    // establish options\n    var options = {\n      selectors: \"h1,h2,h3\",\n      theme: \"bootstrap3\",\n      context: '.toc-content',\n      hashGenerator: function (text) {\n        return text.replace(/[.\\\\/?&!#<>]/g, '').replace(/\\s/g, '_');\n      },\n      ignoreSelector: \".toc-ignore\",\n      scrollTo: 0\n    };\n    options.showAndHide = true;\n    options.smoothScroll = true;\n\n    // tocify\n    var toc = $(\"#TOC\").tocify(options).data(\"toc-tocify\");\n});\n</script>\n\n<!-- dynamically load mathjax for compatibility with self-contained -->\n<script>\n  (function () {\n    var script = document.createElement(\"script\");\n    script.type = \"text/javascript\";\n    script.src  = \"https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML\";\n    document.getElementsByTagName(\"head\")[0].appendChild(script);\n  })();\n</script>\n\n</body>\n</html>\n"
  },
  {
    "path": "docs/aboutTheAuthors.html",
    "content": "<!DOCTYPE html>\n\n<html>\n\n<head>\n\n<meta charset=\"utf-8\" />\n<meta name=\"generator\" content=\"pandoc\" />\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=EDGE\" />\n\n\n\n\n<title>About the authors</title>\n\n<script src=\"site_libs/jquery-3.6.0/jquery-3.6.0.min.js\"></script>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n<link href=\"site_libs/bootstrap-3.3.5/css/cosmo.min.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/bootstrap-3.3.5/js/bootstrap.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/html5shiv.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/respond.min.js\"></script>\n<style>h1 {font-size: 34px;}\n       h1.title {font-size: 38px;}\n       h2 {font-size: 30px;}\n       h3 {font-size: 24px;}\n       h4 {font-size: 18px;}\n       h5 {font-size: 16px;}\n       h6 {font-size: 12px;}\n       code {color: inherit; background-color: rgba(0, 0, 0, 0.04);}\n       pre:not([class]) { background-color: white }</style>\n<script src=\"site_libs/navigation-1.1/tabsets.js\"></script>\n<link href=\"site_libs/highlightjs-9.12.0/default.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/highlightjs-9.12.0/highlight.js\"></script>\n<link href=\"site_libs/font-awesome-5.1.0/css/all.css\" rel=\"stylesheet\" />\n<link href=\"site_libs/font-awesome-5.1.0/css/v4-shims.css\" rel=\"stylesheet\" />\n<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n</head>\n\n<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n<link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n<link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\"><link href=\"assets/style.css\" rel=\"stylesheet\">\n\n\n<div class=\"image-descript\"> \n\t<img class=\"main-image\" src=\"images/aboutTheAuthors/Jungle.jpg\"> \n\t<!--<div class=\"color-overlay\"></div>-->\n\t<div class=\"image-text image-text-about-the-authors\">\n\t\t<!--div class=\"lil-image-text\"></div-->\n\t\t<div class=\"big-image-text\"><strong>ABOUT THE AUTHORS</strong></div>\n\t</div>\n</div>\n\n\n<div class=\"back-panel\"> \n\t<div class=\"back-panel-contents\">\n\t\t<div class=\"about-the-author-color-textbox\">\n\t\t\t<div class=\"about-the-author-color-textbox-title\">HASSE WALUM</div>\n\t\t\t<div class=\"about-the-author-color-textbox-text\"> Hasse is a tall, Swedish teacup giraffe (one of the few giraffes from the North).  When not munching on celery and doing creative writing, he spends his time working as an instructor at Emory University, coding in R, thinking about issues related to scientific rigor, and analyzing gene expression data. </div>\n\t\t</div>\n\t\t<div class=\"about-the-author-subimage\"> <img src=\"images/aboutTheAuthors/giraffe_avatar.jpg\"> </div>\n\t\t<div class=\"about-the-author-color-textbox\">\n\t\t\t<div class=\"about-the-author-color-textbox-title\"\"> DESIRÉE DE LEON</div>\n\t\t\t<div class=\"about-the-author-color-textbox-text\"\">Desirée is a multidisciplinary teacup giraffe who is a recent PhD grad in neuroscience at Emory University, and also enjoys illustrating and bluegrass (both the music and the plant). Her graduate research involved using R to analyze pedigree data of cute monkey families living at the Yerkes National Primate Research Center.</div>\n\t\t</div>\n\t</div>\n</div>\n\n<style type=\"text/css\">\n  code{white-space: pre-wrap;}\n  span.smallcaps{font-variant: small-caps;}\n  span.underline{text-decoration: underline;}\n  div.column{display: inline-block; vertical-align: top; width: 50%;}\n  div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}\n  ul.task-list{list-style: none;}\n    </style>\n\n<style type=\"text/css\">code{white-space: pre;}</style>\n<script type=\"text/javascript\">\nif (window.hljs) {\n  hljs.configure({languages: []});\n  hljs.initHighlightingOnLoad();\n  if (document.readyState && document.readyState === \"complete\") {\n    window.setTimeout(function() { hljs.initHighlighting(); }, 0);\n  }\n}\n</script>\n\n\n\n\n\n\n\n\n\n<style type = \"text/css\">\n.main-container {\n  max-width: 940px;\n  margin-left: auto;\n  margin-right: auto;\n}\nimg {\n  max-width:100%;\n}\n.tabbed-pane {\n  padding-top: 12px;\n}\n.html-widget {\n  margin-bottom: 20px;\n}\nbutton.code-folding-btn:focus {\n  outline: none;\n}\nsummary {\n  display: list-item;\n}\ndetails > summary > p:only-child {\n  display: inline;\n}\npre code {\n  padding: 0;\n}\n</style>\n\n\n<style type=\"text/css\">\n.dropdown-submenu {\n  position: relative;\n}\n.dropdown-submenu>.dropdown-menu {\n  top: 0;\n  left: 100%;\n  margin-top: -6px;\n  margin-left: -1px;\n  border-radius: 0 6px 6px 6px;\n}\n.dropdown-submenu:hover>.dropdown-menu {\n  display: block;\n}\n.dropdown-submenu>a:after {\n  display: block;\n  content: \" \";\n  float: right;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n  border-width: 5px 0 5px 5px;\n  border-left-color: #cccccc;\n  margin-top: 5px;\n  margin-right: -10px;\n}\n.dropdown-submenu:hover>a:after {\n  border-left-color: #adb5bd;\n}\n.dropdown-submenu.pull-left {\n  float: none;\n}\n.dropdown-submenu.pull-left>.dropdown-menu {\n  left: -100%;\n  margin-left: 10px;\n  border-radius: 6px 0 6px 6px;\n}\n</style>\n\n<script type=\"text/javascript\">\n// manage active state of menu based on current page\n$(document).ready(function () {\n  // active menu anchor\n  href = window.location.pathname\n  href = href.substr(href.lastIndexOf('/') + 1)\n  if (href === \"\")\n    href = \"index.html\";\n  var menuAnchor = $('a[href=\"' + href + '\"]');\n\n  // mark it active\n  menuAnchor.tab('show');\n\n  // if it's got a parent navbar menu mark it active as well\n  menuAnchor.closest('li.dropdown').addClass('active');\n\n  // Navbar adjustments\n  var navHeight = $(\".navbar\").first().height() + 15;\n  var style = document.createElement('style');\n  var pt = \"padding-top: \" + navHeight + \"px; \";\n  var mt = \"margin-top: -\" + navHeight + \"px; \";\n  var css = \"\";\n  // offset scroll position for anchor links (for fixed navbar)\n  for (var i = 1; i <= 6; i++) {\n    css += \".section h\" + i + \"{ \" + pt + mt + \"}\\n\";\n  }\n  style.innerHTML = \"body {\" + pt + \"padding-bottom: 40px; }\\n\" + css;\n  document.head.appendChild(style);\n});\n</script>\n\n<!-- tabsets -->\n\n<style type=\"text/css\">\n.tabset-dropdown > .nav-tabs {\n  display: inline-table;\n  max-height: 500px;\n  min-height: 44px;\n  overflow-y: auto;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n}\n\n.tabset-dropdown > .nav-tabs > li.active:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {\n  content: \"&#xe258;\";\n  border: none;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs > li.active {\n  display: block;\n}\n\n.tabset-dropdown > .nav-tabs > li > a,\n.tabset-dropdown > .nav-tabs > li > a:focus,\n.tabset-dropdown > .nav-tabs > li > a:hover {\n  border: none;\n  display: inline-block;\n  border-radius: 4px;\n  background-color: transparent;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li {\n  display: block;\n  float: none;\n}\n\n.tabset-dropdown > .nav-tabs > li {\n  display: none;\n}\n</style>\n\n<!-- code folding -->\n\n\n\n\n</head>\n\n<body>\n\n\n<div class=\"container-fluid main-container\">\n\n\n\n\n<div class=\"navbar navbar-default  navbar-fixed-top\" role=\"navigation\">\n  <div class=\"container\">\n    <div class=\"navbar-header\">\n      <button type=\"button\" class=\"navbar-toggle collapsed\" data-toggle=\"collapse\" data-bs-toggle=\"collapse\" data-target=\"#navbar\" data-bs-target=\"#navbar\">\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n      </button>\n      <a class=\"navbar-brand\" href=\"index.html\"> </a>\n    </div>\n    <div id=\"navbar\" class=\"navbar-collapse collapse\">\n      <ul class=\"nav navbar-nav\">\n        <li>\n  <a href=\"index.html\">\n    <span class=\"fa fa-home\"></span>\n     \n  </a>\n</li>\n<li>\n  <a href=\"00_narrative.html\">History of Teacup Giraffes</a>\n</li>\n<li class=\"dropdown\">\n  <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\" role=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\">\n    Modules\n     \n    <span class=\"caret\"></span>\n  </a>\n  <ul class=\"dropdown-menu\" role=\"menu\">\n    <li>\n      <a href=\"01_introToR.html\">Intro to R</a>\n    </li>\n    <li>\n      <a href=\"02_bellCurve.html\">Intro to the Normal Distribution</a>\n    </li>\n    <li>\n      <a href=\"03_mean.html\">Mean, Median, Mode</a>\n    </li>\n    <li>\n      <a href=\"04_variance.html\">Spread of the Data</a>\n    </li>\n    <li>\n      <a href=\"05_correlation.html\">Covariance and Correlation</a>\n    </li>\n    <li>\n      <a href=\"06_standardError.html\">Standard Error</a>\n    </li>\n  </ul>\n</li>\n<li>\n  <a href=\"aboutTheAuthors.html\">About the Authors</a>\n</li>\n      </ul>\n      <ul class=\"nav navbar-nav navbar-right\">\n        <li>\n  <a href=\"https://github.com/tinystats/teacups-giraffes-and-statistics\">\n    <span class=\"fa fa-github\"></span>\n     \n  </a>\n</li>\n      </ul>\n    </div><!--/.nav-collapse -->\n  </div><!--/.container -->\n</div><!--/.navbar -->\n\n<div id=\"header\">\n\n\n\n<h1 class=\"title toc-ignore\">About the authors</h1>\n\n</div>\n\n\n\n\n\n\n\n</div>\n\n<script>\n\n// add bootstrap table styles to pandoc tables\nfunction bootstrapStylePandocTables() {\n  $('tr.odd').parent('tbody').parent('table').addClass('table table-condensed');\n}\n$(document).ready(function () {\n  bootstrapStylePandocTables();\n});\n\n\n</script>\n\n<!-- tabsets -->\n\n<script>\n$(document).ready(function () {\n  window.buildTabsets(\"TOC\");\n});\n\n$(document).ready(function () {\n  $('.tabset-dropdown > .nav-tabs > li').click(function () {\n    $(this).parent().toggleClass('nav-tabs-open');\n  });\n});\n</script>\n\n<!-- code folding -->\n\n\n<!-- dynamically load mathjax for compatibility with self-contained -->\n<script>\n  (function () {\n    var script = document.createElement(\"script\");\n    script.type = \"text/javascript\";\n    script.src  = \"https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML\";\n    document.getElementsByTagName(\"head\")[0].appendChild(script);\n  })();\n</script>\n\n</body>\n</html>\n"
  },
  {
    "path": "docs/assets/00_narrative.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t\n\t\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/landing.css\" rel=\"stylesheet\">\n  <link href=\"assets/mobile_narrative.css\" rel=\"stylesheet\">\n</head>\n\n<body>\n  \n  <div class=\"narrative-container\">\n    <div class = \"slider\">\n      <div id = slide0 class = \"slide-content\">\n        <div class = \"narrative-cover\">\n          <img src=\"images/00_narrative/cover.jpg\">\n        </div>\n        <div class = \"narrative-text\"> \n          <p>Teacup giraffes were first discovered by the Swedish naturalist and priest Olof Torén, an apostle of Carl Linnaeus, during his travels on the Swedish East India Company ship <i>Hoppet</i>. Departing from the port of Gothenburg, <i>Hoppet</i> set sail on the 26th of January 1748, an extraordinarily gloomy day when sea and sky was a single ashen entity and winds from the northwest brought a snow-mixed horizontal rain. The mood onboard the ship was cheerful nonetheless, as the crew dreamt of the transparent waters of southern seas, filled with colorful beings and stories to bring back home.</p>\n          \n<p>One suffocating evening in July 1748, shortly after <i>Hoppet</i> had rounded the Cape of Good Hope and sailed east of Madagascar, captain Erik Moreen was attacked by a headache so vicious it made him seasick for the first time since the beginning of his nautical career. Desperate to ease the pain he called on the ship surgeon, a crooked man who spent most of his time investigating fungi in the deepest corners of the ship’s bilge where the air tasted like year old bread.</p>\n\n          <p> <img class = \"narrative-illo-small\" align = \"left\" src=\"images/00_narrative/Vial.jpg\"> The surgeon brought a small bottle containing a beverage brewed of equal parts fermented goat milk and a distillate of mushrooms which, when dissolved, produced such a colorful luminance that the use of protective goggles was necessary to prevent achromatopsia. Ignoring the surgeon’s recommendation to limit the dose to a few drops of the brew, the captain emptied the bottle in one gulp and for a few moments lost all senses while the hair on the back of his head spun into permanent curls. </p>\n          \n          <p>Although the pain subsided within less than thirty minutes, this was just the beginning of a nightmarish intoxication. The captain heard sirens sing lost lullabies from all directions, saw the kraken swallow the moon and spit it out as thousands of stars, and was convinced that all of his crew had turned into sharp-stemmed ferns, stationary and threatening to amputate him with every wavering step he took across the deck. During this confusion the captain tied himself to the fore-mast, prepared to fall head first into the flaming depths of the underworld. He was standing there as the sun rose, as his inebriation started to fade into melancholy, and saw two small islands appear on the horizon. </p>\n          \n          <p> <img class = \"narrative-illo-small\" align = \"right\" src=\"images/00_narrative/Froth.jpg\">The ocean then formed a frothy path in front of Erik Moreen, from the bow to the two islands. In the captain’s still quivering mind time seemed to move backwards, and he tried to find solace from the rootlessness of this experience by searching his mind for pleasant memories. The path suddenly seemed indistinguishable from the road connecting the port of Gothenburg to his home in <i>Guldheden</i>, many nautical miles away. He even swore he could see a colony of black-backed gulls circling in the sky above him, establishing his notion that <i>Hoppet</i> somehow had made it back to the north. Confident he would soon be reunited with his wife, the captain gave orders to sail in the direction of the islands and would not listen to any objections until the ship was stranded on a sandbank no more than a stone’s throw away from its destination. Although Erik Moreen recovered from the surgeon’s medicament after a few days, the crew’s trust in him was not as easily restored and he was temporarily relieved of his duties as captain. </p>\n          \n          <p>During the days it took the crew to dig <i>Hoppet</i> out of the sand, naturalist and ship priest Olof Torén visited the islands a few times but was apparently not very impressed by this occurrence. In his journals from this time, only one sentence makes mention of this part of the voyage: </p>\n          \n          <p class=\"blockquote\">Northeast of Madagascar lie two small islands not worth visiting for any other reason than the fact that they are inhabited by small, quadrupedal mammals with relatively long necks.</p>\n        </div>\n      </div>\n      \n      <div id = slide6  class=\"slide-content\">\n        <div class =\"narrative-text\"> \n          <p>In line with the often undemocratic nature of human experiences, Olof Torén would encounter teacup giraffes twice over the course of a few years, while it would take centuries after they were first discovered before anybody else did. The second time Olof Torén visited the two small islands where teacup giraffes still live today, it was during his second and last intercontinental journey at sea, this time on the Swedish East India Company ship <i>Götha Leijon</i>. In 1750 he found himself back in the cerulean waters northeast of Madagascar. Again, it was an event characterized by pain that would bring the naturalist and ship priest to the teacup giraffe islands, but pain of the soul rather than the body. </p>\n          \n          <p> <img class=\"narrative-illo-small\" align = \"left\" src=\"images/00_narrative/Ships2.jpg\"> In the evenings, Olof Torén and supercargo Anders Gotheen, a man who would not hesitate to let people know his personal values aligned perfectly with the new ideals of the intellectual revolution today known as the <i>Enlightenment</i>, enjoyed sitting down for a game of backgammon on the main deck. Or rather, Olof Torén enjoyed the game while Anders Gotheen, as he liked to say, enjoyed engaging in dialectic discourse while playing a game only slightly distracting since winning after all was mostly a question of luck. Olof Torén had noticed that conversations with Anders Gotheen often made him worried about things he had not previously contemplated and was therefore less amused by the dialectic aspect of their game nights.  </p>\n          \n          <p>This particular evening it seemed Anders Gotheen would definitely lose. He watched Olof Torén bear off three of his white checkers and as he collected the dice supercargo Gotheen turned to the naturalist.</p>\n          <p class=\"dialogue\">– For the intellectually brave and honest, he said, no comfort can be found in the concept of infinity. Everything typical of human life, he continued, is characterized by the notion of a finite world, and therefore a free human mind can never truly be consoled by the appreciation of endlessness. He paused and drank some wine from a metal cup. </p>\n          <p class=\"dialogue\">– This is also true for the afterlife, he then added. </p>\n          <p> <img class=\"narrative-illo-small\" align = \"right\" src=\"images/00_narrative/Fireside.jpg\"> The reason why, as Olof Torén would explain it a few days later during a one-way conversation with a group of patiently listening teacup giraffes, what Anders Gotheen said that evening had so effectively shaken the foundation of his world view, was not because it directly challenged his faith. No, it was the fact that what Anders Gotheen had said instead questioned how much existential relief any belief could offer whatsoever that resulted in a detrimental blow to his conviction.</p>\n          \n          <p>For what felt like a very long time, Olof Torén listened to Anders Gotheen in detail describe the philosophical abyss all perspectives on <i>life after death</i> inescapably lead to. He started to feel lightheaded and ended the game early so that he could climb up to the upper deck to get some fresh air. It was a clear night and the sky seemed filled with an infinite number of stars. His head was now spinning, he lost his balance, made a futile attempt to reach for the shrouds, but inevitably fell overboard.</p>\n          \n          <p>Olof Torén treaded water all night, motivated by his new fear of death. When the sun rose he for a moment forgot about the thoughts that had been plaguing him during those long hours in the dark water, because the early morning light draped the world in a calming emerald luster. He could now see he had drifted to only a yards away from the sandbank where <i>Hoppet</i> had been stranded a few years earlier. The sunlight was filtered through the foliage of a thousand palm trees on the islands between him and the rising sun and this is what created the green morning experience. He swam to the island closest to him and passed out on the beach, exhausted both physically and mentally. </p>\n          \n          <p>When Olof Torén woke up the sun was about to set. As he slowly opened his eyes he saw a group of teacup giraffes walking towards him on the beach, and briefly thought they had come to welcome him back to the islands. But the small giraffe caravan walked past him and continued towards a large flat stone projecting out of the sand not far from where he was lying. In the light of dusk, everything on the beach seemed to cast extraordinarily long shadows and from where Olof Torén was positioned the stone looked enormous. The shape made him think of <i>runestones</i>, rocks Vikings would raise and decorate with runic inscriptions, but the size more resembled the <i>moai</i> stone statues of Easter island. The teacup giraffes took turns standing in front of the stone observing a large silhouette appear on the granite surface ahead. They seemed infatuated by watching their shadow twin move as they moved, grasping for palm tree leaves non-shadow teacup giraffes would never reach, and making low pitched vocal sounds reminding Olof Torén of larger animals. It was as if these giraffes knew about their unusually small stature and used the evening light to pretend they were tall, like their full-size relatives on the African mainland.<img class= \"narrative-illo-big\" src=\"images/00_narrative/ShadowPlay.jpg\"></p>\n          \n          <p>This time around Olof Torén spent two days in the company of teacup giraffes and grew to appreciate their cheerful demeanor, social competence and general friendliness. When not playing with shadows, chasing fireflies or resting in the crisp air next to a waterfall, they foraged the jungle for celery which seemed to be their favorite food. Time passed quickly on the islands because the teacup giraffes had an almost endless repertoire of delightful behaviors and at times it even appeared they adapted their conduct to what Olof Torén showed appreciation for.</p>\n          \n          <p><img class=\"narrative-illo-big\" src=\"images/00_narrative/Swing.jpg\"></p>\n          <p>On the Swedish East India Company ship <i>Götha Leijon</i>, the consensus was that Olof Torén was unlikely to still be alive, but most of the crew were god fearing men and the idea of leaving a priest to drown without a convincing rescue attempt seemed like the type of thing the almighty would never forget. Some of the them had been present for the Erik Moreen debacle a few years earlier and remembered the location of the islands from this incident.</p>\n          \n          <p>Olof Torén saw the ship approach the islands from far away. After two days on the teacup giraffe diet he was famished because the more celery he ate the hungrier he became. Longing for the salted meats that made up a large part of the meals onboard Swedish East India Company ships, he said goodbye to his new four-legged friends and waded out in the water to meet the rowboat launched to pick him up. As he climbed onboard he turned around to catch a last glimpse of the giraffes and saw them gather on the beach for another evening shadow play ritual.</p>\n          \n          <p>Back on <i>Götha Leijon</i>, Olof Torén wrote down all the details of teacup giraffes’ lives he could remember. During a game of backgammon, he tried to describe their unusual physique and social behaviors, but was soon interrupted by Anders Gotheen who said</p>\n          <p class=\"dialogue\"> – The human mind works in mysterious ways when deprived of energy</p>\n        </div>\n      </div>\n      \n      <div id = slide10  class=\"slide-content\">\n        <div class = \"narrative-text\"> \n          <p>Olof Torén would in fact have a hard time convincing friends and colleagues, people he met as <i>Götha Leijon</i> sailed to Surat and Canton, as well as Carl Linnaeus, that his accounts of the teacup giraffe islands reflected reality. Maybe the feeling of not being trusted contributed to why his health started to deteriorate after his return to Sweden in 1752. On the 3rd of May 1753, a few months before his death, he wrote a last letter to Linnaeus. On the final page of this letter he drew a picture of two giraffes, one short and one tall. They were standing in front of a pair of heavy church doors and both their shadows stretched far above the tower and into the sky. The short giraffe, a female with pointy ears, looked like she was smiling.</p>\n          \n          <p>Even today, when there are few true mysteries left in the world and all corners of the globe have been so carefully measured and illuminated that no colorless spots stain the pages of the modern atlas, teacup giraffes remain a relatively well kept secret. These animals were briefly mentioned in 9th edition of Carl Linnaeus’ <i>Systema Naturae</i> and given the Latin name <i>Giraffa minima</i>, but were removed before printing the 10th edition because of doubts about the trustworthiness of Olof Torén’s descriptions. <img class=\"narrative-illo-200\" align = \"right\" src=\"images/00_narrative/backpack_350px.jpg\">No songs have been sung about them, Rudyard Kipling was oblivious to their existence when writing the <i>Jungle Book</i>, schoolchildren have never wondered how many teacup giraffes they could fit in a backpack, and they were never made famous by a Twinings advertisement campaign.</p>\n        \n          <p> But in December 2018, the <i>Olof Torén foundation</i> in Uppsala decided it was time that teacup giraffes were given a more prominent place in the world of zoology. The foundation set aside money for a stipend and requested applications from “young aspiring scientists devoted to conducting old-school observational field work and interested in spending time on remote islands in the Indian Ocean studying possibly the least known mammal on the planet”. <img class=\"narrative-illo-small\" align = \"left\" src=\"images/00_narrative/uppsala.jpg\"> In the announcement they also wrote “One crucial piece of information missing about teacup giraffes regards their physique, because although it is known that they are small, no reliable records of their exact size can be found anywhere”. And this is true because people falling overboard rarely bring measuring equipment. </p>\n          </div>\n        </div>\n      \n        <div class = \"end-text\">The End</div>\n    </div>\n  </div>\n</body>"
  },
  {
    "path": "docs/assets/01_introToR_image.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n</head>\n\n  <div class=\"image-descript\"> \n\t\t<img class=\"big_image\" src=\"images/big_image/Ship.jpg\">\n\t\t<div class=\"image-text\">\n\t\t\t<div class=\"lil-image-text\">Before the Adventure Begins:</div>\n\t\t\t<div class=\"big-image-text\"><strong>Intro to R</strong></div>\n\t\t</div>\n  </div>"
  },
  {
    "path": "docs/assets/02_bellCurve_image.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n</head>\n\n<div class=\"image-descript\"> \n\t<img class=\"big_image\" src=\"images/big_image/Hills.jpg\"> \n\t<div class=\"image-text\">\n\t  <div class=\"lil-image-text\">Introduction to the</div>\n\t  <div class=\"big-image-text\"><strong>NORMAL DISTRIBUTION</strong></div>\n\t</div>\n</div>"
  },
  {
    "path": "docs/assets/03_mean_image.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n</head>\n\n\n\n  <div class=\"image-descript\"> \n\t\t<img class=\"big_image\" src=\"images/big_image/cave.jpg\">\n\t\t<div class=\"image-text\">\n\t\t\t<div class=\"lil-image-text\">Measures of centrality:</div>\n\t\t\t<div class=\"big-image-text\"><strong>MEAN, MEDIAN, & MODE</strong></div>\n\t\t</div>\n  </div>"
  },
  {
    "path": "docs/assets/04_variance_image.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n\n</head>\n\n  <div class=\"image-descript\"> \n\t\t<img class=\"big_image\" src=\"images/big_image/giraffe_beach.jpg\">\n\t\t<div class=\"image-text\">\n\t\t\t<div class=\"lil-image-text\">The Spread of the Data:</div>\n\t\t\t<div class=\"big-image-text\"><strong>VARIANCE & STANDARD DEVIATION</strong></div>\n\t\t</div>\n  </div>"
  },
  {
    "path": "docs/assets/05_correlation_image.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n  \n</head>\n\n\n  <!---div class=\"image-descript\"> \n\t\t<img class=\"big_image\" src=\"images/big_image/Log.jpg\">\n\t\t<div class=\"image-text\">\n\t\t\t<div class=\"lil-image-text\">A Tale of Two Variables:</div>\n\t\t\t<div class=\"big-image-text\"><strong>COVARIANCE & CORRELATION</strong></div>\n\t\t</div>\n  </div-->\n  \n  \n<div class= \"hero-container\"> \n   <div class=\"hero-image\"> \n\t\t<div class=\"hero-image-text\">\n\t\t  <div class=\"hero-image-text-little\">A tale of two variables:</div>\n\t\t\t<div class=\"hero-image-text-big\">Covariance & correlation</div>\n\t\t</div>\n  </div>\n</div>  "
  },
  {
    "path": "docs/assets/06_standardError_image.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n</head>\n\n  <div class=\"image-descript\"> \n\t\t<img class=\"big_image\" src=\"images/big_image/Archer2.jpg\">\n\t\t<div class=\"image-text\">\n\t\t\t<div class=\"lil-image-text\">Introduction to Inference:</div>\n\t\t\t<div class=\"big-image-text\"><strong>Standard Error</strong></div>\n\t\t</div>\n  </div>"
  },
  {
    "path": "docs/assets/07_tTest_image.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t<script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.16/iframeResizer.min.js\"></script>\n\t<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n  <link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\">\n  <link href=\"assets/style.css\" rel=\"stylesheet\">\n</head>\n\n\n  <div class=\"image-descript\"> \n\t\t<img class=\"big_image\" src=\"images/big_image/07_tTest_image.jpg\">\n\t\t<div class=\"image-text\">\n\t\t\t<div class=\"lil-image-text\">The difference between two groups:</div>\n\t\t\t<div class=\"big-image-text\"><strong>T-TEST</strong></div>\n\t\t</div>\n  </div>"
  },
  {
    "path": "docs/assets/Landing_page.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t\n\t<!-- Clickable Giraffe -->\n  <script>\n    $(document).ready(function() {\n      $('.giraffe-container').click(function() {\n        $('body').addClass('expanded');\n      });\n    });\n  </script>\n\t\n\t<!-- CSS -->\n\t<link href=\"assets/landing.css\" rel=\"stylesheet\">\n  <link href=\"assets/button.css\" rel=\"stylesheet\">\n  <link href=\"assets/mobile_landing.css\" rel=\"stylesheet\">\n\n</head>\n\n<body>\n  <div id=\"preload\">\n    <img src=\"images/Landing_page/g1_1200px.jpg\">\n  </div>\n  <section class=\"landing container\">\n    <section class=\"giraffe-container\" >\n      <div class=\"singleGiraffe-clickme\"></div>\n      <div class=\"singleGiraffe-clickme-hover\"></div>\n      <div class=\"giraffeForest\">\n        <div class=\"g1 opacity-after-click\"></div>\n      </div>\n      <div class=\"singleGiraffe\"></div>\n      <section class=\"image-descript\"> \n      \t<div class=\"image-text\">\n      \t\t<div class=\"landing small-text\">Welcome to the Wonderful World of</div>\n      \t\t<div class=\"landing big-text\"><strong>TEACUPS, GIRAFFES, & STATISTICS</strong></div>\n      \t</div>\n      </section>\n    </section>\n    \n    <div class=\"appears-after-click\">\n      <div class=\"about\">A delightful series of modules to learn statistics and R coding for students, scientists, and stats-enthusiasts.</div>\n      <div class=\"landing-buttons\"> \n        <a id=\"container\" href=\"00_narrative.html\">\n          <button class=\"learn-more\">\n            <span class=\"circle\">\n              <span class=\"icon arrow\"></span>\n            </span>\n            <span class=\"button-text\">Read the History of Teacup Giraffes</span>\n          </button>\n        </a>\n        <a id=\"container\" href=\"01_introToR.html\">\n          <button class=\"learn-more deemphasized\">\n            <span class=\"circle\">\n              <span class=\"icon arrow\"></span>\n            </span>\n            <span class=\"button-text\">Skip Straight to the Stats</span>\n          </button>\n        </a>\n      </div>\n      \n      \n    </div>\n  </section>\n</body>\n\n"
  },
  {
    "path": "docs/assets/aboutTheAuthors_image.html",
    "content": "<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n</head>\n\n<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700\" rel=\"stylesheet\">\n<link href=\"https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i\" rel=\"stylesheet\">\n<link href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i\" rel=\"stylesheet\"><link href=\"assets/style.css\" rel=\"stylesheet\">\n\n\n<div class=\"image-descript\"> \n\t<img class=\"main-image\" src=\"images/aboutTheAuthors/Jungle.jpg\"> \n\t<!--<div class=\"color-overlay\"></div>-->\n\t<div class=\"image-text image-text-about-the-authors\">\n\t\t<!--div class=\"lil-image-text\"></div-->\n\t\t<div class=\"big-image-text\"><strong>ABOUT THE AUTHORS</strong></div>\n\t</div>\n</div>\n\n\n<div class=\"back-panel\"> \n\t<div class=\"back-panel-contents\">\n\t\t<div class=\"about-the-author-color-textbox\">\n\t\t\t<div class=\"about-the-author-color-textbox-title\">HASSE WALUM</div>\n\t\t\t<div class=\"about-the-author-color-textbox-text\"> Hasse is a tall, Swedish teacup giraffe (one of the few giraffes from the North).  When not munching on celery and doing creative writing, he spends his time working as an instructor at Emory University, coding in R, thinking about issues related to scientific rigor, and analyzing gene expression data. </div>\n\t\t</div>\n\t\t<div class=\"about-the-author-subimage\"> <img src=\"images/aboutTheAuthors/giraffe_avatar.jpg\"> </div>\n\t\t<div class=\"about-the-author-color-textbox\">\n\t\t\t<div class=\"about-the-author-color-textbox-title\"\"> DESIRÉE DE LEON</div>\n\t\t\t<div class=\"about-the-author-color-textbox-text\"\">Desirée is a multidisciplinary teacup giraffe who is a recent PhD grad in neuroscience at Emory University, and also enjoys illustrating and bluegrass (both the music and the plant). Her graduate research involved using R to analyze pedigree data of cute monkey families living at the Yerkes National Primate Research Center.</div>\n\t\t</div>\n\t</div>\n</div>"
  },
  {
    "path": "docs/assets/button.css",
    "content": "\n  a, a:active, a:focus{\n      outline: none; /* Removes dotted link outline. Works in Firefox, Chrome, IE8 and above */ \n  }\n  \n/*------ BUTTONS ------*/\n\n.landing-buttons {\n  display: flex;\n  flex-wrap: wrap; /* so that it will wrap nicely on mobile */\n  justify-content: center;\n  margin: 0 auto;\n  visibility: visible;\n}\n\nbody.expanded .appears-after-click {\n  display: block;\n  animation: 3s fadeIn;\n  animation-fill-mode: forwards;\n}\n\n@keyframes fadeIn {\n  0% {\n    opacity: 0;\n  }\n  100% {\n    visibility: visible;\n    opacity: 1;\n  }\n}\n\n\nbutton {\n  position: relative;\n  display: inline-block;\n  cursor: pointer;\n  outline: none;\n  border: 0;\n  vertical-align: middle;\n  text-decoration: none;\n  background: transparent;\n  padding: 0;\n  font-size: inherit;\n  font-family: inherit;\n}\n\nbutton.learn-more {\n  width: 27rem;\n  height: auto;\n   margin: 1em\n}\n\nbutton.learn-more .circle {\n  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);\n  position: relative;\n  display: block;\n  margin: 0;\n  width: 3em;\n  height: 3em;\n  background: #282936;\n  border-radius: 1.625em;\n}\n\nbutton.learn-more.deemphasized .circle {\n  background: white;\n  border: 3px solid #282936;\n}\n\nbutton.learn-more .circle .icon {\n  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  margin: auto;\n  background: #fff;\n}\nbutton.learn-more.deemphasized .circle .icon {\n  background: #282936;\n}\nbutton.learn-more .circle .icon.arrow {\n  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);\n  left: 0.925rem;\n  width: 2.225rem;\n  height: 0.225rem;\n  background: none;\n}\n\nbutton.learn-more.deemphasized .circle .icon.arrow {\n  left: 0.625rem; /*accounts for 3px border, which pushes arrow*/\n}\n\nbutton.learn-more .circle .icon.arrow::before {\n  position: absolute;\n  content: '';\n  top: -0.45rem;\n  right: -0.0375rem;\n  width: 1.125rem;\n  height: 1.125rem;\n  border-top: 0.325rem solid #fff;\n  border-right: 0.325rem solid #fff;\n  -webkit-transform: rotate(45deg);\n          transform: rotate(45deg);\n}\nbutton.learn-more.deemphasized .circle .icon.arrow::before {\n  border-top: 0.325rem solid #282936;\n  border-right: 0.325rem solid #282936;\n}\n\nbutton.learn-more .button-text {\n  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  padding: 0.75rem 0;\n  margin: 0 0 0 7.3rem;\n  color: #282936;\n  font-weight: 600;\n  line-height: 1.3;\n  text-align: left;\n  text-transform: uppercase;\n  font-size: 1.5rem;\n  font-family: \"Source Sans Pro\";\n  letter-spacing: 1px;\n  /*to vertically center text in button, 2 properties below*/\n  display: flex;\n  align-items: center;\n}\nbutton:hover .circle {\n  width: 100%;\n}\nbutton:hover .circle .icon.arrow {\n  background: #fff;\n  -webkit-transform: translate(1.7rem, 0);\n          transform: translate(1.7rem, 0);\n}\nbutton:hover.deemphasized .circle .icon.arrow {\n  background: #282936;\n}\nbutton:hover .button-text {\n  color: white;\n}\nbutton:hover.deemphasized .button-text {\n  color: #282936;\n}\n\n\n/* ---See mobile_landing.css for button styles on mobile--- */\n"
  },
  {
    "path": "docs/assets/foot.html",
    "content": "<!DOCTYPE html>\n\n<div class=\"foot\">\n\t<hr> \n\t<p style=\"text-align: center;\"> <span style=\"color: #808080; display: inline-block; width: 58%;\"> \tThis project was created entirely in RStudio using R Markdown and published on GitHub pages. \n </span></p>\n\t<p style=\"text-align: center;\">\n\t</p>\n</div>"
  },
  {
    "path": "docs/assets/landing.css",
    "content": "@import url('https://fonts.googleapis.com/css?family=Lora:400,400i&display=swap');\n\n/*Loads background-images in HTML as <img> tags, so that they are already loaded when animated to display later*/\n#preload {\n  display: none;\n}\n\n/* JS appear: */\n/* After clicking, the class `.expanded` is added to the body tag, which applies the styles below to the elements below */\n\nbody.expanded .image-descript {\n  display: flex;\n}\nbody.expanded .singleGiraffe-clickme {\n  display: none;\n}\nbody.expanded .singleGiraffe {\n  display: block;\n}\nbody.expanded .giraffeForest {\n  display: block;\n}\n    \n\n\n/*------------NARRATIVE-----------*/\n\n.narrative-container {\n  max-width: 650px;\n  margin: 4em auto;\n}\n\n.narrative-cover {\n  text-align: center;\n  margin: 0 auto 2em auto;\n  max-width: 650px;\n  background-color: white;\n}\n\n.narrative-illo-200 {\n  max-width: 200px !important;\n  display: inline-block !important;\n  margin: 0.5em 1em 0.5em 0.5em;\n}\n.narrative-illo-small {\n  max-width: 350px !important;\n  display: inline-block !important;\n  margin: 0.5em 1em 0.5em 0.5em;\n}\n.narrative-illo-big {\n  display: block !important;\n  max-width: 90% !important;\n  margin: 0.5em auto;\n}\n\n.narrative-text {\n  font-family: \"Source Sans Pro\";\n  line-height: 1.75;\n}\n\n.dialogue {\n  text-indent: 2em;\n}\n\np.blockquote{\n  background: #fcf8f0;\n  border-left: 10px solid #f2e0c3;\n  padding: 1.5em 10px;\n  font-family: \"Lora\";\n  font-style: italic;\n  font-size: 0.85em;\n  margin: 1em 2em 1em 2em !important;\n}\n\n.slide-content > .narrative-text > p:first-of-type:first-letter { /*drop cap for first p that is a direct child of .narrative-text, which is in turn a direct child of .slide-content*/\n  color: #3fb5bd;\n  float: left;\n  font-family: 'Lora', serif;\n  font-weight: bold;\n  font-size: 7em;\n  line-height: 65px;\n  padding: 20px 8px 0 3px;\n  margin-bottom: 9px;\n}\n\n.narrative-text p {\n  margin-bottom: 1.5em;\n}\n\n.slide-content { /* space separating each \"chapter\" */\n  margin-bottom: 3em;\n}\n\n.end-text{\n  text-align: center;\n  margin-top: 100px 0 50px 0;\n  font-size: 3em;\n  font-family: 'Lora';\n  font-weight: 600;\n  color: #3fb5bd;\n}\n\n\n/*------------NAVBAR-------------*/\n.navbar-default {\n  background-color: #ffffff33;\n  box-shadow: 0 0 50px rgba(255, 255, 255, 0.76);\n  background-image: linear-gradient(to bottom, #ffffff, #ffffff, #ffffffed, #ffffffba, #ffffff33) !important;\n  border: none;\n}\n\n.navbar-default .navbar-nav>li>a {\n  color: black;\n}\n\n.navbar-default .navbar-nav>.active>a, \n.navbar-default .navbar-nav>.active>a:hover, \n.navbar-default .navbar-nav>.active>a:focus\n/*.navbar-default .navbar-nav>li>a:hover,*/\n/*.navbar-default .navbar-nav>li>a:focus */{\n    color: #989898;\n    background-color: #ffffff33;\n    background-image: linear-gradient(to bottom, #ffffff, #ffffff, #ffffffed, #ffffffba, #ffffff33) !important;\n}\n\n/* Hovering over navbar + dropdown */\n\n.navbar-default .navbar-nav>li>a:hover,\n.navbar-default .navbar-nav>li>a:focus{\n    color: #989898;\n    background-color: white;\n}\n\n\n/* hamburger menu on mobile */\n\n.icon-bar {\n  background-color: black !important;\n}\n\n.navbar-default .navbar-toggle:hover, \n.navbar-default .navbar-toggle:focus {\n    background-color: #ffffff !important;\n}\n\n\n/* Whole document: */\n\nbody {\n\tfont-size: 19px;\n}\n\n.title{\n  display: none;\n}\n\n.main-container {\n\tmax-width: 1326px !important;\n  }\n\n\n .container-fluid {                  /* margin: 0 Left-aligns container; margin: auto to \"center\" (Default)*/\n    margin-right: auto !important; \n    margin-left: auto !important;\n} \n\n.row-fluid{\n  display: flex;\n  position: relative;\n}\n\n.col-xs-12 .col-sm-4 .col-md-3{\n  width: 25%;\n  position: relative;\n}\n\n.tocify-extend-page {\n  height: 0px !important; /* Gets rid of extra space after footer*/\n}\n\n\nbody, html {\n  height: 100%;\n}\n\n\n/*@media screen and (max-width: 300px) {\n .image-descript {\n  display: none;\n }*/\n\n\n\n/* --------------v2 Landing Page---------------*/\n\n.landing-container {\n  max-width: 700px;\n}\n\n  .giraffe-container {\n    height: 500px;\n    margin: 0.5em auto 0em auto;\n    position: relative;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n  }\n  \n    .singleGiraffe-clickme {\n      height: 400px;\n      width: 354px;\n      left: 52%;\n      margin-left: -177px; /*half the container's width*, along with left: 50%*/\n      position: absolute;\n      display: block;\n      cursor: pointer;\n      background-repeat: no-repeat;\n      background-size: contain;\n      background-position: bottom;\n      background-image: url(\"../images/Landing_page/singleGiraffe-clickme.jpg\");\n    }\n\n    .singleGiraffe-clickme-hover {\n      height: 400px;\n      width: 354px;\n      left: 52%;\n      margin-left: -177px; /*half the container's width*, along with left: 50%*/\n      position: absolute;\n      display: block;\n      cursor: pointer;\n      background-repeat: no-repeat;\n      background-size: contain;\n      background-position: bottom;\n      background-image: url(\"../images/Landing_page/singleGiraffe-clickme-hover.jpg\");\n      opacity: 0;\n    }\n    \n    .singleGiraffe-clickme-hover:hover {\n      opacity: 1;\n    }\n\n    .singleGiraffe {\n      height: 400px;\n      width: 354px;\n      left: 52%;\n      margin-left: -177px; /*half the container's width*, along with left: 50%*/\n      position: absolute;\n      display: none;\n      background-repeat: no-repeat;\n      background-size: contain;\n      background-position: bottom;  \n      background-image: url(\"../images/Landing_page/singleGiraffe.png\");\n      animation: slide-up 1s forwards;\n    }\n\n    .giraffeForest {\n      position: absolute;\n      height: 500px;\n      width: 1200px;\n      left: 50%;\n      margin-left: -600px;\n      display: none;\n      background-repeat: no-repeat;\n      background-size: contain;\n      background-position: center; \n    }\n    \n    .g1 {\n      display: block;\n      height: 500px;\n      background-image: url('../images/Landing_page/g1_1200px.jpg');\n      background-size: contain;\n      background-repeat: no-repeat;\n      animation: slide-in-from-top 1s forwards;\n    }\n    \n     @keyframes slide-up {\n      0% { opacity: 1; transform: translateY(0px); }\n      100% { opacity: 1; transform: translateY(-15px); }\n    }\n    \n    @keyframes slide-in-from-bottom {\n      0% { opacity: 0; transform: translateY(100px); }\n      100% { opacity: 1; transform: translateY(0); }\n    }\n    \n     @keyframes slide-in-from-top {\n      0% { opacity: 0; transform: translateY(-100px); }\n      100% { opacity: 1; transform: translateY(0); }\n    }\n    \n    @keyframes slide-in-from-right{\n      0% { opacity: 0; transform: translateX(100px); }\n      100% { opacity: 1; transform: translateX(0); }\n    }\n    \n    @keyframes slide-in-from-left {\n      0% { opacity: 0; transform: translateX(100px); }\n      100% { opacity: 1; transform: translateX(0); }\n    }\n\n.image-descript {\n  position: relative;\n  display: none;\n  animation: slide-in-from-bottom 1s forwards;\n  justify-content: center; /* flex horizontal center */\n  align-items: center; /*flex vertical center*/\n}\n .big-text {\n    text-align: center;\n    color: #ffffff;\n    visibility: visible;\n    font-size: 3em;\n    text-shadow: 1px 1px 35px #0e0d0d38;\n    letter-spacing: 0.065em;\n  }\n  .small-text { \n      color: white;\n      margin: 0 auto 5px auto;\n      text-align: center; \n      display:block;\n      font-family: 'Lora', serif;\n      font-size: 22px;\n      font-weight: 500;\n      line-height: 1.5em;\n      letter-spacing: 1px;\n      font-style: italic;\n      text-shadow: 1px 1px 35px #0e0d0d38;\n    }\n\n\n/*------ LANDING WELCOME INFO----- */\n\n.appears-after-click {\n  display: none;\n}\n\n.appears-after-click .about {\n  text-align: center;\n  font-family: \"Source Sans Pro\";\n  font-size: 1.2em;\n  color: #707070;\n  max-width: 725px;\n  margin: 0 auto 1em auto;\n}\n\n\n\n\n/* Tablet */\n@media only screen and (min-width: 480px) and (max-width: 540px) {\n  .toc-content {\n    width: 100%;\n  }\n}\n\n@media only screen and (min-width: 541px) and (max-width: 649px) {\n  .toc-content {\n    width: 100%;\n  }\n}\n\n\n@media only screen and (min-width: 650px) and (max-width: 767px) {\n  .toc-content {\n    width: 100%;\n  }\n}\n\n\n/*iPad portrait*/\n\n@media only screen and (min-width: 768px) and (max-width: 1023px) {\n  .toc-content {\n    width: 100%;\n  }\n}\n\n\n/*iPad Pro portarit */\n\n@media only screen and (min-width: 1024px) and (max-width: 1225px) {\n  .toc-content {\n    width: 100%;\n  }\n}\n\n\n\n@media only screen and (max-width: 768px) {\n  .col-xs-12.col-sm-4.col-md-3 {\n    display: none !important;\n  }\n}\n\n\n/* New hero images */\n\n.hero-container {\n  height: 550px;\n  background-color: #1b3a42;\n  margin-bottom: 2em;\n}\n\n.hero-image {\n  max-width: 1800px;\n  margin-top: -50px !important;\n  margin-left: auto;\n  margin-right: auto;\n  position: relative;\n  margin-bottom: 2em;\n  background-image: linear-gradient( rgba(0,0,0,.2), rgba(0,0,0,.2) ),\n  url(../images/big_image/Log.jpg); /* liner gradient tints the image darker for readability*/\n  height: 550px;\n  background-size: cover;\n  background-color: #1b3a42;\n  background-position: center bottom;\n  display: flex; /* Change to `display: none` for no hero image */\n  justify-content: center;\n  align-items: center;\n}\n\n\n.hero-image-text-little {\n  position: relative;\n  font-family: 'Lora', serif;\n  font-size: 24px;\n  font-weight: 500;\n  line-height: 1.5em;\n  letter-spacing: 1px;\n  font-style: italic;\n  font-weight: normal;\n  color: #fff;\n  text-align: center;\n}\n\n.hero-image-text-big {\n  position: relative;\n  letter-spacing: 0.065em;\n  line-height: 1em;\n  font-size: 68px;\n  text-transform: uppercase;\n  text-align: center;\n  display: block;\n  color: #fff;\n  margin-bottom: 2.5rem;\n  font-weight: bold;\n}\n\n\n@media only screen and (max-width: 770px) {\n  .hero-image-text-big{\n    font-size: 3rem;\n    padding: 2rem 0rem 0rem 0rem;\n  }\n\n  .hero-image-text-little{\n    font-size: 19px;\n  }\n  \n  .hero-image {\n    max-width: 770px;\n    height: 300px;\n  }\n  \n    .hero-container {\n    height: 300px;\n    background-color: #1b3a42;\n    margin-bottom: 1em;\n  }\n  \n  .toc-content.col-xs-12.col-sm-8.col-md-9{\n    width: 100%;\n    padding-left: 1px;\n    padding-right: 1px;\n  }\n}\n\n\n"
  },
  {
    "path": "docs/assets/landing_styles.css",
    "content": "* {\n  margin: 0;\n  padding: 0;\n}\n\n\nbody {\n\t  \t\tfont-size: 1em;\n\t\t  \tcolor: rgba(26,26,26,.9);\n\t\t   \tfont-family: 'Open Sans', sans-serif;\n\t\t   \tbackground-color: #f5f5f5;\n\t\t}\n\t\t  \t.branding-bar{\n\t\t\t    width: 100%; \n\t\t\t    height: 60px;\n\t\t\t    background-color: #22222270;\n\t\t\t    padding-right:4em;\n\t\t\t    text-align: left;\n\t\t\t    font-size: 1em;\n\t\t\t    color:#f7f7f7;\n\t\t\t    line-height: 80px;\n\t\t\t    position:fixed;\n\t\t\t    z-index: 999;\n\t\t\t    \n\t\t\t}\n\n\t\t\t\t.button-link{\n\t\t\t\t\tpadding-left: 2em;\n\t\t\t\t\tpadding-right: 2em;\n\t\t\t\t\tpadding-top:1em;\n\t\t\t\t\tpadding-bottom:1em;\n\t\t\t\t\tborder-radius: 50px;\n\t\t\t\t    /* this is irrelevant, and just so the element can be visualised/displayed: */\n\t\t\t\t    margin: 2em auto;\n\t\t\t\t    border: 1.5px solid #fff;\n    \t\t\t\tcolor: #fff;\n    \t\t\t\tfont-size: .75em;\n    \t\t\t\ttext-decoration: none;\n    \t\t\t\tmargin-right: 5%;\n    \t\t\t\tletter-spacing: 0.065em;\t\t\n\t\t\t\t}\n\n\t\t\t\t.button-link:hover {\n\t\t\t\t\tcolor: #002878;\n\t\t\t\t\tbackground-color:white;\n\t\t\t\t}\n\n\n\t\t\t\t.bar-link{\n\t\t\t\t\tcolor: #fff;\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t\tfont-size: .75em;\n\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\tmargin-right: 2em;\n\t\t\t\t\tletter-spacing: 0.065em;\n\t\t\t\t}\n\n\t\t\t\t.bar-link:hover{\n\t\t\t\t\tcolor:#f5f5f5;\n\t\t\t\t\tfont-style: bold;\n\t\t\t\t}\n\t\t\t\t\n.image-descript {\n    position: relative;\n}\n\n.main-image {\n\t\twidth: 100%;\n\t\tdisplay: block; /*This gets rid of the weird little space from inline-block*/\n\t}\n\n.image-text{\n\t\tposition: absolute;\n\t\ttop:30%;\n\t\tleft:0;\n\t\tright:0;\n\t\tbottom:0;\n\t}\n\n.lil-image-text { \n\t\tcolor: #ededea;\n\t\tmargin-top: 20px;\n    \tmargin-right: auto;\n    \tmargin-bottom: 20px;\n    \tmargin-left: auto;\n\t\tpadding-top: 2em;\n\t\ttext-align: center; \n\t\tdisplay:block;\n\t\tfont-family: 'Lora', serif;\n    \tfont-size: 18px;\n    \tfont-weight: 400;\n    \tline-height: 1.5em;\n    \tletter-spacing: 1px;\n    \tfont-style: italic;\n    \tcolor: #fff;\n\t}\n\n\n.big-image-text { \n\t\tletter-spacing: 0.065em;\n\t\tline-height: 1em;\n\t\tfont-size: 68px;\n\t\ttext-transform: uppercase;\n\t\ttext-align: center; \n\t\tdisplay:block;\n\t\tcolor: #fff;\n\t}\n\n\n.color-overlay {\n\tposition: absolute;\n\ttop: 0;\n\tright: 0;\n\tbottom: 0;\n\tleft: 0;\n\tbackground-color: rgba(0,0,0,.1);\n}\n"
  },
  {
    "path": "docs/assets/mobile_landing.css",
    "content": "\n/* IPHONE 6/7/8 */\n/* In summary:\n1. Makes text on image smaller\n1. Gets rid of hover-specific styles/ images\n*/\n\n@media only screen and (max-width: 500px) {\n  .giraffe-container { /* takes margin-top from 0.5em to 0*/\n    margin: 0 auto;\n  }\n  \n  .big-text {\n    font-size: 2.1em; /*down from 3em */\n    text-shadow: 1px 1px 35px #0e0d0d78; /*text shadow a little darker */\n    line-height: 1.2; /* makes smaller */\n  }\n  .small-text {\n    font-size:18px; /*smaller*/\n    text-shadow: 1px 1px 35px #0e0d0d78; /*text shadow a little darker */\n  }\n  \n .singleGiraffe-clickme-hover {\n   display: none;\n }\n  \n  .landing.about {\n    font-size: 1.1em; /*smaller*/\n  }\n  \n  /*-------- BUTTONS on iphone-------- */\n  /*Takes hovered styles and applies them to the static element */\n  \n  button.learn-more .circle .icon.arrow {\n    background-color: white;\n  }\n  button.learn-more .circle {\n    width: 100%; \n  }\n  button.learn-more .circle .icon.arrow {\n  background: none; /*Eliminates arrow's horizontal line*/\n  -webkit-transform: translate(1.7rem, 0);\n          transform: translate(1.7rem, 0);\n  }\n  button.learn-more.deemphasized .circle .icon.arrow {\n    background: none; /*Eliminates arrow's horizontal line*/\n  }\n  button.learn-more .button-text {\n    color: white;\n  }\n  button.learn-more.deemphasized .button-text {\n    color: #282936;\n  }\n}\n\n\n\n/*--------- IPAD portrait-------- */\n\n@media only screen and (min-width: 501px) and (max-width: 768px) {\n.big-text {\n    text-shadow: 1px 1px 35px #0e0d0d78; /*text shadow a little darker */\n    line-height: 1.2; /* makes smaller */\n  }\n  .small-text {\n    font-size:18px; /*smaller*/\n    text-shadow: 1px 1px 35px #0e0d0d78; /*text shadow a little darker */\n  }\n  \n  /* Remove hovered styles for clickme giraffe and buttons*/\n\n    .singleGiraffe-clickme-hover {\n       display: none;\n     }\n\n    /*--BUTTON--*/\n      button.learn-more .circle .icon.arrow {\n        background-color: white;\n      }\n      button.learn-more .circle {\n        width: 100%; \n      }\n      button.learn-more .circle .icon.arrow {\n      background: none; /*Eliminates arrow's horizontal line*/\n      -webkit-transform: translate(1.7rem, 0);\n              transform: translate(1.7rem, 0);\n      }\n      button.learn-more.deemphasized .circle .icon.arrow {\n        background: none; /*Eliminates arrow's horizontal line*/\n      }\n      button.learn-more .button-text {\n        color: white;\n      }\n      button.learn-more.deemphasized .button-text {\n        color: #282936;\n      }\n}\n\n\n/* LARGE MONITORS */\n\n@media only screen and (min-width: 1500px) {\n  .giraffe-container {\n    height: 500px;\n    margin: 2em auto 1em auto;\n    position: relative;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n  }\n  \n   .singleGiraffe {\n      animation: none;\n    }\n}\n\n\n@media (max-width: 767px) {\n  .navbar-default .navbar-nav .open .dropdown-menu>li>a {\n      color: black !important;\n  }\n}"
  },
  {
    "path": "docs/assets/mobile_narrative.css",
    "content": "/*  IPHONE6/7/8 */\n\n@media only screen and (max-width: 540px) {\n .narrative-container { \n   margin: 0 auto 1em auto; /* reduce margin top */\n }\n \n  .narrative-text {\n    padding: 0 16px; /* adds padding to sides */\n    margin: 0 auto; /* attempts to center */\n  }\n  \n  .narrative-illo-200 {\n    max-width: 300px !important; /*makes larger, essentially full screen*/\n  }\n  \n  .narrative-illo-small { \n    margin: 0.5em auto; /* override margin so doesn't overflow */\n  }\n  \n  .narrative-illo-big {\n    max-width: 100% !important; /* overrides 90% */\n  }\n  \n  p.blockquote {\n    margin: 0em 1em 0em 1em !important; /* makes wider */\n  }\n  \n  .slide-content > .narrative-text > p:first-of-type:first-letter { /*drop cap*/\n    font-size: 4.5em;\n    line-height: 30px;\n    padding: 20px 5px 0 0;\n  }\n}\n\n@media (max-width: 767px) {\n  .navbar-default .navbar-nav .open .dropdown-menu>li>a {\n      color: black !important;\n  }\n}"
  },
  {
    "path": "docs/assets/style.css",
    "content": "@import url('https://fonts.googleapis.com/css?family=Lora:400,400i&display=swap');\n\n/*------------NAVBAR-------------*/\n.navbar-default {\n    background-color: #22222270;\n    border: none;\n}\n\n\n/* Whole document: */\n\nbody {\n\tfont-size: 20px;\n}\n\n.title{\n  display: none;\n}\n\nh1 {\n  padding-top: 2em !important;\n  margin-top: -1em !important;\n}\n\n\np {\n  margin: 1em 0 1em 0 !important;\n}\n\nul {\n  margin-bottom: 1em;\n}\n\n  .main-container {\n\tmax-width: 1326px !important;\n  }\n\n.alert-info { /* old objective box */\n  padding: 1.5em;\n  background-color: #a0d1ef !important;\n}\n\n.alert-note {\n  color: #777777;\n  background-color: #f6f3f3;\n  width: 90%;\n  margin: 0 auto;\n}\n\n\nblockquote {\n  margin: 0 0 0 0 !important;\n  padding: 0.5px 21px;  /* I changed from default of 10.5px 21px*/\n}\n\n.blockquote-note {\n  color: #777777;\n  background-color: #f6f3f3;\n  width: 90%;\n  margin: 0 auto;\n}\n\n\n .container-fluid {                  /* margin: 0 Left-aligns container; margin: auto to \"center\" (Default)*/\n    margin-right: auto !important; \n    margin-left: auto !important;\n} \n\n\n.row-fluid{\n  display: flex;\n  position: relative;\n}\n\n.col-xs-12.col-sm-4.col-md-3{\n  width: 35%; /* should agree with body width aka toc-content, overriding default 25% from cosmo theme */\n  position: relative;\n}\n\n/*-----------TABLE OF CONTENTS-------------*/\n\n/* GIRAFFE LOGO */\n#TOC::before {\n  content: \"\";\n  display: block; /*change from block to none for landing page */\n  height: 150px;\n  margin: 10px 10px 40px 10px;\n  background-image: url(\"../images/toc-giraffe-logo.jpg\");\n  background-size: contain;\n  background-position: center center;\n  background-repeat: no-repeat;\n}\n\ndiv.tocify {\n    width: 100% !important;\n    max-width: 260px;\n    max-height: 85%;\n    font-size: 16px;\n}\n\n.tocify {\n  border: none;\n  position: -webkit-sticky;\n  position: sticky; \n  top: 60px; \n  width: 100%;\n}\n\n#TOC {\n  position: -webkit-sticky !important;\n  position: sticky !important;\n  margin-left: auto !important;\n  margin-right: auto !important; /* to center the TOC within it's col-xs-12, etc. container */\n}\n\n.toc-content { /*actually, the body content*/\n  width: 65%\n}\n\n.list-group-item {\n    position: relative;\n    display: block;\n    padding: 10px 15px;\n    margin-bottom: -1px;\n    background-color: white;\n    border: none;\n    color: gray;\n}\n\n.list-group-item:hover {\n    z-index: 2;\n    color: DarkSlateGray;\n    background-color: white;\n    border: none;\n}\n\n.list-group-item.active{\n    z-index: 2;\n    color: black;\n    background-color: white;\n    border: none;\n}\n\n.list-group-item.active:focus {\n    z-index: 2;\n    color: black;\n    background-color: white;\n    border: none;\n}\n\n.list-group-item.active:hover {\n  z-index: 2;\n  color: DarkSlateGray;\n  background-color: white;\n  border: none;\n}\n\n/*---------FOOTER-----------*/\n.foot_image {\n  width: 50px;\n  filter: grayscale(0%);\n  margin-left: 1em;\n  margin-right: 1em;\n}\n\n.foot {\n  font-size: .75em;\n  text-transform: uppercase;\n  color: #808080;\n  text-align: center;\n}\n\n.foot hr{\n  width: 90%;\n}\n\n\n.tocify-extend-page {\n  height: 0px !important; /* Gets rid of extra space after footer*/\n}\n\n\n/* DATA CAMP WINDOWS */\n\n.powered-by-datacamp {\n  display: none !important;\n}\n\n.datacamp-exercise {\n  margin: 0 0 1em 0 !important;\n}\n\n\n/* LARGE IMAGE AT TOP OF EACH MODULE PAGE*/\n.image-descript {\n    position: relative;\n}\n\n/*.main-image is for landing page*/\n.main-image {\n  width: 100%;\n  display: block; /*This gets rid of the weird little space from inline-block*/\n  margin-top: -50px;\n  margin-bottom: 10px;\n}\n\n.button {\n  border: 2px solid white;\n  background-color: #0000001a;\n  text-align: center;\n  color: white;\n  padding: 1rem;\n  font-size: 2rem;\n  cursor: pointer;\n  margin: 0 auto;\n  width: 150px;\n  text-transform: uppercase;\n}\n\n.button:hover {\n  background-color: white;\n  color: DarkSlateGray;\n  text-decoration: none !important;\n}\n\na.button-landing-page {\n    color: white !important;\n    border: none;\n    text-decoration: none !important;\n}\n\n\na.button-landing-page:focus{\n    z-index: 2;\n    color: DarkSlateGray;\n    border: none;\n    text-decoration: none !important;\n}\n\na.button-landing-page:hover{\n    z-index: 2;\n    color: DarkSlateGray;\n    border: none;\n    text-decoration: none !important;\n}\n\nbody, html {\n  height: 100%;\n}\n\n\n\n/*.big_image is for module pages*/\n\n.big_image {\n  margin-top: -66px;\n  margin-bottom: 2em;\n  width: 100%;\n}\n\n.image-text{\n    position: absolute;\n    top:30%;\n    left:0;\n    right:0;\n    bottom:0;\n  }\n  \n.lil-image-text { \n    color: white;\n    margin-top: 0px;\n      margin-right: auto;\n      margin-bottom: 20px;\n      margin-left: auto;\n    padding-top: 0px;\n    text-align: center; \n    display:block;\n    font-family: 'Lora', serif;\n      font-size: 22px;\n      font-weight: 500;\n      line-height: 1.5em;\n      letter-spacing: 1px;\n      font-style: italic;\n      font-weight: normal;\n      color: #fff;\n  }\n\n\n/*@media screen and (max-width: 300px) {\n .image-descript {\n  display: none;\n }*/\n\n\n.big-image-text { \n  letter-spacing: 0.065em;\n  line-height: 1em;\n  font-size: 68px;\n  text-transform: uppercase;\n  text-align: center; \n  display:block;\n  color: #fff;\n  margin-bottom: 3rem;\n}\n\n\n.color-overlay {\n  position: absolute;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  background-color: rgba(0,0,0,.1);\n}\n\n/* Landing Page*/\n\n.back-panel {\n  max-width: 1500px;\n  background: white;\n  margin: 0 auto;\n  margin-top: 3em;\n  padding: 0 0em;\n}\n\n.back-panel-contents {\n  width: 100%;\n  display: flex;\n  margin: 0 auto;\n}\n\n.back-panel-contents_row-reverse {\n  flex-direction: row-reverse;\n}\n\n.color-textbox {\n  width:70%;\n  background: #4accc2;\n  color: white;\n  text-align: center;\n  font-weight: normal;\n  margin-bottom: 3em;\n}\n\n.color-textbox-blue {\n  background: #5eade3;\n}\n\n\n.color-textbox-orchid {\n  background: orchid;\n}\n\n.color-textbox-title {\n  text-align: center;\n  font-weight: bold;\n  font-size: 3.2rem;\n  padding: 8rem 3rem 0rem 3rem;\n}\n\n.color-textbox-text {\n  font-size: 3rem;\n  padding: 3rem 8rem 0rem 8rem;\n  font-weight: normal;\n  text-transform: normal;\n}\n\n.landing-subimage {\n  width:30%;\n  margin-bottom: 3em;\n}\n\n\n.images-landing {\n  margin-bottom: 0em !important;\n}\n\n\n\n/* SMARTPHONES PORTRAIT */\n@media only screen and (min-width: 300px) and (max-width: 479px) {\n.lil-image-text {\n    font-size: 1rem;\n  }\n\n  .big-image-text {\n    line-height: normal;\n    font-size: 1.5rem;\n  }\n\n  .back-panel {\n    margin-top: 0;\n  }\n  .back-panel-contents {\n    display: flex;\n  }\n\n  .landing-subimage {\n    width: 75%;\n    margin: 0 auto;\n  }\n\n  .color-textbox {\n    width: 100%;\n    padding: 1.25rem;\n    margin-bottom: 1.5rem;\n  }\n\n  .color-textbox-title{\n    font-size: 2rem;\n    margin-bottom: 1.5rem;\n    padding: 0rem;\n  }\n\n  .color-textbox-text{\n    font-size: 1.5rem;\n    padding: 0rem;\n  }\n\n}\n\n/* Tablet */\n@media only screen and (min-width: 480px) and (max-width: 540px) {\n  .color-textbox-title{\n    font-size: 1.5rem;\n    padding: 2.25rem 0rem 0em 0rem;\n  }\n\n  .color-textbox-text{\n    font-size: 1.4rem;\n    padding: 1rem 5rem 0rem 5rem;\n  }\n\n  .toc-content {\n    width: 100%;\n  }\n}\n\n@media only screen and (min-width: 541px) and (max-width: 649px) {\n  .color-textbox-title{\n    font-size: 2rem;\n    padding: 2.5rem 0rem 0em 0rem;\n  }\n\n  .color-textbox-text{\n    font-size: 1.75rem;\n    padding: 1rem 5rem 0rem 5rem;\n  }\n\n  .toc-content {\n    width: 100%;\n  }\n}\n\n\n@media only screen and (min-width: 650px) and (max-width: 767px) {\n  .color-textbox-title{\n    font-size: 2rem;\n    padding: 4rem 0rem 0em 0rem;\n  }\n\n  .color-textbox-text{\n    font-size: 2rem;\n    padding: 1rem 5rem 0rem 5rem;\n  }\n\n  .toc-content {\n    width: 100%;\n  }\n}\n\n\n/*iPad portrait*/\n\n@media only screen and (min-width: 768px) and (max-width: 1023px) {\n  .color-textbox-title{\n    font-size: 2.35rem;\n    padding: 6rem 0rem 0rem 0rem;\n  }\n\n  .color-textbox-text{\n    font-size: 2.25rem;\n    padding: 1rem 5rem 0rem 5rem;\n  }\n\n}\n\n\n/*iPad Pro portarit */\n\n@media only screen and (min-width: 1024px) and (max-width: 1225px) {\n  .color-textbox-title{\n    font-size: 3rem;\n    padding: 6rem 0rem 0rem 0rem;\n  }\n\n  .color-textbox-text{\n    font-size: 3rem;\n    padding: 1rem 5rem 0rem 5rem;\n  }\n\n}\n\n\n/* ABOUT THE AUTHORS CSS */\n\n.image-text-about-the-authors {\n  top:44%;\n}\n\n.about-the-author-color-textbox {\n  width:33.3%;\n  background: white;\n  color: black;\n  text-align: center;\n  font-weight: normal;\n  margin-bottom: 1em;\n  margin: 0 auto;\n}\n\n.about-the-author-color-textbox-title {\n  text-align: center;\n  font-weight: bold;\n  font-size: 2.2rem;\n  padding: 4rem 3rem 0rem 3rem;\n  margin: 0 auto;\n}\n\n.about-the-author-color-textbox-text {\n  font-size: 2rem;\n  padding: 3rem 8rem 0rem 8rem;\n  font-weight: normal;\n  text-transform: normal;\n}\n\n.about-the-author-subimage {\n  width: 40%;\n  margin: 0 auto;\n}\n\n@media only screen and (max-width: 768px) {\n  \n.about-the-author-color-textbox {\n  width:100%;\n}\n  \n  .about-the-author-color-textbox-text {\n    min-width: 300px;\n    padding: 3rem 2rem 0rem 2rem;\n\n}\n\n.about-the-author-color-textbox-title {\n  text-align: center;\n  font-weight: bold;\n  font-size: 2.2rem;\n  padding: 8rem 3rem 0rem 3rem;\n  max-width: 100%;\n  min-width: 300px;\n}\n\n.about-the-author-subimage {\n  min-width: 300px;\n  margin: 0 auto;\n}\n  \n  .back-panel-contents {\n  width: 100%;\n  display: flex;\n  flex-wrap: wrap;\n  margin: 0 auto;\n}\n  \n  .lil-image-text {\n    font-size: 15px;\n  }\n\n  .big-image-text {\n    line-height: normal;\n    font-size: 31px;\n  }\n\n  .col-xs-12.col-sm-4.col-md-3 {\n    display: none !important;\n  }\n}\n\n\n/* New hero images */\n\n.hero-container {\n  height: 550px;\n  background-color: #1b3a42;\n  margin-bottom: 2em;\n}\n\n.hero-image {\n    max-width: 1800px;\n    margin-top: -66px !important;\n    margin-left: auto;\n    margin-right: auto;\n    position: relative;\n    margin-bottom: 2em;\n    background-image: linear-gradient( rgba(0,0,0,.2), rgba(0,0,0,.2) ),\n    url(../images/big_image/Log.jpg); /* liner gradient tints the image darker for readability*/\n    height: 550px;\n    background-size: cover;\n    background-color: #1b3a42;\n    background-position: center bottom;\n    display: flex; /* Change to `display: none` for no hero image */\n    justify-content: center;\n    align-items: center;\n}\n\n\n.hero-image-text-little {\n  position: relative;\n  font-family: 'Lora', serif;\n      font-size: 24px;\n      font-weight: 500;\n      line-height: 1.5em;\n      letter-spacing: 1px;\n      font-style: italic;\n      font-weight: normal;\n      color: #fff;\n      text-align: center;\n}\n\n.hero-image-text-big {\n  position: relative;\n  letter-spacing: 0.065em;\n  line-height: 1em;\n  font-size: 68px;\n  text-transform: uppercase;\n  text-align: center;\n  display: block;\n  color: #fff;\n  margin-bottom: 2.5rem;\n  font-weight: bold;\n}\n\n\n@media only screen and (max-width: 770px) {\n  .hero-image-text-big{\n    font-size: 3rem;\n    padding: 2rem 0rem 0rem 0rem;\n  }\n\n  .hero-image-text-little{\n    font-size: 19px;\n  }\n  \n  .hero-image {\n    max-width: 770px;\n    height: 300px;\n  }\n  \n    .hero-container {\n    height: 300px;\n    background-color: #1b3a42;\n    margin-bottom: 1em;\n  }\n  \n.toc-content.col-xs-12.col-sm-8.col-md-9{\n  width: 100%;\n  padding-left: 1px;\n  padding-right: 1px;\n}\n  \n\n}\n\n/*------------iframe-----------------*/\n\niframe.interactive {\n    min-width: 100%;\n    margin: 0 auto;\n  }\n  \n/*----------- video for gif----------- */\n\nvideo {\n  width: 100%;\n}\n\n.small_vid {\n  width:600px;\n  display: block;\n  margin: 0 auto;\n}\n\n/*----------DIV TIPS------------*/\n\ndiv.note, div.tip, div.gotcha, div.design, div.hat, div.obj{\n  border: 4px #c5ede2;\n  border-style: solid;\n  padding: 1em;\n  margin: 1em 0;\n  \n  /*uncomment for icon */\n  \n  /* padding-left: 100px; \n  background-size: 70px; \n  background-repeat: no-repeat;\n  background-position: 15px center; */\n  min-height: 120px;\n  color: #638f9d;\n  background-color: #ffffff;\n}\n\ndiv.obj {\n  font-size: 16px;\n  line-height: 1.5em;\n  /*background-image: url(\"../images/arrow.png\");*/\n}\n\ndiv.obj>p:first-child {\n  padding-top: 0;\n  margin-top: 0 !important;\n  font-family: \"Source Sans Pro\";\n  text-transform: uppercase;\n  letter-spacing: 0.1em;\n}\n\n"
  },
  {
    "path": "docs/images/02_bellCurve/lib/crosstalk-1.0.0/css/crosstalk.css",
    "content": "/* Adjust margins outwards, so column contents line up with the edges of the\n   parent of container-fluid. */\n.container-fluid.crosstalk-bscols {\n  margin-left: -30px;\n  margin-right: -30px;\n  white-space: normal;\n}\n\n/* But don't adjust the margins outwards if we're directly under the body,\n   i.e. we were the top-level of something at the console. */\nbody > .container-fluid.crosstalk-bscols {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n  display: inline-block;\n  padding-right: 12px;\n  vertical-align: top;\n}\n\n@media only screen and (max-width:480px) {\n  .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n    display: block;\n    padding-right: inherit;\n  }\n}\n"
  },
  {
    "path": "docs/images/02_bellCurve/lib/crosstalk-1.0.0/js/crosstalk.js",
    "content": "(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Events = function () {\n  function Events() {\n    _classCallCheck(this, Events);\n\n    this._types = {};\n    this._seq = 0;\n  }\n\n  _createClass(Events, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var subs = this._types[eventType];\n      if (!subs) {\n        subs = this._types[eventType] = {};\n      }\n      var sub = \"sub\" + this._seq++;\n      subs[sub] = listener;\n      return sub;\n    }\n\n    // Returns false if no match, or string for sub name if matched\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var subs = this._types[eventType];\n      if (typeof listener === \"function\") {\n        for (var key in subs) {\n          if (subs.hasOwnProperty(key)) {\n            if (subs[key] === listener) {\n              delete subs[key];\n              return key;\n            }\n          }\n        }\n        return false;\n      } else if (typeof listener === \"string\") {\n        if (subs && subs[listener]) {\n          delete subs[listener];\n          return listener;\n        }\n        return false;\n      } else {\n        throw new Error(\"Unexpected type for listener\");\n      }\n    }\n  }, {\n    key: \"trigger\",\n    value: function trigger(eventType, arg, thisObj) {\n      var subs = this._types[eventType];\n      for (var key in subs) {\n        if (subs.hasOwnProperty(key)) {\n          subs[key].call(thisObj, arg);\n        }\n      }\n    }\n  }]);\n\n  return Events;\n}();\n\nexports.default = Events;\n\n},{}],2:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.FilterHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _filterset = require(\"./filterset\");\n\nvar _filterset2 = _interopRequireDefault(_filterset);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction getFilterSet(group) {\n  var fsVar = group.var(\"filterset\");\n  var result = fsVar.get();\n  if (!result) {\n    result = new _filterset2.default();\n    fsVar.set(result);\n  }\n  return result;\n}\n\nvar id = 1;\nfunction nextId() {\n  return id++;\n}\n\nvar FilterHandle = exports.FilterHandle = function () {\n  /**\n   * @classdesc\n   * Use this class to contribute to, and listen for changes to, the filter set\n   * for the given group of widgets. Filter input controls should create one\n   * `FilterHandle` and only call {@link FilterHandle#set}. Output widgets that\n   * wish to displayed filtered data should create one `FilterHandle` and use\n   * the {@link FilterHandle#filteredKeys} property and listen for change\n   * events.\n   *\n   * If two (or more) `FilterHandle` instances in the same webpage share the\n   * same group name, they will contribute to a single \"filter set\". Each\n   * `FilterHandle` starts out with a `null` value, which means they take\n   * nothing away from the set of data that should be shown. To make a\n   * `FilterHandle` actually remove data from the filter set, set its value to\n   * an array of keys which should be displayed. Crosstalk will aggregate the\n   * various key arrays by finding their intersection; only keys that are\n   * present in all non-null filter handles are considered part of the filter\n   * set.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the @{link FilterHandle#setGroup} method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function FilterHandle(group, extraInfo) {\n    _classCallCheck(this, FilterHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The filterSet that we're tracking, if any. Can change over time.\n    this._filterSet = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._filterVar = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this._id = \"filter\" + nextId();\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this FilterHandle. If `set()` was\n   * previously called on this handle, switching groups will clear those keys\n   * from the old group's filter set. These keys will not be applied to the new\n   * group's filter set either. In other words, `setGroup()` effectively calls\n   * `clear()` before switching groups.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(FilterHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._filterVar) {\n        this._filterVar.off(\"change\", this._varOnChangeSub);\n        this.clear();\n        this._varOnChangeSub = null;\n        this._filterVar = null;\n        this._filterSet = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        group = (0, _group2.default)(group);\n        this._filterSet = getFilterSet(group);\n        this._filterVar = (0, _group2.default)(group).var(\"filter\");\n        var sub = this._filterVar.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Combine the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n    value: function _mergeExtraInfo(extraInfo) {\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Close the handle. This clears this handle's contribution to the filter set,\n     * and unsubscribes all event listeners.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.clear();\n      this.setGroup(null);\n    }\n\n    /**\n     * Clear this handle's contribution to the filter set.\n     *\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.clear(this._id);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * Set this handle's contribution to the filter set. This array should consist\n     * of the keys of the rows that _should_ be displayed; any keys that are not\n     * present in the array will be considered _filtered out_. Note that multiple\n     * `FilterHandle` instances in the group may each contribute an array of keys,\n     * and only those keys that appear in _all_ of the arrays make it through the\n     * filter.\n     *\n     * @param {string[]} keys - Empty array, or array of keys. To clear the\n     *   filter, don't pass an empty array; instead, use the\n     *   {@link FilterHandle#clear} method.\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(keys, extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.update(this._id, keys);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * @return {string[]|null} - Either: 1) an array of keys that made it through\n     *   all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n     *   is being applied (all data should be displayed).\n     */\n\n  }, {\n    key: \"on\",\n\n\n    /**\n     * Subscribe to events on this `FilterHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {FilterHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n     *   this subscription.\n     */\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancel event subscriptions created by {@link FilterHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|FilterHandle~listener} listener - Either the callback\n     *   function previously passed into {@link FilterHandle#on}, or the\n     *   string that was returned from {@link FilterHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n  }, {\n    key: \"_onChange\",\n    value: function _onChange(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * @callback FilterHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the filter set, or `null` if no filter set is active),\n     *   `oldValue` (the previous value of the filter set), and `sender` (the\n     *   `FilterHandle` instance that made the change).\n     */\n\n    /**\n     * @event FilterHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the filter set, or `null`\n     *   if no filter set is active.\n     * @property {object} oldValue - The previous value of the filter set.\n     * @property {FilterHandle} sender - The `FilterHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"filteredKeys\",\n    get: function get() {\n      return this._filterSet ? this._filterSet.value : null;\n    }\n  }]);\n\n  return FilterHandle;\n}();\n\n},{\"./events\":1,\"./filterset\":3,\"./group\":4,\"./util\":11}],3:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _util = require(\"./util\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction naturalComparator(a, b) {\n  if (a === b) {\n    return 0;\n  } else if (a < b) {\n    return -1;\n  } else if (a > b) {\n    return 1;\n  }\n}\n\n/**\n * @private\n */\n\nvar FilterSet = function () {\n  function FilterSet() {\n    _classCallCheck(this, FilterSet);\n\n    this.reset();\n  }\n\n  _createClass(FilterSet, [{\n    key: \"reset\",\n    value: function reset() {\n      // Key: handle ID, Value: array of selected keys, or null\n      this._handles = {};\n      // Key: key string, Value: count of handles that include it\n      this._keys = {};\n      this._value = null;\n      this._activeHandles = 0;\n    }\n  }, {\n    key: \"update\",\n    value: function update(handleId, keys) {\n      if (keys !== null) {\n        keys = keys.slice(0); // clone before sorting\n        keys.sort(naturalComparator);\n      }\n\n      var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys),\n          added = _diffSortedLists.added,\n          removed = _diffSortedLists.removed;\n\n      this._handles[handleId] = keys;\n\n      for (var i = 0; i < added.length; i++) {\n        this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n      }\n      for (var _i = 0; _i < removed.length; _i++) {\n        this._keys[removed[_i]]--;\n      }\n\n      this._updateValue(keys);\n    }\n\n    /**\n     * @param {string[]} keys Sorted array of strings that indicate\n     * a superset of possible keys.\n     * @private\n     */\n\n  }, {\n    key: \"_updateValue\",\n    value: function _updateValue() {\n      var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys;\n\n      var handleCount = Object.keys(this._handles).length;\n      if (handleCount === 0) {\n        this._value = null;\n      } else {\n        this._value = [];\n        for (var i = 0; i < keys.length; i++) {\n          var count = this._keys[keys[i]];\n          if (count === handleCount) {\n            this._value.push(keys[i]);\n          }\n        }\n      }\n    }\n  }, {\n    key: \"clear\",\n    value: function clear(handleId) {\n      if (typeof this._handles[handleId] === \"undefined\") {\n        return;\n      }\n\n      var keys = this._handles[handleId];\n      if (!keys) {\n        keys = [];\n      }\n\n      for (var i = 0; i < keys.length; i++) {\n        this._keys[keys[i]]--;\n      }\n      delete this._handles[handleId];\n\n      this._updateValue();\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"_allKeys\",\n    get: function get() {\n      var allKeys = Object.keys(this._keys);\n      allKeys.sort(naturalComparator);\n      return allKeys;\n    }\n  }]);\n\n  return FilterSet;\n}();\n\nexports.default = FilterSet;\n\n},{\"./util\":11}],4:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.default = group;\n\nvar _var2 = require(\"./var\");\n\nvar _var3 = _interopRequireDefault(_var2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nvar groups = global.__crosstalk_groups;\n\nfunction group(groupName) {\n  if (groupName && typeof groupName === \"string\") {\n    if (!groups.hasOwnProperty(groupName)) {\n      groups[groupName] = new Group(groupName);\n    }\n    return groups[groupName];\n  } else if ((typeof groupName === \"undefined\" ? \"undefined\" : _typeof(groupName)) === \"object\" && groupName._vars && groupName.var) {\n    // Appears to already be a group object\n    return groupName;\n  } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === \"string\") {\n    return group(groupName[0]);\n  } else {\n    throw new Error(\"Invalid groupName argument\");\n  }\n}\n\nvar Group = function () {\n  function Group(name) {\n    _classCallCheck(this, Group);\n\n    this.name = name;\n    this._vars = {};\n  }\n\n  _createClass(Group, [{\n    key: \"var\",\n    value: function _var(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name);\n      return this._vars[name];\n    }\n  }, {\n    key: \"has\",\n    value: function has(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      return this._vars.hasOwnProperty(name);\n    }\n  }]);\n\n  return Group;\n}();\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./var\":12}],5:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _selection = require(\"./selection\");\n\nvar _filter = require(\"./filter\");\n\nrequire(\"./input\");\n\nrequire(\"./input_selectize\");\n\nrequire(\"./input_checkboxgroup\");\n\nrequire(\"./input_slider\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar defaultGroup = (0, _group2.default)(\"default\");\n\nfunction var_(name) {\n  return defaultGroup.var(name);\n}\n\nfunction has(name) {\n  return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n  global.Shiny.addCustomMessageHandler(\"update-client-value\", function (message) {\n    if (typeof message.group === \"string\") {\n      (0, _group2.default)(message.group).var(message.name).set(message.value);\n    } else {\n      var_(message.name).set(message.value);\n    }\n  });\n}\n\nvar crosstalk = {\n  group: _group2.default,\n  var: var_,\n  has: has,\n  SelectionHandle: _selection.SelectionHandle,\n  FilterHandle: _filter.FilterHandle\n};\n\n/**\n * @namespace crosstalk\n */\nexports.default = crosstalk;\n\nglobal.crosstalk = crosstalk;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./group\":4,\"./input\":6,\"./input_checkboxgroup\":7,\"./input_selectize\":8,\"./input_slider\":9,\"./selection\":10}],6:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.register = register;\nvar $ = global.jQuery;\n\nvar bindings = {};\n\nfunction register(reg) {\n  bindings[reg.className] = reg;\n  if (global.document && global.document.readyState !== \"complete\") {\n    $(function () {\n      bind();\n    });\n  } else if (global.document) {\n    setTimeout(bind, 100);\n  }\n}\n\nfunction bind() {\n  Object.keys(bindings).forEach(function (className) {\n    var binding = bindings[className];\n    $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function (i, el) {\n      bindInstance(binding, el);\n    });\n  });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n  return val.replace(/([!\"#$%&'()*+,.\\/:;<=>?@\\[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n  var $el = $(el);\n  Object.keys(bindings).forEach(function (className) {\n    if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n      var binding = bindings[className];\n      bindInstance(binding, el);\n    }\n  });\n}\n\nfunction bindInstance(binding, el) {\n  var jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n  var data = JSON.parse(jsonEl[0].innerText);\n\n  var instance = binding.factory(el, data);\n  $(el).data(\"crosstalk-instance\", instance);\n  $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n  (function () {\n    var inputBinding = new global.Shiny.InputBinding();\n    var $ = global.jQuery;\n    $.extend(inputBinding, {\n      find: function find(scope) {\n        return $(scope).find(\".crosstalk-input\");\n      },\n      initialize: function initialize(el) {\n        if (!$(el).hasClass(\"crosstalk-input-bound\")) {\n          bindEl(el);\n        }\n      },\n      getId: function getId(el) {\n        return el.id;\n      },\n      getValue: function getValue(el) {},\n      setValue: function setValue(el, value) {},\n      receiveMessage: function receiveMessage(el, data) {},\n      subscribe: function subscribe(el, callback) {\n        $(el).data(\"crosstalk-instance\").resume();\n      },\n      unsubscribe: function unsubscribe(el) {\n        $(el).data(\"crosstalk-instance\").suspend();\n      }\n    });\n    global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n  })();\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{}],7:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-checkboxgroup\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    var $el = $(el);\n    $el.on(\"change\", \"input[type='checkbox']\", function () {\n      var checked = $el.find(\"input[type='checkbox']:checked\");\n      if (checked.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          checked.each(function () {\n            data.map[this.value].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],8:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-select\",\n\n  factory: function factory(el, data) {\n    /*\n     * items: {value: [...], label: [...]}\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n\n    var first = [{ value: \"\", label: \"(All)\" }];\n    var items = util.dataframeToD3(data.items);\n    var opts = {\n      options: first.concat(items),\n      valueField: \"value\",\n      labelField: \"label\",\n      searchField: \"label\"\n    };\n\n    var select = $(el).find(\"select\")[0];\n\n    var selectize = $(select).selectize(opts)[0].selectize;\n\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    selectize.on(\"change\", function () {\n      if (selectize.items.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          selectize.items.forEach(function (group) {\n            data.map[group].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6,\"./util\":11}],9:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\nvar strftime = global.strftime;\n\ninput.register({\n  className: \"crosstalk-input-slider\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var opts = {};\n    var $el = $(el).find(\"input\");\n    var dataType = $el.data(\"data-type\");\n    var timeFormat = $el.data(\"time-format\");\n    var timeFormatter = void 0;\n\n    // Set up formatting functions\n    if (dataType === \"date\") {\n      timeFormatter = strftime.utc();\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"datetime\") {\n      var timezone = $el.data(\"timezone\");\n      if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime;\n\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    }\n\n    $el.ionRangeSlider(opts);\n\n    function getValue() {\n      var result = $el.data(\"ionRangeSlider\").result;\n\n      // Function for converting numeric value from slider to appropriate type.\n      var convert = void 0;\n      var dataType = $el.data(\"data-type\");\n      if (dataType === \"date\") {\n        convert = function convert(val) {\n          return formatDateUTC(new Date(+val));\n        };\n      } else if (dataType === \"datetime\") {\n        convert = function convert(val) {\n          // Convert ms to s\n          return +val / 1000;\n        };\n      } else {\n        convert = function convert(val) {\n          return +val;\n        };\n      }\n\n      if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n        return [convert(result.from), convert(result.to)];\n      } else {\n        return convert(result.from);\n      }\n    }\n\n    var lastKnownKeys = null;\n\n    $el.on(\"change.crosstalkSliderInput\", function (event) {\n      if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n        var _getValue = getValue(),\n            _getValue2 = _slicedToArray(_getValue, 2),\n            from = _getValue2[0],\n            to = _getValue2[1];\n\n        var keys = [];\n        for (var i = 0; i < data.values.length; i++) {\n          var val = data.values[i];\n          if (val >= from && val <= to) {\n            keys.push(data.keys[i]);\n          }\n        }\n        keys.sort();\n        ctHandle.set(keys);\n        lastKnownKeys = keys;\n      }\n    });\n\n    // let $el = $(el);\n    // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n    //   let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n    //   if (checked.length === 0) {\n    //     ctHandle.clear();\n    //   } else {\n    //     let keys = {};\n    //     checked.each(function() {\n    //       data.map[this.value].forEach(function(key) {\n    //         keys[key] = true;\n    //       });\n    //     });\n    //     let keyArray = Object.keys(keys);\n    //     keyArray.sort();\n    //     ctHandle.set(keyArray);\n    //   }\n    // });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n  var str = n.toString();\n  while (str.length < digits) {\n    str = \"0\" + str;\n  }return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n  if (date instanceof Date) {\n    return date.getUTCFullYear() + \"-\" + padZeros(date.getUTCMonth() + 1, 2) + \"-\" + padZeros(date.getUTCDate(), 2);\n  } else {\n    return null;\n  }\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],10:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.SelectionHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar SelectionHandle = exports.SelectionHandle = function () {\n\n  /**\n   * @classdesc\n   * Use this class to read and write (and listen for changes to) the selection\n   * for a Crosstalk group. This is intended to be used for linked brushing.\n   *\n   * If two (or more) `SelectionHandle` instances in the same webpage share the\n   * same group name, they will share the same state. Setting the selection using\n   * one `SelectionHandle` instance will result in the `value` property instantly\n   * changing across the others, and `\"change\"` event listeners on all instances\n   * (including the one that initiated the sending) will fire.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the [SelectionHandle#setGroup](#setGroup) method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function SelectionHandle() {\n    var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n    var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n\n    _classCallCheck(this, SelectionHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._var = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this SelectionHandle. The group\n   * being switched away from (if any) will not have its selection value\n   * modified as a result of calling `setGroup`, even if this handle was the\n   * most recent handle to set the selection of the group.\n   *\n   * The group being switched to (if any) will also not have its selection value\n   * modified as a result of calling `setGroup`. If you want to set the\n   * selection value of the new group, call `set` explicitly.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(SelectionHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._var) {\n        this._var.off(\"change\", this._varOnChangeSub);\n        this._var = null;\n        this._varOnChangeSub = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        this._var = (0, _group2.default)(group).var(\"selection\");\n        var sub = this._var.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Retrieves the current selection for the group represented by this\n     * `SelectionHandle`.\n     *\n     * - If no selection is active, then this value will be falsy.\n     * - If a selection is active, but no data points are selected, then this\n     *   value will be an empty array.\n     * - If a selection is active, and data points are selected, then the keys\n     *   of the selected data points will be present in the array.\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n\n\n    /**\n     * Combines the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n    value: function _mergeExtraInfo(extraInfo) {\n      // Important incidental effect: shallow clone is returned\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n     *   {@link SelectionHandle#value}).\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(selectedKeys, extraInfo) {\n      if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any that were passed\n     *   into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Subscribes to events on this `SelectionHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {SelectionHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n     *   this subscription.\n     */\n\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancels event subscriptions created by {@link SelectionHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|SelectionHandle~listener} listener - Either the callback\n     *   function previously passed into {@link SelectionHandle#on}, or the\n     *   string that was returned from {@link SelectionHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n\n    /**\n     * Shuts down the `SelectionHandle` object.\n     *\n     * Removes all event listeners that were added through this handle.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.setGroup(null);\n    }\n\n    /**\n     * @callback SelectionHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the selection, or `undefined` if no selection is active),\n     *   `oldValue` (the previous value of the selection), and `sender` (the\n     *   `SelectionHandle` instance that made the change).\n     */\n\n    /**\n     * @event SelectionHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the selection, or `undefined`\n     *   if no selection is active.\n     * @property {object} oldValue - The previous value of the selection.\n     * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._var ? this._var.get() : null;\n    }\n  }]);\n\n  return SelectionHandle;\n}();\n\n},{\"./events\":1,\"./group\":4,\"./util\":11}],11:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.extend = extend;\nexports.checkSorted = checkSorted;\nexports.diffSortedLists = diffSortedLists;\nexports.dataframeToD3 = dataframeToD3;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction extend(target) {\n  for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n    sources[_key - 1] = arguments[_key];\n  }\n\n  for (var i = 0; i < sources.length; i++) {\n    var src = sources[i];\n    if (typeof src === \"undefined\" || src === null) continue;\n\n    for (var key in src) {\n      if (src.hasOwnProperty(key)) {\n        target[key] = src[key];\n      }\n    }\n  }\n  return target;\n}\n\nfunction checkSorted(list) {\n  for (var i = 1; i < list.length; i++) {\n    if (list[i] <= list[i - 1]) {\n      throw new Error(\"List is not sorted or contains duplicate\");\n    }\n  }\n}\n\nfunction diffSortedLists(a, b) {\n  var i_a = 0;\n  var i_b = 0;\n\n  if (!a) a = [];\n  if (!b) b = [];\n\n  var a_only = [];\n  var b_only = [];\n\n  checkSorted(a);\n  checkSorted(b);\n\n  while (i_a < a.length && i_b < b.length) {\n    if (a[i_a] === b[i_b]) {\n      i_a++;\n      i_b++;\n    } else if (a[i_a] < b[i_b]) {\n      a_only.push(a[i_a++]);\n    } else {\n      b_only.push(b[i_b++]);\n    }\n  }\n\n  if (i_a < a.length) a_only = a_only.concat(a.slice(i_a));\n  if (i_b < b.length) b_only = b_only.concat(b.slice(i_b));\n  return {\n    removed: a_only,\n    added: b_only\n  };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nfunction dataframeToD3(df) {\n  var names = [];\n  var length = void 0;\n  for (var name in df) {\n    if (df.hasOwnProperty(name)) names.push(name);\n    if (_typeof(df[name]) !== \"object\" || typeof df[name].length === \"undefined\") {\n      throw new Error(\"All fields must be arrays\");\n    } else if (typeof length !== \"undefined\" && length !== df[name].length) {\n      throw new Error(\"All fields must be arrays of the same length\");\n    }\n    length = df[name].length;\n  }\n  var results = [];\n  var item = void 0;\n  for (var row = 0; row < length; row++) {\n    item = {};\n    for (var col = 0; col < names.length; col++) {\n      item[names[col]] = df[names[col]][row];\n    }\n    results.push(item);\n  }\n  return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\n\nvar SubscriptionTracker = exports.SubscriptionTracker = function () {\n  function SubscriptionTracker(emitter) {\n    _classCallCheck(this, SubscriptionTracker);\n\n    this._emitter = emitter;\n    this._subs = {};\n  }\n\n  _createClass(SubscriptionTracker, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var sub = this._emitter.on(eventType, listener);\n      this._subs[sub] = eventType;\n      return sub;\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var sub = this._emitter.off(eventType, listener);\n      if (sub) {\n        delete this._subs[sub];\n      }\n      return sub;\n    }\n  }, {\n    key: \"removeAllListeners\",\n    value: function removeAllListeners() {\n      var _this = this;\n\n      var current_subs = this._subs;\n      this._subs = {};\n      Object.keys(current_subs).forEach(function (sub) {\n        _this._emitter.off(current_subs[sub], sub);\n      });\n    }\n  }]);\n\n  return SubscriptionTracker;\n}();\n\n},{}],12:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Var = function () {\n  function Var(group, name, /*optional*/value) {\n    _classCallCheck(this, Var);\n\n    this._group = group;\n    this._name = name;\n    this._value = value;\n    this._events = new _events2.default();\n  }\n\n  _createClass(Var, [{\n    key: \"get\",\n    value: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"set\",\n    value: function set(value, /*optional*/event) {\n      if (this._value === value) {\n        // Do nothing; the value hasn't changed\n        return;\n      }\n      var oldValue = this._value;\n      this._value = value;\n      // Alert JavaScript listeners that the value has changed\n      var evt = {};\n      if (event && (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\") {\n        for (var k in event) {\n          if (event.hasOwnProperty(k)) evt[k] = event[k];\n        }\n      }\n      evt.oldValue = oldValue;\n      evt.value = value;\n      this._events.trigger(\"change\", evt, this);\n\n      // TODO: Make this extensible, to let arbitrary back-ends know that\n      // something has changed\n      if (global.Shiny && global.Shiny.onInputChange) {\n        global.Shiny.onInputChange(\".clientValue-\" + (this._group.name !== null ? this._group.name + \"-\" : \"\") + this._name, typeof value === \"undefined\" ? null : value);\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._events.on(eventType, listener);\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._events.off(eventType, listener);\n    }\n  }]);\n\n  return Var;\n}();\n\nexports.default = Var;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./events\":1}]},{},[5])\n//# sourceMappingURL=crosstalk.js.map\n"
  },
  {
    "path": "docs/images/02_bellCurve/lib/crosstalk-1.2.0/js/crosstalk.js",
    "content": "(function(){function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s}return e})()({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Events = function () {\n  function Events() {\n    _classCallCheck(this, Events);\n\n    this._types = {};\n    this._seq = 0;\n  }\n\n  _createClass(Events, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var subs = this._types[eventType];\n      if (!subs) {\n        subs = this._types[eventType] = {};\n      }\n      var sub = \"sub\" + this._seq++;\n      subs[sub] = listener;\n      return sub;\n    }\n\n    // Returns false if no match, or string for sub name if matched\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var subs = this._types[eventType];\n      if (typeof listener === \"function\") {\n        for (var key in subs) {\n          if (subs.hasOwnProperty(key)) {\n            if (subs[key] === listener) {\n              delete subs[key];\n              return key;\n            }\n          }\n        }\n        return false;\n      } else if (typeof listener === \"string\") {\n        if (subs && subs[listener]) {\n          delete subs[listener];\n          return listener;\n        }\n        return false;\n      } else {\n        throw new Error(\"Unexpected type for listener\");\n      }\n    }\n  }, {\n    key: \"trigger\",\n    value: function trigger(eventType, arg, thisObj) {\n      var subs = this._types[eventType];\n      for (var key in subs) {\n        if (subs.hasOwnProperty(key)) {\n          subs[key].call(thisObj, arg);\n        }\n      }\n    }\n  }]);\n\n  return Events;\n}();\n\nexports.default = Events;\n\n},{}],2:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.FilterHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _filterset = require(\"./filterset\");\n\nvar _filterset2 = _interopRequireDefault(_filterset);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction getFilterSet(group) {\n  var fsVar = group.var(\"filterset\");\n  var result = fsVar.get();\n  if (!result) {\n    result = new _filterset2.default();\n    fsVar.set(result);\n  }\n  return result;\n}\n\nvar id = 1;\nfunction nextId() {\n  return id++;\n}\n\n/**\n * Use this class to contribute to, and listen for changes to, the filter set\n * for the given group of widgets. Filter input controls should create one\n * `FilterHandle` and only call {@link FilterHandle#set}. Output widgets that\n * wish to displayed filtered data should create one `FilterHandle` and use\n * the {@link FilterHandle#filteredKeys} property and listen for change\n * events.\n *\n * If two (or more) `FilterHandle` instances in the same webpage share the\n * same group name, they will contribute to a single \"filter set\". Each\n * `FilterHandle` starts out with a `null` value, which means they take\n * nothing away from the set of data that should be shown. To make a\n * `FilterHandle` actually remove data from the filter set, set its value to\n * an array of keys which should be displayed. Crosstalk will aggregate the\n * various key arrays by finding their intersection; only keys that are\n * present in all non-null filter handles are considered part of the filter\n * set.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n *   null or undefined (or any other falsy value). This can be changed later\n *   via the {@link FilterHandle#setGroup} method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n *   the event object whenever an event is emitted.\n */\n\nvar FilterHandle = exports.FilterHandle = function () {\n  function FilterHandle(group, extraInfo) {\n    _classCallCheck(this, FilterHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The filterSet that we're tracking, if any. Can change over time.\n    this._filterSet = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._filterVar = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this._id = \"filter\" + nextId();\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this FilterHandle. If `set()` was\n   * previously called on this handle, switching groups will clear those keys\n   * from the old group's filter set. These keys will not be applied to the new\n   * group's filter set either. In other words, `setGroup()` effectively calls\n   * `clear()` before switching groups.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(FilterHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._filterVar) {\n        this._filterVar.off(\"change\", this._varOnChangeSub);\n        this.clear();\n        this._varOnChangeSub = null;\n        this._filterVar = null;\n        this._filterSet = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        group = (0, _group2.default)(group);\n        this._filterSet = getFilterSet(group);\n        this._filterVar = (0, _group2.default)(group).var(\"filter\");\n        var sub = this._filterVar.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Combine the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n    value: function _mergeExtraInfo(extraInfo) {\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Close the handle. This clears this handle's contribution to the filter set,\n     * and unsubscribes all event listeners.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.clear();\n      this.setGroup(null);\n    }\n\n    /**\n     * Clear this handle's contribution to the filter set.\n     *\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     * \n     * @fires FilterHandle#change\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.clear(this._id);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * Set this handle's contribution to the filter set. This array should consist\n     * of the keys of the rows that _should_ be displayed; any keys that are not\n     * present in the array will be considered _filtered out_. Note that multiple\n     * `FilterHandle` instances in the group may each contribute an array of keys,\n     * and only those keys that appear in _all_ of the arrays make it through the\n     * filter.\n     *\n     * @param {string[]} keys - Empty array, or array of keys. To clear the\n     *   filter, don't pass an empty array; instead, use the\n     *   {@link FilterHandle#clear} method.\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     * \n     * @fires FilterHandle#change\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(keys, extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.update(this._id, keys);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * @return {string[]|null} - Either: 1) an array of keys that made it through\n     *   all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n     *   is being applied (all data should be displayed).\n     */\n\n  }, {\n    key: \"on\",\n\n\n    /**\n     * Subscribe to events on this `FilterHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {FilterHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n     *   this subscription.\n     */\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancel event subscriptions created by {@link FilterHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|FilterHandle~listener} listener - Either the callback\n     *   function previously passed into {@link FilterHandle#on}, or the\n     *   string that was returned from {@link FilterHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n  }, {\n    key: \"_onChange\",\n    value: function _onChange(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * @callback FilterHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the filter set, or `null` if no filter set is active),\n     *   `oldValue` (the previous value of the filter set), and `sender` (the\n     *   `FilterHandle` instance that made the change).\n     */\n\n  }, {\n    key: \"filteredKeys\",\n    get: function get() {\n      return this._filterSet ? this._filterSet.value : null;\n    }\n  }]);\n\n  return FilterHandle;\n}();\n\n/**\n * @event FilterHandle#change\n * @type {object}\n * @property {object} value - The new value of the filter set, or `null`\n *   if no filter set is active.\n * @property {object} oldValue - The previous value of the filter set.\n * @property {FilterHandle} sender - The `FilterHandle` instance that\n *   changed the value.\n */\n\n},{\"./events\":1,\"./filterset\":3,\"./group\":4,\"./util\":11}],3:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _util = require(\"./util\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction naturalComparator(a, b) {\n  if (a === b) {\n    return 0;\n  } else if (a < b) {\n    return -1;\n  } else if (a > b) {\n    return 1;\n  }\n}\n\n/**\n * @private\n */\n\nvar FilterSet = function () {\n  function FilterSet() {\n    _classCallCheck(this, FilterSet);\n\n    this.reset();\n  }\n\n  _createClass(FilterSet, [{\n    key: \"reset\",\n    value: function reset() {\n      // Key: handle ID, Value: array of selected keys, or null\n      this._handles = {};\n      // Key: key string, Value: count of handles that include it\n      this._keys = {};\n      this._value = null;\n      this._activeHandles = 0;\n    }\n  }, {\n    key: \"update\",\n    value: function update(handleId, keys) {\n      if (keys !== null) {\n        keys = keys.slice(0); // clone before sorting\n        keys.sort(naturalComparator);\n      }\n\n      var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys),\n          added = _diffSortedLists.added,\n          removed = _diffSortedLists.removed;\n\n      this._handles[handleId] = keys;\n\n      for (var i = 0; i < added.length; i++) {\n        this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n      }\n      for (var _i = 0; _i < removed.length; _i++) {\n        this._keys[removed[_i]]--;\n      }\n\n      this._updateValue(keys);\n    }\n\n    /**\n     * @param {string[]} keys Sorted array of strings that indicate\n     * a superset of possible keys.\n     * @private\n     */\n\n  }, {\n    key: \"_updateValue\",\n    value: function _updateValue() {\n      var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys;\n\n      var handleCount = Object.keys(this._handles).length;\n      if (handleCount === 0) {\n        this._value = null;\n      } else {\n        this._value = [];\n        for (var i = 0; i < keys.length; i++) {\n          var count = this._keys[keys[i]];\n          if (count === handleCount) {\n            this._value.push(keys[i]);\n          }\n        }\n      }\n    }\n  }, {\n    key: \"clear\",\n    value: function clear(handleId) {\n      if (typeof this._handles[handleId] === \"undefined\") {\n        return;\n      }\n\n      var keys = this._handles[handleId];\n      if (!keys) {\n        keys = [];\n      }\n\n      for (var i = 0; i < keys.length; i++) {\n        this._keys[keys[i]]--;\n      }\n      delete this._handles[handleId];\n\n      this._updateValue();\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"_allKeys\",\n    get: function get() {\n      var allKeys = Object.keys(this._keys);\n      allKeys.sort(naturalComparator);\n      return allKeys;\n    }\n  }]);\n\n  return FilterSet;\n}();\n\nexports.default = FilterSet;\n\n},{\"./util\":11}],4:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.default = group;\n\nvar _var2 = require(\"./var\");\n\nvar _var3 = _interopRequireDefault(_var2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nvar groups = global.__crosstalk_groups;\n\nfunction group(groupName) {\n  if (groupName && typeof groupName === \"string\") {\n    if (!groups.hasOwnProperty(groupName)) {\n      groups[groupName] = new Group(groupName);\n    }\n    return groups[groupName];\n  } else if ((typeof groupName === \"undefined\" ? \"undefined\" : _typeof(groupName)) === \"object\" && groupName._vars && groupName.var) {\n    // Appears to already be a group object\n    return groupName;\n  } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === \"string\") {\n    return group(groupName[0]);\n  } else {\n    throw new Error(\"Invalid groupName argument\");\n  }\n}\n\nvar Group = function () {\n  function Group(name) {\n    _classCallCheck(this, Group);\n\n    this.name = name;\n    this._vars = {};\n  }\n\n  _createClass(Group, [{\n    key: \"var\",\n    value: function _var(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name);\n      return this._vars[name];\n    }\n  }, {\n    key: \"has\",\n    value: function has(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      return this._vars.hasOwnProperty(name);\n    }\n  }]);\n\n  return Group;\n}();\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./var\":12}],5:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _selection = require(\"./selection\");\n\nvar _filter = require(\"./filter\");\n\nvar _input = require(\"./input\");\n\nrequire(\"./input_selectize\");\n\nrequire(\"./input_checkboxgroup\");\n\nrequire(\"./input_slider\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar defaultGroup = (0, _group2.default)(\"default\");\n\nfunction var_(name) {\n  return defaultGroup.var(name);\n}\n\nfunction has(name) {\n  return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n  global.Shiny.addCustomMessageHandler(\"update-client-value\", function (message) {\n    if (typeof message.group === \"string\") {\n      (0, _group2.default)(message.group).var(message.name).set(message.value);\n    } else {\n      var_(message.name).set(message.value);\n    }\n  });\n}\n\nvar crosstalk = {\n  group: _group2.default,\n  var: var_,\n  has: has,\n  SelectionHandle: _selection.SelectionHandle,\n  FilterHandle: _filter.FilterHandle,\n  bind: _input.bind\n};\n\n/**\n * @namespace crosstalk\n */\nexports.default = crosstalk;\n\nglobal.crosstalk = crosstalk;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./group\":4,\"./input\":6,\"./input_checkboxgroup\":7,\"./input_selectize\":8,\"./input_slider\":9,\"./selection\":10}],6:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.register = register;\nexports.bind = bind;\nvar $ = global.jQuery;\n\nvar bindings = {};\n\nfunction register(reg) {\n  bindings[reg.className] = reg;\n  if (global.document && global.document.readyState !== \"complete\") {\n    $(function () {\n      bind();\n    });\n  } else if (global.document) {\n    setTimeout(bind, 100);\n  }\n}\n\nfunction bind() {\n  Object.keys(bindings).forEach(function (className) {\n    var binding = bindings[className];\n    $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function (i, el) {\n      bindInstance(binding, el);\n    });\n  });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n  return val.replace(/([!\"#$%&'()*+,./:;<=>?@[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n  var $el = $(el);\n  Object.keys(bindings).forEach(function (className) {\n    if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n      var binding = bindings[className];\n      bindInstance(binding, el);\n    }\n  });\n}\n\nfunction bindInstance(binding, el) {\n  var jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n  var data = JSON.parse(jsonEl[0].innerText);\n\n  var instance = binding.factory(el, data);\n  $(el).data(\"crosstalk-instance\", instance);\n  $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n  var inputBinding = new global.Shiny.InputBinding();\n  var _$ = global.jQuery;\n  _$.extend(inputBinding, {\n    find: function find(scope) {\n      return _$(scope).find(\".crosstalk-input\");\n    },\n    initialize: function initialize(el) {\n      if (!_$(el).hasClass(\"crosstalk-input-bound\")) {\n        bindEl(el);\n      }\n    },\n    getId: function getId(el) {\n      return el.id;\n    },\n    getValue: function getValue(el) {},\n    setValue: function setValue(el, value) {},\n    receiveMessage: function receiveMessage(el, data) {},\n    subscribe: function subscribe(el, callback) {\n      _$(el).data(\"crosstalk-instance\").resume();\n    },\n    unsubscribe: function unsubscribe(el) {\n      _$(el).data(\"crosstalk-instance\").suspend();\n    }\n  });\n  global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{}],7:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-checkboxgroup\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    var $el = $(el);\n    $el.on(\"change\", \"input[type='checkbox']\", function () {\n      var checked = $el.find(\"input[type='checkbox']:checked\");\n      if (checked.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        var keys = {};\n        checked.each(function () {\n          data.map[this.value].forEach(function (key) {\n            keys[key] = true;\n          });\n        });\n        var keyArray = Object.keys(keys);\n        keyArray.sort();\n        lastKnownKeys = keyArray;\n        ctHandle.set(keyArray);\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],8:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-select\",\n\n  factory: function factory(el, data) {\n    /*\n     * items: {value: [...], label: [...]}\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n\n    var first = [{ value: \"\", label: \"(All)\" }];\n    var items = util.dataframeToD3(data.items);\n    var opts = {\n      options: first.concat(items),\n      valueField: \"value\",\n      labelField: \"label\",\n      searchField: \"label\"\n    };\n\n    var select = $(el).find(\"select\")[0];\n\n    var selectize = $(select).selectize(opts)[0].selectize;\n\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    selectize.on(\"change\", function () {\n      if (selectize.items.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        var keys = {};\n        selectize.items.forEach(function (group) {\n          data.map[group].forEach(function (key) {\n            keys[key] = true;\n          });\n        });\n        var keyArray = Object.keys(keys);\n        keyArray.sort();\n        lastKnownKeys = keyArray;\n        ctHandle.set(keyArray);\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6,\"./util\":11}],9:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\nvar strftime = global.strftime;\n\ninput.register({\n  className: \"crosstalk-input-slider\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var opts = {};\n    var $el = $(el).find(\"input\");\n    var dataType = $el.data(\"data-type\");\n    var timeFormat = $el.data(\"time-format\");\n    var round = $el.data(\"round\");\n    var timeFormatter = void 0;\n\n    // Set up formatting functions\n    if (dataType === \"date\") {\n      timeFormatter = strftime.utc();\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"datetime\") {\n      var timezone = $el.data(\"timezone\");\n      if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime;\n\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"number\") {\n      if (typeof round !== \"undefined\") opts.prettify = function (num) {\n        var factor = Math.pow(10, round);\n        return Math.round(num * factor) / factor;\n      };\n    }\n\n    $el.ionRangeSlider(opts);\n\n    function getValue() {\n      var result = $el.data(\"ionRangeSlider\").result;\n\n      // Function for converting numeric value from slider to appropriate type.\n      var convert = void 0;\n      var dataType = $el.data(\"data-type\");\n      if (dataType === \"date\") {\n        convert = function convert(val) {\n          return formatDateUTC(new Date(+val));\n        };\n      } else if (dataType === \"datetime\") {\n        convert = function convert(val) {\n          // Convert ms to s\n          return +val / 1000;\n        };\n      } else {\n        convert = function convert(val) {\n          return +val;\n        };\n      }\n\n      if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n        return [convert(result.from), convert(result.to)];\n      } else {\n        return convert(result.from);\n      }\n    }\n\n    var lastKnownKeys = null;\n\n    $el.on(\"change.crosstalkSliderInput\", function (event) {\n      if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n        var _getValue = getValue(),\n            _getValue2 = _slicedToArray(_getValue, 2),\n            from = _getValue2[0],\n            to = _getValue2[1];\n\n        var keys = [];\n        for (var i = 0; i < data.values.length; i++) {\n          var val = data.values[i];\n          if (val >= from && val <= to) {\n            keys.push(data.keys[i]);\n          }\n        }\n        keys.sort();\n        ctHandle.set(keys);\n        lastKnownKeys = keys;\n      }\n    });\n\n    // let $el = $(el);\n    // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n    //   let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n    //   if (checked.length === 0) {\n    //     ctHandle.clear();\n    //   } else {\n    //     let keys = {};\n    //     checked.each(function() {\n    //       data.map[this.value].forEach(function(key) {\n    //         keys[key] = true;\n    //       });\n    //     });\n    //     let keyArray = Object.keys(keys);\n    //     keyArray.sort();\n    //     ctHandle.set(keyArray);\n    //   }\n    // });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n  var str = n.toString();\n  while (str.length < digits) {\n    str = \"0\" + str;\n  }return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n  if (date instanceof Date) {\n    return date.getUTCFullYear() + \"-\" + padZeros(date.getUTCMonth() + 1, 2) + \"-\" + padZeros(date.getUTCDate(), 2);\n  } else {\n    return null;\n  }\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],10:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.SelectionHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n/**\n * Use this class to read and write (and listen for changes to) the selection\n * for a Crosstalk group. This is intended to be used for linked brushing.\n *\n * If two (or more) `SelectionHandle` instances in the same webpage share the\n * same group name, they will share the same state. Setting the selection using\n * one `SelectionHandle` instance will result in the `value` property instantly\n * changing across the others, and `\"change\"` event listeners on all instances\n * (including the one that initiated the sending) will fire.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n *   null or undefined (or any other falsy value). This can be changed later\n *   via the [SelectionHandle#setGroup](#setGroup) method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n *   the event object whenever an event is emitted.\n */\nvar SelectionHandle = exports.SelectionHandle = function () {\n  function SelectionHandle() {\n    var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n    var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n\n    _classCallCheck(this, SelectionHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._var = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this SelectionHandle. The group\n   * being switched away from (if any) will not have its selection value\n   * modified as a result of calling `setGroup`, even if this handle was the\n   * most recent handle to set the selection of the group.\n   *\n   * The group being switched to (if any) will also not have its selection value\n   * modified as a result of calling `setGroup`. If you want to set the\n   * selection value of the new group, call `set` explicitly.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(SelectionHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._var) {\n        this._var.off(\"change\", this._varOnChangeSub);\n        this._var = null;\n        this._varOnChangeSub = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        this._var = (0, _group2.default)(group).var(\"selection\");\n        var sub = this._var.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Retrieves the current selection for the group represented by this\n     * `SelectionHandle`.\n     *\n     * - If no selection is active, then this value will be falsy.\n     * - If a selection is active, but no data points are selected, then this\n     *   value will be an empty array.\n     * - If a selection is active, and data points are selected, then the keys\n     *   of the selected data points will be present in the array.\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n\n\n    /**\n     * Combines the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n    value: function _mergeExtraInfo(extraInfo) {\n      // Important incidental effect: shallow clone is returned\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n     *   {@link SelectionHandle#value}).\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(selectedKeys, extraInfo) {\n      if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any that were passed\n     *   into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Subscribes to events on this `SelectionHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {SelectionHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n     *   this subscription.\n     */\n\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancels event subscriptions created by {@link SelectionHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|SelectionHandle~listener} listener - Either the callback\n     *   function previously passed into {@link SelectionHandle#on}, or the\n     *   string that was returned from {@link SelectionHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n\n    /**\n     * Shuts down the `SelectionHandle` object.\n     *\n     * Removes all event listeners that were added through this handle.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.setGroup(null);\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._var ? this._var.get() : null;\n    }\n  }]);\n\n  return SelectionHandle;\n}();\n\n/**\n * @callback SelectionHandle~listener\n * @param {Object} event - An object containing details of the event. For\n *   `\"change\"` events, this includes the properties `value` (the new\n *   value of the selection, or `undefined` if no selection is active),\n *   `oldValue` (the previous value of the selection), and `sender` (the\n *   `SelectionHandle` instance that made the change).\n */\n\n/**\n * @event SelectionHandle#change\n * @type {object}\n * @property {object} value - The new value of the selection, or `undefined`\n *   if no selection is active.\n * @property {object} oldValue - The previous value of the selection.\n * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n *   changed the value.\n */\n\n},{\"./events\":1,\"./group\":4,\"./util\":11}],11:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.extend = extend;\nexports.checkSorted = checkSorted;\nexports.diffSortedLists = diffSortedLists;\nexports.dataframeToD3 = dataframeToD3;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction extend(target) {\n  for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n    sources[_key - 1] = arguments[_key];\n  }\n\n  for (var i = 0; i < sources.length; i++) {\n    var src = sources[i];\n    if (typeof src === \"undefined\" || src === null) continue;\n\n    for (var key in src) {\n      if (src.hasOwnProperty(key)) {\n        target[key] = src[key];\n      }\n    }\n  }\n  return target;\n}\n\nfunction checkSorted(list) {\n  for (var i = 1; i < list.length; i++) {\n    if (list[i] <= list[i - 1]) {\n      throw new Error(\"List is not sorted or contains duplicate\");\n    }\n  }\n}\n\nfunction diffSortedLists(a, b) {\n  var i_a = 0;\n  var i_b = 0;\n\n  if (!a) a = [];\n  if (!b) b = [];\n\n  var a_only = [];\n  var b_only = [];\n\n  checkSorted(a);\n  checkSorted(b);\n\n  while (i_a < a.length && i_b < b.length) {\n    if (a[i_a] === b[i_b]) {\n      i_a++;\n      i_b++;\n    } else if (a[i_a] < b[i_b]) {\n      a_only.push(a[i_a++]);\n    } else {\n      b_only.push(b[i_b++]);\n    }\n  }\n\n  if (i_a < a.length) a_only = a_only.concat(a.slice(i_a));\n  if (i_b < b.length) b_only = b_only.concat(b.slice(i_b));\n  return {\n    removed: a_only,\n    added: b_only\n  };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nfunction dataframeToD3(df) {\n  var names = [];\n  var length = void 0;\n  for (var name in df) {\n    if (df.hasOwnProperty(name)) names.push(name);\n    if (_typeof(df[name]) !== \"object\" || typeof df[name].length === \"undefined\") {\n      throw new Error(\"All fields must be arrays\");\n    } else if (typeof length !== \"undefined\" && length !== df[name].length) {\n      throw new Error(\"All fields must be arrays of the same length\");\n    }\n    length = df[name].length;\n  }\n  var results = [];\n  var item = void 0;\n  for (var row = 0; row < length; row++) {\n    item = {};\n    for (var col = 0; col < names.length; col++) {\n      item[names[col]] = df[names[col]][row];\n    }\n    results.push(item);\n  }\n  return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\n\nvar SubscriptionTracker = exports.SubscriptionTracker = function () {\n  function SubscriptionTracker(emitter) {\n    _classCallCheck(this, SubscriptionTracker);\n\n    this._emitter = emitter;\n    this._subs = {};\n  }\n\n  _createClass(SubscriptionTracker, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var sub = this._emitter.on(eventType, listener);\n      this._subs[sub] = eventType;\n      return sub;\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var sub = this._emitter.off(eventType, listener);\n      if (sub) {\n        delete this._subs[sub];\n      }\n      return sub;\n    }\n  }, {\n    key: \"removeAllListeners\",\n    value: function removeAllListeners() {\n      var _this = this;\n\n      var current_subs = this._subs;\n      this._subs = {};\n      Object.keys(current_subs).forEach(function (sub) {\n        _this._emitter.off(current_subs[sub], sub);\n      });\n    }\n  }]);\n\n  return SubscriptionTracker;\n}();\n\n},{}],12:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Var = function () {\n  function Var(group, name, /*optional*/value) {\n    _classCallCheck(this, Var);\n\n    this._group = group;\n    this._name = name;\n    this._value = value;\n    this._events = new _events2.default();\n  }\n\n  _createClass(Var, [{\n    key: \"get\",\n    value: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"set\",\n    value: function set(value, /*optional*/event) {\n      if (this._value === value) {\n        // Do nothing; the value hasn't changed\n        return;\n      }\n      var oldValue = this._value;\n      this._value = value;\n      // Alert JavaScript listeners that the value has changed\n      var evt = {};\n      if (event && (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\") {\n        for (var k in event) {\n          if (event.hasOwnProperty(k)) evt[k] = event[k];\n        }\n      }\n      evt.oldValue = oldValue;\n      evt.value = value;\n      this._events.trigger(\"change\", evt, this);\n\n      // TODO: Make this extensible, to let arbitrary back-ends know that\n      // something has changed\n      if (global.Shiny && global.Shiny.onInputChange) {\n        global.Shiny.onInputChange(\".clientValue-\" + (this._group.name !== null ? this._group.name + \"-\" : \"\") + this._name, typeof value === \"undefined\" ? null : value);\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._events.on(eventType, listener);\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._events.off(eventType, listener);\n    }\n  }]);\n\n  return Var;\n}();\n\nexports.default = Var;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./events\":1}]},{},[5])\n//# sourceMappingURL=crosstalk.js.map\n"
  },
  {
    "path": "docs/images/02_bellCurve/lib/crosstalk-1.2.0/scss/crosstalk.scss",
    "content": "/* Adjust margins outwards, so column contents line up with the edges of the\n   parent of container-fluid. */\n.container-fluid.crosstalk-bscols {\n  margin-left: -30px;\n  margin-right: -30px;\n  white-space: normal;\n}\n\n/* But don't adjust the margins outwards if we're directly under the body,\n   i.e. we were the top-level of something at the console. */\nbody > .container-fluid.crosstalk-bscols {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n  display: inline-block;\n  padding-right: 12px;\n  vertical-align: top;\n}\n\n@media only screen and (max-width:480px) {\n  .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n    display: block;\n    padding-right: inherit;\n  }\n}\n\n/* Relevant BS3 styles to make filter_checkbox() look reasonable without Bootstrap */\n.crosstalk-input {\n  margin-bottom: 15px; /* a la .form-group */\n  .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  input[type=\"checkbox\"] {\n    margin: 4px 0 0;\n    margin-top: 1px;\n    line-height: normal;\n  }\n  .checkbox {\n    position: relative;\n    display: block;\n    margin-top: 10px;\n    margin-bottom: 10px;\n  }\n  .checkbox > label{\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: 400;\n    cursor: pointer;\n  }\n  .checkbox input[type=\"checkbox\"],\n  .checkbox-inline input[type=\"checkbox\"] {\n    position: absolute;\n    margin-top: 2px;\n    margin-left: -20px;\n  }\n  .checkbox + .checkbox {\n    margin-top: -5px;\n  }\n  .checkbox-inline {\n    position: relative;\n    display: inline-block;\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: 400;\n    vertical-align: middle;\n    cursor: pointer;\n  }\n  .checkbox-inline + .checkbox-inline {\n    margin-top: 0;\n    margin-left: 10px;\n  }\n}\n"
  },
  {
    "path": "docs/images/02_bellCurve/lib/htmlwidgets-1.3/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = eval(\"(\" + task + \")\");\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n  // Wait until after the document has loaded to render the widgets.\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      window.HTMLWidgets.staticRender();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        window.HTMLWidgets.staticRender();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = eval(\"(\" + o[part] + \")\");\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "docs/images/02_bellCurve/lib/htmlwidgets-1.5.1/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = tryEval(task);\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  // Attempt eval() both with and without enclosing in parentheses.\n  // Note that enclosing coerces a function declaration into\n  // an expression that eval() can parse\n  // (otherwise, a SyntaxError is thrown)\n  function tryEval(code) {\n    var result = null;\n    try {\n      result = eval(code);\n    } catch(error) {\n      if (!error instanceof SyntaxError) {\n        throw error;\n      }\n      try {\n        result = eval(\"(\" + code + \")\");\n      } catch(e) {\n        if (e instanceof SyntaxError) {\n          throw error;\n        } else {\n          throw e;\n        }\n      }\n    }\n    return result;\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n\n  function has_jQuery3() {\n    if (!window.jQuery) {\n      return false;\n    }\n    var $version = window.jQuery.fn.jquery;\n    var $major_version = parseInt($version.split(\".\")[0]);\n    return $major_version >= 3;\n  }\n\n  /*\n  / Shiny 1.4 bumped jQuery from 1.x to 3.x which means jQuery's\n  / on-ready handler (i.e., $(fn)) is now asyncronous (i.e., it now\n  / really means $(setTimeout(fn)).\n  / https://jquery.com/upgrade-guide/3.0/#breaking-change-document-ready-handlers-are-now-asynchronous\n  /\n  / Since Shiny uses $() to schedule initShiny, shiny>=1.4 calls initShiny\n  / one tick later than it did before, which means staticRender() is\n  / called renderValue() earlier than (advanced) widget authors might be expecting.\n  / https://github.com/rstudio/shiny/issues/2630\n  /\n  / For a concrete example, leaflet has some methods (e.g., updateBounds)\n  / which reference Shiny methods registered in initShiny (e.g., setInputValue).\n  / Since leaflet is privy to this life-cycle, it knows to use setTimeout() to\n  / delay execution of those methods (until Shiny methods are ready)\n  / https://github.com/rstudio/leaflet/blob/18ec981/javascript/src/index.js#L266-L268\n  /\n  / Ideally widget authors wouldn't need to use this setTimeout() hack that\n  / leaflet uses to call Shiny methods on a staticRender(). In the long run,\n  / the logic initShiny should be broken up so that method registration happens\n  / right away, but binding happens later.\n  */\n  function maybeStaticRenderLater() {\n    if (shinyMode && has_jQuery3()) {\n      window.jQuery(window.HTMLWidgets.staticRender);\n    } else {\n      window.HTMLWidgets.staticRender();\n    }\n  }\n\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      maybeStaticRenderLater();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        maybeStaticRenderLater();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = tryEval(o[part]);\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "docs/images/02_bellCurve/lib/htmlwidgets-1.5.4/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = tryEval(task);\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  // Attempt eval() both with and without enclosing in parentheses.\n  // Note that enclosing coerces a function declaration into\n  // an expression that eval() can parse\n  // (otherwise, a SyntaxError is thrown)\n  function tryEval(code) {\n    var result = null;\n    try {\n      result = eval(\"(\" + code + \")\");\n    } catch(error) {\n      if (!(error instanceof SyntaxError)) {\n        throw error;\n      }\n      try {\n        result = eval(code);\n      } catch(e) {\n        if (e instanceof SyntaxError) {\n          throw error;\n        } else {\n          throw e;\n        }\n      }\n    }\n    return result;\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n\n  function has_jQuery3() {\n    if (!window.jQuery) {\n      return false;\n    }\n    var $version = window.jQuery.fn.jquery;\n    var $major_version = parseInt($version.split(\".\")[0]);\n    return $major_version >= 3;\n  }\n\n  /*\n  / Shiny 1.4 bumped jQuery from 1.x to 3.x which means jQuery's\n  / on-ready handler (i.e., $(fn)) is now asyncronous (i.e., it now\n  / really means $(setTimeout(fn)).\n  / https://jquery.com/upgrade-guide/3.0/#breaking-change-document-ready-handlers-are-now-asynchronous\n  /\n  / Since Shiny uses $() to schedule initShiny, shiny>=1.4 calls initShiny\n  / one tick later than it did before, which means staticRender() is\n  / called renderValue() earlier than (advanced) widget authors might be expecting.\n  / https://github.com/rstudio/shiny/issues/2630\n  /\n  / For a concrete example, leaflet has some methods (e.g., updateBounds)\n  / which reference Shiny methods registered in initShiny (e.g., setInputValue).\n  / Since leaflet is privy to this life-cycle, it knows to use setTimeout() to\n  / delay execution of those methods (until Shiny methods are ready)\n  / https://github.com/rstudio/leaflet/blob/18ec981/javascript/src/index.js#L266-L268\n  /\n  / Ideally widget authors wouldn't need to use this setTimeout() hack that\n  / leaflet uses to call Shiny methods on a staticRender(). In the long run,\n  / the logic initShiny should be broken up so that method registration happens\n  / right away, but binding happens later.\n  */\n  function maybeStaticRenderLater() {\n    if (shinyMode && has_jQuery3()) {\n      window.jQuery(window.HTMLWidgets.staticRender);\n    } else {\n      window.HTMLWidgets.staticRender();\n    }\n  }\n\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      maybeStaticRenderLater();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        maybeStaticRenderLater();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = tryEval(o[part]);\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "docs/images/02_bellCurve/lib/jquery-1.11.3/jquery-AUTHORS.txt",
    "content": "Authors ordered by first contribution.\n\nJohn Resig <jeresig@gmail.com>\nGilles van den Hoven <gilles0181@gmail.com>\nMichael Geary <mike@geary.com>\nStefan Petre <stefan.petre@gmail.com>\nYehuda Katz <wycats@gmail.com>\nCorey Jewett <cj@syntheticplayground.com>\nKlaus Hartl <klaus.hartl@googlemail.com>\nFranck Marcia <franck.marcia@gmail.com>\nJörn Zaefferer <joern.zaefferer@gmail.com>\nPaul Bakaus <paul.bakaus@googlemail.com>\nBrandon Aaron <brandon.aaron@gmail.com>\nMike Alsup <malsup@gmail.com>\nDave Methvin <dave.methvin@gmail.com>\nEd Engelhardt <edengelhardt@gmail.com>\nSean Catchpole <littlecooldude@gmail.com>\nPaul Mclanahan <pmclanahan@gmail.com>\nDavid Serduke <davidserduke@gmail.com>\nRichard D. Worth <rdworth@gmail.com>\nScott González <scott.gonzalez@gmail.com>\nAriel Flesler <aflesler@gmail.com>\nJon Evans <jon@springyweb.com>\nTJ Holowaychuk <tj@vision-media.ca>\nMichael Bensoussan <mickey@seesmic.com>\nRobert Katić <robert.katic@gmail.com>\nLouis-Rémi Babé <lrbabe@gmail.com>\nEarle Castledine <mrspeaker@gmail.com>\nDamian Janowski <damian.janowski@gmail.com>\nRich Dougherty <rich@rd.gen.nz>\nKim Dalsgaard <kim@kimdalsgaard.com>\nAndrea Giammarchi <andrea.giammarchi@gmail.com>\nMark Gibson <jollytoad@gmail.com>\nKarl Swedberg <kswedberg@gmail.com>\nJustin Meyer <justinbmeyer@gmail.com>\nBen Alman <cowboy@rj3.net>\nJames Padolsey <cla@padolsey.net>\nDavid Petersen <public@petersendidit.com>\nBatiste Bieler <batiste@gmail.com>\nAlexander Farkas <info@corrupt-system.de>\nRick Waldron <waldron.rick@gmail.com>\nFilipe Fortes <filipe@fortes.com>\nNeeraj Singh <neerajdotname@gmail.com>\nPaul Irish <paul.irish@gmail.com>\nIraê Carvalho <irae@irae.pro.br>\nMatt Curry <matt@pseudocoder.com>\nMichael Monteleone <michael@michaelmonteleone.net>\nNoah Sloan <noah.sloan@gmail.com>\nTom Viner <github@viner.tv>\nDouglas Neiner <doug@pixelgraphics.us>\nAdam J. Sontag <ajpiano@ajpiano.com>\nDave Reed <dareed@microsoft.com>\nRalph Whitbeck <ralph.whitbeck@gmail.com>\nCarl Fürstenberg <azatoth@gmail.com>\nJacob Wright <jacwright@gmail.com>\nJ. Ryan Stinnett <jryans@gmail.com>\nunknown <Igen005@.upcorp.ad.uprr.com>\ntemp01 <temp01irc@gmail.com>\nHeungsub Lee <h@subl.ee>\nColin Snover <colin@alpha.zetafleet.com>\nRyan W Tenney <ryan@10e.us>\nPinhook <contact@pinhooklabs.com>\nRon Otten <r.j.g.otten@gmail.com>\nJephte Clain <Jephte.Clain@univ-reunion.fr>\nAnton Matzneller <obhvsbypqghgc@gmail.com>\nAlex Sexton <AlexSexton@gmail.com>\nDan Heberden <danheberden@gmail.com>\nHenri Wiechers <hwiechers@gmail.com>\nRussell Holbrook <russell.holbrook@patch.com>\nJulian Aubourg <aubourg.julian@gmail.com>\nGianni Alessandro Chiappetta <gianni@runlevel6.org>\nScott Jehl <scott@scottjehl.com>\nJames Burke <jrburke@gmail.com>\nJonas Pfenniger <jonas@pfenniger.name>\nXavi Ramirez <xavi.rmz@gmail.com>\nJared Grippe <jared@deadlyicon.com>\nSylvester Keil <sylvester@keil.or.at>\nBrandon Sterne <bsterne@mozilla.com>\nMathias Bynens <mathias@qiwi.be>\nTimmy Willison <timmywillisn@gmail.com>\nCorey Frang <gnarf@gnarf.net>\nDigitalxero <digitalxero>\nAnton Kovalyov <anton@kovalyov.net>\nDavid Murdoch <musicisair@yahoo.com>\nJosh Varner <josh.varner@gmail.com>\nCharles McNulty <cmcnulty@kznf.com>\nJordan Boesch <jboesch26@gmail.com>\nJess Thrysoee <jess@thrysoee.dk>\nMichael Murray <m@murz.net>\nLee Carpenter <elcarpie@gmail.com>\nAlexis Abril <me@alexisabril.com>\nRob Morgan <robbym@gmail.com>\nJohn Firebaugh <john_firebaugh@bigfix.com>\nSam Bisbee <sam@sbisbee.com>\nGilmore Davidson <gilmoreorless@gmail.com>\nBrian Brennan <me@brianlovesthings.com>\nXavier Montillet <xavierm02.net@gmail.com>\nDaniel Pihlstrom <sciolist.se@gmail.com>\nSahab Yazdani <sahab.yazdani+github@gmail.com>\navaly <github-com@agachi.name>\nScott Hughes <hi@scott-hughes.me>\nMike Sherov <mike.sherov@gmail.com>\nGreg Hazel <ghazel@gmail.com>\nSchalk Neethling <schalk@ossreleasefeed.com>\nDenis Knauf <Denis.Knauf@gmail.com>\nTimo Tijhof <krinklemail@gmail.com>\nSteen Nielsen <swinedk@gmail.com>\nAnton Ryzhov <anton@ryzhov.me>\nShi Chuan <shichuanr@gmail.com>\nBerker Peksag <berker.peksag@gmail.com>\nToby Brain <tobyb@freshview.com>\nMatt Mueller <mattmuelle@gmail.com>\nJustin <drakefjustin@gmail.com>\nDaniel Herman <daniel.c.herman@gmail.com>\nOleg Gaidarenko <markelog@gmail.com>\nRichard Gibson <richard.gibson@gmail.com>\nRafaël Blais Masson <rafbmasson@gmail.com>\ncmc3cn <59194618@qq.com>\nJoe Presbrey <presbrey@gmail.com>\nSindre Sorhus <sindresorhus@gmail.com>\nArne de Bree <arne@bukkie.nl>\nVladislav Zarakovsky <vlad.zar@gmail.com>\nAndrew E Monat <amonat@gmail.com>\nOskari <admin@o-programs.com>\nJoao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>\ntsinha <tsinha@Anthonys-MacBook-Pro.local>\nMatt Farmer <matt@frmr.me>\nTrey Hunner <treyhunner@gmail.com>\nJason Moon <jmoon@socialcast.com>\nJeffery To <jeffery.to@gmail.com>\nKris Borchers <kris.borchers@gmail.com>\nVladimir Zhuravlev <private.face@gmail.com>\nJacob Thornton <jacobthornton@gmail.com>\nChad Killingsworth <chadkillingsworth@missouristate.edu>\nNowres Rafid <nowres.rafed@gmail.com>\nDavid Benjamin <davidben@mit.edu>\nUri Gilad <antishok@gmail.com>\nChris Faulkner <thefaulkner@gmail.com>\nElijah Manor <elijah.manor@gmail.com>\nDaniel Chatfield <chatfielddaniel@gmail.com>\nNikita Govorov <nikita.govorov@gmail.com>\nWesley Walser <wwalser@atlassian.com>\nMike Pennisi <mike@mikepennisi.com>\nMarkus Staab <markus.staab@redaxo.de>\nDave Riddle <david@joyvuu.com>\nCallum Macrae <callum@lynxphp.com>\nBenjamin Truyman <bentruyman@gmail.com>\nJames Huston <james@jameshuston.net>\nErick Ruiz de Chávez <erickrdch@gmail.com>\nDavid Bonner <dbonner@cogolabs.com>\nAkintayo Akinwunmi <aakinwunmi@judge.com>\nMORGAN <morgan@morgangraphics.com>\nIsmail Khair <ismail.khair@gmail.com>\nCarl Danley <carldanley@gmail.com>\nMike Petrovich <michael.c.petrovich@gmail.com>\nGreg Lavallee <greglavallee@wapolabs.com>\nDaniel Gálvez <dgalvez@editablething.com>\nSai Lung Wong <sai.wong@huffingtonpost.com>\nTom H Fuertes <TomFuertes@gmail.com>\nRoland Eckl <eckl.roland@googlemail.com>\nJay Merrifield <fracmak@gmail.com>\nAllen J Schmidt Jr <cobrasoft@gmail.com>\nJonathan Sampson <jjdsampson@gmail.com>\nMarcel Greter <marcel.greter@ocbnet.ch>\nMatthias Jäggli <matthias.jaeggli@gmail.com>\nDavid Fox <dfoxinator@gmail.com>\nYiming He <yiminghe@gmail.com>\nDevin Cooper <cooper.semantics@gmail.com>\nPaul Ramos <paul.b.ramos@gmail.com>\nRod Vagg <rod@vagg.org>\nBennett Sorbo <bsorbo@gmail.com>\nSebastian Burkhard <sebi.burkhard@gmail.com>\nnanto <nanto@moon.email.ne.jp>\nDanil Somsikov <danilasomsikov@gmail.com>\nRyunosuke SATO <tricknotes.rs@gmail.com>\nJean Boussier <jean.boussier@gmail.com>\nAdam Coulombe <me@adam.co>\nAndrew Plummer <plummer.andrew@gmail.com>\nMark Raddatz <mraddatz@gmail.com>\nDmitry Gusev <dmitry.gusev@gmail.com>\nMichał Gołębiowski <m.goleb@gmail.com>\nNguyen Phuc Lam <ruado1987@gmail.com>\nTom H Fuertes <tomfuertes@gmail.com>\nBrandon Johnson <bjohn465+github@gmail.com>\nJason Bedard <jason+jquery@jbedard.ca>\nKyle Robinson Young <kyle@dontkry.com>\nRenato Oliveira dos Santos <ros3@cin.ufpe.br>\nChris Talkington <chris@talkingtontech.com>\nEddie Monge <eddie@eddiemonge.com>\nTerry Jones <terry@jon.es>\nJason Merino <jasonmerino@gmail.com>\nJeremy Dunck <jdunck@gmail.com>\nChris Price <price.c@gmail.com>\nAmey Sakhadeo <me@ameyms.com>\nAnthony Ryan <anthonyryan1@gmail.com>\nDominik D. Geyer <dominik.geyer@gmail.com>\nGeorge Kats <katsgeorgeek@gmail.com>\nLihan Li <frankieteardrop@gmail.com>\nRonny Springer <springer.ronny@gmail.com>\nMarian Sollmann <marian.sollmann@cargomedia.ch>\nCorey Frang <gnarf37@gmail.com>\nChris Antaki <ChrisAntaki@gmail.com>\nNoah Hamann <njhamann@gmail.com>\nDavid Hong <d.hong@me.com>\nJakob Stoeck <jakob@pokermania.de>\nChristopher Jones <christopherjonesqed@gmail.com>\nForbes Lindesay <forbes@lindesay.co.uk>\nJohn Paul <john@johnkpaul.com>\nS. Andrew Sheppard <andrew@wq.io>\nLeonardo Balter <leonardo.balter@gmail.com>\nRoman Reiß <me@silverwind.io>\nBenjy Cui <benjytrys@gmail.com>\nRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>\nJohn Hoven <hovenj@gmail.com>\nChristian Kosmowski <ksmwsk@gmail.com>\nLiang Peng <poppinlp@gmail.com>\nTJ VanToll <tj.vantoll@gmail.com>\n"
  },
  {
    "path": "docs/images/02_bellCurve/lib/jquery-1.11.3/jquery.js",
    "content": "/*!\n * jQuery JavaScript Library v1.11.3\n * http://jquery.com/\n *\n * Includes Sizzle.js\n * http://sizzlejs.com/\n *\n * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2015-04-28T16:19Z\n */\n\n(function( global, factory ) {\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\t\t// For CommonJS and CommonJS-like environments where a proper window is present,\n\t\t// execute the factory and get jQuery\n\t\t// For environments that do not inherently posses a window with a document\n\t\t// (such as Node.js), expose a jQuery-making factory as module.exports\n\t\t// This accentuates the need for the creation of a real window\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n}(typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Can't do this because several apps including ASP.NET trace\n// the stack via arguments.caller.callee and Firefox dies if\n// you try to trace through \"use strict\" call chains. (#13335)\n// Support: Firefox 18+\n//\n\nvar deletedIds = [];\n\nvar slice = deletedIds.slice;\n\nvar concat = deletedIds.concat;\n\nvar push = deletedIds.push;\n\nvar indexOf = deletedIds.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar support = {};\n\n\n\nvar\n\tversion = \"1.11.3\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t},\n\n\t// Support: Android<4.1, IE<9\n\t// Make sure we trim BOM and NBSP\n\trtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g,\n\n\t// Matches dashed string for camelizing\n\trmsPrefix = /^-ms-/,\n\trdashAlpha = /-([\\da-z])/gi,\n\n\t// Used by jQuery.camelCase as callback to replace()\n\tfcamelCase = function( all, letter ) {\n\t\treturn letter.toUpperCase();\n\t};\n\njQuery.fn = jQuery.prototype = {\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// Start with an empty selector\n\tselector: \"\",\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\t\treturn num != null ?\n\n\t\t\t// Return just the one element from the set\n\t\t\t( num < 0 ? this[ num + this.length ] : this[ num ] ) :\n\n\t\t\t// Return all the elements in a clean array\n\t\t\tslice.call( this );\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\t\tret.context = this.context;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\t// (You can seed the arguments with an array of args, but this is\n\t// only used internally.)\n\teach: function( callback, args ) {\n\t\treturn jQuery.each( this, callback, args );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map(this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t}));\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor(null);\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: deletedIds.sort,\n\tsplice: deletedIds.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar src, copyIsArray, copy, name, options, clone,\n\t\ttarget = arguments[0] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !jQuery.isFunction(target) ) {\n\t\ttarget = {};\n\t}\n\n\t// extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\t\t// Only deal with non-null/undefined values\n\t\tif ( (options = arguments[ i ]) != null ) {\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tsrc = target[ name ];\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {\n\t\t\t\t\tif ( copyIsArray ) {\n\t\t\t\t\t\tcopyIsArray = false;\n\t\t\t\t\t\tclone = src && jQuery.isArray(src) ? src : [];\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src && jQuery.isPlainObject(src) ? src : {};\n\t\t\t\t\t}\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend({\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\t// See test/unit/core.js for details concerning isFunction.\n\t// Since version 1.3, DOM methods and functions like alert\n\t// aren't supported. They return false on IE (#2968).\n\tisFunction: function( obj ) {\n\t\treturn jQuery.type(obj) === \"function\";\n\t},\n\n\tisArray: Array.isArray || function( obj ) {\n\t\treturn jQuery.type(obj) === \"array\";\n\t},\n\n\tisWindow: function( obj ) {\n\t\t/* jshint eqeqeq: false */\n\t\treturn obj != null && obj == obj.window;\n\t},\n\n\tisNumeric: function( obj ) {\n\t\t// parseFloat NaNs numeric-cast false positives (null|true|false|\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t// adding 1 corrects loss of precision from parseFloat (#15100)\n\t\treturn !jQuery.isArray( obj ) && (obj - parseFloat( obj ) + 1) >= 0;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\tisPlainObject: function( obj ) {\n\t\tvar key;\n\n\t\t// Must be an Object.\n\t\t// Because of IE, we also have to check the presence of the constructor property.\n\t\t// Make sure that DOM nodes and window objects don't pass through, as well\n\t\tif ( !obj || jQuery.type(obj) !== \"object\" || obj.nodeType || jQuery.isWindow( obj ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\ttry {\n\t\t\t// Not own constructor property must be Object\n\t\t\tif ( obj.constructor &&\n\t\t\t\t!hasOwn.call(obj, \"constructor\") &&\n\t\t\t\t!hasOwn.call(obj.constructor.prototype, \"isPrototypeOf\") ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\t// IE8,9 Will throw exceptions on certain host objects #9897\n\t\t\treturn false;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Handle iteration over inherited properties before own properties.\n\t\tif ( support.ownLast ) {\n\t\t\tfor ( key in obj ) {\n\t\t\t\treturn hasOwn.call( obj, key );\n\t\t\t}\n\t\t}\n\n\t\t// Own properties are enumerated firstly, so to speed up,\n\t\t// if last one is own, then all properties are own.\n\t\tfor ( key in obj ) {}\n\n\t\treturn key === undefined || hasOwn.call( obj, key );\n\t},\n\n\ttype: function( obj ) {\n\t\tif ( obj == null ) {\n\t\t\treturn obj + \"\";\n\t\t}\n\t\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\t\tclass2type[ toString.call(obj) ] || \"object\" :\n\t\t\ttypeof obj;\n\t},\n\n\t// Evaluates a script in a global context\n\t// Workarounds based on findings by Jim Driscoll\n\t// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context\n\tglobalEval: function( data ) {\n\t\tif ( data && jQuery.trim( data ) ) {\n\t\t\t// We use execScript on Internet Explorer\n\t\t\t// We use an anonymous function so that context is window\n\t\t\t// rather than jQuery in Firefox\n\t\t\t( window.execScript || function( data ) {\n\t\t\t\twindow[ \"eval\" ].call( window, data );\n\t\t\t} )( data );\n\t\t}\n\t},\n\n\t// Convert dashed to camelCase; used by the css and data modules\n\t// Microsoft forgot to hump their vendor prefix (#9572)\n\tcamelCase: function( string ) {\n\t\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n\t},\n\n\tnodeName: function( elem, name ) {\n\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\t},\n\n\t// args is for internal usage only\n\teach: function( obj, callback, args ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = obj.length,\n\t\t\tisArray = isArraylike( obj );\n\n\t\tif ( args ) {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// A special, fast, case for the most common use of each\n\t\t} else {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// Support: Android<4.1, IE<9\n\ttrim: function( text ) {\n\t\treturn text == null ?\n\t\t\t\"\" :\n\t\t\t( text + \"\" ).replace( rtrim, \"\" );\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArraylike( Object(arr) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\tvar len;\n\n\t\tif ( arr ) {\n\t\t\tif ( indexOf ) {\n\t\t\t\treturn indexOf.call( arr, elem, i );\n\t\t\t}\n\n\t\t\tlen = arr.length;\n\t\t\ti = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t// Skip accessing in sparse arrays\n\t\t\t\tif ( i in arr && arr[ i ] === elem ) {\n\t\t\t\t\treturn i;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn -1;\n\t},\n\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\twhile ( j < len ) {\n\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Workaround casting of .length to NaN on otherwise arraylike objects (e.g., NodeLists)\n\t\tif ( len !== len ) {\n\t\t\twhile ( second[j] !== undefined ) {\n\t\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t\t}\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tisArray = isArraylike( elems ),\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArray ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn concat.apply( [], ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// Bind a function to a context, optionally partially applying any\n\t// arguments.\n\tproxy: function( fn, context ) {\n\t\tvar args, proxy, tmp;\n\n\t\tif ( typeof context === \"string\" ) {\n\t\t\ttmp = fn[ context ];\n\t\t\tcontext = fn;\n\t\t\tfn = tmp;\n\t\t}\n\n\t\t// Quick check to determine if target is callable, in the spec\n\t\t// this throws a TypeError, but we will just return undefined.\n\t\tif ( !jQuery.isFunction( fn ) ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\t// Simulated bind\n\t\targs = slice.call( arguments, 2 );\n\t\tproxy = function() {\n\t\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t\t};\n\n\t\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\t\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\t\treturn proxy;\n\t},\n\n\tnow: function() {\n\t\treturn +( new Date() );\n\t},\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n});\n\n// Populate the class2type map\njQuery.each(\"Boolean Number String Function Array Date RegExp Object Error\".split(\" \"), function(i, name) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n});\n\nfunction isArraylike( obj ) {\n\n\t// Support: iOS 8.2 (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = \"length\" in obj && obj.length,\n\t\ttype = jQuery.type( obj );\n\n\tif ( type === \"function\" || jQuery.isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\tif ( obj.nodeType === 1 && length ) {\n\t\treturn true;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.2.0-pre\n * http://sizzlejs.com/\n *\n * Copyright 2008, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2014-12-16\n */\n(function( window ) {\n\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// General-purpose constants\n\tMAX_NEGATIVE = 1 << 31,\n\n\t// Instance methods\n\thasOwn = ({}).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpush_native = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\t// Use a stripped-down indexOf as it's faster than native\n\t// http://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[i] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\t// http://www.w3.org/TR/css3-syntax/#characters\n\tcharacterEncoding = \"(?:\\\\\\\\.|[\\\\w-]|[^\\\\x00-\\\\xa0])+\",\n\n\t// Loosely modeled on CSS identifier characters\n\t// An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors\n\t// Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier\n\tidentifier = characterEncoding.replace( \"w\", \"w#\" ),\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + characterEncoding + \")(?:\" + whitespace +\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\t\t// \"Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" + whitespace +\n\t\t\"*\\\\]\",\n\n\tpseudos = \":(\" + characterEncoding + \")(?:\\\\((\" +\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" + whitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace + \"*\" ),\n\n\trattributeQuotes = new RegExp( \"=\" + whitespace + \"*([^\\\\]'\\\"]*?)\" + whitespace + \"*\\\\]\", \"g\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + characterEncoding + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + characterEncoding + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + characterEncoding.replace( \"w\", \"w*\" ) + \")\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" + whitespace +\n\t\t\t\"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" + whitespace +\n\t\t\t\"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace + \"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" +\n\t\t\twhitespace + \"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\trescape = /'|\\\\/g,\n\n\t// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\([\\\\da-f]{1,6}\" + whitespace + \"?|(\" + whitespace + \")|.)\", \"ig\" ),\n\tfunescape = function( _, escaped, escapedWhitespace ) {\n\t\tvar high = \"0x\" + escaped - 0x10000;\n\t\t// NaN means non-codepoint\n\t\t// Support: Firefox<24\n\t\t// Workaround erroneous numeric interpretation of +\"0x\"\n\t\treturn high !== high || escapedWhitespace ?\n\t\t\tescaped :\n\t\t\thigh < 0 ?\n\t\t\t\t// BMP codepoint\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\t// Supplemental Plane codepoint (surrogate pair)\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t};\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t(arr = slice.call( preferredDoc.childNodes )),\n\t\tpreferredDoc.childNodes\n\t);\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpush_native.apply( target, slice.call(els) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( (target[j++] = els[i++]) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar match, elem, m, nodeType,\n\t\t// QSA vars\n\t\ti, groups, old, nid, newContext, newSelector;\n\n\tif ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\n\tcontext = context || document;\n\tresults = results || [];\n\tnodeType = context.nodeType;\n\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\tif ( !seed && documentIsHTML ) {\n\n\t\t// Try to shortcut find operations when possible (e.g., not under DocumentFragment)\n\t\tif ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {\n\t\t\t// Speed-up: Sizzle(\"#ID\")\n\t\t\tif ( (m = match[1]) ) {\n\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\telem = context.getElementById( m );\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document (jQuery #6963)\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE, Opera, and Webkit return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t// Context is not a document\n\t\t\t\t\tif ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&\n\t\t\t\t\t\tcontains( context, elem ) && elem.id === m ) {\n\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Speed-up: Sizzle(\"TAG\")\n\t\t\t} else if ( match[2] ) {\n\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\treturn results;\n\n\t\t\t// Speed-up: Sizzle(\".CLASS\")\n\t\t\t} else if ( (m = match[3]) && support.getElementsByClassName ) {\n\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\treturn results;\n\t\t\t}\n\t\t}\n\n\t\t// QSA path\n\t\tif ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {\n\t\t\tnid = old = expando;\n\t\t\tnewContext = context;\n\t\t\tnewSelector = nodeType !== 1 && selector;\n\n\t\t\t// qSA works strangely on Element-rooted queries\n\t\t\t// We can work around this by specifying an extra ID on the root\n\t\t\t// and working up from there (Thanks to Andrew Dupont for the technique)\n\t\t\t// IE 8 doesn't work on object elements\n\t\t\tif ( nodeType === 1 && context.nodeName.toLowerCase() !== \"object\" ) {\n\t\t\t\tgroups = tokenize( selector );\n\n\t\t\t\tif ( (old = context.getAttribute(\"id\")) ) {\n\t\t\t\t\tnid = old.replace( rescape, \"\\\\$&\" );\n\t\t\t\t} else {\n\t\t\t\t\tcontext.setAttribute( \"id\", nid );\n\t\t\t\t}\n\t\t\t\tnid = \"[id='\" + nid + \"'] \";\n\n\t\t\t\ti = groups.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tgroups[i] = nid + toSelector( groups[i] );\n\t\t\t\t}\n\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) || context;\n\t\t\t\tnewSelector = groups.join(\",\");\n\t\t\t}\n\n\t\t\tif ( newSelector ) {\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch(qsaError) {\n\t\t\t\t} finally {\n\t\t\t\t\tif ( !old ) {\n\t\t\t\t\t\tcontext.removeAttribute(\"id\");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {Function(string, Object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn (cache[ key + \" \" ] = value);\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created div and expects a boolean result\n */\nfunction assert( fn ) {\n\tvar div = document.createElement(\"div\");\n\n\ttry {\n\t\treturn !!fn( div );\n\t} catch (e) {\n\t\treturn false;\n\t} finally {\n\t\t// Remove from its parent by default\n\t\tif ( div.parentNode ) {\n\t\t\tdiv.parentNode.removeChild( div );\n\t\t}\n\t\t// release memory in IE\n\t\tdiv = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split(\"|\"),\n\t\ti = attrs.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[i] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\t( ~b.sourceIndex || MAX_NEGATIVE ) -\n\t\t\t( ~a.sourceIndex || MAX_NEGATIVE );\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( (cur = cur.nextSibling) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn (name === \"input\" || name === \"button\") && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction(function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction(function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ (j = matchIndexes[i]) ] ) {\n\t\t\t\t\tseed[j] = !(matches[j] = seed[j]);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t});\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\t// documentElement is verified for cases where it doesn't yet exist\n\t// (such as loading iframes in IE - #4833)\n\tvar documentElement = elem && (elem.ownerDocument || elem).documentElement;\n\treturn documentElement ? documentElement.nodeName !== \"HTML\" : false;\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, parent,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// If no document and documentElement is available, return\n\tif ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Set our document\n\tdocument = doc;\n\tdocElem = doc.documentElement;\n\tparent = doc.defaultView;\n\n\t// Support: IE>8\n\t// If iframe document is assigned to \"document\" variable and if iframe has been reloaded,\n\t// IE will throw \"permission denied\" error when accessing \"document\" variable, see jQuery #13936\n\t// IE6-8 do not support the defaultView property so parent will be undefined\n\tif ( parent && parent !== parent.top ) {\n\t\t// IE11 does not have attachEvent, so all must suffer\n\t\tif ( parent.addEventListener ) {\n\t\t\tparent.addEventListener( \"unload\", unloadHandler, false );\n\t\t} else if ( parent.attachEvent ) {\n\t\t\tparent.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t/* Support tests\n\t---------------------------------------------------------------------- */\n\tdocumentIsHTML = !isXML( doc );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert(function( div ) {\n\t\tdiv.className = \"i\";\n\t\treturn !div.getAttribute(\"className\");\n\t});\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert(function( div ) {\n\t\tdiv.appendChild( doc.createComment(\"\") );\n\t\treturn !div.getElementsByTagName(\"*\").length;\n\t});\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( doc.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert(function( div ) {\n\t\tdocElem.appendChild( div ).id = expando;\n\t\treturn !doc.getElementsByName || !doc.getElementsByName( expando ).length;\n\t});\n\n\t// ID find and filter\n\tif ( support.getById ) {\n\t\tExpr.find[\"ID\"] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar m = context.getElementById( id );\n\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\treturn m && m.parentNode ? [ m ] : [];\n\t\t\t}\n\t\t};\n\t\tExpr.filter[\"ID\"] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute(\"id\") === attrId;\n\t\t\t};\n\t\t};\n\t} else {\n\t\t// Support: IE6/7\n\t\t// getElementById is not reliable as a find shortcut\n\t\tdelete Expr.find[\"ID\"];\n\n\t\tExpr.filter[\"ID\"] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" && elem.getAttributeNode(\"id\");\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[\"TAG\"] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( (elem = results[i++]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[\"CLASS\"] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See http://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert(function( div ) {\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// http://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( div ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\f]' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( div.querySelectorAll(\"[msallowcapture^='']\").length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !div.querySelectorAll(\"[selected]\").length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.2+, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.7+\n\t\t\tif ( !div.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push(\"~=\");\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":checked\").length ) {\n\t\t\t\trbuggyQSA.push(\":checked\");\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibing-combinator selector` fails\n\t\t\tif ( !div.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push(\".#.+[+~]\");\n\t\t\t}\n\t\t});\n\n\t\tassert(function( div ) {\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = doc.createElement(\"input\");\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tdiv.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( div.querySelectorAll(\"[name=d]\").length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":enabled\").length ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tdiv.querySelectorAll(\"*,:x\");\n\t\t\trbuggyQSA.push(\",.*:\");\n\t\t});\n\t}\n\n\tif ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector) )) ) {\n\n\t\tassert(function( div ) {\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( div, \"div\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( div, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t});\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join(\"|\") );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join(\"|\") );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully does not implement inclusive descendent\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t));\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( (b = b.parentNode) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\tcompare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\tif ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t\tif ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\t\t\treturn a === doc ? -1 :\n\t\t\t\tb === doc ? 1 :\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[i] === bp[i] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[i], bp[i] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\tap[i] === preferredDoc ? -1 :\n\t\t\tbp[i] === preferredDoc ? 1 :\n\t\t\t0;\n\t};\n\n\treturn doc;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\t// Make sure that attribute selectors are quoted\n\texpr = expr.replace( rattributeQuotes, \"='$1']\" );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t// fragment in IE 9\n\t\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch (e) {}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\t// Set document vars if needed\n\tif ( ( context.ownerDocument || context ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t(val = elem.getAttributeNode(name)) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( (elem = results[i++]) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( (node = elem[i++]) ) {\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[1] = match[1].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[3] = ( match[3] || match[4] || match[5] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[2] === \"~=\" ) {\n\t\t\t\tmatch[3] = \" \" + match[3] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[1] = match[1].toLowerCase();\n\n\t\t\tif ( match[1].slice( 0, 3 ) === \"nth\" ) {\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[3] ) {\n\t\t\t\t\tSizzle.error( match[0] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === \"even\" || match[3] === \"odd\" ) );\n\t\t\t\tmatch[5] = +( ( match[7] + match[8] ) || match[3] === \"odd\" );\n\n\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[3] ) {\n\t\t\t\tSizzle.error( match[0] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[6] && match[2];\n\n\t\t\tif ( matchExpr[\"CHILD\"].test( match[0] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[3] ) {\n\t\t\t\tmatch[2] = match[4] || match[5] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t(excess = tokenize( unquoted, true )) &&\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t(excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[0] = match[0].slice( 0, excess );\n\t\t\t\tmatch[2] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() { return true; } :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t(pattern = new RegExp( \"(^|\" + whitespace + \")\" + className + \"(\" + whitespace + \"|$)\" )) &&\n\t\t\t\tclassCache( className, function( elem ) {\n\t\t\t\t\treturn pattern.test( typeof elem.className === \"string\" && elem.className || typeof elem.getAttribute !== \"undefined\" && elem.getAttribute(\"class\") || \"\" );\n\t\t\t\t});\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tvar cache, outerCache, node, diff, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( (node = node[ dir ]) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\t\t\t\t\t\t\touterCache = parent[ expando ] || (parent[ expando ] = {});\n\t\t\t\t\t\t\tcache = outerCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[0] === dirruns && cache[1];\n\t\t\t\t\t\t\tdiff = cache[0] === dirruns && cache[2];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\touterCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t} else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {\n\t\t\t\t\t\t\tdiff = cache[1];\n\n\t\t\t\t\t\t// xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\tif ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {\n\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t(node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction(function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[i] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[i] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction(function( selector ) {\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction(function( seed, matches, context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = unmatched[i]) ) {\n\t\t\t\t\t\t\tseed[i] = !(matches[i] = elem);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}) :\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tinput[0] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[0] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t}),\n\n\t\t\"has\": markFunction(function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t}),\n\n\t\t\"contains\": markFunction(function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t}),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test(lang || \"\") ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( (elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute(\"xml:lang\") || elem.getAttribute(\"lang\")) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( (elem = elem.parentNode) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t}),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": function( elem ) {\n\t\t\treturn elem.disabled === false;\n\t\t},\n\n\t\t\"disabled\": function( elem ) {\n\t\t\treturn elem.disabled === true;\n\t\t},\n\n\t\t\"checked\": function( elem ) {\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn (nodeName === \"input\" && !!elem.checked) || (nodeName === \"option\" && !!elem.selected);\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[\"empty\"]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( (attr = elem.getAttribute(\"type\")) == null || attr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo(function() {\n\t\t\treturn [ 0 ];\n\t\t}),\n\n\t\t\"last\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t}),\n\n\t\t\"eq\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t}),\n\n\t\t\"even\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"odd\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"lt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"gt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t})\n\t}\n};\n\nExpr.pseudos[\"nth\"] = Expr.pseudos[\"eq\"];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || (match = rcomma.exec( soFar )) ) {\n\t\t\tif ( match ) {\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[0].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( (tokens = []) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( (match = rcombinators.exec( soFar )) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push({\n\t\t\t\tvalue: matched,\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[0].replace( rtrim, \" \" )\n\t\t\t});\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||\n\t\t\t\t(match = preFilters[ type ]( match ))) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push({\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t});\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[i].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tcheckNonElements = base && dir === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from dir caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || (elem[ expando ] = {});\n\t\t\t\t\t\tif ( (oldCache = outerCache[ dir ]) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn (newCache[ 2 ] = oldCache[ 2 ]);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\touterCache[ dir ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[i]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[0];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[i], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (elem = unmatched[i]) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction(function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts( selector || \"*\", context.nodeType ? [ context ] : context, [] ),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( (elem = temp[i]) ) {\n\t\t\t\t\tmatcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = matcherOut[i]) ) {\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( (matcherIn[i] = elem) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, (matcherOut = []), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( (elem = matcherOut[i]) &&\n\t\t\t\t\t\t(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {\n\n\t\t\t\t\t\tseed[temp] = !(results[temp] = elem);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t});\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[0].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[\" \"],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t(checkContext = context).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (matcher = Expr.relative[ tokens[i].type ]) ) {\n\t\t\tmatchers = [ addCombinator(elementMatcher( matchers ), matcher) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[j].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\t\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\t\ttokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" })\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( (tokens = tokens.slice( j )) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[\"TAG\"]( \"*\", outermost ),\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\t\t\t\toutermostContext = context !== document && context;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Keep `i` a string if there are no elements so `matchedCount` will be \"00\" below\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && (elem = elems[i]) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (matcher = elementMatchers[j++]) ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( (elem = !matcher && elem) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\tmatchedCount += i;\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (matcher = setMatchers[j++]) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !(unmatched[i] || setMatched[i]) ) {\n\t\t\t\t\t\t\t\tsetMatched[i] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[i] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( (selector = compiled.selector || selector) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is no seed and only one group\n\tif ( match.length === 1 ) {\n\n\t\t// Take a shortcut and set the context if the root selector is an ID\n\t\ttokens = match[0] = match[0].slice( 0 );\n\t\tif ( tokens.length > 2 && (token = tokens[0]).type === \"ID\" &&\n\t\t\t\tsupport.getById && context.nodeType === 9 && documentIsHTML &&\n\t\t\t\tExpr.relative[ tokens[1].type ] ) {\n\n\t\t\tcontext = ( Expr.find[\"ID\"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[\"needsContext\"].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[i];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ (type = token.type) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( (find = Expr.find[ type ]) ) {\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( (seed = find(\n\t\t\t\t\ttoken.matches[0].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context\n\t\t\t\t)) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\trsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split(\"\").sort( sortOrder ).join(\"\") === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert(function( div1 ) {\n\t// Should return 1, but returns 4 (following)\n\treturn div1.compareDocumentPosition( document.createElement(\"div\") ) & 1;\n});\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert(function( div ) {\n\tdiv.innerHTML = \"<a href='#'></a>\";\n\treturn div.firstChild.getAttribute(\"href\") === \"#\" ;\n}) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert(function( div ) {\n\tdiv.innerHTML = \"<input/>\";\n\tdiv.firstChild.setAttribute( \"value\", \"\" );\n\treturn div.firstChild.getAttribute( \"value\" ) === \"\";\n}) ) {\n\taddHandle( \"value\", function( elem, name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert(function( div ) {\n\treturn div.getAttribute(\"disabled\") == null;\n}) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t\t(val = elem.getAttributeNode( name )) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\tnull;\n\t\t}\n\t});\n}\n\nreturn Sizzle;\n\n})( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\njQuery.expr[\":\"] = jQuery.expr.pseudos;\njQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\n\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\nvar rsingleTag = (/^<(\\w+)\\s*\\/?>(?:<\\/\\1>|)$/);\n\n\n\nvar risSimple = /^.[^:#\\[\\.,]*$/;\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( jQuery.isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\t/* jshint -W018 */\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t});\n\n\t}\n\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t});\n\n\t}\n\n\tif ( typeof qualifier === \"string\" ) {\n\t\tif ( risSimple.test( qualifier ) ) {\n\t\t\treturn jQuery.filter( qualifier, elements, not );\n\t\t}\n\n\t\tqualifier = jQuery.filter( qualifier, elements );\n\t}\n\n\treturn jQuery.grep( elements, function( elem ) {\n\t\treturn ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not;\n\t});\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\treturn elems.length === 1 && elem.nodeType === 1 ?\n\t\tjQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :\n\t\tjQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\t\treturn elem.nodeType === 1;\n\t\t}));\n};\n\njQuery.fn.extend({\n\tfind: function( selector ) {\n\t\tvar i,\n\t\t\tret = [],\n\t\t\tself = this,\n\t\t\tlen = self.length;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter(function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}) );\n\t\t}\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\t// Needed because $( selector, context ) becomes $( context ).find( selector )\n\t\tret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );\n\t\tret.selector = this.selector ? this.selector + \" \" + selector : selector;\n\t\treturn ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], false) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], true) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n});\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// Use the correct document accordingly with window argument (sandbox)\n\tdocument = window.document,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]*))$/,\n\n\tinit = jQuery.fn.init = function( selector, context ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector.charAt(0) === \"<\" && selector.charAt( selector.length - 1 ) === \">\" && selector.length >= 3 ) {\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && (match[1] || !context) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[1] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[0] : context;\n\n\t\t\t\t\t// scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[1],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( jQuery.isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[2] );\n\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE and Opera return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id !== match[2] ) {\n\t\t\t\t\t\t\treturn rootjQuery.find( selector );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Otherwise, we inject the element directly into the jQuery object\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t\tthis[0] = elem;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.context = document;\n\t\t\t\t\tthis.selector = selector;\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || rootjQuery ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis.context = this[0] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( jQuery.isFunction( selector ) ) {\n\t\t\treturn typeof rootjQuery.ready !== \"undefined\" ?\n\t\t\t\trootjQuery.ready( selector ) :\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\tif ( selector.selector !== undefined ) {\n\t\t\tthis.selector = selector.selector;\n\t\t\tthis.context = selector.context;\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\t// methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.extend({\n\tdir: function( elem, dir, until ) {\n\t\tvar matched = [],\n\t\t\tcur = elem[ dir ];\n\n\t\twhile ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {\n\t\t\tif ( cur.nodeType === 1 ) {\n\t\t\t\tmatched.push( cur );\n\t\t\t}\n\t\t\tcur = cur[dir];\n\t\t}\n\t\treturn matched;\n\t},\n\n\tsibling: function( n, elem ) {\n\t\tvar r = [];\n\n\t\tfor ( ; n; n = n.nextSibling ) {\n\t\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\t\tr.push( n );\n\t\t\t}\n\t\t}\n\n\t\treturn r;\n\t}\n});\n\njQuery.fn.extend({\n\thas: function( target ) {\n\t\tvar i,\n\t\t\ttargets = jQuery( target, this ),\n\t\t\tlen = targets.length;\n\n\t\treturn this.filter(function() {\n\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[i] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\tpos = rneedsContext.test( selectors ) || typeof selectors !== \"string\" ?\n\t\t\t\tjQuery( selectors, context || this.context ) :\n\t\t\t\t0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tfor ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) {\n\t\t\t\t// Always skip document fragments\n\t\t\t\tif ( cur.nodeType < 11 && (pos ?\n\t\t\t\t\tpos.index(cur) > -1 :\n\n\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\tjQuery.find.matchesSelector(cur, selectors)) ) {\n\n\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within\n\t// the matched set of elements\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn jQuery.inArray( this[0], jQuery( elem ) );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn jQuery.inArray(\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[0] : elem, this );\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.unique(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter(selector)\n\t\t);\n\t}\n});\n\nfunction sibling( cur, dir ) {\n\tdo {\n\t\tcur = cur[ dir ];\n\t} while ( cur && cur.nodeType !== 1 );\n\n\treturn cur;\n}\n\njQuery.each({\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn jQuery.dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn jQuery.sibling( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\treturn jQuery.nodeName( elem, \"iframe\" ) ?\n\t\t\telem.contentDocument || elem.contentWindow.document :\n\t\t\tjQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar ret = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tret = jQuery.filter( selector, ret );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tret = jQuery.unique( ret );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tret = ret.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\nvar rnotwhite = (/\\S+/g);\n\n\n\n// String to Object options format cache\nvar optionsCache = {};\n\n// Convert String-formatted options into Object-formatted ones and store in cache\nfunction createOptions( options ) {\n\tvar object = optionsCache[ options ] = {};\n\tjQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t});\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\t( optionsCache[ options ] || createOptions( options ) ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\t\t// Last fire value (for non-forgettable lists)\n\t\tmemory,\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\t\t// End of the loop when firing\n\t\tfiringLength,\n\t\t// Index of currently firing callback (modified by remove if needed)\n\t\tfiringIndex,\n\t\t// First callback to fire (used internally by add and fireWith)\n\t\tfiringStart,\n\t\t// Actual callback list\n\t\tlist = [],\n\t\t// Stack of fire calls for repeatable lists\n\t\tstack = !options.once && [],\n\t\t// Fire callbacks\n\t\tfire = function( data ) {\n\t\t\tmemory = options.memory && data;\n\t\t\tfired = true;\n\t\t\tfiringIndex = firingStart || 0;\n\t\t\tfiringStart = 0;\n\t\t\tfiringLength = list.length;\n\t\t\tfiring = true;\n\t\t\tfor ( ; list && firingIndex < firingLength; firingIndex++ ) {\n\t\t\t\tif ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {\n\t\t\t\t\tmemory = false; // To prevent further calls using add\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tfiring = false;\n\t\t\tif ( list ) {\n\t\t\t\tif ( stack ) {\n\t\t\t\t\tif ( stack.length ) {\n\t\t\t\t\t\tfire( stack.shift() );\n\t\t\t\t\t}\n\t\t\t\t} else if ( memory ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t} else {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t// Actual Callbacks object\n\t\tself = {\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\t// First, we save the current length\n\t\t\t\t\tvar start = list.length;\n\t\t\t\t\t(function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tvar type = jQuery.type( arg );\n\t\t\t\t\t\t\tif ( type === \"function\" ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && type !== \"string\" ) {\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t})( arguments );\n\t\t\t\t\t// Do we need to add the callbacks to the\n\t\t\t\t\t// current firing batch?\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tfiringLength = list.length;\n\t\t\t\t\t// With memory, if we're not firing then\n\t\t\t\t\t// we should call right away\n\t\t\t\t\t} else if ( memory ) {\n\t\t\t\t\t\tfiringStart = start;\n\t\t\t\t\t\tfire( memory );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\t\tvar index;\n\t\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\t\tlist.splice( index, 1 );\n\t\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\t\t\tif ( index <= firingLength ) {\n\t\t\t\t\t\t\t\t\tfiringLength--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );\n\t\t\t},\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tlist = [];\n\t\t\t\tfiringLength = 0;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Have the list do nothing anymore\n\t\t\tdisable: function() {\n\t\t\t\tlist = stack = memory = undefined;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it disabled?\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\t\t\t// Lock the list in its current state\n\t\t\tlock: function() {\n\t\t\t\tstack = undefined;\n\t\t\t\tif ( !memory ) {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it locked?\n\t\t\tlocked: function() {\n\t\t\t\treturn !stack;\n\t\t\t},\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( list && ( !fired || stack ) ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tstack.push( args );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tfire( args );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\njQuery.extend({\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\t\t\t\t// action, add listener, listener list, final state\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks(\"once memory\"), \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks(\"once memory\"), \"rejected\" ],\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks(\"memory\") ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\tthen: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\t\t\t\t\treturn jQuery.Deferred(function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\t\t\t\t\tvar fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];\n\t\t\t\t\t\t\t// deferred[ done | fail | progress ] for forwarding actions to newDefer\n\t\t\t\t\t\t\tdeferred[ tuple[1] ](function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && jQuery.isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject )\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t});\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t}).promise();\n\t\t\t\t},\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Keep pipe for back-compat\n\t\tpromise.pipe = promise.then;\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 3 ];\n\n\t\t\t// promise[ done | fail | progress ] = list.add\n\t\t\tpromise[ tuple[1] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(function() {\n\t\t\t\t\t// state = [ resolved | rejected ]\n\t\t\t\t\tstate = stateString;\n\n\t\t\t\t// [ reject_list | resolve_list ].disable; progress_list.lock\n\t\t\t\t}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );\n\t\t\t}\n\n\t\t\t// deferred[ resolve | reject | notify ]\n\t\t\tdeferred[ tuple[0] ] = function() {\n\t\t\t\tdeferred[ tuple[0] + \"With\" ]( this === deferred ? promise : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\t\t\tdeferred[ tuple[0] + \"With\" ] = list.fireWith;\n\t\t});\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( subordinate /* , ..., subordinateN */ ) {\n\t\tvar i = 0,\n\t\t\tresolveValues = slice.call( arguments ),\n\t\t\tlength = resolveValues.length,\n\n\t\t\t// the count of uncompleted subordinates\n\t\t\tremaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,\n\n\t\t\t// the master Deferred. If resolveValues consist of only a single Deferred, just use that.\n\t\t\tdeferred = remaining === 1 ? subordinate : jQuery.Deferred(),\n\n\t\t\t// Update function for both resolve and progress values\n\t\t\tupdateFunc = function( i, contexts, values ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tcontexts[ i ] = this;\n\t\t\t\t\tvalues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( values === progressValues ) {\n\t\t\t\t\t\tdeferred.notifyWith( contexts, values );\n\n\t\t\t\t\t} else if ( !(--remaining) ) {\n\t\t\t\t\t\tdeferred.resolveWith( contexts, values );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t},\n\n\t\t\tprogressValues, progressContexts, resolveContexts;\n\n\t\t// add listeners to Deferred subordinates; treat others as resolved\n\t\tif ( length > 1 ) {\n\t\t\tprogressValues = new Array( length );\n\t\t\tprogressContexts = new Array( length );\n\t\t\tresolveContexts = new Array( length );\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {\n\t\t\t\t\tresolveValues[ i ].promise()\n\t\t\t\t\t\t.done( updateFunc( i, resolveContexts, resolveValues ) )\n\t\t\t\t\t\t.fail( deferred.reject )\n\t\t\t\t\t\t.progress( updateFunc( i, progressContexts, progressValues ) );\n\t\t\t\t} else {\n\t\t\t\t\t--remaining;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// if we're not waiting on anything, resolve the master\n\t\tif ( !remaining ) {\n\t\t\tdeferred.resolveWith( resolveContexts, resolveValues );\n\t\t}\n\n\t\treturn deferred.promise();\n\t}\n});\n\n\n// The deferred used on DOM ready\nvar readyList;\n\njQuery.fn.ready = function( fn ) {\n\t// Add the callback\n\tjQuery.ready.promise().done( fn );\n\n\treturn this;\n};\n\njQuery.extend({\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Hold (or release) the ready event\n\tholdReady: function( hold ) {\n\t\tif ( hold ) {\n\t\t\tjQuery.readyWait++;\n\t\t} else {\n\t\t\tjQuery.ready( true );\n\t\t}\n\t},\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).\n\t\tif ( !document.body ) {\n\t\t\treturn setTimeout( jQuery.ready );\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\n\t\t// Trigger any bound ready events\n\t\tif ( jQuery.fn.triggerHandler ) {\n\t\t\tjQuery( document ).triggerHandler( \"ready\" );\n\t\t\tjQuery( document ).off( \"ready\" );\n\t\t}\n\t}\n});\n\n/**\n * Clean-up method for dom ready events\n */\nfunction detach() {\n\tif ( document.addEventListener ) {\n\t\tdocument.removeEventListener( \"DOMContentLoaded\", completed, false );\n\t\twindow.removeEventListener( \"load\", completed, false );\n\n\t} else {\n\t\tdocument.detachEvent( \"onreadystatechange\", completed );\n\t\twindow.detachEvent( \"onload\", completed );\n\t}\n}\n\n/**\n * The ready event handler and self cleanup method\n */\nfunction completed() {\n\t// readyState === \"complete\" is good enough for us to call the dom ready in oldIE\n\tif ( document.addEventListener || event.type === \"load\" || document.readyState === \"complete\" ) {\n\t\tdetach();\n\t\tjQuery.ready();\n\t}\n}\n\njQuery.ready.promise = function( obj ) {\n\tif ( !readyList ) {\n\n\t\treadyList = jQuery.Deferred();\n\n\t\t// Catch cases where $(document).ready() is called after the browser event has already occurred.\n\t\t// we once tried to use readyState \"interactive\" here, but it caused issues like the one\n\t\t// discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15\n\t\tif ( document.readyState === \"complete\" ) {\n\t\t\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\t\t\tsetTimeout( jQuery.ready );\n\n\t\t// Standards-based browsers support DOMContentLoaded\n\t\t} else if ( document.addEventListener ) {\n\t\t\t// Use the handy event callback\n\t\t\tdocument.addEventListener( \"DOMContentLoaded\", completed, false );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.addEventListener( \"load\", completed, false );\n\n\t\t// If IE event model is used\n\t\t} else {\n\t\t\t// Ensure firing before onload, maybe late but safe also for iframes\n\t\t\tdocument.attachEvent( \"onreadystatechange\", completed );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.attachEvent( \"onload\", completed );\n\n\t\t\t// If IE and not a frame\n\t\t\t// continually check to see if the document is ready\n\t\t\tvar top = false;\n\n\t\t\ttry {\n\t\t\t\ttop = window.frameElement == null && document.documentElement;\n\t\t\t} catch(e) {}\n\n\t\t\tif ( top && top.doScroll ) {\n\t\t\t\t(function doScrollCheck() {\n\t\t\t\t\tif ( !jQuery.isReady ) {\n\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t// Use the trick by Diego Perini\n\t\t\t\t\t\t\t// http://javascript.nwbox.com/IEContentLoaded/\n\t\t\t\t\t\t\ttop.doScroll(\"left\");\n\t\t\t\t\t\t} catch(e) {\n\t\t\t\t\t\t\treturn setTimeout( doScrollCheck, 50 );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// detach all dom ready events\n\t\t\t\t\t\tdetach();\n\n\t\t\t\t\t\t// and execute any waiting functions\n\t\t\t\t\t\tjQuery.ready();\n\t\t\t\t\t}\n\t\t\t\t})();\n\t\t\t}\n\t\t}\n\t}\n\treturn readyList.promise( obj );\n};\n\n\nvar strundefined = typeof undefined;\n\n\n\n// Support: IE<9\n// Iteration over object's inherited properties before its own\nvar i;\nfor ( i in jQuery( support ) ) {\n\tbreak;\n}\nsupport.ownLast = i !== \"0\";\n\n// Note: most support tests are defined in their respective modules.\n// false until the test is run\nsupport.inlineBlockNeedsLayout = false;\n\n// Execute ASAP in case we need to set body.style.zoom\njQuery(function() {\n\t// Minified: var a,b,c,d\n\tvar val, div, body, container;\n\n\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\tif ( !body || !body.style ) {\n\t\t// Return for frameset docs that don't have a body\n\t\treturn;\n\t}\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tcontainer = document.createElement( \"div\" );\n\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\tbody.appendChild( container ).appendChild( div );\n\n\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t// Support: IE<8\n\t\t// Check if natively block-level elements act like inline-block\n\t\t// elements when setting their display to 'inline' and giving\n\t\t// them layout\n\t\tdiv.style.cssText = \"display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1\";\n\n\t\tsupport.inlineBlockNeedsLayout = val = div.offsetWidth === 3;\n\t\tif ( val ) {\n\t\t\t// Prevent IE 6 from affecting layout for positioned elements #11048\n\t\t\t// Prevent IE from shrinking the body in IE 7 mode #12869\n\t\t\t// Support: IE<8\n\t\t\tbody.style.zoom = 1;\n\t\t}\n\t}\n\n\tbody.removeChild( container );\n});\n\n\n\n\n(function() {\n\tvar div = document.createElement( \"div\" );\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\n/**\n * Determines whether an object can have data\n */\njQuery.acceptData = function( elem ) {\n\tvar noData = jQuery.noData[ (elem.nodeName + \" \").toLowerCase() ],\n\t\tnodeType = +elem.nodeType || 1;\n\n\t// Do not set data on non-element DOM nodes because it will not be cleared (#8335).\n\treturn nodeType !== 1 && nodeType !== 9 ?\n\t\tfalse :\n\n\t\t// Nodes accept data unless otherwise specified; rejection can be conditional\n\t\t!noData || noData !== true && elem.getAttribute(\"classid\") === noData;\n};\n\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /([A-Z])/g;\n\nfunction dataAttr( elem, key, data ) {\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\n\t\tvar name = \"data-\" + key.replace( rmultiDash, \"-$1\" ).toLowerCase();\n\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = data === \"true\" ? true :\n\t\t\t\t\tdata === \"false\" ? false :\n\t\t\t\t\tdata === \"null\" ? null :\n\t\t\t\t\t// Only convert to a number if it doesn't change the string\n\t\t\t\t\t+data + \"\" === data ? +data :\n\t\t\t\t\trbrace.test( data ) ? jQuery.parseJSON( data ) :\n\t\t\t\t\tdata;\n\t\t\t} catch( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tjQuery.data( elem, key, data );\n\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\n\treturn data;\n}\n\n// checks a cache object for emptiness\nfunction isEmptyDataObject( obj ) {\n\tvar name;\n\tfor ( name in obj ) {\n\n\t\t// if the public data object is empty, the private is still empty\n\t\tif ( name === \"data\" && jQuery.isEmptyObject( obj[name] ) ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( name !== \"toJSON\" ) {\n\t\t\treturn false;\n\t\t}\n\t}\n\n\treturn true;\n}\n\nfunction internalData( elem, name, data, pvt /* Internal Use Only */ ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar ret, thisCache,\n\t\tinternalKey = jQuery.expando,\n\n\t\t// We have to handle DOM nodes and JS objects differently because IE6-7\n\t\t// can't GC object references properly across the DOM-JS boundary\n\t\tisNode = elem.nodeType,\n\n\t\t// Only DOM nodes need the global jQuery cache; JS object data is\n\t\t// attached directly to the object so GC can occur automatically\n\t\tcache = isNode ? jQuery.cache : elem,\n\n\t\t// Only defining an ID for JS objects if its cache already exists allows\n\t\t// the code to shortcut on the same path as a DOM node with no cache\n\t\tid = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;\n\n\t// Avoid doing any more work than we need to when trying to get data on an\n\t// object that has no data at all\n\tif ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === \"string\" ) {\n\t\treturn;\n\t}\n\n\tif ( !id ) {\n\t\t// Only DOM nodes need a new unique ID for each element since their data\n\t\t// ends up in the global cache\n\t\tif ( isNode ) {\n\t\t\tid = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++;\n\t\t} else {\n\t\t\tid = internalKey;\n\t\t}\n\t}\n\n\tif ( !cache[ id ] ) {\n\t\t// Avoid exposing jQuery metadata on plain JS objects when the object\n\t\t// is serialized using JSON.stringify\n\t\tcache[ id ] = isNode ? {} : { toJSON: jQuery.noop };\n\t}\n\n\t// An object can be passed to jQuery.data instead of a key/value pair; this gets\n\t// shallow copied over onto the existing cache\n\tif ( typeof name === \"object\" || typeof name === \"function\" ) {\n\t\tif ( pvt ) {\n\t\t\tcache[ id ] = jQuery.extend( cache[ id ], name );\n\t\t} else {\n\t\t\tcache[ id ].data = jQuery.extend( cache[ id ].data, name );\n\t\t}\n\t}\n\n\tthisCache = cache[ id ];\n\n\t// jQuery data() is stored in a separate object inside the object's internal data\n\t// cache in order to avoid key collisions between internal data and user-defined\n\t// data.\n\tif ( !pvt ) {\n\t\tif ( !thisCache.data ) {\n\t\t\tthisCache.data = {};\n\t\t}\n\n\t\tthisCache = thisCache.data;\n\t}\n\n\tif ( data !== undefined ) {\n\t\tthisCache[ jQuery.camelCase( name ) ] = data;\n\t}\n\n\t// Check for both converted-to-camel and non-converted data property names\n\t// If a data property was specified\n\tif ( typeof name === \"string\" ) {\n\n\t\t// First Try to find as-is property data\n\t\tret = thisCache[ name ];\n\n\t\t// Test for null|undefined property data\n\t\tif ( ret == null ) {\n\n\t\t\t// Try to find the camelCased property\n\t\t\tret = thisCache[ jQuery.camelCase( name ) ];\n\t\t}\n\t} else {\n\t\tret = thisCache;\n\t}\n\n\treturn ret;\n}\n\nfunction internalRemoveData( elem, name, pvt ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar thisCache, i,\n\t\tisNode = elem.nodeType,\n\n\t\t// See jQuery.data for more information\n\t\tcache = isNode ? jQuery.cache : elem,\n\t\tid = isNode ? elem[ jQuery.expando ] : jQuery.expando;\n\n\t// If there is already no cache entry for this object, there is no\n\t// purpose in continuing\n\tif ( !cache[ id ] ) {\n\t\treturn;\n\t}\n\n\tif ( name ) {\n\n\t\tthisCache = pvt ? cache[ id ] : cache[ id ].data;\n\n\t\tif ( thisCache ) {\n\n\t\t\t// Support array or space separated string names for data keys\n\t\t\tif ( !jQuery.isArray( name ) ) {\n\n\t\t\t\t// try the string as a key before any manipulation\n\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\tname = [ name ];\n\t\t\t\t} else {\n\n\t\t\t\t\t// split the camel cased version by spaces unless a key with the spaces exists\n\t\t\t\t\tname = jQuery.camelCase( name );\n\t\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\t\tname = [ name ];\n\t\t\t\t\t} else {\n\t\t\t\t\t\tname = name.split(\" \");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// If \"name\" is an array of keys...\n\t\t\t\t// When data is initially created, via (\"key\", \"val\") signature,\n\t\t\t\t// keys will be converted to camelCase.\n\t\t\t\t// Since there is no way to tell _how_ a key was added, remove\n\t\t\t\t// both plain key and camelCase key. #12786\n\t\t\t\t// This will only penalize the array argument path.\n\t\t\t\tname = name.concat( jQuery.map( name, jQuery.camelCase ) );\n\t\t\t}\n\n\t\t\ti = name.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete thisCache[ name[i] ];\n\t\t\t}\n\n\t\t\t// If there is no data left in the cache, we want to continue\n\t\t\t// and let the cache object itself get destroyed\n\t\t\tif ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t}\n\n\t// See jQuery.data for more information\n\tif ( !pvt ) {\n\t\tdelete cache[ id ].data;\n\n\t\t// Don't destroy the parent cache unless the internal data object\n\t\t// had been the only thing left in it\n\t\tif ( !isEmptyDataObject( cache[ id ] ) ) {\n\t\t\treturn;\n\t\t}\n\t}\n\n\t// Destroy the cache\n\tif ( isNode ) {\n\t\tjQuery.cleanData( [ elem ], true );\n\n\t// Use delete when supported for expandos or `cache` is not a window per isWindow (#10080)\n\t/* jshint eqeqeq: false */\n\t} else if ( support.deleteExpando || cache != cache.window ) {\n\t\t/* jshint eqeqeq: true */\n\t\tdelete cache[ id ];\n\n\t// When all else fails, null\n\t} else {\n\t\tcache[ id ] = null;\n\t}\n}\n\njQuery.extend({\n\tcache: {},\n\n\t// The following elements (space-suffixed to avoid Object.prototype collisions)\n\t// throw uncatchable exceptions if you attempt to set expando properties\n\tnoData: {\n\t\t\"applet \": true,\n\t\t\"embed \": true,\n\t\t// ...but Flash objects (which have this classid) *can* handle expandos\n\t\t\"object \": \"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"\n\t},\n\n\thasData: function( elem ) {\n\t\telem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];\n\t\treturn !!elem && !isEmptyDataObject( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name );\n\t},\n\n\t// For internal use only.\n\t_data: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data, true );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name, true );\n\t}\n});\n\njQuery.fn.extend({\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[0],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Special expections of .data basically thwart jQuery.access,\n\t\t// so implement the relevant behavior ourselves\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = jQuery.data( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !jQuery._data( elem, \"parsedAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE11+\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = jQuery.camelCase( name.slice(5) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tjQuery._data( elem, \"parsedAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each(function() {\n\t\t\t\tjQuery.data( this, key );\n\t\t\t});\n\t\t}\n\n\t\treturn arguments.length > 1 ?\n\n\t\t\t// Sets one value\n\t\t\tthis.each(function() {\n\t\t\t\tjQuery.data( this, key, value );\n\t\t\t}) :\n\n\t\t\t// Gets one value\n\t\t\t// Try to fetch any internally stored data first\n\t\t\telem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined;\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeData( this, key );\n\t\t});\n\t}\n});\n\n\njQuery.extend({\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = jQuery._data( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || jQuery.isArray(data) ) {\n\t\t\t\t\tqueue = jQuery._data( elem, type, jQuery.makeArray(data) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// not intended for public consumption - generates a queueHooks object, or returns the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn jQuery._data( elem, key ) || jQuery._data( elem, key, {\n\t\t\tempty: jQuery.Callbacks(\"once memory\").add(function() {\n\t\t\t\tjQuery._removeData( elem, type + \"queue\" );\n\t\t\t\tjQuery._removeData( elem, key );\n\t\t\t})\n\t\t});\n\t}\n});\n\njQuery.fn.extend({\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[0], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each(function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[0] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t});\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t});\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = jQuery._data( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n});\nvar pnum = (/[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/).source;\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar isHidden = function( elem, el ) {\n\t\t// isHidden might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\t\treturn jQuery.css( elem, \"display\" ) === \"none\" || !jQuery.contains( elem.ownerDocument, elem );\n\t};\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlength = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( jQuery.type( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\tjQuery.access( elems, fn, i, key[i], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !jQuery.isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tfn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn chainable ?\n\t\telems :\n\n\t\t// Gets\n\t\tbulk ?\n\t\t\tfn.call( elems ) :\n\t\t\tlength ? fn( elems[0], key ) : emptyGet;\n};\nvar rcheckableType = (/^(?:checkbox|radio)$/i);\n\n\n\n(function() {\n\t// Minified: var a,b,c\n\tvar input = document.createElement( \"input\" ),\n\t\tdiv = document.createElement( \"div\" ),\n\t\tfragment = document.createDocumentFragment();\n\n\t// Setup\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\n\t// IE strips leading whitespace when .innerHTML is used\n\tsupport.leadingWhitespace = div.firstChild.nodeType === 3;\n\n\t// Make sure that tbody elements aren't automatically inserted\n\t// IE will insert them into empty tables\n\tsupport.tbody = !div.getElementsByTagName( \"tbody\" ).length;\n\n\t// Make sure that link elements get serialized correctly by innerHTML\n\t// This requires a wrapper element in IE\n\tsupport.htmlSerialize = !!div.getElementsByTagName( \"link\" ).length;\n\n\t// Makes sure cloning an html5 element does not cause problems\n\t// Where outerHTML is undefined, this still works\n\tsupport.html5Clone =\n\t\tdocument.createElement( \"nav\" ).cloneNode( true ).outerHTML !== \"<:nav></:nav>\";\n\n\t// Check if a disconnected checkbox will retain its checked\n\t// value of true after appended to the DOM (IE6/7)\n\tinput.type = \"checkbox\";\n\tinput.checked = true;\n\tfragment.appendChild( input );\n\tsupport.appendChecked = input.checked;\n\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\t// Support: IE6-IE11+\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// #11217 - WebKit loses check when the name is after the checked attribute\n\tfragment.appendChild( div );\n\tdiv.innerHTML = \"<input type='radio' checked='checked' name='t'/>\";\n\n\t// Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3\n\t// old WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE<9\n\t// Opera does not clone events (and typeof div.attachEvent === undefined).\n\t// IE9-10 clones events bound via attachEvent, but they don't trigger with .click()\n\tsupport.noCloneEvent = true;\n\tif ( div.attachEvent ) {\n\t\tdiv.attachEvent( \"onclick\", function() {\n\t\t\tsupport.noCloneEvent = false;\n\t\t});\n\n\t\tdiv.cloneNode( true ).click();\n\t}\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n})();\n\n\n(function() {\n\tvar i, eventName,\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Support: IE<9 (lack submit/change bubble), Firefox 23+ (lack focusin event)\n\tfor ( i in { submit: true, change: true, focusin: true }) {\n\t\teventName = \"on\" + i;\n\n\t\tif ( !(support[ i + \"Bubbles\" ] = eventName in window) ) {\n\t\t\t// Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP)\n\t\t\tdiv.setAttribute( eventName, \"t\" );\n\t\t\tsupport[ i + \"Bubbles\" ] = div.attributes[ eventName ].expando === false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\nvar rformElems = /^(?:input|select|textarea)$/i,\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu)|click/,\n\trfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)$/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\t\tvar tmp, events, t, handleObjIn,\n\t\t\tspecial, eventHandle, handleObj,\n\t\t\thandlers, type, namespaces, origType,\n\t\t\telemData = jQuery._data( elem );\n\n\t\t// Don't attach events to noData or text/comment nodes (but allow plain objects)\n\t\tif ( !elemData ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !(events = elemData.events) ) {\n\t\t\tevents = elemData.events = {};\n\t\t}\n\t\tif ( !(eventHandle = elemData.handle) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== strundefined && (!e || jQuery.event.triggered !== e.type) ?\n\t\t\t\t\tjQuery.event.dispatch.apply( eventHandle.elem, arguments ) :\n\t\t\t\t\tundefined;\n\t\t\t};\n\t\t\t// Add elem as a property of the handle fn to prevent a memory leak with IE non-native events\n\t\t\teventHandle.elem = elem;\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend({\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join(\".\")\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !(handlers = events[ type ]) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener/attachEvent if the special events handler returns false\n\t\t\t\tif ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\t\t\t\t\t// Bind the global event handler to the element\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle, false );\n\n\t\t\t\t\t} else if ( elem.attachEvent ) {\n\t\t\t\t\t\telem.attachEvent( \"on\" + type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t\t// Nullify elem to prevent memory leaks in IE\n\t\telem = null;\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\t\tvar j, handleObj, tmp,\n\t\t\torigCount, t, events,\n\t\t\tspecial, handlers, type,\n\t\t\tnamespaces, origType,\n\t\t\telemData = jQuery.hasData( elem ) && jQuery._data( elem );\n\n\t\tif ( !elemData || !(events = elemData.events) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[2] && new RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector || selector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdelete elemData.handle;\n\n\t\t\t// removeData also checks for emptiness and clears the expando if empty\n\t\t\t// so use it instead of delete\n\t\t\tjQuery._removeData( elem, \"events\" );\n\t\t}\n\t},\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\t\tvar handle, ontype, cur,\n\t\t\tbubbleType, special, tmp, i,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split(\".\") : [];\n\n\t\tcur = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf(\".\") >= 0 ) {\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split(\".\");\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf(\":\") < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join(\".\");\n\t\tevent.namespace_re = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === (elem.ownerDocument || document) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {\n\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = ( jQuery._data( cur, \"events\" ) || {} )[ event.type ] && jQuery._data( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && jQuery.acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) &&\n\t\t\t\tjQuery.acceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name name as the event.\n\t\t\t\t// Can't use an .isFunction() check here because IE6/7 fails that test.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\t\t\t\t\ttry {\n\t\t\t\t\t\telem[ type ]();\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// IE<9 dies on focus/blur to hidden element (#1486,#12518)\n\t\t\t\t\t\t// only reproducible on winXP IE8 native, not IE9 in IE8 mode\n\t\t\t\t\t}\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\tdispatch: function( event ) {\n\n\t\t// Make a writable jQuery.Event from the native event object\n\t\tevent = jQuery.event.fix( event );\n\n\t\tvar i, ret, handleObj, matched, j,\n\t\t\thandlerQueue = [],\n\t\t\targs = slice.call( arguments ),\n\t\t\thandlers = ( jQuery._data( this, \"events\" ) || {} )[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[0] = event;\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// Triggered event must either 1) have no namespace, or\n\t\t\t\t// 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).\n\t\t\t\tif ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )\n\t\t\t\t\t\t\t.apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( (event.result = ret) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar sel, handleObj, matches, i,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\t// Black-hole SVG <use> instance trees (#13180)\n\t\t// Avoid non-left-click bubbling in Firefox (#3861)\n\t\tif ( delegateCount && cur.nodeType && (!event.button || event.type !== \"click\") ) {\n\n\t\t\t/* jshint eqeqeq: false */\n\t\t\tfor ( ; cur != this; cur = cur.parentNode || this ) {\n\t\t\t\t/* jshint eqeqeq: true */\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== \"click\") ) {\n\t\t\t\t\tmatches = [];\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matches[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatches[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) >= 0 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matches[ sel ] ) {\n\t\t\t\t\t\t\tmatches.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matches.length ) {\n\t\t\t\t\t\thandlerQueue.push({ elem: cur, handlers: matches });\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\tfix: function( event ) {\n\t\tif ( event[ jQuery.expando ] ) {\n\t\t\treturn event;\n\t\t}\n\n\t\t// Create a writable copy of the event object and normalize some properties\n\t\tvar i, prop, copy,\n\t\t\ttype = event.type,\n\t\t\toriginalEvent = event,\n\t\t\tfixHook = this.fixHooks[ type ];\n\n\t\tif ( !fixHook ) {\n\t\t\tthis.fixHooks[ type ] = fixHook =\n\t\t\t\trmouseEvent.test( type ) ? this.mouseHooks :\n\t\t\t\trkeyEvent.test( type ) ? this.keyHooks :\n\t\t\t\t{};\n\t\t}\n\t\tcopy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;\n\n\t\tevent = new jQuery.Event( originalEvent );\n\n\t\ti = copy.length;\n\t\twhile ( i-- ) {\n\t\t\tprop = copy[ i ];\n\t\t\tevent[ prop ] = originalEvent[ prop ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Fix target property (#1925)\n\t\tif ( !event.target ) {\n\t\t\tevent.target = originalEvent.srcElement || document;\n\t\t}\n\n\t\t// Support: Chrome 23+, Safari?\n\t\t// Target should not be a text node (#504, #13143)\n\t\tif ( event.target.nodeType === 3 ) {\n\t\t\tevent.target = event.target.parentNode;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// For mouse/key events, metaKey==false if it's undefined (#3368, #11328)\n\t\tevent.metaKey = !!event.metaKey;\n\n\t\treturn fixHook.filter ? fixHook.filter( event, originalEvent ) : event;\n\t},\n\n\t// Includes some event props shared by KeyEvent and MouseEvent\n\tprops: \"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which\".split(\" \"),\n\n\tfixHooks: {},\n\n\tkeyHooks: {\n\t\tprops: \"char charCode key keyCode\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\n\t\t\t// Add which for key events\n\t\t\tif ( event.which == null ) {\n\t\t\t\tevent.which = original.charCode != null ? original.charCode : original.keyCode;\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tmouseHooks: {\n\t\tprops: \"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\t\t\tvar body, eventDoc, doc,\n\t\t\t\tbutton = original.button,\n\t\t\t\tfromElement = original.fromElement;\n\n\t\t\t// Calculate pageX/Y if missing and clientX/Y available\n\t\t\tif ( event.pageX == null && original.clientX != null ) {\n\t\t\t\teventDoc = event.target.ownerDocument || document;\n\t\t\t\tdoc = eventDoc.documentElement;\n\t\t\t\tbody = eventDoc.body;\n\n\t\t\t\tevent.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );\n\t\t\t\tevent.pageY = original.clientY + ( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) - ( doc && doc.clientTop  || body && body.clientTop  || 0 );\n\t\t\t}\n\n\t\t\t// Add relatedTarget, if necessary\n\t\t\tif ( !event.relatedTarget && fromElement ) {\n\t\t\t\tevent.relatedTarget = fromElement === event.target ? original.toElement : fromElement;\n\t\t\t}\n\n\t\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\t\t// Note: button is not normalized, so don't use it\n\t\t\tif ( !event.which && button !== undefined ) {\n\t\t\t\tevent.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tspecial: {\n\t\tload: {\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tfocus: {\n\t\t\t// Fire native event if possible so blur/focus sequence is correct\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this !== safeActiveElement() && this.focus ) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tthis.focus();\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// If we error on focus to hidden element (#1486, #12518),\n\t\t\t\t\t\t// let .trigger() run the handlers\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusin\"\n\t\t},\n\t\tblur: {\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this === safeActiveElement() && this.blur ) {\n\t\t\t\t\tthis.blur();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusout\"\n\t\t},\n\t\tclick: {\n\t\t\t// For checkbox, fire native event so checked state will be right\n\t\t\ttrigger: function() {\n\t\t\t\tif ( jQuery.nodeName( this, \"input\" ) && this.type === \"checkbox\" && this.click ) {\n\t\t\t\t\tthis.click();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, don't fire native .click() on links\n\t\t\t_default: function( event ) {\n\t\t\t\treturn jQuery.nodeName( event.target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tsimulate: function( type, elem, event, bubble ) {\n\t\t// Piggyback on a donor event to simulate a different one.\n\t\t// Fake originalEvent to avoid donor's stopPropagation, but if the\n\t\t// simulated event prevents default then we do the same on the donor.\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true,\n\t\t\t\toriginalEvent: {}\n\t\t\t}\n\t\t);\n\t\tif ( bubble ) {\n\t\t\tjQuery.event.trigger( e, null, elem );\n\t\t} else {\n\t\t\tjQuery.event.dispatch.call( elem, e );\n\t\t}\n\t\tif ( e.isDefaultPrevented() ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\t}\n};\n\njQuery.removeEvent = document.removeEventListener ?\n\tfunction( elem, type, handle ) {\n\t\tif ( elem.removeEventListener ) {\n\t\t\telem.removeEventListener( type, handle, false );\n\t\t}\n\t} :\n\tfunction( elem, type, handle ) {\n\t\tvar name = \"on\" + type;\n\n\t\tif ( elem.detachEvent ) {\n\n\t\t\t// #8545, #7054, preventing memory leaks for custom events in IE6-8\n\t\t\t// detachEvent needed property on element, by name of that event, to properly expose it to GC\n\t\t\tif ( typeof elem[ name ] === strundefined ) {\n\t\t\t\telem[ name ] = null;\n\t\t\t}\n\n\t\t\telem.detachEvent( name, handle );\n\t\t}\n\t};\n\njQuery.Event = function( src, props ) {\n\t// Allow instantiation without the 'new' keyword\n\tif ( !(this instanceof jQuery.Event) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\t\t\t\t// Support: IE < 9, Android < 4.0\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || jQuery.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If preventDefault exists, run it on the original event\n\t\tif ( e.preventDefault ) {\n\t\t\te.preventDefault();\n\n\t\t// Support: IE\n\t\t// Otherwise set the returnValue property of the original event to false\n\t\t} else {\n\t\t\te.returnValue = false;\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\t\t// If stopPropagation exists, run it on the original event\n\t\tif ( e.stopPropagation ) {\n\t\t\te.stopPropagation();\n\t\t}\n\n\t\t// Support: IE\n\t\t// Set the cancelBubble property of the original event to true\n\t\te.cancelBubble = true;\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && e.stopImmediatePropagation ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\njQuery.each({\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mousenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || (related !== target && !jQuery.contains( target, related )) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n});\n\n// IE submit delegation\nif ( !support.submitBubbles ) {\n\n\tjQuery.event.special.submit = {\n\t\tsetup: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Lazy-add a submit handler when a descendant form may potentially be submitted\n\t\t\tjQuery.event.add( this, \"click._submit keypress._submit\", function( e ) {\n\t\t\t\t// Node name check avoids a VML-related crash in IE (#9807)\n\t\t\t\tvar elem = e.target,\n\t\t\t\t\tform = jQuery.nodeName( elem, \"input\" ) || jQuery.nodeName( elem, \"button\" ) ? elem.form : undefined;\n\t\t\t\tif ( form && !jQuery._data( form, \"submitBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( form, \"submit._submit\", function( event ) {\n\t\t\t\t\t\tevent._submit_bubble = true;\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( form, \"submitBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t\t// return undefined since we don't need an event listener\n\t\t},\n\n\t\tpostDispatch: function( event ) {\n\t\t\t// If form was submitted by the user, bubble the event up the tree\n\t\t\tif ( event._submit_bubble ) {\n\t\t\t\tdelete event._submit_bubble;\n\t\t\t\tif ( this.parentNode && !event.isTrigger ) {\n\t\t\t\t\tjQuery.event.simulate( \"submit\", this.parentNode, event, true );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Remove delegated handlers; cleanData eventually reaps submit handlers attached above\n\t\t\tjQuery.event.remove( this, \"._submit\" );\n\t\t}\n\t};\n}\n\n// IE change delegation and checkbox/radio fix\nif ( !support.changeBubbles ) {\n\n\tjQuery.event.special.change = {\n\n\t\tsetup: function() {\n\n\t\t\tif ( rformElems.test( this.nodeName ) ) {\n\t\t\t\t// IE doesn't fire change on a check/radio until blur; trigger it on click\n\t\t\t\t// after a propertychange. Eat the blur-change in special.change.handle.\n\t\t\t\t// This still fires onchange a second time for check/radio after blur.\n\t\t\t\tif ( this.type === \"checkbox\" || this.type === \"radio\" ) {\n\t\t\t\t\tjQuery.event.add( this, \"propertychange._change\", function( event ) {\n\t\t\t\t\t\tif ( event.originalEvent.propertyName === \"checked\" ) {\n\t\t\t\t\t\t\tthis._just_changed = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery.event.add( this, \"click._change\", function( event ) {\n\t\t\t\t\t\tif ( this._just_changed && !event.isTrigger ) {\n\t\t\t\t\t\t\tthis._just_changed = false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// Allow triggered, simulated change events (#11500)\n\t\t\t\t\t\tjQuery.event.simulate( \"change\", this, event, true );\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t// Delegated event; lazy-add a change handler on descendant inputs\n\t\t\tjQuery.event.add( this, \"beforeactivate._change\", function( e ) {\n\t\t\t\tvar elem = e.target;\n\n\t\t\t\tif ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, \"changeBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( elem, \"change._change\", function( event ) {\n\t\t\t\t\t\tif ( this.parentNode && !event.isSimulated && !event.isTrigger ) {\n\t\t\t\t\t\t\tjQuery.event.simulate( \"change\", this.parentNode, event, true );\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( elem, \"changeBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t},\n\n\t\thandle: function( event ) {\n\t\t\tvar elem = event.target;\n\n\t\t\t// Swallow native change events from checkbox/radio, we already triggered them above\n\t\t\tif ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== \"radio\" && elem.type !== \"checkbox\") ) {\n\t\t\t\treturn event.handleObj.handler.apply( this, arguments );\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\tjQuery.event.remove( this, \"._change\" );\n\n\t\t\treturn !rformElems.test( this.nodeName );\n\t\t}\n\t};\n}\n\n// Create \"bubbling\" focus and blur events\nif ( !support.focusinBubbles ) {\n\tjQuery.each({ focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );\n\t\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tjQuery._data( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tjQuery._removeData( doc, fix );\n\t\t\t\t} else {\n\t\t\t\t\tjQuery._data( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\njQuery.fn.extend({\n\n\ton: function( types, selector, data, fn, /*INTERNAL*/ one ) {\n\t\tvar type, origFn;\n\n\t\t// Types can be a map of types/handlers\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-Object, selector, data )\n\t\t\tif ( typeof selector !== \"string\" ) {\n\t\t\t\t// ( types-Object, data )\n\t\t\t\tdata = data || selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.on( type, selector, data, types[ type ], one );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( data == null && fn == null ) {\n\t\t\t// ( types, fn )\n\t\t\tfn = selector;\n\t\t\tdata = selector = undefined;\n\t\t} else if ( fn == null ) {\n\t\t\tif ( typeof selector === \"string\" ) {\n\t\t\t\t// ( types, selector, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = undefined;\n\t\t\t} else {\n\t\t\t\t// ( types, data, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t} else if ( !fn ) {\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( one === 1 ) {\n\t\t\torigFn = fn;\n\t\t\tfn = function( event ) {\n\t\t\t\t// Can use an empty set, since event contains the info\n\t\t\t\tjQuery().off( event );\n\t\t\t\treturn origFn.apply( this, arguments );\n\t\t\t};\n\t\t\t// Use same guid so caller can remove using origFn\n\t\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.add( this, types, fn, data, selector );\n\t\t});\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn this.on( types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ? handleObj.origType + \".\" + handleObj.namespace : handleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t});\n\t},\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t});\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[0];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n});\n\n\nfunction createSafeFragment( document ) {\n\tvar list = nodeNames.split( \"|\" ),\n\t\tsafeFrag = document.createDocumentFragment();\n\n\tif ( safeFrag.createElement ) {\n\t\twhile ( list.length ) {\n\t\t\tsafeFrag.createElement(\n\t\t\t\tlist.pop()\n\t\t\t);\n\t\t}\n\t}\n\treturn safeFrag;\n}\n\nvar nodeNames = \"abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|\" +\n\t\t\"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video\",\n\trinlinejQuery = / jQuery\\d+=\"(?:null|\\d+)\"/g,\n\trnoshimcache = new RegExp(\"<(?:\" + nodeNames + \")[\\\\s/>]\", \"i\"),\n\trleadingWhitespace = /^\\s+/,\n\trxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>]*)\\/>/gi,\n\trtagName = /<([\\w:]+)/,\n\trtbody = /<tbody/i,\n\trhtml = /<|&#?\\w+;/,\n\trnoInnerhtml = /<(?:script|style|link)/i,\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trscriptType = /^$|\\/(?:java|ecma)script/i,\n\trscriptTypeMasked = /^true\\/(.*)/,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g,\n\n\t// We have to close these tags to support XHTML (#13200)\n\twrapMap = {\n\t\toption: [ 1, \"<select multiple='multiple'>\", \"</select>\" ],\n\t\tlegend: [ 1, \"<fieldset>\", \"</fieldset>\" ],\n\t\tarea: [ 1, \"<map>\", \"</map>\" ],\n\t\tparam: [ 1, \"<object>\", \"</object>\" ],\n\t\tthead: [ 1, \"<table>\", \"</table>\" ],\n\t\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\t\tcol: [ 2, \"<table><tbody></tbody><colgroup>\", \"</colgroup></table>\" ],\n\t\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t\t// IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags,\n\t\t// unless wrapped in a div with non-breaking characters in front of it.\n\t\t_default: support.htmlSerialize ? [ 0, \"\", \"\" ] : [ 1, \"X<div>\", \"</div>\"  ]\n\t},\n\tsafeFragment = createSafeFragment( document ),\n\tfragmentDiv = safeFragment.appendChild( document.createElement(\"div\") );\n\nwrapMap.optgroup = wrapMap.option;\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\nfunction getAll( context, tag ) {\n\tvar elems, elem,\n\t\ti = 0,\n\t\tfound = typeof context.getElementsByTagName !== strundefined ? context.getElementsByTagName( tag || \"*\" ) :\n\t\t\ttypeof context.querySelectorAll !== strundefined ? context.querySelectorAll( tag || \"*\" ) :\n\t\t\tundefined;\n\n\tif ( !found ) {\n\t\tfor ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( !tag || jQuery.nodeName( elem, tag ) ) {\n\t\t\t\tfound.push( elem );\n\t\t\t} else {\n\t\t\t\tjQuery.merge( found, getAll( elem, tag ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn tag === undefined || tag && jQuery.nodeName( context, tag ) ?\n\t\tjQuery.merge( [ context ], found ) :\n\t\tfound;\n}\n\n// Used in buildFragment, fixes the defaultChecked property\nfunction fixDefaultChecked( elem ) {\n\tif ( rcheckableType.test( elem.type ) ) {\n\t\telem.defaultChecked = elem.checked;\n\t}\n}\n\n// Support: IE<8\n// Manipulating tables requires a tbody\nfunction manipulationTarget( elem, content ) {\n\treturn jQuery.nodeName( elem, \"table\" ) &&\n\t\tjQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ?\n\n\t\telem.getElementsByTagName(\"tbody\")[0] ||\n\t\t\telem.appendChild( elem.ownerDocument.createElement(\"tbody\") ) :\n\t\telem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = (jQuery.find.attr( elem, \"type\" ) !== null) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tvar match = rscriptTypeMasked.exec( elem.type );\n\tif ( match ) {\n\t\telem.type = match[1];\n\t} else {\n\t\telem.removeAttribute(\"type\");\n\t}\n\treturn elem;\n}\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar elem,\n\t\ti = 0;\n\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\tjQuery._data( elem, \"globalEval\", !refElements || jQuery._data( refElements[i], \"globalEval\" ) );\n\t}\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\n\tif ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {\n\t\treturn;\n\t}\n\n\tvar type, i, l,\n\t\toldData = jQuery._data( src ),\n\t\tcurData = jQuery._data( dest, oldData ),\n\t\tevents = oldData.events;\n\n\tif ( events ) {\n\t\tdelete curData.handle;\n\t\tcurData.events = {};\n\n\t\tfor ( type in events ) {\n\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t}\n\t\t}\n\t}\n\n\t// make the cloned public data object a copy from the original\n\tif ( curData.data ) {\n\t\tcurData.data = jQuery.extend( {}, curData.data );\n\t}\n}\n\nfunction fixCloneNodeIssues( src, dest ) {\n\tvar nodeName, e, data;\n\n\t// We do not need to do anything for non-Elements\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\tnodeName = dest.nodeName.toLowerCase();\n\n\t// IE6-8 copies events bound via attachEvent when using cloneNode.\n\tif ( !support.noCloneEvent && dest[ jQuery.expando ] ) {\n\t\tdata = jQuery._data( dest );\n\n\t\tfor ( e in data.events ) {\n\t\t\tjQuery.removeEvent( dest, e, data.handle );\n\t\t}\n\n\t\t// Event data gets referenced instead of copied if the expando gets copied too\n\t\tdest.removeAttribute( jQuery.expando );\n\t}\n\n\t// IE blanks contents when cloning scripts, and tries to evaluate newly-set text\n\tif ( nodeName === \"script\" && dest.text !== src.text ) {\n\t\tdisableScript( dest ).text = src.text;\n\t\trestoreScript( dest );\n\n\t// IE6-10 improperly clones children of object elements using classid.\n\t// IE10 throws NoModificationAllowedError if parent is null, #12132.\n\t} else if ( nodeName === \"object\" ) {\n\t\tif ( dest.parentNode ) {\n\t\t\tdest.outerHTML = src.outerHTML;\n\t\t}\n\n\t\t// This path appears unavoidable for IE9. When cloning an object\n\t\t// element in IE9, the outerHTML strategy above is not sufficient.\n\t\t// If the src has innerHTML and the destination does not,\n\t\t// copy the src.innerHTML into the dest.innerHTML. #10324\n\t\tif ( support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) {\n\t\t\tdest.innerHTML = src.innerHTML;\n\t\t}\n\n\t} else if ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\t// IE6-8 fails to persist the checked state of a cloned checkbox\n\t\t// or radio button. Worse, IE6-7 fail to give the cloned element\n\t\t// a checked appearance if the defaultChecked value isn't also set\n\n\t\tdest.defaultChecked = dest.checked = src.checked;\n\n\t\t// IE6-7 get confused and end up setting the value of a cloned\n\t\t// checkbox/radio button to an empty string instead of \"on\"\n\t\tif ( dest.value !== src.value ) {\n\t\t\tdest.value = src.value;\n\t\t}\n\n\t// IE6-8 fails to return the selected option to the default selected\n\t// state when cloning options\n\t} else if ( nodeName === \"option\" ) {\n\t\tdest.defaultSelected = dest.selected = src.defaultSelected;\n\n\t// IE6-8 fails to set the defaultValue to the correct value when\n\t// cloning other types of input fields\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\njQuery.extend({\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar destElements, node, clone, i, srcElements,\n\t\t\tinPage = jQuery.contains( elem.ownerDocument, elem );\n\n\t\tif ( support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( \"<\" + elem.nodeName + \">\" ) ) {\n\t\t\tclone = elem.cloneNode( true );\n\n\t\t// IE<=8 does not properly clone detached, unknown element nodes\n\t\t} else {\n\t\t\tfragmentDiv.innerHTML = elem.outerHTML;\n\t\t\tfragmentDiv.removeChild( clone = fragmentDiv.firstChild );\n\t\t}\n\n\t\tif ( (!support.noCloneEvent || !support.noCloneChecked) &&\n\t\t\t\t(elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\t// Fix all IE cloning issues\n\t\t\tfor ( i = 0; (node = srcElements[i]) != null; ++i ) {\n\t\t\t\t// Ensure that the destination node is not null; Fixes #9587\n\t\t\t\tif ( destElements[i] ) {\n\t\t\t\t\tfixCloneNodeIssues( node, destElements[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0; (node = srcElements[i]) != null; i++ ) {\n\t\t\t\t\tcloneCopyEvent( node, destElements[i] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\tdestElements = srcElements = node = null;\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tbuildFragment: function( elems, context, scripts, selection ) {\n\t\tvar j, elem, contains,\n\t\t\ttmp, tag, tbody, wrap,\n\t\t\tl = elems.length,\n\n\t\t\t// Ensure a safe fragment\n\t\t\tsafe = createSafeFragment( context ),\n\n\t\t\tnodes = [],\n\t\t\ti = 0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\telem = elems[ i ];\n\n\t\t\tif ( elem || elem === 0 ) {\n\n\t\t\t\t// Add nodes directly\n\t\t\t\tif ( jQuery.type( elem ) === \"object\" ) {\n\t\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t\t// Convert non-html into a text node\n\t\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t\t// Convert html into DOM nodes\n\t\t\t\t} else {\n\t\t\t\t\ttmp = tmp || safe.appendChild( context.createElement(\"div\") );\n\n\t\t\t\t\t// Deserialize a standard representation\n\t\t\t\t\ttag = (rtagName.exec( elem ) || [ \"\", \"\" ])[ 1 ].toLowerCase();\n\t\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\n\t\t\t\t\ttmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, \"<$1></$2>\" ) + wrap[2];\n\n\t\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\t\tj = wrap[0];\n\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Manually add leading whitespace removed by IE\n\t\t\t\t\tif ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {\n\t\t\t\t\t\tnodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove IE's autoinserted <tbody> from table fragments\n\t\t\t\t\tif ( !support.tbody ) {\n\n\t\t\t\t\t\t// String was a <table>, *may* have spurious <tbody>\n\t\t\t\t\t\telem = tag === \"table\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\ttmp.firstChild :\n\n\t\t\t\t\t\t\t// String was a bare <thead> or <tfoot>\n\t\t\t\t\t\t\twrap[1] === \"<table>\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\t\ttmp :\n\t\t\t\t\t\t\t\t0;\n\n\t\t\t\t\t\tj = elem && elem.childNodes.length;\n\t\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\t\tif ( jQuery.nodeName( (tbody = elem.childNodes[j]), \"tbody\" ) && !tbody.childNodes.length ) {\n\t\t\t\t\t\t\t\telem.removeChild( tbody );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t\t// Fix #12392 for WebKit and IE > 9\n\t\t\t\t\ttmp.textContent = \"\";\n\n\t\t\t\t\t// Fix #12392 for oldIE\n\t\t\t\t\twhile ( tmp.firstChild ) {\n\t\t\t\t\t\ttmp.removeChild( tmp.firstChild );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remember the top-level container for proper cleanup\n\t\t\t\t\ttmp = safe.lastChild;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Fix #11356: Clear elements from fragment\n\t\tif ( tmp ) {\n\t\t\tsafe.removeChild( tmp );\n\t\t}\n\n\t\t// Reset defaultChecked for any radios and checkboxes\n\t\t// about to be appended to the DOM in IE 6/7 (#8060)\n\t\tif ( !support.appendChecked ) {\n\t\t\tjQuery.grep( getAll( nodes, \"input\" ), fixDefaultChecked );\n\t\t}\n\n\t\ti = 0;\n\t\twhile ( (elem = nodes[ i++ ]) ) {\n\n\t\t\t// #4087 - If origin and destination elements are the same, and this is\n\t\t\t// that element, do not do anything\n\t\t\tif ( selection && jQuery.inArray( elem, selection ) !== -1 ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tcontains = jQuery.contains( elem.ownerDocument, elem );\n\n\t\t\t// Append to fragment\n\t\t\ttmp = getAll( safe.appendChild( elem ), \"script\" );\n\n\t\t\t// Preserve script evaluation history\n\t\t\tif ( contains ) {\n\t\t\t\tsetGlobalEval( tmp );\n\t\t\t}\n\n\t\t\t// Capture executables\n\t\t\tif ( scripts ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (elem = tmp[ j++ ]) ) {\n\t\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\t\tscripts.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\ttmp = null;\n\n\t\treturn safe;\n\t},\n\n\tcleanData: function( elems, /* internal */ acceptData ) {\n\t\tvar elem, type, id, data,\n\t\t\ti = 0,\n\t\t\tinternalKey = jQuery.expando,\n\t\t\tcache = jQuery.cache,\n\t\t\tdeleteExpando = support.deleteExpando,\n\t\t\tspecial = jQuery.event.special;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( acceptData || jQuery.acceptData( elem ) ) {\n\n\t\t\t\tid = elem[ internalKey ];\n\t\t\t\tdata = id && cache[ id ];\n\n\t\t\t\tif ( data ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove cache only if it was not already removed by jQuery.event.remove\n\t\t\t\t\tif ( cache[ id ] ) {\n\n\t\t\t\t\t\tdelete cache[ id ];\n\n\t\t\t\t\t\t// IE does not allow us to delete expando properties from nodes,\n\t\t\t\t\t\t// nor does it have a removeAttribute function on Document nodes;\n\t\t\t\t\t\t// we must handle all of these cases\n\t\t\t\t\t\tif ( deleteExpando ) {\n\t\t\t\t\t\t\tdelete elem[ internalKey ];\n\n\t\t\t\t\t\t} else if ( typeof elem.removeAttribute !== strundefined ) {\n\t\t\t\t\t\t\telem.removeAttribute( internalKey );\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\telem[ internalKey ] = null;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tdeletedIds.push( id );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\njQuery.fn.extend({\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t});\n\t},\n\n\tprepend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t});\n\t},\n\n\tbefore: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t});\n\t},\n\n\tafter: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t});\n\t},\n\n\tremove: function( selector, keepData /* Internal Use Only */ ) {\n\t\tvar elem,\n\t\t\telems = selector ? jQuery.filter( selector, this ) : this,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\n\t\t\tif ( !keepData && elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem ) );\n\t\t\t}\n\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\tif ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\t\tsetGlobalEval( getAll( elem, \"script\" ) );\n\t\t\t\t}\n\t\t\t\telem.parentNode.removeChild( elem );\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = this[i]) != null; i++ ) {\n\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t}\n\n\t\t\t// Remove any remaining nodes\n\t\t\twhile ( elem.firstChild ) {\n\t\t\t\telem.removeChild( elem.firstChild );\n\t\t\t}\n\n\t\t\t// If this is a select, ensure that it displays empty (#12336)\n\t\t\t// Support: IE<9\n\t\t\tif ( elem.options && jQuery.nodeName( elem, \"select\" ) ) {\n\t\t\t\telem.options.length = 0;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map(function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t});\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined ) {\n\t\t\t\treturn elem.nodeType === 1 ?\n\t\t\t\t\telem.innerHTML.replace( rinlinejQuery, \"\" ) :\n\t\t\t\t\tundefined;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t( support.htmlSerialize || !rnoshimcache.test( value )  ) &&\n\t\t\t\t( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&\n\t\t\t\t!wrapMap[ (rtagName.exec( value ) || [ \"\", \"\" ])[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = value.replace( rxhtmlTag, \"<$1></$2>\" );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor (; i < l; i++ ) {\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\telem = this[i] || {};\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar arg = arguments[ 0 ];\n\n\t\t// Make the changes, replacing each context element with the new content\n\t\tthis.domManip( arguments, function( elem ) {\n\t\t\targ = this.parentNode;\n\n\t\t\tjQuery.cleanData( getAll( this ) );\n\n\t\t\tif ( arg ) {\n\t\t\t\targ.replaceChild( elem, this );\n\t\t\t}\n\t\t});\n\n\t\t// Force removal if there was no new content (e.g., from empty arguments)\n\t\treturn arg && (arg.length || arg.nodeType) ? this : this.remove();\n\t},\n\n\tdetach: function( selector ) {\n\t\treturn this.remove( selector, true );\n\t},\n\n\tdomManip: function( args, callback ) {\n\n\t\t// Flatten any nested arrays\n\t\targs = concat.apply( [], args );\n\n\t\tvar first, node, hasScripts,\n\t\t\tscripts, doc, fragment,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tset = this,\n\t\t\tiNoClone = l - 1,\n\t\t\tvalue = args[0],\n\t\t\tisFunction = jQuery.isFunction( value );\n\n\t\t// We can't cloneNode fragments that contain checked, in WebKit\n\t\tif ( isFunction ||\n\t\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\t\treturn this.each(function( index ) {\n\t\t\t\tvar self = set.eq( index );\n\t\t\t\tif ( isFunction ) {\n\t\t\t\t\targs[0] = value.call( this, index, self.html() );\n\t\t\t\t}\n\t\t\t\tself.domManip( args, callback );\n\t\t\t});\n\t\t}\n\n\t\tif ( l ) {\n\t\t\tfragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );\n\t\t\tfirst = fragment.firstChild;\n\n\t\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\t\tfragment = first;\n\t\t\t}\n\n\t\t\tif ( first ) {\n\t\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\t\thasScripts = scripts.length;\n\n\t\t\t\t// Use the original fragment for the last item instead of the first because it can end up\n\t\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\tnode = fragment;\n\n\t\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tcallback.call( this[i], node, i );\n\t\t\t\t}\n\n\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t\t// Reenable scripts\n\t\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t\t!jQuery._data( node, \"globalEval\" ) && jQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\t\tif ( node.src ) {\n\t\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\t\tif ( jQuery._evalUrl ) {\n\t\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.globalEval( ( node.text || node.textContent || node.innerHTML || \"\" ).replace( rcleanScript, \"\" ) );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Fix #11809: Avoid leaking memory\n\t\t\t\tfragment = first = null;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t}\n});\n\njQuery.each({\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\ti = 0,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone(true);\n\t\t\tjQuery( insert[i] )[ original ]( elems );\n\n\t\t\t// Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get()\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\n\n\nvar iframe,\n\telemdisplay = {};\n\n/**\n * Retrieve the actual display of a element\n * @param {String} name nodeName of the element\n * @param {Object} doc Document object\n */\n// Called only from within defaultDisplay\nfunction actualDisplay( name, doc ) {\n\tvar style,\n\t\telem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),\n\n\t\t// getDefaultComputedStyle might be reliably used only on attached element\n\t\tdisplay = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ?\n\n\t\t\t// Use of this method is a temporary fix (more like optmization) until something better comes along,\n\t\t\t// since it was removed from specification and supported only in FF\n\t\t\tstyle.display : jQuery.css( elem[ 0 ], \"display\" );\n\n\t// We don't have any data stored on the element,\n\t// so use \"detach\" method as fast way to get rid of the element\n\telem.detach();\n\n\treturn display;\n}\n\n/**\n * Try to determine the default display value of an element\n * @param {String} nodeName\n */\nfunction defaultDisplay( nodeName ) {\n\tvar doc = document,\n\t\tdisplay = elemdisplay[ nodeName ];\n\n\tif ( !display ) {\n\t\tdisplay = actualDisplay( nodeName, doc );\n\n\t\t// If the simple way fails, read from inside an iframe\n\t\tif ( display === \"none\" || !display ) {\n\n\t\t\t// Use the already-created iframe if possible\n\t\t\tiframe = (iframe || jQuery( \"<iframe frameborder='0' width='0' height='0'/>\" )).appendTo( doc.documentElement );\n\n\t\t\t// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse\n\t\t\tdoc = ( iframe[ 0 ].contentWindow || iframe[ 0 ].contentDocument ).document;\n\n\t\t\t// Support: IE\n\t\t\tdoc.write();\n\t\t\tdoc.close();\n\n\t\t\tdisplay = actualDisplay( nodeName, doc );\n\t\t\tiframe.detach();\n\t\t}\n\n\t\t// Store the correct default display\n\t\telemdisplay[ nodeName ] = display;\n\t}\n\n\treturn display;\n}\n\n\n(function() {\n\tvar shrinkWrapBlocksVal;\n\n\tsupport.shrinkWrapBlocks = function() {\n\t\tif ( shrinkWrapBlocksVal != null ) {\n\t\t\treturn shrinkWrapBlocksVal;\n\t\t}\n\n\t\t// Will be changed later if needed.\n\t\tshrinkWrapBlocksVal = false;\n\n\t\t// Minified: var b,c,d\n\t\tvar div, body, container;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\t// Support: IE6\n\t\t// Check if elements with layout shrink-wrap their children\n\t\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t\t// Reset CSS: box-sizing; display; margin; border\n\t\t\tdiv.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;\" +\n\t\t\t\t\"padding:1px;width:1px;zoom:1\";\n\t\t\tdiv.appendChild( document.createElement( \"div\" ) ).style.width = \"5px\";\n\t\t\tshrinkWrapBlocksVal = div.offsetWidth !== 3;\n\t\t}\n\n\t\tbody.removeChild( container );\n\n\t\treturn shrinkWrapBlocksVal;\n\t};\n\n})();\nvar rmargin = (/^margin/);\n\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\n\n\nvar getStyles, curCSS,\n\trposition = /^(top|right|bottom|left)$/;\n\nif ( window.getComputedStyle ) {\n\tgetStyles = function( elem ) {\n\t\t// Support: IE<=11+, Firefox<=30+ (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tif ( elem.ownerDocument.defaultView.opener ) {\n\t\t\treturn elem.ownerDocument.defaultView.getComputedStyle( elem, null );\n\t\t}\n\n\t\treturn window.getComputedStyle( elem, null );\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar width, minWidth, maxWidth, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\n\t\t// getPropertyValue is only needed for .css('filter') in IE9, see #12537\n\t\tret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;\n\n\t\tif ( computed ) {\n\n\t\t\tif ( ret === \"\" && !jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\tret = jQuery.style( elem, name );\n\t\t\t}\n\n\t\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t\t// Chrome < 17 and Safari 5.0 uses \"computed value\" instead of \"used value\" for margin-right\n\t\t\t// Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels\n\t\t\t// this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values\n\t\t\tif ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {\n\n\t\t\t\t// Remember the original values\n\t\t\t\twidth = style.width;\n\t\t\t\tminWidth = style.minWidth;\n\t\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t\t// Put in the new values to get a computed value out\n\t\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\t\tret = computed.width;\n\n\t\t\t\t// Revert the changed values\n\t\t\t\tstyle.width = width;\n\t\t\t\tstyle.minWidth = minWidth;\n\t\t\t\tstyle.maxWidth = maxWidth;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\";\n\t};\n} else if ( document.documentElement.currentStyle ) {\n\tgetStyles = function( elem ) {\n\t\treturn elem.currentStyle;\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar left, rs, rsLeft, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\t\tret = computed ? computed[ name ] : undefined;\n\n\t\t// Avoid setting ret to empty string here\n\t\t// so we don't default to auto\n\t\tif ( ret == null && style && style[ name ] ) {\n\t\t\tret = style[ name ];\n\t\t}\n\n\t\t// From the awesome hack by Dean Edwards\n\t\t// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291\n\n\t\t// If we're not dealing with a regular pixel number\n\t\t// but a number that has a weird ending, we need to convert it to pixels\n\t\t// but not position css attributes, as those are proportional to the parent element instead\n\t\t// and we can't measure the parent instead because it might trigger a \"stacking dolls\" problem\n\t\tif ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\tleft = style.left;\n\t\t\trs = elem.runtimeStyle;\n\t\t\trsLeft = rs && rs.left;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = elem.currentStyle.left;\n\t\t\t}\n\t\t\tstyle.left = name === \"fontSize\" ? \"1em\" : ret;\n\t\t\tret = style.pixelLeft + \"px\";\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.left = left;\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = rsLeft;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\" || \"auto\";\n\t};\n}\n\n\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tvar condition = conditionFn();\n\n\t\t\tif ( condition == null ) {\n\t\t\t\t// The test was not ready at this point; screw the hook this time\n\t\t\t\t// but check again when needed next time.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( condition ) {\n\t\t\t\t// Hook not needed (or it's not possible to use it due to missing dependency),\n\t\t\t\t// remove it.\n\t\t\t\t// Since there are no other hooks for marginRight, remove the whole object.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\n\t\t\treturn (this.get = hookFn).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\n(function() {\n\t// Minified: var b,c,d,e,f,g, h,i\n\tvar div, style, a, pixelPositionVal, boxSizingReliableVal,\n\t\treliableHiddenOffsetsVal, reliableMarginRightVal;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName( \"a\" )[ 0 ];\n\tstyle = a && a.style;\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !style ) {\n\t\treturn;\n\t}\n\n\tstyle.cssText = \"float:left;opacity:.5\";\n\n\t// Support: IE<9\n\t// Make sure that element opacity exists (as opposed to filter)\n\tsupport.opacity = style.opacity === \"0.5\";\n\n\t// Verify style float existence\n\t// (IE uses styleFloat instead of cssFloat)\n\tsupport.cssFloat = !!style.cssFloat;\n\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\t// Support: Firefox<29, Android 2.3\n\t// Vendor-prefix box-sizing\n\tsupport.boxSizing = style.boxSizing === \"\" || style.MozBoxSizing === \"\" ||\n\t\tstyle.WebkitBoxSizing === \"\";\n\n\tjQuery.extend(support, {\n\t\treliableHiddenOffsets: function() {\n\t\t\tif ( reliableHiddenOffsetsVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableHiddenOffsetsVal;\n\t\t},\n\n\t\tboxSizingReliable: function() {\n\t\t\tif ( boxSizingReliableVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\n\t\tpixelPosition: function() {\n\t\t\tif ( pixelPositionVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn pixelPositionVal;\n\t\t},\n\n\t\t// Support: Android 2.3\n\t\treliableMarginRight: function() {\n\t\t\tif ( reliableMarginRightVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableMarginRightVal;\n\t\t}\n\t});\n\n\tfunction computeStyleTests() {\n\t\t// Minified: var b,c,d,j\n\t\tvar div, body, container, contents;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\tdiv.style.cssText =\n\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t// Vendor-prefix box-sizing\n\t\t\t\"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;\" +\n\t\t\t\"box-sizing:border-box;display:block;margin-top:1%;top:1%;\" +\n\t\t\t\"border:1px;padding:1px;width:4px;position:absolute\";\n\n\t\t// Support: IE<9\n\t\t// Assume reasonable values in the absence of getComputedStyle\n\t\tpixelPositionVal = boxSizingReliableVal = false;\n\t\treliableMarginRightVal = true;\n\n\t\t// Check for getComputedStyle so that this code is not run in IE<9.\n\t\tif ( window.getComputedStyle ) {\n\t\t\tpixelPositionVal = ( window.getComputedStyle( div, null ) || {} ).top !== \"1%\";\n\t\t\tboxSizingReliableVal =\n\t\t\t\t( window.getComputedStyle( div, null ) || { width: \"4px\" } ).width === \"4px\";\n\n\t\t\t// Support: Android 2.3\n\t\t\t// Div with explicit width and no margin-right incorrectly\n\t\t\t// gets computed margin-right based on width of container (#3333)\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\tcontents = div.appendChild( document.createElement( \"div\" ) );\n\n\t\t\t// Reset CSS: box-sizing; display; margin; border; padding\n\t\t\tcontents.style.cssText = div.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;padding:0\";\n\t\t\tcontents.style.marginRight = contents.style.width = \"0\";\n\t\t\tdiv.style.width = \"1px\";\n\n\t\t\treliableMarginRightVal =\n\t\t\t\t!parseFloat( ( window.getComputedStyle( contents, null ) || {} ).marginRight );\n\n\t\t\tdiv.removeChild( contents );\n\t\t}\n\n\t\t// Support: IE8\n\t\t// Check if table cells still have offsetWidth/Height when they are set\n\t\t// to display:none and there are still other visible table cells in a\n\t\t// table row; if so, offsetWidth/Height are not reliable for use when\n\t\t// determining if an element has been hidden directly using\n\t\t// display:none (it is still safe to use offsets if a parent element is\n\t\t// hidden; don safety goggles and see bug #4512 for more information).\n\t\tdiv.innerHTML = \"<table><tr><td></td><td>t</td></tr></table>\";\n\t\tcontents = div.getElementsByTagName( \"td\" );\n\t\tcontents[ 0 ].style.cssText = \"margin:0;border:0;padding:0;display:none\";\n\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\tif ( reliableHiddenOffsetsVal ) {\n\t\t\tcontents[ 0 ].style.display = \"\";\n\t\t\tcontents[ 1 ].style.display = \"none\";\n\t\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\t}\n\n\t\tbody.removeChild( container );\n\t}\n\n})();\n\n\n// A method for quickly swapping in/out CSS properties to get correct calculations.\njQuery.swap = function( elem, options, callback, args ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.apply( elem, args || [] );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar\n\t\tralpha = /alpha\\([^)]*\\)/i,\n\tropacity = /opacity\\s*=\\s*([^)]*)/,\n\n\t// swappable if display is none or starts with table except \"table\", \"table-cell\", or \"table-caption\"\n\t// see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trnumsplit = new RegExp( \"^(\" + pnum + \")(.*)$\", \"i\" ),\n\trrelNum = new RegExp( \"^([+-])=(\" + pnum + \")\", \"i\" ),\n\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t},\n\n\tcssPrefixes = [ \"Webkit\", \"O\", \"Moz\", \"ms\" ];\n\n\n// return a css property mapped to a potentially vendor prefixed property\nfunction vendorPropName( style, name ) {\n\n\t// shortcut for names that are not vendor prefixed\n\tif ( name in style ) {\n\t\treturn name;\n\t}\n\n\t// check for vendor prefixed names\n\tvar capName = name.charAt(0).toUpperCase() + name.slice(1),\n\t\torigName = name,\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in style ) {\n\t\t\treturn name;\n\t\t}\n\t}\n\n\treturn origName;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem, hidden,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\" );\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\t\t\t// Reset the inline display of this element to learn if it is\n\t\t\t// being hidden by cascaded rules or not\n\t\t\tif ( !values[ index ] && display === \"none\" ) {\n\t\t\t\telem.style.display = \"\";\n\t\t\t}\n\n\t\t\t// Set elements which have been overridden with display: none\n\t\t\t// in a stylesheet to whatever the default browser style is\n\t\t\t// for such an element\n\t\t\tif ( elem.style.display === \"\" && isHidden( elem ) ) {\n\t\t\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\", defaultDisplay(elem.nodeName) );\n\t\t\t}\n\t\t} else {\n\t\t\thidden = isHidden( elem );\n\n\t\t\tif ( display && display !== \"none\" || !hidden ) {\n\t\t\t\tjQuery._data( elem, \"olddisplay\", hidden ? display : jQuery.css( elem, \"display\" ) );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of most of the elements in a second loop\n\t// to avoid the constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( !show || elem.style.display === \"none\" || elem.style.display === \"\" ) {\n\t\t\telem.style.display = show ? values[ index ] || \"\" : \"none\";\n\t\t}\n\t}\n\n\treturn elements;\n}\n\nfunction setPositiveNumber( elem, value, subtract ) {\n\tvar matches = rnumsplit.exec( value );\n\treturn matches ?\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {\n\tvar i = extra === ( isBorderBox ? \"border\" : \"content\" ) ?\n\t\t// If we already have the right measurement, avoid augmentation\n\t\t4 :\n\t\t// Otherwise initialize for horizontal or vertical properties\n\t\tname === \"width\" ? 1 : 0,\n\n\t\tval = 0;\n\n\tfor ( ; i < 4; i += 2 ) {\n\t\t// both box models exclude margin, so add it if we want it\n\t\tif ( extra === \"margin\" ) {\n\t\t\tval += jQuery.css( elem, extra + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\tif ( isBorderBox ) {\n\t\t\t// border-box includes padding, so remove it if we want content\n\t\t\tif ( extra === \"content\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// at this point, extra isn't border nor margin, so remove border\n\t\t\tif ( extra !== \"margin\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t} else {\n\t\t\t// at this point, extra isn't content, so add padding\n\t\t\tval += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// at this point, extra isn't content nor padding, so add border\n\t\t\tif ( extra !== \"padding\" ) {\n\t\t\t\tval += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn val;\n}\n\nfunction getWidthOrHeight( elem, name, extra ) {\n\n\t// Start with offset property, which is equivalent to the border-box value\n\tvar valueIsBorderBox = true,\n\t\tval = name === \"width\" ? elem.offsetWidth : elem.offsetHeight,\n\t\tstyles = getStyles( elem ),\n\t\tisBorderBox = support.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t// some non-html elements return undefined for offsetWidth, so check for null/undefined\n\t// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285\n\t// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668\n\tif ( val <= 0 || val == null ) {\n\t\t// Fall back to computed then uncomputed css if necessary\n\t\tval = curCSS( elem, name, styles );\n\t\tif ( val < 0 || val == null ) {\n\t\t\tval = elem.style[ name ];\n\t\t}\n\n\t\t// Computed unit is not pixels. Stop here and return.\n\t\tif ( rnumnonpx.test(val) ) {\n\t\t\treturn val;\n\t\t}\n\n\t\t// we need the check for style in case a browser which returns unreliable values\n\t\t// for getComputedStyle silently falls back to the reliable elem.style\n\t\tvalueIsBorderBox = isBorderBox && ( support.boxSizingReliable() || val === elem.style[ name ] );\n\n\t\t// Normalize \"\", auto, and prepare for extra\n\t\tval = parseFloat( val ) || 0;\n\t}\n\n\t// use the active box-sizing model to add/subtract irrelevant styles\n\treturn ( val +\n\t\taugmentWidthOrHeight(\n\t\t\telem,\n\t\t\tname,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend({\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {\n\t\t// normalize float css property\n\t\t\"float\": support.cssFloat ? \"cssFloat\" : \"styleFloat\"\n\t},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = jQuery.camelCase( name ),\n\t\t\tstyle = elem.style;\n\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// convert relative number strings (+= or -=) to relative numbers. #7345\n\t\t\tif ( type === \"string\" && (ret = rrelNum.exec( value )) ) {\n\t\t\t\tvalue = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set. See: #7116\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add 'px' to the (except for certain CSS properties)\n\t\t\tif ( type === \"number\" && !jQuery.cssNumber[ origName ] ) {\n\t\t\t\tvalue += \"px\";\n\t\t\t}\n\n\t\t\t// Fixes #8908, it can be done more correctly by specifing setters in cssHooks,\n\t\t\t// but it would mean to define eight (for every problematic property) identical functions\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf(\"background\") === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !(\"set\" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {\n\n\t\t\t\t// Support: IE\n\t\t\t\t// Swallow errors from 'invalid' CSS values (#5509)\n\t\t\t\ttry {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t} else {\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar num, val, hooks,\n\t\t\torigName = jQuery.camelCase( name );\n\n\t\t// Make sure that we're working with the right name\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t//convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Return, converting to number if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || jQuery.isNumeric( num ) ? num || 0 : val;\n\t\t}\n\t\treturn val;\n\t}\n});\n\njQuery.each([ \"height\", \"width\" ], function( i, name ) {\n\tjQuery.cssHooks[ name ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\t\t\t\t// certain elements can have dimension info if we invisibly show them\n\t\t\t\t// however, it must have a current display style that would benefit from this\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) && elem.offsetWidth === 0 ?\n\t\t\t\t\tjQuery.swap( elem, cssShow, function() {\n\t\t\t\t\t\treturn getWidthOrHeight( elem, name, extra );\n\t\t\t\t\t}) :\n\t\t\t\t\tgetWidthOrHeight( elem, name, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar styles = extra && getStyles( elem );\n\t\t\treturn setPositiveNumber( elem, value, extra ?\n\t\t\t\taugmentWidthOrHeight(\n\t\t\t\t\telem,\n\t\t\t\t\tname,\n\t\t\t\t\textra,\n\t\t\t\t\tsupport.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\t\tstyles\n\t\t\t\t) : 0\n\t\t\t);\n\t\t}\n\t};\n});\n\nif ( !support.opacity ) {\n\tjQuery.cssHooks.opacity = {\n\t\tget: function( elem, computed ) {\n\t\t\t// IE uses filters for opacity\n\t\t\treturn ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || \"\" ) ?\n\t\t\t\t( 0.01 * parseFloat( RegExp.$1 ) ) + \"\" :\n\t\t\t\tcomputed ? \"1\" : \"\";\n\t\t},\n\n\t\tset: function( elem, value ) {\n\t\t\tvar style = elem.style,\n\t\t\t\tcurrentStyle = elem.currentStyle,\n\t\t\t\topacity = jQuery.isNumeric( value ) ? \"alpha(opacity=\" + value * 100 + \")\" : \"\",\n\t\t\t\tfilter = currentStyle && currentStyle.filter || style.filter || \"\";\n\n\t\t\t// IE has trouble with opacity if it does not have layout\n\t\t\t// Force it by setting the zoom level\n\t\t\tstyle.zoom = 1;\n\n\t\t\t// if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652\n\t\t\t// if value === \"\", then remove inline opacity #12685\n\t\t\tif ( ( value >= 1 || value === \"\" ) &&\n\t\t\t\t\tjQuery.trim( filter.replace( ralpha, \"\" ) ) === \"\" &&\n\t\t\t\t\tstyle.removeAttribute ) {\n\n\t\t\t\t// Setting style.filter to null, \"\" & \" \" still leave \"filter:\" in the cssText\n\t\t\t\t// if \"filter:\" is present at all, clearType is disabled, we want to avoid this\n\t\t\t\t// style.removeAttribute is IE Only, but so apparently is this code path...\n\t\t\t\tstyle.removeAttribute( \"filter\" );\n\n\t\t\t\t// if there is no filter style applied in a css rule or unset inline opacity, we are done\n\t\t\t\tif ( value === \"\" || currentStyle && !currentStyle.filter ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// otherwise, set new filter values\n\t\t\tstyle.filter = ralpha.test( filter ) ?\n\t\t\t\tfilter.replace( ralpha, opacity ) :\n\t\t\t\tfilter + \" \" + opacity;\n\t\t}\n\t};\n}\n\njQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\t// Work around by temporarily setting element display to inline-block\n\t\t\treturn jQuery.swap( elem, { \"display\": \"inline-block\" },\n\t\t\t\tcurCSS, [ elem, \"marginRight\" ] );\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each({\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split(\" \") : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( !rmargin.test( prefix ) ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n});\n\njQuery.fn.extend({\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( jQuery.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t},\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( isHidden( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t});\n\t}\n});\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || \"swing\";\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\tif ( tween.elem[ tween.prop ] != null &&\n\t\t\t\t(!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails\n\t\t\t// so, simple values such as \"10px\" are parsed to Float.\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\t\t\t// use step hook for back compat - use cssHook if its there - use .style if its\n\t\t\t// available and use plain properties where available\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9\n// Panic based approach to setting things on disconnected nodes\n\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t}\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back Compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, timerId,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trfxnum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" ),\n\trrun = /queueHooks$/,\n\tanimationPrefilters = [ defaultPrefilter ],\n\ttweeners = {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value ),\n\t\t\t\ttarget = tween.cur(),\n\t\t\t\tparts = rfxnum.exec( value ),\n\t\t\t\tunit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t\t\t// Starting value computation is required for potential unit mismatches\n\t\t\t\tstart = ( jQuery.cssNumber[ prop ] || unit !== \"px\" && +target ) &&\n\t\t\t\t\trfxnum.exec( jQuery.css( tween.elem, prop ) ),\n\t\t\t\tscale = 1,\n\t\t\t\tmaxIterations = 20;\n\n\t\t\tif ( start && start[ 3 ] !== unit ) {\n\t\t\t\t// Trust units reported by jQuery.css\n\t\t\t\tunit = unit || start[ 3 ];\n\n\t\t\t\t// Make sure we update the tween properties later on\n\t\t\t\tparts = parts || [];\n\n\t\t\t\t// Iteratively approximate from a nonzero starting point\n\t\t\t\tstart = +target || 1;\n\n\t\t\t\tdo {\n\t\t\t\t\t// If previous iteration zeroed out, double until we get *something*\n\t\t\t\t\t// Use a string for doubling factor so we don't accidentally see scale as unchanged below\n\t\t\t\t\tscale = scale || \".5\";\n\n\t\t\t\t\t// Adjust and apply\n\t\t\t\t\tstart = start / scale;\n\t\t\t\t\tjQuery.style( tween.elem, prop, start + unit );\n\n\t\t\t\t// Update scale, tolerating zero or NaN from tween.cur()\n\t\t\t\t// And breaking the loop if scale is unchanged or perfect, or if we've just had enough\n\t\t\t\t} while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );\n\t\t\t}\n\n\t\t\t// Update tween properties\n\t\t\tif ( parts ) {\n\t\t\t\tstart = tween.start = +start || +target || 0;\n\t\t\t\ttween.unit = unit;\n\t\t\t\t// If a +=/-= token was provided, we're doing a relative animation\n\t\t\t\ttween.end = parts[ 1 ] ?\n\t\t\t\t\tstart + ( parts[ 1 ] + 1 ) * parts[ 2 ] :\n\t\t\t\t\t+parts[ 2 ];\n\t\t\t}\n\n\t\t\treturn tween;\n\t\t} ]\n\t};\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\tsetTimeout(function() {\n\t\tfxNow = undefined;\n\t});\n\treturn ( fxNow = jQuery.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\tattrs = { height: type },\n\t\ti = 0;\n\n\t// if we include width, step value is 1 to do all cssExpand values,\n\t// if we don't include width, step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4 ; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( tweeners[ prop ] || [] ).concat( tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( (tween = collection[ index ].call( animation, prop, value )) ) {\n\n\t\t\t// we're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\t/* jshint validthis: true */\n\tvar prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHidden( elem ),\n\t\tdataShow = jQuery._data( elem, \"fxshow\" );\n\n\t// handle queue: false promises\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always(function() {\n\t\t\t// doing this makes sure that the complete handler will be called\n\t\t\t// before this completes\n\t\t\tanim.always(function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t}\n\n\t// height/width overflow pass\n\tif ( elem.nodeType === 1 && ( \"height\" in props || \"width\" in props ) ) {\n\t\t// Make sure that nothing sneaks out\n\t\t// Record all 3 overflow attributes because IE does not\n\t\t// change the overflow attribute when overflowX and\n\t\t// overflowY are set to the same value\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Set display property to inline-block for height/width\n\t\t// animations on inline elements that are having width/height animated\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\n\t\t// Test default display if display is currently \"none\"\n\t\tcheckDisplay = display === \"none\" ?\n\t\t\tjQuery._data( elem, \"olddisplay\" ) || defaultDisplay( elem.nodeName ) : display;\n\n\t\tif ( checkDisplay === \"inline\" && jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t// inline-level elements accept inline-block;\n\t\t\t// block-level elements need to be inline with layout\n\t\t\tif ( !support.inlineBlockNeedsLayout || defaultDisplay( elem.nodeName ) === \"inline\" ) {\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t} else {\n\t\t\t\tstyle.zoom = 1;\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tif ( !support.shrinkWrapBlocks() ) {\n\t\t\tanim.always(function() {\n\t\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t\t});\n\t\t}\n\t}\n\n\t// show/hide pass\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.exec( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\n\t\t// Any non-fx value stops us from restoring the original display value\n\t\t} else {\n\t\t\tdisplay = undefined;\n\t\t}\n\t}\n\n\tif ( !jQuery.isEmptyObject( orig ) ) {\n\t\tif ( dataShow ) {\n\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\thidden = dataShow.hidden;\n\t\t\t}\n\t\t} else {\n\t\t\tdataShow = jQuery._data( elem, \"fxshow\", {} );\n\t\t}\n\n\t\t// store state if its toggle - enables .stop().toggle() to \"reverse\"\n\t\tif ( toggle ) {\n\t\t\tdataShow.hidden = !hidden;\n\t\t}\n\t\tif ( hidden ) {\n\t\t\tjQuery( elem ).show();\n\t\t} else {\n\t\t\tanim.done(function() {\n\t\t\t\tjQuery( elem ).hide();\n\t\t\t});\n\t\t}\n\t\tanim.done(function() {\n\t\t\tvar prop;\n\t\t\tjQuery._removeData( elem, \"fxshow\" );\n\t\t\tfor ( prop in orig ) {\n\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t}\n\t\t});\n\t\tfor ( prop in orig ) {\n\t\t\ttween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\n\t\t\tif ( !( prop in dataShow ) ) {\n\t\t\t\tdataShow[ prop ] = tween.start;\n\t\t\t\tif ( hidden ) {\n\t\t\t\t\ttween.end = tween.start;\n\t\t\t\t\ttween.start = prop === \"width\" || prop === \"height\" ? 1 : 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t// If this is a noop like .hide().hide(), restore an overwritten display value\n\t} else if ( (display === \"none\" ? defaultDisplay( elem.nodeName ) : display) === \"inline\" ) {\n\t\tstyle.display = display;\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = jQuery.camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( jQuery.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// not quite $.extend, this wont overwrite keys already present.\n\t\t\t// also - reusing 'index' from above because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = animationPrefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\t\t\t// don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t}),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\t\t\t\t// archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ]);\n\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t} else {\n\t\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\t\tanimation = deferred.promise({\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, { specialEasing: {} }, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\t\t\t\t\t// if we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// resolve when we played the last frame\n\t\t\t\t// otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t}),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length ; index++ ) {\n\t\tresult = animationPrefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( jQuery.isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t})\n\t);\n\n\t// attach callbacks from options\n\treturn animation.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\ttweener: function( props, callback ) {\n\t\tif ( jQuery.isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.split(\" \");\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length ; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\ttweeners[ prop ] = tweeners[ prop ] || [];\n\t\t\ttweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tanimationPrefilters.unshift( callback );\n\t\t} else {\n\t\t\tanimationPrefilters.push( callback );\n\t\t}\n\t}\n});\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tjQuery.isFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !jQuery.isFunction( easing ) && easing\n\t};\n\n\topt.duration = jQuery.fx.off ? 0 : typeof opt.duration === \"number\" ? opt.duration :\n\t\topt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;\n\n\t// normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( jQuery.isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend({\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHidden ).css( \"opacity\", 0 ).show()\n\n\t\t\t// animate to the value specified\n\t\t\t.end().animate({ opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || jQuery._data( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue && type !== false ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = jQuery._data( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// start the next in the queue if the last step wasn't forced\n\t\t\t// timers currently will call their complete callbacks, which will dequeue\n\t\t\t// but only if they were gotoEnd\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t});\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tvar index,\n\t\t\t\tdata = jQuery._data( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t});\n\t}\n});\n\njQuery.each([ \"toggle\", \"show\", \"hide\" ], function( i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n});\n\n// Generate shortcuts for custom animations\njQuery.each({\n\tslideDown: genFx(\"show\"),\n\tslideUp: genFx(\"hide\"),\n\tslideToggle: genFx(\"toggle\"),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n});\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ttimers = jQuery.timers,\n\t\ti = 0;\n\n\tfxNow = jQuery.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\t\t// Checks the timer has not already been removed\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tif ( timer() ) {\n\t\tjQuery.fx.start();\n\t} else {\n\t\tjQuery.timers.pop();\n\t}\n};\n\njQuery.fx.interval = 13;\n\njQuery.fx.start = function() {\n\tif ( !timerId ) {\n\t\ttimerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );\n\t}\n};\n\njQuery.fx.stop = function() {\n\tclearInterval( timerId );\n\ttimerId = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\tclearTimeout( timeout );\n\t\t};\n\t});\n};\n\n\n(function() {\n\t// Minified: var a,b,c,d,e\n\tvar input, div, select, a, opt;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.setAttribute( \"className\", \"t\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName(\"a\")[ 0 ];\n\n\t// First batch of tests.\n\tselect = document.createElement(\"select\");\n\topt = select.appendChild( document.createElement(\"option\") );\n\tinput = div.getElementsByTagName(\"input\")[ 0 ];\n\n\ta.style.cssText = \"top:1px\";\n\n\t// Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)\n\tsupport.getSetAttribute = div.className !== \"t\";\n\n\t// Get the style information from getAttribute\n\t// (IE uses .cssText instead)\n\tsupport.style = /top/.test( a.getAttribute(\"style\") );\n\n\t// Make sure that URLs aren't manipulated\n\t// (IE normalizes it by default)\n\tsupport.hrefNormalized = a.getAttribute(\"href\") === \"/a\";\n\n\t// Check the default checkbox/radio value (\"\" on WebKit; \"on\" elsewhere)\n\tsupport.checkOn = !!input.value;\n\n\t// Make sure that a selected-by-default option has a working selected property.\n\t// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)\n\tsupport.optSelected = opt.selected;\n\n\t// Tests for enctype support on a form (#6743)\n\tsupport.enctype = !!document.createElement(\"form\").enctype;\n\n\t// Make sure that the options inside disabled selects aren't marked as disabled\n\t// (WebKit marks them as disabled)\n\tselect.disabled = true;\n\tsupport.optDisabled = !opt.disabled;\n\n\t// Support: IE8 only\n\t// Check if we can trust getAttribute(\"value\")\n\tinput = document.createElement( \"input\" );\n\tinput.setAttribute( \"value\", \"\" );\n\tsupport.input = input.getAttribute( \"value\" ) === \"\";\n\n\t// Check if an input maintains its value after becoming a radio\n\tinput.value = \"t\";\n\tinput.setAttribute( \"type\", \"radio\" );\n\tsupport.radioValue = input.value === \"t\";\n})();\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend({\n\tval: function( value ) {\n\t\tvar hooks, ret, isFunction,\n\t\t\telem = this[0];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, \"value\" )) !== undefined ) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\treturn typeof ret === \"string\" ?\n\t\t\t\t\t// handle most common string cases\n\t\t\t\t\tret.replace(rreturn, \"\") :\n\t\t\t\t\t// handle cases where value is null/undef or number\n\t\t\t\t\tret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tisFunction = jQuery.isFunction( value );\n\n\t\treturn this.each(function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( isFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\t\t\t} else if ( jQuery.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t});\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !(\"set\" in hooks) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\t\t\t\t\t// Support: IE10-11+\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\tjQuery.trim( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\" || index < 0,\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length,\n\t\t\t\t\ti = index < 0 ?\n\t\t\t\t\t\tmax :\n\t\t\t\t\t\tone ? index : 0;\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// oldIE doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t( support.optDisabled ? !option.disabled : option.getAttribute(\"disabled\") === null ) &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\tif ( jQuery.inArray( jQuery.valHooks.option.get( option ), values ) >= 0 ) {\n\n\t\t\t\t\t\t// Support: IE6\n\t\t\t\t\t\t// When new option element is added to select box we need to\n\t\t\t\t\t\t// force reflow of newly added node in order to workaround delay\n\t\t\t\t\t\t// of initialization properties\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\toption.selected = optionSet = true;\n\n\t\t\t\t\t\t} catch ( _ ) {\n\n\t\t\t\t\t\t\t// Will be executed only in IE6\n\t\t\t\t\t\t\toption.scrollHeight;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\toption.selected = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\n\t\t\t\treturn options;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Radios and checkboxes getter/setter\njQuery.each([ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( jQuery.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\t// Support: Webkit\n\t\t\t// \"\" is returned instead of \"on\" if a value isn't specified\n\t\t\treturn elem.getAttribute(\"value\") === null ? \"on\" : elem.value;\n\t\t};\n\t}\n});\n\n\n\n\nvar nodeHook, boolHook,\n\tattrHandle = jQuery.expr.attrHandle,\n\truseDefault = /^(?:checked|selected)$/i,\n\tgetSetAttribute = support.getSetAttribute,\n\tgetSetInput = support.input;\n\njQuery.fn.extend({\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tattr: function( elem, name, value ) {\n\t\tvar hooks, ret,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set attributes on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === strundefined ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// All attributes are lowercase\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\tname = name.toLowerCase();\n\t\t\thooks = jQuery.attrHooks[ name ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\n\t\t\t} else if ( hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {\n\t\t\t\treturn ret;\n\n\t\t\t} else {\n\t\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\t\treturn value;\n\t\t\t}\n\n\t\t} else if ( hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ) {\n\t\t\treturn ret;\n\n\t\t} else {\n\t\t\tret = jQuery.find.attr( elem, name );\n\n\t\t\t// Non-existent attributes return null, we normalize to undefined\n\t\t\treturn ret == null ?\n\t\t\t\tundefined :\n\t\t\t\tret;\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name, propName,\n\t\t\ti = 0,\n\t\t\tattrNames = value && value.match( rnotwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( (name = attrNames[i++]) ) {\n\t\t\t\tpropName = jQuery.propFix[ name ] || name;\n\n\t\t\t\t// Boolean attributes get special treatment (#10870)\n\t\t\t\tif ( jQuery.expr.match.bool.test( name ) ) {\n\t\t\t\t\t// Set corresponding property to false\n\t\t\t\t\tif ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t// Also clear defaultChecked/defaultSelected (if appropriate)\n\t\t\t\t\t} else {\n\t\t\t\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] =\n\t\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t}\n\n\t\t\t\t// See #9699 for explanation of this approach (setting first, then removal)\n\t\t\t\t} else {\n\t\t\t\t\tjQuery.attr( elem, name, \"\" );\n\t\t\t\t}\n\n\t\t\t\telem.removeAttribute( getSetAttribute ? name : propName );\n\t\t\t}\n\t\t}\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" && jQuery.nodeName(elem, \"input\") ) {\n\t\t\t\t\t// Setting the type on a radio button after the value resets the value in IE6-9\n\t\t\t\t\t// Reset value to default in case type is set after value during creation\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Hook for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t// IE<8 needs the *property* name\n\t\t\telem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name );\n\n\t\t// Use defaultChecked and defaultSelected for oldIE\n\t\t} else {\n\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] = elem[ name ] = true;\n\t\t}\n\n\t\treturn name;\n\t}\n};\n\n// Retrieve booleans specially\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( i, name ) {\n\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ?\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret, handle;\n\t\t\tif ( !isXML ) {\n\t\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\t\thandle = attrHandle[ name ];\n\t\t\t\tattrHandle[ name ] = ret;\n\t\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t\tattrHandle[ name ] = handle;\n\t\t\t}\n\t\t\treturn ret;\n\t\t} :\n\t\tfunction( elem, name, isXML ) {\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn elem[ jQuery.camelCase( \"default-\" + name ) ] ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n});\n\n// fix oldIE attroperties\nif ( !getSetInput || !getSetAttribute ) {\n\tjQuery.attrHooks.value = {\n\t\tset: function( elem, value, name ) {\n\t\t\tif ( jQuery.nodeName( elem, \"input\" ) ) {\n\t\t\t\t// Does not return so that setAttribute is also used\n\t\t\t\telem.defaultValue = value;\n\t\t\t} else {\n\t\t\t\t// Use nodeHook if defined (#1954); otherwise setAttribute is fine\n\t\t\t\treturn nodeHook && nodeHook.set( elem, value, name );\n\t\t\t}\n\t\t}\n\t};\n}\n\n// IE6/7 do not support getting/setting some attributes with get/setAttribute\nif ( !getSetAttribute ) {\n\n\t// Use this for any attribute in IE6/7\n\t// This fixes almost every IE6/7 issue\n\tnodeHook = {\n\t\tset: function( elem, value, name ) {\n\t\t\t// Set the existing or create a new attribute node\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( !ret ) {\n\t\t\t\telem.setAttributeNode(\n\t\t\t\t\t(ret = elem.ownerDocument.createAttribute( name ))\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tret.value = value += \"\";\n\n\t\t\t// Break association with cloned elements by also using setAttribute (#9646)\n\t\t\tif ( name === \"value\" || value === elem.getAttribute( name ) ) {\n\t\t\t\treturn value;\n\t\t\t}\n\t\t}\n\t};\n\n\t// Some attributes are constructed with empty-string values when not defined\n\tattrHandle.id = attrHandle.name = attrHandle.coords =\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret;\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn (ret = elem.getAttributeNode( name )) && ret.value !== \"\" ?\n\t\t\t\t\tret.value :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n\n\t// Fixing value retrieval on a button requires this module\n\tjQuery.valHooks.button = {\n\t\tget: function( elem, name ) {\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( ret && ret.specified ) {\n\t\t\t\treturn ret.value;\n\t\t\t}\n\t\t},\n\t\tset: nodeHook.set\n\t};\n\n\t// Set contenteditable to false on removals(#10429)\n\t// Setting to empty string throws an error as an invalid value\n\tjQuery.attrHooks.contenteditable = {\n\t\tset: function( elem, value, name ) {\n\t\t\tnodeHook.set( elem, value === \"\" ? false : value, name );\n\t\t}\n\t};\n\n\t// Set width and height to auto instead of 0 on empty string( Bug #8150 )\n\t// This is for removals\n\tjQuery.each([ \"width\", \"height\" ], function( i, name ) {\n\t\tjQuery.attrHooks[ name ] = {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( value === \"\" ) {\n\t\t\t\t\telem.setAttribute( name, \"auto\" );\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\nif ( !support.style ) {\n\tjQuery.attrHooks.style = {\n\t\tget: function( elem ) {\n\t\t\t// Return undefined in the case of empty string\n\t\t\t// Note: IE uppercases css property names, but if we were to .toLowerCase()\n\t\t\t// .cssText, that would destroy case senstitivity in URL's, like in \"background\"\n\t\t\treturn elem.style.cssText || undefined;\n\t\t},\n\t\tset: function( elem, value ) {\n\t\t\treturn ( elem.style.cssText = value + \"\" );\n\t\t}\n\t};\n}\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button|object)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend({\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\tname = jQuery.propFix[ name ] || name;\n\t\treturn this.each(function() {\n\t\t\t// try/catch handles cases where IE balks (such as removing a property on window)\n\t\t\ttry {\n\t\t\t\tthis[ name ] = undefined;\n\t\t\t\tdelete this[ name ];\n\t\t\t} catch( e ) {}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t},\n\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks, notxml,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set properties on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tnotxml = nType !== 1 || !jQuery.isXMLDoc( elem );\n\n\t\tif ( notxml ) {\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\treturn hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?\n\t\t\t\tret :\n\t\t\t\t( elem[ name ] = value );\n\n\t\t} else {\n\t\t\treturn hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ?\n\t\t\t\tret :\n\t\t\t\telem[ name ];\n\t\t}\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\t\t\t\t// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set\n\t\t\t\t// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\treturn tabindex ?\n\t\t\t\t\tparseInt( tabindex, 10 ) :\n\t\t\t\t\trfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?\n\t\t\t\t\t\t0 :\n\t\t\t\t\t\t-1;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Some attributes require a special call on IE\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !support.hrefNormalized ) {\n\t// href/src property should get the full normalized URL (#10299/#12915)\n\tjQuery.each([ \"href\", \"src\" ], function( i, name ) {\n\t\tjQuery.propHooks[ name ] = {\n\t\t\tget: function( elem ) {\n\t\t\t\treturn elem.getAttribute( name, 4 );\n\t\t\t}\n\t\t};\n\t});\n}\n\n// Support: Safari, IE9+\n// mis-reports the default selected property of an option\n// Accessing the parent's selectedIndex property fixes it\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\t// Make sure that it also works with optgroups, see #5701\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\t};\n}\n\njQuery.each([\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n});\n\n// IE6/7 call enctype encoding\nif ( !support.enctype ) {\n\tjQuery.propFix.enctype = \"encoding\";\n}\n\n\n\n\nvar rclass = /[\\t\\r\\n\\f]/g;\n\njQuery.fn.extend({\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\n\t\tif ( proceed ) {\n\t\t\t// The disjunction here is for better compressibility (see removeClass)\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\" \"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = jQuery.trim( cur );\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = arguments.length === 0 || typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\t\tif ( proceed ) {\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\"\"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) >= 0 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = value ? jQuery.trim( cur ) : \"\";\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value;\n\n\t\tif ( typeof stateVal === \"boolean\" && type === \"string\" ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tjQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( type === \"string\" ) {\n\t\t\t\t// toggle individual class names\n\t\t\t\tvar className,\n\t\t\t\t\ti = 0,\n\t\t\t\t\tself = jQuery( this ),\n\t\t\t\t\tclassNames = value.match( rnotwhite ) || [];\n\n\t\t\t\twhile ( (className = classNames[ i++ ]) ) {\n\t\t\t\t\t// check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( type === strundefined || type === \"boolean\" ) {\n\t\t\t\tif ( this.className ) {\n\t\t\t\t\t// store className if set\n\t\t\t\t\tjQuery._data( this, \"__className__\", this.className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed \"false\",\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tthis.className = this.className || value === false ? \"\" : jQuery._data( this, \"__className__\" ) || \"\";\n\t\t\t}\n\t\t});\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className = \" \" + selector + \" \",\n\t\t\ti = 0,\n\t\t\tl = this.length;\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tif ( this[i].nodeType === 1 && (\" \" + this[i].className + \" \").replace(rclass, \" \").indexOf( className ) >= 0 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n});\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\njQuery.each( (\"blur focus focusin focusout load resize scroll unload click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup error contextmenu\").split(\" \"), function( i, name ) {\n\n\t// Handle event binding\n\tjQuery.fn[ name ] = function( data, fn ) {\n\t\treturn arguments.length > 0 ?\n\t\t\tthis.on( name, null, data, fn ) :\n\t\t\tthis.trigger( name );\n\t};\n});\n\njQuery.fn.extend({\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t},\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ? this.off( selector, \"**\" ) : this.off( types, selector || \"**\", fn );\n\t}\n});\n\n\nvar nonce = jQuery.now();\n\nvar rquery = (/\\?/);\n\n\n\nvar rvalidtokens = /(,)|(\\[|{)|(}|])|\"(?:[^\"\\\\\\r\\n]|\\\\[\"\\\\\\/bfnrt]|\\\\u[\\da-fA-F]{4})*\"\\s*:?|true|false|null|-?(?!0\\d)\\d+(?:\\.\\d+|)(?:[eE][+-]?\\d+|)/g;\n\njQuery.parseJSON = function( data ) {\n\t// Attempt to parse using the native JSON parser first\n\tif ( window.JSON && window.JSON.parse ) {\n\t\t// Support: Android 2.3\n\t\t// Workaround failure to string-cast null input\n\t\treturn window.JSON.parse( data + \"\" );\n\t}\n\n\tvar requireNonComma,\n\t\tdepth = null,\n\t\tstr = jQuery.trim( data + \"\" );\n\n\t// Guard against invalid (and possibly dangerous) input by ensuring that nothing remains\n\t// after removing valid tokens\n\treturn str && !jQuery.trim( str.replace( rvalidtokens, function( token, comma, open, close ) {\n\n\t\t// Force termination if we see a misplaced comma\n\t\tif ( requireNonComma && comma ) {\n\t\t\tdepth = 0;\n\t\t}\n\n\t\t// Perform no more replacements after returning to outermost depth\n\t\tif ( depth === 0 ) {\n\t\t\treturn token;\n\t\t}\n\n\t\t// Commas must not follow \"[\", \"{\", or \",\"\n\t\trequireNonComma = open || comma;\n\n\t\t// Determine new depth\n\t\t// array/object open (\"[\" or \"{\"): depth += true - false (increment)\n\t\t// array/object close (\"]\" or \"}\"): depth += false - true (decrement)\n\t\t// other cases (\",\" or primitive): depth += true - true (numeric cast)\n\t\tdepth += !close - !open;\n\n\t\t// Remove this token\n\t\treturn \"\";\n\t}) ) ?\n\t\t( Function( \"return \" + str ) )() :\n\t\tjQuery.error( \"Invalid JSON: \" + data );\n};\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml, tmp;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\ttry {\n\t\tif ( window.DOMParser ) { // Standard\n\t\t\ttmp = new DOMParser();\n\t\t\txml = tmp.parseFromString( data, \"text/xml\" );\n\t\t} else { // IE\n\t\t\txml = new ActiveXObject( \"Microsoft.XMLDOM\" );\n\t\t\txml.async = \"false\";\n\t\t\txml.loadXML( data );\n\t\t}\n\t} catch( e ) {\n\t\txml = undefined;\n\t}\n\tif ( !xml || !xml.documentElement || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\t// Document location\n\tajaxLocParts,\n\tajaxLocation,\n\n\trhash = /#.*$/,\n\trts = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)\\r?$/mg, // IE leaves an \\r character at EOL\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\trurl = /^([\\w.+-]+:)(?:\\/\\/(?:[^\\/?#]*@|)([^\\/?#:]*)(?::(\\d+)|)|)/,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat(\"*\");\n\n// #8138, IE may throw an exception when accessing\n// a field from window.location if document.domain has been set\ntry {\n\tajaxLocation = location.href;\n} catch( e ) {\n\t// Use the href attribute of an A element\n\t// since IE will modify it given document.location\n\tajaxLocation = document.createElement( \"a\" );\n\tajaxLocation.href = \"\";\n\tajaxLocation = ajaxLocation.href;\n}\n\n// Segment location into parts\najaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];\n\n\t\tif ( jQuery.isFunction( func ) ) {\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( (dataType = dataTypes[i++]) ) {\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType.charAt( 0 ) === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t});\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar deep, key,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\tvar firstDataType, ct, finalDataType, type,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader(\"Content-Type\");\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[0] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s[ \"throws\" ] ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn { state: \"parsererror\", error: conv ? e : \"No conversion from \" + prev + \" to \" + current };\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend({\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: ajaxLocation,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /xml/,\n\t\t\thtml: /html/,\n\t\t\tjson: /json/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": jQuery.parseJSON,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar // Cross-domain detection vars\n\t\t\tparts,\n\t\t\t// Loop variable\n\t\t\ti,\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\t\t\t// Response headers as string\n\t\t\tresponseHeadersString,\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\ttransport,\n\t\t\t// Response headers\n\t\t\tresponseHeaders,\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\tjQuery.event,\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks(\"once memory\"),\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\t\t\t// The jqXHR state\n\t\t\tstate = 0,\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( state === 2 ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( (match = rheaders.exec( responseHeadersString )) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[1].toLowerCase() ] = match[ 2 ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match;\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn state === 2 ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tvar lname = name.toLowerCase();\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\tname = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\t// Lazy-add the new callback in a way that preserves old ones\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR ).complete = completeDeferred.add;\n\t\tjqXHR.success = jqXHR.done;\n\t\tjqXHR.error = jqXHR.fail;\n\n\t\t// Remove hash character (#7531: and string promotion)\n\t\t// Add protocol if not provided (#5866: IE7 issue with protocol-less urls)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || ajaxLocation ) + \"\" ).replace( rhash, \"\" ).replace( rprotocol, ajaxLocParts[ 1 ] + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = jQuery.trim( s.dataType || \"*\" ).toLowerCase().match( rnotwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when we have a protocol:host:port mismatch\n\t\tif ( s.crossDomain == null ) {\n\t\t\tparts = rurl.exec( s.url.toLowerCase() );\n\t\t\ts.crossDomain = !!( parts &&\n\t\t\t\t( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||\n\t\t\t\t\t( parts[ 3 ] || ( parts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) !==\n\t\t\t\t\t\t( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) )\n\t\t\t);\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( state === 2 ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger(\"ajaxStart\");\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\tcacheURL = s.url;\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// If data is available, append data to url\n\t\t\tif ( s.data ) {\n\t\t\t\tcacheURL = ( s.url += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data );\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add anti-cache in url if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\ts.url = rts.test( cacheURL ) ?\n\n\t\t\t\t\t// If there is already a '_' parameter, set its value\n\t\t\t\t\tcacheURL.replace( rts, \"$1_=\" + nonce++ ) :\n\n\t\t\t\t\t// Otherwise add one to the end\n\t\t\t\t\tcacheURL + ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + nonce++;\n\t\t\t}\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tfor ( i in { success: 1, error: 1, complete: 1 } ) {\n\t\t\tjqXHR[ i ]( s[ i ] );\n\t\t}\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = setTimeout(function() {\n\t\t\t\t\tjqXHR.abort(\"timeout\");\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tstate = 1;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\t\t\t\t// Propagate exception as error if not done\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tdone( -1, e );\n\t\t\t\t// Simply rethrow otherwise\n\t\t\t\t} else {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Called once\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// State is \"done\" now\n\t\t\tstate = 2;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\tclearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"Last-Modified\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"etag\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// We extract error from statusText\n\t\t\t\t// then normalize statusText and status for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger(\"ajaxStop\");\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n});\n\njQuery.each( [ \"get\", \"post\" ], function( i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\t\t// shift arguments if data argument was omitted\n\t\tif ( jQuery.isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\treturn jQuery.ajax({\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t});\n\t};\n});\n\n\njQuery._evalUrl = function( url ) {\n\treturn jQuery.ajax({\n\t\turl: url,\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tasync: false,\n\t\tglobal: false,\n\t\t\"throws\": true\n\t});\n};\n\n\njQuery.fn.extend({\n\twrapAll: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapAll( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\tif ( this[0] ) {\n\t\t\t// The elements to wrap the target around\n\t\t\tvar wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);\n\n\t\t\tif ( this[0].parentNode ) {\n\t\t\t\twrap.insertBefore( this[0] );\n\t\t\t}\n\n\t\t\twrap.map(function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstChild && elem.firstChild.nodeType === 1 ) {\n\t\t\t\t\telem = elem.firstChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t}).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapInner( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t});\n\t},\n\n\twrap: function( html ) {\n\t\tvar isFunction = jQuery.isFunction( html );\n\n\t\treturn this.each(function(i) {\n\t\t\tjQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );\n\t\t});\n\t},\n\n\tunwrap: function() {\n\t\treturn this.parent().each(function() {\n\t\t\tif ( !jQuery.nodeName( this, \"body\" ) ) {\n\t\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t\t}\n\t\t}).end();\n\t}\n});\n\n\njQuery.expr.filters.hidden = function( elem ) {\n\t// Support: Opera <= 12.12\n\t// Opera reports offsetWidths and offsetHeights less than zero on some elements\n\treturn elem.offsetWidth <= 0 && elem.offsetHeight <= 0 ||\n\t\t(!support.reliableHiddenOffsets() &&\n\t\t\t((elem.style && elem.style.display) || jQuery.css( elem, \"display\" )) === \"none\");\n};\n\njQuery.expr.filters.visible = function( elem ) {\n\treturn !jQuery.expr.filters.hidden( elem );\n};\n\n\n\n\nvar r20 = /%20/g,\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( jQuery.isArray( obj ) ) {\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams( prefix + \"[\" + ( typeof v === \"object\" ? i : \"\" ) + \"]\", v, traditional, add );\n\t\t\t}\n\t\t});\n\n\t} else if ( !traditional && jQuery.type( obj ) === \"object\" ) {\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, value ) {\n\t\t\t// If value is a function, invoke it and return its value\n\t\t\tvalue = jQuery.isFunction( value ) ? value() : ( value == null ? \"\" : value );\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" + encodeURIComponent( value );\n\t\t};\n\n\t// Set traditional to true for jQuery <= 1.3.2 behavior.\n\tif ( traditional === undefined ) {\n\t\ttraditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t});\n\n\t} else {\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" ).replace( r20, \"+\" );\n};\n\njQuery.fn.extend({\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map(function() {\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t})\n\t\t.filter(function() {\n\t\t\tvar type = this.type;\n\t\t\t// Use .is(\":disabled\") so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t})\n\t\t.map(function( i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\treturn val == null ?\n\t\t\t\tnull :\n\t\t\t\tjQuery.isArray( val ) ?\n\t\t\t\t\tjQuery.map( val, function( val ) {\n\t\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t\t}) :\n\t\t\t\t\t{ name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t}).get();\n\t}\n});\n\n\n// Create the request object\n// (This is still attached to ajaxSettings for backward compatibility)\njQuery.ajaxSettings.xhr = window.ActiveXObject !== undefined ?\n\t// Support: IE6+\n\tfunction() {\n\n\t\t// XHR cannot access local files, always use ActiveX for that case\n\t\treturn !this.isLocal &&\n\n\t\t\t// Support: IE7-8\n\t\t\t// oldIE XHR does not support non-RFC2616 methods (#13240)\n\t\t\t// See http://msdn.microsoft.com/en-us/library/ie/ms536648(v=vs.85).aspx\n\t\t\t// and http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9\n\t\t\t// Although this check for six methods instead of eight\n\t\t\t// since IE also does not support \"trace\" and \"connect\"\n\t\t\t/^(get|post|head|put|delete|options)$/i.test( this.type ) &&\n\n\t\t\tcreateStandardXHR() || createActiveXHR();\n\t} :\n\t// For all other browsers, use the standard XMLHttpRequest object\n\tcreateStandardXHR;\n\nvar xhrId = 0,\n\txhrCallbacks = {},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\n// Support: IE<10\n// Open requests must be manually aborted on unload (#5280)\n// See https://support.microsoft.com/kb/2856746 for more info\nif ( window.attachEvent ) {\n\twindow.attachEvent( \"onunload\", function() {\n\t\tfor ( var key in xhrCallbacks ) {\n\t\t\txhrCallbacks[ key ]( undefined, true );\n\t\t}\n\t});\n}\n\n// Determine support properties\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nxhrSupported = support.ajax = !!xhrSupported;\n\n// Create transport if the browser can provide an xhr\nif ( xhrSupported ) {\n\n\tjQuery.ajaxTransport(function( options ) {\n\t\t// Cross domain only allowed if supported through XMLHttpRequest\n\t\tif ( !options.crossDomain || support.cors ) {\n\n\t\t\tvar callback;\n\n\t\t\treturn {\n\t\t\t\tsend: function( headers, complete ) {\n\t\t\t\t\tvar i,\n\t\t\t\t\t\txhr = options.xhr(),\n\t\t\t\t\t\tid = ++xhrId;\n\n\t\t\t\t\t// Open the socket\n\t\t\t\t\txhr.open( options.type, options.url, options.async, options.username, options.password );\n\n\t\t\t\t\t// Apply custom fields if provided\n\t\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Override mime type if needed\n\t\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t\t}\n\n\t\t\t\t\t// X-Requested-With header\n\t\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\t\tif ( !options.crossDomain && !headers[\"X-Requested-With\"] ) {\n\t\t\t\t\t\theaders[\"X-Requested-With\"] = \"XMLHttpRequest\";\n\t\t\t\t\t}\n\n\t\t\t\t\t// Set headers\n\t\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// IE's ActiveXObject throws a 'Type Mismatch' exception when setting\n\t\t\t\t\t\t// request header to a null-value.\n\t\t\t\t\t\t//\n\t\t\t\t\t\t// To keep consistent with other XHR implementations, cast the value\n\t\t\t\t\t\t// to string and ignore `undefined`.\n\t\t\t\t\t\tif ( headers[ i ] !== undefined ) {\n\t\t\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] + \"\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Do send the request\n\t\t\t\t\t// This may raise an exception which is actually\n\t\t\t\t\t// handled in jQuery.ajax (so no try/catch here)\n\t\t\t\t\txhr.send( ( options.hasContent && options.data ) || null );\n\n\t\t\t\t\t// Listener\n\t\t\t\t\tcallback = function( _, isAbort ) {\n\t\t\t\t\t\tvar status, statusText, responses;\n\n\t\t\t\t\t\t// Was never called and is aborted or complete\n\t\t\t\t\t\tif ( callback && ( isAbort || xhr.readyState === 4 ) ) {\n\t\t\t\t\t\t\t// Clean up\n\t\t\t\t\t\t\tdelete xhrCallbacks[ id ];\n\t\t\t\t\t\t\tcallback = undefined;\n\t\t\t\t\t\t\txhr.onreadystatechange = jQuery.noop;\n\n\t\t\t\t\t\t\t// Abort manually if needed\n\t\t\t\t\t\t\tif ( isAbort ) {\n\t\t\t\t\t\t\t\tif ( xhr.readyState !== 4 ) {\n\t\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tresponses = {};\n\t\t\t\t\t\t\t\tstatus = xhr.status;\n\n\t\t\t\t\t\t\t\t// Support: IE<10\n\t\t\t\t\t\t\t\t// Accessing binary-data responseText throws an exception\n\t\t\t\t\t\t\t\t// (#11426)\n\t\t\t\t\t\t\t\tif ( typeof xhr.responseText === \"string\" ) {\n\t\t\t\t\t\t\t\t\tresponses.text = xhr.responseText;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Firefox throws an exception when accessing\n\t\t\t\t\t\t\t\t// statusText for faulty cross-domain requests\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tstatusText = xhr.statusText;\n\t\t\t\t\t\t\t\t} catch( e ) {\n\t\t\t\t\t\t\t\t\t// We normalize with Webkit giving an empty statusText\n\t\t\t\t\t\t\t\t\tstatusText = \"\";\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Filter status for non standard behaviors\n\n\t\t\t\t\t\t\t\t// If the request is local and we have data: assume a success\n\t\t\t\t\t\t\t\t// (success with no data won't get notified, that's the best we\n\t\t\t\t\t\t\t\t// can do given current implementations)\n\t\t\t\t\t\t\t\tif ( !status && options.isLocal && !options.crossDomain ) {\n\t\t\t\t\t\t\t\t\tstatus = responses.text ? 200 : 404;\n\t\t\t\t\t\t\t\t// IE - #1450: sometimes returns 1223 when it should be 204\n\t\t\t\t\t\t\t\t} else if ( status === 1223 ) {\n\t\t\t\t\t\t\t\t\tstatus = 204;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Call complete if needed\n\t\t\t\t\t\tif ( responses ) {\n\t\t\t\t\t\t\tcomplete( status, statusText, responses, xhr.getAllResponseHeaders() );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\tif ( !options.async ) {\n\t\t\t\t\t\t// if we're in sync mode we fire the callback\n\t\t\t\t\t\tcallback();\n\t\t\t\t\t} else if ( xhr.readyState === 4 ) {\n\t\t\t\t\t\t// (IE6 & IE7) if it's in cache and has been\n\t\t\t\t\t\t// retrieved directly we need to fire the callback\n\t\t\t\t\t\tsetTimeout( callback );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// Add to the list of active xhr callbacks\n\t\t\t\t\t\txhr.onreadystatechange = xhrCallbacks[ id ] = callback;\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tabort: function() {\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tcallback( undefined, true );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t});\n}\n\n// Functions to create xhrs\nfunction createStandardXHR() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch( e ) {}\n}\n\nfunction createActiveXHR() {\n\ttry {\n\t\treturn new window.ActiveXObject( \"Microsoft.XMLHTTP\" );\n\t} catch( e ) {}\n}\n\n\n\n\n// Install script dataType\njQuery.ajaxSetup({\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /(?:java|ecma)script/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n});\n\n// Handle cache's special case and global\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t\ts.global = false;\n\t}\n});\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function(s) {\n\n\t// This transport only deals with cross domain requests\n\tif ( s.crossDomain ) {\n\n\t\tvar script,\n\t\t\thead = document.head || jQuery(\"head\")[0] || document.documentElement;\n\n\t\treturn {\n\n\t\t\tsend: function( _, callback ) {\n\n\t\t\t\tscript = document.createElement(\"script\");\n\n\t\t\t\tscript.async = true;\n\n\t\t\t\tif ( s.scriptCharset ) {\n\t\t\t\t\tscript.charset = s.scriptCharset;\n\t\t\t\t}\n\n\t\t\t\tscript.src = s.url;\n\n\t\t\t\t// Attach handlers for all browsers\n\t\t\t\tscript.onload = script.onreadystatechange = function( _, isAbort ) {\n\n\t\t\t\t\tif ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {\n\n\t\t\t\t\t\t// Handle memory leak in IE\n\t\t\t\t\t\tscript.onload = script.onreadystatechange = null;\n\n\t\t\t\t\t\t// Remove the script\n\t\t\t\t\t\tif ( script.parentNode ) {\n\t\t\t\t\t\t\tscript.parentNode.removeChild( script );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Dereference the script\n\t\t\t\t\t\tscript = null;\n\n\t\t\t\t\t\t// Callback if not abort\n\t\t\t\t\t\tif ( !isAbort ) {\n\t\t\t\t\t\t\tcallback( 200, \"success\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\t// Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\thead.insertBefore( script, head.firstChild );\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( script ) {\n\t\t\t\t\tscript.onload( undefined, true );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n});\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup({\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n});\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" && !( s.contentType || \"\" ).indexOf(\"application/x-www-form-urlencoded\") && rjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[\"script json\"] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always(function() {\n\t\t\t// Restore preexisting value\n\t\t\twindow[ callbackName ] = overwritten;\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\t\t\t\t// make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && jQuery.isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t});\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n});\n\n\n\n\n// data: string of html\n// context (optional): If specified, the fragment will be created in this context, defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\tcontext = context || document;\n\n\tvar parsed = rsingleTag.exec( data ),\n\t\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[1] ) ];\n\t}\n\n\tparsed = jQuery.buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n// Keep a copy of the old load method\nvar _load = jQuery.fn.load;\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tif ( typeof url !== \"string\" && _load ) {\n\t\treturn _load.apply( this, arguments );\n\t}\n\n\tvar selector, response, type,\n\t\tself = this,\n\t\toff = url.indexOf(\" \");\n\n\tif ( off >= 0 ) {\n\t\tselector = jQuery.trim( url.slice( off, url.length ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( jQuery.isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax({\n\t\t\turl: url,\n\n\t\t\t// if \"type\" variable is undefined, then \"GET\" method will be used\n\t\t\ttype: type,\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t}).done(function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery(\"<div>\").append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t}).complete( callback && function( jqXHR, status ) {\n\t\t\tself.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t});\n\t}\n\n\treturn this;\n};\n\n\n\n\n// Attach a bunch of functions for handling common AJAX events\njQuery.each( [ \"ajaxStart\", \"ajaxStop\", \"ajaxComplete\", \"ajaxError\", \"ajaxSuccess\", \"ajaxSend\" ], function( i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n});\n\n\n\n\njQuery.expr.filters.animated = function( elem ) {\n\treturn jQuery.grep(jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t}).length;\n};\n\n\n\n\n\nvar docElem = window.document.documentElement;\n\n/**\n * Gets a window from an element\n */\nfunction getWindow( elem ) {\n\treturn jQuery.isWindow( elem ) ?\n\t\telem :\n\t\telem.nodeType === 9 ?\n\t\t\telem.defaultView || elem.parentWindow :\n\t\t\tfalse;\n}\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\tjQuery.inArray(\"auto\", [ curCSSTop, curCSSLeft ] ) > -1;\n\n\t\t// need to be able to calculate position if either top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( jQuery.isFunction( options ) ) {\n\t\t\toptions = options.call( elem, i, curOffset );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend({\n\toffset: function( options ) {\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each(function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t});\n\t\t}\n\n\t\tvar docElem, win,\n\t\t\tbox = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ],\n\t\t\tdoc = elem && elem.ownerDocument;\n\n\t\tif ( !doc ) {\n\t\t\treturn;\n\t\t}\n\n\t\tdocElem = doc.documentElement;\n\n\t\t// Make sure it's not a disconnected DOM node\n\t\tif ( !jQuery.contains( docElem, elem ) ) {\n\t\t\treturn box;\n\t\t}\n\n\t\t// If we don't have gBCR, just use 0,0 rather than error\n\t\t// BlackBerry 5, iOS 3 (original iPhone)\n\t\tif ( typeof elem.getBoundingClientRect !== strundefined ) {\n\t\t\tbox = elem.getBoundingClientRect();\n\t\t}\n\t\twin = getWindow( doc );\n\t\treturn {\n\t\t\ttop: box.top  + ( win.pageYOffset || docElem.scrollTop )  - ( docElem.clientTop  || 0 ),\n\t\t\tleft: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 )\n\t\t};\n\t},\n\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset,\n\t\t\tparentOffset = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ];\n\n\t\t// fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is its only offset parent\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\t\t\t// we assume that getBoundingClientRect is available when computed position is fixed\n\t\t\toffset = elem.getBoundingClientRect();\n\t\t} else {\n\t\t\t// Get *real* offsetParent\n\t\t\toffsetParent = this.offsetParent();\n\n\t\t\t// Get correct offsets\n\t\t\toffset = this.offset();\n\t\t\tif ( !jQuery.nodeName( offsetParent[ 0 ], \"html\" ) ) {\n\t\t\t\tparentOffset = offsetParent.offset();\n\t\t\t}\n\n\t\t\t// Add offsetParent borders\n\t\t\tparentOffset.top  += jQuery.css( offsetParent[ 0 ], \"borderTopWidth\", true );\n\t\t\tparentOffset.left += jQuery.css( offsetParent[ 0 ], \"borderLeftWidth\", true );\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\t// note: when an element has margin: auto the offsetLeft and marginLeft\n\t\t// are the same in Safari causing offset.left to incorrectly be 0\n\t\treturn {\n\t\t\ttop:  offset.top  - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true)\n\t\t};\n\t},\n\n\toffsetParent: function() {\n\t\treturn this.map(function() {\n\t\t\tvar offsetParent = this.offsetParent || docElem;\n\n\t\t\twhile ( offsetParent && ( !jQuery.nodeName( offsetParent, \"html\" ) && jQuery.css( offsetParent, \"position\" ) === \"static\" ) ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\t\t\treturn offsetParent || docElem;\n\t\t});\n\t}\n});\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = /Y/.test( prop );\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\t\t\tvar win = getWindow( elem );\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? (prop in win) ? win[ prop ] :\n\t\t\t\t\twin.document.documentElement[ method ] :\n\t\t\t\t\telem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : jQuery( win ).scrollLeft(),\n\t\t\t\t\ttop ? val : jQuery( win ).scrollTop()\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length, null );\n\t};\n});\n\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// getComputedStyle returns percent when specified for top/left/bottom/right\n// rather than make the css module depend on the offset module, we just check for it here\njQuery.each( [ \"top\", \"left\" ], function( i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\t\t\t\t// if curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n});\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name }, function( defaultExtra, funcName ) {\n\t\t// margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( jQuery.isWindow( elem ) ) {\n\t\t\t\t\t// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there\n\t\t\t\t\t// isn't a whole lot we can do. See pull request at this URL for discussion:\n\t\t\t\t\t// https://github.com/jquery/jquery/pull/764\n\t\t\t\t\treturn elem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest\n\t\t\t\t\t// unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it.\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable, null );\n\t\t};\n\t});\n});\n\n\n// The number of elements contained in the matched element set\njQuery.fn.size = function() {\n\treturn this.length;\n};\n\njQuery.fn.andSelf = jQuery.fn.addBack;\n\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t});\n}\n\n\n\n\nvar\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in\n// AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === strundefined ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n\n}));\n"
  },
  {
    "path": "docs/images/02_bellCurve/lib/jquery-3.5.1/jquery-AUTHORS.txt",
    "content": "Authors ordered by first contribution.\n\nJohn Resig <jeresig@gmail.com>\nGilles van den Hoven <gilles0181@gmail.com>\nMichael Geary <mike@geary.com>\nStefan Petre <stefan.petre@gmail.com>\nYehuda Katz <wycats@gmail.com>\nCorey Jewett <cj@syntheticplayground.com>\nKlaus Hartl <klaus.hartl@gmail.com>\nFranck Marcia <franck.marcia@gmail.com>\nJörn Zaefferer <joern.zaefferer@gmail.com>\nPaul Bakaus <paul.bakaus@gmail.com>\nBrandon Aaron <brandon.aaron@gmail.com>\nMike Alsup <malsup@gmail.com>\nDave Methvin <dave.methvin@gmail.com>\nEd Engelhardt <edengelhardt@gmail.com>\nSean Catchpole <littlecooldude@gmail.com>\nPaul Mclanahan <pmclanahan@gmail.com>\nDavid Serduke <davidserduke@gmail.com>\nRichard D. Worth <rdworth@gmail.com>\nScott González <scott.gonzalez@gmail.com>\nAriel Flesler <aflesler@gmail.com>\nCheah Chu Yeow <chuyeow@gmail.com>\nAndrew Chalkley <andrew@chalkley.org>\nFabio Buffoni <fabio.buffoni@bitmaster.it>\nStefan Bauckmeier  <stefan@bauckmeier.de>\nJon Evans <jon@springyweb.com>\nTJ Holowaychuk <tj@vision-media.ca>\nRiccardo De Agostini <rdeago@gmail.com>\nMichael Bensoussan <mickey@seesmic.com>\nLouis-Rémi Babé <lrbabe@gmail.com>\nRobert Katić <robert.katic@gmail.com>\nDamian Janowski <damian.janowski@gmail.com>\nAnton Kovalyov <anton@kovalyov.net>\nDušan B. Jovanovic <dbjdbj@gmail.com>\nEarle Castledine <mrspeaker@gmail.com>\nRich Dougherty <rich@rd.gen.nz>\nKim Dalsgaard <kim@kimdalsgaard.com>\nAndrea Giammarchi <andrea.giammarchi@gmail.com>\nFabian Jakobs <fabian.jakobs@web.de>\nMark Gibson <jollytoad@gmail.com>\nKarl Swedberg <kswedberg@gmail.com>\nJustin Meyer <justinbmeyer@gmail.com>\nBen Alman <cowboy@rj3.net>\nJames Padolsey <cla@padolsey.net>\nDavid Petersen <public@petersendidit.com>\nBatiste Bieler <batiste.bieler@gmail.com>\nJake Archibald <jake.archibald@bbc.co.uk>\nAlexander Farkas <info@corrupt-system.de>\nFilipe Fortes <filipe@fortes.com>\nRick Waldron <waldron.rick@gmail.com>\nNeeraj Singh <neerajdotname@gmail.com>\nPaul Irish <paul.irish@gmail.com>\nIraê Carvalho <irae@irae.pro.br>\nMatt Curry <matt@pseudocoder.com>\nMichael Monteleone <michael@michaelmonteleone.net>\nNoah Sloan <noah.sloan@gmail.com>\nTom Viner <github@viner.tv>\nJ. Ryan Stinnett <jryans@gmail.com>\nDouglas Neiner <doug@dougneiner.com>\nAdam J. Sontag <ajpiano@ajpiano.com>\nHeungsub Lee <h@subl.ee>\nDave Reed <dareed@microsoft.com>\nCarl Fürstenberg <azatoth@gmail.com>\nJacob Wright <jacwright@gmail.com>\nRalph Whitbeck <ralph.whitbeck@gmail.com>\nunknown <Igen005@.upcorp.ad.uprr.com>\ntemp01 <temp01irc@gmail.com>\nColin Snover <github.com@zetafleet.com>\nJared Grippe <jared@deadlyicon.com>\nRyan W Tenney <ryan@10e.us>\nAlex Sexton <AlexSexton@gmail.com>\nPinhook <contact@pinhooklabs.com>\nRon Otten <r.j.g.otten@gmail.com>\nJephte Clain <Jephte.Clain@univ-reunion.fr>\nAnton Matzneller <obhvsbypqghgc@gmail.com>\nDan Heberden <danheberden@gmail.com>\nHenri Wiechers <hwiechers@gmail.com>\nRussell Holbrook <russell.holbrook@patch.com>\nJulian Aubourg <aubourg.julian@gmail.com>\nGianni Alessandro Chiappetta <gianni@runlevel6.org>\nScott Jehl <scottjehl@gmail.com>\nJames Burke <jrburke@gmail.com>\nJonas Pfenniger <jonas@pfenniger.name>\nXavi Ramirez <xavi.rmz@gmail.com>\nSylvester Keil <sylvester@keil.or.at>\nBrandon Sterne <bsterne@mozilla.com>\nMathias Bynens <mathias@qiwi.be>\nLee Carpenter <elcarpie@gmail.com>\nTimmy Willison <4timmywil@gmail.com>\nCorey Frang <gnarf37@gmail.com>\nDigitalxero <digitalxero>\nDavid Murdoch <david@davidmurdoch.com>\nJosh Varner <josh.varner@gmail.com>\nCharles McNulty <cmcnulty@kznf.com>\nJordan Boesch <jboesch26@gmail.com>\nJess Thrysoee <jess@thrysoee.dk>\nMichael Murray <m@murz.net>\nAlexis Abril <me@alexisabril.com>\nRob Morgan <robbym@gmail.com>\nJohn Firebaugh <john_firebaugh@bigfix.com>\nSam Bisbee <sam@sbisbee.com>\nGilmore Davidson <gilmoreorless@gmail.com>\nBrian Brennan <me@brianlovesthings.com>\nXavier Montillet <xavierm02.net@gmail.com>\nDaniel Pihlstrom <sciolist.se@gmail.com>\nSahab Yazdani <sahab.yazdani+github@gmail.com>\navaly <github-com@agachi.name>\nScott Hughes <hi@scott-hughes.me>\nMike Sherov <mike.sherov@gmail.com>\nGreg Hazel <ghazel@gmail.com>\nSchalk Neethling <schalk@ossreleasefeed.com>\nDenis Knauf <Denis.Knauf@gmail.com>\nTimo Tijhof <krinklemail@gmail.com>\nSteen Nielsen <swinedk@gmail.com>\nAnton Ryzhov <anton@ryzhov.me>\nShi Chuan <shichuanr@gmail.com>\nMatt Mueller <mattmuelle@gmail.com>\nBerker Peksag <berker.peksag@gmail.com>\nToby Brain <tobyb@freshview.com>\nJustin <drakefjustin@gmail.com>\nDaniel Herman <daniel.c.herman@gmail.com>\nOleg Gaidarenko <markelog@gmail.com>\nRock Hymas <rock@fogcreek.com>\nRichard Gibson <richard.gibson@gmail.com>\nRafaël Blais Masson <rafbmasson@gmail.com>\ncmc3cn <59194618@qq.com>\nJoe Presbrey <presbrey@gmail.com>\nSindre Sorhus <sindresorhus@gmail.com>\nArne de Bree <arne@bukkie.nl>\nVladislav Zarakovsky <vlad.zar@gmail.com>\nAndrew E Monat <amonat@gmail.com>\nOskari <admin@o-programs.com>\nJoao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>\ntsinha <tsinha@Anthonys-MacBook-Pro.local>\nDominik D. Geyer <dominik.geyer@gmail.com>\nMatt Farmer <matt@frmr.me>\nTrey Hunner <treyhunner@gmail.com>\nJason Moon <jmoon@socialcast.com>\nJeffery To <jeffery.to@gmail.com>\nKris Borchers <kris.borchers@gmail.com>\nVladimir Zhuravlev <private.face@gmail.com>\nJacob Thornton <jacobthornton@gmail.com>\nChad Killingsworth <chadkillingsworth@missouristate.edu>\nVitya Muhachev <vic99999@yandex.ru>\nNowres Rafid <nowres.rafed@gmail.com>\nDavid Benjamin <davidben@mit.edu>\nAlan Plum <github@ap.apsq.de>\nUri Gilad <antishok@gmail.com>\nChris Faulkner <thefaulkner@gmail.com>\nMarcel Greter <marcel.greter@ocbnet.ch>\nElijah Manor <elijah.manor@gmail.com>\nDaniel Chatfield <chatfielddaniel@gmail.com>\nDaniel Gálvez <dgalvez@editablething.com>\nNikita Govorov <nikita.govorov@gmail.com>\nWesley Walser <waw325@gmail.com>\nMike Pennisi <mike@mikepennisi.com>\nMatthias Jäggli <matthias.jaeggli@gmail.com>\nDevin Cooper <cooper.semantics@gmail.com>\nMarkus Staab <markus.staab@redaxo.de>\nDave Riddle <david@joyvuu.com>\nCallum Macrae <callum@lynxphp.com>\nJonathan Sampson <jjdsampson@gmail.com>\nBenjamin Truyman <bentruyman@gmail.com>\nJay Merrifield <fracmak@gmail.com>\nJames Huston <james@jameshuston.net>\nSai Lung Wong <sai.wong@huffingtonpost.com>\nErick Ruiz de Chávez <erickrdch@gmail.com>\nDavid Bonner <dbonner@cogolabs.com>\nAllen J Schmidt Jr <cobrasoft@gmail.com>\nAkintayo Akinwunmi <aakinwunmi@judge.com>\nMORGAN <morgan@morgangraphics.com>\nIsmail Khair <ismail.khair@gmail.com>\nCarl Danley <carldanley@gmail.com>\nMike Petrovich <michael.c.petrovich@gmail.com>\nGreg Lavallee <greglavallee@wapolabs.com>\nTom H Fuertes <TomFuertes@gmail.com>\nRoland Eckl <eckl.roland@googlemail.com>\nYiming He <yiminghe@gmail.com>\nDavid Fox <dfoxinator@gmail.com>\nBennett Sorbo <bsorbo@gmail.com>\nPaul Ramos <paul.b.ramos@gmail.com>\nRod Vagg <rod@vagg.org>\nSebastian Burkhard <sebi.burkhard@gmail.com>\nZachary Adam Kaplan <razic@viralkitty.com>\nAdam Coulombe <me@adam.co>\nnanto_vi <nanto@moon.email.ne.jp>\nnanto <nanto@moon.email.ne.jp>\nDanil Somsikov <danilasomsikov@gmail.com>\nRyunosuke SATO <tricknotes.rs@gmail.com>\nDiego Tres <diegotres@gmail.com>\nJean Boussier <jean.boussier@gmail.com>\nAndrew Plummer <plummer.andrew@gmail.com>\nMark Raddatz <mraddatz@gmail.com>\nPascal Borreli <pascal@borreli.com>\nIsaac Z. Schlueter <i@izs.me>\nKarl Sieburg <ksieburg@yahoo.com>\nNguyen Phuc Lam <ruado1987@gmail.com>\nDmitry Gusev <dmitry.gusev@gmail.com>\nSteven Benner <admin@stevenbenner.com>\nLi Xudong <istonelee@gmail.com>\nMichał Gołębiowski-Owczarek <m.goleb@gmail.com>\nRenato Oliveira dos Santos <ros3@cin.ufpe.br>\nFrederic Junod <frederic.junod@camptocamp.com>\nTom H Fuertes <tomfuertes@gmail.com>\nMitch Foley <mitch@thefoley.net>\nros3cin <ros3@cin.ufpe.br>\nKyle Robinson Young <kyle@dontkry.com>\nJohn Paul <john@johnkpaul.com>\nJason Bedard <jason+jquery@jbedard.ca>\nChris Talkington <chris@talkingtontech.com>\nEddie Monge <eddie@eddiemonge.com>\nTerry Jones <terry@jon.es>\nJason Merino <jasonmerino@gmail.com>\nDan Burzo <danburzo@gmail.com>\nJeremy Dunck <jdunck@gmail.com>\nChris Price <price.c@gmail.com>\nGuy Bedford <guybedford@gmail.com>\nnjhamann <njhamann@gmail.com>\nGoare Mao <mygoare@gmail.com>\nAmey Sakhadeo <me@ameyms.com>\nMike Sidorov <mikes.ekb@gmail.com>\nAnthony Ryan <anthonyryan1@gmail.com>\nLihan Li <frankieteardrop@gmail.com>\nGeorge Kats <katsgeorgeek@gmail.com>\nDongseok Paeng <dongseok83.paeng@lge.com>\nRonny Springer <springer.ronny@gmail.com>\nIlya Kantor <iliakan@gmail.com>\nMarian Sollmann <marian.sollmann@cargomedia.ch>\nChris Antaki <ChrisAntaki@gmail.com>\nDavid Hong <d.hong@me.com>\nJakob Stoeck <jakob@pokermania.de>\nChristopher Jones <chris@cjqed.com>\nForbes Lindesay <forbes@lindesay.co.uk>\nS. Andrew Sheppard <andrew@wq.io>\nLeonardo Balter <leonardo.balter@gmail.com>\nRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>\nDaniel Husar <dano.husar@gmail.com>\nPhilip Jägenstedt <philip@foolip.org>\nJohn Hoven <hovenj@gmail.com>\nRoman Reiß <me@silverwind.io>\nBenjy Cui <benjytrys@gmail.com>\nChristian Kosmowski <ksmwsk@gmail.com>\nDavid Corbacho <davidcorbacho@gmail.com>\nLiang Peng <poppinlp@gmail.com>\nTJ VanToll <tj.vantoll@gmail.com>\nAurelio De Rosa <aurelioderosa@gmail.com>\nSenya Pugach <upisfree@outlook.com>\nDan Hart <danhart@notonthehighstreet.com>\nNazar Mokrynskyi <nazar@mokrynskyi.com>\nBenjamin Tan <demoneaux@gmail.com>\nAmit Merchant <bullredeyes@gmail.com>\nJason Bedard <jason+github@jbedard.ca>\nVeaceslav Grimalschi <grimalschi@yandex.ru>\nRichard McDaniel <rm0026@uah.edu>\nArthur Verschaeve <contact@arthurverschaeve.be>\nShivaji Varma <contact@shivajivarma.com>\nBen Toews <mastahyeti@gmail.com>\nBin Xin <rhyzix@gmail.com>\nNeftaly Hernandez <neftaly.hernandez@gmail.com>\nT.J. Crowder <tj.crowder@farsightsoftware.com>\nNicolas HENRY <icewil@gmail.com>\nFrederic Hemberger <mail@frederic-hemberger.de>\nVictor Homyakov <vkhomyackov@gmail.com>\nAditya Raghavan <araghavan3@gmail.com>\nAnne-Gaelle Colom <coloma@westminster.ac.uk>\nLeonardo Braga <leonardo.braga@gmail.com>\nGeorge Mauer <gmauer@gmail.com>\nStephen Edgar <stephen@netweb.com.au>\nThomas Tortorini <thomastortorini@gmail.com>\nJörn Wagner <joern.wagner@explicatis.com>\nJon Hester <jon.d.hester@gmail.com>\nColin Frick <colin@bash.li>\nWinston Howes <winstonhowes@gmail.com>\nAlexander O'Mara <me@alexomara.com>\nChris Rebert <github@rebertia.com>\nBastian Buchholz <buchholz.bastian@googlemail.com>\nMu Haibao <mhbseal@163.com>\nCalvin Metcalf <calvin.metcalf@gmail.com>\nArthur Stolyar <nekr.fabula@gmail.com>\nGabriel Schulhof <gabriel.schulhof@intel.com>\nGilad Peleg <giladp007@gmail.com>\nJulian Alexander Murillo <julian.alexander.murillo@gmail.com>\nKevin Kirsche <Kev.Kirsche+GitHub@gmail.com>\nMartin Naumann <martin@geekonaut.de>\nYongwoo Jeon <yongwoo.jeon@navercorp.com>\nJohn-David Dalton <john.david.dalton@gmail.com>\nMarek Lewandowski <m.lewandowski@cksource.com>\nBruno Pérel <brunoperel@gmail.com>\nDaniel Nill <daniellnill@gmail.com>\nReed Loden <reed@reedloden.com>\nSean Henderson <seanh.za@gmail.com>\nGary Ye <garysye@gmail.com>\nRichard Kraaijenhagen <stdin+git@riichard.com>\nConnor Atherton <c.liam.atherton@gmail.com>\nChristian Grete <webmaster@christiangrete.com>\nTom von Clef <thomas.vonclef@gmail.com>\nLiza Ramo <liza.h.ramo@gmail.com>\nJoelle Fleurantin <joasqueeniebee@gmail.com>\nSteve Mao <maochenyan@gmail.com>\nJon Dufresne <jon.dufresne@gmail.com>\nJae Sung Park <alberto.park@gmail.com>\nJosh Soref <apache@soref.com>\nSaptak Sengupta <saptak013@gmail.com>\nHenry Wong <henryw4k@gmail.com>\nJun Sun <klsforever@gmail.com>\nMartijn W. van der Lee <martijn@vanderlee.com>\nDevin Wilson <dwilson6.github@gmail.com>\nDamian Senn <jquery@topaxi.codes>\nZack Hall <zackhall@outlook.com>\nVitaliy Terziev <vitaliyterziev@gmail.com>\nTodor Prikumov <tono_pr@abv.bg>\nBernhard M. Wiedemann <jquerybmw@lsmod.de>\nJha Naman <createnaman@gmail.com>\nAlexander Lisianoi <all3fox@gmail.com>\nWilliam Robinet <william.robinet@conostix.com>\nJoe Trumbull <trumbull.j@gmail.com>\nAlexander K <xpyro@ya.ru>\nRalin Chimev <ralin.chimev@gmail.com>\nFelipe Sateler <fsateler@gmail.com>\nChristophe Tafani-Dereeper <christophetd@hotmail.fr>\nManoj Kumar <nithmanoj@gmail.com>\nDavid Broder-Rodgers <broder93@gmail.com>\nAlex Louden <alex@louden.com>\nAlex Padilla <alexonezero@outlook.com>\nkaran-96 <karanbatra96@gmail.com>\n南漂一卒 <shiy007@qq.com>\nErik Lax <erik@datahack.se>\nBoom Lee <teabyii@gmail.com>\nAndreas Solleder <asol@num42.de>\nPierre Spring <pierre@nelm.io>\nShashanka Nataraj <shashankan.10@gmail.com>\nCDAGaming <cstack2011@yahoo.com>\nMatan Kotler-Berkowitz <205matan@gmail.com>\nJordan Beland <jordan.beland@gmail.com>\nHenry Zhu <hi@henryzoo.com>\nNilton Cesar <niltoncms@gmail.com>\nbasil.belokon <basil.belokon@gmail.com>\nAndrey Meshkov <ay.meshkov@gmail.com>\ntmybr11 <tomas.perone@gmail.com>\nLuis Emilio Velasco Sanchez <emibloque@gmail.com>\nEd S <ejsanders@gmail.com>\nBert Zhang <enbo@users.noreply.github.com>\nSébastien Règne <regseb@users.noreply.github.com>\nwartmanm <3869625+wartmanm@users.noreply.github.com>\nSiddharth Dungarwal <sd5869@gmail.com>\nabnud1 <ahmad13932013@hotmail.com>\nAndrei Fangli <andrei_fangli@outlook.com>\nMarja Hölttä <marja.holtta@gmail.com>\nbuddh4 <mail@jharrer.de>\nHoang <dangkyokhoang@gmail.com>\nWonseop Kim <wonseop.kim@samsung.com>\nPat O'Callaghan <patocallaghan@gmail.com>\nJuanMa Ruiz <ruizjuanma@gmail.com>\nAhmed.S.ElAfifi <ahmed.s.elafifi@gmail.com>\nSean Robinson <sean.robinson@scottsdalecc.edu>\nChristian Oliff <christianoliff@pm.me>\n"
  },
  {
    "path": "docs/images/02_bellCurve/lib/jquery-3.5.1/jquery.js",
    "content": "/*!\n * jQuery JavaScript Library v3.5.1\n * https://jquery.com/\n *\n * Includes Sizzle.js\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://jquery.org/license\n *\n * Date: 2020-05-04T22:49Z\n */\n( function( global, factory ) {\n\n\t\"use strict\";\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\n\t\t// For CommonJS and CommonJS-like environments where a proper `window`\n\t\t// is present, execute the factory and get jQuery.\n\t\t// For environments that do not have a `window` with a `document`\n\t\t// (such as Node.js), expose a factory as module.exports.\n\t\t// This accentuates the need for the creation of a real `window`.\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info.\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n} )( typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1\n// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode\n// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common\n// enough that all such attempts are guarded in a try block.\n\"use strict\";\n\nvar arr = [];\n\nvar getProto = Object.getPrototypeOf;\n\nvar slice = arr.slice;\n\nvar flat = arr.flat ? function( array ) {\n\treturn arr.flat.call( array );\n} : function( array ) {\n\treturn arr.concat.apply( [], array );\n};\n\n\nvar push = arr.push;\n\nvar indexOf = arr.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar fnToString = hasOwn.toString;\n\nvar ObjectFunctionString = fnToString.call( Object );\n\nvar support = {};\n\nvar isFunction = function isFunction( obj ) {\n\n      // Support: Chrome <=57, Firefox <=52\n      // In some browsers, typeof returns \"function\" for HTML <object> elements\n      // (i.e., `typeof document.createElement( \"object\" ) === \"function\"`).\n      // We don't want to classify *any* DOM node as a function.\n      return typeof obj === \"function\" && typeof obj.nodeType !== \"number\";\n  };\n\n\nvar isWindow = function isWindow( obj ) {\n\t\treturn obj != null && obj === obj.window;\n\t};\n\n\nvar document = window.document;\n\n\n\n\tvar preservedScriptAttributes = {\n\t\ttype: true,\n\t\tsrc: true,\n\t\tnonce: true,\n\t\tnoModule: true\n\t};\n\n\tfunction DOMEval( code, node, doc ) {\n\t\tdoc = doc || document;\n\n\t\tvar i, val,\n\t\t\tscript = doc.createElement( \"script\" );\n\n\t\tscript.text = code;\n\t\tif ( node ) {\n\t\t\tfor ( i in preservedScriptAttributes ) {\n\n\t\t\t\t// Support: Firefox 64+, Edge 18+\n\t\t\t\t// Some browsers don't support the \"nonce\" property on scripts.\n\t\t\t\t// On the other hand, just using `getAttribute` is not enough as\n\t\t\t\t// the `nonce` attribute is reset to an empty string whenever it\n\t\t\t\t// becomes browsing-context connected.\n\t\t\t\t// See https://github.com/whatwg/html/issues/2369\n\t\t\t\t// See https://html.spec.whatwg.org/#nonce-attributes\n\t\t\t\t// The `node.getAttribute` check was added for the sake of\n\t\t\t\t// `jQuery.globalEval` so that it can fake a nonce-containing node\n\t\t\t\t// via an object.\n\t\t\t\tval = node[ i ] || node.getAttribute && node.getAttribute( i );\n\t\t\t\tif ( val ) {\n\t\t\t\t\tscript.setAttribute( i, val );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tdoc.head.appendChild( script ).parentNode.removeChild( script );\n\t}\n\n\nfunction toType( obj ) {\n\tif ( obj == null ) {\n\t\treturn obj + \"\";\n\t}\n\n\t// Support: Android <=2.3 only (functionish RegExp)\n\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\tclass2type[ toString.call( obj ) ] || \"object\" :\n\t\ttypeof obj;\n}\n/* global Symbol */\n// Defining this global in .eslintrc.json would create a danger of using the global\n// unguarded in another place, it seems safer to define global only for this module\n\n\n\nvar\n\tversion = \"3.5.1\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t};\n\njQuery.fn = jQuery.prototype = {\n\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\n\t\t// Return all the elements in a clean array\n\t\tif ( num == null ) {\n\t\t\treturn slice.call( this );\n\t\t}\n\n\t\t// Return just the one element from the set\n\t\treturn num < 0 ? this[ num + this.length ] : this[ num ];\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\teach: function( callback ) {\n\t\treturn jQuery.each( this, callback );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map( this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t} ) );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teven: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn ( i + 1 ) % 2;\n\t\t} ) );\n\t},\n\n\todd: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn i % 2;\n\t\t} ) );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor();\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: arr.sort,\n\tsplice: arr.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[ 0 ] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// Skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !isFunction( target ) ) {\n\t\ttarget = {};\n\t}\n\n\t// Extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\n\t\t// Only deal with non-null/undefined values\n\t\tif ( ( options = arguments[ i ] ) != null ) {\n\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent Object.prototype pollution\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( name === \"__proto__\" || target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject( copy ) ||\n\t\t\t\t\t( copyIsArray = Array.isArray( copy ) ) ) ) {\n\t\t\t\t\tsrc = target[ name ];\n\n\t\t\t\t\t// Ensure proper type for the source value\n\t\t\t\t\tif ( copyIsArray && !Array.isArray( src ) ) {\n\t\t\t\t\t\tclone = [];\n\t\t\t\t\t} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {\n\t\t\t\t\t\tclone = {};\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src;\n\t\t\t\t\t}\n\t\t\t\t\tcopyIsArray = false;\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend( {\n\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\tisPlainObject: function( obj ) {\n\t\tvar proto, Ctor;\n\n\t\t// Detect obvious negatives\n\t\t// Use toString instead of jQuery.type to catch host objects\n\t\tif ( !obj || toString.call( obj ) !== \"[object Object]\" ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tproto = getProto( obj );\n\n\t\t// Objects with no prototype (e.g., `Object.create( null )`) are plain\n\t\tif ( !proto ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Objects with prototype are plain iff they were constructed by a global Object function\n\t\tCtor = hasOwn.call( proto, \"constructor\" ) && proto.constructor;\n\t\treturn typeof Ctor === \"function\" && fnToString.call( Ctor ) === ObjectFunctionString;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\t// Evaluates a script in a provided context; falls back to the global one\n\t// if not specified.\n\tglobalEval: function( code, options, doc ) {\n\t\tDOMEval( code, { nonce: options && options.nonce }, doc );\n\t},\n\n\teach: function( obj, callback ) {\n\t\tvar length, i = 0;\n\n\t\tif ( isArrayLike( obj ) ) {\n\t\t\tlength = obj.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tfor ( i in obj ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArrayLike( Object( arr ) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\treturn arr == null ? -1 : indexOf.call( arr, elem, i );\n\t},\n\n\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t// push.apply(_, arraylike) throws on ancient WebKit\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\tfor ( ; j < len; j++ ) {\n\t\t\tfirst[ i++ ] = second[ j ];\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar length, value,\n\t\t\ti = 0,\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArrayLike( elems ) ) {\n\t\t\tlength = elems.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn flat( ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n} );\n\nif ( typeof Symbol === \"function\" ) {\n\tjQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];\n}\n\n// Populate the class2type map\njQuery.each( \"Boolean Number String Function Array Date RegExp Object Error Symbol\".split( \" \" ),\nfunction( _i, name ) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n} );\n\nfunction isArrayLike( obj ) {\n\n\t// Support: real iOS 8.2 only (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = !!obj && \"length\" in obj && obj.length,\n\t\ttype = toType( obj );\n\n\tif ( isFunction( obj ) || isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.3.5\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://js.foundation/\n *\n * Date: 2020-03-14\n */\n( function( window ) {\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tnonnativeSelectorCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// Instance methods\n\thasOwn = ( {} ).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpushNative = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\n\t// Use a stripped-down indexOf as it's faster than native\n\t// https://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[ i ] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|\" +\n\t\t\"ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\n\t// https://www.w3.org/TR/css-syntax-3/#ident-token-diagram\n\tidentifier = \"(?:\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace +\n\t\t\"?|\\\\\\\\[^\\\\r\\\\n\\\\f]|[\\\\w-]|[^\\0-\\\\x7f])+\",\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + identifier + \")(?:\" + whitespace +\n\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\n\t\t// \"Attribute values must be CSS identifiers [capture 5]\n\t\t// or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" +\n\t\twhitespace + \"*\\\\]\",\n\n\tpseudos = \":(\" + identifier + \")(?:\\\\((\" +\n\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" +\n\t\twhitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace +\n\t\t\"*\" ),\n\trdescend = new RegExp( whitespace + \"|>\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + identifier + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + identifier + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + identifier + \"|[*])\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" +\n\t\t\twhitespace + \"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" +\n\t\t\twhitespace + \"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace +\n\t\t\t\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" + whitespace +\n\t\t\t\"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trhtml = /HTML$/i,\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\n\t// CSS escapes\n\t// http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace + \"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\", \"g\" ),\n\tfunescape = function( escape, nonHex ) {\n\t\tvar high = \"0x\" + escape.slice( 1 ) - 0x10000;\n\n\t\treturn nonHex ?\n\n\t\t\t// Strip the backslash prefix from a non-hex escape sequence\n\t\t\tnonHex :\n\n\t\t\t// Replace a hexadecimal escape sequence with the encoded Unicode code point\n\t\t\t// Support: IE <=11+\n\t\t\t// For values outside the Basic Multilingual Plane (BMP), manually construct a\n\t\t\t// surrogate pair\n\t\t\thigh < 0 ?\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// CSS string/identifier serialization\n\t// https://drafts.csswg.org/cssom/#common-serializing-idioms\n\trcssescape = /([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,\n\tfcssescape = function( ch, asCodePoint ) {\n\t\tif ( asCodePoint ) {\n\n\t\t\t// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER\n\t\t\tif ( ch === \"\\0\" ) {\n\t\t\t\treturn \"\\uFFFD\";\n\t\t\t}\n\n\t\t\t// Control characters and (dependent upon position) numbers get escaped as code points\n\t\t\treturn ch.slice( 0, -1 ) + \"\\\\\" +\n\t\t\t\tch.charCodeAt( ch.length - 1 ).toString( 16 ) + \" \";\n\t\t}\n\n\t\t// Other potentially-special ASCII characters get backslash-escaped\n\t\treturn \"\\\\\" + ch;\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t},\n\n\tinDisabledFieldset = addCombinator(\n\t\tfunction( elem ) {\n\t\t\treturn elem.disabled === true && elem.nodeName.toLowerCase() === \"fieldset\";\n\t\t},\n\t\t{ dir: \"parentNode\", next: \"legend\" }\n\t);\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t( arr = slice.call( preferredDoc.childNodes ) ),\n\t\tpreferredDoc.childNodes\n\t);\n\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\t// eslint-disable-next-line no-unused-expressions\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpushNative.apply( target, slice.call( els ) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( ( target[ j++ ] = els[ i++ ] ) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar m, i, elem, nid, match, groups, newSelector,\n\t\tnewContext = context && context.ownerDocument,\n\n\t\t// nodeType defaults to 9, since context defaults to document\n\t\tnodeType = context ? context.nodeType : 9;\n\n\tresults = results || [];\n\n\t// Return early from calls with invalid selector or context\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\t// Try to shortcut find operations (as opposed to filters) in HTML documents\n\tif ( !seed ) {\n\t\tsetDocument( context );\n\t\tcontext = context || document;\n\n\t\tif ( documentIsHTML ) {\n\n\t\t\t// If the selector is sufficiently simple, try using a \"get*By*\" DOM method\n\t\t\t// (excepting DocumentFragment context, where the methods don't exist)\n\t\t\tif ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) {\n\n\t\t\t\t// ID selector\n\t\t\t\tif ( ( m = match[ 1 ] ) ) {\n\n\t\t\t\t\t// Document context\n\t\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\t\tif ( ( elem = context.getElementById( m ) ) ) {\n\n\t\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// Element context\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\tif ( newContext && ( elem = newContext.getElementById( m ) ) &&\n\t\t\t\t\t\t\tcontains( context, elem ) &&\n\t\t\t\t\t\t\telem.id === m ) {\n\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t// Type selector\n\t\t\t\t} else if ( match[ 2 ] ) {\n\t\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\t\treturn results;\n\n\t\t\t\t// Class selector\n\t\t\t\t} else if ( ( m = match[ 3 ] ) && support.getElementsByClassName &&\n\t\t\t\t\tcontext.getElementsByClassName ) {\n\n\t\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\t\treturn results;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Take advantage of querySelectorAll\n\t\t\tif ( support.qsa &&\n\t\t\t\t!nonnativeSelectorCache[ selector + \" \" ] &&\n\t\t\t\t( !rbuggyQSA || !rbuggyQSA.test( selector ) ) &&\n\n\t\t\t\t// Support: IE 8 only\n\t\t\t\t// Exclude object elements\n\t\t\t\t( nodeType !== 1 || context.nodeName.toLowerCase() !== \"object\" ) ) {\n\n\t\t\t\tnewSelector = selector;\n\t\t\t\tnewContext = context;\n\n\t\t\t\t// qSA considers elements outside a scoping root when evaluating child or\n\t\t\t\t// descendant combinators, which is not what we want.\n\t\t\t\t// In such cases, we work around the behavior by prefixing every selector in the\n\t\t\t\t// list with an ID selector referencing the scope context.\n\t\t\t\t// The technique has to be used as well when a leading combinator is used\n\t\t\t\t// as such selectors are not recognized by querySelectorAll.\n\t\t\t\t// Thanks to Andrew Dupont for this technique.\n\t\t\t\tif ( nodeType === 1 &&\n\t\t\t\t\t( rdescend.test( selector ) || rcombinators.test( selector ) ) ) {\n\n\t\t\t\t\t// Expand context for sibling selectors\n\t\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext;\n\n\t\t\t\t\t// We can use :scope instead of the ID hack if the browser\n\t\t\t\t\t// supports it & if we're not changing the context.\n\t\t\t\t\tif ( newContext !== context || !support.scope ) {\n\n\t\t\t\t\t\t// Capture the context ID, setting it first if necessary\n\t\t\t\t\t\tif ( ( nid = context.getAttribute( \"id\" ) ) ) {\n\t\t\t\t\t\t\tnid = nid.replace( rcssescape, fcssescape );\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tcontext.setAttribute( \"id\", ( nid = expando ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prefix every selector in the list\n\t\t\t\t\tgroups = tokenize( selector );\n\t\t\t\t\ti = groups.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tgroups[ i ] = ( nid ? \"#\" + nid : \":scope\" ) + \" \" +\n\t\t\t\t\t\t\ttoSelector( groups[ i ] );\n\t\t\t\t\t}\n\t\t\t\t\tnewSelector = groups.join( \",\" );\n\t\t\t\t}\n\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch ( qsaError ) {\n\t\t\t\t\tnonnativeSelectorCache( selector, true );\n\t\t\t\t} finally {\n\t\t\t\t\tif ( nid === expando ) {\n\t\t\t\t\t\tcontext.removeAttribute( \"id\" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {function(string, object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn ( cache[ key + \" \" ] = value );\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created element and returns a boolean result\n */\nfunction assert( fn ) {\n\tvar el = document.createElement( \"fieldset\" );\n\n\ttry {\n\t\treturn !!fn( el );\n\t} catch ( e ) {\n\t\treturn false;\n\t} finally {\n\n\t\t// Remove from its parent by default\n\t\tif ( el.parentNode ) {\n\t\t\tel.parentNode.removeChild( el );\n\t\t}\n\n\t\t// release memory in IE\n\t\tel = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split( \"|\" ),\n\t\ti = arr.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[ i ] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\ta.sourceIndex - b.sourceIndex;\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( ( cur = cur.nextSibling ) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn ( name === \"input\" || name === \"button\" ) && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for :enabled/:disabled\n * @param {Boolean} disabled true for :disabled; false for :enabled\n */\nfunction createDisabledPseudo( disabled ) {\n\n\t// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable\n\treturn function( elem ) {\n\n\t\t// Only certain elements can match :enabled or :disabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled\n\t\tif ( \"form\" in elem ) {\n\n\t\t\t// Check for inherited disabledness on relevant non-disabled elements:\n\t\t\t// * listed form-associated elements in a disabled fieldset\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#category-listed\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled\n\t\t\t// * option elements in a disabled optgroup\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled\n\t\t\t// All such elements have a \"form\" property.\n\t\t\tif ( elem.parentNode && elem.disabled === false ) {\n\n\t\t\t\t// Option elements defer to a parent optgroup if present\n\t\t\t\tif ( \"label\" in elem ) {\n\t\t\t\t\tif ( \"label\" in elem.parentNode ) {\n\t\t\t\t\t\treturn elem.parentNode.disabled === disabled;\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn elem.disabled === disabled;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Support: IE 6 - 11\n\t\t\t\t// Use the isDisabled shortcut property to check for disabled fieldset ancestors\n\t\t\t\treturn elem.isDisabled === disabled ||\n\n\t\t\t\t\t// Where there is no isDisabled, check manually\n\t\t\t\t\t/* jshint -W018 */\n\t\t\t\t\telem.isDisabled !== !disabled &&\n\t\t\t\t\tinDisabledFieldset( elem ) === disabled;\n\t\t\t}\n\n\t\t\treturn elem.disabled === disabled;\n\n\t\t// Try to winnow out elements that can't be disabled before trusting the disabled property.\n\t\t// Some victims get caught in our net (label, legend, menu, track), but it shouldn't\n\t\t// even exist on them, let alone have a boolean value.\n\t\t} else if ( \"label\" in elem ) {\n\t\t\treturn elem.disabled === disabled;\n\t\t}\n\n\t\t// Remaining elements are neither :enabled nor :disabled\n\t\treturn false;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction( function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction( function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ ( j = matchIndexes[ i ] ) ] ) {\n\t\t\t\t\tseed[ j ] = !( matches[ j ] = seed[ j ] );\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t} );\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\tvar namespace = elem.namespaceURI,\n\t\tdocElem = ( elem.ownerDocument || elem ).documentElement;\n\n\t// Support: IE <=8\n\t// Assume HTML when documentElement doesn't yet exist, such as inside loading iframes\n\t// https://bugs.jquery.com/ticket/4833\n\treturn !rhtml.test( namespace || docElem && docElem.nodeName || \"HTML\" );\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, subWindow,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// Return early if doc is invalid or already selected\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Update global variables\n\tdocument = doc;\n\tdocElem = document.documentElement;\n\tdocumentIsHTML = !isXML( document );\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t// Accessing iframe documents after unload throws \"permission denied\" errors (jQuery #13936)\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( preferredDoc != document &&\n\t\t( subWindow = document.defaultView ) && subWindow.top !== subWindow ) {\n\n\t\t// Support: IE 11, Edge\n\t\tif ( subWindow.addEventListener ) {\n\t\t\tsubWindow.addEventListener( \"unload\", unloadHandler, false );\n\n\t\t// Support: IE 9 - 10 only\n\t\t} else if ( subWindow.attachEvent ) {\n\t\t\tsubWindow.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t// Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only,\n\t// Safari 4 - 5 only, Opera <=11.6 - 12.x only\n\t// IE/Edge & older browsers don't support the :scope pseudo-class.\n\t// Support: Safari 6.0 only\n\t// Safari 6.0 supports :scope but it's an alias of :root there.\n\tsupport.scope = assert( function( el ) {\n\t\tdocElem.appendChild( el ).appendChild( document.createElement( \"div\" ) );\n\t\treturn typeof el.querySelectorAll !== \"undefined\" &&\n\t\t\t!el.querySelectorAll( \":scope fieldset div\" ).length;\n\t} );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert( function( el ) {\n\t\tel.className = \"i\";\n\t\treturn !el.getAttribute( \"className\" );\n\t} );\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert( function( el ) {\n\t\tel.appendChild( document.createComment( \"\" ) );\n\t\treturn !el.getElementsByTagName( \"*\" ).length;\n\t} );\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( document.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programmatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert( function( el ) {\n\t\tdocElem.appendChild( el ).id = expando;\n\t\treturn !document.getElementsByName || !document.getElementsByName( expando ).length;\n\t} );\n\n\t// ID filter and find\n\tif ( support.getById ) {\n\t\tExpr.filter[ \"ID\" ] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute( \"id\" ) === attrId;\n\t\t\t};\n\t\t};\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar elem = context.getElementById( id );\n\t\t\t\treturn elem ? [ elem ] : [];\n\t\t\t}\n\t\t};\n\t} else {\n\t\tExpr.filter[ \"ID\" ] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" &&\n\t\t\t\t\telem.getAttributeNode( \"id\" );\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\n\t\t// Support: IE 6 - 7 only\n\t\t// getElementById is not reliable as a find shortcut\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar node, i, elems,\n\t\t\t\t\telem = context.getElementById( id );\n\n\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t// Verify the id attribute\n\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t}\n\n\t\t\t\t\t// Fall back on getElementsByName\n\t\t\t\t\telems = context.getElementsByName( id );\n\t\t\t\t\ti = 0;\n\t\t\t\t\twhile ( ( elem = elems[ i++ ] ) ) {\n\t\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn [];\n\t\t\t}\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[ \"TAG\" ] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[ \"CLASS\" ] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See https://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) {\n\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert( function( el ) {\n\n\t\t\tvar input;\n\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// https://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( el ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\r\\\\' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( el.querySelectorAll( \"[msallowcapture^='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !el.querySelectorAll( \"[selected]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+\n\t\t\tif ( !el.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"~=\" );\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 15 - 18+\n\t\t\t// IE 11/Edge don't find elements on a `[name='']` query in some cases.\n\t\t\t// Adding a temporary attribute to the document before the selection works\n\t\t\t// around the issue.\n\t\t\t// Interestingly, IE 10 & older don't seem to have the issue.\n\t\t\tinput = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"name\", \"\" );\n\t\t\tel.appendChild( input );\n\t\t\tif ( !el.querySelectorAll( \"[name='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*name\" + whitespace + \"*=\" +\n\t\t\t\t\twhitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !el.querySelectorAll( \":checked\" ).length ) {\n\t\t\t\trbuggyQSA.push( \":checked\" );\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibling-combinator selector` fails\n\t\t\tif ( !el.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push( \".#.+[+~]\" );\n\t\t\t}\n\n\t\t\t// Support: Firefox <=3.6 - 5 only\n\t\t\t// Old Firefox doesn't throw on a badly-escaped identifier.\n\t\t\tel.querySelectorAll( \"\\\\\\f\" );\n\t\t\trbuggyQSA.push( \"[\\\\r\\\\n\\\\f]\" );\n\t\t} );\n\n\t\tassert( function( el ) {\n\t\t\tel.innerHTML = \"<a href='' disabled='disabled'></a>\" +\n\t\t\t\t\"<select disabled='disabled'><option/></select>\";\n\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tel.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( el.querySelectorAll( \"[name=d]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( el.querySelectorAll( \":enabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: IE9-11+\n\t\t\t// IE's :disabled selector does not pick up the children of disabled fieldsets\n\t\t\tdocElem.appendChild( el ).disabled = true;\n\t\t\tif ( el.querySelectorAll( \":disabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: Opera 10 - 11 only\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tel.querySelectorAll( \"*,:x\" );\n\t\t\trbuggyQSA.push( \",.*:\" );\n\t\t} );\n\t}\n\n\tif ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector ) ) ) ) {\n\n\t\tassert( function( el ) {\n\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( el, \"*\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( el, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t} );\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( \"|\" ) );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( \"|\" ) );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully self-exclusive\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t) );\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( ( b = b.parentNode ) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t// two documents; shallow comparisons work.\n\t\t// eslint-disable-next-line eqeqeq\n\t\tcompare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( a == document || a.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, a ) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( b == document || b.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, b ) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\treturn a == document ? -1 :\n\t\t\t\tb == document ? 1 :\n\t\t\t\t/* eslint-enable eqeqeq */\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[ i ] === bp[ i ] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[ i ], bp[ i ] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\tap[ i ] == preferredDoc ? -1 :\n\t\t\tbp[ i ] == preferredDoc ? 1 :\n\t\t\t/* eslint-enable eqeqeq */\n\t\t\t0;\n\t};\n\n\treturn document;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\tsetDocument( elem );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t!nonnativeSelectorCache[ expr + \" \" ] &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\n\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t// fragment in IE 9\n\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\tnonnativeSelectorCache( expr, true );\n\t\t}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( context.ownerDocument || context ) != document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( elem.ownerDocument || elem ) != document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.escape = function( sel ) {\n\treturn ( sel + \"\" ).replace( rcssescape, fcssescape );\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( ( node = elem[ i++ ] ) ) {\n\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[ 1 ] = match[ 1 ].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[ 3 ] = ( match[ 3 ] || match[ 4 ] ||\n\t\t\t\tmatch[ 5 ] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[ 2 ] === \"~=\" ) {\n\t\t\t\tmatch[ 3 ] = \" \" + match[ 3 ] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[ 1 ] = match[ 1 ].toLowerCase();\n\n\t\t\tif ( match[ 1 ].slice( 0, 3 ) === \"nth\" ) {\n\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[ 3 ] ) {\n\t\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[ 4 ] = +( match[ 4 ] ?\n\t\t\t\t\tmatch[ 5 ] + ( match[ 6 ] || 1 ) :\n\t\t\t\t\t2 * ( match[ 3 ] === \"even\" || match[ 3 ] === \"odd\" ) );\n\t\t\t\tmatch[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === \"odd\" );\n\n\t\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[ 3 ] ) {\n\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[ 6 ] && match[ 2 ];\n\n\t\t\tif ( matchExpr[ \"CHILD\" ].test( match[ 0 ] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[ 3 ] ) {\n\t\t\t\tmatch[ 2 ] = match[ 4 ] || match[ 5 ] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t( excess = tokenize( unquoted, true ) ) &&\n\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t( excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length ) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[ 0 ] = match[ 0 ].slice( 0, excess );\n\t\t\t\tmatch[ 2 ] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() {\n\t\t\t\t\treturn true;\n\t\t\t\t} :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t( pattern = new RegExp( \"(^|\" + whitespace +\n\t\t\t\t\t\")\" + className + \"(\" + whitespace + \"|$)\" ) ) && classCache(\n\t\t\t\t\t\tclassName, function( elem ) {\n\t\t\t\t\t\t\treturn pattern.test(\n\t\t\t\t\t\t\t\ttypeof elem.className === \"string\" && elem.className ||\n\t\t\t\t\t\t\t\ttypeof elem.getAttribute !== \"undefined\" &&\n\t\t\t\t\t\t\t\t\telem.getAttribute( \"class\" ) ||\n\t\t\t\t\t\t\t\t\"\"\n\t\t\t\t\t\t\t);\n\t\t\t\t} );\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\t/* eslint-disable max-len */\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t\t/* eslint-enable max-len */\n\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, _argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tvar cache, uniqueCache, outerCache, node, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType,\n\t\t\t\t\t\tdiff = false;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( ( node = node[ dir ] ) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) {\n\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\n\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\tnode = parent;\n\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\tdiff = nodeIndex && cache[ 2 ];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t\tif ( useCache ) {\n\n\t\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\t\tdiff = nodeIndex;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// xml :nth-child(...)\n\t\t\t\t\t\t\t// or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t\tif ( diff === false ) {\n\n\t\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t\tif ( ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) &&\n\t\t\t\t\t\t\t\t\t\t++diff ) {\n\n\t\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t\touterCache = node[ expando ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction( function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[ i ] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[ i ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t} ) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction( function( selector ) {\n\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction( function( seed, matches, _context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\t\t\t\t\tseed[ i ] = !( matches[ i ] = elem );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} ) :\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tinput[ 0 ] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[ 0 ] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t} ),\n\n\t\t\"has\": markFunction( function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t} ),\n\n\t\t\"contains\": markFunction( function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t} ),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test( lang || \"\" ) ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( ( elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute( \"xml:lang\" ) || elem.getAttribute( \"lang\" ) ) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( ( elem = elem.parentNode ) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t} ),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement &&\n\t\t\t\t( !document.hasFocus || document.hasFocus() ) &&\n\t\t\t\t!!( elem.type || elem.href || ~elem.tabIndex );\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": createDisabledPseudo( false ),\n\t\t\"disabled\": createDisabledPseudo( true ),\n\n\t\t\"checked\": function( elem ) {\n\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn ( nodeName === \"input\" && !!elem.checked ) ||\n\t\t\t\t( nodeName === \"option\" && !!elem.selected );\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\t// eslint-disable-next-line no-unused-expressions\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[ \"empty\" ]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( ( attr = elem.getAttribute( \"type\" ) ) == null ||\n\t\t\t\t\tattr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo( function() {\n\t\t\treturn [ 0 ];\n\t\t} ),\n\n\t\t\"last\": createPositionalPseudo( function( _matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t} ),\n\n\t\t\"eq\": createPositionalPseudo( function( _matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t} ),\n\n\t\t\"even\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"odd\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"lt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ?\n\t\t\t\targument + length :\n\t\t\t\targument > length ?\n\t\t\t\t\tlength :\n\t\t\t\t\targument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"gt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} )\n\t}\n};\n\nExpr.pseudos[ \"nth\" ] = Expr.pseudos[ \"eq\" ];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || ( match = rcomma.exec( soFar ) ) ) {\n\t\t\tif ( match ) {\n\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[ 0 ].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( ( tokens = [] ) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( ( match = rcombinators.exec( soFar ) ) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push( {\n\t\t\t\tvalue: matched,\n\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[ 0 ].replace( rtrim, \" \" )\n\t\t\t} );\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] ||\n\t\t\t\t( match = preFilters[ type ]( match ) ) ) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push( {\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t} );\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[ i ].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tskip = combinator.next,\n\t\tkey = skip || dir,\n\t\tcheckNonElements = base && key === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, uniqueCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || ( elem[ expando ] = {} );\n\n\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\tuniqueCache = outerCache[ elem.uniqueID ] ||\n\t\t\t\t\t\t\t( outerCache[ elem.uniqueID ] = {} );\n\n\t\t\t\t\t\tif ( skip && skip === elem.nodeName.toLowerCase() ) {\n\t\t\t\t\t\t\telem = elem[ dir ] || elem;\n\t\t\t\t\t\t} else if ( ( oldCache = uniqueCache[ key ] ) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn ( newCache[ 2 ] = oldCache[ 2 ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\tuniqueCache[ key ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[ i ]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[ 0 ];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[ i ], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction( function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts(\n\t\t\t\tselector || \"*\",\n\t\t\t\tcontext.nodeType ? [ context ] : context,\n\t\t\t\t[]\n\t\t\t),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( ( elem = temp[ i ] ) ) {\n\t\t\t\t\tmatcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) ) {\n\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( ( matcherIn[ i ] = elem ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, ( matcherOut = [] ), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) &&\n\t\t\t\t\t\t( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) {\n\n\t\t\t\t\t\tseed[ temp ] = !( results[ temp ] = elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t} );\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[ 0 ].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[ \" \" ],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t( checkContext = context ).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) {\n\t\t\tmatchers = [ addCombinator( elementMatcher( matchers ), matcher ) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[ j ].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\n\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\ttokens\n\t\t\t\t\t\t.slice( 0, i - 1 )\n\t\t\t\t\t\t.concat( { value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" } )\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[ \"TAG\" ]( \"*\", outermost ),\n\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\n\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\toutermostContext = context == document || context || outermost;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\n\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\tif ( !context && elem.ownerDocument != document ) {\n\t\t\t\t\t\tsetDocument( elem );\n\t\t\t\t\t\txml = !documentIsHTML;\n\t\t\t\t\t}\n\t\t\t\t\twhile ( ( matcher = elementMatchers[ j++ ] ) ) {\n\t\t\t\t\t\tif ( matcher( elem, context || document, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( ( elem = !matcher && elem ) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// `i` is now the count of elements visited above, and adding it to `matchedCount`\n\t\t\t// makes the latter nonnegative.\n\t\t\tmatchedCount += i;\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\t// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n\t\t\t// equals `i`), unless we didn't visit _any_ elements in the above loop because we have\n\t\t\t// no element matchers and no seed.\n\t\t\t// Incrementing an initially-string \"0\" `i` allows `i` to remain a string only in that\n\t\t\t// case, which will result in a \"00\" `matchedCount` that differs from `i` but is also\n\t\t\t// numerically zero.\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( ( matcher = setMatchers[ j++ ] ) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !( unmatched[ i ] || setMatched[ i ] ) ) {\n\t\t\t\t\t\t\t\tsetMatched[ i ] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[ i ] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache(\n\t\t\tselector,\n\t\t\tmatcherFromGroupMatchers( elementMatchers, setMatchers )\n\t\t);\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( ( selector = compiled.selector || selector ) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is only one selector in the list and no seed\n\t// (the latter of which guarantees us context)\n\tif ( match.length === 1 ) {\n\n\t\t// Reduce context if the leading compound selector is an ID\n\t\ttokens = match[ 0 ] = match[ 0 ].slice( 0 );\n\t\tif ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === \"ID\" &&\n\t\t\tcontext.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) {\n\n\t\t\tcontext = ( Expr.find[ \"ID\" ]( token.matches[ 0 ]\n\t\t\t\t.replace( runescape, funescape ), context ) || [] )[ 0 ];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[ \"needsContext\" ].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[ i ];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ ( type = token.type ) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( ( find = Expr.find[ type ] ) ) {\n\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( ( seed = find(\n\t\t\t\t\ttoken.matches[ 0 ].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext\n\t\t\t\t) ) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\t!context || rsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split( \"\" ).sort( sortOrder ).join( \"\" ) === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert( function( el ) {\n\n\t// Should return 1, but returns 4 (following)\n\treturn el.compareDocumentPosition( document.createElement( \"fieldset\" ) ) & 1;\n} );\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert( function( el ) {\n\tel.innerHTML = \"<a href='#'></a>\";\n\treturn el.firstChild.getAttribute( \"href\" ) === \"#\";\n} ) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert( function( el ) {\n\tel.innerHTML = \"<input/>\";\n\tel.firstChild.setAttribute( \"value\", \"\" );\n\treturn el.firstChild.getAttribute( \"value\" ) === \"\";\n} ) ) {\n\taddHandle( \"value\", function( elem, _name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert( function( el ) {\n\treturn el.getAttribute( \"disabled\" ) == null;\n} ) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\t\tnull;\n\t\t}\n\t} );\n}\n\nreturn Sizzle;\n\n} )( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\n\n// Deprecated\njQuery.expr[ \":\" ] = jQuery.expr.pseudos;\njQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\njQuery.escapeSelector = Sizzle.escape;\n\n\n\n\nvar dir = function( elem, dir, until ) {\n\tvar matched = [],\n\t\ttruncate = until !== undefined;\n\n\twhile ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {\n\t\tif ( elem.nodeType === 1 ) {\n\t\t\tif ( truncate && jQuery( elem ).is( until ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tmatched.push( elem );\n\t\t}\n\t}\n\treturn matched;\n};\n\n\nvar siblings = function( n, elem ) {\n\tvar matched = [];\n\n\tfor ( ; n; n = n.nextSibling ) {\n\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\tmatched.push( n );\n\t\t}\n\t}\n\n\treturn matched;\n};\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\n\n\nfunction nodeName( elem, name ) {\n\n  return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\n};\nvar rsingleTag = ( /^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i );\n\n\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t} );\n\t}\n\n\t// Single element\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t} );\n\t}\n\n\t// Arraylike of elements (jQuery, arguments, Array)\n\tif ( typeof qualifier !== \"string\" ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( indexOf.call( qualifier, elem ) > -1 ) !== not;\n\t\t} );\n\t}\n\n\t// Filtered directly for both simple and complex selectors\n\treturn jQuery.filter( qualifier, elements, not );\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\tif ( elems.length === 1 && elem.nodeType === 1 ) {\n\t\treturn jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];\n\t}\n\n\treturn jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\treturn elem.nodeType === 1;\n\t} ) );\n};\n\njQuery.fn.extend( {\n\tfind: function( selector ) {\n\t\tvar i, ret,\n\t\t\tlen = this.length,\n\t\t\tself = this;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter( function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} ) );\n\t\t}\n\n\t\tret = this.pushStack( [] );\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\treturn len > 1 ? jQuery.uniqueSort( ret ) : ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], false ) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], true ) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n} );\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\t// Shortcut simple #id case for speed\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/,\n\n\tinit = jQuery.fn.init = function( selector, context, root ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Method init() accepts an alternate rootjQuery\n\t\t// so migrate can support jQuery.sub (gh-2101)\n\t\troot = root || rootjQuery;\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector[ 0 ] === \"<\" &&\n\t\t\t\tselector[ selector.length - 1 ] === \">\" &&\n\t\t\t\tselector.length >= 3 ) {\n\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && ( match[ 1 ] || !context ) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[ 1 ] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[ 0 ] : context;\n\n\t\t\t\t\t// Option to run scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[ 1 ],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[ 2 ] );\n\n\t\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t\t// Inject the element directly into the jQuery object\n\t\t\t\t\t\tthis[ 0 ] = elem;\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || root ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis[ 0 ] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( isFunction( selector ) ) {\n\t\t\treturn root.ready !== undefined ?\n\t\t\t\troot.ready( selector ) :\n\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\n\t// Methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend( {\n\thas: function( target ) {\n\t\tvar targets = jQuery( target, this ),\n\t\t\tl = targets.length;\n\n\t\treturn this.filter( function() {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[ i ] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\ttargets = typeof selectors !== \"string\" && jQuery( selectors );\n\n\t\t// Positional selectors never match, since there's no _selection_ context\n\t\tif ( !rneedsContext.test( selectors ) ) {\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tfor ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {\n\n\t\t\t\t\t// Always skip document fragments\n\t\t\t\t\tif ( cur.nodeType < 11 && ( targets ?\n\t\t\t\t\t\ttargets.index( cur ) > -1 :\n\n\t\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\t\tjQuery.find.matchesSelector( cur, selectors ) ) ) {\n\n\t\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within the set\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// Index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn indexOf.call( jQuery( elem ), this[ 0 ] );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn indexOf.call( this,\n\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[ 0 ] : elem\n\t\t);\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.uniqueSort(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t}\n} );\n\nfunction sibling( cur, dir ) {\n\twhile ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}\n\treturn cur;\n}\n\njQuery.each( {\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn siblings( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn siblings( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\tif ( elem.contentDocument != null &&\n\n\t\t\t// Support: IE 11+\n\t\t\t// <object> elements with no `data` attribute has an object\n\t\t\t// `contentDocument` with a `null` prototype.\n\t\t\tgetProto( elem.contentDocument ) ) {\n\n\t\t\treturn elem.contentDocument;\n\t\t}\n\n\t\t// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only\n\t\t// Treat the template element as a regular one in browsers that\n\t\t// don't support it.\n\t\tif ( nodeName( elem, \"template\" ) ) {\n\t\t\telem = elem.content || elem;\n\t\t}\n\n\t\treturn jQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar matched = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tmatched = jQuery.filter( selector, matched );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tjQuery.uniqueSort( matched );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tmatched.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched );\n\t};\n} );\nvar rnothtmlwhite = ( /[^\\x20\\t\\r\\n\\f]+/g );\n\n\n\n// Convert String-formatted options into Object-formatted ones\nfunction createOptions( options ) {\n\tvar object = {};\n\tjQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t} );\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\tcreateOptions( options ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\n\t\t// Last fire value for non-forgettable lists\n\t\tmemory,\n\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\n\t\t// Flag to prevent firing\n\t\tlocked,\n\n\t\t// Actual callback list\n\t\tlist = [],\n\n\t\t// Queue of execution data for repeatable lists\n\t\tqueue = [],\n\n\t\t// Index of currently firing callback (modified by add/remove as needed)\n\t\tfiringIndex = -1,\n\n\t\t// Fire callbacks\n\t\tfire = function() {\n\n\t\t\t// Enforce single-firing\n\t\t\tlocked = locked || options.once;\n\n\t\t\t// Execute callbacks for all pending executions,\n\t\t\t// respecting firingIndex overrides and runtime changes\n\t\t\tfired = firing = true;\n\t\t\tfor ( ; queue.length; firingIndex = -1 ) {\n\t\t\t\tmemory = queue.shift();\n\t\t\t\twhile ( ++firingIndex < list.length ) {\n\n\t\t\t\t\t// Run callback and check for early termination\n\t\t\t\t\tif ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&\n\t\t\t\t\t\toptions.stopOnFalse ) {\n\n\t\t\t\t\t\t// Jump to end and forget the data so .add doesn't re-fire\n\t\t\t\t\t\tfiringIndex = list.length;\n\t\t\t\t\t\tmemory = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Forget the data if we're done with it\n\t\t\tif ( !options.memory ) {\n\t\t\t\tmemory = false;\n\t\t\t}\n\n\t\t\tfiring = false;\n\n\t\t\t// Clean up if we're done firing for good\n\t\t\tif ( locked ) {\n\n\t\t\t\t// Keep an empty list if we have data for future add calls\n\t\t\t\tif ( memory ) {\n\t\t\t\t\tlist = [];\n\n\t\t\t\t// Otherwise, this object is spent\n\t\t\t\t} else {\n\t\t\t\t\tlist = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t// Actual Callbacks object\n\t\tself = {\n\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\n\t\t\t\t\t// If we have memory from a past run, we should fire after adding\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfiringIndex = list.length - 1;\n\t\t\t\t\t\tqueue.push( memory );\n\t\t\t\t\t}\n\n\t\t\t\t\t( function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tif ( isFunction( arg ) ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && toType( arg ) !== \"string\" ) {\n\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t} )( arguments );\n\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\tvar index;\n\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\tlist.splice( index, 1 );\n\n\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ?\n\t\t\t\t\tjQuery.inArray( fn, list ) > -1 :\n\t\t\t\t\tlist.length > 0;\n\t\t\t},\n\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Disable .fire and .add\n\t\t\t// Abort any current/pending executions\n\t\t\t// Clear all callbacks and values\n\t\t\tdisable: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tlist = memory = \"\";\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\n\t\t\t// Disable .fire\n\t\t\t// Also disable .add unless we have memory (since it would have no effect)\n\t\t\t// Abort any pending executions\n\t\t\tlock: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tif ( !memory && !firing ) {\n\t\t\t\t\tlist = memory = \"\";\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tlocked: function() {\n\t\t\t\treturn !!locked;\n\t\t\t},\n\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( !locked ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tqueue.push( args );\n\t\t\t\t\tif ( !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\nfunction Identity( v ) {\n\treturn v;\n}\nfunction Thrower( ex ) {\n\tthrow ex;\n}\n\nfunction adoptValue( value, resolve, reject, noValue ) {\n\tvar method;\n\n\ttry {\n\n\t\t// Check for promise aspect first to privilege synchronous behavior\n\t\tif ( value && isFunction( ( method = value.promise ) ) ) {\n\t\t\tmethod.call( value ).done( resolve ).fail( reject );\n\n\t\t// Other thenables\n\t\t} else if ( value && isFunction( ( method = value.then ) ) ) {\n\t\t\tmethod.call( value, resolve, reject );\n\n\t\t// Other non-thenables\n\t\t} else {\n\n\t\t\t// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:\n\t\t\t// * false: [ value ].slice( 0 ) => resolve( value )\n\t\t\t// * true: [ value ].slice( 1 ) => resolve()\n\t\t\tresolve.apply( undefined, [ value ].slice( noValue ) );\n\t\t}\n\n\t// For Promises/A+, convert exceptions into rejections\n\t// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in\n\t// Deferred#then to conditionally suppress rejection.\n\t} catch ( value ) {\n\n\t\t// Support: Android 4.0 only\n\t\t// Strict mode functions invoked without .call/.apply get global-object context\n\t\treject.apply( undefined, [ value ] );\n\t}\n}\n\njQuery.extend( {\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\n\t\t\t\t// action, add listener, callbacks,\n\t\t\t\t// ... .then handlers, argument index, [final state]\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks( \"memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"memory\" ), 2 ],\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 0, \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 1, \"rejected\" ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\t\"catch\": function( fn ) {\n\t\t\t\t\treturn promise.then( null, fn );\n\t\t\t\t},\n\n\t\t\t\t// Keep pipe for back-compat\n\t\t\t\tpipe: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( _i, tuple ) {\n\n\t\t\t\t\t\t\t// Map tuples (progress, done, fail) to arguments (done, fail, progress)\n\t\t\t\t\t\t\tvar fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];\n\n\t\t\t\t\t\t\t// deferred.progress(function() { bind to newDefer or newDefer.notify })\n\t\t\t\t\t\t\t// deferred.done(function() { bind to newDefer or newDefer.resolve })\n\t\t\t\t\t\t\t// deferred.fail(function() { bind to newDefer or newDefer.reject })\n\t\t\t\t\t\t\tdeferred[ tuple[ 1 ] ]( function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify )\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ](\n\t\t\t\t\t\t\t\t\t\tthis,\n\t\t\t\t\t\t\t\t\t\tfn ? [ returned ] : arguments\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t} );\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\t\t\t\tthen: function( onFulfilled, onRejected, onProgress ) {\n\t\t\t\t\tvar maxDepth = 0;\n\t\t\t\t\tfunction resolve( depth, deferred, handler, special ) {\n\t\t\t\t\t\treturn function() {\n\t\t\t\t\t\t\tvar that = this,\n\t\t\t\t\t\t\t\targs = arguments,\n\t\t\t\t\t\t\t\tmightThrow = function() {\n\t\t\t\t\t\t\t\t\tvar returned, then;\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.3\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-59\n\t\t\t\t\t\t\t\t\t// Ignore double-resolution attempts\n\t\t\t\t\t\t\t\t\tif ( depth < maxDepth ) {\n\t\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\treturned = handler.apply( that, args );\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.1\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-48\n\t\t\t\t\t\t\t\t\tif ( returned === deferred.promise() ) {\n\t\t\t\t\t\t\t\t\t\tthrow new TypeError( \"Thenable self-resolution\" );\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ sections 2.3.3.1, 3.5\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-54\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-75\n\t\t\t\t\t\t\t\t\t// Retrieve `then` only once\n\t\t\t\t\t\t\t\t\tthen = returned &&\n\n\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.4\n\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-64\n\t\t\t\t\t\t\t\t\t\t// Only check objects and functions for thenability\n\t\t\t\t\t\t\t\t\t\t( typeof returned === \"object\" ||\n\t\t\t\t\t\t\t\t\t\t\ttypeof returned === \"function\" ) &&\n\t\t\t\t\t\t\t\t\t\treturned.then;\n\n\t\t\t\t\t\t\t\t\t// Handle a returned thenable\n\t\t\t\t\t\t\t\t\tif ( isFunction( then ) ) {\n\n\t\t\t\t\t\t\t\t\t\t// Special processors (notify) just wait for resolution\n\t\t\t\t\t\t\t\t\t\tif ( special ) {\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special )\n\t\t\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\t\t// Normal processors (resolve) also hook into progress\n\t\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t\t// ...and disregard older resolution values\n\t\t\t\t\t\t\t\t\t\t\tmaxDepth++;\n\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdeferred.notifyWith )\n\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Handle all other returned values\n\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\tif ( handler !== Identity ) {\n\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\targs = [ returned ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t// Process the value(s)\n\t\t\t\t\t\t\t\t\t\t// Default process is resolve\n\t\t\t\t\t\t\t\t\t\t( special || deferred.resolveWith )( that, args );\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},\n\n\t\t\t\t\t\t\t\t// Only normal processors (resolve) catch and reject exceptions\n\t\t\t\t\t\t\t\tprocess = special ?\n\t\t\t\t\t\t\t\t\tmightThrow :\n\t\t\t\t\t\t\t\t\tfunction() {\n\t\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\t\tmightThrow();\n\t\t\t\t\t\t\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t\t\t\t\t\t\tif ( jQuery.Deferred.exceptionHook ) {\n\t\t\t\t\t\t\t\t\t\t\t\tjQuery.Deferred.exceptionHook( e,\n\t\t\t\t\t\t\t\t\t\t\t\t\tprocess.stackTrace );\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.4.1\n\t\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-61\n\t\t\t\t\t\t\t\t\t\t\t// Ignore post-resolution exceptions\n\t\t\t\t\t\t\t\t\t\t\tif ( depth + 1 >= maxDepth ) {\n\n\t\t\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\t\t\tif ( handler !== Thrower ) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\t\t\targs = [ e ];\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tdeferred.rejectWith( that, args );\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t};\n\n\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.1\n\t\t\t\t\t\t\t// https://promisesaplus.com/#point-57\n\t\t\t\t\t\t\t// Re-resolve promises immediately to dodge false rejection from\n\t\t\t\t\t\t\t// subsequent errors\n\t\t\t\t\t\t\tif ( depth ) {\n\t\t\t\t\t\t\t\tprocess();\n\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t// Call an optional hook to record the stack, in case of exception\n\t\t\t\t\t\t\t\t// since it's otherwise lost when execution goes async\n\t\t\t\t\t\t\t\tif ( jQuery.Deferred.getStackHook ) {\n\t\t\t\t\t\t\t\t\tprocess.stackTrace = jQuery.Deferred.getStackHook();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\twindow.setTimeout( process );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\n\t\t\t\t\t\t// progress_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 0 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onProgress ) ?\n\t\t\t\t\t\t\t\t\tonProgress :\n\t\t\t\t\t\t\t\t\tIdentity,\n\t\t\t\t\t\t\t\tnewDefer.notifyWith\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// fulfilled_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 1 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onFulfilled ) ?\n\t\t\t\t\t\t\t\t\tonFulfilled :\n\t\t\t\t\t\t\t\t\tIdentity\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// rejected_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 2 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onRejected ) ?\n\t\t\t\t\t\t\t\t\tonRejected :\n\t\t\t\t\t\t\t\t\tThrower\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 5 ];\n\n\t\t\t// promise.progress = list.add\n\t\t\t// promise.done = list.add\n\t\t\t// promise.fail = list.add\n\t\t\tpromise[ tuple[ 1 ] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(\n\t\t\t\t\tfunction() {\n\n\t\t\t\t\t\t// state = \"resolved\" (i.e., fulfilled)\n\t\t\t\t\t\t// state = \"rejected\"\n\t\t\t\t\t\tstate = stateString;\n\t\t\t\t\t},\n\n\t\t\t\t\t// rejected_callbacks.disable\n\t\t\t\t\t// fulfilled_callbacks.disable\n\t\t\t\t\ttuples[ 3 - i ][ 2 ].disable,\n\n\t\t\t\t\t// rejected_handlers.disable\n\t\t\t\t\t// fulfilled_handlers.disable\n\t\t\t\t\ttuples[ 3 - i ][ 3 ].disable,\n\n\t\t\t\t\t// progress_callbacks.lock\n\t\t\t\t\ttuples[ 0 ][ 2 ].lock,\n\n\t\t\t\t\t// progress_handlers.lock\n\t\t\t\t\ttuples[ 0 ][ 3 ].lock\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// progress_handlers.fire\n\t\t\t// fulfilled_handlers.fire\n\t\t\t// rejected_handlers.fire\n\t\t\tlist.add( tuple[ 3 ].fire );\n\n\t\t\t// deferred.notify = function() { deferred.notifyWith(...) }\n\t\t\t// deferred.resolve = function() { deferred.resolveWith(...) }\n\t\t\t// deferred.reject = function() { deferred.rejectWith(...) }\n\t\t\tdeferred[ tuple[ 0 ] ] = function() {\n\t\t\t\tdeferred[ tuple[ 0 ] + \"With\" ]( this === deferred ? undefined : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\n\t\t\t// deferred.notifyWith = list.fireWith\n\t\t\t// deferred.resolveWith = list.fireWith\n\t\t\t// deferred.rejectWith = list.fireWith\n\t\t\tdeferred[ tuple[ 0 ] + \"With\" ] = list.fireWith;\n\t\t} );\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( singleValue ) {\n\t\tvar\n\n\t\t\t// count of uncompleted subordinates\n\t\t\tremaining = arguments.length,\n\n\t\t\t// count of unprocessed arguments\n\t\t\ti = remaining,\n\n\t\t\t// subordinate fulfillment data\n\t\t\tresolveContexts = Array( i ),\n\t\t\tresolveValues = slice.call( arguments ),\n\n\t\t\t// the master Deferred\n\t\t\tmaster = jQuery.Deferred(),\n\n\t\t\t// subordinate callback factory\n\t\t\tupdateFunc = function( i ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tresolveContexts[ i ] = this;\n\t\t\t\t\tresolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( !( --remaining ) ) {\n\t\t\t\t\t\tmaster.resolveWith( resolveContexts, resolveValues );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t};\n\n\t\t// Single- and empty arguments are adopted like Promise.resolve\n\t\tif ( remaining <= 1 ) {\n\t\t\tadoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject,\n\t\t\t\t!remaining );\n\n\t\t\t// Use .then() to unwrap secondary thenables (cf. gh-3000)\n\t\t\tif ( master.state() === \"pending\" ||\n\t\t\t\tisFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {\n\n\t\t\t\treturn master.then();\n\t\t\t}\n\t\t}\n\n\t\t// Multiple arguments are aggregated like Promise.all array elements\n\t\twhile ( i-- ) {\n\t\t\tadoptValue( resolveValues[ i ], updateFunc( i ), master.reject );\n\t\t}\n\n\t\treturn master.promise();\n\t}\n} );\n\n\n// These usually indicate a programmer mistake during development,\n// warn about them ASAP rather than swallowing them by default.\nvar rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;\n\njQuery.Deferred.exceptionHook = function( error, stack ) {\n\n\t// Support: IE 8 - 9 only\n\t// Console exists when dev tools are open, which can happen at any time\n\tif ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {\n\t\twindow.console.warn( \"jQuery.Deferred exception: \" + error.message, error.stack, stack );\n\t}\n};\n\n\n\n\njQuery.readyException = function( error ) {\n\twindow.setTimeout( function() {\n\t\tthrow error;\n\t} );\n};\n\n\n\n\n// The deferred used on DOM ready\nvar readyList = jQuery.Deferred();\n\njQuery.fn.ready = function( fn ) {\n\n\treadyList\n\t\t.then( fn )\n\n\t\t// Wrap jQuery.readyException in a function so that the lookup\n\t\t// happens at the time of error handling instead of callback\n\t\t// registration.\n\t\t.catch( function( error ) {\n\t\t\tjQuery.readyException( error );\n\t\t} );\n\n\treturn this;\n};\n\njQuery.extend( {\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\t}\n} );\n\njQuery.ready.then = readyList.then;\n\n// The ready event handler and self cleanup method\nfunction completed() {\n\tdocument.removeEventListener( \"DOMContentLoaded\", completed );\n\twindow.removeEventListener( \"load\", completed );\n\tjQuery.ready();\n}\n\n// Catch cases where $(document).ready() is called\n// after the browser event has already occurred.\n// Support: IE <=9 - 10 only\n// Older IE sometimes signals \"interactive\" too soon\nif ( document.readyState === \"complete\" ||\n\t( document.readyState !== \"loading\" && !document.documentElement.doScroll ) ) {\n\n\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\twindow.setTimeout( jQuery.ready );\n\n} else {\n\n\t// Use the handy event callback\n\tdocument.addEventListener( \"DOMContentLoaded\", completed );\n\n\t// A fallback to window.onload, that will always work\n\twindow.addEventListener( \"load\", completed );\n}\n\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlen = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( toType( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\taccess( elems, fn, i, key[ i ], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, _key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\tfn(\n\t\t\t\t\telems[ i ], key, raw ?\n\t\t\t\t\tvalue :\n\t\t\t\t\tvalue.call( elems[ i ], i, fn( elems[ i ], key ) )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( chainable ) {\n\t\treturn elems;\n\t}\n\n\t// Gets\n\tif ( bulk ) {\n\t\treturn fn.call( elems );\n\t}\n\n\treturn len ? fn( elems[ 0 ], key ) : emptyGet;\n};\n\n\n// Matches dashed string for camelizing\nvar rmsPrefix = /^-ms-/,\n\trdashAlpha = /-([a-z])/g;\n\n// Used by camelCase as callback to replace()\nfunction fcamelCase( _all, letter ) {\n\treturn letter.toUpperCase();\n}\n\n// Convert dashed to camelCase; used by the css and data modules\n// Support: IE <=9 - 11, Edge 12 - 15\n// Microsoft forgot to hump their vendor prefix (#9572)\nfunction camelCase( string ) {\n\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n}\nvar acceptData = function( owner ) {\n\n\t// Accepts only:\n\t//  - Node\n\t//    - Node.ELEMENT_NODE\n\t//    - Node.DOCUMENT_NODE\n\t//  - Object\n\t//    - Any\n\treturn owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );\n};\n\n\n\n\nfunction Data() {\n\tthis.expando = jQuery.expando + Data.uid++;\n}\n\nData.uid = 1;\n\nData.prototype = {\n\n\tcache: function( owner ) {\n\n\t\t// Check if the owner object already has a cache\n\t\tvar value = owner[ this.expando ];\n\n\t\t// If not, create one\n\t\tif ( !value ) {\n\t\t\tvalue = {};\n\n\t\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t\t// but we should not, see #8335.\n\t\t\t// Always return an empty object.\n\t\t\tif ( acceptData( owner ) ) {\n\n\t\t\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t\t\t// use plain assignment\n\t\t\t\tif ( owner.nodeType ) {\n\t\t\t\t\towner[ this.expando ] = value;\n\n\t\t\t\t// Otherwise secure it in a non-enumerable property\n\t\t\t\t// configurable must be true to allow the property to be\n\t\t\t\t// deleted when data is removed\n\t\t\t\t} else {\n\t\t\t\t\tObject.defineProperty( owner, this.expando, {\n\t\t\t\t\t\tvalue: value,\n\t\t\t\t\t\tconfigurable: true\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn value;\n\t},\n\tset: function( owner, data, value ) {\n\t\tvar prop,\n\t\t\tcache = this.cache( owner );\n\n\t\t// Handle: [ owner, key, value ] args\n\t\t// Always use camelCase key (gh-2257)\n\t\tif ( typeof data === \"string\" ) {\n\t\t\tcache[ camelCase( data ) ] = value;\n\n\t\t// Handle: [ owner, { properties } ] args\n\t\t} else {\n\n\t\t\t// Copy the properties one-by-one to the cache object\n\t\t\tfor ( prop in data ) {\n\t\t\t\tcache[ camelCase( prop ) ] = data[ prop ];\n\t\t\t}\n\t\t}\n\t\treturn cache;\n\t},\n\tget: function( owner, key ) {\n\t\treturn key === undefined ?\n\t\t\tthis.cache( owner ) :\n\n\t\t\t// Always use camelCase key (gh-2257)\n\t\t\towner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];\n\t},\n\taccess: function( owner, key, value ) {\n\n\t\t// In cases where either:\n\t\t//\n\t\t//   1. No key was specified\n\t\t//   2. A string key was specified, but no value provided\n\t\t//\n\t\t// Take the \"read\" path and allow the get method to determine\n\t\t// which value to return, respectively either:\n\t\t//\n\t\t//   1. The entire cache object\n\t\t//   2. The data stored at the key\n\t\t//\n\t\tif ( key === undefined ||\n\t\t\t\t( ( key && typeof key === \"string\" ) && value === undefined ) ) {\n\n\t\t\treturn this.get( owner, key );\n\t\t}\n\n\t\t// When the key is not a string, or both a key and value\n\t\t// are specified, set or extend (existing objects) with either:\n\t\t//\n\t\t//   1. An object of properties\n\t\t//   2. A key and value\n\t\t//\n\t\tthis.set( owner, key, value );\n\n\t\t// Since the \"set\" path can have two possible entry points\n\t\t// return the expected data based on which path was taken[*]\n\t\treturn value !== undefined ? value : key;\n\t},\n\tremove: function( owner, key ) {\n\t\tvar i,\n\t\t\tcache = owner[ this.expando ];\n\n\t\tif ( cache === undefined ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key !== undefined ) {\n\n\t\t\t// Support array or space separated string of keys\n\t\t\tif ( Array.isArray( key ) ) {\n\n\t\t\t\t// If key is an array of keys...\n\t\t\t\t// We always set camelCase keys, so remove that.\n\t\t\t\tkey = key.map( camelCase );\n\t\t\t} else {\n\t\t\t\tkey = camelCase( key );\n\n\t\t\t\t// If a key with the spaces exists, use it.\n\t\t\t\t// Otherwise, create an array by matching non-whitespace\n\t\t\t\tkey = key in cache ?\n\t\t\t\t\t[ key ] :\n\t\t\t\t\t( key.match( rnothtmlwhite ) || [] );\n\t\t\t}\n\n\t\t\ti = key.length;\n\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete cache[ key[ i ] ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if there's no more data\n\t\tif ( key === undefined || jQuery.isEmptyObject( cache ) ) {\n\n\t\t\t// Support: Chrome <=35 - 45\n\t\t\t// Webkit & Blink performance suffers when deleting properties\n\t\t\t// from DOM nodes, so set to undefined instead\n\t\t\t// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)\n\t\t\tif ( owner.nodeType ) {\n\t\t\t\towner[ this.expando ] = undefined;\n\t\t\t} else {\n\t\t\t\tdelete owner[ this.expando ];\n\t\t\t}\n\t\t}\n\t},\n\thasData: function( owner ) {\n\t\tvar cache = owner[ this.expando ];\n\t\treturn cache !== undefined && !jQuery.isEmptyObject( cache );\n\t}\n};\nvar dataPriv = new Data();\n\nvar dataUser = new Data();\n\n\n\n//\tImplementation Summary\n//\n//\t1. Enforce API surface and semantic compatibility with 1.9.x branch\n//\t2. Improve the module's maintainability by reducing the storage\n//\t\tpaths to a single mechanism.\n//\t3. Use the same single mechanism to support \"private\" and \"user\" data.\n//\t4. _Never_ expose \"private\" data to user code (TODO: Drop _data, _removeData)\n//\t5. Avoid exposing implementation details on user objects (eg. expando properties)\n//\t6. Provide a clear path for implementation upgrade to WeakMap in 2014\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /[A-Z]/g;\n\nfunction getData( data ) {\n\tif ( data === \"true\" ) {\n\t\treturn true;\n\t}\n\n\tif ( data === \"false\" ) {\n\t\treturn false;\n\t}\n\n\tif ( data === \"null\" ) {\n\t\treturn null;\n\t}\n\n\t// Only convert to a number if it doesn't change the string\n\tif ( data === +data + \"\" ) {\n\t\treturn +data;\n\t}\n\n\tif ( rbrace.test( data ) ) {\n\t\treturn JSON.parse( data );\n\t}\n\n\treturn data;\n}\n\nfunction dataAttr( elem, key, data ) {\n\tvar name;\n\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\t\tname = \"data-\" + key.replace( rmultiDash, \"-$&\" ).toLowerCase();\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = getData( data );\n\t\t\t} catch ( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tdataUser.set( elem, key, data );\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\treturn data;\n}\n\njQuery.extend( {\n\thasData: function( elem ) {\n\t\treturn dataUser.hasData( elem ) || dataPriv.hasData( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn dataUser.access( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\tdataUser.remove( elem, name );\n\t},\n\n\t// TODO: Now that all calls to _data and _removeData have been replaced\n\t// with direct calls to dataPriv methods, these can be deprecated.\n\t_data: function( elem, name, data ) {\n\t\treturn dataPriv.access( elem, name, data );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\tdataPriv.remove( elem, name );\n\t}\n} );\n\njQuery.fn.extend( {\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[ 0 ],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = dataUser.get( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !dataPriv.get( elem, \"hasDataAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE 11 only\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = camelCase( name.slice( 5 ) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tdataPriv.set( elem, \"hasDataAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tdataUser.set( this, key );\n\t\t\t} );\n\t\t}\n\n\t\treturn access( this, function( value ) {\n\t\t\tvar data;\n\n\t\t\t// The calling jQuery object (element matches) is not empty\n\t\t\t// (and therefore has an element appears at this[ 0 ]) and the\n\t\t\t// `value` parameter was not undefined. An empty jQuery object\n\t\t\t// will result in `undefined` for elem = this[ 0 ] which will\n\t\t\t// throw an exception if an attempt to read a data cache is made.\n\t\t\tif ( elem && value === undefined ) {\n\n\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t// The key will always be camelCased in Data\n\t\t\t\tdata = dataUser.get( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Attempt to \"discover\" the data in\n\t\t\t\t// HTML5 custom data-* attrs\n\t\t\t\tdata = dataAttr( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// We tried really hard, but the data doesn't exist.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Set the data...\n\t\t\tthis.each( function() {\n\n\t\t\t\t// We always store the camelCased key\n\t\t\t\tdataUser.set( this, key, value );\n\t\t\t} );\n\t\t}, null, value, arguments.length > 1, null, true );\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each( function() {\n\t\t\tdataUser.remove( this, key );\n\t\t} );\n\t}\n} );\n\n\njQuery.extend( {\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = dataPriv.get( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || Array.isArray( data ) ) {\n\t\t\t\t\tqueue = dataPriv.access( elem, type, jQuery.makeArray( data ) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// Clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// Not public - generate a queueHooks object, or return the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn dataPriv.get( elem, key ) || dataPriv.access( elem, key, {\n\t\t\tempty: jQuery.Callbacks( \"once memory\" ).add( function() {\n\t\t\t\tdataPriv.remove( elem, [ type + \"queue\", key ] );\n\t\t\t} )\n\t\t} );\n\t}\n} );\n\njQuery.fn.extend( {\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[ 0 ], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each( function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// Ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[ 0 ] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t} );\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t} );\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = dataPriv.get( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n} );\nvar pnum = ( /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/ ).source;\n\nvar rcssNum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" );\n\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar documentElement = document.documentElement;\n\n\n\n\tvar isAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem );\n\t\t},\n\t\tcomposed = { composed: true };\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only\n\t// Check attachment across shadow DOM boundaries when possible (gh-3504)\n\t// Support: iOS 10.0-10.2 only\n\t// Early iOS 10 versions support `attachShadow` but not `getRootNode`,\n\t// leading to errors. We need to check for `getRootNode`.\n\tif ( documentElement.getRootNode ) {\n\t\tisAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem ) ||\n\t\t\t\telem.getRootNode( composed ) === elem.ownerDocument;\n\t\t};\n\t}\nvar isHiddenWithinTree = function( elem, el ) {\n\n\t\t// isHiddenWithinTree might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\n\t\t// Inline style trumps all\n\t\treturn elem.style.display === \"none\" ||\n\t\t\telem.style.display === \"\" &&\n\n\t\t\t// Otherwise, check computed style\n\t\t\t// Support: Firefox <=43 - 45\n\t\t\t// Disconnected elements can have computed display: none, so first confirm that elem is\n\t\t\t// in the document.\n\t\t\tisAttached( elem ) &&\n\n\t\t\tjQuery.css( elem, \"display\" ) === \"none\";\n\t};\n\n\n\nfunction adjustCSS( elem, prop, valueParts, tween ) {\n\tvar adjusted, scale,\n\t\tmaxIterations = 20,\n\t\tcurrentValue = tween ?\n\t\t\tfunction() {\n\t\t\t\treturn tween.cur();\n\t\t\t} :\n\t\t\tfunction() {\n\t\t\t\treturn jQuery.css( elem, prop, \"\" );\n\t\t\t},\n\t\tinitial = currentValue(),\n\t\tunit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t// Starting value computation is required for potential unit mismatches\n\t\tinitialInUnit = elem.nodeType &&\n\t\t\t( jQuery.cssNumber[ prop ] || unit !== \"px\" && +initial ) &&\n\t\t\trcssNum.exec( jQuery.css( elem, prop ) );\n\n\tif ( initialInUnit && initialInUnit[ 3 ] !== unit ) {\n\n\t\t// Support: Firefox <=54\n\t\t// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)\n\t\tinitial = initial / 2;\n\n\t\t// Trust units reported by jQuery.css\n\t\tunit = unit || initialInUnit[ 3 ];\n\n\t\t// Iteratively approximate from a nonzero starting point\n\t\tinitialInUnit = +initial || 1;\n\n\t\twhile ( maxIterations-- ) {\n\n\t\t\t// Evaluate and update our best guess (doubling guesses that zero out).\n\t\t\t// Finish if the scale equals or crosses 1 (making the old*new product non-positive).\n\t\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\t\t\tif ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {\n\t\t\t\tmaxIterations = 0;\n\t\t\t}\n\t\t\tinitialInUnit = initialInUnit / scale;\n\n\t\t}\n\n\t\tinitialInUnit = initialInUnit * 2;\n\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\n\t\t// Make sure we update the tween properties later on\n\t\tvalueParts = valueParts || [];\n\t}\n\n\tif ( valueParts ) {\n\t\tinitialInUnit = +initialInUnit || +initial || 0;\n\n\t\t// Apply relative offset (+=/-=) if specified\n\t\tadjusted = valueParts[ 1 ] ?\n\t\t\tinitialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :\n\t\t\t+valueParts[ 2 ];\n\t\tif ( tween ) {\n\t\t\ttween.unit = unit;\n\t\t\ttween.start = initialInUnit;\n\t\t\ttween.end = adjusted;\n\t\t}\n\t}\n\treturn adjusted;\n}\n\n\nvar defaultDisplayMap = {};\n\nfunction getDefaultDisplay( elem ) {\n\tvar temp,\n\t\tdoc = elem.ownerDocument,\n\t\tnodeName = elem.nodeName,\n\t\tdisplay = defaultDisplayMap[ nodeName ];\n\n\tif ( display ) {\n\t\treturn display;\n\t}\n\n\ttemp = doc.body.appendChild( doc.createElement( nodeName ) );\n\tdisplay = jQuery.css( temp, \"display\" );\n\n\ttemp.parentNode.removeChild( temp );\n\n\tif ( display === \"none\" ) {\n\t\tdisplay = \"block\";\n\t}\n\tdefaultDisplayMap[ nodeName ] = display;\n\n\treturn display;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\t// Determine new display value for elements that need to change\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\n\t\t\t// Since we force visibility upon cascade-hidden elements, an immediate (and slow)\n\t\t\t// check is required in this first loop unless we have a nonempty display value (either\n\t\t\t// inline or about-to-be-restored)\n\t\t\tif ( display === \"none\" ) {\n\t\t\t\tvalues[ index ] = dataPriv.get( elem, \"display\" ) || null;\n\t\t\t\tif ( !values[ index ] ) {\n\t\t\t\t\telem.style.display = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( elem.style.display === \"\" && isHiddenWithinTree( elem ) ) {\n\t\t\t\tvalues[ index ] = getDefaultDisplay( elem );\n\t\t\t}\n\t\t} else {\n\t\t\tif ( display !== \"none\" ) {\n\t\t\t\tvalues[ index ] = \"none\";\n\n\t\t\t\t// Remember what we're overwriting\n\t\t\t\tdataPriv.set( elem, \"display\", display );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of the elements in a second loop to avoid constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\tif ( values[ index ] != null ) {\n\t\t\telements[ index ].style.display = values[ index ];\n\t\t}\n\t}\n\n\treturn elements;\n}\n\njQuery.fn.extend( {\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tif ( isHiddenWithinTree( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t} );\n\t}\n} );\nvar rcheckableType = ( /^(?:checkbox|radio)$/i );\n\nvar rtagName = ( /<([a-z][^\\/\\0>\\x20\\t\\r\\n\\f]*)/i );\n\nvar rscriptType = ( /^$|^module$|\\/(?:java|ecma)script/i );\n\n\n\n( function() {\n\tvar fragment = document.createDocumentFragment(),\n\t\tdiv = fragment.appendChild( document.createElement( \"div\" ) ),\n\t\tinput = document.createElement( \"input\" );\n\n\t// Support: Android 4.0 - 4.3 only\n\t// Check state lost if the name is set (#11217)\n\t// Support: Windows Web Apps (WWA)\n\t// `name` and `type` must use .setAttribute for WWA (#14901)\n\tinput.setAttribute( \"type\", \"radio\" );\n\tinput.setAttribute( \"checked\", \"checked\" );\n\tinput.setAttribute( \"name\", \"t\" );\n\n\tdiv.appendChild( input );\n\n\t// Support: Android <=4.1 only\n\t// Older WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE <=11 only\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// Support: IE <=9 only\n\t// IE <=9 replaces <option> tags with their contents when inserted outside of\n\t// the select element.\n\tdiv.innerHTML = \"<option></option>\";\n\tsupport.option = !!div.lastChild;\n} )();\n\n\n// We have to close these tags to support XHTML (#13200)\nvar wrapMap = {\n\n\t// XHTML parsers do not magically insert elements in the\n\t// same way that tag soup parsers do. So we cannot shorten\n\t// this by omitting <tbody> or other required elements.\n\tthead: [ 1, \"<table>\", \"</table>\" ],\n\tcol: [ 2, \"<table><colgroup>\", \"</colgroup></table>\" ],\n\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t_default: [ 0, \"\", \"\" ]\n};\n\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n// Support: IE <=9 only\nif ( !support.option ) {\n\twrapMap.optgroup = wrapMap.option = [ 1, \"<select multiple='multiple'>\", \"</select>\" ];\n}\n\n\nfunction getAll( context, tag ) {\n\n\t// Support: IE <=9 - 11 only\n\t// Use typeof to avoid zero-argument method invocation on host objects (#15151)\n\tvar ret;\n\n\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\tret = context.getElementsByTagName( tag || \"*\" );\n\n\t} else if ( typeof context.querySelectorAll !== \"undefined\" ) {\n\t\tret = context.querySelectorAll( tag || \"*\" );\n\n\t} else {\n\t\tret = [];\n\t}\n\n\tif ( tag === undefined || tag && nodeName( context, tag ) ) {\n\t\treturn jQuery.merge( [ context ], ret );\n\t}\n\n\treturn ret;\n}\n\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar i = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\tdataPriv.set(\n\t\t\telems[ i ],\n\t\t\t\"globalEval\",\n\t\t\t!refElements || dataPriv.get( refElements[ i ], \"globalEval\" )\n\t\t);\n\t}\n}\n\n\nvar rhtml = /<|&#?\\w+;/;\n\nfunction buildFragment( elems, context, scripts, selection, ignored ) {\n\tvar elem, tmp, tag, wrap, attached, j,\n\t\tfragment = context.createDocumentFragment(),\n\t\tnodes = [],\n\t\ti = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\telem = elems[ i ];\n\n\t\tif ( elem || elem === 0 ) {\n\n\t\t\t// Add nodes directly\n\t\t\tif ( toType( elem ) === \"object\" ) {\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t// Convert non-html into a text node\n\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t// Convert html into DOM nodes\n\t\t\t} else {\n\t\t\t\ttmp = tmp || fragment.appendChild( context.createElement( \"div\" ) );\n\n\t\t\t\t// Deserialize a standard representation\n\t\t\t\ttag = ( rtagName.exec( elem ) || [ \"\", \"\" ] )[ 1 ].toLowerCase();\n\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\t\t\t\ttmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];\n\n\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\tj = wrap[ 0 ];\n\t\t\t\twhile ( j-- ) {\n\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t}\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t// Remember the top-level container\n\t\t\t\ttmp = fragment.firstChild;\n\n\t\t\t\t// Ensure the created nodes are orphaned (#12392)\n\t\t\t\ttmp.textContent = \"\";\n\t\t\t}\n\t\t}\n\t}\n\n\t// Remove wrapper from fragment\n\tfragment.textContent = \"\";\n\n\ti = 0;\n\twhile ( ( elem = nodes[ i++ ] ) ) {\n\n\t\t// Skip elements already in the context collection (trac-4087)\n\t\tif ( selection && jQuery.inArray( elem, selection ) > -1 ) {\n\t\t\tif ( ignored ) {\n\t\t\t\tignored.push( elem );\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tattached = isAttached( elem );\n\n\t\t// Append to fragment\n\t\ttmp = getAll( fragment.appendChild( elem ), \"script\" );\n\n\t\t// Preserve script evaluation history\n\t\tif ( attached ) {\n\t\t\tsetGlobalEval( tmp );\n\t\t}\n\n\t\t// Capture executables\n\t\tif ( scripts ) {\n\t\t\tj = 0;\n\t\t\twhile ( ( elem = tmp[ j++ ] ) ) {\n\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\tscripts.push( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn fragment;\n}\n\n\nvar\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\n// Support: IE <=9 - 11+\n// focus() and blur() are asynchronous, except when they are no-op.\n// So expect focus to be synchronous when the element is already active,\n// and blur to be synchronous when the element is not already active.\n// (focus and blur are always synchronous in other supported browsers,\n// this just defines when we can count on it).\nfunction expectSync( elem, type ) {\n\treturn ( elem === safeActiveElement() ) === ( type === \"focus\" );\n}\n\n// Support: IE <=9 only\n// Accessing document.activeElement can throw unexpectedly\n// https://bugs.jquery.com/ticket/13393\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\nfunction on( elem, types, selector, data, fn, one ) {\n\tvar origFn, type;\n\n\t// Types can be a map of types/handlers\n\tif ( typeof types === \"object\" ) {\n\n\t\t// ( types-Object, selector, data )\n\t\tif ( typeof selector !== \"string\" ) {\n\n\t\t\t// ( types-Object, data )\n\t\t\tdata = data || selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tfor ( type in types ) {\n\t\t\ton( elem, type, selector, data, types[ type ], one );\n\t\t}\n\t\treturn elem;\n\t}\n\n\tif ( data == null && fn == null ) {\n\n\t\t// ( types, fn )\n\t\tfn = selector;\n\t\tdata = selector = undefined;\n\t} else if ( fn == null ) {\n\t\tif ( typeof selector === \"string\" ) {\n\n\t\t\t// ( types, selector, fn )\n\t\t\tfn = data;\n\t\t\tdata = undefined;\n\t\t} else {\n\n\t\t\t// ( types, data, fn )\n\t\t\tfn = data;\n\t\t\tdata = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t}\n\tif ( fn === false ) {\n\t\tfn = returnFalse;\n\t} else if ( !fn ) {\n\t\treturn elem;\n\t}\n\n\tif ( one === 1 ) {\n\t\torigFn = fn;\n\t\tfn = function( event ) {\n\n\t\t\t// Can use an empty set, since event contains the info\n\t\t\tjQuery().off( event );\n\t\t\treturn origFn.apply( this, arguments );\n\t\t};\n\n\t\t// Use same guid so caller can remove using origFn\n\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t}\n\treturn elem.each( function() {\n\t\tjQuery.event.add( this, types, fn, data, selector );\n\t} );\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\n\t\tvar handleObjIn, eventHandle, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.get( elem );\n\n\t\t// Only attach events to objects that accept data\n\t\tif ( !acceptData( elem ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Ensure that invalid selectors throw exceptions at attach time\n\t\t// Evaluate against documentElement in case elem is a non-element node (e.g., document)\n\t\tif ( selector ) {\n\t\t\tjQuery.find.matchesSelector( documentElement, selector );\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !( events = elemData.events ) ) {\n\t\t\tevents = elemData.events = Object.create( null );\n\t\t}\n\t\tif ( !( eventHandle = elemData.handle ) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" && jQuery.event.triggered !== e.type ?\n\t\t\t\t\tjQuery.event.dispatch.apply( elem, arguments ) : undefined;\n\t\t\t};\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend( {\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join( \".\" )\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !( handlers = events[ type ] ) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener if the special events handler returns false\n\t\t\t\tif ( !special.setup ||\n\t\t\t\t\tspecial.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\n\t\tvar j, origCount, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.hasData( elem ) && dataPriv.get( elem );\n\n\t\tif ( !elemData || !( events = elemData.events ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[ 2 ] &&\n\t\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector ||\n\t\t\t\t\t\tselector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown ||\n\t\t\t\t\tspecial.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove data and the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdataPriv.remove( elem, \"handle events\" );\n\t\t}\n\t},\n\n\tdispatch: function( nativeEvent ) {\n\n\t\tvar i, j, ret, matched, handleObj, handlerQueue,\n\t\t\targs = new Array( arguments.length ),\n\n\t\t\t// Make a writable jQuery.Event from the native event object\n\t\t\tevent = jQuery.event.fix( nativeEvent ),\n\n\t\t\thandlers = (\n\t\t\t\t\tdataPriv.get( this, \"events\" ) || Object.create( null )\n\t\t\t\t)[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[ 0 ] = event;\n\n\t\tfor ( i = 1; i < arguments.length; i++ ) {\n\t\t\targs[ i ] = arguments[ i ];\n\t\t}\n\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( ( handleObj = matched.handlers[ j++ ] ) &&\n\t\t\t\t!event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// If the event is namespaced, then each handler is only invoked if it is\n\t\t\t\t// specially universal or its namespaces are a superset of the event's.\n\t\t\t\tif ( !event.rnamespace || handleObj.namespace === false ||\n\t\t\t\t\tevent.rnamespace.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||\n\t\t\t\t\t\thandleObj.handler ).apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( ( event.result = ret ) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar i, handleObj, sel, matchedHandlers, matchedSelectors,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\tif ( delegateCount &&\n\n\t\t\t// Support: IE <=9\n\t\t\t// Black-hole SVG <use> instance trees (trac-13180)\n\t\t\tcur.nodeType &&\n\n\t\t\t// Support: Firefox <=42\n\t\t\t// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)\n\t\t\t// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click\n\t\t\t// Support: IE 11 only\n\t\t\t// ...but not arrow key \"clicks\" of radio inputs, which can have `button` -1 (gh-2343)\n\t\t\t!( event.type === \"click\" && event.button >= 1 ) ) {\n\n\t\t\tfor ( ; cur !== this; cur = cur.parentNode || this ) {\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && !( event.type === \"click\" && cur.disabled === true ) ) {\n\t\t\t\t\tmatchedHandlers = [];\n\t\t\t\t\tmatchedSelectors = {};\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatchedSelectors[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) > -1 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] ) {\n\t\t\t\t\t\t\tmatchedHandlers.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matchedHandlers.length ) {\n\t\t\t\t\t\thandlerQueue.push( { elem: cur, handlers: matchedHandlers } );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tcur = this;\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\taddProp: function( name, hook ) {\n\t\tObject.defineProperty( jQuery.Event.prototype, name, {\n\t\t\tenumerable: true,\n\t\t\tconfigurable: true,\n\n\t\t\tget: isFunction( hook ) ?\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\t\treturn hook( this.originalEvent );\n\t\t\t\t\t}\n\t\t\t\t} :\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\t\treturn this.originalEvent[ name ];\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\tset: function( value ) {\n\t\t\t\tObject.defineProperty( this, name, {\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tconfigurable: true,\n\t\t\t\t\twritable: true,\n\t\t\t\t\tvalue: value\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\t},\n\n\tfix: function( originalEvent ) {\n\t\treturn originalEvent[ jQuery.expando ] ?\n\t\t\toriginalEvent :\n\t\t\tnew jQuery.Event( originalEvent );\n\t},\n\n\tspecial: {\n\t\tload: {\n\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tclick: {\n\n\t\t\t// Utilize native event to ensure correct state for checkable inputs\n\t\t\tsetup: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Claim the first handler\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\t// dataPriv.set( el, \"click\", ... )\n\t\t\t\t\tleverageNative( el, \"click\", returnTrue );\n\t\t\t\t}\n\n\t\t\t\t// Return false to allow normal processing in the caller\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\ttrigger: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Force setup before triggering a click\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\tleverageNative( el, \"click\" );\n\t\t\t\t}\n\n\t\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\t\treturn true;\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, suppress native .click() on links\n\t\t\t// Also prevent it if we're currently inside a leveraged native-event stack\n\t\t\t_default: function( event ) {\n\t\t\t\tvar target = event.target;\n\t\t\t\treturn rcheckableType.test( target.type ) &&\n\t\t\t\t\ttarget.click && nodeName( target, \"input\" ) &&\n\t\t\t\t\tdataPriv.get( target, \"click\" ) ||\n\t\t\t\t\tnodeName( target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Ensure the presence of an event listener that handles manually-triggered\n// synthetic events by interrupting progress until reinvoked in response to\n// *native* events that it fires directly, ensuring that state changes have\n// already occurred before other listeners are invoked.\nfunction leverageNative( el, type, expectSync ) {\n\n\t// Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add\n\tif ( !expectSync ) {\n\t\tif ( dataPriv.get( el, type ) === undefined ) {\n\t\t\tjQuery.event.add( el, type, returnTrue );\n\t\t}\n\t\treturn;\n\t}\n\n\t// Register the controller as a special universal handler for all event namespaces\n\tdataPriv.set( el, type, false );\n\tjQuery.event.add( el, type, {\n\t\tnamespace: false,\n\t\thandler: function( event ) {\n\t\t\tvar notAsync, result,\n\t\t\t\tsaved = dataPriv.get( this, type );\n\n\t\t\tif ( ( event.isTrigger & 1 ) && this[ type ] ) {\n\n\t\t\t\t// Interrupt processing of the outer synthetic .trigger()ed event\n\t\t\t\t// Saved data should be false in such cases, but might be a leftover capture object\n\t\t\t\t// from an async native handler (gh-4350)\n\t\t\t\tif ( !saved.length ) {\n\n\t\t\t\t\t// Store arguments for use when handling the inner native event\n\t\t\t\t\t// There will always be at least one argument (an event object), so this array\n\t\t\t\t\t// will not be confused with a leftover capture object.\n\t\t\t\t\tsaved = slice.call( arguments );\n\t\t\t\t\tdataPriv.set( this, type, saved );\n\n\t\t\t\t\t// Trigger the native event and capture its result\n\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t// focus() and blur() are asynchronous\n\t\t\t\t\tnotAsync = expectSync( this, type );\n\t\t\t\t\tthis[ type ]();\n\t\t\t\t\tresult = dataPriv.get( this, type );\n\t\t\t\t\tif ( saved !== result || notAsync ) {\n\t\t\t\t\t\tdataPriv.set( this, type, false );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = {};\n\t\t\t\t\t}\n\t\t\t\t\tif ( saved !== result ) {\n\n\t\t\t\t\t\t// Cancel the outer synthetic event\n\t\t\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\treturn result.value;\n\t\t\t\t\t}\n\n\t\t\t\t// If this is an inner synthetic event for an event with a bubbling surrogate\n\t\t\t\t// (focus or blur), assume that the surrogate already propagated from triggering the\n\t\t\t\t// native event and prevent that from happening again here.\n\t\t\t\t// This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the\n\t\t\t\t// bubbling surrogate propagates *after* the non-bubbling base), but that seems\n\t\t\t\t// less bad than duplication.\n\t\t\t\t} else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {\n\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t}\n\n\t\t\t// If this is a native event triggered above, everything is now in order\n\t\t\t// Fire an inner synthetic event with the original arguments\n\t\t\t} else if ( saved.length ) {\n\n\t\t\t\t// ...and capture the result\n\t\t\t\tdataPriv.set( this, type, {\n\t\t\t\t\tvalue: jQuery.event.trigger(\n\n\t\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t\t// Extend with the prototype to reset the above stopImmediatePropagation()\n\t\t\t\t\t\tjQuery.extend( saved[ 0 ], jQuery.Event.prototype ),\n\t\t\t\t\t\tsaved.slice( 1 ),\n\t\t\t\t\t\tthis\n\t\t\t\t\t)\n\t\t\t\t} );\n\n\t\t\t\t// Abort handling of the native event\n\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t}\n\t\t}\n\t} );\n}\n\njQuery.removeEvent = function( elem, type, handle ) {\n\n\t// This \"if\" is needed for plain objects\n\tif ( elem.removeEventListener ) {\n\t\telem.removeEventListener( type, handle );\n\t}\n};\n\njQuery.Event = function( src, props ) {\n\n\t// Allow instantiation without the 'new' keyword\n\tif ( !( this instanceof jQuery.Event ) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\n\t\t\t\t// Support: Android <=2.3 only\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t\t// Create target properties\n\t\t// Support: Safari <=6 - 7 only\n\t\t// Target should not be a text node (#504, #13143)\n\t\tthis.target = ( src.target && src.target.nodeType === 3 ) ?\n\t\t\tsrc.target.parentNode :\n\t\t\tsrc.target;\n\n\t\tthis.currentTarget = src.currentTarget;\n\t\tthis.relatedTarget = src.relatedTarget;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || Date.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tconstructor: jQuery.Event,\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\tisSimulated: false,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.preventDefault();\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopPropagation();\n\t\t}\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Includes all common event props including KeyEvent and MouseEvent specific props\njQuery.each( {\n\taltKey: true,\n\tbubbles: true,\n\tcancelable: true,\n\tchangedTouches: true,\n\tctrlKey: true,\n\tdetail: true,\n\teventPhase: true,\n\tmetaKey: true,\n\tpageX: true,\n\tpageY: true,\n\tshiftKey: true,\n\tview: true,\n\t\"char\": true,\n\tcode: true,\n\tcharCode: true,\n\tkey: true,\n\tkeyCode: true,\n\tbutton: true,\n\tbuttons: true,\n\tclientX: true,\n\tclientY: true,\n\toffsetX: true,\n\toffsetY: true,\n\tpointerId: true,\n\tpointerType: true,\n\tscreenX: true,\n\tscreenY: true,\n\ttargetTouches: true,\n\ttoElement: true,\n\ttouches: true,\n\n\twhich: function( event ) {\n\t\tvar button = event.button;\n\n\t\t// Add which for key events\n\t\tif ( event.which == null && rkeyEvent.test( event.type ) ) {\n\t\t\treturn event.charCode != null ? event.charCode : event.keyCode;\n\t\t}\n\n\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\tif ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) {\n\t\t\tif ( button & 1 ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\tif ( button & 2 ) {\n\t\t\t\treturn 3;\n\t\t\t}\n\n\t\t\tif ( button & 4 ) {\n\t\t\t\treturn 2;\n\t\t\t}\n\n\t\t\treturn 0;\n\t\t}\n\n\t\treturn event.which;\n\t}\n}, jQuery.event.addProp );\n\njQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( type, delegateType ) {\n\tjQuery.event.special[ type ] = {\n\n\t\t// Utilize native event if possible so blur/focus sequence is correct\n\t\tsetup: function() {\n\n\t\t\t// Claim the first handler\n\t\t\t// dataPriv.set( this, \"focus\", ... )\n\t\t\t// dataPriv.set( this, \"blur\", ... )\n\t\t\tleverageNative( this, type, expectSync );\n\n\t\t\t// Return false to allow normal processing in the caller\n\t\t\treturn false;\n\t\t},\n\t\ttrigger: function() {\n\n\t\t\t// Force setup before trigger\n\t\t\tleverageNative( this, type );\n\n\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\treturn true;\n\t\t},\n\n\t\tdelegateType: delegateType\n\t};\n} );\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\n// so that event delegation works in jQuery.\n// Do the same for pointerenter/pointerleave and pointerover/pointerout\n//\n// Support: Safari 7 only\n// Safari sends mouseenter too often; see:\n// https://bugs.chromium.org/p/chromium/issues/detail?id=470258\n// for the description of the bug (it existed in older Chrome versions as well).\njQuery.each( {\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mouseenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n} );\n\njQuery.fn.extend( {\n\n\ton: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn );\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ?\n\t\t\t\t\thandleObj.origType + \".\" + handleObj.namespace :\n\t\t\t\t\thandleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t} );\n\t}\n} );\n\n\nvar\n\n\t// Support: IE <=10 - 11, Edge 12 - 13 only\n\t// In IE/Edge using regex groups here causes severe slowdowns.\n\t// See https://connect.microsoft.com/IE/feedback/details/1736512/\n\trnoInnerhtml = /<script|<style|<link/i,\n\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g;\n\n// Prefer a tbody over its parent table for containing new rows\nfunction manipulationTarget( elem, content ) {\n\tif ( nodeName( elem, \"table\" ) &&\n\t\tnodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ) {\n\n\t\treturn jQuery( elem ).children( \"tbody\" )[ 0 ] || elem;\n\t}\n\n\treturn elem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = ( elem.getAttribute( \"type\" ) !== null ) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tif ( ( elem.type || \"\" ).slice( 0, 5 ) === \"true/\" ) {\n\t\telem.type = elem.type.slice( 5 );\n\t} else {\n\t\telem.removeAttribute( \"type\" );\n\t}\n\n\treturn elem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\tvar i, l, type, pdataOld, udataOld, udataCur, events;\n\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\t// 1. Copy private data: events, handlers, etc.\n\tif ( dataPriv.hasData( src ) ) {\n\t\tpdataOld = dataPriv.get( src );\n\t\tevents = pdataOld.events;\n\n\t\tif ( events ) {\n\t\t\tdataPriv.remove( dest, \"handle events\" );\n\n\t\t\tfor ( type in events ) {\n\t\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// 2. Copy user data\n\tif ( dataUser.hasData( src ) ) {\n\t\tudataOld = dataUser.access( src );\n\t\tudataCur = jQuery.extend( {}, udataOld );\n\n\t\tdataUser.set( dest, udataCur );\n\t}\n}\n\n// Fix IE bugs, see support tests\nfunction fixInput( src, dest ) {\n\tvar nodeName = dest.nodeName.toLowerCase();\n\n\t// Fails to persist the checked state of a cloned checkbox or radio button.\n\tif ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\tdest.checked = src.checked;\n\n\t// Fails to return the selected option to the default selected state when cloning options\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\nfunction domManip( collection, args, callback, ignored ) {\n\n\t// Flatten any nested arrays\n\targs = flat( args );\n\n\tvar fragment, first, scripts, hasScripts, node, doc,\n\t\ti = 0,\n\t\tl = collection.length,\n\t\tiNoClone = l - 1,\n\t\tvalue = args[ 0 ],\n\t\tvalueIsFunction = isFunction( value );\n\n\t// We can't cloneNode fragments that contain checked, in WebKit\n\tif ( valueIsFunction ||\n\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\treturn collection.each( function( index ) {\n\t\t\tvar self = collection.eq( index );\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\targs[ 0 ] = value.call( this, index, self.html() );\n\t\t\t}\n\t\t\tdomManip( self, args, callback, ignored );\n\t\t} );\n\t}\n\n\tif ( l ) {\n\t\tfragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );\n\t\tfirst = fragment.firstChild;\n\n\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\tfragment = first;\n\t\t}\n\n\t\t// Require either new content or an interest in ignored elements to invoke the callback\n\t\tif ( first || ignored ) {\n\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\thasScripts = scripts.length;\n\n\t\t\t// Use the original fragment for the last item\n\t\t\t// instead of the first because it can end up\n\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tnode = fragment;\n\n\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\tif ( hasScripts ) {\n\n\t\t\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcallback.call( collection[ i ], node, i );\n\t\t\t}\n\n\t\t\tif ( hasScripts ) {\n\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t// Reenable scripts\n\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t!dataPriv.access( node, \"globalEval\" ) &&\n\t\t\t\t\t\tjQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\tif ( node.src && ( node.type || \"\" ).toLowerCase()  !== \"module\" ) {\n\n\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\tif ( jQuery._evalUrl && !node.noModule ) {\n\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src, {\n\t\t\t\t\t\t\t\t\tnonce: node.nonce || node.getAttribute( \"nonce\" )\n\t\t\t\t\t\t\t\t}, doc );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tDOMEval( node.textContent.replace( rcleanScript, \"\" ), node, doc );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn collection;\n}\n\nfunction remove( elem, selector, keepData ) {\n\tvar node,\n\t\tnodes = selector ? jQuery.filter( selector, elem ) : elem,\n\t\ti = 0;\n\n\tfor ( ; ( node = nodes[ i ] ) != null; i++ ) {\n\t\tif ( !keepData && node.nodeType === 1 ) {\n\t\t\tjQuery.cleanData( getAll( node ) );\n\t\t}\n\n\t\tif ( node.parentNode ) {\n\t\t\tif ( keepData && isAttached( node ) ) {\n\t\t\t\tsetGlobalEval( getAll( node, \"script\" ) );\n\t\t\t}\n\t\t\tnode.parentNode.removeChild( node );\n\t\t}\n\t}\n\n\treturn elem;\n}\n\njQuery.extend( {\n\thtmlPrefilter: function( html ) {\n\t\treturn html;\n\t},\n\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar i, l, srcElements, destElements,\n\t\t\tclone = elem.cloneNode( true ),\n\t\t\tinPage = isAttached( elem );\n\n\t\t// Fix IE cloning issues\n\t\tif ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&\n\t\t\t\t!jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\tfixInput( srcElements[ i ], destElements[ i ] );\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\t\tcloneCopyEvent( srcElements[ i ], destElements[ i ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tcleanData: function( elems ) {\n\t\tvar data, elem, type,\n\t\t\tspecial = jQuery.event.special,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {\n\t\t\tif ( acceptData( elem ) ) {\n\t\t\t\tif ( ( data = elem[ dataPriv.expando ] ) ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataPriv.expando ] = undefined;\n\t\t\t\t}\n\t\t\t\tif ( elem[ dataUser.expando ] ) {\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataUser.expando ] = undefined;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n} );\n\njQuery.fn.extend( {\n\tdetach: function( selector ) {\n\t\treturn remove( this, selector, true );\n\t},\n\n\tremove: function( selector ) {\n\t\treturn remove( this, selector );\n\t},\n\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().each( function() {\n\t\t\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\t\t\tthis.textContent = value;\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t} );\n\t},\n\n\tprepend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t} );\n\t},\n\n\tbefore: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t} );\n\t},\n\n\tafter: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t} );\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = this[ i ] ) != null; i++ ) {\n\t\t\tif ( elem.nodeType === 1 ) {\n\n\t\t\t\t// Prevent memory leaks\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\n\t\t\t\t// Remove any remaining nodes\n\t\t\t\telem.textContent = \"\";\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t} );\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined && elem.nodeType === 1 ) {\n\t\t\t\treturn elem.innerHTML;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t!wrapMap[ ( rtagName.exec( value ) || [ \"\", \"\" ] )[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = jQuery.htmlPrefilter( value );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\t\telem = this[ i ] || {};\n\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch ( e ) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar ignored = [];\n\n\t\t// Make the changes, replacing each non-ignored context element with the new content\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tvar parent = this.parentNode;\n\n\t\t\tif ( jQuery.inArray( this, ignored ) < 0 ) {\n\t\t\t\tjQuery.cleanData( getAll( this ) );\n\t\t\t\tif ( parent ) {\n\t\t\t\t\tparent.replaceChild( elem, this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Force callback invocation\n\t\t}, ignored );\n\t}\n} );\n\njQuery.each( {\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1,\n\t\t\ti = 0;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone( true );\n\t\t\tjQuery( insert[ i ] )[ original ]( elems );\n\n\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t// .get() because push.apply(_, arraylike) throws on ancient WebKit\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n} );\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\nvar getStyles = function( elem ) {\n\n\t\t// Support: IE <=11 only, Firefox <=30 (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tvar view = elem.ownerDocument.defaultView;\n\n\t\tif ( !view || !view.opener ) {\n\t\t\tview = window;\n\t\t}\n\n\t\treturn view.getComputedStyle( elem );\n\t};\n\nvar swap = function( elem, options, callback ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.call( elem );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar rboxStyle = new RegExp( cssExpand.join( \"|\" ), \"i\" );\n\n\n\n( function() {\n\n\t// Executing both pixelPosition & boxSizingReliable tests require only one layout\n\t// so they're executed at the same time to save the second computation.\n\tfunction computeStyleTests() {\n\n\t\t// This is a singleton, we need to execute it only once\n\t\tif ( !div ) {\n\t\t\treturn;\n\t\t}\n\n\t\tcontainer.style.cssText = \"position:absolute;left:-11111px;width:60px;\" +\n\t\t\t\"margin-top:1px;padding:0;border:0\";\n\t\tdiv.style.cssText =\n\t\t\t\"position:relative;display:block;box-sizing:border-box;overflow:scroll;\" +\n\t\t\t\"margin:auto;border:1px;padding:1px;\" +\n\t\t\t\"width:60%;top:1%\";\n\t\tdocumentElement.appendChild( container ).appendChild( div );\n\n\t\tvar divStyle = window.getComputedStyle( div );\n\t\tpixelPositionVal = divStyle.top !== \"1%\";\n\n\t\t// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44\n\t\treliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;\n\n\t\t// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3\n\t\t// Some styles come back with percentage values, even though they shouldn't\n\t\tdiv.style.right = \"60%\";\n\t\tpixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;\n\n\t\t// Support: IE 9 - 11 only\n\t\t// Detect misreporting of content dimensions for box-sizing:border-box elements\n\t\tboxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;\n\n\t\t// Support: IE 9 only\n\t\t// Detect overflow:scroll screwiness (gh-3699)\n\t\t// Support: Chrome <=64\n\t\t// Don't get tricked when zoom affects offsetWidth (gh-4029)\n\t\tdiv.style.position = \"absolute\";\n\t\tscrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12;\n\n\t\tdocumentElement.removeChild( container );\n\n\t\t// Nullify the div so it wouldn't be stored in the memory and\n\t\t// it will also be a sign that checks already performed\n\t\tdiv = null;\n\t}\n\n\tfunction roundPixelMeasures( measure ) {\n\t\treturn Math.round( parseFloat( measure ) );\n\t}\n\n\tvar pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,\n\t\treliableTrDimensionsVal, reliableMarginLeftVal,\n\t\tcontainer = document.createElement( \"div\" ),\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !div.style ) {\n\t\treturn;\n\t}\n\n\t// Support: IE <=9 - 11 only\n\t// Style of cloned element affects source element cloned (#8908)\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\tjQuery.extend( support, {\n\t\tboxSizingReliable: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\t\tpixelBoxStyles: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelBoxStylesVal;\n\t\t},\n\t\tpixelPosition: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelPositionVal;\n\t\t},\n\t\treliableMarginLeft: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn reliableMarginLeftVal;\n\t\t},\n\t\tscrollboxSize: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn scrollboxSizeVal;\n\t\t},\n\n\t\t// Support: IE 9 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Behavior in IE 9 is more subtle than in newer versions & it passes\n\t\t// some versions of this test; make sure not to make it pass there!\n\t\treliableTrDimensions: function() {\n\t\t\tvar table, tr, trChild, trStyle;\n\t\t\tif ( reliableTrDimensionsVal == null ) {\n\t\t\t\ttable = document.createElement( \"table\" );\n\t\t\t\ttr = document.createElement( \"tr\" );\n\t\t\t\ttrChild = document.createElement( \"div\" );\n\n\t\t\t\ttable.style.cssText = \"position:absolute;left:-11111px\";\n\t\t\t\ttr.style.height = \"1px\";\n\t\t\t\ttrChild.style.height = \"9px\";\n\n\t\t\t\tdocumentElement\n\t\t\t\t\t.appendChild( table )\n\t\t\t\t\t.appendChild( tr )\n\t\t\t\t\t.appendChild( trChild );\n\n\t\t\t\ttrStyle = window.getComputedStyle( tr );\n\t\t\t\treliableTrDimensionsVal = parseInt( trStyle.height ) > 3;\n\n\t\t\t\tdocumentElement.removeChild( table );\n\t\t\t}\n\t\t\treturn reliableTrDimensionsVal;\n\t\t}\n\t} );\n} )();\n\n\nfunction curCSS( elem, name, computed ) {\n\tvar width, minWidth, maxWidth, ret,\n\n\t\t// Support: Firefox 51+\n\t\t// Retrieving style before computed somehow\n\t\t// fixes an issue with getting wrong values\n\t\t// on detached elements\n\t\tstyle = elem.style;\n\n\tcomputed = computed || getStyles( elem );\n\n\t// getPropertyValue is needed for:\n\t//   .css('filter') (IE 9 only, #12537)\n\t//   .css('--customProperty) (#3144)\n\tif ( computed ) {\n\t\tret = computed.getPropertyValue( name ) || computed[ name ];\n\n\t\tif ( ret === \"\" && !isAttached( elem ) ) {\n\t\t\tret = jQuery.style( elem, name );\n\t\t}\n\n\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t// Android Browser returns percentage for some values,\n\t\t// but width seems to be reliably pixels.\n\t\t// This is against the CSSOM draft spec:\n\t\t// https://drafts.csswg.org/cssom/#resolved-values\n\t\tif ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\twidth = style.width;\n\t\t\tminWidth = style.minWidth;\n\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\tret = computed.width;\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.width = width;\n\t\t\tstyle.minWidth = minWidth;\n\t\t\tstyle.maxWidth = maxWidth;\n\t\t}\n\t}\n\n\treturn ret !== undefined ?\n\n\t\t// Support: IE <=9 - 11 only\n\t\t// IE returns zIndex value as an integer.\n\t\tret + \"\" :\n\t\tret;\n}\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tif ( conditionFn() ) {\n\n\t\t\t\t// Hook not needed (or it's not possible to use it due\n\t\t\t\t// to missing dependency), remove it.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\t\t\treturn ( this.get = hookFn ).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\nvar cssPrefixes = [ \"Webkit\", \"Moz\", \"ms\" ],\n\temptyStyle = document.createElement( \"div\" ).style,\n\tvendorProps = {};\n\n// Return a vendor-prefixed property or undefined\nfunction vendorPropName( name ) {\n\n\t// Check for vendor prefixed names\n\tvar capName = name[ 0 ].toUpperCase() + name.slice( 1 ),\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in emptyStyle ) {\n\t\t\treturn name;\n\t\t}\n\t}\n}\n\n// Return a potentially-mapped jQuery.cssProps or vendor prefixed property\nfunction finalPropName( name ) {\n\tvar final = jQuery.cssProps[ name ] || vendorProps[ name ];\n\n\tif ( final ) {\n\t\treturn final;\n\t}\n\tif ( name in emptyStyle ) {\n\t\treturn name;\n\t}\n\treturn vendorProps[ name ] = vendorPropName( name ) || name;\n}\n\n\nvar\n\n\t// Swappable if display is none or starts with table\n\t// except \"table\", \"table-cell\", or \"table-caption\"\n\t// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trcustomProp = /^--/,\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t};\n\nfunction setPositiveNumber( _elem, value, subtract ) {\n\n\t// Any relative (+/-) values have already been\n\t// normalized at this point\n\tvar matches = rcssNum.exec( value );\n\treturn matches ?\n\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {\n\tvar i = dimension === \"width\" ? 1 : 0,\n\t\textra = 0,\n\t\tdelta = 0;\n\n\t// Adjustment may not be necessary\n\tif ( box === ( isBorderBox ? \"border\" : \"content\" ) ) {\n\t\treturn 0;\n\t}\n\n\tfor ( ; i < 4; i += 2 ) {\n\n\t\t// Both box models exclude margin\n\t\tif ( box === \"margin\" ) {\n\t\t\tdelta += jQuery.css( elem, box + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\t// If we get here with a content-box, we're seeking \"padding\" or \"border\" or \"margin\"\n\t\tif ( !isBorderBox ) {\n\n\t\t\t// Add padding\n\t\t\tdelta += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// For \"border\" or \"margin\", add border\n\t\t\tif ( box !== \"padding\" ) {\n\t\t\t\tdelta += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\n\t\t\t// But still keep track of it otherwise\n\t\t\t} else {\n\t\t\t\textra += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\n\t\t// If we get here with a border-box (content + padding + border), we're seeking \"content\" or\n\t\t// \"padding\" or \"margin\"\n\t\t} else {\n\n\t\t\t// For \"content\", subtract padding\n\t\t\tif ( box === \"content\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// For \"content\" or \"padding\", subtract border\n\t\t\tif ( box !== \"margin\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Account for positive content-box scroll gutter when requested by providing computedVal\n\tif ( !isBorderBox && computedVal >= 0 ) {\n\n\t\t// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border\n\t\t// Assuming integer scroll gutter, subtract the rest and round down\n\t\tdelta += Math.max( 0, Math.ceil(\n\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\tcomputedVal -\n\t\t\tdelta -\n\t\t\textra -\n\t\t\t0.5\n\n\t\t// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter\n\t\t// Use an explicit zero to avoid NaN (gh-3964)\n\t\t) ) || 0;\n\t}\n\n\treturn delta;\n}\n\nfunction getWidthOrHeight( elem, dimension, extra ) {\n\n\t// Start with computed style\n\tvar styles = getStyles( elem ),\n\n\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).\n\t\t// Fake content-box until we know it's needed to know the true value.\n\t\tboxSizingNeeded = !support.boxSizingReliable() || extra,\n\t\tisBorderBox = boxSizingNeeded &&\n\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\tvalueIsBorderBox = isBorderBox,\n\n\t\tval = curCSS( elem, dimension, styles ),\n\t\toffsetProp = \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 );\n\n\t// Support: Firefox <=54\n\t// Return a confounding non-pixel value or feign ignorance, as appropriate.\n\tif ( rnumnonpx.test( val ) ) {\n\t\tif ( !extra ) {\n\t\t\treturn val;\n\t\t}\n\t\tval = \"auto\";\n\t}\n\n\n\t// Support: IE 9 - 11 only\n\t// Use offsetWidth/offsetHeight for when box sizing is unreliable.\n\t// In those cases, the computed value can be trusted to be border-box.\n\tif ( ( !support.boxSizingReliable() && isBorderBox ||\n\n\t\t// Support: IE 10 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Interestingly, in some cases IE 9 doesn't suffer from this issue.\n\t\t!support.reliableTrDimensions() && nodeName( elem, \"tr\" ) ||\n\n\t\t// Fall back to offsetWidth/offsetHeight when value is \"auto\"\n\t\t// This happens for inline elements with no explicit setting (gh-3571)\n\t\tval === \"auto\" ||\n\n\t\t// Support: Android <=4.1 - 4.3 only\n\t\t// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)\n\t\t!parseFloat( val ) && jQuery.css( elem, \"display\", false, styles ) === \"inline\" ) &&\n\n\t\t// Make sure the element is visible & connected\n\t\telem.getClientRects().length ) {\n\n\t\tisBorderBox = jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t\t// Where available, offsetWidth/offsetHeight approximate border box dimensions.\n\t\t// Where not available (e.g., SVG), assume unreliable box-sizing and interpret the\n\t\t// retrieved value as a content box dimension.\n\t\tvalueIsBorderBox = offsetProp in elem;\n\t\tif ( valueIsBorderBox ) {\n\t\t\tval = elem[ offsetProp ];\n\t\t}\n\t}\n\n\t// Normalize \"\" and auto\n\tval = parseFloat( val ) || 0;\n\n\t// Adjust for the element's box model\n\treturn ( val +\n\t\tboxModelAdjustment(\n\t\t\telem,\n\t\t\tdimension,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles,\n\n\t\t\t// Provide the current computed size to request scroll gutter calculation (gh-3589)\n\t\t\tval\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend( {\n\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"animationIterationCount\": true,\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"gridArea\": true,\n\t\t\"gridColumn\": true,\n\t\t\"gridColumnEnd\": true,\n\t\t\"gridColumnStart\": true,\n\t\t\"gridRow\": true,\n\t\t\"gridRowEnd\": true,\n\t\t\"gridRowStart\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name ),\n\t\t\tstyle = elem.style;\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to query the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Gets hook for the prefixed version, then unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// Convert \"+=\" or \"-=\" to relative numbers (#7345)\n\t\t\tif ( type === \"string\" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {\n\t\t\t\tvalue = adjustCSS( elem, name, ret );\n\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set (#7116)\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add the unit (except for certain CSS properties)\n\t\t\t// The isCustomProp check can be removed in jQuery 4.0 when we only auto-append\n\t\t\t// \"px\" to a few hardcoded values.\n\t\t\tif ( type === \"number\" && !isCustomProp ) {\n\t\t\t\tvalue += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? \"\" : \"px\" );\n\t\t\t}\n\n\t\t\t// background-* props affect original clone's values\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf( \"background\" ) === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !( \"set\" in hooks ) ||\n\t\t\t\t( value = hooks.set( elem, value, extra ) ) !== undefined ) {\n\n\t\t\t\tif ( isCustomProp ) {\n\t\t\t\t\tstyle.setProperty( name, value );\n\t\t\t\t} else {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else {\n\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks &&\n\t\t\t\t( ret = hooks.get( elem, false, extra ) ) !== undefined ) {\n\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar val, num, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name );\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to modify the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Try prefixed name followed by the unprefixed name\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t// Convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Make numeric if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || isFinite( num ) ? num || 0 : val;\n\t\t}\n\n\t\treturn val;\n\t}\n} );\n\njQuery.each( [ \"height\", \"width\" ], function( _i, dimension ) {\n\tjQuery.cssHooks[ dimension ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\n\t\t\t\t// Certain elements can have dimension info if we invisibly show them\n\t\t\t\t// but it must have a current display style that would benefit\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) &&\n\n\t\t\t\t\t// Support: Safari 8+\n\t\t\t\t\t// Table columns in Safari have non-zero offsetWidth & zero\n\t\t\t\t\t// getBoundingClientRect().width unless display is changed.\n\t\t\t\t\t// Support: IE <=11 only\n\t\t\t\t\t// Running getBoundingClientRect on a disconnected node\n\t\t\t\t\t// in IE throws an error.\n\t\t\t\t\t( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?\n\t\t\t\t\t\tswap( elem, cssShow, function() {\n\t\t\t\t\t\t\treturn getWidthOrHeight( elem, dimension, extra );\n\t\t\t\t\t\t} ) :\n\t\t\t\t\t\tgetWidthOrHeight( elem, dimension, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar matches,\n\t\t\t\tstyles = getStyles( elem ),\n\n\t\t\t\t// Only read styles.position if the test has a chance to fail\n\t\t\t\t// to avoid forcing a reflow.\n\t\t\t\tscrollboxSizeBuggy = !support.scrollboxSize() &&\n\t\t\t\t\tstyles.position === \"absolute\",\n\n\t\t\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)\n\t\t\t\tboxSizingNeeded = scrollboxSizeBuggy || extra,\n\t\t\t\tisBorderBox = boxSizingNeeded &&\n\t\t\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\tsubtract = extra ?\n\t\t\t\t\tboxModelAdjustment(\n\t\t\t\t\t\telem,\n\t\t\t\t\t\tdimension,\n\t\t\t\t\t\textra,\n\t\t\t\t\t\tisBorderBox,\n\t\t\t\t\t\tstyles\n\t\t\t\t\t) :\n\t\t\t\t\t0;\n\n\t\t\t// Account for unreliable border-box dimensions by comparing offset* to computed and\n\t\t\t// faking a content-box to get border and padding (gh-3699)\n\t\t\tif ( isBorderBox && scrollboxSizeBuggy ) {\n\t\t\t\tsubtract -= Math.ceil(\n\t\t\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\t\t\tparseFloat( styles[ dimension ] ) -\n\t\t\t\t\tboxModelAdjustment( elem, dimension, \"border\", false, styles ) -\n\t\t\t\t\t0.5\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Convert to pixels if value adjustment is needed\n\t\t\tif ( subtract && ( matches = rcssNum.exec( value ) ) &&\n\t\t\t\t( matches[ 3 ] || \"px\" ) !== \"px\" ) {\n\n\t\t\t\telem.style[ dimension ] = value;\n\t\t\t\tvalue = jQuery.css( elem, dimension );\n\t\t\t}\n\n\t\t\treturn setPositiveNumber( elem, value, subtract );\n\t\t}\n\t};\n} );\n\njQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn ( parseFloat( curCSS( elem, \"marginLeft\" ) ) ||\n\t\t\t\telem.getBoundingClientRect().left -\n\t\t\t\t\tswap( elem, { marginLeft: 0 }, function() {\n\t\t\t\t\t\treturn elem.getBoundingClientRect().left;\n\t\t\t\t\t} )\n\t\t\t\t) + \"px\";\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each( {\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// Assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split( \" \" ) : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( prefix !== \"margin\" ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n} );\n\njQuery.fn.extend( {\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( Array.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t}\n} );\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || jQuery.easing._default;\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\t// Use a property on the element directly when it is not a DOM element,\n\t\t\t// or when there is no matching style property that exists.\n\t\t\tif ( tween.elem.nodeType !== 1 ||\n\t\t\t\ttween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// Passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails.\n\t\t\t// Simple values such as \"10px\" are parsed to Float;\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as-is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\n\t\t\t// Use step hook for back compat.\n\t\t\t// Use cssHook if its there.\n\t\t\t// Use .style if available and use plain properties where available.\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.nodeType === 1 && (\n\t\t\t\t\tjQuery.cssHooks[ tween.prop ] ||\n\t\t\t\t\ttween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9 only\n// Panic based approach to setting things on disconnected nodes\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t},\n\t_default: \"swing\"\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, inProgress,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trrun = /queueHooks$/;\n\nfunction schedule() {\n\tif ( inProgress ) {\n\t\tif ( document.hidden === false && window.requestAnimationFrame ) {\n\t\t\twindow.requestAnimationFrame( schedule );\n\t\t} else {\n\t\t\twindow.setTimeout( schedule, jQuery.fx.interval );\n\t\t}\n\n\t\tjQuery.fx.tick();\n\t}\n}\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\twindow.setTimeout( function() {\n\t\tfxNow = undefined;\n\t} );\n\treturn ( fxNow = Date.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\ti = 0,\n\t\tattrs = { height: type };\n\n\t// If we include width, step value is 1 to do all cssExpand values,\n\t// otherwise step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {\n\n\t\t\t// We're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\tvar prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,\n\t\tisBox = \"width\" in props || \"height\" in props,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHiddenWithinTree( elem ),\n\t\tdataShow = dataPriv.get( elem, \"fxshow\" );\n\n\t// Queue-skipping animations hijack the fx hooks\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always( function() {\n\n\t\t\t// Ensure the complete handler is called before this completes\n\t\t\tanim.always( function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\t}\n\n\t// Detect show/hide animations\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.test( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// Pretend to be hidden if this is a \"show\" and\n\t\t\t\t// there is still data from a stopped show/hide\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\n\t\t\t\t// Ignore all other no-op show/hide data\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\t\t}\n\t}\n\n\t// Bail out if this is a no-op like .hide().hide()\n\tpropTween = !jQuery.isEmptyObject( props );\n\tif ( !propTween && jQuery.isEmptyObject( orig ) ) {\n\t\treturn;\n\t}\n\n\t// Restrict \"overflow\" and \"display\" styles during box animations\n\tif ( isBox && elem.nodeType === 1 ) {\n\n\t\t// Support: IE <=9 - 11, Edge 12 - 15\n\t\t// Record all 3 overflow attributes because IE does not infer the shorthand\n\t\t// from identically-valued overflowX and overflowY and Edge just mirrors\n\t\t// the overflowX value there.\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Identify a display type, preferring old show/hide data over the CSS cascade\n\t\trestoreDisplay = dataShow && dataShow.display;\n\t\tif ( restoreDisplay == null ) {\n\t\t\trestoreDisplay = dataPriv.get( elem, \"display\" );\n\t\t}\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\tif ( display === \"none\" ) {\n\t\t\tif ( restoreDisplay ) {\n\t\t\t\tdisplay = restoreDisplay;\n\t\t\t} else {\n\n\t\t\t\t// Get nonempty value(s) by temporarily forcing visibility\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t\trestoreDisplay = elem.style.display || restoreDisplay;\n\t\t\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\t\t\tshowHide( [ elem ] );\n\t\t\t}\n\t\t}\n\n\t\t// Animate inline elements as inline-block\n\t\tif ( display === \"inline\" || display === \"inline-block\" && restoreDisplay != null ) {\n\t\t\tif ( jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t\t// Restore the original display value at the end of pure show/hide animations\n\t\t\t\tif ( !propTween ) {\n\t\t\t\t\tanim.done( function() {\n\t\t\t\t\t\tstyle.display = restoreDisplay;\n\t\t\t\t\t} );\n\t\t\t\t\tif ( restoreDisplay == null ) {\n\t\t\t\t\t\tdisplay = style.display;\n\t\t\t\t\t\trestoreDisplay = display === \"none\" ? \"\" : display;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tanim.always( function() {\n\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t} );\n\t}\n\n\t// Implement show/hide animations\n\tpropTween = false;\n\tfor ( prop in orig ) {\n\n\t\t// General show/hide setup for this element animation\n\t\tif ( !propTween ) {\n\t\t\tif ( dataShow ) {\n\t\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\t\thidden = dataShow.hidden;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdataShow = dataPriv.access( elem, \"fxshow\", { display: restoreDisplay } );\n\t\t\t}\n\n\t\t\t// Store hidden/visible for toggle so `.stop().toggle()` \"reverses\"\n\t\t\tif ( toggle ) {\n\t\t\t\tdataShow.hidden = !hidden;\n\t\t\t}\n\n\t\t\t// Show elements before animating them\n\t\t\tif ( hidden ) {\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t}\n\n\t\t\t/* eslint-disable no-loop-func */\n\n\t\t\tanim.done( function() {\n\n\t\t\t/* eslint-enable no-loop-func */\n\n\t\t\t\t// The final step of a \"hide\" animation is actually hiding the element\n\t\t\t\tif ( !hidden ) {\n\t\t\t\t\tshowHide( [ elem ] );\n\t\t\t\t}\n\t\t\t\tdataPriv.remove( elem, \"fxshow\" );\n\t\t\t\tfor ( prop in orig ) {\n\t\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Per-property setup\n\t\tpropTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\t\tif ( !( prop in dataShow ) ) {\n\t\t\tdataShow[ prop ] = propTween.start;\n\t\t\tif ( hidden ) {\n\t\t\t\tpropTween.end = propTween.start;\n\t\t\t\tpropTween.start = 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( Array.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// Not quite $.extend, this won't overwrite existing keys.\n\t\t\t// Reusing 'index' because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = Animation.prefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\n\t\t\t// Don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t} ),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\n\t\t\t\t// Support: Android 2.3 only\n\t\t\t\t// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ] );\n\n\t\t\t// If there's more to do, yield\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t}\n\n\t\t\t// If this was an empty animation, synthesize a final progress notification\n\t\t\tif ( !length ) {\n\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t}\n\n\t\t\t// Resolve the animation and report its conclusion\n\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\treturn false;\n\t\t},\n\t\tanimation = deferred.promise( {\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, {\n\t\t\t\tspecialEasing: {},\n\t\t\t\teasing: jQuery.easing._default\n\t\t\t}, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\n\t\t\t\t\t// If we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// Resolve when we played the last frame; otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t} ),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length; index++ ) {\n\t\tresult = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\tif ( isFunction( result.stop ) ) {\n\t\t\t\tjQuery._queueHooks( animation.elem, animation.opts.queue ).stop =\n\t\t\t\t\tresult.stop.bind( result );\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\t// Attach callbacks from options\n\tanimation\n\t\t.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t} )\n\t);\n\n\treturn animation;\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\n\ttweeners: {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value );\n\t\t\tadjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );\n\t\t\treturn tween;\n\t\t} ]\n\t},\n\n\ttweener: function( props, callback ) {\n\t\tif ( isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.match( rnothtmlwhite );\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\tAnimation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];\n\t\t\tAnimation.tweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilters: [ defaultPrefilter ],\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tAnimation.prefilters.unshift( callback );\n\t\t} else {\n\t\t\tAnimation.prefilters.push( callback );\n\t\t}\n\t}\n} );\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tisFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !isFunction( easing ) && easing\n\t};\n\n\t// Go to the end state if fx are off\n\tif ( jQuery.fx.off ) {\n\t\topt.duration = 0;\n\n\t} else {\n\t\tif ( typeof opt.duration !== \"number\" ) {\n\t\t\tif ( opt.duration in jQuery.fx.speeds ) {\n\t\t\t\topt.duration = jQuery.fx.speeds[ opt.duration ];\n\n\t\t\t} else {\n\t\t\t\topt.duration = jQuery.fx.speeds._default;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend( {\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// Show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHiddenWithinTree ).css( \"opacity\", 0 ).show()\n\n\t\t\t// Animate to the value specified\n\t\t\t.end().animate( { opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || dataPriv.get( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = dataPriv.get( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this &&\n\t\t\t\t\t( type == null || timers[ index ].queue === type ) ) {\n\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Start the next in the queue if the last step wasn't forced.\n\t\t\t// Timers currently will call their complete callbacks, which\n\t\t\t// will dequeue but only if they were gotoEnd.\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t} );\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tvar index,\n\t\t\t\tdata = dataPriv.get( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// Enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// Empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// Look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t} );\n\t}\n} );\n\njQuery.each( [ \"toggle\", \"show\", \"hide\" ], function( _i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n} );\n\n// Generate shortcuts for custom animations\njQuery.each( {\n\tslideDown: genFx( \"show\" ),\n\tslideUp: genFx( \"hide\" ),\n\tslideToggle: genFx( \"toggle\" ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n} );\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ti = 0,\n\t\ttimers = jQuery.timers;\n\n\tfxNow = Date.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\n\t\t// Run the timer and safely remove it when done (allowing for external removal)\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tjQuery.fx.start();\n};\n\njQuery.fx.interval = 13;\njQuery.fx.start = function() {\n\tif ( inProgress ) {\n\t\treturn;\n\t}\n\n\tinProgress = true;\n\tschedule();\n};\n\njQuery.fx.stop = function() {\n\tinProgress = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = window.setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\twindow.clearTimeout( timeout );\n\t\t};\n\t} );\n};\n\n\n( function() {\n\tvar input = document.createElement( \"input\" ),\n\t\tselect = document.createElement( \"select\" ),\n\t\topt = select.appendChild( document.createElement( \"option\" ) );\n\n\tinput.type = \"checkbox\";\n\n\t// Support: Android <=4.3 only\n\t// Default value for a checkbox should be \"on\"\n\tsupport.checkOn = input.value !== \"\";\n\n\t// Support: IE <=11 only\n\t// Must access selectedIndex to make default options select\n\tsupport.optSelected = opt.selected;\n\n\t// Support: IE <=11 only\n\t// An input loses its value after becoming a radio\n\tinput = document.createElement( \"input\" );\n\tinput.value = \"t\";\n\tinput.type = \"radio\";\n\tsupport.radioValue = input.value === \"t\";\n} )();\n\n\nvar boolHook,\n\tattrHandle = jQuery.expr.attrHandle;\n\njQuery.fn.extend( {\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tattr: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set attributes on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// Attribute hooks are determined by the lowercase version\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\thooks = jQuery.attrHooks[ name.toLowerCase() ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\treturn value;\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tret = jQuery.find.attr( elem, name );\n\n\t\t// Non-existent attributes return null, we normalize to undefined\n\t\treturn ret == null ? undefined : ret;\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" &&\n\t\t\t\t\tnodeName( elem, \"input\" ) ) {\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name,\n\t\t\ti = 0,\n\n\t\t\t// Attribute names can contain non-HTML whitespace characters\n\t\t\t// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n\t\t\tattrNames = value && value.match( rnothtmlwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( ( name = attrNames[ i++ ] ) ) {\n\t\t\t\telem.removeAttribute( name );\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Hooks for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else {\n\t\t\telem.setAttribute( name, name );\n\t\t}\n\t\treturn name;\n\t}\n};\n\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( _i, name ) {\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = function( elem, name, isXML ) {\n\t\tvar ret, handle,\n\t\t\tlowercaseName = name.toLowerCase();\n\n\t\tif ( !isXML ) {\n\n\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\thandle = attrHandle[ lowercaseName ];\n\t\t\tattrHandle[ lowercaseName ] = ret;\n\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\tlowercaseName :\n\t\t\t\tnull;\n\t\t\tattrHandle[ lowercaseName ] = handle;\n\t\t}\n\t\treturn ret;\n\t};\n} );\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend( {\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tdelete this[ jQuery.propFix[ name ] || name ];\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set properties on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\treturn ( elem[ name ] = value );\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\treturn elem[ name ];\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\t// Support: IE <=9 - 11 only\n\t\t\t\t// elem.tabIndex doesn't always return the\n\t\t\t\t// correct value when it hasn't been explicitly set\n\t\t\t\t// https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\tif ( tabindex ) {\n\t\t\t\t\treturn parseInt( tabindex, 10 );\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\trfocusable.test( elem.nodeName ) ||\n\t\t\t\t\trclickable.test( elem.nodeName ) &&\n\t\t\t\t\telem.href\n\t\t\t\t) {\n\t\t\t\t\treturn 0;\n\t\t\t\t}\n\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t}\n} );\n\n// Support: IE <=11 only\n// Accessing the selectedIndex property\n// forces the browser to respect setting selected\n// on the option\n// The getter ensures a default option is selected\n// when in an optgroup\n// eslint rule \"no-unused-expressions\" is disabled for this code\n// since it considers such accessions noop\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent && parent.parentNode ) {\n\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\t\tset: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\njQuery.each( [\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n} );\n\n\n\n\n\t// Strip and collapse whitespace according to HTML spec\n\t// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace\n\tfunction stripAndCollapse( value ) {\n\t\tvar tokens = value.match( rnothtmlwhite ) || [];\n\t\treturn tokens.join( \" \" );\n\t}\n\n\nfunction getClass( elem ) {\n\treturn elem.getAttribute && elem.getAttribute( \"class\" ) || \"\";\n}\n\nfunction classesToArray( value ) {\n\tif ( Array.isArray( value ) ) {\n\t\treturn value;\n\t}\n\tif ( typeof value === \"string\" ) {\n\t\treturn value.match( rnothtmlwhite ) || [];\n\t}\n\treturn [];\n}\n\njQuery.fn.extend( {\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( !arguments.length ) {\n\t\t\treturn this.attr( \"class\", \"\" );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) > -1 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value,\n\t\t\tisValidValue = type === \"string\" || Array.isArray( value );\n\n\t\tif ( typeof stateVal === \"boolean\" && isValidValue ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).toggleClass(\n\t\t\t\t\tvalue.call( this, i, getClass( this ), stateVal ),\n\t\t\t\t\tstateVal\n\t\t\t\t);\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar className, i, self, classNames;\n\n\t\t\tif ( isValidValue ) {\n\n\t\t\t\t// Toggle individual class names\n\t\t\t\ti = 0;\n\t\t\t\tself = jQuery( this );\n\t\t\t\tclassNames = classesToArray( value );\n\n\t\t\t\twhile ( ( className = classNames[ i++ ] ) ) {\n\n\t\t\t\t\t// Check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( value === undefined || type === \"boolean\" ) {\n\t\t\t\tclassName = getClass( this );\n\t\t\t\tif ( className ) {\n\n\t\t\t\t\t// Store className if set\n\t\t\t\t\tdataPriv.set( this, \"__className__\", className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed `false`,\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tif ( this.setAttribute ) {\n\t\t\t\t\tthis.setAttribute( \"class\",\n\t\t\t\t\t\tclassName || value === false ?\n\t\t\t\t\t\t\"\" :\n\t\t\t\t\t\tdataPriv.get( this, \"__className__\" ) || \"\"\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className, elem,\n\t\t\ti = 0;\n\n\t\tclassName = \" \" + selector + \" \";\n\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\tif ( elem.nodeType === 1 &&\n\t\t\t\t( \" \" + stripAndCollapse( getClass( elem ) ) + \" \" ).indexOf( className ) > -1 ) {\n\t\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n} );\n\n\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend( {\n\tval: function( value ) {\n\t\tvar hooks, ret, valueIsFunction,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] ||\n\t\t\t\t\tjQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks &&\n\t\t\t\t\t\"get\" in hooks &&\n\t\t\t\t\t( ret = hooks.get( elem, \"value\" ) ) !== undefined\n\t\t\t\t) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\t// Handle most common string cases\n\t\t\t\tif ( typeof ret === \"string\" ) {\n\t\t\t\t\treturn ret.replace( rreturn, \"\" );\n\t\t\t\t}\n\n\t\t\t\t// Handle cases where value is null/undef or number\n\t\t\t\treturn ret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tvalueIsFunction = isFunction( value );\n\n\t\treturn this.each( function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\n\t\t\t} else if ( Array.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !( \"set\" in hooks ) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\n\t\t\t\t\t// Support: IE <=10 - 11 only\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\t// Strip and collapse whitespace\n\t\t\t\t\t// https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n\t\t\t\t\tstripAndCollapse( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option, i,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\",\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length;\n\n\t\t\t\tif ( index < 0 ) {\n\t\t\t\t\ti = max;\n\n\t\t\t\t} else {\n\t\t\t\t\ti = one ? index : 0;\n\t\t\t\t}\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t// IE8-9 doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t!option.disabled &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled ||\n\t\t\t\t\t\t\t\t!nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t/* eslint-disable no-cond-assign */\n\n\t\t\t\t\tif ( option.selected =\n\t\t\t\t\t\tjQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1\n\t\t\t\t\t) {\n\t\t\t\t\t\toptionSet = true;\n\t\t\t\t\t}\n\n\t\t\t\t\t/* eslint-enable no-cond-assign */\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\t\t\t\treturn values;\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Radios and checkboxes getter/setter\njQuery.each( [ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( Array.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\treturn elem.getAttribute( \"value\" ) === null ? \"on\" : elem.value;\n\t\t};\n\t}\n} );\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\nsupport.focusin = \"onfocusin\" in window;\n\n\nvar rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\tstopPropagationCallback = function( e ) {\n\t\te.stopPropagation();\n\t};\n\njQuery.extend( jQuery.event, {\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\n\t\tvar i, cur, tmp, bubbleType, ontype, handle, special, lastElement,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split( \".\" ) : [];\n\n\t\tcur = lastElement = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) > -1 ) {\n\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split( \".\" );\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf( \":\" ) < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.rnamespace = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === ( elem.ownerDocument || document ) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tlastElement = cur;\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = (\n\t\t\t\t\tdataPriv.get( cur, \"events\" ) || Object.create( null )\n\t\t\t\t)[ event.type ] &&\n\t\t\t\tdataPriv.get( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( ( !special._default ||\n\t\t\t\tspecial._default.apply( eventPath.pop(), data ) === false ) &&\n\t\t\t\tacceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name as the event.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.addEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\telem[ type ]();\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.removeEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\t// Piggyback on a donor event to simulate a different one\n\t// Used only for `focus(in | out)` events\n\tsimulate: function( type, elem, event ) {\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true\n\t\t\t}\n\t\t);\n\n\t\tjQuery.event.trigger( e, null, elem );\n\t}\n\n} );\n\njQuery.fn.extend( {\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t} );\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[ 0 ];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n} );\n\n\n// Support: Firefox <=44\n// Firefox doesn't have focus(in | out) events\n// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n//\n// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1\n// focus(in | out) events fire after focus & blur events,\n// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857\nif ( !support.focusin ) {\n\tjQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );\n\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\n\t\t\t\t// Handle: regular nodes (via `this.ownerDocument`), window\n\t\t\t\t// (via `this.document`) & document (via `this`).\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tdataPriv.access( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tdataPriv.remove( doc, fix );\n\n\t\t\t\t} else {\n\t\t\t\t\tdataPriv.access( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t} );\n}\nvar location = window.location;\n\nvar nonce = { guid: Date.now() };\n\nvar rquery = ( /\\?/ );\n\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\n\t// Support: IE 9 - 11 only\n\t// IE throws on parseFromString with invalid input.\n\ttry {\n\t\txml = ( new window.DOMParser() ).parseFromString( data, \"text/xml\" );\n\t} catch ( e ) {\n\t\txml = undefined;\n\t}\n\n\tif ( !xml || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( Array.isArray( obj ) ) {\n\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams(\n\t\t\t\t\tprefix + \"[\" + ( typeof v === \"object\" && v != null ? i : \"\" ) + \"]\",\n\t\t\t\t\tv,\n\t\t\t\t\ttraditional,\n\t\t\t\t\tadd\n\t\t\t\t);\n\t\t\t}\n\t\t} );\n\n\t} else if ( !traditional && toType( obj ) === \"object\" ) {\n\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, valueOrFunction ) {\n\n\t\t\t// If value is a function, invoke it and use its return value\n\t\t\tvar value = isFunction( valueOrFunction ) ?\n\t\t\t\tvalueOrFunction() :\n\t\t\t\tvalueOrFunction;\n\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" +\n\t\t\t\tencodeURIComponent( value == null ? \"\" : value );\n\t\t};\n\n\tif ( a == null ) {\n\t\treturn \"\";\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t} );\n\n\t} else {\n\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" );\n};\n\njQuery.fn.extend( {\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map( function() {\n\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t} )\n\t\t.filter( function() {\n\t\t\tvar type = this.type;\n\n\t\t\t// Use .is( \":disabled\" ) so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t} )\n\t\t.map( function( _i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\tif ( val == null ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tif ( Array.isArray( val ) ) {\n\t\t\t\treturn jQuery.map( val, function( val ) {\n\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t} ).get();\n\t}\n} );\n\n\nvar\n\tr20 = /%20/g,\n\trhash = /#.*$/,\n\trantiCache = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)$/mg,\n\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat( \"*\" ),\n\n\t// Anchor tag for parsing the document origin\n\toriginAnchor = document.createElement( \"a\" );\n\toriginAnchor.href = location.href;\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];\n\n\t\tif ( isFunction( func ) ) {\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( ( dataType = dataTypes[ i++ ] ) ) {\n\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType[ 0 ] === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" &&\n\t\t\t\t!seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t} );\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar key, deep,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\n\tvar ct, type, finalDataType, firstDataType,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"Content-Type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[ 0 ] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s.throws ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tstate: \"parsererror\",\n\t\t\t\t\t\t\t\terror: conv ? e : \"No conversion from \" + prev + \" to \" + current\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend( {\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: location.href,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( location.protocol ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /\\bxml\\b/,\n\t\t\thtml: /\\bhtml/,\n\t\t\tjson: /\\bjson\\b/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": JSON.parse,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar transport,\n\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\n\t\t\t// Response headers\n\t\t\tresponseHeadersString,\n\t\t\tresponseHeaders,\n\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// Url cleanup var\n\t\t\turlAnchor,\n\n\t\t\t// Request state (becomes false upon send and true upon completion)\n\t\t\tcompleted,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\t// Loop variable\n\t\t\ti,\n\n\t\t\t// uncached part of the url\n\t\t\tuncached,\n\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context &&\n\t\t\t\t( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\t\tjQuery.event,\n\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( completed ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[ 1 ].toLowerCase() + \" \" ] =\n\t\t\t\t\t\t\t\t\t( responseHeaders[ match[ 1 ].toLowerCase() + \" \" ] || [] )\n\t\t\t\t\t\t\t\t\t\t.concat( match[ 2 ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() + \" \" ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match.join( \", \" );\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn completed ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\tname = requestHeadersNames[ name.toLowerCase() ] =\n\t\t\t\t\t\t\trequestHeadersNames[ name.toLowerCase() ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( completed ) {\n\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Lazy-add the new callbacks in a way that preserves old ones\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR );\n\n\t\t// Add protocol if not provided (prefilters might expect it)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || location.href ) + \"\" )\n\t\t\t.replace( rprotocol, location.protocol + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = ( s.dataType || \"*\" ).toLowerCase().match( rnothtmlwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when the origin doesn't match the current origin.\n\t\tif ( s.crossDomain == null ) {\n\t\t\turlAnchor = document.createElement( \"a\" );\n\n\t\t\t// Support: IE <=8 - 11, Edge 12 - 15\n\t\t\t// IE throws exception on accessing the href property if url is malformed,\n\t\t\t// e.g. http://example.com:80x/\n\t\t\ttry {\n\t\t\t\turlAnchor.href = s.url;\n\n\t\t\t\t// Support: IE <=8 - 11 only\n\t\t\t\t// Anchor's host property isn't correctly set when s.url is relative\n\t\t\t\turlAnchor.href = urlAnchor.href;\n\t\t\t\ts.crossDomain = originAnchor.protocol + \"//\" + originAnchor.host !==\n\t\t\t\t\turlAnchor.protocol + \"//\" + urlAnchor.host;\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// If there is an error parsing the URL, assume it is crossDomain,\n\t\t\t\t// it can be rejected by the transport if it is invalid\n\t\t\t\ts.crossDomain = true;\n\t\t\t}\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( completed ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\t// Remove hash to simplify url manipulation\n\t\tcacheURL = s.url.replace( rhash, \"\" );\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// Remember the hash so we can put it back\n\t\t\tuncached = s.url.slice( cacheURL.length );\n\n\t\t\t// If data is available and should be processed, append data to url\n\t\t\tif ( s.data && ( s.processData || typeof s.data === \"string\" ) ) {\n\t\t\t\tcacheURL += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data;\n\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add or update anti-cache param if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\tcacheURL = cacheURL.replace( rantiCache, \"$1\" );\n\t\t\t\tuncached = ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + ( nonce.guid++ ) +\n\t\t\t\t\tuncached;\n\t\t\t}\n\n\t\t\t// Put hash and anti-cache on the URL that will be requested (gh-1732)\n\t\t\ts.url = cacheURL + uncached;\n\n\t\t// Change '%20' to '+' if this is encoded form body content (gh-2658)\n\t\t} else if ( s.data && s.processData &&\n\t\t\t( s.contentType || \"\" ).indexOf( \"application/x-www-form-urlencoded\" ) === 0 ) {\n\t\t\ts.data = s.data.replace( r20, \"+\" );\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[ 0 ] ] +\n\t\t\t\t\t( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend &&\n\t\t\t( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {\n\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// Aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tcompleteDeferred.add( s.complete );\n\t\tjqXHR.done( s.success );\n\t\tjqXHR.fail( s.error );\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\n\t\t\t// If request was aborted inside ajaxSend, stop there\n\t\t\tif ( completed ) {\n\t\t\t\treturn jqXHR;\n\t\t\t}\n\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = window.setTimeout( function() {\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tcompleted = false;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// Rethrow post-completion exceptions\n\t\t\t\tif ( completed ) {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\n\t\t\t\t// Propagate others as results\n\t\t\t\tdone( -1, e );\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Ignore repeat invocations\n\t\t\tif ( completed ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tcompleted = true;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\twindow.clearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Use a noop converter for missing script\n\t\t\tif ( !isSuccess && jQuery.inArray( \"script\", s.dataTypes ) > -1 ) {\n\t\t\t\ts.converters[ \"text script\" ] = function() {};\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"Last-Modified\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"etag\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Extract error from statusText and normalize for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n} );\n\njQuery.each( [ \"get\", \"post\" ], function( _i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\n\t\t// Shift arguments if data argument was omitted\n\t\tif ( isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\t// The url can be an options object (which then must have .url)\n\t\treturn jQuery.ajax( jQuery.extend( {\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t}, jQuery.isPlainObject( url ) && url ) );\n\t};\n} );\n\njQuery.ajaxPrefilter( function( s ) {\n\tvar i;\n\tfor ( i in s.headers ) {\n\t\tif ( i.toLowerCase() === \"content-type\" ) {\n\t\t\ts.contentType = s.headers[ i ] || \"\";\n\t\t}\n\t}\n} );\n\n\njQuery._evalUrl = function( url, options, doc ) {\n\treturn jQuery.ajax( {\n\t\turl: url,\n\n\t\t// Make this explicit, since user can override this through ajaxSetup (#11264)\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tcache: true,\n\t\tasync: false,\n\t\tglobal: false,\n\n\t\t// Only evaluate the response if it is successful (gh-4126)\n\t\t// dataFilter is not invoked for failure responses, so using it instead\n\t\t// of the default converter is kludgy but it works.\n\t\tconverters: {\n\t\t\t\"text script\": function() {}\n\t\t},\n\t\tdataFilter: function( response ) {\n\t\t\tjQuery.globalEval( response, options, doc );\n\t\t}\n\t} );\n};\n\n\njQuery.fn.extend( {\n\twrapAll: function( html ) {\n\t\tvar wrap;\n\n\t\tif ( this[ 0 ] ) {\n\t\t\tif ( isFunction( html ) ) {\n\t\t\t\thtml = html.call( this[ 0 ] );\n\t\t\t}\n\n\t\t\t// The elements to wrap the target around\n\t\t\twrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );\n\n\t\t\tif ( this[ 0 ].parentNode ) {\n\t\t\t\twrap.insertBefore( this[ 0 ] );\n\t\t\t}\n\n\t\t\twrap.map( function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstElementChild ) {\n\t\t\t\t\telem = elem.firstElementChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t} ).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapInner( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t} );\n\t},\n\n\twrap: function( html ) {\n\t\tvar htmlIsFunction = isFunction( html );\n\n\t\treturn this.each( function( i ) {\n\t\t\tjQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );\n\t\t} );\n\t},\n\n\tunwrap: function( selector ) {\n\t\tthis.parent( selector ).not( \"body\" ).each( function() {\n\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t} );\n\t\treturn this;\n\t}\n} );\n\n\njQuery.expr.pseudos.hidden = function( elem ) {\n\treturn !jQuery.expr.pseudos.visible( elem );\n};\njQuery.expr.pseudos.visible = function( elem ) {\n\treturn !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );\n};\n\n\n\n\njQuery.ajaxSettings.xhr = function() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch ( e ) {}\n};\n\nvar xhrSuccessStatus = {\n\n\t\t// File protocol always yields status code 0, assume 200\n\t\t0: 200,\n\n\t\t// Support: IE <=9 only\n\t\t// #1450: sometimes IE returns 1223 when it should be 204\n\t\t1223: 204\n\t},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nsupport.ajax = xhrSupported = !!xhrSupported;\n\njQuery.ajaxTransport( function( options ) {\n\tvar callback, errorCallback;\n\n\t// Cross domain only allowed if supported through XMLHttpRequest\n\tif ( support.cors || xhrSupported && !options.crossDomain ) {\n\t\treturn {\n\t\t\tsend: function( headers, complete ) {\n\t\t\t\tvar i,\n\t\t\t\t\txhr = options.xhr();\n\n\t\t\t\txhr.open(\n\t\t\t\t\toptions.type,\n\t\t\t\t\toptions.url,\n\t\t\t\t\toptions.async,\n\t\t\t\t\toptions.username,\n\t\t\t\t\toptions.password\n\t\t\t\t);\n\n\t\t\t\t// Apply custom fields if provided\n\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Override mime type if needed\n\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t}\n\n\t\t\t\t// X-Requested-With header\n\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\tif ( !options.crossDomain && !headers[ \"X-Requested-With\" ] ) {\n\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t}\n\n\t\t\t\t// Set headers\n\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] );\n\t\t\t\t}\n\n\t\t\t\t// Callback\n\t\t\t\tcallback = function( type ) {\n\t\t\t\t\treturn function() {\n\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\tcallback = errorCallback = xhr.onload =\n\t\t\t\t\t\t\t\txhr.onerror = xhr.onabort = xhr.ontimeout =\n\t\t\t\t\t\t\t\t\txhr.onreadystatechange = null;\n\n\t\t\t\t\t\t\tif ( type === \"abort\" ) {\n\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t} else if ( type === \"error\" ) {\n\n\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t// On a manual native abort, IE9 throws\n\t\t\t\t\t\t\t\t// errors on any property access that is not readyState\n\t\t\t\t\t\t\t\tif ( typeof xhr.status !== \"number\" ) {\n\t\t\t\t\t\t\t\t\tcomplete( 0, \"error\" );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcomplete(\n\n\t\t\t\t\t\t\t\t\t\t// File: protocol always yields status 0; see #8605, #14207\n\t\t\t\t\t\t\t\t\t\txhr.status,\n\t\t\t\t\t\t\t\t\t\txhr.statusText\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tcomplete(\n\t\t\t\t\t\t\t\t\txhrSuccessStatus[ xhr.status ] || xhr.status,\n\t\t\t\t\t\t\t\t\txhr.statusText,\n\n\t\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t\t// IE9 has no XHR2 but throws on binary (trac-11426)\n\t\t\t\t\t\t\t\t\t// For XHR2 non-text, let the caller handle it (gh-2498)\n\t\t\t\t\t\t\t\t\t( xhr.responseType || \"text\" ) !== \"text\"  ||\n\t\t\t\t\t\t\t\t\ttypeof xhr.responseText !== \"string\" ?\n\t\t\t\t\t\t\t\t\t\t{ binary: xhr.response } :\n\t\t\t\t\t\t\t\t\t\t{ text: xhr.responseText },\n\t\t\t\t\t\t\t\t\txhr.getAllResponseHeaders()\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t};\n\n\t\t\t\t// Listen to events\n\t\t\t\txhr.onload = callback();\n\t\t\t\terrorCallback = xhr.onerror = xhr.ontimeout = callback( \"error\" );\n\n\t\t\t\t// Support: IE 9 only\n\t\t\t\t// Use onreadystatechange to replace onabort\n\t\t\t\t// to handle uncaught aborts\n\t\t\t\tif ( xhr.onabort !== undefined ) {\n\t\t\t\t\txhr.onabort = errorCallback;\n\t\t\t\t} else {\n\t\t\t\t\txhr.onreadystatechange = function() {\n\n\t\t\t\t\t\t// Check readyState before timeout as it changes\n\t\t\t\t\t\tif ( xhr.readyState === 4 ) {\n\n\t\t\t\t\t\t\t// Allow onerror to be called first,\n\t\t\t\t\t\t\t// but that will not handle a native abort\n\t\t\t\t\t\t\t// Also, save errorCallback to a variable\n\t\t\t\t\t\t\t// as xhr.onerror cannot be accessed\n\t\t\t\t\t\t\twindow.setTimeout( function() {\n\t\t\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\t\t\terrorCallback();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\t// Create the abort callback\n\t\t\t\tcallback = callback( \"abort\" );\n\n\t\t\t\ttry {\n\n\t\t\t\t\t// Do send the request (this may raise an exception)\n\t\t\t\t\txhr.send( options.hasContent && options.data || null );\n\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t// #14683: Only rethrow if this hasn't been notified as an error yet\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tthrow e;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\n// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)\njQuery.ajaxPrefilter( function( s ) {\n\tif ( s.crossDomain ) {\n\t\ts.contents.script = false;\n\t}\n} );\n\n// Install script dataType\njQuery.ajaxSetup( {\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, \" +\n\t\t\t\"application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /\\b(?:java|ecma)script\\b/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n} );\n\n// Handle cache's special case and crossDomain\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t}\n} );\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function( s ) {\n\n\t// This transport only deals with cross domain or forced-by-attrs requests\n\tif ( s.crossDomain || s.scriptAttrs ) {\n\t\tvar script, callback;\n\t\treturn {\n\t\t\tsend: function( _, complete ) {\n\t\t\t\tscript = jQuery( \"<script>\" )\n\t\t\t\t\t.attr( s.scriptAttrs || {} )\n\t\t\t\t\t.prop( { charset: s.scriptCharset, src: s.url } )\n\t\t\t\t\t.on( \"load error\", callback = function( evt ) {\n\t\t\t\t\t\tscript.remove();\n\t\t\t\t\t\tcallback = null;\n\t\t\t\t\t\tif ( evt ) {\n\t\t\t\t\t\t\tcomplete( evt.type === \"error\" ? 404 : 200, evt.type );\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\tdocument.head.appendChild( script[ 0 ] );\n\t\t\t},\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup( {\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce.guid++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n} );\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" &&\n\t\t\t\t( s.contentType || \"\" )\n\t\t\t\t\t.indexOf( \"application/x-www-form-urlencoded\" ) === 0 &&\n\t\t\t\trjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[ \"script json\" ] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// Force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always( function() {\n\n\t\t\t// If previous value didn't exist - remove it\n\t\t\tif ( overwritten === undefined ) {\n\t\t\t\tjQuery( window ).removeProp( callbackName );\n\n\t\t\t// Otherwise restore preexisting value\n\t\t\t} else {\n\t\t\t\twindow[ callbackName ] = overwritten;\n\t\t\t}\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\n\t\t\t\t// Make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// Save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t} );\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n} );\n\n\n\n\n// Support: Safari 8 only\n// In Safari 8 documents created via document.implementation.createHTMLDocument\n// collapse sibling forms: the second one becomes a child of the first one.\n// Because of that, this security measure has to be disabled in Safari 8.\n// https://bugs.webkit.org/show_bug.cgi?id=137337\nsupport.createHTMLDocument = ( function() {\n\tvar body = document.implementation.createHTMLDocument( \"\" ).body;\n\tbody.innerHTML = \"<form></form><form></form>\";\n\treturn body.childNodes.length === 2;\n} )();\n\n\n// Argument \"data\" should be string of html\n// context (optional): If specified, the fragment will be created in this context,\n// defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( typeof data !== \"string\" ) {\n\t\treturn [];\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\n\tvar base, parsed, scripts;\n\n\tif ( !context ) {\n\n\t\t// Stop scripts or inline event handlers from being executed immediately\n\t\t// by using document.implementation\n\t\tif ( support.createHTMLDocument ) {\n\t\t\tcontext = document.implementation.createHTMLDocument( \"\" );\n\n\t\t\t// Set the base href for the created document\n\t\t\t// so any parsed elements with URLs\n\t\t\t// are based on the document's URL (gh-2965)\n\t\t\tbase = context.createElement( \"base\" );\n\t\t\tbase.href = document.location.href;\n\t\t\tcontext.head.appendChild( base );\n\t\t} else {\n\t\t\tcontext = document;\n\t\t}\n\t}\n\n\tparsed = rsingleTag.exec( data );\n\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[ 1 ] ) ];\n\t}\n\n\tparsed = buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tvar selector, type, response,\n\t\tself = this,\n\t\toff = url.indexOf( \" \" );\n\n\tif ( off > -1 ) {\n\t\tselector = stripAndCollapse( url.slice( off ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax( {\n\t\t\turl: url,\n\n\t\t\t// If \"type\" variable is undefined, then \"GET\" method will be used.\n\t\t\t// Make value of this field explicit since\n\t\t\t// user can override it through ajaxSetup method\n\t\t\ttype: type || \"GET\",\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t} ).done( function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery( \"<div>\" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t// If the request succeeds, this function gets \"data\", \"status\", \"jqXHR\"\n\t\t// but they are ignored because response was set above.\n\t\t// If it fails, this function gets \"jqXHR\", \"status\", \"error\"\n\t\t} ).always( callback && function( jqXHR, status ) {\n\t\t\tself.each( function() {\n\t\t\t\tcallback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t\t} );\n\t\t} );\n\t}\n\n\treturn this;\n};\n\n\n\n\njQuery.expr.pseudos.animated = function( elem ) {\n\treturn jQuery.grep( jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t} ).length;\n};\n\n\n\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// Set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\t( curCSSTop + curCSSLeft ).indexOf( \"auto\" ) > -1;\n\n\t\t// Need to be able to calculate position if either\n\t\t// top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( isFunction( options ) ) {\n\n\t\t\t// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)\n\t\t\toptions = options.call( elem, i, jQuery.extend( {}, curOffset ) );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\n\t\t} else {\n\t\t\tif ( typeof props.top === \"number\" ) {\n\t\t\t\tprops.top += \"px\";\n\t\t\t}\n\t\t\tif ( typeof props.left === \"number\" ) {\n\t\t\t\tprops.left += \"px\";\n\t\t\t}\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend( {\n\n\t// offset() relates an element's border box to the document origin\n\toffset: function( options ) {\n\n\t\t// Preserve chaining for setter\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each( function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t} );\n\t\t}\n\n\t\tvar rect, win,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !elem ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Return zeros for disconnected and hidden (display: none) elements (gh-2310)\n\t\t// Support: IE <=11 only\n\t\t// Running getBoundingClientRect on a\n\t\t// disconnected node in IE throws an error\n\t\tif ( !elem.getClientRects().length ) {\n\t\t\treturn { top: 0, left: 0 };\n\t\t}\n\n\t\t// Get document-relative position by adding viewport scroll to viewport-relative gBCR\n\t\trect = elem.getBoundingClientRect();\n\t\twin = elem.ownerDocument.defaultView;\n\t\treturn {\n\t\t\ttop: rect.top + win.pageYOffset,\n\t\t\tleft: rect.left + win.pageXOffset\n\t\t};\n\t},\n\n\t// position() relates an element's margin box to its offset parent's padding box\n\t// This corresponds to the behavior of CSS absolute positioning\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset, doc,\n\t\t\telem = this[ 0 ],\n\t\t\tparentOffset = { top: 0, left: 0 };\n\n\t\t// position:fixed elements are offset from the viewport, which itself always has zero offset\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\n\t\t\t// Assume position:fixed implies availability of getBoundingClientRect\n\t\t\toffset = elem.getBoundingClientRect();\n\n\t\t} else {\n\t\t\toffset = this.offset();\n\n\t\t\t// Account for the *real* offset parent, which can be the document or its root element\n\t\t\t// when a statically positioned element is identified\n\t\t\tdoc = elem.ownerDocument;\n\t\t\toffsetParent = elem.offsetParent || doc.documentElement;\n\t\t\twhile ( offsetParent &&\n\t\t\t\t( offsetParent === doc.body || offsetParent === doc.documentElement ) &&\n\t\t\t\tjQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\n\t\t\t\toffsetParent = offsetParent.parentNode;\n\t\t\t}\n\t\t\tif ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {\n\n\t\t\t\t// Incorporate borders into its offset, since they are outside its content origin\n\t\t\t\tparentOffset = jQuery( offsetParent ).offset();\n\t\t\t\tparentOffset.top += jQuery.css( offsetParent, \"borderTopWidth\", true );\n\t\t\t\tparentOffset.left += jQuery.css( offsetParent, \"borderLeftWidth\", true );\n\t\t\t}\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\treturn {\n\t\t\ttop: offset.top - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true )\n\t\t};\n\t},\n\n\t// This method will return documentElement in the following cases:\n\t// 1) For the element inside the iframe without offsetParent, this method will return\n\t//    documentElement of the parent window\n\t// 2) For the hidden or detached element\n\t// 3) For body or html element, i.e. in case of the html node - it will return itself\n\t//\n\t// but those exceptions were never presented as a real life use-cases\n\t// and might be considered as more preferable results.\n\t//\n\t// This logic, however, is not guaranteed and can change at any point in the future\n\toffsetParent: function() {\n\t\treturn this.map( function() {\n\t\t\tvar offsetParent = this.offsetParent;\n\n\t\t\twhile ( offsetParent && jQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\n\t\t\treturn offsetParent || documentElement;\n\t\t} );\n\t}\n} );\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = \"pageYOffset\" === prop;\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\n\t\t\t// Coalesce documents and windows\n\t\t\tvar win;\n\t\t\tif ( isWindow( elem ) ) {\n\t\t\t\twin = elem;\n\t\t\t} else if ( elem.nodeType === 9 ) {\n\t\t\t\twin = elem.defaultView;\n\t\t\t}\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? win[ prop ] : elem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : win.pageXOffset,\n\t\t\t\t\ttop ? val : win.pageYOffset\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length );\n\t};\n} );\n\n// Support: Safari <=7 - 9.1, Chrome <=37 - 49\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347\n// getComputedStyle returns percent when specified for top/left/bottom/right;\n// rather than make the css module depend on the offset module, just check for it here\njQuery.each( [ \"top\", \"left\" ], function( _i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\n\t\t\t\t// If curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n} );\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name },\n\t\tfunction( defaultExtra, funcName ) {\n\n\t\t// Margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( isWindow( elem ) ) {\n\n\t\t\t\t\t// $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)\n\t\t\t\t\treturn funcName.indexOf( \"outer\" ) === 0 ?\n\t\t\t\t\t\telem[ \"inner\" + name ] :\n\t\t\t\t\t\telem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],\n\t\t\t\t\t// whichever is greatest\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable );\n\t\t};\n\t} );\n} );\n\n\njQuery.each( [\n\t\"ajaxStart\",\n\t\"ajaxStop\",\n\t\"ajaxComplete\",\n\t\"ajaxError\",\n\t\"ajaxSuccess\",\n\t\"ajaxSend\"\n], function( _i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n} );\n\n\n\n\njQuery.fn.extend( {\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ?\n\t\t\tthis.off( selector, \"**\" ) :\n\t\t\tthis.off( types, selector || \"**\", fn );\n\t},\n\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t}\n} );\n\njQuery.each( ( \"blur focus focusin focusout resize scroll click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup contextmenu\" ).split( \" \" ),\n\tfunction( _i, name ) {\n\n\t\t// Handle event binding\n\t\tjQuery.fn[ name ] = function( data, fn ) {\n\t\t\treturn arguments.length > 0 ?\n\t\t\t\tthis.on( name, null, data, fn ) :\n\t\t\t\tthis.trigger( name );\n\t\t};\n\t} );\n\n\n\n\n// Support: Android <=4.0 only\n// Make sure we trim BOM and NBSP\nvar rtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g;\n\n// Bind a function to a context, optionally partially applying any\n// arguments.\n// jQuery.proxy is deprecated to promote standards (specifically Function#bind)\n// However, it is not slated for removal any time soon\njQuery.proxy = function( fn, context ) {\n\tvar tmp, args, proxy;\n\n\tif ( typeof context === \"string\" ) {\n\t\ttmp = fn[ context ];\n\t\tcontext = fn;\n\t\tfn = tmp;\n\t}\n\n\t// Quick check to determine if target is callable, in the spec\n\t// this throws a TypeError, but we will just return undefined.\n\tif ( !isFunction( fn ) ) {\n\t\treturn undefined;\n\t}\n\n\t// Simulated bind\n\targs = slice.call( arguments, 2 );\n\tproxy = function() {\n\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t};\n\n\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\treturn proxy;\n};\n\njQuery.holdReady = function( hold ) {\n\tif ( hold ) {\n\t\tjQuery.readyWait++;\n\t} else {\n\t\tjQuery.ready( true );\n\t}\n};\njQuery.isArray = Array.isArray;\njQuery.parseJSON = JSON.parse;\njQuery.nodeName = nodeName;\njQuery.isFunction = isFunction;\njQuery.isWindow = isWindow;\njQuery.camelCase = camelCase;\njQuery.type = toType;\n\njQuery.now = Date.now;\n\njQuery.isNumeric = function( obj ) {\n\n\t// As of jQuery 3.0, isNumeric is limited to\n\t// strings and numbers (primitives or objects)\n\t// that can be coerced to finite numbers (gh-2662)\n\tvar type = jQuery.type( obj );\n\treturn ( type === \"number\" || type === \"string\" ) &&\n\n\t\t// parseFloat NaNs numeric-cast false positives (\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t!isNaN( obj - parseFloat( obj ) );\n};\n\njQuery.trim = function( text ) {\n\treturn text == null ?\n\t\t\"\" :\n\t\t( text + \"\" ).replace( rtrim, \"\" );\n};\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t} );\n}\n\n\n\n\nvar\n\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in AMD\n// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === \"undefined\" ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n} );\n"
  },
  {
    "path": "docs/images/02_bellCurve/lib/plotly-binding-4.10.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    // Plotly.relayout() mutates the plot input object, so make sure to \n    // keep a reference to the user-supplied width/height *before*\n    // we call Plotly.plot();\n    var lay = x.layout || {};\n    instance.width = lay.width;\n    instance.height = lay.height;\n    instance.autosize = lay.autosize || true;\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if ((x.selectize || x.highlight.dynamic) && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.newPlot(graphDiv, x);\n      instance.plotly = true;\n      \n    } else if (x.layout.transition) {\n      \n      var plot = Plotly.react(graphDiv, x);\n    \n    } else {\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.newPlot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n            if (typeof pt.pointNumber === \"number\") {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber];\n            } else if (Array.isArray(pt.pointNumber)) {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber[0]][pt.pointNumber[1]];\n            } else if (Array.isArray(pt.pointNumbers)) {\n              obj[attrsToAttach[i]] = pt.pointNumbers.map(function(idx) { return attr[idx]; });\n            }\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode && Shiny.setInputValue) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_sunburstclick: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "docs/images/02_bellCurve/lib/plotly-binding-4.9.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if (x.selectize || x.highlight.dynamic && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.plot(graphDiv, x);\n      instance.plotly = true;\n      instance.autosize = x.layout.autosize || true;\n      instance.width = x.layout.width;\n      instance.height = x.layout.height;\n      \n    } else {\n      \n      // new x data could contain a new height/width...\n      // attach to instance so that resize logic knows about the new size\n      instance.width = x.layout.width || instance.width;\n      instance.height = x.layout.height || instance.height;\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.plot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n              // pointNumber can be an array (e.g., heatmaps)\n              // TODO: can pointNumber be 3D?\n              obj[attrsToAttach[i]] = typeof pt.pointNumber === \"number\" ? \n                attr[pt.pointNumber] : attr[pt.pointNumber[0]][pt.pointNumber[1]];\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "docs/images/02_bellCurve/lib/plotly-binding-4.9.1/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    // Plotly.relayout() mutates the plot input object, so make sure to \n    // keep a reference to the user-supplied width/height *before*\n    // we call Plotly.plot();\n    var lay = x.layout || {};\n    instance.width = lay.width;\n    instance.height = lay.height;\n    instance.autosize = lay.autosize || true;\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if (x.selectize || x.highlight.dynamic && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.plot(graphDiv, x);\n      instance.plotly = true;\n      \n    } else {\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.plot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n            if (typeof pt.pointNumber === \"number\") {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber];\n            } else if (Array.isArray(pt.pointNumber)) {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber[0]][pt.pointNumber[1]];\n            } else if (Array.isArray(pt.pointNumbers)) {\n              obj[attrsToAttach[i]] = pt.pointNumbers.map(function(idx) { return attr[idx]; });\n            }\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode && Shiny.setInputValue) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_sunburstclick: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "docs/images/02_bellCurve/lib/plotly-htmlwidgets-css-1.46.1/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "docs/images/02_bellCurve/lib/plotly-htmlwidgets-css-1.49.4/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "docs/images/02_bellCurve/lib/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "docs/images/02_bellCurve/two_animated_hist.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<meta charset=\"utf-8\"/>\n<style>body{background-color:white;}</style>\n<script src=\"lib/htmlwidgets-1.5.4/htmlwidgets.js\"></script>\n<script src=\"lib/plotly-binding-4.10.0/plotly.js\"></script>\n<script src=\"lib/typedarray-0.1/typedarray.min.js\"></script>\n<script src=\"lib/jquery-3.5.1/jquery.min.js\"></script>\n<link href=\"lib/crosstalk-1.2.0/css/crosstalk.min.css\" rel=\"stylesheet\" />\n<script src=\"lib/crosstalk-1.2.0/js/crosstalk.min.js\"></script>\n<link href=\"lib/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css\" rel=\"stylesheet\" />\n<script src=\"lib/plotly-main-2.5.1/plotly-latest.min.js\"></script>\n\n</head>\n<body>\n<div id=\"htmlwidget-f4ba4c274a3e03827e75\" style=\"width:630px;height:390px;\" class=\"plotly html-widget\"></div>\n<script type=\"application/json\" data-for=\"htmlwidget-f4ba4c274a3e03827e75\">{\"x\":{\"visdat\":{\"1574221918c17\":[\"function () \",\"plotlyVisDat\"]},\"cur_data\":\"1574221918c17\",\"attrs\":{\"1574221918c17\":{\"x\":{},\"y\":{},\"marker\":{\"size\":16},\"color\":{},\"frame\":{},\"colors\":[\"green3\",\"turquoise3\"],\"alpha_stroke\":1,\"sizes\":[10,100],\"spans\":[1,20]}},\"layout\":{\"width\":630,\"height\":390,\"margin\":{\"b\":10,\"l\":50,\"t\":10,\"r\":50,\"pad\":4},\"xaxis\":{\"domain\":[0,1],\"automargin\":true,\"range\":[4,23],\"title\":\"Teacup Giraffe heights\",\"zeroline\":false},\"yaxis\":{\"domain\":[0,1],\"automargin\":true,\"range\":[-0.5,21],\"title\":\"Frequency\",\"zeroline\":false},\"legend\":{\"x\":0.075,\"y\":0.91},\"autosize\":false,\"hovermode\":\"closest\",\"showlegend\":true,\"sliders\":[],\"updatemenus\":[{\"type\":\"buttons\",\"direction\":\"right\",\"showactive\":false,\"y\":0,\"x\":1,\"yanchor\":\"bottom\",\"xanchor\":\"right\",\"pad\":{\"t\":60,\"r\":5},\"buttons\":[{\"label\":\"Play\",\"method\":\"animate\",\"args\":[null,{\"fromcurrent\":true,\"mode\":\"immediate\",\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":50,\"redraw\":false}}]}]}]},\"source\":\"A\",\"config\":{\"modeBarButtonsToAdd\":[\"hoverclosest\",\"hovercompare\"],\"showSendToCloud\":false,\"displayModeBar\":false},\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"1\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"1\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"highlight\":{\"on\":\"plotly_click\",\"persistent\":false,\"dynamic\":false,\"selectize\":false,\"opacityDim\":0.2,\"selected\":{\"opacity\":1},\"debounce\":0},\"frames\":[{\"name\":\"1\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"1\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"1\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"2\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"2\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"2\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"3\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"3\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"3\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"4\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"4\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"4\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"5\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"5\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"5\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"6\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"6\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"6\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"7\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"7\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"7\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"8\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"8\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"8\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"9\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"9\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"9\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"10\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"10\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"10\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"11\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"11\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"11\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"12\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"12\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"12\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"13\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"13\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"13\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"14\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"14\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"14\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"15\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"15\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"15\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"16\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"16\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"16\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"17\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"17\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"17\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"18\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"18\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"18\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"19\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"19\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"19\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"20\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"20\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"20\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"21\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"21\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"21\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"22\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"22\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"22\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"23\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"23\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"23\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"24\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"24\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"24\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"25\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"25\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"25\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"26\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"26\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"26\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"27\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"27\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"27\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"28\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"28\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"28\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"29\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"29\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"29\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"30\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"30\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"30\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"31\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,20,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"31\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"31\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"32\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"32\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"32\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"33\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"33\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"33\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"34\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"34\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"34\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"35\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"35\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"35\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"36\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"36\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"36\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"37\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"37\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"37\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"38\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"38\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"38\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"39\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"39\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"39\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"40\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"40\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"40\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"41\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"41\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"41\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"42\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"42\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"42\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"43\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,20,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"43\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"43\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"44\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"44\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"44\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"45\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"45\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"45\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"46\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"46\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"46\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"47\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"47\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"47\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"48\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"48\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"48\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"49\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"49\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"49\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"50\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,22.203125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"50\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"50\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"51\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,20.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"51\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"51\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"52\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,14.484375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"52\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"52\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"53\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"53\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"53\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"54\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"54\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"54\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"55\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"55\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"55\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"56\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"56\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"56\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"57\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"57\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"57\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"58\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"58\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"58\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"59\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,20,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"59\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"59\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"60\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"60\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"60\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"61\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"61\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"61\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"62\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,22.203125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"62\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"62\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"63\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,20.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"63\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"63\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"64\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,14.484375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"64\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"64\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"65\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"65\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"65\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"66\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"66\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"66\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"67\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"67\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"67\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"68\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"68\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"68\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"69\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"69\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"69\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"70\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"70\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"70\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"71\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"71\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"71\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"72\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"72\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"72\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"73\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"73\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"73\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"74\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"74\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"74\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"75\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,20,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"75\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"75\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"76\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"76\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"76\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"77\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"77\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"77\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"78\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,22.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"78\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"78\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"79\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,20.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"79\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"79\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"80\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,14.90625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"80\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"80\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"81\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"81\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"81\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"82\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,22.203125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"82\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"82\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"83\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,20.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"83\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"83\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"84\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,14.484375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"84\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"84\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"85\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"85\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"85\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"86\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"86\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"86\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"87\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"87\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"87\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"88\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"88\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"88\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"89\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"89\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"89\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"90\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"90\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"90\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"91\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"91\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"91\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"92\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"92\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"92\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"93\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"93\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"93\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"94\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,22.234375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"94\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"94\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"95\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,20.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"95\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"95\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"96\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,15.328125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"96\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"96\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"97\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"97\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"97\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"98\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,22.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"98\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"98\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"99\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,20.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"99\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"99\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"100\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,14.90625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"100\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"100\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"101\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"101\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"101\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"102\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,22.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"102\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"102\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"103\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,20.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"103\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"103\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"104\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,15.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"104\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"104\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"105\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"105\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"105\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"106\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,22.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"106\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"106\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"107\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,20.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"107\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"107\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"108\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,14.90625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"108\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"108\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"109\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"109\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"109\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"110\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,22.234375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"110\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"110\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"111\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,20.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"111\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"111\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"112\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,15.328125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"112\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"112\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"113\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"113\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"113\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"114\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,22.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"114\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"114\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"115\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,20.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"115\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"115\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"116\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,15.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"116\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"116\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"117\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"117\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"117\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"118\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,22.203125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"118\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"118\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"119\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,20.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"119\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"119\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"120\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,14.484375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"120\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"120\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"121\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"121\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"121\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"122\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,22.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"122\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"122\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"123\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,20.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"123\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"123\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"124\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,14.90625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"124\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"124\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"125\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"125\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"125\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"126\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"126\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"126\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"127\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"127\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"127\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"128\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"128\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"128\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"129\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"129\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"129\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"130\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,22.265625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"130\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"130\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"131\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,20.625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"131\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"131\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"132\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,16.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"132\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"132\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"133\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"133\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"133\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"134\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,22.234375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"134\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"134\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"135\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,20.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"135\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"135\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"136\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,15.328125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"136\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"136\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"137\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"137\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"137\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"138\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,22.28125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"138\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"138\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"139\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,20.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"139\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"139\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"140\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,16.59375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"140\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"140\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"141\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"141\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"141\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"142\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,22.296875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"142\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"142\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"143\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,20.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"143\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"143\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"144\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,17.015625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"144\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"144\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"145\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"145\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"145\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"146\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,22.234375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"146\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"146\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"147\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,20.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"147\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"147\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"148\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,15.328125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"148\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"148\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"149\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"149\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"149\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"150\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,22.3125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"150\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"150\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"151\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,21,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"151\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"151\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"152\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,17.4375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"152\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"152\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"153\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"153\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"153\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"154\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"154\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"154\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"155\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,20,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"155\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"155\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"156\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"156\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"156\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"157\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"157\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"157\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"158\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,22.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"158\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"158\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"159\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,20.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"159\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"159\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"160\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,15.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"160\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"160\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"161\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"161\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"161\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"162\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,22.265625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"162\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"162\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"163\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,20.625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"163\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"163\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"164\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,16.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"164\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"164\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"165\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"165\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"165\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"166\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,22.265625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"166\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"166\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"167\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,20.625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"167\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"167\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"168\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,16.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"168\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"168\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"169\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"169\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"169\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"170\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,22.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"170\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"170\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"171\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,20.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"171\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"171\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"172\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,15.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"172\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"172\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"173\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"173\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"173\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"174\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"174\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"174\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"175\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,20,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"175\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"175\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"176\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"176\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"176\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"177\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"177\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"177\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"178\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,22.328125,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"178\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"178\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"179\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,21.125,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"179\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"179\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"180\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,17.859375,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"180\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"180\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"181\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"181\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"181\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"182\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,22.265625,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"182\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"182\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"183\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,20.625,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"183\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"183\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"184\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,16.171875,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"184\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"184\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"185\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"185\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"185\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"186\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,22.28125,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"186\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"186\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"187\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,20.75,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"187\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"187\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"188\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,16.59375,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"188\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"188\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"189\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"189\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"189\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"190\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,22.28125,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"190\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"190\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"191\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,20.75,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"191\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"191\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"192\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,16.59375,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"192\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"192\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"193\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"193\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"193\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"194\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,22.28125,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"194\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"194\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"195\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,20.75,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"195\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"195\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"196\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,16.59375,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"196\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"196\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"197\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"197\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"197\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"198\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,22.34375],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"198\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"198\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"199\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,21.25],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"199\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"199\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"200\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,18.28125],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"200\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"200\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"201\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"201\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"201\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"202\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"202\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"202\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"203\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"203\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"203\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"204\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"204\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"204\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"205\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"205\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"205\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"206\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"206\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"206\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"207\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"207\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"207\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"208\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"208\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"208\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"209\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"209\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"209\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"210\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"210\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"210\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"211\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"211\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"211\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"212\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"212\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"212\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"213\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"213\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"213\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"214\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"214\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"214\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"215\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"215\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"215\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"216\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"216\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"216\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"217\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"217\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"217\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"218\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"218\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"218\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"219\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"219\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"219\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"220\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"220\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"220\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"221\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"221\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"221\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"222\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"222\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"222\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"223\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"223\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"223\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"224\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"224\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"224\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"225\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"225\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"225\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"226\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"226\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"226\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"227\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"227\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,20,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"227\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"228\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"228\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"228\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"229\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"229\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"229\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"230\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"230\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"230\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"231\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"231\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"231\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"232\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"232\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"232\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"233\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"233\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"233\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"234\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"234\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"234\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"235\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"235\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,20,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"235\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"236\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"236\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"236\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"237\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"237\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"237\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"238\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"238\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,22.203125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"238\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"239\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"239\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,20.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"239\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"240\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"240\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,14.484375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"240\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"241\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"241\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"241\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"242\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"242\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,22.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"242\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"243\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"243\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,20.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"243\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"244\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"244\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,14.90625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"244\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"245\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"245\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"245\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"246\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"246\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,22.203125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"246\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"247\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"247\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,20.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"247\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"248\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"248\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,14.484375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"248\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"249\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"249\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"249\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"250\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"250\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,22.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"250\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"251\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"251\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,20.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"251\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"252\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"252\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,14.90625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"252\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"253\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"253\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"253\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"254\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"254\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,22.234375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"254\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"255\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"255\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,20.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"255\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"256\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"256\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,15.328125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"256\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"257\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"257\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"257\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"258\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"258\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,22.234375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"258\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"259\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"259\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,20.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"259\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"260\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"260\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,15.328125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"260\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"261\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"261\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"261\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"262\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"262\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,22.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"262\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"263\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"263\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,20.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"263\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"264\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"264\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,15.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"264\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"265\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"265\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"265\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"266\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"266\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"266\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"267\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"267\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"267\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"268\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"268\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"268\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"269\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"269\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"269\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"270\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"270\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"270\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"271\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"271\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"271\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"272\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"272\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"272\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"273\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"273\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"273\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"274\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"274\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,22.265625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"274\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"275\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"275\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,20.625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"275\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"276\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"276\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,16.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"276\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"277\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"277\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"277\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"278\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"278\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,22.28125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"278\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"279\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"279\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,20.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"279\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"280\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"280\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,16.59375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"280\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"281\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"281\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"281\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"282\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"282\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"282\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"283\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"283\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"283\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"284\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"284\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"284\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"285\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"285\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"285\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"286\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"286\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,22.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"286\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"287\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"287\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,20.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"287\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"288\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"288\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,15.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"288\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"289\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"289\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"289\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"290\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"290\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"290\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"291\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"291\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,20,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"291\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"292\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"292\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"292\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"293\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"293\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"293\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"294\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"294\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,22.265625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"294\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"295\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"295\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,20.625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"295\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"296\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"296\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,16.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"296\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"297\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"297\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"297\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"298\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"298\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,22.28125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"298\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"299\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"299\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,20.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"299\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"300\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"300\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,16.59375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"300\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"301\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"301\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"301\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"302\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"302\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,22.203125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"302\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"303\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"303\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,20.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"303\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"304\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"304\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,14.484375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"304\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"305\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"305\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"305\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"306\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"306\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"306\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"307\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"307\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"307\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"308\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"308\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"308\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"309\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"309\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"309\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"310\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"310\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,22.296875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"310\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"311\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"311\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,20.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"311\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"312\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"312\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,17.015625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"312\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"313\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"313\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"313\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"314\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"314\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,22.296875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"314\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"315\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"315\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,20.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"315\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"316\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"316\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,17.015625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"316\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"317\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"317\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"317\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"318\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"318\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,22.3125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"318\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"319\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"319\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,21,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"319\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"320\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"320\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,17.4375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"320\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"321\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"321\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"321\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"322\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"322\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,22.328125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"322\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"323\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"323\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,21.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"323\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"324\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"324\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,17.859375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"324\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"325\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"325\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"325\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"326\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"326\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"326\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"327\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"327\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,20,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"327\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"328\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"328\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"328\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"329\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"329\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"329\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"330\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"330\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,22.34375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"330\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"331\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"331\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,21.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"331\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"332\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"332\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,18.28125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"332\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"333\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"333\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"333\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"334\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"334\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,22.3125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"334\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"335\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"335\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,21,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"335\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"336\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"336\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,17.4375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"336\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"337\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"337\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"337\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"338\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"338\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,22.359375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"338\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"339\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"339\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,21.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"339\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"340\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"340\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,18.703125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"340\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"341\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"341\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"341\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"342\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"342\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,22.328125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"342\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"343\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"343\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,21.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"343\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"344\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"344\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,17.859375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"344\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"345\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"345\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"345\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"346\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"346\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,22.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"346\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"347\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"347\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,21.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"347\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"348\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"348\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,19.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"348\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"349\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"349\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"349\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"350\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"350\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,22.34375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"350\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"351\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"351\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,21.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"351\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"352\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"352\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,18.28125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"352\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"353\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"353\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"353\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"354\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"354\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,22.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"354\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"355\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"355\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,20.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"355\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"356\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"356\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,14.90625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"356\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"357\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"357\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"357\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"358\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"358\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,22.234375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"358\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"359\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"359\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,20.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"359\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"360\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"360\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,15.328125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"360\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"361\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"361\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"361\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"362\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"362\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,22.390625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"362\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"363\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"363\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,21.625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"363\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"364\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"364\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,19.546875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"364\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"365\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"365\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"365\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"366\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"366\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,22.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"366\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"367\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"367\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,20.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"367\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"368\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"368\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,15.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"368\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"369\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"369\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"369\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"370\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"370\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,22.359375,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"370\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"371\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"371\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,21.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"371\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"372\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"372\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,18.703125,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"372\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"373\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"373\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"373\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"374\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"374\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,22.40625,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"374\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"375\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"375\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,21.75,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"375\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"376\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"376\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,19.96875,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"376\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"377\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"377\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"377\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"378\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"378\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,22.375,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"378\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"379\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"379\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,21.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"379\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"380\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"380\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,19.125,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"380\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"381\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"381\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"381\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"382\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"382\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,22.421875,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"382\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"383\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"383\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,21.875,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"383\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"384\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"384\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,20.390625,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"384\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"385\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"385\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"385\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"386\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"386\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,22.390625,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"386\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"387\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"387\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,21.625,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"387\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"388\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"388\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,19.546875,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"388\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"389\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"389\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"389\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"390\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"390\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,22.265625,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"390\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"391\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"391\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,20.625,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"391\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"392\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"392\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,16.171875,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"392\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"393\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"393\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"393\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"394\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"394\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,22.4375,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"394\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"395\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"395\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,22,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"395\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"396\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"396\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,20.8125,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"396\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"397\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"397\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"397\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"398\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"398\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,22.28125],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"398\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"399\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"399\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,20.75],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"399\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"400\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"400\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,16.59375],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"400\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"401\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"401\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"401\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"402\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"402\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"402\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"403\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"403\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"403\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"404\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"404\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"404\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"405\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"405\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"405\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"406\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"406\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"406\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"407\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"407\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"407\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"408\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"408\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"408\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"409\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"409\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"409\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"410\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"410\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"410\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"411\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"411\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"411\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"412\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"412\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"412\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]}],\"shinyEvents\":[\"plotly_hover\",\"plotly_click\",\"plotly_selected\",\"plotly_relayout\",\"plotly_brushed\",\"plotly_brushing\",\"plotly_clickannotation\",\"plotly_doubleclick\",\"plotly_deselect\",\"plotly_afterplot\",\"plotly_sunburstclick\"],\"base_url\":\"https://plot.ly\"},\"evals\":[],\"jsHooks\":[]}</script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/images/03_mean/Law_of_large_numbers.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<meta charset=\"utf-8\"/>\n<style>body{background-color:white;}</style>\n<script src=\"lib/htmlwidgets-1.5.4/htmlwidgets.js\"></script>\n<script src=\"lib/plotly-binding-4.10.0/plotly.js\"></script>\n<script src=\"lib/typedarray-0.1/typedarray.min.js\"></script>\n<script src=\"lib/jquery-3.5.1/jquery.min.js\"></script>\n<link href=\"lib/crosstalk-1.2.0/css/crosstalk.min.css\" rel=\"stylesheet\" />\n<script src=\"lib/crosstalk-1.2.0/js/crosstalk.min.js\"></script>\n<link href=\"lib/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css\" rel=\"stylesheet\" />\n<script src=\"lib/plotly-main-2.5.1/plotly-latest.min.js\"></script>\n\n</head>\n<body>\n<div id=\"htmlwidget-729b8228c9c3bee3571d\" style=\"width:550px;height:350px;\" class=\"plotly html-widget\"></div>\n<script type=\"application/json\" data-for=\"htmlwidget-729b8228c9c3bee3571d\">{\"x\":{\"visdat\":{\"1437b552ced64\":[\"function () \",\"plotlyVisDat\"]},\"cur_data\":\"1437b552ced64\",\"attrs\":{\"1437b552ced64\":{\"x\":{},\"y\":{},\"mode\":\"lines\",\"line\":{\"simplyfy\":false,\"color\":\"orangered\"},\"frame\":{},\"alpha_stroke\":1,\"sizes\":[10,100],\"spans\":[1,20],\"type\":\"scatter\"}},\"layout\":{\"width\":550,\"height\":350,\"margin\":{\"b\":10,\"l\":50,\"t\":10,\"r\":50,\"pad\":4},\"xaxis\":{\"domain\":[0,1],\"automargin\":true,\"title\":\"Sample Size (log10)\",\"zeroline\":false,\"range\":[0.85,4.15]},\"yaxis\":{\"domain\":[0,1],\"automargin\":true,\"range\":[-0.7,0.7],\"title\":\"Mean\",\"zeroline\":false},\"autosize\":false,\"hovermode\":\"closest\",\"showlegend\":false,\"sliders\":[],\"updatemenus\":[{\"type\":\"buttons\",\"direction\":\"right\",\"showactive\":false,\"y\":0,\"x\":1,\"yanchor\":\"bottom\",\"xanchor\":\"right\",\"pad\":{\"t\":60,\"r\":5},\"buttons\":[{\"label\":\"Play\",\"method\":\"animate\",\"args\":[null,{\"fromcurrent\":true,\"mode\":\"immediate\",\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":10,\"redraw\":false}}]}]}]},\"source\":\"A\",\"config\":{\"modeBarButtonsToAdd\":[\"hoverclosest\",\"hovercompare\"],\"showSendToCloud\":false,\"displayModeBar\":false},\"data\":[{\"x\":[1],\"y\":[0.129471146570758],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"10\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"highlight\":{\"on\":\"plotly_click\",\"persistent\":false,\"dynamic\":false,\"selectize\":false,\"opacityDim\":0.2,\"selected\":{\"opacity\":1},\"debounce\":0},\"frames\":[{\"name\":\"10\",\"data\":[{\"x\":[1],\"y\":[0.129471146570758],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"10\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"10.23372\",\"data\":[{\"x\":[1,1.01003344481605],\"y\":[0.129471146570758,0.605600692807506],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"10.2337179863252\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"10.4729\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"10.4728983823636\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"10.71767\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"10.717668854455\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"10.96816\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"10.9681600527314\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"11.22451\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"11.2245056808531\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"11.48684\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"11.4868425673755\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"11.75531\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"11.7553107387837\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"12.03005\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"12.0300534942332\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"12.31122\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"12.3112174820389\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"12.59895\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"12.5989527779503\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"12.89341\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"12.8934129652572\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"13.19476\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"13.1947552167671\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"13.50314\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"13.5031403786987\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"13.81873\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"13.8187330565363\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"14.1417\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"14.1417017028902\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"14.47222\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"14.4722187074114\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"14.81046\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"14.8104604888068\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"15.15661\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"15.156607589006\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"15.51084\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"15.5108447695284\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"15.87336\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"15.8733611101021\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"16.24435\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"16.2443501095887\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"16.62401\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"16.6240097892661\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"17.01254\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"17.0125427985259\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"17.41016\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"17.4101565230402\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"17.81706\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"17.8170631954573\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"18.23348\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"18.2334800086844\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"18.65963\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"18.6596292318175\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"19.09574\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"19.095738328781\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"19.54204\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"19.5420400797405\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"19.99877\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"19.9987727053529\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"20.46618\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"20.4661799939199\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"20.94451\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"20.9445114315147\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"21.43402\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"21.4340223351486\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"21.93497\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"21.9349739890506\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"22.44763\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"22.4476337841322\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"22.97228\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"22.9722753607115\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"23.50918\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"23.5091787545729\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"24.05863\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"24.0586305464407\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"24.62092\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"24.6209240149463\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"25.19636\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"25.1963592931702\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"25.78524\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"25.7852435288427\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"26.38789\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"26.3878910482893\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"27.00462\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"27.0046235242068\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"27.63577\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"27.6357701473616\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"28.28167\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"28.2816678023003\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"28.94266\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"28.9426612471675\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"29.6191\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"29.6191032977255\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"30.31136\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"30.3113550156758\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"31.01979\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"31.019785901381\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"31.74477\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"31.7447740910919\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"32.48671\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"32.4867065587838\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"33.24598\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"33.2459793227094\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"34.023\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"34.0229976567807\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"34.81818\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"34.8181763068897\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"35.63194\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"35.6319397122859\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"36.46472\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"36.4647222321275\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"37.31697\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"37.3169683773275\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"38.18913\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"38.1891330478186\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"39.08168\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"39.0816817753627\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"39.99509\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"39.9950909720367\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"40.92985\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"40.9298481845244\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"41.88645\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"41.8864523543527\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"42.86541\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"42.8654140842093\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"43.86726\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"43.867255910485\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"44.89251\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"44.8925125821861\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"45.94173\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"45.9417313463648\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"47.01547\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"47.0154722402213\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"48.11431\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"48.1143083900326\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"49.23883\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"49.2388263170674\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"50.38963\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"50.3896262506515\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"51.56732\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"51.5673224485497\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"52.77254\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"52.7725435248354\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"54.00593\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"54.0059327854238\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"55.26815\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"55.268148571446\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"56.55986\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"56.5598646106501\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"57.88177\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"57.8817703770128\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"59.23457\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"59.2345714587581\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"60.61899\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"60.6189899349758\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"62.03576\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"62.0357647610427\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"63.48565\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"63.4856521630522\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"64.96943\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"64.9694260414612\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"66.48788\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"66.4878783841727\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"68.04182\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"68.041819689271\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"69.63208\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"69.6320793976389\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"71.25951\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"71.2595063356841\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"72.92497\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"72.9249691684145\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"74.62936\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"74.6293568631014\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"76.37358\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"76.3735791637802\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"78.15857\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"78.1585670768409\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"79.98527\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"79.9852733679672\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"81.85467\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"81.8546730706903\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"83.76776\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"83.7677640068292\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"85.72557\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"85.7255673190933\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"87.72913\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"87.7291280161336\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"89.77952\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"89.7795155303332\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"91.87782\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"91.8778242886334\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"94.02517\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"94.0251742967014\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"96.22271\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"96.2227117367514\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"98.47161\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"98.4716095793378\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"100.7731\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"100.773068209446\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"103.1283\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"103.128316067219\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"105.5386\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"105.538610303652\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"108.0052\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"108.005237451625\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"110.5295\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"110.529514112602\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"113.1128\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"113.112787659392\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"115.7564\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"115.75643695533\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"118.4619\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"118.461873090268\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"121.2305\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"121.230540133765\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"124.0639\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"124.063915905883\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"126.9635\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"126.963512765997\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"129.9309\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"129.930878420042\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"132.9676\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"132.967596746621\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"136.0753\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"136.075288642433\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"139.2556\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"139.255612887446\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"142.5103\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"142.5102670303\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"145.841\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"145.840988294399\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"149.2496\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"149.249554505183\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"152.7378\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"152.737785039071\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"156.3075\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"156.307541794582\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"159.9607\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"159.960730186149\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"163.6993\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"163.69930016117\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"167.5252\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"167.525247240822\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"171.4406\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"171.440613585197\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"175.4475\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"175.447489083346\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"179.548\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"179.548012468783\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"183.7444\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"183.744372461073\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"188.0388\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"188.038808934092\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"192.4336\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"192.433614111598\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"196.9311\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"196.931133790742\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"201.5338\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"201.533768594173\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"206.244\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"206.243975251409\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"211.0643\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"211.064267910156\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"215.9972\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"215.997219478272\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"221.0455\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"221.045462997102\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"226.2117\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"226.211693046903\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"231.4987\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"231.498667185116\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"236.9092\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"236.909207418264\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"242.4462\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"242.446201708233\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"248.1126\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"248.112605513777\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"253.9114\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"253.911443368035\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"259.8458\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"259.845810492925\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"265.9189\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"265.91887445127\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"272.1339\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"272.133876837531\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"278.4941\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"278.494135008065\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"285.003\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"285.003043851811\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"291.6641\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"291.66407760237\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"298.4808\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"298.480791692433\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"305.4568\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"305.456824651544\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"312.5959\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"312.595900048228\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"319.9018\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"319.901828477507\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"327.3785\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"327.378509594858\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"335.0299\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"335.029934197723\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"342.8602\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"342.860186355659\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"350.8734\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"350.873445590271\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"359.074\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"359.073989106106\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"367.4662\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"367.466194073669\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"376.0545\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"376.054539965817\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"384.8436\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"384.843610948743\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"393.8381\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"393.838098328849\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"403.0428\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"403.042803056806\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"412.4626\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"412.462638290136\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"422.1026\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"422.10263201569\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"431.9679\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"431.967929733417\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"442.0638\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"442.063797202853\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"452.3956\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"452.395623253806\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"462.9689\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"462.968922662727\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"473.7893\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"473.789339096315\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"484.8626\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"484.862648123909\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"496.1948\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"496.194760300291\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"507.7917\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"507.79172432054\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"519.6597\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"519.65973024862\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"531.8051\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"531.80511282142\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"544.2344\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"544.234354830027\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"556.9541\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"556.954090580014\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"569.9711\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"569.971109432608\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"583.2924\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"583.292359428621\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"596.925\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"596.924950997074\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"610.8762\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"610.876160750504\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"625.1534\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"625.153435368972\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"639.7644\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"639.764395574843\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"654.7168\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"654.716840200474\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"670.0188\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"670.01875035096\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"685.6783\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"685.678293664174\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"701.7038\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"701.703828670383\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"718.1039\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"718.103909253735\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"734.8873\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"734.887289218039\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"752.0629\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"752.062926959242\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"769.64\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"769.639990247116\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"787.6279\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"787.627861118707\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"806.0361\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"806.036140886135\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"824.8747\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"824.874655261459\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"844.1535\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"844.153459601299\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"863.8828\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"863.882844274045\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"884.0733\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"884.073340152507\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"904.7357\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"904.73572423493\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"925.881\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"925.881025397396\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"947.5205\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"947.520530280655\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"969.6658\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"969.665789314553\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"992.3286\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"992.328622883256\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1015.521\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1015.52112763457\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1039.256\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1039.25568293671\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1063.545\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1063.54495748601\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1088.402\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1088.40191606901\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1113.84\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1113.83982648262\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1139.872\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1139.87226661605\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1166.513\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1166.5131316982\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1193.777\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1193.77664171444\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1221.677\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1221.67734899679\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1250.23\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1250.23014599146\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1279.45\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1279.45027320787\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1309.353\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1309.35332735361\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1339.955\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1339.95526965934\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1371.272\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1371.2724343984\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1403.322\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1403.32153760549\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1436.12\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1436.11968599908\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1469.684\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1469.68438611245\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1504.034\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1504.03355363803\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1539.186\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1539.18552299021\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1575.159\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1575.15905709162\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1611.973\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1611.97335738816\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1649.648\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1649.64807409802\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1688.203\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1688.20331670036\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1727.66\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1727.65966466904\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1768.038\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1768.03817845721\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1809.36\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1809.36041073872\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1851.648\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1851.64841791216\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1894.925\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1894.92477187382\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1939.213\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1939.21257206583\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1984.535\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1984.5354578058\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2030.918\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2030.91762090474\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2078.384\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2078.38381857976\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2126.959\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2126.95938666869\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2176.67\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2176.67025315346\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2227.543\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2227.54295199956\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2279.605\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2279.60463731898\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2332.883\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2332.88309786416\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2387.407\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2387.40677186065\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2443.205\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2443.20476218649\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2500.307\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2500.30685190633\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2558.744\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2558.74352016859\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2618.546\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2618.54595847423\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2679.746\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2679.74608732569\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2742.377\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2742.37657326495\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2806.471\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2806.47084630984\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2872.063\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2872.06311779783\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2939.188\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2939.18839864689\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3007.883\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3007.8825180431\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3078.182\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3078.18214256508\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3150.125\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3150.12479575533\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3223.749\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3223.74887814903\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3299.094\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3299.09368777094\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3376.199\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3376.19944111135\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3455.107\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3455.10729459222\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3535.859\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3535.85936653518\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3618.499\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3618.49875964275\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3703.07\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3703.06958400514\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3789.617\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3789.61698064472\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3878.187\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3878.18714561073\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3968.827\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3968.82735463716\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"4061.586\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"4061.58598837699\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"4156.513\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"4156.51255822599\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"4253.658\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"4253.65773275039\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"4353.073\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"4353.0733647319\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"4454.813\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"4454.81251884499\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"4558.929\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"4558.92949998106\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"4665.48\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"4665.47988223448\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"4774.521\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"4774.52053856613\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"4886.11\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"4886.10967116033\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"5000.307\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"5000.3068424911\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"5117.173\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"5117.1730071146\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"5236.771\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"5236.77054420466\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"5359.163\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"5359.16329084852\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"5484.417\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"5484.41657612102\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"5612.597\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"5612.59725595498\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"5743.774\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"5743.77374882659\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"5878.016\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"5878.01607227492\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"6015.396\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"6015.39588027485\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"6155.987\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"6155.98650148352\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"6299.863\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"6299.86297838069\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"6447.102\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"6447.10210732388\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"6597.782\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"6597.78247953955\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"6751.985\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"6751.98452307251\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"6909.791\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"6909.79054571566\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"7071.285\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"7071.284778943\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"7236.553\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"7236.55342286966\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"7405.685\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"7405.68469226245\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"7578.769\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"7578.76886362593\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"7755.898\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"7755.89832338901\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"7937.168\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"7937.16761721755\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"8122.674\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"8122.67350047972\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"8312.515\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552,3.91973244147157],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167,0.00274955598574463],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"8312.51498989064\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"8506.793\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552,3.91973244147157,3.92976588628763],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167,0.00274955598574463,0.00936755136407535],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"8506.79341636416\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"8705.612\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552,3.91973244147157,3.92976588628763,3.93979933110368],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167,0.00274955598574463,0.00936755136407535,-0.0055396785935177],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"8705.61247909987\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"8909.078\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552,3.91973244147157,3.92976588628763,3.93979933110368,3.94983277591973],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167,0.00274955598574463,0.00936755136407535,-0.0055396785935177,0.0111730869743262],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"8909.07830093415\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"9117.299\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552,3.91973244147157,3.92976588628763,3.93979933110368,3.94983277591973,3.95986622073579],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167,0.00274955598574463,0.00936755136407535,-0.0055396785935177,0.0111730869743262,0.0249839955007581],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"9117.29948498493\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"9330.387\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552,3.91973244147157,3.92976588628763,3.93979933110368,3.94983277591973,3.95986622073579,3.96989966555184],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167,0.00274955598574463,0.00936755136407535,-0.0055396785935177,0.0111730869743262,0.0249839955007581,0.0207807906344895],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"9330.38717262037\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"9548.455\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552,3.91973244147157,3.92976588628763,3.93979933110368,3.94983277591973,3.95986622073579,3.96989966555184,3.97993311036789],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167,0.00274955598574463,0.00936755136407535,-0.0055396785935177,0.0111730869743262,0.0249839955007581,0.0207807906344895,-0.00185789092671876],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"9548.45510278231\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"9771.62\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552,3.91973244147157,3.92976588628763,3.93979933110368,3.94983277591973,3.95986622073579,3.96989966555184,3.97993311036789,3.98996655518395],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167,0.00274955598574463,0.00936755136407535,-0.0055396785935177,0.0111730869743262,0.0249839955007581,0.0207807906344895,-0.00185789092671876,0.00147091290820801],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"9771.61967269619\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"10000\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552,3.91973244147157,3.92976588628763,3.93979933110368,3.94983277591973,3.95986622073579,3.96989966555184,3.97993311036789,3.98996655518395,4],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167,0.00274955598574463,0.00936755136407535,-0.0055396785935177,0.0111730869743262,0.0249839955007581,0.0207807906344895,-0.00185789092671876,0.00147091290820801,0.00820681136465592],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"10000\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]}],\"shinyEvents\":[\"plotly_hover\",\"plotly_click\",\"plotly_selected\",\"plotly_relayout\",\"plotly_brushed\",\"plotly_brushing\",\"plotly_clickannotation\",\"plotly_doubleclick\",\"plotly_deselect\",\"plotly_afterplot\",\"plotly_sunburstclick\"],\"base_url\":\"https://plot.ly\"},\"evals\":[],\"jsHooks\":[]}</script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/images/03_mean/lib/crosstalk-1.0.0/css/crosstalk.css",
    "content": "/* Adjust margins outwards, so column contents line up with the edges of the\n   parent of container-fluid. */\n.container-fluid.crosstalk-bscols {\n  margin-left: -30px;\n  margin-right: -30px;\n  white-space: normal;\n}\n\n/* But don't adjust the margins outwards if we're directly under the body,\n   i.e. we were the top-level of something at the console. */\nbody > .container-fluid.crosstalk-bscols {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n  display: inline-block;\n  padding-right: 12px;\n  vertical-align: top;\n}\n\n@media only screen and (max-width:480px) {\n  .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n    display: block;\n    padding-right: inherit;\n  }\n}\n"
  },
  {
    "path": "docs/images/03_mean/lib/crosstalk-1.0.0/js/crosstalk.js",
    "content": "(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Events = function () {\n  function Events() {\n    _classCallCheck(this, Events);\n\n    this._types = {};\n    this._seq = 0;\n  }\n\n  _createClass(Events, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var subs = this._types[eventType];\n      if (!subs) {\n        subs = this._types[eventType] = {};\n      }\n      var sub = \"sub\" + this._seq++;\n      subs[sub] = listener;\n      return sub;\n    }\n\n    // Returns false if no match, or string for sub name if matched\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var subs = this._types[eventType];\n      if (typeof listener === \"function\") {\n        for (var key in subs) {\n          if (subs.hasOwnProperty(key)) {\n            if (subs[key] === listener) {\n              delete subs[key];\n              return key;\n            }\n          }\n        }\n        return false;\n      } else if (typeof listener === \"string\") {\n        if (subs && subs[listener]) {\n          delete subs[listener];\n          return listener;\n        }\n        return false;\n      } else {\n        throw new Error(\"Unexpected type for listener\");\n      }\n    }\n  }, {\n    key: \"trigger\",\n    value: function trigger(eventType, arg, thisObj) {\n      var subs = this._types[eventType];\n      for (var key in subs) {\n        if (subs.hasOwnProperty(key)) {\n          subs[key].call(thisObj, arg);\n        }\n      }\n    }\n  }]);\n\n  return Events;\n}();\n\nexports.default = Events;\n\n},{}],2:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.FilterHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _filterset = require(\"./filterset\");\n\nvar _filterset2 = _interopRequireDefault(_filterset);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction getFilterSet(group) {\n  var fsVar = group.var(\"filterset\");\n  var result = fsVar.get();\n  if (!result) {\n    result = new _filterset2.default();\n    fsVar.set(result);\n  }\n  return result;\n}\n\nvar id = 1;\nfunction nextId() {\n  return id++;\n}\n\nvar FilterHandle = exports.FilterHandle = function () {\n  /**\n   * @classdesc\n   * Use this class to contribute to, and listen for changes to, the filter set\n   * for the given group of widgets. Filter input controls should create one\n   * `FilterHandle` and only call {@link FilterHandle#set}. Output widgets that\n   * wish to displayed filtered data should create one `FilterHandle` and use\n   * the {@link FilterHandle#filteredKeys} property and listen for change\n   * events.\n   *\n   * If two (or more) `FilterHandle` instances in the same webpage share the\n   * same group name, they will contribute to a single \"filter set\". Each\n   * `FilterHandle` starts out with a `null` value, which means they take\n   * nothing away from the set of data that should be shown. To make a\n   * `FilterHandle` actually remove data from the filter set, set its value to\n   * an array of keys which should be displayed. Crosstalk will aggregate the\n   * various key arrays by finding their intersection; only keys that are\n   * present in all non-null filter handles are considered part of the filter\n   * set.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the @{link FilterHandle#setGroup} method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function FilterHandle(group, extraInfo) {\n    _classCallCheck(this, FilterHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The filterSet that we're tracking, if any. Can change over time.\n    this._filterSet = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._filterVar = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this._id = \"filter\" + nextId();\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this FilterHandle. If `set()` was\n   * previously called on this handle, switching groups will clear those keys\n   * from the old group's filter set. These keys will not be applied to the new\n   * group's filter set either. In other words, `setGroup()` effectively calls\n   * `clear()` before switching groups.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(FilterHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._filterVar) {\n        this._filterVar.off(\"change\", this._varOnChangeSub);\n        this.clear();\n        this._varOnChangeSub = null;\n        this._filterVar = null;\n        this._filterSet = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        group = (0, _group2.default)(group);\n        this._filterSet = getFilterSet(group);\n        this._filterVar = (0, _group2.default)(group).var(\"filter\");\n        var sub = this._filterVar.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Combine the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n    value: function _mergeExtraInfo(extraInfo) {\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Close the handle. This clears this handle's contribution to the filter set,\n     * and unsubscribes all event listeners.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.clear();\n      this.setGroup(null);\n    }\n\n    /**\n     * Clear this handle's contribution to the filter set.\n     *\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.clear(this._id);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * Set this handle's contribution to the filter set. This array should consist\n     * of the keys of the rows that _should_ be displayed; any keys that are not\n     * present in the array will be considered _filtered out_. Note that multiple\n     * `FilterHandle` instances in the group may each contribute an array of keys,\n     * and only those keys that appear in _all_ of the arrays make it through the\n     * filter.\n     *\n     * @param {string[]} keys - Empty array, or array of keys. To clear the\n     *   filter, don't pass an empty array; instead, use the\n     *   {@link FilterHandle#clear} method.\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(keys, extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.update(this._id, keys);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * @return {string[]|null} - Either: 1) an array of keys that made it through\n     *   all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n     *   is being applied (all data should be displayed).\n     */\n\n  }, {\n    key: \"on\",\n\n\n    /**\n     * Subscribe to events on this `FilterHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {FilterHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n     *   this subscription.\n     */\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancel event subscriptions created by {@link FilterHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|FilterHandle~listener} listener - Either the callback\n     *   function previously passed into {@link FilterHandle#on}, or the\n     *   string that was returned from {@link FilterHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n  }, {\n    key: \"_onChange\",\n    value: function _onChange(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * @callback FilterHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the filter set, or `null` if no filter set is active),\n     *   `oldValue` (the previous value of the filter set), and `sender` (the\n     *   `FilterHandle` instance that made the change).\n     */\n\n    /**\n     * @event FilterHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the filter set, or `null`\n     *   if no filter set is active.\n     * @property {object} oldValue - The previous value of the filter set.\n     * @property {FilterHandle} sender - The `FilterHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"filteredKeys\",\n    get: function get() {\n      return this._filterSet ? this._filterSet.value : null;\n    }\n  }]);\n\n  return FilterHandle;\n}();\n\n},{\"./events\":1,\"./filterset\":3,\"./group\":4,\"./util\":11}],3:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _util = require(\"./util\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction naturalComparator(a, b) {\n  if (a === b) {\n    return 0;\n  } else if (a < b) {\n    return -1;\n  } else if (a > b) {\n    return 1;\n  }\n}\n\n/**\n * @private\n */\n\nvar FilterSet = function () {\n  function FilterSet() {\n    _classCallCheck(this, FilterSet);\n\n    this.reset();\n  }\n\n  _createClass(FilterSet, [{\n    key: \"reset\",\n    value: function reset() {\n      // Key: handle ID, Value: array of selected keys, or null\n      this._handles = {};\n      // Key: key string, Value: count of handles that include it\n      this._keys = {};\n      this._value = null;\n      this._activeHandles = 0;\n    }\n  }, {\n    key: \"update\",\n    value: function update(handleId, keys) {\n      if (keys !== null) {\n        keys = keys.slice(0); // clone before sorting\n        keys.sort(naturalComparator);\n      }\n\n      var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys),\n          added = _diffSortedLists.added,\n          removed = _diffSortedLists.removed;\n\n      this._handles[handleId] = keys;\n\n      for (var i = 0; i < added.length; i++) {\n        this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n      }\n      for (var _i = 0; _i < removed.length; _i++) {\n        this._keys[removed[_i]]--;\n      }\n\n      this._updateValue(keys);\n    }\n\n    /**\n     * @param {string[]} keys Sorted array of strings that indicate\n     * a superset of possible keys.\n     * @private\n     */\n\n  }, {\n    key: \"_updateValue\",\n    value: function _updateValue() {\n      var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys;\n\n      var handleCount = Object.keys(this._handles).length;\n      if (handleCount === 0) {\n        this._value = null;\n      } else {\n        this._value = [];\n        for (var i = 0; i < keys.length; i++) {\n          var count = this._keys[keys[i]];\n          if (count === handleCount) {\n            this._value.push(keys[i]);\n          }\n        }\n      }\n    }\n  }, {\n    key: \"clear\",\n    value: function clear(handleId) {\n      if (typeof this._handles[handleId] === \"undefined\") {\n        return;\n      }\n\n      var keys = this._handles[handleId];\n      if (!keys) {\n        keys = [];\n      }\n\n      for (var i = 0; i < keys.length; i++) {\n        this._keys[keys[i]]--;\n      }\n      delete this._handles[handleId];\n\n      this._updateValue();\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"_allKeys\",\n    get: function get() {\n      var allKeys = Object.keys(this._keys);\n      allKeys.sort(naturalComparator);\n      return allKeys;\n    }\n  }]);\n\n  return FilterSet;\n}();\n\nexports.default = FilterSet;\n\n},{\"./util\":11}],4:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.default = group;\n\nvar _var2 = require(\"./var\");\n\nvar _var3 = _interopRequireDefault(_var2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nvar groups = global.__crosstalk_groups;\n\nfunction group(groupName) {\n  if (groupName && typeof groupName === \"string\") {\n    if (!groups.hasOwnProperty(groupName)) {\n      groups[groupName] = new Group(groupName);\n    }\n    return groups[groupName];\n  } else if ((typeof groupName === \"undefined\" ? \"undefined\" : _typeof(groupName)) === \"object\" && groupName._vars && groupName.var) {\n    // Appears to already be a group object\n    return groupName;\n  } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === \"string\") {\n    return group(groupName[0]);\n  } else {\n    throw new Error(\"Invalid groupName argument\");\n  }\n}\n\nvar Group = function () {\n  function Group(name) {\n    _classCallCheck(this, Group);\n\n    this.name = name;\n    this._vars = {};\n  }\n\n  _createClass(Group, [{\n    key: \"var\",\n    value: function _var(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name);\n      return this._vars[name];\n    }\n  }, {\n    key: \"has\",\n    value: function has(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      return this._vars.hasOwnProperty(name);\n    }\n  }]);\n\n  return Group;\n}();\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./var\":12}],5:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _selection = require(\"./selection\");\n\nvar _filter = require(\"./filter\");\n\nrequire(\"./input\");\n\nrequire(\"./input_selectize\");\n\nrequire(\"./input_checkboxgroup\");\n\nrequire(\"./input_slider\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar defaultGroup = (0, _group2.default)(\"default\");\n\nfunction var_(name) {\n  return defaultGroup.var(name);\n}\n\nfunction has(name) {\n  return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n  global.Shiny.addCustomMessageHandler(\"update-client-value\", function (message) {\n    if (typeof message.group === \"string\") {\n      (0, _group2.default)(message.group).var(message.name).set(message.value);\n    } else {\n      var_(message.name).set(message.value);\n    }\n  });\n}\n\nvar crosstalk = {\n  group: _group2.default,\n  var: var_,\n  has: has,\n  SelectionHandle: _selection.SelectionHandle,\n  FilterHandle: _filter.FilterHandle\n};\n\n/**\n * @namespace crosstalk\n */\nexports.default = crosstalk;\n\nglobal.crosstalk = crosstalk;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./group\":4,\"./input\":6,\"./input_checkboxgroup\":7,\"./input_selectize\":8,\"./input_slider\":9,\"./selection\":10}],6:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.register = register;\nvar $ = global.jQuery;\n\nvar bindings = {};\n\nfunction register(reg) {\n  bindings[reg.className] = reg;\n  if (global.document && global.document.readyState !== \"complete\") {\n    $(function () {\n      bind();\n    });\n  } else if (global.document) {\n    setTimeout(bind, 100);\n  }\n}\n\nfunction bind() {\n  Object.keys(bindings).forEach(function (className) {\n    var binding = bindings[className];\n    $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function (i, el) {\n      bindInstance(binding, el);\n    });\n  });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n  return val.replace(/([!\"#$%&'()*+,.\\/:;<=>?@\\[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n  var $el = $(el);\n  Object.keys(bindings).forEach(function (className) {\n    if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n      var binding = bindings[className];\n      bindInstance(binding, el);\n    }\n  });\n}\n\nfunction bindInstance(binding, el) {\n  var jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n  var data = JSON.parse(jsonEl[0].innerText);\n\n  var instance = binding.factory(el, data);\n  $(el).data(\"crosstalk-instance\", instance);\n  $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n  (function () {\n    var inputBinding = new global.Shiny.InputBinding();\n    var $ = global.jQuery;\n    $.extend(inputBinding, {\n      find: function find(scope) {\n        return $(scope).find(\".crosstalk-input\");\n      },\n      initialize: function initialize(el) {\n        if (!$(el).hasClass(\"crosstalk-input-bound\")) {\n          bindEl(el);\n        }\n      },\n      getId: function getId(el) {\n        return el.id;\n      },\n      getValue: function getValue(el) {},\n      setValue: function setValue(el, value) {},\n      receiveMessage: function receiveMessage(el, data) {},\n      subscribe: function subscribe(el, callback) {\n        $(el).data(\"crosstalk-instance\").resume();\n      },\n      unsubscribe: function unsubscribe(el) {\n        $(el).data(\"crosstalk-instance\").suspend();\n      }\n    });\n    global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n  })();\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{}],7:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-checkboxgroup\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    var $el = $(el);\n    $el.on(\"change\", \"input[type='checkbox']\", function () {\n      var checked = $el.find(\"input[type='checkbox']:checked\");\n      if (checked.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          checked.each(function () {\n            data.map[this.value].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],8:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-select\",\n\n  factory: function factory(el, data) {\n    /*\n     * items: {value: [...], label: [...]}\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n\n    var first = [{ value: \"\", label: \"(All)\" }];\n    var items = util.dataframeToD3(data.items);\n    var opts = {\n      options: first.concat(items),\n      valueField: \"value\",\n      labelField: \"label\",\n      searchField: \"label\"\n    };\n\n    var select = $(el).find(\"select\")[0];\n\n    var selectize = $(select).selectize(opts)[0].selectize;\n\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    selectize.on(\"change\", function () {\n      if (selectize.items.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          selectize.items.forEach(function (group) {\n            data.map[group].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6,\"./util\":11}],9:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\nvar strftime = global.strftime;\n\ninput.register({\n  className: \"crosstalk-input-slider\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var opts = {};\n    var $el = $(el).find(\"input\");\n    var dataType = $el.data(\"data-type\");\n    var timeFormat = $el.data(\"time-format\");\n    var timeFormatter = void 0;\n\n    // Set up formatting functions\n    if (dataType === \"date\") {\n      timeFormatter = strftime.utc();\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"datetime\") {\n      var timezone = $el.data(\"timezone\");\n      if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime;\n\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    }\n\n    $el.ionRangeSlider(opts);\n\n    function getValue() {\n      var result = $el.data(\"ionRangeSlider\").result;\n\n      // Function for converting numeric value from slider to appropriate type.\n      var convert = void 0;\n      var dataType = $el.data(\"data-type\");\n      if (dataType === \"date\") {\n        convert = function convert(val) {\n          return formatDateUTC(new Date(+val));\n        };\n      } else if (dataType === \"datetime\") {\n        convert = function convert(val) {\n          // Convert ms to s\n          return +val / 1000;\n        };\n      } else {\n        convert = function convert(val) {\n          return +val;\n        };\n      }\n\n      if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n        return [convert(result.from), convert(result.to)];\n      } else {\n        return convert(result.from);\n      }\n    }\n\n    var lastKnownKeys = null;\n\n    $el.on(\"change.crosstalkSliderInput\", function (event) {\n      if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n        var _getValue = getValue(),\n            _getValue2 = _slicedToArray(_getValue, 2),\n            from = _getValue2[0],\n            to = _getValue2[1];\n\n        var keys = [];\n        for (var i = 0; i < data.values.length; i++) {\n          var val = data.values[i];\n          if (val >= from && val <= to) {\n            keys.push(data.keys[i]);\n          }\n        }\n        keys.sort();\n        ctHandle.set(keys);\n        lastKnownKeys = keys;\n      }\n    });\n\n    // let $el = $(el);\n    // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n    //   let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n    //   if (checked.length === 0) {\n    //     ctHandle.clear();\n    //   } else {\n    //     let keys = {};\n    //     checked.each(function() {\n    //       data.map[this.value].forEach(function(key) {\n    //         keys[key] = true;\n    //       });\n    //     });\n    //     let keyArray = Object.keys(keys);\n    //     keyArray.sort();\n    //     ctHandle.set(keyArray);\n    //   }\n    // });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n  var str = n.toString();\n  while (str.length < digits) {\n    str = \"0\" + str;\n  }return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n  if (date instanceof Date) {\n    return date.getUTCFullYear() + \"-\" + padZeros(date.getUTCMonth() + 1, 2) + \"-\" + padZeros(date.getUTCDate(), 2);\n  } else {\n    return null;\n  }\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],10:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.SelectionHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar SelectionHandle = exports.SelectionHandle = function () {\n\n  /**\n   * @classdesc\n   * Use this class to read and write (and listen for changes to) the selection\n   * for a Crosstalk group. This is intended to be used for linked brushing.\n   *\n   * If two (or more) `SelectionHandle` instances in the same webpage share the\n   * same group name, they will share the same state. Setting the selection using\n   * one `SelectionHandle` instance will result in the `value` property instantly\n   * changing across the others, and `\"change\"` event listeners on all instances\n   * (including the one that initiated the sending) will fire.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the [SelectionHandle#setGroup](#setGroup) method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function SelectionHandle() {\n    var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n    var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n\n    _classCallCheck(this, SelectionHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._var = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this SelectionHandle. The group\n   * being switched away from (if any) will not have its selection value\n   * modified as a result of calling `setGroup`, even if this handle was the\n   * most recent handle to set the selection of the group.\n   *\n   * The group being switched to (if any) will also not have its selection value\n   * modified as a result of calling `setGroup`. If you want to set the\n   * selection value of the new group, call `set` explicitly.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(SelectionHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._var) {\n        this._var.off(\"change\", this._varOnChangeSub);\n        this._var = null;\n        this._varOnChangeSub = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        this._var = (0, _group2.default)(group).var(\"selection\");\n        var sub = this._var.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Retrieves the current selection for the group represented by this\n     * `SelectionHandle`.\n     *\n     * - If no selection is active, then this value will be falsy.\n     * - If a selection is active, but no data points are selected, then this\n     *   value will be an empty array.\n     * - If a selection is active, and data points are selected, then the keys\n     *   of the selected data points will be present in the array.\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n\n\n    /**\n     * Combines the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n    value: function _mergeExtraInfo(extraInfo) {\n      // Important incidental effect: shallow clone is returned\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n     *   {@link SelectionHandle#value}).\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(selectedKeys, extraInfo) {\n      if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any that were passed\n     *   into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Subscribes to events on this `SelectionHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {SelectionHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n     *   this subscription.\n     */\n\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancels event subscriptions created by {@link SelectionHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|SelectionHandle~listener} listener - Either the callback\n     *   function previously passed into {@link SelectionHandle#on}, or the\n     *   string that was returned from {@link SelectionHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n\n    /**\n     * Shuts down the `SelectionHandle` object.\n     *\n     * Removes all event listeners that were added through this handle.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.setGroup(null);\n    }\n\n    /**\n     * @callback SelectionHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the selection, or `undefined` if no selection is active),\n     *   `oldValue` (the previous value of the selection), and `sender` (the\n     *   `SelectionHandle` instance that made the change).\n     */\n\n    /**\n     * @event SelectionHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the selection, or `undefined`\n     *   if no selection is active.\n     * @property {object} oldValue - The previous value of the selection.\n     * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._var ? this._var.get() : null;\n    }\n  }]);\n\n  return SelectionHandle;\n}();\n\n},{\"./events\":1,\"./group\":4,\"./util\":11}],11:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.extend = extend;\nexports.checkSorted = checkSorted;\nexports.diffSortedLists = diffSortedLists;\nexports.dataframeToD3 = dataframeToD3;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction extend(target) {\n  for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n    sources[_key - 1] = arguments[_key];\n  }\n\n  for (var i = 0; i < sources.length; i++) {\n    var src = sources[i];\n    if (typeof src === \"undefined\" || src === null) continue;\n\n    for (var key in src) {\n      if (src.hasOwnProperty(key)) {\n        target[key] = src[key];\n      }\n    }\n  }\n  return target;\n}\n\nfunction checkSorted(list) {\n  for (var i = 1; i < list.length; i++) {\n    if (list[i] <= list[i - 1]) {\n      throw new Error(\"List is not sorted or contains duplicate\");\n    }\n  }\n}\n\nfunction diffSortedLists(a, b) {\n  var i_a = 0;\n  var i_b = 0;\n\n  if (!a) a = [];\n  if (!b) b = [];\n\n  var a_only = [];\n  var b_only = [];\n\n  checkSorted(a);\n  checkSorted(b);\n\n  while (i_a < a.length && i_b < b.length) {\n    if (a[i_a] === b[i_b]) {\n      i_a++;\n      i_b++;\n    } else if (a[i_a] < b[i_b]) {\n      a_only.push(a[i_a++]);\n    } else {\n      b_only.push(b[i_b++]);\n    }\n  }\n\n  if (i_a < a.length) a_only = a_only.concat(a.slice(i_a));\n  if (i_b < b.length) b_only = b_only.concat(b.slice(i_b));\n  return {\n    removed: a_only,\n    added: b_only\n  };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nfunction dataframeToD3(df) {\n  var names = [];\n  var length = void 0;\n  for (var name in df) {\n    if (df.hasOwnProperty(name)) names.push(name);\n    if (_typeof(df[name]) !== \"object\" || typeof df[name].length === \"undefined\") {\n      throw new Error(\"All fields must be arrays\");\n    } else if (typeof length !== \"undefined\" && length !== df[name].length) {\n      throw new Error(\"All fields must be arrays of the same length\");\n    }\n    length = df[name].length;\n  }\n  var results = [];\n  var item = void 0;\n  for (var row = 0; row < length; row++) {\n    item = {};\n    for (var col = 0; col < names.length; col++) {\n      item[names[col]] = df[names[col]][row];\n    }\n    results.push(item);\n  }\n  return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\n\nvar SubscriptionTracker = exports.SubscriptionTracker = function () {\n  function SubscriptionTracker(emitter) {\n    _classCallCheck(this, SubscriptionTracker);\n\n    this._emitter = emitter;\n    this._subs = {};\n  }\n\n  _createClass(SubscriptionTracker, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var sub = this._emitter.on(eventType, listener);\n      this._subs[sub] = eventType;\n      return sub;\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var sub = this._emitter.off(eventType, listener);\n      if (sub) {\n        delete this._subs[sub];\n      }\n      return sub;\n    }\n  }, {\n    key: \"removeAllListeners\",\n    value: function removeAllListeners() {\n      var _this = this;\n\n      var current_subs = this._subs;\n      this._subs = {};\n      Object.keys(current_subs).forEach(function (sub) {\n        _this._emitter.off(current_subs[sub], sub);\n      });\n    }\n  }]);\n\n  return SubscriptionTracker;\n}();\n\n},{}],12:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Var = function () {\n  function Var(group, name, /*optional*/value) {\n    _classCallCheck(this, Var);\n\n    this._group = group;\n    this._name = name;\n    this._value = value;\n    this._events = new _events2.default();\n  }\n\n  _createClass(Var, [{\n    key: \"get\",\n    value: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"set\",\n    value: function set(value, /*optional*/event) {\n      if (this._value === value) {\n        // Do nothing; the value hasn't changed\n        return;\n      }\n      var oldValue = this._value;\n      this._value = value;\n      // Alert JavaScript listeners that the value has changed\n      var evt = {};\n      if (event && (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\") {\n        for (var k in event) {\n          if (event.hasOwnProperty(k)) evt[k] = event[k];\n        }\n      }\n      evt.oldValue = oldValue;\n      evt.value = value;\n      this._events.trigger(\"change\", evt, this);\n\n      // TODO: Make this extensible, to let arbitrary back-ends know that\n      // something has changed\n      if (global.Shiny && global.Shiny.onInputChange) {\n        global.Shiny.onInputChange(\".clientValue-\" + (this._group.name !== null ? this._group.name + \"-\" : \"\") + this._name, typeof value === \"undefined\" ? null : value);\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._events.on(eventType, listener);\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._events.off(eventType, listener);\n    }\n  }]);\n\n  return Var;\n}();\n\nexports.default = Var;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./events\":1}]},{},[5])\n//# sourceMappingURL=crosstalk.js.map\n"
  },
  {
    "path": "docs/images/03_mean/lib/crosstalk-1.2.0/js/crosstalk.js",
    "content": "(function(){function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s}return e})()({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Events = function () {\n  function Events() {\n    _classCallCheck(this, Events);\n\n    this._types = {};\n    this._seq = 0;\n  }\n\n  _createClass(Events, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var subs = this._types[eventType];\n      if (!subs) {\n        subs = this._types[eventType] = {};\n      }\n      var sub = \"sub\" + this._seq++;\n      subs[sub] = listener;\n      return sub;\n    }\n\n    // Returns false if no match, or string for sub name if matched\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var subs = this._types[eventType];\n      if (typeof listener === \"function\") {\n        for (var key in subs) {\n          if (subs.hasOwnProperty(key)) {\n            if (subs[key] === listener) {\n              delete subs[key];\n              return key;\n            }\n          }\n        }\n        return false;\n      } else if (typeof listener === \"string\") {\n        if (subs && subs[listener]) {\n          delete subs[listener];\n          return listener;\n        }\n        return false;\n      } else {\n        throw new Error(\"Unexpected type for listener\");\n      }\n    }\n  }, {\n    key: \"trigger\",\n    value: function trigger(eventType, arg, thisObj) {\n      var subs = this._types[eventType];\n      for (var key in subs) {\n        if (subs.hasOwnProperty(key)) {\n          subs[key].call(thisObj, arg);\n        }\n      }\n    }\n  }]);\n\n  return Events;\n}();\n\nexports.default = Events;\n\n},{}],2:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.FilterHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _filterset = require(\"./filterset\");\n\nvar _filterset2 = _interopRequireDefault(_filterset);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction getFilterSet(group) {\n  var fsVar = group.var(\"filterset\");\n  var result = fsVar.get();\n  if (!result) {\n    result = new _filterset2.default();\n    fsVar.set(result);\n  }\n  return result;\n}\n\nvar id = 1;\nfunction nextId() {\n  return id++;\n}\n\n/**\n * Use this class to contribute to, and listen for changes to, the filter set\n * for the given group of widgets. Filter input controls should create one\n * `FilterHandle` and only call {@link FilterHandle#set}. Output widgets that\n * wish to displayed filtered data should create one `FilterHandle` and use\n * the {@link FilterHandle#filteredKeys} property and listen for change\n * events.\n *\n * If two (or more) `FilterHandle` instances in the same webpage share the\n * same group name, they will contribute to a single \"filter set\". Each\n * `FilterHandle` starts out with a `null` value, which means they take\n * nothing away from the set of data that should be shown. To make a\n * `FilterHandle` actually remove data from the filter set, set its value to\n * an array of keys which should be displayed. Crosstalk will aggregate the\n * various key arrays by finding their intersection; only keys that are\n * present in all non-null filter handles are considered part of the filter\n * set.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n *   null or undefined (or any other falsy value). This can be changed later\n *   via the {@link FilterHandle#setGroup} method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n *   the event object whenever an event is emitted.\n */\n\nvar FilterHandle = exports.FilterHandle = function () {\n  function FilterHandle(group, extraInfo) {\n    _classCallCheck(this, FilterHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The filterSet that we're tracking, if any. Can change over time.\n    this._filterSet = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._filterVar = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this._id = \"filter\" + nextId();\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this FilterHandle. If `set()` was\n   * previously called on this handle, switching groups will clear those keys\n   * from the old group's filter set. These keys will not be applied to the new\n   * group's filter set either. In other words, `setGroup()` effectively calls\n   * `clear()` before switching groups.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(FilterHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._filterVar) {\n        this._filterVar.off(\"change\", this._varOnChangeSub);\n        this.clear();\n        this._varOnChangeSub = null;\n        this._filterVar = null;\n        this._filterSet = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        group = (0, _group2.default)(group);\n        this._filterSet = getFilterSet(group);\n        this._filterVar = (0, _group2.default)(group).var(\"filter\");\n        var sub = this._filterVar.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Combine the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n    value: function _mergeExtraInfo(extraInfo) {\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Close the handle. This clears this handle's contribution to the filter set,\n     * and unsubscribes all event listeners.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.clear();\n      this.setGroup(null);\n    }\n\n    /**\n     * Clear this handle's contribution to the filter set.\n     *\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     * \n     * @fires FilterHandle#change\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.clear(this._id);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * Set this handle's contribution to the filter set. This array should consist\n     * of the keys of the rows that _should_ be displayed; any keys that are not\n     * present in the array will be considered _filtered out_. Note that multiple\n     * `FilterHandle` instances in the group may each contribute an array of keys,\n     * and only those keys that appear in _all_ of the arrays make it through the\n     * filter.\n     *\n     * @param {string[]} keys - Empty array, or array of keys. To clear the\n     *   filter, don't pass an empty array; instead, use the\n     *   {@link FilterHandle#clear} method.\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     * \n     * @fires FilterHandle#change\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(keys, extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.update(this._id, keys);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * @return {string[]|null} - Either: 1) an array of keys that made it through\n     *   all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n     *   is being applied (all data should be displayed).\n     */\n\n  }, {\n    key: \"on\",\n\n\n    /**\n     * Subscribe to events on this `FilterHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {FilterHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n     *   this subscription.\n     */\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancel event subscriptions created by {@link FilterHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|FilterHandle~listener} listener - Either the callback\n     *   function previously passed into {@link FilterHandle#on}, or the\n     *   string that was returned from {@link FilterHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n  }, {\n    key: \"_onChange\",\n    value: function _onChange(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * @callback FilterHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the filter set, or `null` if no filter set is active),\n     *   `oldValue` (the previous value of the filter set), and `sender` (the\n     *   `FilterHandle` instance that made the change).\n     */\n\n  }, {\n    key: \"filteredKeys\",\n    get: function get() {\n      return this._filterSet ? this._filterSet.value : null;\n    }\n  }]);\n\n  return FilterHandle;\n}();\n\n/**\n * @event FilterHandle#change\n * @type {object}\n * @property {object} value - The new value of the filter set, or `null`\n *   if no filter set is active.\n * @property {object} oldValue - The previous value of the filter set.\n * @property {FilterHandle} sender - The `FilterHandle` instance that\n *   changed the value.\n */\n\n},{\"./events\":1,\"./filterset\":3,\"./group\":4,\"./util\":11}],3:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _util = require(\"./util\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction naturalComparator(a, b) {\n  if (a === b) {\n    return 0;\n  } else if (a < b) {\n    return -1;\n  } else if (a > b) {\n    return 1;\n  }\n}\n\n/**\n * @private\n */\n\nvar FilterSet = function () {\n  function FilterSet() {\n    _classCallCheck(this, FilterSet);\n\n    this.reset();\n  }\n\n  _createClass(FilterSet, [{\n    key: \"reset\",\n    value: function reset() {\n      // Key: handle ID, Value: array of selected keys, or null\n      this._handles = {};\n      // Key: key string, Value: count of handles that include it\n      this._keys = {};\n      this._value = null;\n      this._activeHandles = 0;\n    }\n  }, {\n    key: \"update\",\n    value: function update(handleId, keys) {\n      if (keys !== null) {\n        keys = keys.slice(0); // clone before sorting\n        keys.sort(naturalComparator);\n      }\n\n      var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys),\n          added = _diffSortedLists.added,\n          removed = _diffSortedLists.removed;\n\n      this._handles[handleId] = keys;\n\n      for (var i = 0; i < added.length; i++) {\n        this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n      }\n      for (var _i = 0; _i < removed.length; _i++) {\n        this._keys[removed[_i]]--;\n      }\n\n      this._updateValue(keys);\n    }\n\n    /**\n     * @param {string[]} keys Sorted array of strings that indicate\n     * a superset of possible keys.\n     * @private\n     */\n\n  }, {\n    key: \"_updateValue\",\n    value: function _updateValue() {\n      var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys;\n\n      var handleCount = Object.keys(this._handles).length;\n      if (handleCount === 0) {\n        this._value = null;\n      } else {\n        this._value = [];\n        for (var i = 0; i < keys.length; i++) {\n          var count = this._keys[keys[i]];\n          if (count === handleCount) {\n            this._value.push(keys[i]);\n          }\n        }\n      }\n    }\n  }, {\n    key: \"clear\",\n    value: function clear(handleId) {\n      if (typeof this._handles[handleId] === \"undefined\") {\n        return;\n      }\n\n      var keys = this._handles[handleId];\n      if (!keys) {\n        keys = [];\n      }\n\n      for (var i = 0; i < keys.length; i++) {\n        this._keys[keys[i]]--;\n      }\n      delete this._handles[handleId];\n\n      this._updateValue();\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"_allKeys\",\n    get: function get() {\n      var allKeys = Object.keys(this._keys);\n      allKeys.sort(naturalComparator);\n      return allKeys;\n    }\n  }]);\n\n  return FilterSet;\n}();\n\nexports.default = FilterSet;\n\n},{\"./util\":11}],4:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.default = group;\n\nvar _var2 = require(\"./var\");\n\nvar _var3 = _interopRequireDefault(_var2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nvar groups = global.__crosstalk_groups;\n\nfunction group(groupName) {\n  if (groupName && typeof groupName === \"string\") {\n    if (!groups.hasOwnProperty(groupName)) {\n      groups[groupName] = new Group(groupName);\n    }\n    return groups[groupName];\n  } else if ((typeof groupName === \"undefined\" ? \"undefined\" : _typeof(groupName)) === \"object\" && groupName._vars && groupName.var) {\n    // Appears to already be a group object\n    return groupName;\n  } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === \"string\") {\n    return group(groupName[0]);\n  } else {\n    throw new Error(\"Invalid groupName argument\");\n  }\n}\n\nvar Group = function () {\n  function Group(name) {\n    _classCallCheck(this, Group);\n\n    this.name = name;\n    this._vars = {};\n  }\n\n  _createClass(Group, [{\n    key: \"var\",\n    value: function _var(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name);\n      return this._vars[name];\n    }\n  }, {\n    key: \"has\",\n    value: function has(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      return this._vars.hasOwnProperty(name);\n    }\n  }]);\n\n  return Group;\n}();\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./var\":12}],5:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _selection = require(\"./selection\");\n\nvar _filter = require(\"./filter\");\n\nvar _input = require(\"./input\");\n\nrequire(\"./input_selectize\");\n\nrequire(\"./input_checkboxgroup\");\n\nrequire(\"./input_slider\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar defaultGroup = (0, _group2.default)(\"default\");\n\nfunction var_(name) {\n  return defaultGroup.var(name);\n}\n\nfunction has(name) {\n  return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n  global.Shiny.addCustomMessageHandler(\"update-client-value\", function (message) {\n    if (typeof message.group === \"string\") {\n      (0, _group2.default)(message.group).var(message.name).set(message.value);\n    } else {\n      var_(message.name).set(message.value);\n    }\n  });\n}\n\nvar crosstalk = {\n  group: _group2.default,\n  var: var_,\n  has: has,\n  SelectionHandle: _selection.SelectionHandle,\n  FilterHandle: _filter.FilterHandle,\n  bind: _input.bind\n};\n\n/**\n * @namespace crosstalk\n */\nexports.default = crosstalk;\n\nglobal.crosstalk = crosstalk;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./group\":4,\"./input\":6,\"./input_checkboxgroup\":7,\"./input_selectize\":8,\"./input_slider\":9,\"./selection\":10}],6:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.register = register;\nexports.bind = bind;\nvar $ = global.jQuery;\n\nvar bindings = {};\n\nfunction register(reg) {\n  bindings[reg.className] = reg;\n  if (global.document && global.document.readyState !== \"complete\") {\n    $(function () {\n      bind();\n    });\n  } else if (global.document) {\n    setTimeout(bind, 100);\n  }\n}\n\nfunction bind() {\n  Object.keys(bindings).forEach(function (className) {\n    var binding = bindings[className];\n    $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function (i, el) {\n      bindInstance(binding, el);\n    });\n  });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n  return val.replace(/([!\"#$%&'()*+,./:;<=>?@[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n  var $el = $(el);\n  Object.keys(bindings).forEach(function (className) {\n    if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n      var binding = bindings[className];\n      bindInstance(binding, el);\n    }\n  });\n}\n\nfunction bindInstance(binding, el) {\n  var jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n  var data = JSON.parse(jsonEl[0].innerText);\n\n  var instance = binding.factory(el, data);\n  $(el).data(\"crosstalk-instance\", instance);\n  $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n  var inputBinding = new global.Shiny.InputBinding();\n  var _$ = global.jQuery;\n  _$.extend(inputBinding, {\n    find: function find(scope) {\n      return _$(scope).find(\".crosstalk-input\");\n    },\n    initialize: function initialize(el) {\n      if (!_$(el).hasClass(\"crosstalk-input-bound\")) {\n        bindEl(el);\n      }\n    },\n    getId: function getId(el) {\n      return el.id;\n    },\n    getValue: function getValue(el) {},\n    setValue: function setValue(el, value) {},\n    receiveMessage: function receiveMessage(el, data) {},\n    subscribe: function subscribe(el, callback) {\n      _$(el).data(\"crosstalk-instance\").resume();\n    },\n    unsubscribe: function unsubscribe(el) {\n      _$(el).data(\"crosstalk-instance\").suspend();\n    }\n  });\n  global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{}],7:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-checkboxgroup\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    var $el = $(el);\n    $el.on(\"change\", \"input[type='checkbox']\", function () {\n      var checked = $el.find(\"input[type='checkbox']:checked\");\n      if (checked.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        var keys = {};\n        checked.each(function () {\n          data.map[this.value].forEach(function (key) {\n            keys[key] = true;\n          });\n        });\n        var keyArray = Object.keys(keys);\n        keyArray.sort();\n        lastKnownKeys = keyArray;\n        ctHandle.set(keyArray);\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],8:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-select\",\n\n  factory: function factory(el, data) {\n    /*\n     * items: {value: [...], label: [...]}\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n\n    var first = [{ value: \"\", label: \"(All)\" }];\n    var items = util.dataframeToD3(data.items);\n    var opts = {\n      options: first.concat(items),\n      valueField: \"value\",\n      labelField: \"label\",\n      searchField: \"label\"\n    };\n\n    var select = $(el).find(\"select\")[0];\n\n    var selectize = $(select).selectize(opts)[0].selectize;\n\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    selectize.on(\"change\", function () {\n      if (selectize.items.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        var keys = {};\n        selectize.items.forEach(function (group) {\n          data.map[group].forEach(function (key) {\n            keys[key] = true;\n          });\n        });\n        var keyArray = Object.keys(keys);\n        keyArray.sort();\n        lastKnownKeys = keyArray;\n        ctHandle.set(keyArray);\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6,\"./util\":11}],9:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\nvar strftime = global.strftime;\n\ninput.register({\n  className: \"crosstalk-input-slider\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var opts = {};\n    var $el = $(el).find(\"input\");\n    var dataType = $el.data(\"data-type\");\n    var timeFormat = $el.data(\"time-format\");\n    var round = $el.data(\"round\");\n    var timeFormatter = void 0;\n\n    // Set up formatting functions\n    if (dataType === \"date\") {\n      timeFormatter = strftime.utc();\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"datetime\") {\n      var timezone = $el.data(\"timezone\");\n      if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime;\n\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"number\") {\n      if (typeof round !== \"undefined\") opts.prettify = function (num) {\n        var factor = Math.pow(10, round);\n        return Math.round(num * factor) / factor;\n      };\n    }\n\n    $el.ionRangeSlider(opts);\n\n    function getValue() {\n      var result = $el.data(\"ionRangeSlider\").result;\n\n      // Function for converting numeric value from slider to appropriate type.\n      var convert = void 0;\n      var dataType = $el.data(\"data-type\");\n      if (dataType === \"date\") {\n        convert = function convert(val) {\n          return formatDateUTC(new Date(+val));\n        };\n      } else if (dataType === \"datetime\") {\n        convert = function convert(val) {\n          // Convert ms to s\n          return +val / 1000;\n        };\n      } else {\n        convert = function convert(val) {\n          return +val;\n        };\n      }\n\n      if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n        return [convert(result.from), convert(result.to)];\n      } else {\n        return convert(result.from);\n      }\n    }\n\n    var lastKnownKeys = null;\n\n    $el.on(\"change.crosstalkSliderInput\", function (event) {\n      if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n        var _getValue = getValue(),\n            _getValue2 = _slicedToArray(_getValue, 2),\n            from = _getValue2[0],\n            to = _getValue2[1];\n\n        var keys = [];\n        for (var i = 0; i < data.values.length; i++) {\n          var val = data.values[i];\n          if (val >= from && val <= to) {\n            keys.push(data.keys[i]);\n          }\n        }\n        keys.sort();\n        ctHandle.set(keys);\n        lastKnownKeys = keys;\n      }\n    });\n\n    // let $el = $(el);\n    // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n    //   let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n    //   if (checked.length === 0) {\n    //     ctHandle.clear();\n    //   } else {\n    //     let keys = {};\n    //     checked.each(function() {\n    //       data.map[this.value].forEach(function(key) {\n    //         keys[key] = true;\n    //       });\n    //     });\n    //     let keyArray = Object.keys(keys);\n    //     keyArray.sort();\n    //     ctHandle.set(keyArray);\n    //   }\n    // });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n  var str = n.toString();\n  while (str.length < digits) {\n    str = \"0\" + str;\n  }return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n  if (date instanceof Date) {\n    return date.getUTCFullYear() + \"-\" + padZeros(date.getUTCMonth() + 1, 2) + \"-\" + padZeros(date.getUTCDate(), 2);\n  } else {\n    return null;\n  }\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],10:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.SelectionHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n/**\n * Use this class to read and write (and listen for changes to) the selection\n * for a Crosstalk group. This is intended to be used for linked brushing.\n *\n * If two (or more) `SelectionHandle` instances in the same webpage share the\n * same group name, they will share the same state. Setting the selection using\n * one `SelectionHandle` instance will result in the `value` property instantly\n * changing across the others, and `\"change\"` event listeners on all instances\n * (including the one that initiated the sending) will fire.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n *   null or undefined (or any other falsy value). This can be changed later\n *   via the [SelectionHandle#setGroup](#setGroup) method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n *   the event object whenever an event is emitted.\n */\nvar SelectionHandle = exports.SelectionHandle = function () {\n  function SelectionHandle() {\n    var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n    var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n\n    _classCallCheck(this, SelectionHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._var = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this SelectionHandle. The group\n   * being switched away from (if any) will not have its selection value\n   * modified as a result of calling `setGroup`, even if this handle was the\n   * most recent handle to set the selection of the group.\n   *\n   * The group being switched to (if any) will also not have its selection value\n   * modified as a result of calling `setGroup`. If you want to set the\n   * selection value of the new group, call `set` explicitly.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(SelectionHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._var) {\n        this._var.off(\"change\", this._varOnChangeSub);\n        this._var = null;\n        this._varOnChangeSub = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        this._var = (0, _group2.default)(group).var(\"selection\");\n        var sub = this._var.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Retrieves the current selection for the group represented by this\n     * `SelectionHandle`.\n     *\n     * - If no selection is active, then this value will be falsy.\n     * - If a selection is active, but no data points are selected, then this\n     *   value will be an empty array.\n     * - If a selection is active, and data points are selected, then the keys\n     *   of the selected data points will be present in the array.\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n\n\n    /**\n     * Combines the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n    value: function _mergeExtraInfo(extraInfo) {\n      // Important incidental effect: shallow clone is returned\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n     *   {@link SelectionHandle#value}).\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(selectedKeys, extraInfo) {\n      if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any that were passed\n     *   into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Subscribes to events on this `SelectionHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {SelectionHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n     *   this subscription.\n     */\n\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancels event subscriptions created by {@link SelectionHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|SelectionHandle~listener} listener - Either the callback\n     *   function previously passed into {@link SelectionHandle#on}, or the\n     *   string that was returned from {@link SelectionHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n\n    /**\n     * Shuts down the `SelectionHandle` object.\n     *\n     * Removes all event listeners that were added through this handle.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.setGroup(null);\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._var ? this._var.get() : null;\n    }\n  }]);\n\n  return SelectionHandle;\n}();\n\n/**\n * @callback SelectionHandle~listener\n * @param {Object} event - An object containing details of the event. For\n *   `\"change\"` events, this includes the properties `value` (the new\n *   value of the selection, or `undefined` if no selection is active),\n *   `oldValue` (the previous value of the selection), and `sender` (the\n *   `SelectionHandle` instance that made the change).\n */\n\n/**\n * @event SelectionHandle#change\n * @type {object}\n * @property {object} value - The new value of the selection, or `undefined`\n *   if no selection is active.\n * @property {object} oldValue - The previous value of the selection.\n * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n *   changed the value.\n */\n\n},{\"./events\":1,\"./group\":4,\"./util\":11}],11:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.extend = extend;\nexports.checkSorted = checkSorted;\nexports.diffSortedLists = diffSortedLists;\nexports.dataframeToD3 = dataframeToD3;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction extend(target) {\n  for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n    sources[_key - 1] = arguments[_key];\n  }\n\n  for (var i = 0; i < sources.length; i++) {\n    var src = sources[i];\n    if (typeof src === \"undefined\" || src === null) continue;\n\n    for (var key in src) {\n      if (src.hasOwnProperty(key)) {\n        target[key] = src[key];\n      }\n    }\n  }\n  return target;\n}\n\nfunction checkSorted(list) {\n  for (var i = 1; i < list.length; i++) {\n    if (list[i] <= list[i - 1]) {\n      throw new Error(\"List is not sorted or contains duplicate\");\n    }\n  }\n}\n\nfunction diffSortedLists(a, b) {\n  var i_a = 0;\n  var i_b = 0;\n\n  if (!a) a = [];\n  if (!b) b = [];\n\n  var a_only = [];\n  var b_only = [];\n\n  checkSorted(a);\n  checkSorted(b);\n\n  while (i_a < a.length && i_b < b.length) {\n    if (a[i_a] === b[i_b]) {\n      i_a++;\n      i_b++;\n    } else if (a[i_a] < b[i_b]) {\n      a_only.push(a[i_a++]);\n    } else {\n      b_only.push(b[i_b++]);\n    }\n  }\n\n  if (i_a < a.length) a_only = a_only.concat(a.slice(i_a));\n  if (i_b < b.length) b_only = b_only.concat(b.slice(i_b));\n  return {\n    removed: a_only,\n    added: b_only\n  };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nfunction dataframeToD3(df) {\n  var names = [];\n  var length = void 0;\n  for (var name in df) {\n    if (df.hasOwnProperty(name)) names.push(name);\n    if (_typeof(df[name]) !== \"object\" || typeof df[name].length === \"undefined\") {\n      throw new Error(\"All fields must be arrays\");\n    } else if (typeof length !== \"undefined\" && length !== df[name].length) {\n      throw new Error(\"All fields must be arrays of the same length\");\n    }\n    length = df[name].length;\n  }\n  var results = [];\n  var item = void 0;\n  for (var row = 0; row < length; row++) {\n    item = {};\n    for (var col = 0; col < names.length; col++) {\n      item[names[col]] = df[names[col]][row];\n    }\n    results.push(item);\n  }\n  return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\n\nvar SubscriptionTracker = exports.SubscriptionTracker = function () {\n  function SubscriptionTracker(emitter) {\n    _classCallCheck(this, SubscriptionTracker);\n\n    this._emitter = emitter;\n    this._subs = {};\n  }\n\n  _createClass(SubscriptionTracker, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var sub = this._emitter.on(eventType, listener);\n      this._subs[sub] = eventType;\n      return sub;\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var sub = this._emitter.off(eventType, listener);\n      if (sub) {\n        delete this._subs[sub];\n      }\n      return sub;\n    }\n  }, {\n    key: \"removeAllListeners\",\n    value: function removeAllListeners() {\n      var _this = this;\n\n      var current_subs = this._subs;\n      this._subs = {};\n      Object.keys(current_subs).forEach(function (sub) {\n        _this._emitter.off(current_subs[sub], sub);\n      });\n    }\n  }]);\n\n  return SubscriptionTracker;\n}();\n\n},{}],12:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Var = function () {\n  function Var(group, name, /*optional*/value) {\n    _classCallCheck(this, Var);\n\n    this._group = group;\n    this._name = name;\n    this._value = value;\n    this._events = new _events2.default();\n  }\n\n  _createClass(Var, [{\n    key: \"get\",\n    value: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"set\",\n    value: function set(value, /*optional*/event) {\n      if (this._value === value) {\n        // Do nothing; the value hasn't changed\n        return;\n      }\n      var oldValue = this._value;\n      this._value = value;\n      // Alert JavaScript listeners that the value has changed\n      var evt = {};\n      if (event && (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\") {\n        for (var k in event) {\n          if (event.hasOwnProperty(k)) evt[k] = event[k];\n        }\n      }\n      evt.oldValue = oldValue;\n      evt.value = value;\n      this._events.trigger(\"change\", evt, this);\n\n      // TODO: Make this extensible, to let arbitrary back-ends know that\n      // something has changed\n      if (global.Shiny && global.Shiny.onInputChange) {\n        global.Shiny.onInputChange(\".clientValue-\" + (this._group.name !== null ? this._group.name + \"-\" : \"\") + this._name, typeof value === \"undefined\" ? null : value);\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._events.on(eventType, listener);\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._events.off(eventType, listener);\n    }\n  }]);\n\n  return Var;\n}();\n\nexports.default = Var;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./events\":1}]},{},[5])\n//# sourceMappingURL=crosstalk.js.map\n"
  },
  {
    "path": "docs/images/03_mean/lib/crosstalk-1.2.0/scss/crosstalk.scss",
    "content": "/* Adjust margins outwards, so column contents line up with the edges of the\n   parent of container-fluid. */\n.container-fluid.crosstalk-bscols {\n  margin-left: -30px;\n  margin-right: -30px;\n  white-space: normal;\n}\n\n/* But don't adjust the margins outwards if we're directly under the body,\n   i.e. we were the top-level of something at the console. */\nbody > .container-fluid.crosstalk-bscols {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n  display: inline-block;\n  padding-right: 12px;\n  vertical-align: top;\n}\n\n@media only screen and (max-width:480px) {\n  .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n    display: block;\n    padding-right: inherit;\n  }\n}\n\n/* Relevant BS3 styles to make filter_checkbox() look reasonable without Bootstrap */\n.crosstalk-input {\n  margin-bottom: 15px; /* a la .form-group */\n  .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  input[type=\"checkbox\"] {\n    margin: 4px 0 0;\n    margin-top: 1px;\n    line-height: normal;\n  }\n  .checkbox {\n    position: relative;\n    display: block;\n    margin-top: 10px;\n    margin-bottom: 10px;\n  }\n  .checkbox > label{\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: 400;\n    cursor: pointer;\n  }\n  .checkbox input[type=\"checkbox\"],\n  .checkbox-inline input[type=\"checkbox\"] {\n    position: absolute;\n    margin-top: 2px;\n    margin-left: -20px;\n  }\n  .checkbox + .checkbox {\n    margin-top: -5px;\n  }\n  .checkbox-inline {\n    position: relative;\n    display: inline-block;\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: 400;\n    vertical-align: middle;\n    cursor: pointer;\n  }\n  .checkbox-inline + .checkbox-inline {\n    margin-top: 0;\n    margin-left: 10px;\n  }\n}\n"
  },
  {
    "path": "docs/images/03_mean/lib/htmlwidgets-1.3/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = eval(\"(\" + task + \")\");\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n  // Wait until after the document has loaded to render the widgets.\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      window.HTMLWidgets.staticRender();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        window.HTMLWidgets.staticRender();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = eval(\"(\" + o[part] + \")\");\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "docs/images/03_mean/lib/htmlwidgets-1.5.1/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = tryEval(task);\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  // Attempt eval() both with and without enclosing in parentheses.\n  // Note that enclosing coerces a function declaration into\n  // an expression that eval() can parse\n  // (otherwise, a SyntaxError is thrown)\n  function tryEval(code) {\n    var result = null;\n    try {\n      result = eval(code);\n    } catch(error) {\n      if (!error instanceof SyntaxError) {\n        throw error;\n      }\n      try {\n        result = eval(\"(\" + code + \")\");\n      } catch(e) {\n        if (e instanceof SyntaxError) {\n          throw error;\n        } else {\n          throw e;\n        }\n      }\n    }\n    return result;\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n\n  function has_jQuery3() {\n    if (!window.jQuery) {\n      return false;\n    }\n    var $version = window.jQuery.fn.jquery;\n    var $major_version = parseInt($version.split(\".\")[0]);\n    return $major_version >= 3;\n  }\n\n  /*\n  / Shiny 1.4 bumped jQuery from 1.x to 3.x which means jQuery's\n  / on-ready handler (i.e., $(fn)) is now asyncronous (i.e., it now\n  / really means $(setTimeout(fn)).\n  / https://jquery.com/upgrade-guide/3.0/#breaking-change-document-ready-handlers-are-now-asynchronous\n  /\n  / Since Shiny uses $() to schedule initShiny, shiny>=1.4 calls initShiny\n  / one tick later than it did before, which means staticRender() is\n  / called renderValue() earlier than (advanced) widget authors might be expecting.\n  / https://github.com/rstudio/shiny/issues/2630\n  /\n  / For a concrete example, leaflet has some methods (e.g., updateBounds)\n  / which reference Shiny methods registered in initShiny (e.g., setInputValue).\n  / Since leaflet is privy to this life-cycle, it knows to use setTimeout() to\n  / delay execution of those methods (until Shiny methods are ready)\n  / https://github.com/rstudio/leaflet/blob/18ec981/javascript/src/index.js#L266-L268\n  /\n  / Ideally widget authors wouldn't need to use this setTimeout() hack that\n  / leaflet uses to call Shiny methods on a staticRender(). In the long run,\n  / the logic initShiny should be broken up so that method registration happens\n  / right away, but binding happens later.\n  */\n  function maybeStaticRenderLater() {\n    if (shinyMode && has_jQuery3()) {\n      window.jQuery(window.HTMLWidgets.staticRender);\n    } else {\n      window.HTMLWidgets.staticRender();\n    }\n  }\n\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      maybeStaticRenderLater();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        maybeStaticRenderLater();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = tryEval(o[part]);\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "docs/images/03_mean/lib/htmlwidgets-1.5.4/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = tryEval(task);\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  // Attempt eval() both with and without enclosing in parentheses.\n  // Note that enclosing coerces a function declaration into\n  // an expression that eval() can parse\n  // (otherwise, a SyntaxError is thrown)\n  function tryEval(code) {\n    var result = null;\n    try {\n      result = eval(\"(\" + code + \")\");\n    } catch(error) {\n      if (!(error instanceof SyntaxError)) {\n        throw error;\n      }\n      try {\n        result = eval(code);\n      } catch(e) {\n        if (e instanceof SyntaxError) {\n          throw error;\n        } else {\n          throw e;\n        }\n      }\n    }\n    return result;\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n\n  function has_jQuery3() {\n    if (!window.jQuery) {\n      return false;\n    }\n    var $version = window.jQuery.fn.jquery;\n    var $major_version = parseInt($version.split(\".\")[0]);\n    return $major_version >= 3;\n  }\n\n  /*\n  / Shiny 1.4 bumped jQuery from 1.x to 3.x which means jQuery's\n  / on-ready handler (i.e., $(fn)) is now asyncronous (i.e., it now\n  / really means $(setTimeout(fn)).\n  / https://jquery.com/upgrade-guide/3.0/#breaking-change-document-ready-handlers-are-now-asynchronous\n  /\n  / Since Shiny uses $() to schedule initShiny, shiny>=1.4 calls initShiny\n  / one tick later than it did before, which means staticRender() is\n  / called renderValue() earlier than (advanced) widget authors might be expecting.\n  / https://github.com/rstudio/shiny/issues/2630\n  /\n  / For a concrete example, leaflet has some methods (e.g., updateBounds)\n  / which reference Shiny methods registered in initShiny (e.g., setInputValue).\n  / Since leaflet is privy to this life-cycle, it knows to use setTimeout() to\n  / delay execution of those methods (until Shiny methods are ready)\n  / https://github.com/rstudio/leaflet/blob/18ec981/javascript/src/index.js#L266-L268\n  /\n  / Ideally widget authors wouldn't need to use this setTimeout() hack that\n  / leaflet uses to call Shiny methods on a staticRender(). In the long run,\n  / the logic initShiny should be broken up so that method registration happens\n  / right away, but binding happens later.\n  */\n  function maybeStaticRenderLater() {\n    if (shinyMode && has_jQuery3()) {\n      window.jQuery(window.HTMLWidgets.staticRender);\n    } else {\n      window.HTMLWidgets.staticRender();\n    }\n  }\n\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      maybeStaticRenderLater();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        maybeStaticRenderLater();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = tryEval(o[part]);\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "docs/images/03_mean/lib/jquery-1.11.3/jquery-AUTHORS.txt",
    "content": "Authors ordered by first contribution.\n\nJohn Resig <jeresig@gmail.com>\nGilles van den Hoven <gilles0181@gmail.com>\nMichael Geary <mike@geary.com>\nStefan Petre <stefan.petre@gmail.com>\nYehuda Katz <wycats@gmail.com>\nCorey Jewett <cj@syntheticplayground.com>\nKlaus Hartl <klaus.hartl@googlemail.com>\nFranck Marcia <franck.marcia@gmail.com>\nJörn Zaefferer <joern.zaefferer@gmail.com>\nPaul Bakaus <paul.bakaus@googlemail.com>\nBrandon Aaron <brandon.aaron@gmail.com>\nMike Alsup <malsup@gmail.com>\nDave Methvin <dave.methvin@gmail.com>\nEd Engelhardt <edengelhardt@gmail.com>\nSean Catchpole <littlecooldude@gmail.com>\nPaul Mclanahan <pmclanahan@gmail.com>\nDavid Serduke <davidserduke@gmail.com>\nRichard D. Worth <rdworth@gmail.com>\nScott González <scott.gonzalez@gmail.com>\nAriel Flesler <aflesler@gmail.com>\nJon Evans <jon@springyweb.com>\nTJ Holowaychuk <tj@vision-media.ca>\nMichael Bensoussan <mickey@seesmic.com>\nRobert Katić <robert.katic@gmail.com>\nLouis-Rémi Babé <lrbabe@gmail.com>\nEarle Castledine <mrspeaker@gmail.com>\nDamian Janowski <damian.janowski@gmail.com>\nRich Dougherty <rich@rd.gen.nz>\nKim Dalsgaard <kim@kimdalsgaard.com>\nAndrea Giammarchi <andrea.giammarchi@gmail.com>\nMark Gibson <jollytoad@gmail.com>\nKarl Swedberg <kswedberg@gmail.com>\nJustin Meyer <justinbmeyer@gmail.com>\nBen Alman <cowboy@rj3.net>\nJames Padolsey <cla@padolsey.net>\nDavid Petersen <public@petersendidit.com>\nBatiste Bieler <batiste@gmail.com>\nAlexander Farkas <info@corrupt-system.de>\nRick Waldron <waldron.rick@gmail.com>\nFilipe Fortes <filipe@fortes.com>\nNeeraj Singh <neerajdotname@gmail.com>\nPaul Irish <paul.irish@gmail.com>\nIraê Carvalho <irae@irae.pro.br>\nMatt Curry <matt@pseudocoder.com>\nMichael Monteleone <michael@michaelmonteleone.net>\nNoah Sloan <noah.sloan@gmail.com>\nTom Viner <github@viner.tv>\nDouglas Neiner <doug@pixelgraphics.us>\nAdam J. Sontag <ajpiano@ajpiano.com>\nDave Reed <dareed@microsoft.com>\nRalph Whitbeck <ralph.whitbeck@gmail.com>\nCarl Fürstenberg <azatoth@gmail.com>\nJacob Wright <jacwright@gmail.com>\nJ. Ryan Stinnett <jryans@gmail.com>\nunknown <Igen005@.upcorp.ad.uprr.com>\ntemp01 <temp01irc@gmail.com>\nHeungsub Lee <h@subl.ee>\nColin Snover <colin@alpha.zetafleet.com>\nRyan W Tenney <ryan@10e.us>\nPinhook <contact@pinhooklabs.com>\nRon Otten <r.j.g.otten@gmail.com>\nJephte Clain <Jephte.Clain@univ-reunion.fr>\nAnton Matzneller <obhvsbypqghgc@gmail.com>\nAlex Sexton <AlexSexton@gmail.com>\nDan Heberden <danheberden@gmail.com>\nHenri Wiechers <hwiechers@gmail.com>\nRussell Holbrook <russell.holbrook@patch.com>\nJulian Aubourg <aubourg.julian@gmail.com>\nGianni Alessandro Chiappetta <gianni@runlevel6.org>\nScott Jehl <scott@scottjehl.com>\nJames Burke <jrburke@gmail.com>\nJonas Pfenniger <jonas@pfenniger.name>\nXavi Ramirez <xavi.rmz@gmail.com>\nJared Grippe <jared@deadlyicon.com>\nSylvester Keil <sylvester@keil.or.at>\nBrandon Sterne <bsterne@mozilla.com>\nMathias Bynens <mathias@qiwi.be>\nTimmy Willison <timmywillisn@gmail.com>\nCorey Frang <gnarf@gnarf.net>\nDigitalxero <digitalxero>\nAnton Kovalyov <anton@kovalyov.net>\nDavid Murdoch <musicisair@yahoo.com>\nJosh Varner <josh.varner@gmail.com>\nCharles McNulty <cmcnulty@kznf.com>\nJordan Boesch <jboesch26@gmail.com>\nJess Thrysoee <jess@thrysoee.dk>\nMichael Murray <m@murz.net>\nLee Carpenter <elcarpie@gmail.com>\nAlexis Abril <me@alexisabril.com>\nRob Morgan <robbym@gmail.com>\nJohn Firebaugh <john_firebaugh@bigfix.com>\nSam Bisbee <sam@sbisbee.com>\nGilmore Davidson <gilmoreorless@gmail.com>\nBrian Brennan <me@brianlovesthings.com>\nXavier Montillet <xavierm02.net@gmail.com>\nDaniel Pihlstrom <sciolist.se@gmail.com>\nSahab Yazdani <sahab.yazdani+github@gmail.com>\navaly <github-com@agachi.name>\nScott Hughes <hi@scott-hughes.me>\nMike Sherov <mike.sherov@gmail.com>\nGreg Hazel <ghazel@gmail.com>\nSchalk Neethling <schalk@ossreleasefeed.com>\nDenis Knauf <Denis.Knauf@gmail.com>\nTimo Tijhof <krinklemail@gmail.com>\nSteen Nielsen <swinedk@gmail.com>\nAnton Ryzhov <anton@ryzhov.me>\nShi Chuan <shichuanr@gmail.com>\nBerker Peksag <berker.peksag@gmail.com>\nToby Brain <tobyb@freshview.com>\nMatt Mueller <mattmuelle@gmail.com>\nJustin <drakefjustin@gmail.com>\nDaniel Herman <daniel.c.herman@gmail.com>\nOleg Gaidarenko <markelog@gmail.com>\nRichard Gibson <richard.gibson@gmail.com>\nRafaël Blais Masson <rafbmasson@gmail.com>\ncmc3cn <59194618@qq.com>\nJoe Presbrey <presbrey@gmail.com>\nSindre Sorhus <sindresorhus@gmail.com>\nArne de Bree <arne@bukkie.nl>\nVladislav Zarakovsky <vlad.zar@gmail.com>\nAndrew E Monat <amonat@gmail.com>\nOskari <admin@o-programs.com>\nJoao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>\ntsinha <tsinha@Anthonys-MacBook-Pro.local>\nMatt Farmer <matt@frmr.me>\nTrey Hunner <treyhunner@gmail.com>\nJason Moon <jmoon@socialcast.com>\nJeffery To <jeffery.to@gmail.com>\nKris Borchers <kris.borchers@gmail.com>\nVladimir Zhuravlev <private.face@gmail.com>\nJacob Thornton <jacobthornton@gmail.com>\nChad Killingsworth <chadkillingsworth@missouristate.edu>\nNowres Rafid <nowres.rafed@gmail.com>\nDavid Benjamin <davidben@mit.edu>\nUri Gilad <antishok@gmail.com>\nChris Faulkner <thefaulkner@gmail.com>\nElijah Manor <elijah.manor@gmail.com>\nDaniel Chatfield <chatfielddaniel@gmail.com>\nNikita Govorov <nikita.govorov@gmail.com>\nWesley Walser <wwalser@atlassian.com>\nMike Pennisi <mike@mikepennisi.com>\nMarkus Staab <markus.staab@redaxo.de>\nDave Riddle <david@joyvuu.com>\nCallum Macrae <callum@lynxphp.com>\nBenjamin Truyman <bentruyman@gmail.com>\nJames Huston <james@jameshuston.net>\nErick Ruiz de Chávez <erickrdch@gmail.com>\nDavid Bonner <dbonner@cogolabs.com>\nAkintayo Akinwunmi <aakinwunmi@judge.com>\nMORGAN <morgan@morgangraphics.com>\nIsmail Khair <ismail.khair@gmail.com>\nCarl Danley <carldanley@gmail.com>\nMike Petrovich <michael.c.petrovich@gmail.com>\nGreg Lavallee <greglavallee@wapolabs.com>\nDaniel Gálvez <dgalvez@editablething.com>\nSai Lung Wong <sai.wong@huffingtonpost.com>\nTom H Fuertes <TomFuertes@gmail.com>\nRoland Eckl <eckl.roland@googlemail.com>\nJay Merrifield <fracmak@gmail.com>\nAllen J Schmidt Jr <cobrasoft@gmail.com>\nJonathan Sampson <jjdsampson@gmail.com>\nMarcel Greter <marcel.greter@ocbnet.ch>\nMatthias Jäggli <matthias.jaeggli@gmail.com>\nDavid Fox <dfoxinator@gmail.com>\nYiming He <yiminghe@gmail.com>\nDevin Cooper <cooper.semantics@gmail.com>\nPaul Ramos <paul.b.ramos@gmail.com>\nRod Vagg <rod@vagg.org>\nBennett Sorbo <bsorbo@gmail.com>\nSebastian Burkhard <sebi.burkhard@gmail.com>\nnanto <nanto@moon.email.ne.jp>\nDanil Somsikov <danilasomsikov@gmail.com>\nRyunosuke SATO <tricknotes.rs@gmail.com>\nJean Boussier <jean.boussier@gmail.com>\nAdam Coulombe <me@adam.co>\nAndrew Plummer <plummer.andrew@gmail.com>\nMark Raddatz <mraddatz@gmail.com>\nDmitry Gusev <dmitry.gusev@gmail.com>\nMichał Gołębiowski <m.goleb@gmail.com>\nNguyen Phuc Lam <ruado1987@gmail.com>\nTom H Fuertes <tomfuertes@gmail.com>\nBrandon Johnson <bjohn465+github@gmail.com>\nJason Bedard <jason+jquery@jbedard.ca>\nKyle Robinson Young <kyle@dontkry.com>\nRenato Oliveira dos Santos <ros3@cin.ufpe.br>\nChris Talkington <chris@talkingtontech.com>\nEddie Monge <eddie@eddiemonge.com>\nTerry Jones <terry@jon.es>\nJason Merino <jasonmerino@gmail.com>\nJeremy Dunck <jdunck@gmail.com>\nChris Price <price.c@gmail.com>\nAmey Sakhadeo <me@ameyms.com>\nAnthony Ryan <anthonyryan1@gmail.com>\nDominik D. Geyer <dominik.geyer@gmail.com>\nGeorge Kats <katsgeorgeek@gmail.com>\nLihan Li <frankieteardrop@gmail.com>\nRonny Springer <springer.ronny@gmail.com>\nMarian Sollmann <marian.sollmann@cargomedia.ch>\nCorey Frang <gnarf37@gmail.com>\nChris Antaki <ChrisAntaki@gmail.com>\nNoah Hamann <njhamann@gmail.com>\nDavid Hong <d.hong@me.com>\nJakob Stoeck <jakob@pokermania.de>\nChristopher Jones <christopherjonesqed@gmail.com>\nForbes Lindesay <forbes@lindesay.co.uk>\nJohn Paul <john@johnkpaul.com>\nS. Andrew Sheppard <andrew@wq.io>\nLeonardo Balter <leonardo.balter@gmail.com>\nRoman Reiß <me@silverwind.io>\nBenjy Cui <benjytrys@gmail.com>\nRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>\nJohn Hoven <hovenj@gmail.com>\nChristian Kosmowski <ksmwsk@gmail.com>\nLiang Peng <poppinlp@gmail.com>\nTJ VanToll <tj.vantoll@gmail.com>\n"
  },
  {
    "path": "docs/images/03_mean/lib/jquery-1.11.3/jquery.js",
    "content": "/*!\n * jQuery JavaScript Library v1.11.3\n * http://jquery.com/\n *\n * Includes Sizzle.js\n * http://sizzlejs.com/\n *\n * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2015-04-28T16:19Z\n */\n\n(function( global, factory ) {\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\t\t// For CommonJS and CommonJS-like environments where a proper window is present,\n\t\t// execute the factory and get jQuery\n\t\t// For environments that do not inherently posses a window with a document\n\t\t// (such as Node.js), expose a jQuery-making factory as module.exports\n\t\t// This accentuates the need for the creation of a real window\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n}(typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Can't do this because several apps including ASP.NET trace\n// the stack via arguments.caller.callee and Firefox dies if\n// you try to trace through \"use strict\" call chains. (#13335)\n// Support: Firefox 18+\n//\n\nvar deletedIds = [];\n\nvar slice = deletedIds.slice;\n\nvar concat = deletedIds.concat;\n\nvar push = deletedIds.push;\n\nvar indexOf = deletedIds.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar support = {};\n\n\n\nvar\n\tversion = \"1.11.3\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t},\n\n\t// Support: Android<4.1, IE<9\n\t// Make sure we trim BOM and NBSP\n\trtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g,\n\n\t// Matches dashed string for camelizing\n\trmsPrefix = /^-ms-/,\n\trdashAlpha = /-([\\da-z])/gi,\n\n\t// Used by jQuery.camelCase as callback to replace()\n\tfcamelCase = function( all, letter ) {\n\t\treturn letter.toUpperCase();\n\t};\n\njQuery.fn = jQuery.prototype = {\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// Start with an empty selector\n\tselector: \"\",\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\t\treturn num != null ?\n\n\t\t\t// Return just the one element from the set\n\t\t\t( num < 0 ? this[ num + this.length ] : this[ num ] ) :\n\n\t\t\t// Return all the elements in a clean array\n\t\t\tslice.call( this );\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\t\tret.context = this.context;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\t// (You can seed the arguments with an array of args, but this is\n\t// only used internally.)\n\teach: function( callback, args ) {\n\t\treturn jQuery.each( this, callback, args );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map(this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t}));\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor(null);\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: deletedIds.sort,\n\tsplice: deletedIds.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar src, copyIsArray, copy, name, options, clone,\n\t\ttarget = arguments[0] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !jQuery.isFunction(target) ) {\n\t\ttarget = {};\n\t}\n\n\t// extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\t\t// Only deal with non-null/undefined values\n\t\tif ( (options = arguments[ i ]) != null ) {\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tsrc = target[ name ];\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {\n\t\t\t\t\tif ( copyIsArray ) {\n\t\t\t\t\t\tcopyIsArray = false;\n\t\t\t\t\t\tclone = src && jQuery.isArray(src) ? src : [];\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src && jQuery.isPlainObject(src) ? src : {};\n\t\t\t\t\t}\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend({\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\t// See test/unit/core.js for details concerning isFunction.\n\t// Since version 1.3, DOM methods and functions like alert\n\t// aren't supported. They return false on IE (#2968).\n\tisFunction: function( obj ) {\n\t\treturn jQuery.type(obj) === \"function\";\n\t},\n\n\tisArray: Array.isArray || function( obj ) {\n\t\treturn jQuery.type(obj) === \"array\";\n\t},\n\n\tisWindow: function( obj ) {\n\t\t/* jshint eqeqeq: false */\n\t\treturn obj != null && obj == obj.window;\n\t},\n\n\tisNumeric: function( obj ) {\n\t\t// parseFloat NaNs numeric-cast false positives (null|true|false|\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t// adding 1 corrects loss of precision from parseFloat (#15100)\n\t\treturn !jQuery.isArray( obj ) && (obj - parseFloat( obj ) + 1) >= 0;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\tisPlainObject: function( obj ) {\n\t\tvar key;\n\n\t\t// Must be an Object.\n\t\t// Because of IE, we also have to check the presence of the constructor property.\n\t\t// Make sure that DOM nodes and window objects don't pass through, as well\n\t\tif ( !obj || jQuery.type(obj) !== \"object\" || obj.nodeType || jQuery.isWindow( obj ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\ttry {\n\t\t\t// Not own constructor property must be Object\n\t\t\tif ( obj.constructor &&\n\t\t\t\t!hasOwn.call(obj, \"constructor\") &&\n\t\t\t\t!hasOwn.call(obj.constructor.prototype, \"isPrototypeOf\") ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\t// IE8,9 Will throw exceptions on certain host objects #9897\n\t\t\treturn false;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Handle iteration over inherited properties before own properties.\n\t\tif ( support.ownLast ) {\n\t\t\tfor ( key in obj ) {\n\t\t\t\treturn hasOwn.call( obj, key );\n\t\t\t}\n\t\t}\n\n\t\t// Own properties are enumerated firstly, so to speed up,\n\t\t// if last one is own, then all properties are own.\n\t\tfor ( key in obj ) {}\n\n\t\treturn key === undefined || hasOwn.call( obj, key );\n\t},\n\n\ttype: function( obj ) {\n\t\tif ( obj == null ) {\n\t\t\treturn obj + \"\";\n\t\t}\n\t\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\t\tclass2type[ toString.call(obj) ] || \"object\" :\n\t\t\ttypeof obj;\n\t},\n\n\t// Evaluates a script in a global context\n\t// Workarounds based on findings by Jim Driscoll\n\t// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context\n\tglobalEval: function( data ) {\n\t\tif ( data && jQuery.trim( data ) ) {\n\t\t\t// We use execScript on Internet Explorer\n\t\t\t// We use an anonymous function so that context is window\n\t\t\t// rather than jQuery in Firefox\n\t\t\t( window.execScript || function( data ) {\n\t\t\t\twindow[ \"eval\" ].call( window, data );\n\t\t\t} )( data );\n\t\t}\n\t},\n\n\t// Convert dashed to camelCase; used by the css and data modules\n\t// Microsoft forgot to hump their vendor prefix (#9572)\n\tcamelCase: function( string ) {\n\t\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n\t},\n\n\tnodeName: function( elem, name ) {\n\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\t},\n\n\t// args is for internal usage only\n\teach: function( obj, callback, args ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = obj.length,\n\t\t\tisArray = isArraylike( obj );\n\n\t\tif ( args ) {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// A special, fast, case for the most common use of each\n\t\t} else {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// Support: Android<4.1, IE<9\n\ttrim: function( text ) {\n\t\treturn text == null ?\n\t\t\t\"\" :\n\t\t\t( text + \"\" ).replace( rtrim, \"\" );\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArraylike( Object(arr) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\tvar len;\n\n\t\tif ( arr ) {\n\t\t\tif ( indexOf ) {\n\t\t\t\treturn indexOf.call( arr, elem, i );\n\t\t\t}\n\n\t\t\tlen = arr.length;\n\t\t\ti = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t// Skip accessing in sparse arrays\n\t\t\t\tif ( i in arr && arr[ i ] === elem ) {\n\t\t\t\t\treturn i;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn -1;\n\t},\n\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\twhile ( j < len ) {\n\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Workaround casting of .length to NaN on otherwise arraylike objects (e.g., NodeLists)\n\t\tif ( len !== len ) {\n\t\t\twhile ( second[j] !== undefined ) {\n\t\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t\t}\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tisArray = isArraylike( elems ),\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArray ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn concat.apply( [], ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// Bind a function to a context, optionally partially applying any\n\t// arguments.\n\tproxy: function( fn, context ) {\n\t\tvar args, proxy, tmp;\n\n\t\tif ( typeof context === \"string\" ) {\n\t\t\ttmp = fn[ context ];\n\t\t\tcontext = fn;\n\t\t\tfn = tmp;\n\t\t}\n\n\t\t// Quick check to determine if target is callable, in the spec\n\t\t// this throws a TypeError, but we will just return undefined.\n\t\tif ( !jQuery.isFunction( fn ) ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\t// Simulated bind\n\t\targs = slice.call( arguments, 2 );\n\t\tproxy = function() {\n\t\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t\t};\n\n\t\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\t\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\t\treturn proxy;\n\t},\n\n\tnow: function() {\n\t\treturn +( new Date() );\n\t},\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n});\n\n// Populate the class2type map\njQuery.each(\"Boolean Number String Function Array Date RegExp Object Error\".split(\" \"), function(i, name) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n});\n\nfunction isArraylike( obj ) {\n\n\t// Support: iOS 8.2 (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = \"length\" in obj && obj.length,\n\t\ttype = jQuery.type( obj );\n\n\tif ( type === \"function\" || jQuery.isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\tif ( obj.nodeType === 1 && length ) {\n\t\treturn true;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.2.0-pre\n * http://sizzlejs.com/\n *\n * Copyright 2008, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2014-12-16\n */\n(function( window ) {\n\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// General-purpose constants\n\tMAX_NEGATIVE = 1 << 31,\n\n\t// Instance methods\n\thasOwn = ({}).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpush_native = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\t// Use a stripped-down indexOf as it's faster than native\n\t// http://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[i] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\t// http://www.w3.org/TR/css3-syntax/#characters\n\tcharacterEncoding = \"(?:\\\\\\\\.|[\\\\w-]|[^\\\\x00-\\\\xa0])+\",\n\n\t// Loosely modeled on CSS identifier characters\n\t// An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors\n\t// Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier\n\tidentifier = characterEncoding.replace( \"w\", \"w#\" ),\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + characterEncoding + \")(?:\" + whitespace +\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\t\t// \"Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" + whitespace +\n\t\t\"*\\\\]\",\n\n\tpseudos = \":(\" + characterEncoding + \")(?:\\\\((\" +\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" + whitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace + \"*\" ),\n\n\trattributeQuotes = new RegExp( \"=\" + whitespace + \"*([^\\\\]'\\\"]*?)\" + whitespace + \"*\\\\]\", \"g\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + characterEncoding + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + characterEncoding + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + characterEncoding.replace( \"w\", \"w*\" ) + \")\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" + whitespace +\n\t\t\t\"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" + whitespace +\n\t\t\t\"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace + \"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" +\n\t\t\twhitespace + \"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\trescape = /'|\\\\/g,\n\n\t// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\([\\\\da-f]{1,6}\" + whitespace + \"?|(\" + whitespace + \")|.)\", \"ig\" ),\n\tfunescape = function( _, escaped, escapedWhitespace ) {\n\t\tvar high = \"0x\" + escaped - 0x10000;\n\t\t// NaN means non-codepoint\n\t\t// Support: Firefox<24\n\t\t// Workaround erroneous numeric interpretation of +\"0x\"\n\t\treturn high !== high || escapedWhitespace ?\n\t\t\tescaped :\n\t\t\thigh < 0 ?\n\t\t\t\t// BMP codepoint\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\t// Supplemental Plane codepoint (surrogate pair)\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t};\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t(arr = slice.call( preferredDoc.childNodes )),\n\t\tpreferredDoc.childNodes\n\t);\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpush_native.apply( target, slice.call(els) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( (target[j++] = els[i++]) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar match, elem, m, nodeType,\n\t\t// QSA vars\n\t\ti, groups, old, nid, newContext, newSelector;\n\n\tif ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\n\tcontext = context || document;\n\tresults = results || [];\n\tnodeType = context.nodeType;\n\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\tif ( !seed && documentIsHTML ) {\n\n\t\t// Try to shortcut find operations when possible (e.g., not under DocumentFragment)\n\t\tif ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {\n\t\t\t// Speed-up: Sizzle(\"#ID\")\n\t\t\tif ( (m = match[1]) ) {\n\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\telem = context.getElementById( m );\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document (jQuery #6963)\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE, Opera, and Webkit return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t// Context is not a document\n\t\t\t\t\tif ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&\n\t\t\t\t\t\tcontains( context, elem ) && elem.id === m ) {\n\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Speed-up: Sizzle(\"TAG\")\n\t\t\t} else if ( match[2] ) {\n\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\treturn results;\n\n\t\t\t// Speed-up: Sizzle(\".CLASS\")\n\t\t\t} else if ( (m = match[3]) && support.getElementsByClassName ) {\n\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\treturn results;\n\t\t\t}\n\t\t}\n\n\t\t// QSA path\n\t\tif ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {\n\t\t\tnid = old = expando;\n\t\t\tnewContext = context;\n\t\t\tnewSelector = nodeType !== 1 && selector;\n\n\t\t\t// qSA works strangely on Element-rooted queries\n\t\t\t// We can work around this by specifying an extra ID on the root\n\t\t\t// and working up from there (Thanks to Andrew Dupont for the technique)\n\t\t\t// IE 8 doesn't work on object elements\n\t\t\tif ( nodeType === 1 && context.nodeName.toLowerCase() !== \"object\" ) {\n\t\t\t\tgroups = tokenize( selector );\n\n\t\t\t\tif ( (old = context.getAttribute(\"id\")) ) {\n\t\t\t\t\tnid = old.replace( rescape, \"\\\\$&\" );\n\t\t\t\t} else {\n\t\t\t\t\tcontext.setAttribute( \"id\", nid );\n\t\t\t\t}\n\t\t\t\tnid = \"[id='\" + nid + \"'] \";\n\n\t\t\t\ti = groups.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tgroups[i] = nid + toSelector( groups[i] );\n\t\t\t\t}\n\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) || context;\n\t\t\t\tnewSelector = groups.join(\",\");\n\t\t\t}\n\n\t\t\tif ( newSelector ) {\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch(qsaError) {\n\t\t\t\t} finally {\n\t\t\t\t\tif ( !old ) {\n\t\t\t\t\t\tcontext.removeAttribute(\"id\");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {Function(string, Object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn (cache[ key + \" \" ] = value);\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created div and expects a boolean result\n */\nfunction assert( fn ) {\n\tvar div = document.createElement(\"div\");\n\n\ttry {\n\t\treturn !!fn( div );\n\t} catch (e) {\n\t\treturn false;\n\t} finally {\n\t\t// Remove from its parent by default\n\t\tif ( div.parentNode ) {\n\t\t\tdiv.parentNode.removeChild( div );\n\t\t}\n\t\t// release memory in IE\n\t\tdiv = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split(\"|\"),\n\t\ti = attrs.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[i] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\t( ~b.sourceIndex || MAX_NEGATIVE ) -\n\t\t\t( ~a.sourceIndex || MAX_NEGATIVE );\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( (cur = cur.nextSibling) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn (name === \"input\" || name === \"button\") && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction(function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction(function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ (j = matchIndexes[i]) ] ) {\n\t\t\t\t\tseed[j] = !(matches[j] = seed[j]);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t});\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\t// documentElement is verified for cases where it doesn't yet exist\n\t// (such as loading iframes in IE - #4833)\n\tvar documentElement = elem && (elem.ownerDocument || elem).documentElement;\n\treturn documentElement ? documentElement.nodeName !== \"HTML\" : false;\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, parent,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// If no document and documentElement is available, return\n\tif ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Set our document\n\tdocument = doc;\n\tdocElem = doc.documentElement;\n\tparent = doc.defaultView;\n\n\t// Support: IE>8\n\t// If iframe document is assigned to \"document\" variable and if iframe has been reloaded,\n\t// IE will throw \"permission denied\" error when accessing \"document\" variable, see jQuery #13936\n\t// IE6-8 do not support the defaultView property so parent will be undefined\n\tif ( parent && parent !== parent.top ) {\n\t\t// IE11 does not have attachEvent, so all must suffer\n\t\tif ( parent.addEventListener ) {\n\t\t\tparent.addEventListener( \"unload\", unloadHandler, false );\n\t\t} else if ( parent.attachEvent ) {\n\t\t\tparent.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t/* Support tests\n\t---------------------------------------------------------------------- */\n\tdocumentIsHTML = !isXML( doc );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert(function( div ) {\n\t\tdiv.className = \"i\";\n\t\treturn !div.getAttribute(\"className\");\n\t});\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert(function( div ) {\n\t\tdiv.appendChild( doc.createComment(\"\") );\n\t\treturn !div.getElementsByTagName(\"*\").length;\n\t});\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( doc.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert(function( div ) {\n\t\tdocElem.appendChild( div ).id = expando;\n\t\treturn !doc.getElementsByName || !doc.getElementsByName( expando ).length;\n\t});\n\n\t// ID find and filter\n\tif ( support.getById ) {\n\t\tExpr.find[\"ID\"] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar m = context.getElementById( id );\n\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\treturn m && m.parentNode ? [ m ] : [];\n\t\t\t}\n\t\t};\n\t\tExpr.filter[\"ID\"] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute(\"id\") === attrId;\n\t\t\t};\n\t\t};\n\t} else {\n\t\t// Support: IE6/7\n\t\t// getElementById is not reliable as a find shortcut\n\t\tdelete Expr.find[\"ID\"];\n\n\t\tExpr.filter[\"ID\"] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" && elem.getAttributeNode(\"id\");\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[\"TAG\"] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( (elem = results[i++]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[\"CLASS\"] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See http://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert(function( div ) {\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// http://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( div ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\f]' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( div.querySelectorAll(\"[msallowcapture^='']\").length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !div.querySelectorAll(\"[selected]\").length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.2+, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.7+\n\t\t\tif ( !div.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push(\"~=\");\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":checked\").length ) {\n\t\t\t\trbuggyQSA.push(\":checked\");\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibing-combinator selector` fails\n\t\t\tif ( !div.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push(\".#.+[+~]\");\n\t\t\t}\n\t\t});\n\n\t\tassert(function( div ) {\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = doc.createElement(\"input\");\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tdiv.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( div.querySelectorAll(\"[name=d]\").length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":enabled\").length ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tdiv.querySelectorAll(\"*,:x\");\n\t\t\trbuggyQSA.push(\",.*:\");\n\t\t});\n\t}\n\n\tif ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector) )) ) {\n\n\t\tassert(function( div ) {\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( div, \"div\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( div, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t});\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join(\"|\") );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join(\"|\") );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully does not implement inclusive descendent\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t));\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( (b = b.parentNode) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\tcompare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\tif ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t\tif ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\t\t\treturn a === doc ? -1 :\n\t\t\t\tb === doc ? 1 :\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[i] === bp[i] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[i], bp[i] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\tap[i] === preferredDoc ? -1 :\n\t\t\tbp[i] === preferredDoc ? 1 :\n\t\t\t0;\n\t};\n\n\treturn doc;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\t// Make sure that attribute selectors are quoted\n\texpr = expr.replace( rattributeQuotes, \"='$1']\" );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t// fragment in IE 9\n\t\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch (e) {}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\t// Set document vars if needed\n\tif ( ( context.ownerDocument || context ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t(val = elem.getAttributeNode(name)) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( (elem = results[i++]) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( (node = elem[i++]) ) {\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[1] = match[1].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[3] = ( match[3] || match[4] || match[5] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[2] === \"~=\" ) {\n\t\t\t\tmatch[3] = \" \" + match[3] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[1] = match[1].toLowerCase();\n\n\t\t\tif ( match[1].slice( 0, 3 ) === \"nth\" ) {\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[3] ) {\n\t\t\t\t\tSizzle.error( match[0] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === \"even\" || match[3] === \"odd\" ) );\n\t\t\t\tmatch[5] = +( ( match[7] + match[8] ) || match[3] === \"odd\" );\n\n\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[3] ) {\n\t\t\t\tSizzle.error( match[0] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[6] && match[2];\n\n\t\t\tif ( matchExpr[\"CHILD\"].test( match[0] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[3] ) {\n\t\t\t\tmatch[2] = match[4] || match[5] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t(excess = tokenize( unquoted, true )) &&\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t(excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[0] = match[0].slice( 0, excess );\n\t\t\t\tmatch[2] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() { return true; } :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t(pattern = new RegExp( \"(^|\" + whitespace + \")\" + className + \"(\" + whitespace + \"|$)\" )) &&\n\t\t\t\tclassCache( className, function( elem ) {\n\t\t\t\t\treturn pattern.test( typeof elem.className === \"string\" && elem.className || typeof elem.getAttribute !== \"undefined\" && elem.getAttribute(\"class\") || \"\" );\n\t\t\t\t});\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tvar cache, outerCache, node, diff, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( (node = node[ dir ]) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\t\t\t\t\t\t\touterCache = parent[ expando ] || (parent[ expando ] = {});\n\t\t\t\t\t\t\tcache = outerCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[0] === dirruns && cache[1];\n\t\t\t\t\t\t\tdiff = cache[0] === dirruns && cache[2];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\touterCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t} else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {\n\t\t\t\t\t\t\tdiff = cache[1];\n\n\t\t\t\t\t\t// xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\tif ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {\n\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t(node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction(function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[i] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[i] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction(function( selector ) {\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction(function( seed, matches, context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = unmatched[i]) ) {\n\t\t\t\t\t\t\tseed[i] = !(matches[i] = elem);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}) :\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tinput[0] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[0] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t}),\n\n\t\t\"has\": markFunction(function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t}),\n\n\t\t\"contains\": markFunction(function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t}),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test(lang || \"\") ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( (elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute(\"xml:lang\") || elem.getAttribute(\"lang\")) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( (elem = elem.parentNode) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t}),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": function( elem ) {\n\t\t\treturn elem.disabled === false;\n\t\t},\n\n\t\t\"disabled\": function( elem ) {\n\t\t\treturn elem.disabled === true;\n\t\t},\n\n\t\t\"checked\": function( elem ) {\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn (nodeName === \"input\" && !!elem.checked) || (nodeName === \"option\" && !!elem.selected);\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[\"empty\"]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( (attr = elem.getAttribute(\"type\")) == null || attr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo(function() {\n\t\t\treturn [ 0 ];\n\t\t}),\n\n\t\t\"last\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t}),\n\n\t\t\"eq\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t}),\n\n\t\t\"even\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"odd\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"lt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"gt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t})\n\t}\n};\n\nExpr.pseudos[\"nth\"] = Expr.pseudos[\"eq\"];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || (match = rcomma.exec( soFar )) ) {\n\t\t\tif ( match ) {\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[0].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( (tokens = []) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( (match = rcombinators.exec( soFar )) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push({\n\t\t\t\tvalue: matched,\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[0].replace( rtrim, \" \" )\n\t\t\t});\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||\n\t\t\t\t(match = preFilters[ type ]( match ))) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push({\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t});\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[i].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tcheckNonElements = base && dir === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from dir caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || (elem[ expando ] = {});\n\t\t\t\t\t\tif ( (oldCache = outerCache[ dir ]) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn (newCache[ 2 ] = oldCache[ 2 ]);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\touterCache[ dir ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[i]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[0];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[i], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (elem = unmatched[i]) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction(function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts( selector || \"*\", context.nodeType ? [ context ] : context, [] ),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( (elem = temp[i]) ) {\n\t\t\t\t\tmatcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = matcherOut[i]) ) {\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( (matcherIn[i] = elem) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, (matcherOut = []), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( (elem = matcherOut[i]) &&\n\t\t\t\t\t\t(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {\n\n\t\t\t\t\t\tseed[temp] = !(results[temp] = elem);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t});\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[0].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[\" \"],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t(checkContext = context).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (matcher = Expr.relative[ tokens[i].type ]) ) {\n\t\t\tmatchers = [ addCombinator(elementMatcher( matchers ), matcher) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[j].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\t\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\t\ttokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" })\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( (tokens = tokens.slice( j )) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[\"TAG\"]( \"*\", outermost ),\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\t\t\t\toutermostContext = context !== document && context;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Keep `i` a string if there are no elements so `matchedCount` will be \"00\" below\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && (elem = elems[i]) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (matcher = elementMatchers[j++]) ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( (elem = !matcher && elem) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\tmatchedCount += i;\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (matcher = setMatchers[j++]) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !(unmatched[i] || setMatched[i]) ) {\n\t\t\t\t\t\t\t\tsetMatched[i] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[i] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( (selector = compiled.selector || selector) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is no seed and only one group\n\tif ( match.length === 1 ) {\n\n\t\t// Take a shortcut and set the context if the root selector is an ID\n\t\ttokens = match[0] = match[0].slice( 0 );\n\t\tif ( tokens.length > 2 && (token = tokens[0]).type === \"ID\" &&\n\t\t\t\tsupport.getById && context.nodeType === 9 && documentIsHTML &&\n\t\t\t\tExpr.relative[ tokens[1].type ] ) {\n\n\t\t\tcontext = ( Expr.find[\"ID\"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[\"needsContext\"].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[i];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ (type = token.type) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( (find = Expr.find[ type ]) ) {\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( (seed = find(\n\t\t\t\t\ttoken.matches[0].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context\n\t\t\t\t)) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\trsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split(\"\").sort( sortOrder ).join(\"\") === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert(function( div1 ) {\n\t// Should return 1, but returns 4 (following)\n\treturn div1.compareDocumentPosition( document.createElement(\"div\") ) & 1;\n});\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert(function( div ) {\n\tdiv.innerHTML = \"<a href='#'></a>\";\n\treturn div.firstChild.getAttribute(\"href\") === \"#\" ;\n}) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert(function( div ) {\n\tdiv.innerHTML = \"<input/>\";\n\tdiv.firstChild.setAttribute( \"value\", \"\" );\n\treturn div.firstChild.getAttribute( \"value\" ) === \"\";\n}) ) {\n\taddHandle( \"value\", function( elem, name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert(function( div ) {\n\treturn div.getAttribute(\"disabled\") == null;\n}) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t\t(val = elem.getAttributeNode( name )) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\tnull;\n\t\t}\n\t});\n}\n\nreturn Sizzle;\n\n})( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\njQuery.expr[\":\"] = jQuery.expr.pseudos;\njQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\n\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\nvar rsingleTag = (/^<(\\w+)\\s*\\/?>(?:<\\/\\1>|)$/);\n\n\n\nvar risSimple = /^.[^:#\\[\\.,]*$/;\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( jQuery.isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\t/* jshint -W018 */\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t});\n\n\t}\n\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t});\n\n\t}\n\n\tif ( typeof qualifier === \"string\" ) {\n\t\tif ( risSimple.test( qualifier ) ) {\n\t\t\treturn jQuery.filter( qualifier, elements, not );\n\t\t}\n\n\t\tqualifier = jQuery.filter( qualifier, elements );\n\t}\n\n\treturn jQuery.grep( elements, function( elem ) {\n\t\treturn ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not;\n\t});\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\treturn elems.length === 1 && elem.nodeType === 1 ?\n\t\tjQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :\n\t\tjQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\t\treturn elem.nodeType === 1;\n\t\t}));\n};\n\njQuery.fn.extend({\n\tfind: function( selector ) {\n\t\tvar i,\n\t\t\tret = [],\n\t\t\tself = this,\n\t\t\tlen = self.length;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter(function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}) );\n\t\t}\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\t// Needed because $( selector, context ) becomes $( context ).find( selector )\n\t\tret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );\n\t\tret.selector = this.selector ? this.selector + \" \" + selector : selector;\n\t\treturn ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], false) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], true) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n});\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// Use the correct document accordingly with window argument (sandbox)\n\tdocument = window.document,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]*))$/,\n\n\tinit = jQuery.fn.init = function( selector, context ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector.charAt(0) === \"<\" && selector.charAt( selector.length - 1 ) === \">\" && selector.length >= 3 ) {\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && (match[1] || !context) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[1] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[0] : context;\n\n\t\t\t\t\t// scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[1],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( jQuery.isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[2] );\n\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE and Opera return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id !== match[2] ) {\n\t\t\t\t\t\t\treturn rootjQuery.find( selector );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Otherwise, we inject the element directly into the jQuery object\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t\tthis[0] = elem;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.context = document;\n\t\t\t\t\tthis.selector = selector;\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || rootjQuery ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis.context = this[0] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( jQuery.isFunction( selector ) ) {\n\t\t\treturn typeof rootjQuery.ready !== \"undefined\" ?\n\t\t\t\trootjQuery.ready( selector ) :\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\tif ( selector.selector !== undefined ) {\n\t\t\tthis.selector = selector.selector;\n\t\t\tthis.context = selector.context;\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\t// methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.extend({\n\tdir: function( elem, dir, until ) {\n\t\tvar matched = [],\n\t\t\tcur = elem[ dir ];\n\n\t\twhile ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {\n\t\t\tif ( cur.nodeType === 1 ) {\n\t\t\t\tmatched.push( cur );\n\t\t\t}\n\t\t\tcur = cur[dir];\n\t\t}\n\t\treturn matched;\n\t},\n\n\tsibling: function( n, elem ) {\n\t\tvar r = [];\n\n\t\tfor ( ; n; n = n.nextSibling ) {\n\t\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\t\tr.push( n );\n\t\t\t}\n\t\t}\n\n\t\treturn r;\n\t}\n});\n\njQuery.fn.extend({\n\thas: function( target ) {\n\t\tvar i,\n\t\t\ttargets = jQuery( target, this ),\n\t\t\tlen = targets.length;\n\n\t\treturn this.filter(function() {\n\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[i] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\tpos = rneedsContext.test( selectors ) || typeof selectors !== \"string\" ?\n\t\t\t\tjQuery( selectors, context || this.context ) :\n\t\t\t\t0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tfor ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) {\n\t\t\t\t// Always skip document fragments\n\t\t\t\tif ( cur.nodeType < 11 && (pos ?\n\t\t\t\t\tpos.index(cur) > -1 :\n\n\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\tjQuery.find.matchesSelector(cur, selectors)) ) {\n\n\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within\n\t// the matched set of elements\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn jQuery.inArray( this[0], jQuery( elem ) );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn jQuery.inArray(\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[0] : elem, this );\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.unique(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter(selector)\n\t\t);\n\t}\n});\n\nfunction sibling( cur, dir ) {\n\tdo {\n\t\tcur = cur[ dir ];\n\t} while ( cur && cur.nodeType !== 1 );\n\n\treturn cur;\n}\n\njQuery.each({\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn jQuery.dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn jQuery.sibling( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\treturn jQuery.nodeName( elem, \"iframe\" ) ?\n\t\t\telem.contentDocument || elem.contentWindow.document :\n\t\t\tjQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar ret = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tret = jQuery.filter( selector, ret );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tret = jQuery.unique( ret );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tret = ret.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\nvar rnotwhite = (/\\S+/g);\n\n\n\n// String to Object options format cache\nvar optionsCache = {};\n\n// Convert String-formatted options into Object-formatted ones and store in cache\nfunction createOptions( options ) {\n\tvar object = optionsCache[ options ] = {};\n\tjQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t});\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\t( optionsCache[ options ] || createOptions( options ) ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\t\t// Last fire value (for non-forgettable lists)\n\t\tmemory,\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\t\t// End of the loop when firing\n\t\tfiringLength,\n\t\t// Index of currently firing callback (modified by remove if needed)\n\t\tfiringIndex,\n\t\t// First callback to fire (used internally by add and fireWith)\n\t\tfiringStart,\n\t\t// Actual callback list\n\t\tlist = [],\n\t\t// Stack of fire calls for repeatable lists\n\t\tstack = !options.once && [],\n\t\t// Fire callbacks\n\t\tfire = function( data ) {\n\t\t\tmemory = options.memory && data;\n\t\t\tfired = true;\n\t\t\tfiringIndex = firingStart || 0;\n\t\t\tfiringStart = 0;\n\t\t\tfiringLength = list.length;\n\t\t\tfiring = true;\n\t\t\tfor ( ; list && firingIndex < firingLength; firingIndex++ ) {\n\t\t\t\tif ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {\n\t\t\t\t\tmemory = false; // To prevent further calls using add\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tfiring = false;\n\t\t\tif ( list ) {\n\t\t\t\tif ( stack ) {\n\t\t\t\t\tif ( stack.length ) {\n\t\t\t\t\t\tfire( stack.shift() );\n\t\t\t\t\t}\n\t\t\t\t} else if ( memory ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t} else {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t// Actual Callbacks object\n\t\tself = {\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\t// First, we save the current length\n\t\t\t\t\tvar start = list.length;\n\t\t\t\t\t(function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tvar type = jQuery.type( arg );\n\t\t\t\t\t\t\tif ( type === \"function\" ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && type !== \"string\" ) {\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t})( arguments );\n\t\t\t\t\t// Do we need to add the callbacks to the\n\t\t\t\t\t// current firing batch?\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tfiringLength = list.length;\n\t\t\t\t\t// With memory, if we're not firing then\n\t\t\t\t\t// we should call right away\n\t\t\t\t\t} else if ( memory ) {\n\t\t\t\t\t\tfiringStart = start;\n\t\t\t\t\t\tfire( memory );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\t\tvar index;\n\t\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\t\tlist.splice( index, 1 );\n\t\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\t\t\tif ( index <= firingLength ) {\n\t\t\t\t\t\t\t\t\tfiringLength--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );\n\t\t\t},\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tlist = [];\n\t\t\t\tfiringLength = 0;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Have the list do nothing anymore\n\t\t\tdisable: function() {\n\t\t\t\tlist = stack = memory = undefined;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it disabled?\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\t\t\t// Lock the list in its current state\n\t\t\tlock: function() {\n\t\t\t\tstack = undefined;\n\t\t\t\tif ( !memory ) {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it locked?\n\t\t\tlocked: function() {\n\t\t\t\treturn !stack;\n\t\t\t},\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( list && ( !fired || stack ) ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tstack.push( args );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tfire( args );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\njQuery.extend({\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\t\t\t\t// action, add listener, listener list, final state\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks(\"once memory\"), \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks(\"once memory\"), \"rejected\" ],\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks(\"memory\") ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\tthen: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\t\t\t\t\treturn jQuery.Deferred(function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\t\t\t\t\tvar fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];\n\t\t\t\t\t\t\t// deferred[ done | fail | progress ] for forwarding actions to newDefer\n\t\t\t\t\t\t\tdeferred[ tuple[1] ](function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && jQuery.isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject )\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t});\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t}).promise();\n\t\t\t\t},\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Keep pipe for back-compat\n\t\tpromise.pipe = promise.then;\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 3 ];\n\n\t\t\t// promise[ done | fail | progress ] = list.add\n\t\t\tpromise[ tuple[1] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(function() {\n\t\t\t\t\t// state = [ resolved | rejected ]\n\t\t\t\t\tstate = stateString;\n\n\t\t\t\t// [ reject_list | resolve_list ].disable; progress_list.lock\n\t\t\t\t}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );\n\t\t\t}\n\n\t\t\t// deferred[ resolve | reject | notify ]\n\t\t\tdeferred[ tuple[0] ] = function() {\n\t\t\t\tdeferred[ tuple[0] + \"With\" ]( this === deferred ? promise : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\t\t\tdeferred[ tuple[0] + \"With\" ] = list.fireWith;\n\t\t});\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( subordinate /* , ..., subordinateN */ ) {\n\t\tvar i = 0,\n\t\t\tresolveValues = slice.call( arguments ),\n\t\t\tlength = resolveValues.length,\n\n\t\t\t// the count of uncompleted subordinates\n\t\t\tremaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,\n\n\t\t\t// the master Deferred. If resolveValues consist of only a single Deferred, just use that.\n\t\t\tdeferred = remaining === 1 ? subordinate : jQuery.Deferred(),\n\n\t\t\t// Update function for both resolve and progress values\n\t\t\tupdateFunc = function( i, contexts, values ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tcontexts[ i ] = this;\n\t\t\t\t\tvalues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( values === progressValues ) {\n\t\t\t\t\t\tdeferred.notifyWith( contexts, values );\n\n\t\t\t\t\t} else if ( !(--remaining) ) {\n\t\t\t\t\t\tdeferred.resolveWith( contexts, values );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t},\n\n\t\t\tprogressValues, progressContexts, resolveContexts;\n\n\t\t// add listeners to Deferred subordinates; treat others as resolved\n\t\tif ( length > 1 ) {\n\t\t\tprogressValues = new Array( length );\n\t\t\tprogressContexts = new Array( length );\n\t\t\tresolveContexts = new Array( length );\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {\n\t\t\t\t\tresolveValues[ i ].promise()\n\t\t\t\t\t\t.done( updateFunc( i, resolveContexts, resolveValues ) )\n\t\t\t\t\t\t.fail( deferred.reject )\n\t\t\t\t\t\t.progress( updateFunc( i, progressContexts, progressValues ) );\n\t\t\t\t} else {\n\t\t\t\t\t--remaining;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// if we're not waiting on anything, resolve the master\n\t\tif ( !remaining ) {\n\t\t\tdeferred.resolveWith( resolveContexts, resolveValues );\n\t\t}\n\n\t\treturn deferred.promise();\n\t}\n});\n\n\n// The deferred used on DOM ready\nvar readyList;\n\njQuery.fn.ready = function( fn ) {\n\t// Add the callback\n\tjQuery.ready.promise().done( fn );\n\n\treturn this;\n};\n\njQuery.extend({\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Hold (or release) the ready event\n\tholdReady: function( hold ) {\n\t\tif ( hold ) {\n\t\t\tjQuery.readyWait++;\n\t\t} else {\n\t\t\tjQuery.ready( true );\n\t\t}\n\t},\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).\n\t\tif ( !document.body ) {\n\t\t\treturn setTimeout( jQuery.ready );\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\n\t\t// Trigger any bound ready events\n\t\tif ( jQuery.fn.triggerHandler ) {\n\t\t\tjQuery( document ).triggerHandler( \"ready\" );\n\t\t\tjQuery( document ).off( \"ready\" );\n\t\t}\n\t}\n});\n\n/**\n * Clean-up method for dom ready events\n */\nfunction detach() {\n\tif ( document.addEventListener ) {\n\t\tdocument.removeEventListener( \"DOMContentLoaded\", completed, false );\n\t\twindow.removeEventListener( \"load\", completed, false );\n\n\t} else {\n\t\tdocument.detachEvent( \"onreadystatechange\", completed );\n\t\twindow.detachEvent( \"onload\", completed );\n\t}\n}\n\n/**\n * The ready event handler and self cleanup method\n */\nfunction completed() {\n\t// readyState === \"complete\" is good enough for us to call the dom ready in oldIE\n\tif ( document.addEventListener || event.type === \"load\" || document.readyState === \"complete\" ) {\n\t\tdetach();\n\t\tjQuery.ready();\n\t}\n}\n\njQuery.ready.promise = function( obj ) {\n\tif ( !readyList ) {\n\n\t\treadyList = jQuery.Deferred();\n\n\t\t// Catch cases where $(document).ready() is called after the browser event has already occurred.\n\t\t// we once tried to use readyState \"interactive\" here, but it caused issues like the one\n\t\t// discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15\n\t\tif ( document.readyState === \"complete\" ) {\n\t\t\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\t\t\tsetTimeout( jQuery.ready );\n\n\t\t// Standards-based browsers support DOMContentLoaded\n\t\t} else if ( document.addEventListener ) {\n\t\t\t// Use the handy event callback\n\t\t\tdocument.addEventListener( \"DOMContentLoaded\", completed, false );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.addEventListener( \"load\", completed, false );\n\n\t\t// If IE event model is used\n\t\t} else {\n\t\t\t// Ensure firing before onload, maybe late but safe also for iframes\n\t\t\tdocument.attachEvent( \"onreadystatechange\", completed );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.attachEvent( \"onload\", completed );\n\n\t\t\t// If IE and not a frame\n\t\t\t// continually check to see if the document is ready\n\t\t\tvar top = false;\n\n\t\t\ttry {\n\t\t\t\ttop = window.frameElement == null && document.documentElement;\n\t\t\t} catch(e) {}\n\n\t\t\tif ( top && top.doScroll ) {\n\t\t\t\t(function doScrollCheck() {\n\t\t\t\t\tif ( !jQuery.isReady ) {\n\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t// Use the trick by Diego Perini\n\t\t\t\t\t\t\t// http://javascript.nwbox.com/IEContentLoaded/\n\t\t\t\t\t\t\ttop.doScroll(\"left\");\n\t\t\t\t\t\t} catch(e) {\n\t\t\t\t\t\t\treturn setTimeout( doScrollCheck, 50 );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// detach all dom ready events\n\t\t\t\t\t\tdetach();\n\n\t\t\t\t\t\t// and execute any waiting functions\n\t\t\t\t\t\tjQuery.ready();\n\t\t\t\t\t}\n\t\t\t\t})();\n\t\t\t}\n\t\t}\n\t}\n\treturn readyList.promise( obj );\n};\n\n\nvar strundefined = typeof undefined;\n\n\n\n// Support: IE<9\n// Iteration over object's inherited properties before its own\nvar i;\nfor ( i in jQuery( support ) ) {\n\tbreak;\n}\nsupport.ownLast = i !== \"0\";\n\n// Note: most support tests are defined in their respective modules.\n// false until the test is run\nsupport.inlineBlockNeedsLayout = false;\n\n// Execute ASAP in case we need to set body.style.zoom\njQuery(function() {\n\t// Minified: var a,b,c,d\n\tvar val, div, body, container;\n\n\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\tif ( !body || !body.style ) {\n\t\t// Return for frameset docs that don't have a body\n\t\treturn;\n\t}\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tcontainer = document.createElement( \"div\" );\n\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\tbody.appendChild( container ).appendChild( div );\n\n\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t// Support: IE<8\n\t\t// Check if natively block-level elements act like inline-block\n\t\t// elements when setting their display to 'inline' and giving\n\t\t// them layout\n\t\tdiv.style.cssText = \"display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1\";\n\n\t\tsupport.inlineBlockNeedsLayout = val = div.offsetWidth === 3;\n\t\tif ( val ) {\n\t\t\t// Prevent IE 6 from affecting layout for positioned elements #11048\n\t\t\t// Prevent IE from shrinking the body in IE 7 mode #12869\n\t\t\t// Support: IE<8\n\t\t\tbody.style.zoom = 1;\n\t\t}\n\t}\n\n\tbody.removeChild( container );\n});\n\n\n\n\n(function() {\n\tvar div = document.createElement( \"div\" );\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\n/**\n * Determines whether an object can have data\n */\njQuery.acceptData = function( elem ) {\n\tvar noData = jQuery.noData[ (elem.nodeName + \" \").toLowerCase() ],\n\t\tnodeType = +elem.nodeType || 1;\n\n\t// Do not set data on non-element DOM nodes because it will not be cleared (#8335).\n\treturn nodeType !== 1 && nodeType !== 9 ?\n\t\tfalse :\n\n\t\t// Nodes accept data unless otherwise specified; rejection can be conditional\n\t\t!noData || noData !== true && elem.getAttribute(\"classid\") === noData;\n};\n\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /([A-Z])/g;\n\nfunction dataAttr( elem, key, data ) {\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\n\t\tvar name = \"data-\" + key.replace( rmultiDash, \"-$1\" ).toLowerCase();\n\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = data === \"true\" ? true :\n\t\t\t\t\tdata === \"false\" ? false :\n\t\t\t\t\tdata === \"null\" ? null :\n\t\t\t\t\t// Only convert to a number if it doesn't change the string\n\t\t\t\t\t+data + \"\" === data ? +data :\n\t\t\t\t\trbrace.test( data ) ? jQuery.parseJSON( data ) :\n\t\t\t\t\tdata;\n\t\t\t} catch( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tjQuery.data( elem, key, data );\n\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\n\treturn data;\n}\n\n// checks a cache object for emptiness\nfunction isEmptyDataObject( obj ) {\n\tvar name;\n\tfor ( name in obj ) {\n\n\t\t// if the public data object is empty, the private is still empty\n\t\tif ( name === \"data\" && jQuery.isEmptyObject( obj[name] ) ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( name !== \"toJSON\" ) {\n\t\t\treturn false;\n\t\t}\n\t}\n\n\treturn true;\n}\n\nfunction internalData( elem, name, data, pvt /* Internal Use Only */ ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar ret, thisCache,\n\t\tinternalKey = jQuery.expando,\n\n\t\t// We have to handle DOM nodes and JS objects differently because IE6-7\n\t\t// can't GC object references properly across the DOM-JS boundary\n\t\tisNode = elem.nodeType,\n\n\t\t// Only DOM nodes need the global jQuery cache; JS object data is\n\t\t// attached directly to the object so GC can occur automatically\n\t\tcache = isNode ? jQuery.cache : elem,\n\n\t\t// Only defining an ID for JS objects if its cache already exists allows\n\t\t// the code to shortcut on the same path as a DOM node with no cache\n\t\tid = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;\n\n\t// Avoid doing any more work than we need to when trying to get data on an\n\t// object that has no data at all\n\tif ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === \"string\" ) {\n\t\treturn;\n\t}\n\n\tif ( !id ) {\n\t\t// Only DOM nodes need a new unique ID for each element since their data\n\t\t// ends up in the global cache\n\t\tif ( isNode ) {\n\t\t\tid = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++;\n\t\t} else {\n\t\t\tid = internalKey;\n\t\t}\n\t}\n\n\tif ( !cache[ id ] ) {\n\t\t// Avoid exposing jQuery metadata on plain JS objects when the object\n\t\t// is serialized using JSON.stringify\n\t\tcache[ id ] = isNode ? {} : { toJSON: jQuery.noop };\n\t}\n\n\t// An object can be passed to jQuery.data instead of a key/value pair; this gets\n\t// shallow copied over onto the existing cache\n\tif ( typeof name === \"object\" || typeof name === \"function\" ) {\n\t\tif ( pvt ) {\n\t\t\tcache[ id ] = jQuery.extend( cache[ id ], name );\n\t\t} else {\n\t\t\tcache[ id ].data = jQuery.extend( cache[ id ].data, name );\n\t\t}\n\t}\n\n\tthisCache = cache[ id ];\n\n\t// jQuery data() is stored in a separate object inside the object's internal data\n\t// cache in order to avoid key collisions between internal data and user-defined\n\t// data.\n\tif ( !pvt ) {\n\t\tif ( !thisCache.data ) {\n\t\t\tthisCache.data = {};\n\t\t}\n\n\t\tthisCache = thisCache.data;\n\t}\n\n\tif ( data !== undefined ) {\n\t\tthisCache[ jQuery.camelCase( name ) ] = data;\n\t}\n\n\t// Check for both converted-to-camel and non-converted data property names\n\t// If a data property was specified\n\tif ( typeof name === \"string\" ) {\n\n\t\t// First Try to find as-is property data\n\t\tret = thisCache[ name ];\n\n\t\t// Test for null|undefined property data\n\t\tif ( ret == null ) {\n\n\t\t\t// Try to find the camelCased property\n\t\t\tret = thisCache[ jQuery.camelCase( name ) ];\n\t\t}\n\t} else {\n\t\tret = thisCache;\n\t}\n\n\treturn ret;\n}\n\nfunction internalRemoveData( elem, name, pvt ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar thisCache, i,\n\t\tisNode = elem.nodeType,\n\n\t\t// See jQuery.data for more information\n\t\tcache = isNode ? jQuery.cache : elem,\n\t\tid = isNode ? elem[ jQuery.expando ] : jQuery.expando;\n\n\t// If there is already no cache entry for this object, there is no\n\t// purpose in continuing\n\tif ( !cache[ id ] ) {\n\t\treturn;\n\t}\n\n\tif ( name ) {\n\n\t\tthisCache = pvt ? cache[ id ] : cache[ id ].data;\n\n\t\tif ( thisCache ) {\n\n\t\t\t// Support array or space separated string names for data keys\n\t\t\tif ( !jQuery.isArray( name ) ) {\n\n\t\t\t\t// try the string as a key before any manipulation\n\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\tname = [ name ];\n\t\t\t\t} else {\n\n\t\t\t\t\t// split the camel cased version by spaces unless a key with the spaces exists\n\t\t\t\t\tname = jQuery.camelCase( name );\n\t\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\t\tname = [ name ];\n\t\t\t\t\t} else {\n\t\t\t\t\t\tname = name.split(\" \");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// If \"name\" is an array of keys...\n\t\t\t\t// When data is initially created, via (\"key\", \"val\") signature,\n\t\t\t\t// keys will be converted to camelCase.\n\t\t\t\t// Since there is no way to tell _how_ a key was added, remove\n\t\t\t\t// both plain key and camelCase key. #12786\n\t\t\t\t// This will only penalize the array argument path.\n\t\t\t\tname = name.concat( jQuery.map( name, jQuery.camelCase ) );\n\t\t\t}\n\n\t\t\ti = name.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete thisCache[ name[i] ];\n\t\t\t}\n\n\t\t\t// If there is no data left in the cache, we want to continue\n\t\t\t// and let the cache object itself get destroyed\n\t\t\tif ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t}\n\n\t// See jQuery.data for more information\n\tif ( !pvt ) {\n\t\tdelete cache[ id ].data;\n\n\t\t// Don't destroy the parent cache unless the internal data object\n\t\t// had been the only thing left in it\n\t\tif ( !isEmptyDataObject( cache[ id ] ) ) {\n\t\t\treturn;\n\t\t}\n\t}\n\n\t// Destroy the cache\n\tif ( isNode ) {\n\t\tjQuery.cleanData( [ elem ], true );\n\n\t// Use delete when supported for expandos or `cache` is not a window per isWindow (#10080)\n\t/* jshint eqeqeq: false */\n\t} else if ( support.deleteExpando || cache != cache.window ) {\n\t\t/* jshint eqeqeq: true */\n\t\tdelete cache[ id ];\n\n\t// When all else fails, null\n\t} else {\n\t\tcache[ id ] = null;\n\t}\n}\n\njQuery.extend({\n\tcache: {},\n\n\t// The following elements (space-suffixed to avoid Object.prototype collisions)\n\t// throw uncatchable exceptions if you attempt to set expando properties\n\tnoData: {\n\t\t\"applet \": true,\n\t\t\"embed \": true,\n\t\t// ...but Flash objects (which have this classid) *can* handle expandos\n\t\t\"object \": \"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"\n\t},\n\n\thasData: function( elem ) {\n\t\telem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];\n\t\treturn !!elem && !isEmptyDataObject( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name );\n\t},\n\n\t// For internal use only.\n\t_data: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data, true );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name, true );\n\t}\n});\n\njQuery.fn.extend({\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[0],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Special expections of .data basically thwart jQuery.access,\n\t\t// so implement the relevant behavior ourselves\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = jQuery.data( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !jQuery._data( elem, \"parsedAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE11+\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = jQuery.camelCase( name.slice(5) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tjQuery._data( elem, \"parsedAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each(function() {\n\t\t\t\tjQuery.data( this, key );\n\t\t\t});\n\t\t}\n\n\t\treturn arguments.length > 1 ?\n\n\t\t\t// Sets one value\n\t\t\tthis.each(function() {\n\t\t\t\tjQuery.data( this, key, value );\n\t\t\t}) :\n\n\t\t\t// Gets one value\n\t\t\t// Try to fetch any internally stored data first\n\t\t\telem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined;\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeData( this, key );\n\t\t});\n\t}\n});\n\n\njQuery.extend({\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = jQuery._data( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || jQuery.isArray(data) ) {\n\t\t\t\t\tqueue = jQuery._data( elem, type, jQuery.makeArray(data) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// not intended for public consumption - generates a queueHooks object, or returns the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn jQuery._data( elem, key ) || jQuery._data( elem, key, {\n\t\t\tempty: jQuery.Callbacks(\"once memory\").add(function() {\n\t\t\t\tjQuery._removeData( elem, type + \"queue\" );\n\t\t\t\tjQuery._removeData( elem, key );\n\t\t\t})\n\t\t});\n\t}\n});\n\njQuery.fn.extend({\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[0], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each(function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[0] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t});\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t});\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = jQuery._data( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n});\nvar pnum = (/[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/).source;\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar isHidden = function( elem, el ) {\n\t\t// isHidden might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\t\treturn jQuery.css( elem, \"display\" ) === \"none\" || !jQuery.contains( elem.ownerDocument, elem );\n\t};\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlength = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( jQuery.type( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\tjQuery.access( elems, fn, i, key[i], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !jQuery.isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tfn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn chainable ?\n\t\telems :\n\n\t\t// Gets\n\t\tbulk ?\n\t\t\tfn.call( elems ) :\n\t\t\tlength ? fn( elems[0], key ) : emptyGet;\n};\nvar rcheckableType = (/^(?:checkbox|radio)$/i);\n\n\n\n(function() {\n\t// Minified: var a,b,c\n\tvar input = document.createElement( \"input\" ),\n\t\tdiv = document.createElement( \"div\" ),\n\t\tfragment = document.createDocumentFragment();\n\n\t// Setup\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\n\t// IE strips leading whitespace when .innerHTML is used\n\tsupport.leadingWhitespace = div.firstChild.nodeType === 3;\n\n\t// Make sure that tbody elements aren't automatically inserted\n\t// IE will insert them into empty tables\n\tsupport.tbody = !div.getElementsByTagName( \"tbody\" ).length;\n\n\t// Make sure that link elements get serialized correctly by innerHTML\n\t// This requires a wrapper element in IE\n\tsupport.htmlSerialize = !!div.getElementsByTagName( \"link\" ).length;\n\n\t// Makes sure cloning an html5 element does not cause problems\n\t// Where outerHTML is undefined, this still works\n\tsupport.html5Clone =\n\t\tdocument.createElement( \"nav\" ).cloneNode( true ).outerHTML !== \"<:nav></:nav>\";\n\n\t// Check if a disconnected checkbox will retain its checked\n\t// value of true after appended to the DOM (IE6/7)\n\tinput.type = \"checkbox\";\n\tinput.checked = true;\n\tfragment.appendChild( input );\n\tsupport.appendChecked = input.checked;\n\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\t// Support: IE6-IE11+\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// #11217 - WebKit loses check when the name is after the checked attribute\n\tfragment.appendChild( div );\n\tdiv.innerHTML = \"<input type='radio' checked='checked' name='t'/>\";\n\n\t// Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3\n\t// old WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE<9\n\t// Opera does not clone events (and typeof div.attachEvent === undefined).\n\t// IE9-10 clones events bound via attachEvent, but they don't trigger with .click()\n\tsupport.noCloneEvent = true;\n\tif ( div.attachEvent ) {\n\t\tdiv.attachEvent( \"onclick\", function() {\n\t\t\tsupport.noCloneEvent = false;\n\t\t});\n\n\t\tdiv.cloneNode( true ).click();\n\t}\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n})();\n\n\n(function() {\n\tvar i, eventName,\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Support: IE<9 (lack submit/change bubble), Firefox 23+ (lack focusin event)\n\tfor ( i in { submit: true, change: true, focusin: true }) {\n\t\teventName = \"on\" + i;\n\n\t\tif ( !(support[ i + \"Bubbles\" ] = eventName in window) ) {\n\t\t\t// Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP)\n\t\t\tdiv.setAttribute( eventName, \"t\" );\n\t\t\tsupport[ i + \"Bubbles\" ] = div.attributes[ eventName ].expando === false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\nvar rformElems = /^(?:input|select|textarea)$/i,\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu)|click/,\n\trfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)$/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\t\tvar tmp, events, t, handleObjIn,\n\t\t\tspecial, eventHandle, handleObj,\n\t\t\thandlers, type, namespaces, origType,\n\t\t\telemData = jQuery._data( elem );\n\n\t\t// Don't attach events to noData or text/comment nodes (but allow plain objects)\n\t\tif ( !elemData ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !(events = elemData.events) ) {\n\t\t\tevents = elemData.events = {};\n\t\t}\n\t\tif ( !(eventHandle = elemData.handle) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== strundefined && (!e || jQuery.event.triggered !== e.type) ?\n\t\t\t\t\tjQuery.event.dispatch.apply( eventHandle.elem, arguments ) :\n\t\t\t\t\tundefined;\n\t\t\t};\n\t\t\t// Add elem as a property of the handle fn to prevent a memory leak with IE non-native events\n\t\t\teventHandle.elem = elem;\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend({\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join(\".\")\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !(handlers = events[ type ]) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener/attachEvent if the special events handler returns false\n\t\t\t\tif ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\t\t\t\t\t// Bind the global event handler to the element\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle, false );\n\n\t\t\t\t\t} else if ( elem.attachEvent ) {\n\t\t\t\t\t\telem.attachEvent( \"on\" + type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t\t// Nullify elem to prevent memory leaks in IE\n\t\telem = null;\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\t\tvar j, handleObj, tmp,\n\t\t\torigCount, t, events,\n\t\t\tspecial, handlers, type,\n\t\t\tnamespaces, origType,\n\t\t\telemData = jQuery.hasData( elem ) && jQuery._data( elem );\n\n\t\tif ( !elemData || !(events = elemData.events) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[2] && new RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector || selector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdelete elemData.handle;\n\n\t\t\t// removeData also checks for emptiness and clears the expando if empty\n\t\t\t// so use it instead of delete\n\t\t\tjQuery._removeData( elem, \"events\" );\n\t\t}\n\t},\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\t\tvar handle, ontype, cur,\n\t\t\tbubbleType, special, tmp, i,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split(\".\") : [];\n\n\t\tcur = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf(\".\") >= 0 ) {\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split(\".\");\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf(\":\") < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join(\".\");\n\t\tevent.namespace_re = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === (elem.ownerDocument || document) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {\n\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = ( jQuery._data( cur, \"events\" ) || {} )[ event.type ] && jQuery._data( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && jQuery.acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) &&\n\t\t\t\tjQuery.acceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name name as the event.\n\t\t\t\t// Can't use an .isFunction() check here because IE6/7 fails that test.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\t\t\t\t\ttry {\n\t\t\t\t\t\telem[ type ]();\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// IE<9 dies on focus/blur to hidden element (#1486,#12518)\n\t\t\t\t\t\t// only reproducible on winXP IE8 native, not IE9 in IE8 mode\n\t\t\t\t\t}\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\tdispatch: function( event ) {\n\n\t\t// Make a writable jQuery.Event from the native event object\n\t\tevent = jQuery.event.fix( event );\n\n\t\tvar i, ret, handleObj, matched, j,\n\t\t\thandlerQueue = [],\n\t\t\targs = slice.call( arguments ),\n\t\t\thandlers = ( jQuery._data( this, \"events\" ) || {} )[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[0] = event;\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// Triggered event must either 1) have no namespace, or\n\t\t\t\t// 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).\n\t\t\t\tif ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )\n\t\t\t\t\t\t\t.apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( (event.result = ret) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar sel, handleObj, matches, i,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\t// Black-hole SVG <use> instance trees (#13180)\n\t\t// Avoid non-left-click bubbling in Firefox (#3861)\n\t\tif ( delegateCount && cur.nodeType && (!event.button || event.type !== \"click\") ) {\n\n\t\t\t/* jshint eqeqeq: false */\n\t\t\tfor ( ; cur != this; cur = cur.parentNode || this ) {\n\t\t\t\t/* jshint eqeqeq: true */\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== \"click\") ) {\n\t\t\t\t\tmatches = [];\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matches[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatches[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) >= 0 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matches[ sel ] ) {\n\t\t\t\t\t\t\tmatches.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matches.length ) {\n\t\t\t\t\t\thandlerQueue.push({ elem: cur, handlers: matches });\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\tfix: function( event ) {\n\t\tif ( event[ jQuery.expando ] ) {\n\t\t\treturn event;\n\t\t}\n\n\t\t// Create a writable copy of the event object and normalize some properties\n\t\tvar i, prop, copy,\n\t\t\ttype = event.type,\n\t\t\toriginalEvent = event,\n\t\t\tfixHook = this.fixHooks[ type ];\n\n\t\tif ( !fixHook ) {\n\t\t\tthis.fixHooks[ type ] = fixHook =\n\t\t\t\trmouseEvent.test( type ) ? this.mouseHooks :\n\t\t\t\trkeyEvent.test( type ) ? this.keyHooks :\n\t\t\t\t{};\n\t\t}\n\t\tcopy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;\n\n\t\tevent = new jQuery.Event( originalEvent );\n\n\t\ti = copy.length;\n\t\twhile ( i-- ) {\n\t\t\tprop = copy[ i ];\n\t\t\tevent[ prop ] = originalEvent[ prop ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Fix target property (#1925)\n\t\tif ( !event.target ) {\n\t\t\tevent.target = originalEvent.srcElement || document;\n\t\t}\n\n\t\t// Support: Chrome 23+, Safari?\n\t\t// Target should not be a text node (#504, #13143)\n\t\tif ( event.target.nodeType === 3 ) {\n\t\t\tevent.target = event.target.parentNode;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// For mouse/key events, metaKey==false if it's undefined (#3368, #11328)\n\t\tevent.metaKey = !!event.metaKey;\n\n\t\treturn fixHook.filter ? fixHook.filter( event, originalEvent ) : event;\n\t},\n\n\t// Includes some event props shared by KeyEvent and MouseEvent\n\tprops: \"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which\".split(\" \"),\n\n\tfixHooks: {},\n\n\tkeyHooks: {\n\t\tprops: \"char charCode key keyCode\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\n\t\t\t// Add which for key events\n\t\t\tif ( event.which == null ) {\n\t\t\t\tevent.which = original.charCode != null ? original.charCode : original.keyCode;\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tmouseHooks: {\n\t\tprops: \"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\t\t\tvar body, eventDoc, doc,\n\t\t\t\tbutton = original.button,\n\t\t\t\tfromElement = original.fromElement;\n\n\t\t\t// Calculate pageX/Y if missing and clientX/Y available\n\t\t\tif ( event.pageX == null && original.clientX != null ) {\n\t\t\t\teventDoc = event.target.ownerDocument || document;\n\t\t\t\tdoc = eventDoc.documentElement;\n\t\t\t\tbody = eventDoc.body;\n\n\t\t\t\tevent.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );\n\t\t\t\tevent.pageY = original.clientY + ( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) - ( doc && doc.clientTop  || body && body.clientTop  || 0 );\n\t\t\t}\n\n\t\t\t// Add relatedTarget, if necessary\n\t\t\tif ( !event.relatedTarget && fromElement ) {\n\t\t\t\tevent.relatedTarget = fromElement === event.target ? original.toElement : fromElement;\n\t\t\t}\n\n\t\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\t\t// Note: button is not normalized, so don't use it\n\t\t\tif ( !event.which && button !== undefined ) {\n\t\t\t\tevent.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tspecial: {\n\t\tload: {\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tfocus: {\n\t\t\t// Fire native event if possible so blur/focus sequence is correct\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this !== safeActiveElement() && this.focus ) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tthis.focus();\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// If we error on focus to hidden element (#1486, #12518),\n\t\t\t\t\t\t// let .trigger() run the handlers\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusin\"\n\t\t},\n\t\tblur: {\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this === safeActiveElement() && this.blur ) {\n\t\t\t\t\tthis.blur();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusout\"\n\t\t},\n\t\tclick: {\n\t\t\t// For checkbox, fire native event so checked state will be right\n\t\t\ttrigger: function() {\n\t\t\t\tif ( jQuery.nodeName( this, \"input\" ) && this.type === \"checkbox\" && this.click ) {\n\t\t\t\t\tthis.click();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, don't fire native .click() on links\n\t\t\t_default: function( event ) {\n\t\t\t\treturn jQuery.nodeName( event.target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tsimulate: function( type, elem, event, bubble ) {\n\t\t// Piggyback on a donor event to simulate a different one.\n\t\t// Fake originalEvent to avoid donor's stopPropagation, but if the\n\t\t// simulated event prevents default then we do the same on the donor.\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true,\n\t\t\t\toriginalEvent: {}\n\t\t\t}\n\t\t);\n\t\tif ( bubble ) {\n\t\t\tjQuery.event.trigger( e, null, elem );\n\t\t} else {\n\t\t\tjQuery.event.dispatch.call( elem, e );\n\t\t}\n\t\tif ( e.isDefaultPrevented() ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\t}\n};\n\njQuery.removeEvent = document.removeEventListener ?\n\tfunction( elem, type, handle ) {\n\t\tif ( elem.removeEventListener ) {\n\t\t\telem.removeEventListener( type, handle, false );\n\t\t}\n\t} :\n\tfunction( elem, type, handle ) {\n\t\tvar name = \"on\" + type;\n\n\t\tif ( elem.detachEvent ) {\n\n\t\t\t// #8545, #7054, preventing memory leaks for custom events in IE6-8\n\t\t\t// detachEvent needed property on element, by name of that event, to properly expose it to GC\n\t\t\tif ( typeof elem[ name ] === strundefined ) {\n\t\t\t\telem[ name ] = null;\n\t\t\t}\n\n\t\t\telem.detachEvent( name, handle );\n\t\t}\n\t};\n\njQuery.Event = function( src, props ) {\n\t// Allow instantiation without the 'new' keyword\n\tif ( !(this instanceof jQuery.Event) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\t\t\t\t// Support: IE < 9, Android < 4.0\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || jQuery.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If preventDefault exists, run it on the original event\n\t\tif ( e.preventDefault ) {\n\t\t\te.preventDefault();\n\n\t\t// Support: IE\n\t\t// Otherwise set the returnValue property of the original event to false\n\t\t} else {\n\t\t\te.returnValue = false;\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\t\t// If stopPropagation exists, run it on the original event\n\t\tif ( e.stopPropagation ) {\n\t\t\te.stopPropagation();\n\t\t}\n\n\t\t// Support: IE\n\t\t// Set the cancelBubble property of the original event to true\n\t\te.cancelBubble = true;\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && e.stopImmediatePropagation ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\njQuery.each({\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mousenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || (related !== target && !jQuery.contains( target, related )) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n});\n\n// IE submit delegation\nif ( !support.submitBubbles ) {\n\n\tjQuery.event.special.submit = {\n\t\tsetup: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Lazy-add a submit handler when a descendant form may potentially be submitted\n\t\t\tjQuery.event.add( this, \"click._submit keypress._submit\", function( e ) {\n\t\t\t\t// Node name check avoids a VML-related crash in IE (#9807)\n\t\t\t\tvar elem = e.target,\n\t\t\t\t\tform = jQuery.nodeName( elem, \"input\" ) || jQuery.nodeName( elem, \"button\" ) ? elem.form : undefined;\n\t\t\t\tif ( form && !jQuery._data( form, \"submitBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( form, \"submit._submit\", function( event ) {\n\t\t\t\t\t\tevent._submit_bubble = true;\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( form, \"submitBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t\t// return undefined since we don't need an event listener\n\t\t},\n\n\t\tpostDispatch: function( event ) {\n\t\t\t// If form was submitted by the user, bubble the event up the tree\n\t\t\tif ( event._submit_bubble ) {\n\t\t\t\tdelete event._submit_bubble;\n\t\t\t\tif ( this.parentNode && !event.isTrigger ) {\n\t\t\t\t\tjQuery.event.simulate( \"submit\", this.parentNode, event, true );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Remove delegated handlers; cleanData eventually reaps submit handlers attached above\n\t\t\tjQuery.event.remove( this, \"._submit\" );\n\t\t}\n\t};\n}\n\n// IE change delegation and checkbox/radio fix\nif ( !support.changeBubbles ) {\n\n\tjQuery.event.special.change = {\n\n\t\tsetup: function() {\n\n\t\t\tif ( rformElems.test( this.nodeName ) ) {\n\t\t\t\t// IE doesn't fire change on a check/radio until blur; trigger it on click\n\t\t\t\t// after a propertychange. Eat the blur-change in special.change.handle.\n\t\t\t\t// This still fires onchange a second time for check/radio after blur.\n\t\t\t\tif ( this.type === \"checkbox\" || this.type === \"radio\" ) {\n\t\t\t\t\tjQuery.event.add( this, \"propertychange._change\", function( event ) {\n\t\t\t\t\t\tif ( event.originalEvent.propertyName === \"checked\" ) {\n\t\t\t\t\t\t\tthis._just_changed = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery.event.add( this, \"click._change\", function( event ) {\n\t\t\t\t\t\tif ( this._just_changed && !event.isTrigger ) {\n\t\t\t\t\t\t\tthis._just_changed = false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// Allow triggered, simulated change events (#11500)\n\t\t\t\t\t\tjQuery.event.simulate( \"change\", this, event, true );\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t// Delegated event; lazy-add a change handler on descendant inputs\n\t\t\tjQuery.event.add( this, \"beforeactivate._change\", function( e ) {\n\t\t\t\tvar elem = e.target;\n\n\t\t\t\tif ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, \"changeBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( elem, \"change._change\", function( event ) {\n\t\t\t\t\t\tif ( this.parentNode && !event.isSimulated && !event.isTrigger ) {\n\t\t\t\t\t\t\tjQuery.event.simulate( \"change\", this.parentNode, event, true );\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( elem, \"changeBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t},\n\n\t\thandle: function( event ) {\n\t\t\tvar elem = event.target;\n\n\t\t\t// Swallow native change events from checkbox/radio, we already triggered them above\n\t\t\tif ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== \"radio\" && elem.type !== \"checkbox\") ) {\n\t\t\t\treturn event.handleObj.handler.apply( this, arguments );\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\tjQuery.event.remove( this, \"._change\" );\n\n\t\t\treturn !rformElems.test( this.nodeName );\n\t\t}\n\t};\n}\n\n// Create \"bubbling\" focus and blur events\nif ( !support.focusinBubbles ) {\n\tjQuery.each({ focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );\n\t\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tjQuery._data( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tjQuery._removeData( doc, fix );\n\t\t\t\t} else {\n\t\t\t\t\tjQuery._data( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\njQuery.fn.extend({\n\n\ton: function( types, selector, data, fn, /*INTERNAL*/ one ) {\n\t\tvar type, origFn;\n\n\t\t// Types can be a map of types/handlers\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-Object, selector, data )\n\t\t\tif ( typeof selector !== \"string\" ) {\n\t\t\t\t// ( types-Object, data )\n\t\t\t\tdata = data || selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.on( type, selector, data, types[ type ], one );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( data == null && fn == null ) {\n\t\t\t// ( types, fn )\n\t\t\tfn = selector;\n\t\t\tdata = selector = undefined;\n\t\t} else if ( fn == null ) {\n\t\t\tif ( typeof selector === \"string\" ) {\n\t\t\t\t// ( types, selector, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = undefined;\n\t\t\t} else {\n\t\t\t\t// ( types, data, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t} else if ( !fn ) {\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( one === 1 ) {\n\t\t\torigFn = fn;\n\t\t\tfn = function( event ) {\n\t\t\t\t// Can use an empty set, since event contains the info\n\t\t\t\tjQuery().off( event );\n\t\t\t\treturn origFn.apply( this, arguments );\n\t\t\t};\n\t\t\t// Use same guid so caller can remove using origFn\n\t\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.add( this, types, fn, data, selector );\n\t\t});\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn this.on( types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ? handleObj.origType + \".\" + handleObj.namespace : handleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t});\n\t},\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t});\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[0];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n});\n\n\nfunction createSafeFragment( document ) {\n\tvar list = nodeNames.split( \"|\" ),\n\t\tsafeFrag = document.createDocumentFragment();\n\n\tif ( safeFrag.createElement ) {\n\t\twhile ( list.length ) {\n\t\t\tsafeFrag.createElement(\n\t\t\t\tlist.pop()\n\t\t\t);\n\t\t}\n\t}\n\treturn safeFrag;\n}\n\nvar nodeNames = \"abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|\" +\n\t\t\"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video\",\n\trinlinejQuery = / jQuery\\d+=\"(?:null|\\d+)\"/g,\n\trnoshimcache = new RegExp(\"<(?:\" + nodeNames + \")[\\\\s/>]\", \"i\"),\n\trleadingWhitespace = /^\\s+/,\n\trxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>]*)\\/>/gi,\n\trtagName = /<([\\w:]+)/,\n\trtbody = /<tbody/i,\n\trhtml = /<|&#?\\w+;/,\n\trnoInnerhtml = /<(?:script|style|link)/i,\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trscriptType = /^$|\\/(?:java|ecma)script/i,\n\trscriptTypeMasked = /^true\\/(.*)/,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g,\n\n\t// We have to close these tags to support XHTML (#13200)\n\twrapMap = {\n\t\toption: [ 1, \"<select multiple='multiple'>\", \"</select>\" ],\n\t\tlegend: [ 1, \"<fieldset>\", \"</fieldset>\" ],\n\t\tarea: [ 1, \"<map>\", \"</map>\" ],\n\t\tparam: [ 1, \"<object>\", \"</object>\" ],\n\t\tthead: [ 1, \"<table>\", \"</table>\" ],\n\t\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\t\tcol: [ 2, \"<table><tbody></tbody><colgroup>\", \"</colgroup></table>\" ],\n\t\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t\t// IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags,\n\t\t// unless wrapped in a div with non-breaking characters in front of it.\n\t\t_default: support.htmlSerialize ? [ 0, \"\", \"\" ] : [ 1, \"X<div>\", \"</div>\"  ]\n\t},\n\tsafeFragment = createSafeFragment( document ),\n\tfragmentDiv = safeFragment.appendChild( document.createElement(\"div\") );\n\nwrapMap.optgroup = wrapMap.option;\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\nfunction getAll( context, tag ) {\n\tvar elems, elem,\n\t\ti = 0,\n\t\tfound = typeof context.getElementsByTagName !== strundefined ? context.getElementsByTagName( tag || \"*\" ) :\n\t\t\ttypeof context.querySelectorAll !== strundefined ? context.querySelectorAll( tag || \"*\" ) :\n\t\t\tundefined;\n\n\tif ( !found ) {\n\t\tfor ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( !tag || jQuery.nodeName( elem, tag ) ) {\n\t\t\t\tfound.push( elem );\n\t\t\t} else {\n\t\t\t\tjQuery.merge( found, getAll( elem, tag ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn tag === undefined || tag && jQuery.nodeName( context, tag ) ?\n\t\tjQuery.merge( [ context ], found ) :\n\t\tfound;\n}\n\n// Used in buildFragment, fixes the defaultChecked property\nfunction fixDefaultChecked( elem ) {\n\tif ( rcheckableType.test( elem.type ) ) {\n\t\telem.defaultChecked = elem.checked;\n\t}\n}\n\n// Support: IE<8\n// Manipulating tables requires a tbody\nfunction manipulationTarget( elem, content ) {\n\treturn jQuery.nodeName( elem, \"table\" ) &&\n\t\tjQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ?\n\n\t\telem.getElementsByTagName(\"tbody\")[0] ||\n\t\t\telem.appendChild( elem.ownerDocument.createElement(\"tbody\") ) :\n\t\telem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = (jQuery.find.attr( elem, \"type\" ) !== null) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tvar match = rscriptTypeMasked.exec( elem.type );\n\tif ( match ) {\n\t\telem.type = match[1];\n\t} else {\n\t\telem.removeAttribute(\"type\");\n\t}\n\treturn elem;\n}\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar elem,\n\t\ti = 0;\n\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\tjQuery._data( elem, \"globalEval\", !refElements || jQuery._data( refElements[i], \"globalEval\" ) );\n\t}\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\n\tif ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {\n\t\treturn;\n\t}\n\n\tvar type, i, l,\n\t\toldData = jQuery._data( src ),\n\t\tcurData = jQuery._data( dest, oldData ),\n\t\tevents = oldData.events;\n\n\tif ( events ) {\n\t\tdelete curData.handle;\n\t\tcurData.events = {};\n\n\t\tfor ( type in events ) {\n\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t}\n\t\t}\n\t}\n\n\t// make the cloned public data object a copy from the original\n\tif ( curData.data ) {\n\t\tcurData.data = jQuery.extend( {}, curData.data );\n\t}\n}\n\nfunction fixCloneNodeIssues( src, dest ) {\n\tvar nodeName, e, data;\n\n\t// We do not need to do anything for non-Elements\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\tnodeName = dest.nodeName.toLowerCase();\n\n\t// IE6-8 copies events bound via attachEvent when using cloneNode.\n\tif ( !support.noCloneEvent && dest[ jQuery.expando ] ) {\n\t\tdata = jQuery._data( dest );\n\n\t\tfor ( e in data.events ) {\n\t\t\tjQuery.removeEvent( dest, e, data.handle );\n\t\t}\n\n\t\t// Event data gets referenced instead of copied if the expando gets copied too\n\t\tdest.removeAttribute( jQuery.expando );\n\t}\n\n\t// IE blanks contents when cloning scripts, and tries to evaluate newly-set text\n\tif ( nodeName === \"script\" && dest.text !== src.text ) {\n\t\tdisableScript( dest ).text = src.text;\n\t\trestoreScript( dest );\n\n\t// IE6-10 improperly clones children of object elements using classid.\n\t// IE10 throws NoModificationAllowedError if parent is null, #12132.\n\t} else if ( nodeName === \"object\" ) {\n\t\tif ( dest.parentNode ) {\n\t\t\tdest.outerHTML = src.outerHTML;\n\t\t}\n\n\t\t// This path appears unavoidable for IE9. When cloning an object\n\t\t// element in IE9, the outerHTML strategy above is not sufficient.\n\t\t// If the src has innerHTML and the destination does not,\n\t\t// copy the src.innerHTML into the dest.innerHTML. #10324\n\t\tif ( support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) {\n\t\t\tdest.innerHTML = src.innerHTML;\n\t\t}\n\n\t} else if ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\t// IE6-8 fails to persist the checked state of a cloned checkbox\n\t\t// or radio button. Worse, IE6-7 fail to give the cloned element\n\t\t// a checked appearance if the defaultChecked value isn't also set\n\n\t\tdest.defaultChecked = dest.checked = src.checked;\n\n\t\t// IE6-7 get confused and end up setting the value of a cloned\n\t\t// checkbox/radio button to an empty string instead of \"on\"\n\t\tif ( dest.value !== src.value ) {\n\t\t\tdest.value = src.value;\n\t\t}\n\n\t// IE6-8 fails to return the selected option to the default selected\n\t// state when cloning options\n\t} else if ( nodeName === \"option\" ) {\n\t\tdest.defaultSelected = dest.selected = src.defaultSelected;\n\n\t// IE6-8 fails to set the defaultValue to the correct value when\n\t// cloning other types of input fields\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\njQuery.extend({\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar destElements, node, clone, i, srcElements,\n\t\t\tinPage = jQuery.contains( elem.ownerDocument, elem );\n\n\t\tif ( support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( \"<\" + elem.nodeName + \">\" ) ) {\n\t\t\tclone = elem.cloneNode( true );\n\n\t\t// IE<=8 does not properly clone detached, unknown element nodes\n\t\t} else {\n\t\t\tfragmentDiv.innerHTML = elem.outerHTML;\n\t\t\tfragmentDiv.removeChild( clone = fragmentDiv.firstChild );\n\t\t}\n\n\t\tif ( (!support.noCloneEvent || !support.noCloneChecked) &&\n\t\t\t\t(elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\t// Fix all IE cloning issues\n\t\t\tfor ( i = 0; (node = srcElements[i]) != null; ++i ) {\n\t\t\t\t// Ensure that the destination node is not null; Fixes #9587\n\t\t\t\tif ( destElements[i] ) {\n\t\t\t\t\tfixCloneNodeIssues( node, destElements[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0; (node = srcElements[i]) != null; i++ ) {\n\t\t\t\t\tcloneCopyEvent( node, destElements[i] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\tdestElements = srcElements = node = null;\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tbuildFragment: function( elems, context, scripts, selection ) {\n\t\tvar j, elem, contains,\n\t\t\ttmp, tag, tbody, wrap,\n\t\t\tl = elems.length,\n\n\t\t\t// Ensure a safe fragment\n\t\t\tsafe = createSafeFragment( context ),\n\n\t\t\tnodes = [],\n\t\t\ti = 0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\telem = elems[ i ];\n\n\t\t\tif ( elem || elem === 0 ) {\n\n\t\t\t\t// Add nodes directly\n\t\t\t\tif ( jQuery.type( elem ) === \"object\" ) {\n\t\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t\t// Convert non-html into a text node\n\t\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t\t// Convert html into DOM nodes\n\t\t\t\t} else {\n\t\t\t\t\ttmp = tmp || safe.appendChild( context.createElement(\"div\") );\n\n\t\t\t\t\t// Deserialize a standard representation\n\t\t\t\t\ttag = (rtagName.exec( elem ) || [ \"\", \"\" ])[ 1 ].toLowerCase();\n\t\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\n\t\t\t\t\ttmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, \"<$1></$2>\" ) + wrap[2];\n\n\t\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\t\tj = wrap[0];\n\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Manually add leading whitespace removed by IE\n\t\t\t\t\tif ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {\n\t\t\t\t\t\tnodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove IE's autoinserted <tbody> from table fragments\n\t\t\t\t\tif ( !support.tbody ) {\n\n\t\t\t\t\t\t// String was a <table>, *may* have spurious <tbody>\n\t\t\t\t\t\telem = tag === \"table\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\ttmp.firstChild :\n\n\t\t\t\t\t\t\t// String was a bare <thead> or <tfoot>\n\t\t\t\t\t\t\twrap[1] === \"<table>\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\t\ttmp :\n\t\t\t\t\t\t\t\t0;\n\n\t\t\t\t\t\tj = elem && elem.childNodes.length;\n\t\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\t\tif ( jQuery.nodeName( (tbody = elem.childNodes[j]), \"tbody\" ) && !tbody.childNodes.length ) {\n\t\t\t\t\t\t\t\telem.removeChild( tbody );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t\t// Fix #12392 for WebKit and IE > 9\n\t\t\t\t\ttmp.textContent = \"\";\n\n\t\t\t\t\t// Fix #12392 for oldIE\n\t\t\t\t\twhile ( tmp.firstChild ) {\n\t\t\t\t\t\ttmp.removeChild( tmp.firstChild );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remember the top-level container for proper cleanup\n\t\t\t\t\ttmp = safe.lastChild;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Fix #11356: Clear elements from fragment\n\t\tif ( tmp ) {\n\t\t\tsafe.removeChild( tmp );\n\t\t}\n\n\t\t// Reset defaultChecked for any radios and checkboxes\n\t\t// about to be appended to the DOM in IE 6/7 (#8060)\n\t\tif ( !support.appendChecked ) {\n\t\t\tjQuery.grep( getAll( nodes, \"input\" ), fixDefaultChecked );\n\t\t}\n\n\t\ti = 0;\n\t\twhile ( (elem = nodes[ i++ ]) ) {\n\n\t\t\t// #4087 - If origin and destination elements are the same, and this is\n\t\t\t// that element, do not do anything\n\t\t\tif ( selection && jQuery.inArray( elem, selection ) !== -1 ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tcontains = jQuery.contains( elem.ownerDocument, elem );\n\n\t\t\t// Append to fragment\n\t\t\ttmp = getAll( safe.appendChild( elem ), \"script\" );\n\n\t\t\t// Preserve script evaluation history\n\t\t\tif ( contains ) {\n\t\t\t\tsetGlobalEval( tmp );\n\t\t\t}\n\n\t\t\t// Capture executables\n\t\t\tif ( scripts ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (elem = tmp[ j++ ]) ) {\n\t\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\t\tscripts.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\ttmp = null;\n\n\t\treturn safe;\n\t},\n\n\tcleanData: function( elems, /* internal */ acceptData ) {\n\t\tvar elem, type, id, data,\n\t\t\ti = 0,\n\t\t\tinternalKey = jQuery.expando,\n\t\t\tcache = jQuery.cache,\n\t\t\tdeleteExpando = support.deleteExpando,\n\t\t\tspecial = jQuery.event.special;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( acceptData || jQuery.acceptData( elem ) ) {\n\n\t\t\t\tid = elem[ internalKey ];\n\t\t\t\tdata = id && cache[ id ];\n\n\t\t\t\tif ( data ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove cache only if it was not already removed by jQuery.event.remove\n\t\t\t\t\tif ( cache[ id ] ) {\n\n\t\t\t\t\t\tdelete cache[ id ];\n\n\t\t\t\t\t\t// IE does not allow us to delete expando properties from nodes,\n\t\t\t\t\t\t// nor does it have a removeAttribute function on Document nodes;\n\t\t\t\t\t\t// we must handle all of these cases\n\t\t\t\t\t\tif ( deleteExpando ) {\n\t\t\t\t\t\t\tdelete elem[ internalKey ];\n\n\t\t\t\t\t\t} else if ( typeof elem.removeAttribute !== strundefined ) {\n\t\t\t\t\t\t\telem.removeAttribute( internalKey );\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\telem[ internalKey ] = null;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tdeletedIds.push( id );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\njQuery.fn.extend({\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t});\n\t},\n\n\tprepend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t});\n\t},\n\n\tbefore: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t});\n\t},\n\n\tafter: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t});\n\t},\n\n\tremove: function( selector, keepData /* Internal Use Only */ ) {\n\t\tvar elem,\n\t\t\telems = selector ? jQuery.filter( selector, this ) : this,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\n\t\t\tif ( !keepData && elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem ) );\n\t\t\t}\n\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\tif ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\t\tsetGlobalEval( getAll( elem, \"script\" ) );\n\t\t\t\t}\n\t\t\t\telem.parentNode.removeChild( elem );\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = this[i]) != null; i++ ) {\n\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t}\n\n\t\t\t// Remove any remaining nodes\n\t\t\twhile ( elem.firstChild ) {\n\t\t\t\telem.removeChild( elem.firstChild );\n\t\t\t}\n\n\t\t\t// If this is a select, ensure that it displays empty (#12336)\n\t\t\t// Support: IE<9\n\t\t\tif ( elem.options && jQuery.nodeName( elem, \"select\" ) ) {\n\t\t\t\telem.options.length = 0;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map(function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t});\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined ) {\n\t\t\t\treturn elem.nodeType === 1 ?\n\t\t\t\t\telem.innerHTML.replace( rinlinejQuery, \"\" ) :\n\t\t\t\t\tundefined;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t( support.htmlSerialize || !rnoshimcache.test( value )  ) &&\n\t\t\t\t( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&\n\t\t\t\t!wrapMap[ (rtagName.exec( value ) || [ \"\", \"\" ])[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = value.replace( rxhtmlTag, \"<$1></$2>\" );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor (; i < l; i++ ) {\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\telem = this[i] || {};\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar arg = arguments[ 0 ];\n\n\t\t// Make the changes, replacing each context element with the new content\n\t\tthis.domManip( arguments, function( elem ) {\n\t\t\targ = this.parentNode;\n\n\t\t\tjQuery.cleanData( getAll( this ) );\n\n\t\t\tif ( arg ) {\n\t\t\t\targ.replaceChild( elem, this );\n\t\t\t}\n\t\t});\n\n\t\t// Force removal if there was no new content (e.g., from empty arguments)\n\t\treturn arg && (arg.length || arg.nodeType) ? this : this.remove();\n\t},\n\n\tdetach: function( selector ) {\n\t\treturn this.remove( selector, true );\n\t},\n\n\tdomManip: function( args, callback ) {\n\n\t\t// Flatten any nested arrays\n\t\targs = concat.apply( [], args );\n\n\t\tvar first, node, hasScripts,\n\t\t\tscripts, doc, fragment,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tset = this,\n\t\t\tiNoClone = l - 1,\n\t\t\tvalue = args[0],\n\t\t\tisFunction = jQuery.isFunction( value );\n\n\t\t// We can't cloneNode fragments that contain checked, in WebKit\n\t\tif ( isFunction ||\n\t\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\t\treturn this.each(function( index ) {\n\t\t\t\tvar self = set.eq( index );\n\t\t\t\tif ( isFunction ) {\n\t\t\t\t\targs[0] = value.call( this, index, self.html() );\n\t\t\t\t}\n\t\t\t\tself.domManip( args, callback );\n\t\t\t});\n\t\t}\n\n\t\tif ( l ) {\n\t\t\tfragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );\n\t\t\tfirst = fragment.firstChild;\n\n\t\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\t\tfragment = first;\n\t\t\t}\n\n\t\t\tif ( first ) {\n\t\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\t\thasScripts = scripts.length;\n\n\t\t\t\t// Use the original fragment for the last item instead of the first because it can end up\n\t\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\tnode = fragment;\n\n\t\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tcallback.call( this[i], node, i );\n\t\t\t\t}\n\n\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t\t// Reenable scripts\n\t\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t\t!jQuery._data( node, \"globalEval\" ) && jQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\t\tif ( node.src ) {\n\t\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\t\tif ( jQuery._evalUrl ) {\n\t\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.globalEval( ( node.text || node.textContent || node.innerHTML || \"\" ).replace( rcleanScript, \"\" ) );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Fix #11809: Avoid leaking memory\n\t\t\t\tfragment = first = null;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t}\n});\n\njQuery.each({\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\ti = 0,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone(true);\n\t\t\tjQuery( insert[i] )[ original ]( elems );\n\n\t\t\t// Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get()\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\n\n\nvar iframe,\n\telemdisplay = {};\n\n/**\n * Retrieve the actual display of a element\n * @param {String} name nodeName of the element\n * @param {Object} doc Document object\n */\n// Called only from within defaultDisplay\nfunction actualDisplay( name, doc ) {\n\tvar style,\n\t\telem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),\n\n\t\t// getDefaultComputedStyle might be reliably used only on attached element\n\t\tdisplay = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ?\n\n\t\t\t// Use of this method is a temporary fix (more like optmization) until something better comes along,\n\t\t\t// since it was removed from specification and supported only in FF\n\t\t\tstyle.display : jQuery.css( elem[ 0 ], \"display\" );\n\n\t// We don't have any data stored on the element,\n\t// so use \"detach\" method as fast way to get rid of the element\n\telem.detach();\n\n\treturn display;\n}\n\n/**\n * Try to determine the default display value of an element\n * @param {String} nodeName\n */\nfunction defaultDisplay( nodeName ) {\n\tvar doc = document,\n\t\tdisplay = elemdisplay[ nodeName ];\n\n\tif ( !display ) {\n\t\tdisplay = actualDisplay( nodeName, doc );\n\n\t\t// If the simple way fails, read from inside an iframe\n\t\tif ( display === \"none\" || !display ) {\n\n\t\t\t// Use the already-created iframe if possible\n\t\t\tiframe = (iframe || jQuery( \"<iframe frameborder='0' width='0' height='0'/>\" )).appendTo( doc.documentElement );\n\n\t\t\t// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse\n\t\t\tdoc = ( iframe[ 0 ].contentWindow || iframe[ 0 ].contentDocument ).document;\n\n\t\t\t// Support: IE\n\t\t\tdoc.write();\n\t\t\tdoc.close();\n\n\t\t\tdisplay = actualDisplay( nodeName, doc );\n\t\t\tiframe.detach();\n\t\t}\n\n\t\t// Store the correct default display\n\t\telemdisplay[ nodeName ] = display;\n\t}\n\n\treturn display;\n}\n\n\n(function() {\n\tvar shrinkWrapBlocksVal;\n\n\tsupport.shrinkWrapBlocks = function() {\n\t\tif ( shrinkWrapBlocksVal != null ) {\n\t\t\treturn shrinkWrapBlocksVal;\n\t\t}\n\n\t\t// Will be changed later if needed.\n\t\tshrinkWrapBlocksVal = false;\n\n\t\t// Minified: var b,c,d\n\t\tvar div, body, container;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\t// Support: IE6\n\t\t// Check if elements with layout shrink-wrap their children\n\t\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t\t// Reset CSS: box-sizing; display; margin; border\n\t\t\tdiv.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;\" +\n\t\t\t\t\"padding:1px;width:1px;zoom:1\";\n\t\t\tdiv.appendChild( document.createElement( \"div\" ) ).style.width = \"5px\";\n\t\t\tshrinkWrapBlocksVal = div.offsetWidth !== 3;\n\t\t}\n\n\t\tbody.removeChild( container );\n\n\t\treturn shrinkWrapBlocksVal;\n\t};\n\n})();\nvar rmargin = (/^margin/);\n\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\n\n\nvar getStyles, curCSS,\n\trposition = /^(top|right|bottom|left)$/;\n\nif ( window.getComputedStyle ) {\n\tgetStyles = function( elem ) {\n\t\t// Support: IE<=11+, Firefox<=30+ (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tif ( elem.ownerDocument.defaultView.opener ) {\n\t\t\treturn elem.ownerDocument.defaultView.getComputedStyle( elem, null );\n\t\t}\n\n\t\treturn window.getComputedStyle( elem, null );\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar width, minWidth, maxWidth, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\n\t\t// getPropertyValue is only needed for .css('filter') in IE9, see #12537\n\t\tret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;\n\n\t\tif ( computed ) {\n\n\t\t\tif ( ret === \"\" && !jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\tret = jQuery.style( elem, name );\n\t\t\t}\n\n\t\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t\t// Chrome < 17 and Safari 5.0 uses \"computed value\" instead of \"used value\" for margin-right\n\t\t\t// Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels\n\t\t\t// this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values\n\t\t\tif ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {\n\n\t\t\t\t// Remember the original values\n\t\t\t\twidth = style.width;\n\t\t\t\tminWidth = style.minWidth;\n\t\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t\t// Put in the new values to get a computed value out\n\t\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\t\tret = computed.width;\n\n\t\t\t\t// Revert the changed values\n\t\t\t\tstyle.width = width;\n\t\t\t\tstyle.minWidth = minWidth;\n\t\t\t\tstyle.maxWidth = maxWidth;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\";\n\t};\n} else if ( document.documentElement.currentStyle ) {\n\tgetStyles = function( elem ) {\n\t\treturn elem.currentStyle;\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar left, rs, rsLeft, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\t\tret = computed ? computed[ name ] : undefined;\n\n\t\t// Avoid setting ret to empty string here\n\t\t// so we don't default to auto\n\t\tif ( ret == null && style && style[ name ] ) {\n\t\t\tret = style[ name ];\n\t\t}\n\n\t\t// From the awesome hack by Dean Edwards\n\t\t// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291\n\n\t\t// If we're not dealing with a regular pixel number\n\t\t// but a number that has a weird ending, we need to convert it to pixels\n\t\t// but not position css attributes, as those are proportional to the parent element instead\n\t\t// and we can't measure the parent instead because it might trigger a \"stacking dolls\" problem\n\t\tif ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\tleft = style.left;\n\t\t\trs = elem.runtimeStyle;\n\t\t\trsLeft = rs && rs.left;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = elem.currentStyle.left;\n\t\t\t}\n\t\t\tstyle.left = name === \"fontSize\" ? \"1em\" : ret;\n\t\t\tret = style.pixelLeft + \"px\";\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.left = left;\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = rsLeft;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\" || \"auto\";\n\t};\n}\n\n\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tvar condition = conditionFn();\n\n\t\t\tif ( condition == null ) {\n\t\t\t\t// The test was not ready at this point; screw the hook this time\n\t\t\t\t// but check again when needed next time.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( condition ) {\n\t\t\t\t// Hook not needed (or it's not possible to use it due to missing dependency),\n\t\t\t\t// remove it.\n\t\t\t\t// Since there are no other hooks for marginRight, remove the whole object.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\n\t\t\treturn (this.get = hookFn).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\n(function() {\n\t// Minified: var b,c,d,e,f,g, h,i\n\tvar div, style, a, pixelPositionVal, boxSizingReliableVal,\n\t\treliableHiddenOffsetsVal, reliableMarginRightVal;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName( \"a\" )[ 0 ];\n\tstyle = a && a.style;\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !style ) {\n\t\treturn;\n\t}\n\n\tstyle.cssText = \"float:left;opacity:.5\";\n\n\t// Support: IE<9\n\t// Make sure that element opacity exists (as opposed to filter)\n\tsupport.opacity = style.opacity === \"0.5\";\n\n\t// Verify style float existence\n\t// (IE uses styleFloat instead of cssFloat)\n\tsupport.cssFloat = !!style.cssFloat;\n\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\t// Support: Firefox<29, Android 2.3\n\t// Vendor-prefix box-sizing\n\tsupport.boxSizing = style.boxSizing === \"\" || style.MozBoxSizing === \"\" ||\n\t\tstyle.WebkitBoxSizing === \"\";\n\n\tjQuery.extend(support, {\n\t\treliableHiddenOffsets: function() {\n\t\t\tif ( reliableHiddenOffsetsVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableHiddenOffsetsVal;\n\t\t},\n\n\t\tboxSizingReliable: function() {\n\t\t\tif ( boxSizingReliableVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\n\t\tpixelPosition: function() {\n\t\t\tif ( pixelPositionVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn pixelPositionVal;\n\t\t},\n\n\t\t// Support: Android 2.3\n\t\treliableMarginRight: function() {\n\t\t\tif ( reliableMarginRightVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableMarginRightVal;\n\t\t}\n\t});\n\n\tfunction computeStyleTests() {\n\t\t// Minified: var b,c,d,j\n\t\tvar div, body, container, contents;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\tdiv.style.cssText =\n\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t// Vendor-prefix box-sizing\n\t\t\t\"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;\" +\n\t\t\t\"box-sizing:border-box;display:block;margin-top:1%;top:1%;\" +\n\t\t\t\"border:1px;padding:1px;width:4px;position:absolute\";\n\n\t\t// Support: IE<9\n\t\t// Assume reasonable values in the absence of getComputedStyle\n\t\tpixelPositionVal = boxSizingReliableVal = false;\n\t\treliableMarginRightVal = true;\n\n\t\t// Check for getComputedStyle so that this code is not run in IE<9.\n\t\tif ( window.getComputedStyle ) {\n\t\t\tpixelPositionVal = ( window.getComputedStyle( div, null ) || {} ).top !== \"1%\";\n\t\t\tboxSizingReliableVal =\n\t\t\t\t( window.getComputedStyle( div, null ) || { width: \"4px\" } ).width === \"4px\";\n\n\t\t\t// Support: Android 2.3\n\t\t\t// Div with explicit width and no margin-right incorrectly\n\t\t\t// gets computed margin-right based on width of container (#3333)\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\tcontents = div.appendChild( document.createElement( \"div\" ) );\n\n\t\t\t// Reset CSS: box-sizing; display; margin; border; padding\n\t\t\tcontents.style.cssText = div.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;padding:0\";\n\t\t\tcontents.style.marginRight = contents.style.width = \"0\";\n\t\t\tdiv.style.width = \"1px\";\n\n\t\t\treliableMarginRightVal =\n\t\t\t\t!parseFloat( ( window.getComputedStyle( contents, null ) || {} ).marginRight );\n\n\t\t\tdiv.removeChild( contents );\n\t\t}\n\n\t\t// Support: IE8\n\t\t// Check if table cells still have offsetWidth/Height when they are set\n\t\t// to display:none and there are still other visible table cells in a\n\t\t// table row; if so, offsetWidth/Height are not reliable for use when\n\t\t// determining if an element has been hidden directly using\n\t\t// display:none (it is still safe to use offsets if a parent element is\n\t\t// hidden; don safety goggles and see bug #4512 for more information).\n\t\tdiv.innerHTML = \"<table><tr><td></td><td>t</td></tr></table>\";\n\t\tcontents = div.getElementsByTagName( \"td\" );\n\t\tcontents[ 0 ].style.cssText = \"margin:0;border:0;padding:0;display:none\";\n\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\tif ( reliableHiddenOffsetsVal ) {\n\t\t\tcontents[ 0 ].style.display = \"\";\n\t\t\tcontents[ 1 ].style.display = \"none\";\n\t\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\t}\n\n\t\tbody.removeChild( container );\n\t}\n\n})();\n\n\n// A method for quickly swapping in/out CSS properties to get correct calculations.\njQuery.swap = function( elem, options, callback, args ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.apply( elem, args || [] );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar\n\t\tralpha = /alpha\\([^)]*\\)/i,\n\tropacity = /opacity\\s*=\\s*([^)]*)/,\n\n\t// swappable if display is none or starts with table except \"table\", \"table-cell\", or \"table-caption\"\n\t// see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trnumsplit = new RegExp( \"^(\" + pnum + \")(.*)$\", \"i\" ),\n\trrelNum = new RegExp( \"^([+-])=(\" + pnum + \")\", \"i\" ),\n\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t},\n\n\tcssPrefixes = [ \"Webkit\", \"O\", \"Moz\", \"ms\" ];\n\n\n// return a css property mapped to a potentially vendor prefixed property\nfunction vendorPropName( style, name ) {\n\n\t// shortcut for names that are not vendor prefixed\n\tif ( name in style ) {\n\t\treturn name;\n\t}\n\n\t// check for vendor prefixed names\n\tvar capName = name.charAt(0).toUpperCase() + name.slice(1),\n\t\torigName = name,\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in style ) {\n\t\t\treturn name;\n\t\t}\n\t}\n\n\treturn origName;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem, hidden,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\" );\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\t\t\t// Reset the inline display of this element to learn if it is\n\t\t\t// being hidden by cascaded rules or not\n\t\t\tif ( !values[ index ] && display === \"none\" ) {\n\t\t\t\telem.style.display = \"\";\n\t\t\t}\n\n\t\t\t// Set elements which have been overridden with display: none\n\t\t\t// in a stylesheet to whatever the default browser style is\n\t\t\t// for such an element\n\t\t\tif ( elem.style.display === \"\" && isHidden( elem ) ) {\n\t\t\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\", defaultDisplay(elem.nodeName) );\n\t\t\t}\n\t\t} else {\n\t\t\thidden = isHidden( elem );\n\n\t\t\tif ( display && display !== \"none\" || !hidden ) {\n\t\t\t\tjQuery._data( elem, \"olddisplay\", hidden ? display : jQuery.css( elem, \"display\" ) );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of most of the elements in a second loop\n\t// to avoid the constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( !show || elem.style.display === \"none\" || elem.style.display === \"\" ) {\n\t\t\telem.style.display = show ? values[ index ] || \"\" : \"none\";\n\t\t}\n\t}\n\n\treturn elements;\n}\n\nfunction setPositiveNumber( elem, value, subtract ) {\n\tvar matches = rnumsplit.exec( value );\n\treturn matches ?\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {\n\tvar i = extra === ( isBorderBox ? \"border\" : \"content\" ) ?\n\t\t// If we already have the right measurement, avoid augmentation\n\t\t4 :\n\t\t// Otherwise initialize for horizontal or vertical properties\n\t\tname === \"width\" ? 1 : 0,\n\n\t\tval = 0;\n\n\tfor ( ; i < 4; i += 2 ) {\n\t\t// both box models exclude margin, so add it if we want it\n\t\tif ( extra === \"margin\" ) {\n\t\t\tval += jQuery.css( elem, extra + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\tif ( isBorderBox ) {\n\t\t\t// border-box includes padding, so remove it if we want content\n\t\t\tif ( extra === \"content\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// at this point, extra isn't border nor margin, so remove border\n\t\t\tif ( extra !== \"margin\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t} else {\n\t\t\t// at this point, extra isn't content, so add padding\n\t\t\tval += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// at this point, extra isn't content nor padding, so add border\n\t\t\tif ( extra !== \"padding\" ) {\n\t\t\t\tval += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn val;\n}\n\nfunction getWidthOrHeight( elem, name, extra ) {\n\n\t// Start with offset property, which is equivalent to the border-box value\n\tvar valueIsBorderBox = true,\n\t\tval = name === \"width\" ? elem.offsetWidth : elem.offsetHeight,\n\t\tstyles = getStyles( elem ),\n\t\tisBorderBox = support.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t// some non-html elements return undefined for offsetWidth, so check for null/undefined\n\t// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285\n\t// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668\n\tif ( val <= 0 || val == null ) {\n\t\t// Fall back to computed then uncomputed css if necessary\n\t\tval = curCSS( elem, name, styles );\n\t\tif ( val < 0 || val == null ) {\n\t\t\tval = elem.style[ name ];\n\t\t}\n\n\t\t// Computed unit is not pixels. Stop here and return.\n\t\tif ( rnumnonpx.test(val) ) {\n\t\t\treturn val;\n\t\t}\n\n\t\t// we need the check for style in case a browser which returns unreliable values\n\t\t// for getComputedStyle silently falls back to the reliable elem.style\n\t\tvalueIsBorderBox = isBorderBox && ( support.boxSizingReliable() || val === elem.style[ name ] );\n\n\t\t// Normalize \"\", auto, and prepare for extra\n\t\tval = parseFloat( val ) || 0;\n\t}\n\n\t// use the active box-sizing model to add/subtract irrelevant styles\n\treturn ( val +\n\t\taugmentWidthOrHeight(\n\t\t\telem,\n\t\t\tname,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend({\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {\n\t\t// normalize float css property\n\t\t\"float\": support.cssFloat ? \"cssFloat\" : \"styleFloat\"\n\t},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = jQuery.camelCase( name ),\n\t\t\tstyle = elem.style;\n\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// convert relative number strings (+= or -=) to relative numbers. #7345\n\t\t\tif ( type === \"string\" && (ret = rrelNum.exec( value )) ) {\n\t\t\t\tvalue = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set. See: #7116\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add 'px' to the (except for certain CSS properties)\n\t\t\tif ( type === \"number\" && !jQuery.cssNumber[ origName ] ) {\n\t\t\t\tvalue += \"px\";\n\t\t\t}\n\n\t\t\t// Fixes #8908, it can be done more correctly by specifing setters in cssHooks,\n\t\t\t// but it would mean to define eight (for every problematic property) identical functions\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf(\"background\") === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !(\"set\" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {\n\n\t\t\t\t// Support: IE\n\t\t\t\t// Swallow errors from 'invalid' CSS values (#5509)\n\t\t\t\ttry {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t} else {\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar num, val, hooks,\n\t\t\torigName = jQuery.camelCase( name );\n\n\t\t// Make sure that we're working with the right name\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t//convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Return, converting to number if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || jQuery.isNumeric( num ) ? num || 0 : val;\n\t\t}\n\t\treturn val;\n\t}\n});\n\njQuery.each([ \"height\", \"width\" ], function( i, name ) {\n\tjQuery.cssHooks[ name ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\t\t\t\t// certain elements can have dimension info if we invisibly show them\n\t\t\t\t// however, it must have a current display style that would benefit from this\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) && elem.offsetWidth === 0 ?\n\t\t\t\t\tjQuery.swap( elem, cssShow, function() {\n\t\t\t\t\t\treturn getWidthOrHeight( elem, name, extra );\n\t\t\t\t\t}) :\n\t\t\t\t\tgetWidthOrHeight( elem, name, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar styles = extra && getStyles( elem );\n\t\t\treturn setPositiveNumber( elem, value, extra ?\n\t\t\t\taugmentWidthOrHeight(\n\t\t\t\t\telem,\n\t\t\t\t\tname,\n\t\t\t\t\textra,\n\t\t\t\t\tsupport.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\t\tstyles\n\t\t\t\t) : 0\n\t\t\t);\n\t\t}\n\t};\n});\n\nif ( !support.opacity ) {\n\tjQuery.cssHooks.opacity = {\n\t\tget: function( elem, computed ) {\n\t\t\t// IE uses filters for opacity\n\t\t\treturn ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || \"\" ) ?\n\t\t\t\t( 0.01 * parseFloat( RegExp.$1 ) ) + \"\" :\n\t\t\t\tcomputed ? \"1\" : \"\";\n\t\t},\n\n\t\tset: function( elem, value ) {\n\t\t\tvar style = elem.style,\n\t\t\t\tcurrentStyle = elem.currentStyle,\n\t\t\t\topacity = jQuery.isNumeric( value ) ? \"alpha(opacity=\" + value * 100 + \")\" : \"\",\n\t\t\t\tfilter = currentStyle && currentStyle.filter || style.filter || \"\";\n\n\t\t\t// IE has trouble with opacity if it does not have layout\n\t\t\t// Force it by setting the zoom level\n\t\t\tstyle.zoom = 1;\n\n\t\t\t// if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652\n\t\t\t// if value === \"\", then remove inline opacity #12685\n\t\t\tif ( ( value >= 1 || value === \"\" ) &&\n\t\t\t\t\tjQuery.trim( filter.replace( ralpha, \"\" ) ) === \"\" &&\n\t\t\t\t\tstyle.removeAttribute ) {\n\n\t\t\t\t// Setting style.filter to null, \"\" & \" \" still leave \"filter:\" in the cssText\n\t\t\t\t// if \"filter:\" is present at all, clearType is disabled, we want to avoid this\n\t\t\t\t// style.removeAttribute is IE Only, but so apparently is this code path...\n\t\t\t\tstyle.removeAttribute( \"filter\" );\n\n\t\t\t\t// if there is no filter style applied in a css rule or unset inline opacity, we are done\n\t\t\t\tif ( value === \"\" || currentStyle && !currentStyle.filter ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// otherwise, set new filter values\n\t\t\tstyle.filter = ralpha.test( filter ) ?\n\t\t\t\tfilter.replace( ralpha, opacity ) :\n\t\t\t\tfilter + \" \" + opacity;\n\t\t}\n\t};\n}\n\njQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\t// Work around by temporarily setting element display to inline-block\n\t\t\treturn jQuery.swap( elem, { \"display\": \"inline-block\" },\n\t\t\t\tcurCSS, [ elem, \"marginRight\" ] );\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each({\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split(\" \") : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( !rmargin.test( prefix ) ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n});\n\njQuery.fn.extend({\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( jQuery.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t},\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( isHidden( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t});\n\t}\n});\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || \"swing\";\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\tif ( tween.elem[ tween.prop ] != null &&\n\t\t\t\t(!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails\n\t\t\t// so, simple values such as \"10px\" are parsed to Float.\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\t\t\t// use step hook for back compat - use cssHook if its there - use .style if its\n\t\t\t// available and use plain properties where available\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9\n// Panic based approach to setting things on disconnected nodes\n\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t}\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back Compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, timerId,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trfxnum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" ),\n\trrun = /queueHooks$/,\n\tanimationPrefilters = [ defaultPrefilter ],\n\ttweeners = {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value ),\n\t\t\t\ttarget = tween.cur(),\n\t\t\t\tparts = rfxnum.exec( value ),\n\t\t\t\tunit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t\t\t// Starting value computation is required for potential unit mismatches\n\t\t\t\tstart = ( jQuery.cssNumber[ prop ] || unit !== \"px\" && +target ) &&\n\t\t\t\t\trfxnum.exec( jQuery.css( tween.elem, prop ) ),\n\t\t\t\tscale = 1,\n\t\t\t\tmaxIterations = 20;\n\n\t\t\tif ( start && start[ 3 ] !== unit ) {\n\t\t\t\t// Trust units reported by jQuery.css\n\t\t\t\tunit = unit || start[ 3 ];\n\n\t\t\t\t// Make sure we update the tween properties later on\n\t\t\t\tparts = parts || [];\n\n\t\t\t\t// Iteratively approximate from a nonzero starting point\n\t\t\t\tstart = +target || 1;\n\n\t\t\t\tdo {\n\t\t\t\t\t// If previous iteration zeroed out, double until we get *something*\n\t\t\t\t\t// Use a string for doubling factor so we don't accidentally see scale as unchanged below\n\t\t\t\t\tscale = scale || \".5\";\n\n\t\t\t\t\t// Adjust and apply\n\t\t\t\t\tstart = start / scale;\n\t\t\t\t\tjQuery.style( tween.elem, prop, start + unit );\n\n\t\t\t\t// Update scale, tolerating zero or NaN from tween.cur()\n\t\t\t\t// And breaking the loop if scale is unchanged or perfect, or if we've just had enough\n\t\t\t\t} while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );\n\t\t\t}\n\n\t\t\t// Update tween properties\n\t\t\tif ( parts ) {\n\t\t\t\tstart = tween.start = +start || +target || 0;\n\t\t\t\ttween.unit = unit;\n\t\t\t\t// If a +=/-= token was provided, we're doing a relative animation\n\t\t\t\ttween.end = parts[ 1 ] ?\n\t\t\t\t\tstart + ( parts[ 1 ] + 1 ) * parts[ 2 ] :\n\t\t\t\t\t+parts[ 2 ];\n\t\t\t}\n\n\t\t\treturn tween;\n\t\t} ]\n\t};\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\tsetTimeout(function() {\n\t\tfxNow = undefined;\n\t});\n\treturn ( fxNow = jQuery.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\tattrs = { height: type },\n\t\ti = 0;\n\n\t// if we include width, step value is 1 to do all cssExpand values,\n\t// if we don't include width, step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4 ; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( tweeners[ prop ] || [] ).concat( tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( (tween = collection[ index ].call( animation, prop, value )) ) {\n\n\t\t\t// we're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\t/* jshint validthis: true */\n\tvar prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHidden( elem ),\n\t\tdataShow = jQuery._data( elem, \"fxshow\" );\n\n\t// handle queue: false promises\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always(function() {\n\t\t\t// doing this makes sure that the complete handler will be called\n\t\t\t// before this completes\n\t\t\tanim.always(function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t}\n\n\t// height/width overflow pass\n\tif ( elem.nodeType === 1 && ( \"height\" in props || \"width\" in props ) ) {\n\t\t// Make sure that nothing sneaks out\n\t\t// Record all 3 overflow attributes because IE does not\n\t\t// change the overflow attribute when overflowX and\n\t\t// overflowY are set to the same value\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Set display property to inline-block for height/width\n\t\t// animations on inline elements that are having width/height animated\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\n\t\t// Test default display if display is currently \"none\"\n\t\tcheckDisplay = display === \"none\" ?\n\t\t\tjQuery._data( elem, \"olddisplay\" ) || defaultDisplay( elem.nodeName ) : display;\n\n\t\tif ( checkDisplay === \"inline\" && jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t// inline-level elements accept inline-block;\n\t\t\t// block-level elements need to be inline with layout\n\t\t\tif ( !support.inlineBlockNeedsLayout || defaultDisplay( elem.nodeName ) === \"inline\" ) {\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t} else {\n\t\t\t\tstyle.zoom = 1;\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tif ( !support.shrinkWrapBlocks() ) {\n\t\t\tanim.always(function() {\n\t\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t\t});\n\t\t}\n\t}\n\n\t// show/hide pass\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.exec( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\n\t\t// Any non-fx value stops us from restoring the original display value\n\t\t} else {\n\t\t\tdisplay = undefined;\n\t\t}\n\t}\n\n\tif ( !jQuery.isEmptyObject( orig ) ) {\n\t\tif ( dataShow ) {\n\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\thidden = dataShow.hidden;\n\t\t\t}\n\t\t} else {\n\t\t\tdataShow = jQuery._data( elem, \"fxshow\", {} );\n\t\t}\n\n\t\t// store state if its toggle - enables .stop().toggle() to \"reverse\"\n\t\tif ( toggle ) {\n\t\t\tdataShow.hidden = !hidden;\n\t\t}\n\t\tif ( hidden ) {\n\t\t\tjQuery( elem ).show();\n\t\t} else {\n\t\t\tanim.done(function() {\n\t\t\t\tjQuery( elem ).hide();\n\t\t\t});\n\t\t}\n\t\tanim.done(function() {\n\t\t\tvar prop;\n\t\t\tjQuery._removeData( elem, \"fxshow\" );\n\t\t\tfor ( prop in orig ) {\n\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t}\n\t\t});\n\t\tfor ( prop in orig ) {\n\t\t\ttween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\n\t\t\tif ( !( prop in dataShow ) ) {\n\t\t\t\tdataShow[ prop ] = tween.start;\n\t\t\t\tif ( hidden ) {\n\t\t\t\t\ttween.end = tween.start;\n\t\t\t\t\ttween.start = prop === \"width\" || prop === \"height\" ? 1 : 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t// If this is a noop like .hide().hide(), restore an overwritten display value\n\t} else if ( (display === \"none\" ? defaultDisplay( elem.nodeName ) : display) === \"inline\" ) {\n\t\tstyle.display = display;\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = jQuery.camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( jQuery.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// not quite $.extend, this wont overwrite keys already present.\n\t\t\t// also - reusing 'index' from above because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = animationPrefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\t\t\t// don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t}),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\t\t\t\t// archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ]);\n\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t} else {\n\t\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\t\tanimation = deferred.promise({\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, { specialEasing: {} }, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\t\t\t\t\t// if we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// resolve when we played the last frame\n\t\t\t\t// otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t}),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length ; index++ ) {\n\t\tresult = animationPrefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( jQuery.isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t})\n\t);\n\n\t// attach callbacks from options\n\treturn animation.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\ttweener: function( props, callback ) {\n\t\tif ( jQuery.isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.split(\" \");\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length ; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\ttweeners[ prop ] = tweeners[ prop ] || [];\n\t\t\ttweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tanimationPrefilters.unshift( callback );\n\t\t} else {\n\t\t\tanimationPrefilters.push( callback );\n\t\t}\n\t}\n});\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tjQuery.isFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !jQuery.isFunction( easing ) && easing\n\t};\n\n\topt.duration = jQuery.fx.off ? 0 : typeof opt.duration === \"number\" ? opt.duration :\n\t\topt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;\n\n\t// normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( jQuery.isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend({\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHidden ).css( \"opacity\", 0 ).show()\n\n\t\t\t// animate to the value specified\n\t\t\t.end().animate({ opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || jQuery._data( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue && type !== false ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = jQuery._data( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// start the next in the queue if the last step wasn't forced\n\t\t\t// timers currently will call their complete callbacks, which will dequeue\n\t\t\t// but only if they were gotoEnd\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t});\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tvar index,\n\t\t\t\tdata = jQuery._data( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t});\n\t}\n});\n\njQuery.each([ \"toggle\", \"show\", \"hide\" ], function( i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n});\n\n// Generate shortcuts for custom animations\njQuery.each({\n\tslideDown: genFx(\"show\"),\n\tslideUp: genFx(\"hide\"),\n\tslideToggle: genFx(\"toggle\"),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n});\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ttimers = jQuery.timers,\n\t\ti = 0;\n\n\tfxNow = jQuery.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\t\t// Checks the timer has not already been removed\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tif ( timer() ) {\n\t\tjQuery.fx.start();\n\t} else {\n\t\tjQuery.timers.pop();\n\t}\n};\n\njQuery.fx.interval = 13;\n\njQuery.fx.start = function() {\n\tif ( !timerId ) {\n\t\ttimerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );\n\t}\n};\n\njQuery.fx.stop = function() {\n\tclearInterval( timerId );\n\ttimerId = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\tclearTimeout( timeout );\n\t\t};\n\t});\n};\n\n\n(function() {\n\t// Minified: var a,b,c,d,e\n\tvar input, div, select, a, opt;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.setAttribute( \"className\", \"t\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName(\"a\")[ 0 ];\n\n\t// First batch of tests.\n\tselect = document.createElement(\"select\");\n\topt = select.appendChild( document.createElement(\"option\") );\n\tinput = div.getElementsByTagName(\"input\")[ 0 ];\n\n\ta.style.cssText = \"top:1px\";\n\n\t// Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)\n\tsupport.getSetAttribute = div.className !== \"t\";\n\n\t// Get the style information from getAttribute\n\t// (IE uses .cssText instead)\n\tsupport.style = /top/.test( a.getAttribute(\"style\") );\n\n\t// Make sure that URLs aren't manipulated\n\t// (IE normalizes it by default)\n\tsupport.hrefNormalized = a.getAttribute(\"href\") === \"/a\";\n\n\t// Check the default checkbox/radio value (\"\" on WebKit; \"on\" elsewhere)\n\tsupport.checkOn = !!input.value;\n\n\t// Make sure that a selected-by-default option has a working selected property.\n\t// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)\n\tsupport.optSelected = opt.selected;\n\n\t// Tests for enctype support on a form (#6743)\n\tsupport.enctype = !!document.createElement(\"form\").enctype;\n\n\t// Make sure that the options inside disabled selects aren't marked as disabled\n\t// (WebKit marks them as disabled)\n\tselect.disabled = true;\n\tsupport.optDisabled = !opt.disabled;\n\n\t// Support: IE8 only\n\t// Check if we can trust getAttribute(\"value\")\n\tinput = document.createElement( \"input\" );\n\tinput.setAttribute( \"value\", \"\" );\n\tsupport.input = input.getAttribute( \"value\" ) === \"\";\n\n\t// Check if an input maintains its value after becoming a radio\n\tinput.value = \"t\";\n\tinput.setAttribute( \"type\", \"radio\" );\n\tsupport.radioValue = input.value === \"t\";\n})();\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend({\n\tval: function( value ) {\n\t\tvar hooks, ret, isFunction,\n\t\t\telem = this[0];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, \"value\" )) !== undefined ) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\treturn typeof ret === \"string\" ?\n\t\t\t\t\t// handle most common string cases\n\t\t\t\t\tret.replace(rreturn, \"\") :\n\t\t\t\t\t// handle cases where value is null/undef or number\n\t\t\t\t\tret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tisFunction = jQuery.isFunction( value );\n\n\t\treturn this.each(function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( isFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\t\t\t} else if ( jQuery.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t});\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !(\"set\" in hooks) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\t\t\t\t\t// Support: IE10-11+\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\tjQuery.trim( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\" || index < 0,\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length,\n\t\t\t\t\ti = index < 0 ?\n\t\t\t\t\t\tmax :\n\t\t\t\t\t\tone ? index : 0;\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// oldIE doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t( support.optDisabled ? !option.disabled : option.getAttribute(\"disabled\") === null ) &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\tif ( jQuery.inArray( jQuery.valHooks.option.get( option ), values ) >= 0 ) {\n\n\t\t\t\t\t\t// Support: IE6\n\t\t\t\t\t\t// When new option element is added to select box we need to\n\t\t\t\t\t\t// force reflow of newly added node in order to workaround delay\n\t\t\t\t\t\t// of initialization properties\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\toption.selected = optionSet = true;\n\n\t\t\t\t\t\t} catch ( _ ) {\n\n\t\t\t\t\t\t\t// Will be executed only in IE6\n\t\t\t\t\t\t\toption.scrollHeight;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\toption.selected = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\n\t\t\t\treturn options;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Radios and checkboxes getter/setter\njQuery.each([ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( jQuery.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\t// Support: Webkit\n\t\t\t// \"\" is returned instead of \"on\" if a value isn't specified\n\t\t\treturn elem.getAttribute(\"value\") === null ? \"on\" : elem.value;\n\t\t};\n\t}\n});\n\n\n\n\nvar nodeHook, boolHook,\n\tattrHandle = jQuery.expr.attrHandle,\n\truseDefault = /^(?:checked|selected)$/i,\n\tgetSetAttribute = support.getSetAttribute,\n\tgetSetInput = support.input;\n\njQuery.fn.extend({\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tattr: function( elem, name, value ) {\n\t\tvar hooks, ret,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set attributes on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === strundefined ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// All attributes are lowercase\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\tname = name.toLowerCase();\n\t\t\thooks = jQuery.attrHooks[ name ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\n\t\t\t} else if ( hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {\n\t\t\t\treturn ret;\n\n\t\t\t} else {\n\t\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\t\treturn value;\n\t\t\t}\n\n\t\t} else if ( hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ) {\n\t\t\treturn ret;\n\n\t\t} else {\n\t\t\tret = jQuery.find.attr( elem, name );\n\n\t\t\t// Non-existent attributes return null, we normalize to undefined\n\t\t\treturn ret == null ?\n\t\t\t\tundefined :\n\t\t\t\tret;\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name, propName,\n\t\t\ti = 0,\n\t\t\tattrNames = value && value.match( rnotwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( (name = attrNames[i++]) ) {\n\t\t\t\tpropName = jQuery.propFix[ name ] || name;\n\n\t\t\t\t// Boolean attributes get special treatment (#10870)\n\t\t\t\tif ( jQuery.expr.match.bool.test( name ) ) {\n\t\t\t\t\t// Set corresponding property to false\n\t\t\t\t\tif ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t// Also clear defaultChecked/defaultSelected (if appropriate)\n\t\t\t\t\t} else {\n\t\t\t\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] =\n\t\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t}\n\n\t\t\t\t// See #9699 for explanation of this approach (setting first, then removal)\n\t\t\t\t} else {\n\t\t\t\t\tjQuery.attr( elem, name, \"\" );\n\t\t\t\t}\n\n\t\t\t\telem.removeAttribute( getSetAttribute ? name : propName );\n\t\t\t}\n\t\t}\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" && jQuery.nodeName(elem, \"input\") ) {\n\t\t\t\t\t// Setting the type on a radio button after the value resets the value in IE6-9\n\t\t\t\t\t// Reset value to default in case type is set after value during creation\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Hook for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t// IE<8 needs the *property* name\n\t\t\telem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name );\n\n\t\t// Use defaultChecked and defaultSelected for oldIE\n\t\t} else {\n\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] = elem[ name ] = true;\n\t\t}\n\n\t\treturn name;\n\t}\n};\n\n// Retrieve booleans specially\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( i, name ) {\n\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ?\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret, handle;\n\t\t\tif ( !isXML ) {\n\t\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\t\thandle = attrHandle[ name ];\n\t\t\t\tattrHandle[ name ] = ret;\n\t\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t\tattrHandle[ name ] = handle;\n\t\t\t}\n\t\t\treturn ret;\n\t\t} :\n\t\tfunction( elem, name, isXML ) {\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn elem[ jQuery.camelCase( \"default-\" + name ) ] ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n});\n\n// fix oldIE attroperties\nif ( !getSetInput || !getSetAttribute ) {\n\tjQuery.attrHooks.value = {\n\t\tset: function( elem, value, name ) {\n\t\t\tif ( jQuery.nodeName( elem, \"input\" ) ) {\n\t\t\t\t// Does not return so that setAttribute is also used\n\t\t\t\telem.defaultValue = value;\n\t\t\t} else {\n\t\t\t\t// Use nodeHook if defined (#1954); otherwise setAttribute is fine\n\t\t\t\treturn nodeHook && nodeHook.set( elem, value, name );\n\t\t\t}\n\t\t}\n\t};\n}\n\n// IE6/7 do not support getting/setting some attributes with get/setAttribute\nif ( !getSetAttribute ) {\n\n\t// Use this for any attribute in IE6/7\n\t// This fixes almost every IE6/7 issue\n\tnodeHook = {\n\t\tset: function( elem, value, name ) {\n\t\t\t// Set the existing or create a new attribute node\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( !ret ) {\n\t\t\t\telem.setAttributeNode(\n\t\t\t\t\t(ret = elem.ownerDocument.createAttribute( name ))\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tret.value = value += \"\";\n\n\t\t\t// Break association with cloned elements by also using setAttribute (#9646)\n\t\t\tif ( name === \"value\" || value === elem.getAttribute( name ) ) {\n\t\t\t\treturn value;\n\t\t\t}\n\t\t}\n\t};\n\n\t// Some attributes are constructed with empty-string values when not defined\n\tattrHandle.id = attrHandle.name = attrHandle.coords =\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret;\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn (ret = elem.getAttributeNode( name )) && ret.value !== \"\" ?\n\t\t\t\t\tret.value :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n\n\t// Fixing value retrieval on a button requires this module\n\tjQuery.valHooks.button = {\n\t\tget: function( elem, name ) {\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( ret && ret.specified ) {\n\t\t\t\treturn ret.value;\n\t\t\t}\n\t\t},\n\t\tset: nodeHook.set\n\t};\n\n\t// Set contenteditable to false on removals(#10429)\n\t// Setting to empty string throws an error as an invalid value\n\tjQuery.attrHooks.contenteditable = {\n\t\tset: function( elem, value, name ) {\n\t\t\tnodeHook.set( elem, value === \"\" ? false : value, name );\n\t\t}\n\t};\n\n\t// Set width and height to auto instead of 0 on empty string( Bug #8150 )\n\t// This is for removals\n\tjQuery.each([ \"width\", \"height\" ], function( i, name ) {\n\t\tjQuery.attrHooks[ name ] = {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( value === \"\" ) {\n\t\t\t\t\telem.setAttribute( name, \"auto\" );\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\nif ( !support.style ) {\n\tjQuery.attrHooks.style = {\n\t\tget: function( elem ) {\n\t\t\t// Return undefined in the case of empty string\n\t\t\t// Note: IE uppercases css property names, but if we were to .toLowerCase()\n\t\t\t// .cssText, that would destroy case senstitivity in URL's, like in \"background\"\n\t\t\treturn elem.style.cssText || undefined;\n\t\t},\n\t\tset: function( elem, value ) {\n\t\t\treturn ( elem.style.cssText = value + \"\" );\n\t\t}\n\t};\n}\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button|object)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend({\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\tname = jQuery.propFix[ name ] || name;\n\t\treturn this.each(function() {\n\t\t\t// try/catch handles cases where IE balks (such as removing a property on window)\n\t\t\ttry {\n\t\t\t\tthis[ name ] = undefined;\n\t\t\t\tdelete this[ name ];\n\t\t\t} catch( e ) {}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t},\n\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks, notxml,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set properties on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tnotxml = nType !== 1 || !jQuery.isXMLDoc( elem );\n\n\t\tif ( notxml ) {\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\treturn hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?\n\t\t\t\tret :\n\t\t\t\t( elem[ name ] = value );\n\n\t\t} else {\n\t\t\treturn hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ?\n\t\t\t\tret :\n\t\t\t\telem[ name ];\n\t\t}\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\t\t\t\t// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set\n\t\t\t\t// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\treturn tabindex ?\n\t\t\t\t\tparseInt( tabindex, 10 ) :\n\t\t\t\t\trfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?\n\t\t\t\t\t\t0 :\n\t\t\t\t\t\t-1;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Some attributes require a special call on IE\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !support.hrefNormalized ) {\n\t// href/src property should get the full normalized URL (#10299/#12915)\n\tjQuery.each([ \"href\", \"src\" ], function( i, name ) {\n\t\tjQuery.propHooks[ name ] = {\n\t\t\tget: function( elem ) {\n\t\t\t\treturn elem.getAttribute( name, 4 );\n\t\t\t}\n\t\t};\n\t});\n}\n\n// Support: Safari, IE9+\n// mis-reports the default selected property of an option\n// Accessing the parent's selectedIndex property fixes it\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\t// Make sure that it also works with optgroups, see #5701\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\t};\n}\n\njQuery.each([\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n});\n\n// IE6/7 call enctype encoding\nif ( !support.enctype ) {\n\tjQuery.propFix.enctype = \"encoding\";\n}\n\n\n\n\nvar rclass = /[\\t\\r\\n\\f]/g;\n\njQuery.fn.extend({\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\n\t\tif ( proceed ) {\n\t\t\t// The disjunction here is for better compressibility (see removeClass)\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\" \"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = jQuery.trim( cur );\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = arguments.length === 0 || typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\t\tif ( proceed ) {\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\"\"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) >= 0 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = value ? jQuery.trim( cur ) : \"\";\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value;\n\n\t\tif ( typeof stateVal === \"boolean\" && type === \"string\" ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tjQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( type === \"string\" ) {\n\t\t\t\t// toggle individual class names\n\t\t\t\tvar className,\n\t\t\t\t\ti = 0,\n\t\t\t\t\tself = jQuery( this ),\n\t\t\t\t\tclassNames = value.match( rnotwhite ) || [];\n\n\t\t\t\twhile ( (className = classNames[ i++ ]) ) {\n\t\t\t\t\t// check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( type === strundefined || type === \"boolean\" ) {\n\t\t\t\tif ( this.className ) {\n\t\t\t\t\t// store className if set\n\t\t\t\t\tjQuery._data( this, \"__className__\", this.className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed \"false\",\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tthis.className = this.className || value === false ? \"\" : jQuery._data( this, \"__className__\" ) || \"\";\n\t\t\t}\n\t\t});\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className = \" \" + selector + \" \",\n\t\t\ti = 0,\n\t\t\tl = this.length;\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tif ( this[i].nodeType === 1 && (\" \" + this[i].className + \" \").replace(rclass, \" \").indexOf( className ) >= 0 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n});\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\njQuery.each( (\"blur focus focusin focusout load resize scroll unload click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup error contextmenu\").split(\" \"), function( i, name ) {\n\n\t// Handle event binding\n\tjQuery.fn[ name ] = function( data, fn ) {\n\t\treturn arguments.length > 0 ?\n\t\t\tthis.on( name, null, data, fn ) :\n\t\t\tthis.trigger( name );\n\t};\n});\n\njQuery.fn.extend({\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t},\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ? this.off( selector, \"**\" ) : this.off( types, selector || \"**\", fn );\n\t}\n});\n\n\nvar nonce = jQuery.now();\n\nvar rquery = (/\\?/);\n\n\n\nvar rvalidtokens = /(,)|(\\[|{)|(}|])|\"(?:[^\"\\\\\\r\\n]|\\\\[\"\\\\\\/bfnrt]|\\\\u[\\da-fA-F]{4})*\"\\s*:?|true|false|null|-?(?!0\\d)\\d+(?:\\.\\d+|)(?:[eE][+-]?\\d+|)/g;\n\njQuery.parseJSON = function( data ) {\n\t// Attempt to parse using the native JSON parser first\n\tif ( window.JSON && window.JSON.parse ) {\n\t\t// Support: Android 2.3\n\t\t// Workaround failure to string-cast null input\n\t\treturn window.JSON.parse( data + \"\" );\n\t}\n\n\tvar requireNonComma,\n\t\tdepth = null,\n\t\tstr = jQuery.trim( data + \"\" );\n\n\t// Guard against invalid (and possibly dangerous) input by ensuring that nothing remains\n\t// after removing valid tokens\n\treturn str && !jQuery.trim( str.replace( rvalidtokens, function( token, comma, open, close ) {\n\n\t\t// Force termination if we see a misplaced comma\n\t\tif ( requireNonComma && comma ) {\n\t\t\tdepth = 0;\n\t\t}\n\n\t\t// Perform no more replacements after returning to outermost depth\n\t\tif ( depth === 0 ) {\n\t\t\treturn token;\n\t\t}\n\n\t\t// Commas must not follow \"[\", \"{\", or \",\"\n\t\trequireNonComma = open || comma;\n\n\t\t// Determine new depth\n\t\t// array/object open (\"[\" or \"{\"): depth += true - false (increment)\n\t\t// array/object close (\"]\" or \"}\"): depth += false - true (decrement)\n\t\t// other cases (\",\" or primitive): depth += true - true (numeric cast)\n\t\tdepth += !close - !open;\n\n\t\t// Remove this token\n\t\treturn \"\";\n\t}) ) ?\n\t\t( Function( \"return \" + str ) )() :\n\t\tjQuery.error( \"Invalid JSON: \" + data );\n};\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml, tmp;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\ttry {\n\t\tif ( window.DOMParser ) { // Standard\n\t\t\ttmp = new DOMParser();\n\t\t\txml = tmp.parseFromString( data, \"text/xml\" );\n\t\t} else { // IE\n\t\t\txml = new ActiveXObject( \"Microsoft.XMLDOM\" );\n\t\t\txml.async = \"false\";\n\t\t\txml.loadXML( data );\n\t\t}\n\t} catch( e ) {\n\t\txml = undefined;\n\t}\n\tif ( !xml || !xml.documentElement || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\t// Document location\n\tajaxLocParts,\n\tajaxLocation,\n\n\trhash = /#.*$/,\n\trts = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)\\r?$/mg, // IE leaves an \\r character at EOL\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\trurl = /^([\\w.+-]+:)(?:\\/\\/(?:[^\\/?#]*@|)([^\\/?#:]*)(?::(\\d+)|)|)/,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat(\"*\");\n\n// #8138, IE may throw an exception when accessing\n// a field from window.location if document.domain has been set\ntry {\n\tajaxLocation = location.href;\n} catch( e ) {\n\t// Use the href attribute of an A element\n\t// since IE will modify it given document.location\n\tajaxLocation = document.createElement( \"a\" );\n\tajaxLocation.href = \"\";\n\tajaxLocation = ajaxLocation.href;\n}\n\n// Segment location into parts\najaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];\n\n\t\tif ( jQuery.isFunction( func ) ) {\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( (dataType = dataTypes[i++]) ) {\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType.charAt( 0 ) === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t});\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar deep, key,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\tvar firstDataType, ct, finalDataType, type,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader(\"Content-Type\");\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[0] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s[ \"throws\" ] ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn { state: \"parsererror\", error: conv ? e : \"No conversion from \" + prev + \" to \" + current };\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend({\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: ajaxLocation,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /xml/,\n\t\t\thtml: /html/,\n\t\t\tjson: /json/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": jQuery.parseJSON,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar // Cross-domain detection vars\n\t\t\tparts,\n\t\t\t// Loop variable\n\t\t\ti,\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\t\t\t// Response headers as string\n\t\t\tresponseHeadersString,\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\ttransport,\n\t\t\t// Response headers\n\t\t\tresponseHeaders,\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\tjQuery.event,\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks(\"once memory\"),\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\t\t\t// The jqXHR state\n\t\t\tstate = 0,\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( state === 2 ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( (match = rheaders.exec( responseHeadersString )) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[1].toLowerCase() ] = match[ 2 ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match;\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn state === 2 ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tvar lname = name.toLowerCase();\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\tname = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\t// Lazy-add the new callback in a way that preserves old ones\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR ).complete = completeDeferred.add;\n\t\tjqXHR.success = jqXHR.done;\n\t\tjqXHR.error = jqXHR.fail;\n\n\t\t// Remove hash character (#7531: and string promotion)\n\t\t// Add protocol if not provided (#5866: IE7 issue with protocol-less urls)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || ajaxLocation ) + \"\" ).replace( rhash, \"\" ).replace( rprotocol, ajaxLocParts[ 1 ] + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = jQuery.trim( s.dataType || \"*\" ).toLowerCase().match( rnotwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when we have a protocol:host:port mismatch\n\t\tif ( s.crossDomain == null ) {\n\t\t\tparts = rurl.exec( s.url.toLowerCase() );\n\t\t\ts.crossDomain = !!( parts &&\n\t\t\t\t( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||\n\t\t\t\t\t( parts[ 3 ] || ( parts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) !==\n\t\t\t\t\t\t( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) )\n\t\t\t);\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( state === 2 ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger(\"ajaxStart\");\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\tcacheURL = s.url;\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// If data is available, append data to url\n\t\t\tif ( s.data ) {\n\t\t\t\tcacheURL = ( s.url += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data );\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add anti-cache in url if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\ts.url = rts.test( cacheURL ) ?\n\n\t\t\t\t\t// If there is already a '_' parameter, set its value\n\t\t\t\t\tcacheURL.replace( rts, \"$1_=\" + nonce++ ) :\n\n\t\t\t\t\t// Otherwise add one to the end\n\t\t\t\t\tcacheURL + ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + nonce++;\n\t\t\t}\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tfor ( i in { success: 1, error: 1, complete: 1 } ) {\n\t\t\tjqXHR[ i ]( s[ i ] );\n\t\t}\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = setTimeout(function() {\n\t\t\t\t\tjqXHR.abort(\"timeout\");\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tstate = 1;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\t\t\t\t// Propagate exception as error if not done\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tdone( -1, e );\n\t\t\t\t// Simply rethrow otherwise\n\t\t\t\t} else {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Called once\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// State is \"done\" now\n\t\t\tstate = 2;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\tclearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"Last-Modified\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"etag\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// We extract error from statusText\n\t\t\t\t// then normalize statusText and status for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger(\"ajaxStop\");\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n});\n\njQuery.each( [ \"get\", \"post\" ], function( i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\t\t// shift arguments if data argument was omitted\n\t\tif ( jQuery.isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\treturn jQuery.ajax({\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t});\n\t};\n});\n\n\njQuery._evalUrl = function( url ) {\n\treturn jQuery.ajax({\n\t\turl: url,\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tasync: false,\n\t\tglobal: false,\n\t\t\"throws\": true\n\t});\n};\n\n\njQuery.fn.extend({\n\twrapAll: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapAll( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\tif ( this[0] ) {\n\t\t\t// The elements to wrap the target around\n\t\t\tvar wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);\n\n\t\t\tif ( this[0].parentNode ) {\n\t\t\t\twrap.insertBefore( this[0] );\n\t\t\t}\n\n\t\t\twrap.map(function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstChild && elem.firstChild.nodeType === 1 ) {\n\t\t\t\t\telem = elem.firstChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t}).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapInner( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t});\n\t},\n\n\twrap: function( html ) {\n\t\tvar isFunction = jQuery.isFunction( html );\n\n\t\treturn this.each(function(i) {\n\t\t\tjQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );\n\t\t});\n\t},\n\n\tunwrap: function() {\n\t\treturn this.parent().each(function() {\n\t\t\tif ( !jQuery.nodeName( this, \"body\" ) ) {\n\t\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t\t}\n\t\t}).end();\n\t}\n});\n\n\njQuery.expr.filters.hidden = function( elem ) {\n\t// Support: Opera <= 12.12\n\t// Opera reports offsetWidths and offsetHeights less than zero on some elements\n\treturn elem.offsetWidth <= 0 && elem.offsetHeight <= 0 ||\n\t\t(!support.reliableHiddenOffsets() &&\n\t\t\t((elem.style && elem.style.display) || jQuery.css( elem, \"display\" )) === \"none\");\n};\n\njQuery.expr.filters.visible = function( elem ) {\n\treturn !jQuery.expr.filters.hidden( elem );\n};\n\n\n\n\nvar r20 = /%20/g,\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( jQuery.isArray( obj ) ) {\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams( prefix + \"[\" + ( typeof v === \"object\" ? i : \"\" ) + \"]\", v, traditional, add );\n\t\t\t}\n\t\t});\n\n\t} else if ( !traditional && jQuery.type( obj ) === \"object\" ) {\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, value ) {\n\t\t\t// If value is a function, invoke it and return its value\n\t\t\tvalue = jQuery.isFunction( value ) ? value() : ( value == null ? \"\" : value );\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" + encodeURIComponent( value );\n\t\t};\n\n\t// Set traditional to true for jQuery <= 1.3.2 behavior.\n\tif ( traditional === undefined ) {\n\t\ttraditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t});\n\n\t} else {\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" ).replace( r20, \"+\" );\n};\n\njQuery.fn.extend({\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map(function() {\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t})\n\t\t.filter(function() {\n\t\t\tvar type = this.type;\n\t\t\t// Use .is(\":disabled\") so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t})\n\t\t.map(function( i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\treturn val == null ?\n\t\t\t\tnull :\n\t\t\t\tjQuery.isArray( val ) ?\n\t\t\t\t\tjQuery.map( val, function( val ) {\n\t\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t\t}) :\n\t\t\t\t\t{ name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t}).get();\n\t}\n});\n\n\n// Create the request object\n// (This is still attached to ajaxSettings for backward compatibility)\njQuery.ajaxSettings.xhr = window.ActiveXObject !== undefined ?\n\t// Support: IE6+\n\tfunction() {\n\n\t\t// XHR cannot access local files, always use ActiveX for that case\n\t\treturn !this.isLocal &&\n\n\t\t\t// Support: IE7-8\n\t\t\t// oldIE XHR does not support non-RFC2616 methods (#13240)\n\t\t\t// See http://msdn.microsoft.com/en-us/library/ie/ms536648(v=vs.85).aspx\n\t\t\t// and http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9\n\t\t\t// Although this check for six methods instead of eight\n\t\t\t// since IE also does not support \"trace\" and \"connect\"\n\t\t\t/^(get|post|head|put|delete|options)$/i.test( this.type ) &&\n\n\t\t\tcreateStandardXHR() || createActiveXHR();\n\t} :\n\t// For all other browsers, use the standard XMLHttpRequest object\n\tcreateStandardXHR;\n\nvar xhrId = 0,\n\txhrCallbacks = {},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\n// Support: IE<10\n// Open requests must be manually aborted on unload (#5280)\n// See https://support.microsoft.com/kb/2856746 for more info\nif ( window.attachEvent ) {\n\twindow.attachEvent( \"onunload\", function() {\n\t\tfor ( var key in xhrCallbacks ) {\n\t\t\txhrCallbacks[ key ]( undefined, true );\n\t\t}\n\t});\n}\n\n// Determine support properties\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nxhrSupported = support.ajax = !!xhrSupported;\n\n// Create transport if the browser can provide an xhr\nif ( xhrSupported ) {\n\n\tjQuery.ajaxTransport(function( options ) {\n\t\t// Cross domain only allowed if supported through XMLHttpRequest\n\t\tif ( !options.crossDomain || support.cors ) {\n\n\t\t\tvar callback;\n\n\t\t\treturn {\n\t\t\t\tsend: function( headers, complete ) {\n\t\t\t\t\tvar i,\n\t\t\t\t\t\txhr = options.xhr(),\n\t\t\t\t\t\tid = ++xhrId;\n\n\t\t\t\t\t// Open the socket\n\t\t\t\t\txhr.open( options.type, options.url, options.async, options.username, options.password );\n\n\t\t\t\t\t// Apply custom fields if provided\n\t\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Override mime type if needed\n\t\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t\t}\n\n\t\t\t\t\t// X-Requested-With header\n\t\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\t\tif ( !options.crossDomain && !headers[\"X-Requested-With\"] ) {\n\t\t\t\t\t\theaders[\"X-Requested-With\"] = \"XMLHttpRequest\";\n\t\t\t\t\t}\n\n\t\t\t\t\t// Set headers\n\t\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// IE's ActiveXObject throws a 'Type Mismatch' exception when setting\n\t\t\t\t\t\t// request header to a null-value.\n\t\t\t\t\t\t//\n\t\t\t\t\t\t// To keep consistent with other XHR implementations, cast the value\n\t\t\t\t\t\t// to string and ignore `undefined`.\n\t\t\t\t\t\tif ( headers[ i ] !== undefined ) {\n\t\t\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] + \"\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Do send the request\n\t\t\t\t\t// This may raise an exception which is actually\n\t\t\t\t\t// handled in jQuery.ajax (so no try/catch here)\n\t\t\t\t\txhr.send( ( options.hasContent && options.data ) || null );\n\n\t\t\t\t\t// Listener\n\t\t\t\t\tcallback = function( _, isAbort ) {\n\t\t\t\t\t\tvar status, statusText, responses;\n\n\t\t\t\t\t\t// Was never called and is aborted or complete\n\t\t\t\t\t\tif ( callback && ( isAbort || xhr.readyState === 4 ) ) {\n\t\t\t\t\t\t\t// Clean up\n\t\t\t\t\t\t\tdelete xhrCallbacks[ id ];\n\t\t\t\t\t\t\tcallback = undefined;\n\t\t\t\t\t\t\txhr.onreadystatechange = jQuery.noop;\n\n\t\t\t\t\t\t\t// Abort manually if needed\n\t\t\t\t\t\t\tif ( isAbort ) {\n\t\t\t\t\t\t\t\tif ( xhr.readyState !== 4 ) {\n\t\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tresponses = {};\n\t\t\t\t\t\t\t\tstatus = xhr.status;\n\n\t\t\t\t\t\t\t\t// Support: IE<10\n\t\t\t\t\t\t\t\t// Accessing binary-data responseText throws an exception\n\t\t\t\t\t\t\t\t// (#11426)\n\t\t\t\t\t\t\t\tif ( typeof xhr.responseText === \"string\" ) {\n\t\t\t\t\t\t\t\t\tresponses.text = xhr.responseText;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Firefox throws an exception when accessing\n\t\t\t\t\t\t\t\t// statusText for faulty cross-domain requests\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tstatusText = xhr.statusText;\n\t\t\t\t\t\t\t\t} catch( e ) {\n\t\t\t\t\t\t\t\t\t// We normalize with Webkit giving an empty statusText\n\t\t\t\t\t\t\t\t\tstatusText = \"\";\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Filter status for non standard behaviors\n\n\t\t\t\t\t\t\t\t// If the request is local and we have data: assume a success\n\t\t\t\t\t\t\t\t// (success with no data won't get notified, that's the best we\n\t\t\t\t\t\t\t\t// can do given current implementations)\n\t\t\t\t\t\t\t\tif ( !status && options.isLocal && !options.crossDomain ) {\n\t\t\t\t\t\t\t\t\tstatus = responses.text ? 200 : 404;\n\t\t\t\t\t\t\t\t// IE - #1450: sometimes returns 1223 when it should be 204\n\t\t\t\t\t\t\t\t} else if ( status === 1223 ) {\n\t\t\t\t\t\t\t\t\tstatus = 204;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Call complete if needed\n\t\t\t\t\t\tif ( responses ) {\n\t\t\t\t\t\t\tcomplete( status, statusText, responses, xhr.getAllResponseHeaders() );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\tif ( !options.async ) {\n\t\t\t\t\t\t// if we're in sync mode we fire the callback\n\t\t\t\t\t\tcallback();\n\t\t\t\t\t} else if ( xhr.readyState === 4 ) {\n\t\t\t\t\t\t// (IE6 & IE7) if it's in cache and has been\n\t\t\t\t\t\t// retrieved directly we need to fire the callback\n\t\t\t\t\t\tsetTimeout( callback );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// Add to the list of active xhr callbacks\n\t\t\t\t\t\txhr.onreadystatechange = xhrCallbacks[ id ] = callback;\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tabort: function() {\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tcallback( undefined, true );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t});\n}\n\n// Functions to create xhrs\nfunction createStandardXHR() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch( e ) {}\n}\n\nfunction createActiveXHR() {\n\ttry {\n\t\treturn new window.ActiveXObject( \"Microsoft.XMLHTTP\" );\n\t} catch( e ) {}\n}\n\n\n\n\n// Install script dataType\njQuery.ajaxSetup({\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /(?:java|ecma)script/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n});\n\n// Handle cache's special case and global\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t\ts.global = false;\n\t}\n});\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function(s) {\n\n\t// This transport only deals with cross domain requests\n\tif ( s.crossDomain ) {\n\n\t\tvar script,\n\t\t\thead = document.head || jQuery(\"head\")[0] || document.documentElement;\n\n\t\treturn {\n\n\t\t\tsend: function( _, callback ) {\n\n\t\t\t\tscript = document.createElement(\"script\");\n\n\t\t\t\tscript.async = true;\n\n\t\t\t\tif ( s.scriptCharset ) {\n\t\t\t\t\tscript.charset = s.scriptCharset;\n\t\t\t\t}\n\n\t\t\t\tscript.src = s.url;\n\n\t\t\t\t// Attach handlers for all browsers\n\t\t\t\tscript.onload = script.onreadystatechange = function( _, isAbort ) {\n\n\t\t\t\t\tif ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {\n\n\t\t\t\t\t\t// Handle memory leak in IE\n\t\t\t\t\t\tscript.onload = script.onreadystatechange = null;\n\n\t\t\t\t\t\t// Remove the script\n\t\t\t\t\t\tif ( script.parentNode ) {\n\t\t\t\t\t\t\tscript.parentNode.removeChild( script );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Dereference the script\n\t\t\t\t\t\tscript = null;\n\n\t\t\t\t\t\t// Callback if not abort\n\t\t\t\t\t\tif ( !isAbort ) {\n\t\t\t\t\t\t\tcallback( 200, \"success\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\t// Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\thead.insertBefore( script, head.firstChild );\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( script ) {\n\t\t\t\t\tscript.onload( undefined, true );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n});\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup({\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n});\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" && !( s.contentType || \"\" ).indexOf(\"application/x-www-form-urlencoded\") && rjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[\"script json\"] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always(function() {\n\t\t\t// Restore preexisting value\n\t\t\twindow[ callbackName ] = overwritten;\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\t\t\t\t// make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && jQuery.isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t});\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n});\n\n\n\n\n// data: string of html\n// context (optional): If specified, the fragment will be created in this context, defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\tcontext = context || document;\n\n\tvar parsed = rsingleTag.exec( data ),\n\t\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[1] ) ];\n\t}\n\n\tparsed = jQuery.buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n// Keep a copy of the old load method\nvar _load = jQuery.fn.load;\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tif ( typeof url !== \"string\" && _load ) {\n\t\treturn _load.apply( this, arguments );\n\t}\n\n\tvar selector, response, type,\n\t\tself = this,\n\t\toff = url.indexOf(\" \");\n\n\tif ( off >= 0 ) {\n\t\tselector = jQuery.trim( url.slice( off, url.length ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( jQuery.isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax({\n\t\t\turl: url,\n\n\t\t\t// if \"type\" variable is undefined, then \"GET\" method will be used\n\t\t\ttype: type,\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t}).done(function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery(\"<div>\").append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t}).complete( callback && function( jqXHR, status ) {\n\t\t\tself.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t});\n\t}\n\n\treturn this;\n};\n\n\n\n\n// Attach a bunch of functions for handling common AJAX events\njQuery.each( [ \"ajaxStart\", \"ajaxStop\", \"ajaxComplete\", \"ajaxError\", \"ajaxSuccess\", \"ajaxSend\" ], function( i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n});\n\n\n\n\njQuery.expr.filters.animated = function( elem ) {\n\treturn jQuery.grep(jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t}).length;\n};\n\n\n\n\n\nvar docElem = window.document.documentElement;\n\n/**\n * Gets a window from an element\n */\nfunction getWindow( elem ) {\n\treturn jQuery.isWindow( elem ) ?\n\t\telem :\n\t\telem.nodeType === 9 ?\n\t\t\telem.defaultView || elem.parentWindow :\n\t\t\tfalse;\n}\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\tjQuery.inArray(\"auto\", [ curCSSTop, curCSSLeft ] ) > -1;\n\n\t\t// need to be able to calculate position if either top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( jQuery.isFunction( options ) ) {\n\t\t\toptions = options.call( elem, i, curOffset );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend({\n\toffset: function( options ) {\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each(function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t});\n\t\t}\n\n\t\tvar docElem, win,\n\t\t\tbox = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ],\n\t\t\tdoc = elem && elem.ownerDocument;\n\n\t\tif ( !doc ) {\n\t\t\treturn;\n\t\t}\n\n\t\tdocElem = doc.documentElement;\n\n\t\t// Make sure it's not a disconnected DOM node\n\t\tif ( !jQuery.contains( docElem, elem ) ) {\n\t\t\treturn box;\n\t\t}\n\n\t\t// If we don't have gBCR, just use 0,0 rather than error\n\t\t// BlackBerry 5, iOS 3 (original iPhone)\n\t\tif ( typeof elem.getBoundingClientRect !== strundefined ) {\n\t\t\tbox = elem.getBoundingClientRect();\n\t\t}\n\t\twin = getWindow( doc );\n\t\treturn {\n\t\t\ttop: box.top  + ( win.pageYOffset || docElem.scrollTop )  - ( docElem.clientTop  || 0 ),\n\t\t\tleft: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 )\n\t\t};\n\t},\n\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset,\n\t\t\tparentOffset = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ];\n\n\t\t// fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is its only offset parent\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\t\t\t// we assume that getBoundingClientRect is available when computed position is fixed\n\t\t\toffset = elem.getBoundingClientRect();\n\t\t} else {\n\t\t\t// Get *real* offsetParent\n\t\t\toffsetParent = this.offsetParent();\n\n\t\t\t// Get correct offsets\n\t\t\toffset = this.offset();\n\t\t\tif ( !jQuery.nodeName( offsetParent[ 0 ], \"html\" ) ) {\n\t\t\t\tparentOffset = offsetParent.offset();\n\t\t\t}\n\n\t\t\t// Add offsetParent borders\n\t\t\tparentOffset.top  += jQuery.css( offsetParent[ 0 ], \"borderTopWidth\", true );\n\t\t\tparentOffset.left += jQuery.css( offsetParent[ 0 ], \"borderLeftWidth\", true );\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\t// note: when an element has margin: auto the offsetLeft and marginLeft\n\t\t// are the same in Safari causing offset.left to incorrectly be 0\n\t\treturn {\n\t\t\ttop:  offset.top  - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true)\n\t\t};\n\t},\n\n\toffsetParent: function() {\n\t\treturn this.map(function() {\n\t\t\tvar offsetParent = this.offsetParent || docElem;\n\n\t\t\twhile ( offsetParent && ( !jQuery.nodeName( offsetParent, \"html\" ) && jQuery.css( offsetParent, \"position\" ) === \"static\" ) ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\t\t\treturn offsetParent || docElem;\n\t\t});\n\t}\n});\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = /Y/.test( prop );\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\t\t\tvar win = getWindow( elem );\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? (prop in win) ? win[ prop ] :\n\t\t\t\t\twin.document.documentElement[ method ] :\n\t\t\t\t\telem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : jQuery( win ).scrollLeft(),\n\t\t\t\t\ttop ? val : jQuery( win ).scrollTop()\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length, null );\n\t};\n});\n\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// getComputedStyle returns percent when specified for top/left/bottom/right\n// rather than make the css module depend on the offset module, we just check for it here\njQuery.each( [ \"top\", \"left\" ], function( i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\t\t\t\t// if curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n});\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name }, function( defaultExtra, funcName ) {\n\t\t// margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( jQuery.isWindow( elem ) ) {\n\t\t\t\t\t// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there\n\t\t\t\t\t// isn't a whole lot we can do. See pull request at this URL for discussion:\n\t\t\t\t\t// https://github.com/jquery/jquery/pull/764\n\t\t\t\t\treturn elem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest\n\t\t\t\t\t// unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it.\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable, null );\n\t\t};\n\t});\n});\n\n\n// The number of elements contained in the matched element set\njQuery.fn.size = function() {\n\treturn this.length;\n};\n\njQuery.fn.andSelf = jQuery.fn.addBack;\n\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t});\n}\n\n\n\n\nvar\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in\n// AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === strundefined ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n\n}));\n"
  },
  {
    "path": "docs/images/03_mean/lib/jquery-3.5.1/jquery-AUTHORS.txt",
    "content": "Authors ordered by first contribution.\n\nJohn Resig <jeresig@gmail.com>\nGilles van den Hoven <gilles0181@gmail.com>\nMichael Geary <mike@geary.com>\nStefan Petre <stefan.petre@gmail.com>\nYehuda Katz <wycats@gmail.com>\nCorey Jewett <cj@syntheticplayground.com>\nKlaus Hartl <klaus.hartl@gmail.com>\nFranck Marcia <franck.marcia@gmail.com>\nJörn Zaefferer <joern.zaefferer@gmail.com>\nPaul Bakaus <paul.bakaus@gmail.com>\nBrandon Aaron <brandon.aaron@gmail.com>\nMike Alsup <malsup@gmail.com>\nDave Methvin <dave.methvin@gmail.com>\nEd Engelhardt <edengelhardt@gmail.com>\nSean Catchpole <littlecooldude@gmail.com>\nPaul Mclanahan <pmclanahan@gmail.com>\nDavid Serduke <davidserduke@gmail.com>\nRichard D. Worth <rdworth@gmail.com>\nScott González <scott.gonzalez@gmail.com>\nAriel Flesler <aflesler@gmail.com>\nCheah Chu Yeow <chuyeow@gmail.com>\nAndrew Chalkley <andrew@chalkley.org>\nFabio Buffoni <fabio.buffoni@bitmaster.it>\nStefan Bauckmeier  <stefan@bauckmeier.de>\nJon Evans <jon@springyweb.com>\nTJ Holowaychuk <tj@vision-media.ca>\nRiccardo De Agostini <rdeago@gmail.com>\nMichael Bensoussan <mickey@seesmic.com>\nLouis-Rémi Babé <lrbabe@gmail.com>\nRobert Katić <robert.katic@gmail.com>\nDamian Janowski <damian.janowski@gmail.com>\nAnton Kovalyov <anton@kovalyov.net>\nDušan B. Jovanovic <dbjdbj@gmail.com>\nEarle Castledine <mrspeaker@gmail.com>\nRich Dougherty <rich@rd.gen.nz>\nKim Dalsgaard <kim@kimdalsgaard.com>\nAndrea Giammarchi <andrea.giammarchi@gmail.com>\nFabian Jakobs <fabian.jakobs@web.de>\nMark Gibson <jollytoad@gmail.com>\nKarl Swedberg <kswedberg@gmail.com>\nJustin Meyer <justinbmeyer@gmail.com>\nBen Alman <cowboy@rj3.net>\nJames Padolsey <cla@padolsey.net>\nDavid Petersen <public@petersendidit.com>\nBatiste Bieler <batiste.bieler@gmail.com>\nJake Archibald <jake.archibald@bbc.co.uk>\nAlexander Farkas <info@corrupt-system.de>\nFilipe Fortes <filipe@fortes.com>\nRick Waldron <waldron.rick@gmail.com>\nNeeraj Singh <neerajdotname@gmail.com>\nPaul Irish <paul.irish@gmail.com>\nIraê Carvalho <irae@irae.pro.br>\nMatt Curry <matt@pseudocoder.com>\nMichael Monteleone <michael@michaelmonteleone.net>\nNoah Sloan <noah.sloan@gmail.com>\nTom Viner <github@viner.tv>\nJ. Ryan Stinnett <jryans@gmail.com>\nDouglas Neiner <doug@dougneiner.com>\nAdam J. Sontag <ajpiano@ajpiano.com>\nHeungsub Lee <h@subl.ee>\nDave Reed <dareed@microsoft.com>\nCarl Fürstenberg <azatoth@gmail.com>\nJacob Wright <jacwright@gmail.com>\nRalph Whitbeck <ralph.whitbeck@gmail.com>\nunknown <Igen005@.upcorp.ad.uprr.com>\ntemp01 <temp01irc@gmail.com>\nColin Snover <github.com@zetafleet.com>\nJared Grippe <jared@deadlyicon.com>\nRyan W Tenney <ryan@10e.us>\nAlex Sexton <AlexSexton@gmail.com>\nPinhook <contact@pinhooklabs.com>\nRon Otten <r.j.g.otten@gmail.com>\nJephte Clain <Jephte.Clain@univ-reunion.fr>\nAnton Matzneller <obhvsbypqghgc@gmail.com>\nDan Heberden <danheberden@gmail.com>\nHenri Wiechers <hwiechers@gmail.com>\nRussell Holbrook <russell.holbrook@patch.com>\nJulian Aubourg <aubourg.julian@gmail.com>\nGianni Alessandro Chiappetta <gianni@runlevel6.org>\nScott Jehl <scottjehl@gmail.com>\nJames Burke <jrburke@gmail.com>\nJonas Pfenniger <jonas@pfenniger.name>\nXavi Ramirez <xavi.rmz@gmail.com>\nSylvester Keil <sylvester@keil.or.at>\nBrandon Sterne <bsterne@mozilla.com>\nMathias Bynens <mathias@qiwi.be>\nLee Carpenter <elcarpie@gmail.com>\nTimmy Willison <4timmywil@gmail.com>\nCorey Frang <gnarf37@gmail.com>\nDigitalxero <digitalxero>\nDavid Murdoch <david@davidmurdoch.com>\nJosh Varner <josh.varner@gmail.com>\nCharles McNulty <cmcnulty@kznf.com>\nJordan Boesch <jboesch26@gmail.com>\nJess Thrysoee <jess@thrysoee.dk>\nMichael Murray <m@murz.net>\nAlexis Abril <me@alexisabril.com>\nRob Morgan <robbym@gmail.com>\nJohn Firebaugh <john_firebaugh@bigfix.com>\nSam Bisbee <sam@sbisbee.com>\nGilmore Davidson <gilmoreorless@gmail.com>\nBrian Brennan <me@brianlovesthings.com>\nXavier Montillet <xavierm02.net@gmail.com>\nDaniel Pihlstrom <sciolist.se@gmail.com>\nSahab Yazdani <sahab.yazdani+github@gmail.com>\navaly <github-com@agachi.name>\nScott Hughes <hi@scott-hughes.me>\nMike Sherov <mike.sherov@gmail.com>\nGreg Hazel <ghazel@gmail.com>\nSchalk Neethling <schalk@ossreleasefeed.com>\nDenis Knauf <Denis.Knauf@gmail.com>\nTimo Tijhof <krinklemail@gmail.com>\nSteen Nielsen <swinedk@gmail.com>\nAnton Ryzhov <anton@ryzhov.me>\nShi Chuan <shichuanr@gmail.com>\nMatt Mueller <mattmuelle@gmail.com>\nBerker Peksag <berker.peksag@gmail.com>\nToby Brain <tobyb@freshview.com>\nJustin <drakefjustin@gmail.com>\nDaniel Herman <daniel.c.herman@gmail.com>\nOleg Gaidarenko <markelog@gmail.com>\nRock Hymas <rock@fogcreek.com>\nRichard Gibson <richard.gibson@gmail.com>\nRafaël Blais Masson <rafbmasson@gmail.com>\ncmc3cn <59194618@qq.com>\nJoe Presbrey <presbrey@gmail.com>\nSindre Sorhus <sindresorhus@gmail.com>\nArne de Bree <arne@bukkie.nl>\nVladislav Zarakovsky <vlad.zar@gmail.com>\nAndrew E Monat <amonat@gmail.com>\nOskari <admin@o-programs.com>\nJoao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>\ntsinha <tsinha@Anthonys-MacBook-Pro.local>\nDominik D. Geyer <dominik.geyer@gmail.com>\nMatt Farmer <matt@frmr.me>\nTrey Hunner <treyhunner@gmail.com>\nJason Moon <jmoon@socialcast.com>\nJeffery To <jeffery.to@gmail.com>\nKris Borchers <kris.borchers@gmail.com>\nVladimir Zhuravlev <private.face@gmail.com>\nJacob Thornton <jacobthornton@gmail.com>\nChad Killingsworth <chadkillingsworth@missouristate.edu>\nVitya Muhachev <vic99999@yandex.ru>\nNowres Rafid <nowres.rafed@gmail.com>\nDavid Benjamin <davidben@mit.edu>\nAlan Plum <github@ap.apsq.de>\nUri Gilad <antishok@gmail.com>\nChris Faulkner <thefaulkner@gmail.com>\nMarcel Greter <marcel.greter@ocbnet.ch>\nElijah Manor <elijah.manor@gmail.com>\nDaniel Chatfield <chatfielddaniel@gmail.com>\nDaniel Gálvez <dgalvez@editablething.com>\nNikita Govorov <nikita.govorov@gmail.com>\nWesley Walser <waw325@gmail.com>\nMike Pennisi <mike@mikepennisi.com>\nMatthias Jäggli <matthias.jaeggli@gmail.com>\nDevin Cooper <cooper.semantics@gmail.com>\nMarkus Staab <markus.staab@redaxo.de>\nDave Riddle <david@joyvuu.com>\nCallum Macrae <callum@lynxphp.com>\nJonathan Sampson <jjdsampson@gmail.com>\nBenjamin Truyman <bentruyman@gmail.com>\nJay Merrifield <fracmak@gmail.com>\nJames Huston <james@jameshuston.net>\nSai Lung Wong <sai.wong@huffingtonpost.com>\nErick Ruiz de Chávez <erickrdch@gmail.com>\nDavid Bonner <dbonner@cogolabs.com>\nAllen J Schmidt Jr <cobrasoft@gmail.com>\nAkintayo Akinwunmi <aakinwunmi@judge.com>\nMORGAN <morgan@morgangraphics.com>\nIsmail Khair <ismail.khair@gmail.com>\nCarl Danley <carldanley@gmail.com>\nMike Petrovich <michael.c.petrovich@gmail.com>\nGreg Lavallee <greglavallee@wapolabs.com>\nTom H Fuertes <TomFuertes@gmail.com>\nRoland Eckl <eckl.roland@googlemail.com>\nYiming He <yiminghe@gmail.com>\nDavid Fox <dfoxinator@gmail.com>\nBennett Sorbo <bsorbo@gmail.com>\nPaul Ramos <paul.b.ramos@gmail.com>\nRod Vagg <rod@vagg.org>\nSebastian Burkhard <sebi.burkhard@gmail.com>\nZachary Adam Kaplan <razic@viralkitty.com>\nAdam Coulombe <me@adam.co>\nnanto_vi <nanto@moon.email.ne.jp>\nnanto <nanto@moon.email.ne.jp>\nDanil Somsikov <danilasomsikov@gmail.com>\nRyunosuke SATO <tricknotes.rs@gmail.com>\nDiego Tres <diegotres@gmail.com>\nJean Boussier <jean.boussier@gmail.com>\nAndrew Plummer <plummer.andrew@gmail.com>\nMark Raddatz <mraddatz@gmail.com>\nPascal Borreli <pascal@borreli.com>\nIsaac Z. Schlueter <i@izs.me>\nKarl Sieburg <ksieburg@yahoo.com>\nNguyen Phuc Lam <ruado1987@gmail.com>\nDmitry Gusev <dmitry.gusev@gmail.com>\nSteven Benner <admin@stevenbenner.com>\nLi Xudong <istonelee@gmail.com>\nMichał Gołębiowski-Owczarek <m.goleb@gmail.com>\nRenato Oliveira dos Santos <ros3@cin.ufpe.br>\nFrederic Junod <frederic.junod@camptocamp.com>\nTom H Fuertes <tomfuertes@gmail.com>\nMitch Foley <mitch@thefoley.net>\nros3cin <ros3@cin.ufpe.br>\nKyle Robinson Young <kyle@dontkry.com>\nJohn Paul <john@johnkpaul.com>\nJason Bedard <jason+jquery@jbedard.ca>\nChris Talkington <chris@talkingtontech.com>\nEddie Monge <eddie@eddiemonge.com>\nTerry Jones <terry@jon.es>\nJason Merino <jasonmerino@gmail.com>\nDan Burzo <danburzo@gmail.com>\nJeremy Dunck <jdunck@gmail.com>\nChris Price <price.c@gmail.com>\nGuy Bedford <guybedford@gmail.com>\nnjhamann <njhamann@gmail.com>\nGoare Mao <mygoare@gmail.com>\nAmey Sakhadeo <me@ameyms.com>\nMike Sidorov <mikes.ekb@gmail.com>\nAnthony Ryan <anthonyryan1@gmail.com>\nLihan Li <frankieteardrop@gmail.com>\nGeorge Kats <katsgeorgeek@gmail.com>\nDongseok Paeng <dongseok83.paeng@lge.com>\nRonny Springer <springer.ronny@gmail.com>\nIlya Kantor <iliakan@gmail.com>\nMarian Sollmann <marian.sollmann@cargomedia.ch>\nChris Antaki <ChrisAntaki@gmail.com>\nDavid Hong <d.hong@me.com>\nJakob Stoeck <jakob@pokermania.de>\nChristopher Jones <chris@cjqed.com>\nForbes Lindesay <forbes@lindesay.co.uk>\nS. Andrew Sheppard <andrew@wq.io>\nLeonardo Balter <leonardo.balter@gmail.com>\nRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>\nDaniel Husar <dano.husar@gmail.com>\nPhilip Jägenstedt <philip@foolip.org>\nJohn Hoven <hovenj@gmail.com>\nRoman Reiß <me@silverwind.io>\nBenjy Cui <benjytrys@gmail.com>\nChristian Kosmowski <ksmwsk@gmail.com>\nDavid Corbacho <davidcorbacho@gmail.com>\nLiang Peng <poppinlp@gmail.com>\nTJ VanToll <tj.vantoll@gmail.com>\nAurelio De Rosa <aurelioderosa@gmail.com>\nSenya Pugach <upisfree@outlook.com>\nDan Hart <danhart@notonthehighstreet.com>\nNazar Mokrynskyi <nazar@mokrynskyi.com>\nBenjamin Tan <demoneaux@gmail.com>\nAmit Merchant <bullredeyes@gmail.com>\nJason Bedard <jason+github@jbedard.ca>\nVeaceslav Grimalschi <grimalschi@yandex.ru>\nRichard McDaniel <rm0026@uah.edu>\nArthur Verschaeve <contact@arthurverschaeve.be>\nShivaji Varma <contact@shivajivarma.com>\nBen Toews <mastahyeti@gmail.com>\nBin Xin <rhyzix@gmail.com>\nNeftaly Hernandez <neftaly.hernandez@gmail.com>\nT.J. Crowder <tj.crowder@farsightsoftware.com>\nNicolas HENRY <icewil@gmail.com>\nFrederic Hemberger <mail@frederic-hemberger.de>\nVictor Homyakov <vkhomyackov@gmail.com>\nAditya Raghavan <araghavan3@gmail.com>\nAnne-Gaelle Colom <coloma@westminster.ac.uk>\nLeonardo Braga <leonardo.braga@gmail.com>\nGeorge Mauer <gmauer@gmail.com>\nStephen Edgar <stephen@netweb.com.au>\nThomas Tortorini <thomastortorini@gmail.com>\nJörn Wagner <joern.wagner@explicatis.com>\nJon Hester <jon.d.hester@gmail.com>\nColin Frick <colin@bash.li>\nWinston Howes <winstonhowes@gmail.com>\nAlexander O'Mara <me@alexomara.com>\nChris Rebert <github@rebertia.com>\nBastian Buchholz <buchholz.bastian@googlemail.com>\nMu Haibao <mhbseal@163.com>\nCalvin Metcalf <calvin.metcalf@gmail.com>\nArthur Stolyar <nekr.fabula@gmail.com>\nGabriel Schulhof <gabriel.schulhof@intel.com>\nGilad Peleg <giladp007@gmail.com>\nJulian Alexander Murillo <julian.alexander.murillo@gmail.com>\nKevin Kirsche <Kev.Kirsche+GitHub@gmail.com>\nMartin Naumann <martin@geekonaut.de>\nYongwoo Jeon <yongwoo.jeon@navercorp.com>\nJohn-David Dalton <john.david.dalton@gmail.com>\nMarek Lewandowski <m.lewandowski@cksource.com>\nBruno Pérel <brunoperel@gmail.com>\nDaniel Nill <daniellnill@gmail.com>\nReed Loden <reed@reedloden.com>\nSean Henderson <seanh.za@gmail.com>\nGary Ye <garysye@gmail.com>\nRichard Kraaijenhagen <stdin+git@riichard.com>\nConnor Atherton <c.liam.atherton@gmail.com>\nChristian Grete <webmaster@christiangrete.com>\nTom von Clef <thomas.vonclef@gmail.com>\nLiza Ramo <liza.h.ramo@gmail.com>\nJoelle Fleurantin <joasqueeniebee@gmail.com>\nSteve Mao <maochenyan@gmail.com>\nJon Dufresne <jon.dufresne@gmail.com>\nJae Sung Park <alberto.park@gmail.com>\nJosh Soref <apache@soref.com>\nSaptak Sengupta <saptak013@gmail.com>\nHenry Wong <henryw4k@gmail.com>\nJun Sun <klsforever@gmail.com>\nMartijn W. van der Lee <martijn@vanderlee.com>\nDevin Wilson <dwilson6.github@gmail.com>\nDamian Senn <jquery@topaxi.codes>\nZack Hall <zackhall@outlook.com>\nVitaliy Terziev <vitaliyterziev@gmail.com>\nTodor Prikumov <tono_pr@abv.bg>\nBernhard M. Wiedemann <jquerybmw@lsmod.de>\nJha Naman <createnaman@gmail.com>\nAlexander Lisianoi <all3fox@gmail.com>\nWilliam Robinet <william.robinet@conostix.com>\nJoe Trumbull <trumbull.j@gmail.com>\nAlexander K <xpyro@ya.ru>\nRalin Chimev <ralin.chimev@gmail.com>\nFelipe Sateler <fsateler@gmail.com>\nChristophe Tafani-Dereeper <christophetd@hotmail.fr>\nManoj Kumar <nithmanoj@gmail.com>\nDavid Broder-Rodgers <broder93@gmail.com>\nAlex Louden <alex@louden.com>\nAlex Padilla <alexonezero@outlook.com>\nkaran-96 <karanbatra96@gmail.com>\n南漂一卒 <shiy007@qq.com>\nErik Lax <erik@datahack.se>\nBoom Lee <teabyii@gmail.com>\nAndreas Solleder <asol@num42.de>\nPierre Spring <pierre@nelm.io>\nShashanka Nataraj <shashankan.10@gmail.com>\nCDAGaming <cstack2011@yahoo.com>\nMatan Kotler-Berkowitz <205matan@gmail.com>\nJordan Beland <jordan.beland@gmail.com>\nHenry Zhu <hi@henryzoo.com>\nNilton Cesar <niltoncms@gmail.com>\nbasil.belokon <basil.belokon@gmail.com>\nAndrey Meshkov <ay.meshkov@gmail.com>\ntmybr11 <tomas.perone@gmail.com>\nLuis Emilio Velasco Sanchez <emibloque@gmail.com>\nEd S <ejsanders@gmail.com>\nBert Zhang <enbo@users.noreply.github.com>\nSébastien Règne <regseb@users.noreply.github.com>\nwartmanm <3869625+wartmanm@users.noreply.github.com>\nSiddharth Dungarwal <sd5869@gmail.com>\nabnud1 <ahmad13932013@hotmail.com>\nAndrei Fangli <andrei_fangli@outlook.com>\nMarja Hölttä <marja.holtta@gmail.com>\nbuddh4 <mail@jharrer.de>\nHoang <dangkyokhoang@gmail.com>\nWonseop Kim <wonseop.kim@samsung.com>\nPat O'Callaghan <patocallaghan@gmail.com>\nJuanMa Ruiz <ruizjuanma@gmail.com>\nAhmed.S.ElAfifi <ahmed.s.elafifi@gmail.com>\nSean Robinson <sean.robinson@scottsdalecc.edu>\nChristian Oliff <christianoliff@pm.me>\n"
  },
  {
    "path": "docs/images/03_mean/lib/jquery-3.5.1/jquery.js",
    "content": "/*!\n * jQuery JavaScript Library v3.5.1\n * https://jquery.com/\n *\n * Includes Sizzle.js\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://jquery.org/license\n *\n * Date: 2020-05-04T22:49Z\n */\n( function( global, factory ) {\n\n\t\"use strict\";\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\n\t\t// For CommonJS and CommonJS-like environments where a proper `window`\n\t\t// is present, execute the factory and get jQuery.\n\t\t// For environments that do not have a `window` with a `document`\n\t\t// (such as Node.js), expose a factory as module.exports.\n\t\t// This accentuates the need for the creation of a real `window`.\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info.\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n} )( typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1\n// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode\n// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common\n// enough that all such attempts are guarded in a try block.\n\"use strict\";\n\nvar arr = [];\n\nvar getProto = Object.getPrototypeOf;\n\nvar slice = arr.slice;\n\nvar flat = arr.flat ? function( array ) {\n\treturn arr.flat.call( array );\n} : function( array ) {\n\treturn arr.concat.apply( [], array );\n};\n\n\nvar push = arr.push;\n\nvar indexOf = arr.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar fnToString = hasOwn.toString;\n\nvar ObjectFunctionString = fnToString.call( Object );\n\nvar support = {};\n\nvar isFunction = function isFunction( obj ) {\n\n      // Support: Chrome <=57, Firefox <=52\n      // In some browsers, typeof returns \"function\" for HTML <object> elements\n      // (i.e., `typeof document.createElement( \"object\" ) === \"function\"`).\n      // We don't want to classify *any* DOM node as a function.\n      return typeof obj === \"function\" && typeof obj.nodeType !== \"number\";\n  };\n\n\nvar isWindow = function isWindow( obj ) {\n\t\treturn obj != null && obj === obj.window;\n\t};\n\n\nvar document = window.document;\n\n\n\n\tvar preservedScriptAttributes = {\n\t\ttype: true,\n\t\tsrc: true,\n\t\tnonce: true,\n\t\tnoModule: true\n\t};\n\n\tfunction DOMEval( code, node, doc ) {\n\t\tdoc = doc || document;\n\n\t\tvar i, val,\n\t\t\tscript = doc.createElement( \"script\" );\n\n\t\tscript.text = code;\n\t\tif ( node ) {\n\t\t\tfor ( i in preservedScriptAttributes ) {\n\n\t\t\t\t// Support: Firefox 64+, Edge 18+\n\t\t\t\t// Some browsers don't support the \"nonce\" property on scripts.\n\t\t\t\t// On the other hand, just using `getAttribute` is not enough as\n\t\t\t\t// the `nonce` attribute is reset to an empty string whenever it\n\t\t\t\t// becomes browsing-context connected.\n\t\t\t\t// See https://github.com/whatwg/html/issues/2369\n\t\t\t\t// See https://html.spec.whatwg.org/#nonce-attributes\n\t\t\t\t// The `node.getAttribute` check was added for the sake of\n\t\t\t\t// `jQuery.globalEval` so that it can fake a nonce-containing node\n\t\t\t\t// via an object.\n\t\t\t\tval = node[ i ] || node.getAttribute && node.getAttribute( i );\n\t\t\t\tif ( val ) {\n\t\t\t\t\tscript.setAttribute( i, val );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tdoc.head.appendChild( script ).parentNode.removeChild( script );\n\t}\n\n\nfunction toType( obj ) {\n\tif ( obj == null ) {\n\t\treturn obj + \"\";\n\t}\n\n\t// Support: Android <=2.3 only (functionish RegExp)\n\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\tclass2type[ toString.call( obj ) ] || \"object\" :\n\t\ttypeof obj;\n}\n/* global Symbol */\n// Defining this global in .eslintrc.json would create a danger of using the global\n// unguarded in another place, it seems safer to define global only for this module\n\n\n\nvar\n\tversion = \"3.5.1\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t};\n\njQuery.fn = jQuery.prototype = {\n\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\n\t\t// Return all the elements in a clean array\n\t\tif ( num == null ) {\n\t\t\treturn slice.call( this );\n\t\t}\n\n\t\t// Return just the one element from the set\n\t\treturn num < 0 ? this[ num + this.length ] : this[ num ];\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\teach: function( callback ) {\n\t\treturn jQuery.each( this, callback );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map( this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t} ) );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teven: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn ( i + 1 ) % 2;\n\t\t} ) );\n\t},\n\n\todd: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn i % 2;\n\t\t} ) );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor();\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: arr.sort,\n\tsplice: arr.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[ 0 ] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// Skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !isFunction( target ) ) {\n\t\ttarget = {};\n\t}\n\n\t// Extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\n\t\t// Only deal with non-null/undefined values\n\t\tif ( ( options = arguments[ i ] ) != null ) {\n\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent Object.prototype pollution\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( name === \"__proto__\" || target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject( copy ) ||\n\t\t\t\t\t( copyIsArray = Array.isArray( copy ) ) ) ) {\n\t\t\t\t\tsrc = target[ name ];\n\n\t\t\t\t\t// Ensure proper type for the source value\n\t\t\t\t\tif ( copyIsArray && !Array.isArray( src ) ) {\n\t\t\t\t\t\tclone = [];\n\t\t\t\t\t} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {\n\t\t\t\t\t\tclone = {};\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src;\n\t\t\t\t\t}\n\t\t\t\t\tcopyIsArray = false;\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend( {\n\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\tisPlainObject: function( obj ) {\n\t\tvar proto, Ctor;\n\n\t\t// Detect obvious negatives\n\t\t// Use toString instead of jQuery.type to catch host objects\n\t\tif ( !obj || toString.call( obj ) !== \"[object Object]\" ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tproto = getProto( obj );\n\n\t\t// Objects with no prototype (e.g., `Object.create( null )`) are plain\n\t\tif ( !proto ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Objects with prototype are plain iff they were constructed by a global Object function\n\t\tCtor = hasOwn.call( proto, \"constructor\" ) && proto.constructor;\n\t\treturn typeof Ctor === \"function\" && fnToString.call( Ctor ) === ObjectFunctionString;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\t// Evaluates a script in a provided context; falls back to the global one\n\t// if not specified.\n\tglobalEval: function( code, options, doc ) {\n\t\tDOMEval( code, { nonce: options && options.nonce }, doc );\n\t},\n\n\teach: function( obj, callback ) {\n\t\tvar length, i = 0;\n\n\t\tif ( isArrayLike( obj ) ) {\n\t\t\tlength = obj.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tfor ( i in obj ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArrayLike( Object( arr ) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\treturn arr == null ? -1 : indexOf.call( arr, elem, i );\n\t},\n\n\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t// push.apply(_, arraylike) throws on ancient WebKit\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\tfor ( ; j < len; j++ ) {\n\t\t\tfirst[ i++ ] = second[ j ];\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar length, value,\n\t\t\ti = 0,\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArrayLike( elems ) ) {\n\t\t\tlength = elems.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn flat( ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n} );\n\nif ( typeof Symbol === \"function\" ) {\n\tjQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];\n}\n\n// Populate the class2type map\njQuery.each( \"Boolean Number String Function Array Date RegExp Object Error Symbol\".split( \" \" ),\nfunction( _i, name ) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n} );\n\nfunction isArrayLike( obj ) {\n\n\t// Support: real iOS 8.2 only (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = !!obj && \"length\" in obj && obj.length,\n\t\ttype = toType( obj );\n\n\tif ( isFunction( obj ) || isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.3.5\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://js.foundation/\n *\n * Date: 2020-03-14\n */\n( function( window ) {\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tnonnativeSelectorCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// Instance methods\n\thasOwn = ( {} ).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpushNative = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\n\t// Use a stripped-down indexOf as it's faster than native\n\t// https://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[ i ] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|\" +\n\t\t\"ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\n\t// https://www.w3.org/TR/css-syntax-3/#ident-token-diagram\n\tidentifier = \"(?:\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace +\n\t\t\"?|\\\\\\\\[^\\\\r\\\\n\\\\f]|[\\\\w-]|[^\\0-\\\\x7f])+\",\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + identifier + \")(?:\" + whitespace +\n\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\n\t\t// \"Attribute values must be CSS identifiers [capture 5]\n\t\t// or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" +\n\t\twhitespace + \"*\\\\]\",\n\n\tpseudos = \":(\" + identifier + \")(?:\\\\((\" +\n\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" +\n\t\twhitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace +\n\t\t\"*\" ),\n\trdescend = new RegExp( whitespace + \"|>\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + identifier + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + identifier + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + identifier + \"|[*])\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" +\n\t\t\twhitespace + \"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" +\n\t\t\twhitespace + \"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace +\n\t\t\t\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" + whitespace +\n\t\t\t\"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trhtml = /HTML$/i,\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\n\t// CSS escapes\n\t// http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace + \"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\", \"g\" ),\n\tfunescape = function( escape, nonHex ) {\n\t\tvar high = \"0x\" + escape.slice( 1 ) - 0x10000;\n\n\t\treturn nonHex ?\n\n\t\t\t// Strip the backslash prefix from a non-hex escape sequence\n\t\t\tnonHex :\n\n\t\t\t// Replace a hexadecimal escape sequence with the encoded Unicode code point\n\t\t\t// Support: IE <=11+\n\t\t\t// For values outside the Basic Multilingual Plane (BMP), manually construct a\n\t\t\t// surrogate pair\n\t\t\thigh < 0 ?\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// CSS string/identifier serialization\n\t// https://drafts.csswg.org/cssom/#common-serializing-idioms\n\trcssescape = /([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,\n\tfcssescape = function( ch, asCodePoint ) {\n\t\tif ( asCodePoint ) {\n\n\t\t\t// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER\n\t\t\tif ( ch === \"\\0\" ) {\n\t\t\t\treturn \"\\uFFFD\";\n\t\t\t}\n\n\t\t\t// Control characters and (dependent upon position) numbers get escaped as code points\n\t\t\treturn ch.slice( 0, -1 ) + \"\\\\\" +\n\t\t\t\tch.charCodeAt( ch.length - 1 ).toString( 16 ) + \" \";\n\t\t}\n\n\t\t// Other potentially-special ASCII characters get backslash-escaped\n\t\treturn \"\\\\\" + ch;\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t},\n\n\tinDisabledFieldset = addCombinator(\n\t\tfunction( elem ) {\n\t\t\treturn elem.disabled === true && elem.nodeName.toLowerCase() === \"fieldset\";\n\t\t},\n\t\t{ dir: \"parentNode\", next: \"legend\" }\n\t);\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t( arr = slice.call( preferredDoc.childNodes ) ),\n\t\tpreferredDoc.childNodes\n\t);\n\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\t// eslint-disable-next-line no-unused-expressions\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpushNative.apply( target, slice.call( els ) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( ( target[ j++ ] = els[ i++ ] ) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar m, i, elem, nid, match, groups, newSelector,\n\t\tnewContext = context && context.ownerDocument,\n\n\t\t// nodeType defaults to 9, since context defaults to document\n\t\tnodeType = context ? context.nodeType : 9;\n\n\tresults = results || [];\n\n\t// Return early from calls with invalid selector or context\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\t// Try to shortcut find operations (as opposed to filters) in HTML documents\n\tif ( !seed ) {\n\t\tsetDocument( context );\n\t\tcontext = context || document;\n\n\t\tif ( documentIsHTML ) {\n\n\t\t\t// If the selector is sufficiently simple, try using a \"get*By*\" DOM method\n\t\t\t// (excepting DocumentFragment context, where the methods don't exist)\n\t\t\tif ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) {\n\n\t\t\t\t// ID selector\n\t\t\t\tif ( ( m = match[ 1 ] ) ) {\n\n\t\t\t\t\t// Document context\n\t\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\t\tif ( ( elem = context.getElementById( m ) ) ) {\n\n\t\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// Element context\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\tif ( newContext && ( elem = newContext.getElementById( m ) ) &&\n\t\t\t\t\t\t\tcontains( context, elem ) &&\n\t\t\t\t\t\t\telem.id === m ) {\n\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t// Type selector\n\t\t\t\t} else if ( match[ 2 ] ) {\n\t\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\t\treturn results;\n\n\t\t\t\t// Class selector\n\t\t\t\t} else if ( ( m = match[ 3 ] ) && support.getElementsByClassName &&\n\t\t\t\t\tcontext.getElementsByClassName ) {\n\n\t\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\t\treturn results;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Take advantage of querySelectorAll\n\t\t\tif ( support.qsa &&\n\t\t\t\t!nonnativeSelectorCache[ selector + \" \" ] &&\n\t\t\t\t( !rbuggyQSA || !rbuggyQSA.test( selector ) ) &&\n\n\t\t\t\t// Support: IE 8 only\n\t\t\t\t// Exclude object elements\n\t\t\t\t( nodeType !== 1 || context.nodeName.toLowerCase() !== \"object\" ) ) {\n\n\t\t\t\tnewSelector = selector;\n\t\t\t\tnewContext = context;\n\n\t\t\t\t// qSA considers elements outside a scoping root when evaluating child or\n\t\t\t\t// descendant combinators, which is not what we want.\n\t\t\t\t// In such cases, we work around the behavior by prefixing every selector in the\n\t\t\t\t// list with an ID selector referencing the scope context.\n\t\t\t\t// The technique has to be used as well when a leading combinator is used\n\t\t\t\t// as such selectors are not recognized by querySelectorAll.\n\t\t\t\t// Thanks to Andrew Dupont for this technique.\n\t\t\t\tif ( nodeType === 1 &&\n\t\t\t\t\t( rdescend.test( selector ) || rcombinators.test( selector ) ) ) {\n\n\t\t\t\t\t// Expand context for sibling selectors\n\t\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext;\n\n\t\t\t\t\t// We can use :scope instead of the ID hack if the browser\n\t\t\t\t\t// supports it & if we're not changing the context.\n\t\t\t\t\tif ( newContext !== context || !support.scope ) {\n\n\t\t\t\t\t\t// Capture the context ID, setting it first if necessary\n\t\t\t\t\t\tif ( ( nid = context.getAttribute( \"id\" ) ) ) {\n\t\t\t\t\t\t\tnid = nid.replace( rcssescape, fcssescape );\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tcontext.setAttribute( \"id\", ( nid = expando ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prefix every selector in the list\n\t\t\t\t\tgroups = tokenize( selector );\n\t\t\t\t\ti = groups.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tgroups[ i ] = ( nid ? \"#\" + nid : \":scope\" ) + \" \" +\n\t\t\t\t\t\t\ttoSelector( groups[ i ] );\n\t\t\t\t\t}\n\t\t\t\t\tnewSelector = groups.join( \",\" );\n\t\t\t\t}\n\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch ( qsaError ) {\n\t\t\t\t\tnonnativeSelectorCache( selector, true );\n\t\t\t\t} finally {\n\t\t\t\t\tif ( nid === expando ) {\n\t\t\t\t\t\tcontext.removeAttribute( \"id\" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {function(string, object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn ( cache[ key + \" \" ] = value );\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created element and returns a boolean result\n */\nfunction assert( fn ) {\n\tvar el = document.createElement( \"fieldset\" );\n\n\ttry {\n\t\treturn !!fn( el );\n\t} catch ( e ) {\n\t\treturn false;\n\t} finally {\n\n\t\t// Remove from its parent by default\n\t\tif ( el.parentNode ) {\n\t\t\tel.parentNode.removeChild( el );\n\t\t}\n\n\t\t// release memory in IE\n\t\tel = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split( \"|\" ),\n\t\ti = arr.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[ i ] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\ta.sourceIndex - b.sourceIndex;\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( ( cur = cur.nextSibling ) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn ( name === \"input\" || name === \"button\" ) && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for :enabled/:disabled\n * @param {Boolean} disabled true for :disabled; false for :enabled\n */\nfunction createDisabledPseudo( disabled ) {\n\n\t// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable\n\treturn function( elem ) {\n\n\t\t// Only certain elements can match :enabled or :disabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled\n\t\tif ( \"form\" in elem ) {\n\n\t\t\t// Check for inherited disabledness on relevant non-disabled elements:\n\t\t\t// * listed form-associated elements in a disabled fieldset\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#category-listed\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled\n\t\t\t// * option elements in a disabled optgroup\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled\n\t\t\t// All such elements have a \"form\" property.\n\t\t\tif ( elem.parentNode && elem.disabled === false ) {\n\n\t\t\t\t// Option elements defer to a parent optgroup if present\n\t\t\t\tif ( \"label\" in elem ) {\n\t\t\t\t\tif ( \"label\" in elem.parentNode ) {\n\t\t\t\t\t\treturn elem.parentNode.disabled === disabled;\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn elem.disabled === disabled;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Support: IE 6 - 11\n\t\t\t\t// Use the isDisabled shortcut property to check for disabled fieldset ancestors\n\t\t\t\treturn elem.isDisabled === disabled ||\n\n\t\t\t\t\t// Where there is no isDisabled, check manually\n\t\t\t\t\t/* jshint -W018 */\n\t\t\t\t\telem.isDisabled !== !disabled &&\n\t\t\t\t\tinDisabledFieldset( elem ) === disabled;\n\t\t\t}\n\n\t\t\treturn elem.disabled === disabled;\n\n\t\t// Try to winnow out elements that can't be disabled before trusting the disabled property.\n\t\t// Some victims get caught in our net (label, legend, menu, track), but it shouldn't\n\t\t// even exist on them, let alone have a boolean value.\n\t\t} else if ( \"label\" in elem ) {\n\t\t\treturn elem.disabled === disabled;\n\t\t}\n\n\t\t// Remaining elements are neither :enabled nor :disabled\n\t\treturn false;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction( function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction( function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ ( j = matchIndexes[ i ] ) ] ) {\n\t\t\t\t\tseed[ j ] = !( matches[ j ] = seed[ j ] );\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t} );\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\tvar namespace = elem.namespaceURI,\n\t\tdocElem = ( elem.ownerDocument || elem ).documentElement;\n\n\t// Support: IE <=8\n\t// Assume HTML when documentElement doesn't yet exist, such as inside loading iframes\n\t// https://bugs.jquery.com/ticket/4833\n\treturn !rhtml.test( namespace || docElem && docElem.nodeName || \"HTML\" );\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, subWindow,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// Return early if doc is invalid or already selected\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Update global variables\n\tdocument = doc;\n\tdocElem = document.documentElement;\n\tdocumentIsHTML = !isXML( document );\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t// Accessing iframe documents after unload throws \"permission denied\" errors (jQuery #13936)\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( preferredDoc != document &&\n\t\t( subWindow = document.defaultView ) && subWindow.top !== subWindow ) {\n\n\t\t// Support: IE 11, Edge\n\t\tif ( subWindow.addEventListener ) {\n\t\t\tsubWindow.addEventListener( \"unload\", unloadHandler, false );\n\n\t\t// Support: IE 9 - 10 only\n\t\t} else if ( subWindow.attachEvent ) {\n\t\t\tsubWindow.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t// Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only,\n\t// Safari 4 - 5 only, Opera <=11.6 - 12.x only\n\t// IE/Edge & older browsers don't support the :scope pseudo-class.\n\t// Support: Safari 6.0 only\n\t// Safari 6.0 supports :scope but it's an alias of :root there.\n\tsupport.scope = assert( function( el ) {\n\t\tdocElem.appendChild( el ).appendChild( document.createElement( \"div\" ) );\n\t\treturn typeof el.querySelectorAll !== \"undefined\" &&\n\t\t\t!el.querySelectorAll( \":scope fieldset div\" ).length;\n\t} );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert( function( el ) {\n\t\tel.className = \"i\";\n\t\treturn !el.getAttribute( \"className\" );\n\t} );\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert( function( el ) {\n\t\tel.appendChild( document.createComment( \"\" ) );\n\t\treturn !el.getElementsByTagName( \"*\" ).length;\n\t} );\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( document.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programmatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert( function( el ) {\n\t\tdocElem.appendChild( el ).id = expando;\n\t\treturn !document.getElementsByName || !document.getElementsByName( expando ).length;\n\t} );\n\n\t// ID filter and find\n\tif ( support.getById ) {\n\t\tExpr.filter[ \"ID\" ] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute( \"id\" ) === attrId;\n\t\t\t};\n\t\t};\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar elem = context.getElementById( id );\n\t\t\t\treturn elem ? [ elem ] : [];\n\t\t\t}\n\t\t};\n\t} else {\n\t\tExpr.filter[ \"ID\" ] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" &&\n\t\t\t\t\telem.getAttributeNode( \"id\" );\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\n\t\t// Support: IE 6 - 7 only\n\t\t// getElementById is not reliable as a find shortcut\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar node, i, elems,\n\t\t\t\t\telem = context.getElementById( id );\n\n\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t// Verify the id attribute\n\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t}\n\n\t\t\t\t\t// Fall back on getElementsByName\n\t\t\t\t\telems = context.getElementsByName( id );\n\t\t\t\t\ti = 0;\n\t\t\t\t\twhile ( ( elem = elems[ i++ ] ) ) {\n\t\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn [];\n\t\t\t}\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[ \"TAG\" ] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[ \"CLASS\" ] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See https://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) {\n\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert( function( el ) {\n\n\t\t\tvar input;\n\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// https://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( el ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\r\\\\' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( el.querySelectorAll( \"[msallowcapture^='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !el.querySelectorAll( \"[selected]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+\n\t\t\tif ( !el.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"~=\" );\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 15 - 18+\n\t\t\t// IE 11/Edge don't find elements on a `[name='']` query in some cases.\n\t\t\t// Adding a temporary attribute to the document before the selection works\n\t\t\t// around the issue.\n\t\t\t// Interestingly, IE 10 & older don't seem to have the issue.\n\t\t\tinput = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"name\", \"\" );\n\t\t\tel.appendChild( input );\n\t\t\tif ( !el.querySelectorAll( \"[name='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*name\" + whitespace + \"*=\" +\n\t\t\t\t\twhitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !el.querySelectorAll( \":checked\" ).length ) {\n\t\t\t\trbuggyQSA.push( \":checked\" );\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibling-combinator selector` fails\n\t\t\tif ( !el.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push( \".#.+[+~]\" );\n\t\t\t}\n\n\t\t\t// Support: Firefox <=3.6 - 5 only\n\t\t\t// Old Firefox doesn't throw on a badly-escaped identifier.\n\t\t\tel.querySelectorAll( \"\\\\\\f\" );\n\t\t\trbuggyQSA.push( \"[\\\\r\\\\n\\\\f]\" );\n\t\t} );\n\n\t\tassert( function( el ) {\n\t\t\tel.innerHTML = \"<a href='' disabled='disabled'></a>\" +\n\t\t\t\t\"<select disabled='disabled'><option/></select>\";\n\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tel.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( el.querySelectorAll( \"[name=d]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( el.querySelectorAll( \":enabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: IE9-11+\n\t\t\t// IE's :disabled selector does not pick up the children of disabled fieldsets\n\t\t\tdocElem.appendChild( el ).disabled = true;\n\t\t\tif ( el.querySelectorAll( \":disabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: Opera 10 - 11 only\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tel.querySelectorAll( \"*,:x\" );\n\t\t\trbuggyQSA.push( \",.*:\" );\n\t\t} );\n\t}\n\n\tif ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector ) ) ) ) {\n\n\t\tassert( function( el ) {\n\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( el, \"*\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( el, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t} );\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( \"|\" ) );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( \"|\" ) );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully self-exclusive\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t) );\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( ( b = b.parentNode ) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t// two documents; shallow comparisons work.\n\t\t// eslint-disable-next-line eqeqeq\n\t\tcompare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( a == document || a.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, a ) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( b == document || b.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, b ) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\treturn a == document ? -1 :\n\t\t\t\tb == document ? 1 :\n\t\t\t\t/* eslint-enable eqeqeq */\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[ i ] === bp[ i ] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[ i ], bp[ i ] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\tap[ i ] == preferredDoc ? -1 :\n\t\t\tbp[ i ] == preferredDoc ? 1 :\n\t\t\t/* eslint-enable eqeqeq */\n\t\t\t0;\n\t};\n\n\treturn document;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\tsetDocument( elem );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t!nonnativeSelectorCache[ expr + \" \" ] &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\n\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t// fragment in IE 9\n\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\tnonnativeSelectorCache( expr, true );\n\t\t}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( context.ownerDocument || context ) != document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( elem.ownerDocument || elem ) != document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.escape = function( sel ) {\n\treturn ( sel + \"\" ).replace( rcssescape, fcssescape );\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( ( node = elem[ i++ ] ) ) {\n\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[ 1 ] = match[ 1 ].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[ 3 ] = ( match[ 3 ] || match[ 4 ] ||\n\t\t\t\tmatch[ 5 ] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[ 2 ] === \"~=\" ) {\n\t\t\t\tmatch[ 3 ] = \" \" + match[ 3 ] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[ 1 ] = match[ 1 ].toLowerCase();\n\n\t\t\tif ( match[ 1 ].slice( 0, 3 ) === \"nth\" ) {\n\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[ 3 ] ) {\n\t\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[ 4 ] = +( match[ 4 ] ?\n\t\t\t\t\tmatch[ 5 ] + ( match[ 6 ] || 1 ) :\n\t\t\t\t\t2 * ( match[ 3 ] === \"even\" || match[ 3 ] === \"odd\" ) );\n\t\t\t\tmatch[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === \"odd\" );\n\n\t\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[ 3 ] ) {\n\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[ 6 ] && match[ 2 ];\n\n\t\t\tif ( matchExpr[ \"CHILD\" ].test( match[ 0 ] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[ 3 ] ) {\n\t\t\t\tmatch[ 2 ] = match[ 4 ] || match[ 5 ] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t( excess = tokenize( unquoted, true ) ) &&\n\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t( excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length ) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[ 0 ] = match[ 0 ].slice( 0, excess );\n\t\t\t\tmatch[ 2 ] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() {\n\t\t\t\t\treturn true;\n\t\t\t\t} :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t( pattern = new RegExp( \"(^|\" + whitespace +\n\t\t\t\t\t\")\" + className + \"(\" + whitespace + \"|$)\" ) ) && classCache(\n\t\t\t\t\t\tclassName, function( elem ) {\n\t\t\t\t\t\t\treturn pattern.test(\n\t\t\t\t\t\t\t\ttypeof elem.className === \"string\" && elem.className ||\n\t\t\t\t\t\t\t\ttypeof elem.getAttribute !== \"undefined\" &&\n\t\t\t\t\t\t\t\t\telem.getAttribute( \"class\" ) ||\n\t\t\t\t\t\t\t\t\"\"\n\t\t\t\t\t\t\t);\n\t\t\t\t} );\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\t/* eslint-disable max-len */\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t\t/* eslint-enable max-len */\n\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, _argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tvar cache, uniqueCache, outerCache, node, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType,\n\t\t\t\t\t\tdiff = false;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( ( node = node[ dir ] ) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) {\n\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\n\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\tnode = parent;\n\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\tdiff = nodeIndex && cache[ 2 ];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t\tif ( useCache ) {\n\n\t\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\t\tdiff = nodeIndex;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// xml :nth-child(...)\n\t\t\t\t\t\t\t// or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t\tif ( diff === false ) {\n\n\t\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t\tif ( ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) &&\n\t\t\t\t\t\t\t\t\t\t++diff ) {\n\n\t\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t\touterCache = node[ expando ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction( function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[ i ] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[ i ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t} ) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction( function( selector ) {\n\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction( function( seed, matches, _context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\t\t\t\t\tseed[ i ] = !( matches[ i ] = elem );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} ) :\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tinput[ 0 ] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[ 0 ] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t} ),\n\n\t\t\"has\": markFunction( function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t} ),\n\n\t\t\"contains\": markFunction( function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t} ),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test( lang || \"\" ) ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( ( elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute( \"xml:lang\" ) || elem.getAttribute( \"lang\" ) ) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( ( elem = elem.parentNode ) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t} ),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement &&\n\t\t\t\t( !document.hasFocus || document.hasFocus() ) &&\n\t\t\t\t!!( elem.type || elem.href || ~elem.tabIndex );\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": createDisabledPseudo( false ),\n\t\t\"disabled\": createDisabledPseudo( true ),\n\n\t\t\"checked\": function( elem ) {\n\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn ( nodeName === \"input\" && !!elem.checked ) ||\n\t\t\t\t( nodeName === \"option\" && !!elem.selected );\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\t// eslint-disable-next-line no-unused-expressions\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[ \"empty\" ]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( ( attr = elem.getAttribute( \"type\" ) ) == null ||\n\t\t\t\t\tattr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo( function() {\n\t\t\treturn [ 0 ];\n\t\t} ),\n\n\t\t\"last\": createPositionalPseudo( function( _matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t} ),\n\n\t\t\"eq\": createPositionalPseudo( function( _matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t} ),\n\n\t\t\"even\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"odd\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"lt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ?\n\t\t\t\targument + length :\n\t\t\t\targument > length ?\n\t\t\t\t\tlength :\n\t\t\t\t\targument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"gt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} )\n\t}\n};\n\nExpr.pseudos[ \"nth\" ] = Expr.pseudos[ \"eq\" ];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || ( match = rcomma.exec( soFar ) ) ) {\n\t\t\tif ( match ) {\n\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[ 0 ].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( ( tokens = [] ) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( ( match = rcombinators.exec( soFar ) ) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push( {\n\t\t\t\tvalue: matched,\n\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[ 0 ].replace( rtrim, \" \" )\n\t\t\t} );\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] ||\n\t\t\t\t( match = preFilters[ type ]( match ) ) ) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push( {\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t} );\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[ i ].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tskip = combinator.next,\n\t\tkey = skip || dir,\n\t\tcheckNonElements = base && key === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, uniqueCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || ( elem[ expando ] = {} );\n\n\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\tuniqueCache = outerCache[ elem.uniqueID ] ||\n\t\t\t\t\t\t\t( outerCache[ elem.uniqueID ] = {} );\n\n\t\t\t\t\t\tif ( skip && skip === elem.nodeName.toLowerCase() ) {\n\t\t\t\t\t\t\telem = elem[ dir ] || elem;\n\t\t\t\t\t\t} else if ( ( oldCache = uniqueCache[ key ] ) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn ( newCache[ 2 ] = oldCache[ 2 ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\tuniqueCache[ key ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[ i ]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[ 0 ];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[ i ], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction( function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts(\n\t\t\t\tselector || \"*\",\n\t\t\t\tcontext.nodeType ? [ context ] : context,\n\t\t\t\t[]\n\t\t\t),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( ( elem = temp[ i ] ) ) {\n\t\t\t\t\tmatcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) ) {\n\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( ( matcherIn[ i ] = elem ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, ( matcherOut = [] ), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) &&\n\t\t\t\t\t\t( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) {\n\n\t\t\t\t\t\tseed[ temp ] = !( results[ temp ] = elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t} );\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[ 0 ].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[ \" \" ],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t( checkContext = context ).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) {\n\t\t\tmatchers = [ addCombinator( elementMatcher( matchers ), matcher ) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[ j ].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\n\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\ttokens\n\t\t\t\t\t\t.slice( 0, i - 1 )\n\t\t\t\t\t\t.concat( { value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" } )\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[ \"TAG\" ]( \"*\", outermost ),\n\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\n\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\toutermostContext = context == document || context || outermost;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\n\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\tif ( !context && elem.ownerDocument != document ) {\n\t\t\t\t\t\tsetDocument( elem );\n\t\t\t\t\t\txml = !documentIsHTML;\n\t\t\t\t\t}\n\t\t\t\t\twhile ( ( matcher = elementMatchers[ j++ ] ) ) {\n\t\t\t\t\t\tif ( matcher( elem, context || document, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( ( elem = !matcher && elem ) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// `i` is now the count of elements visited above, and adding it to `matchedCount`\n\t\t\t// makes the latter nonnegative.\n\t\t\tmatchedCount += i;\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\t// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n\t\t\t// equals `i`), unless we didn't visit _any_ elements in the above loop because we have\n\t\t\t// no element matchers and no seed.\n\t\t\t// Incrementing an initially-string \"0\" `i` allows `i` to remain a string only in that\n\t\t\t// case, which will result in a \"00\" `matchedCount` that differs from `i` but is also\n\t\t\t// numerically zero.\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( ( matcher = setMatchers[ j++ ] ) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !( unmatched[ i ] || setMatched[ i ] ) ) {\n\t\t\t\t\t\t\t\tsetMatched[ i ] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[ i ] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache(\n\t\t\tselector,\n\t\t\tmatcherFromGroupMatchers( elementMatchers, setMatchers )\n\t\t);\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( ( selector = compiled.selector || selector ) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is only one selector in the list and no seed\n\t// (the latter of which guarantees us context)\n\tif ( match.length === 1 ) {\n\n\t\t// Reduce context if the leading compound selector is an ID\n\t\ttokens = match[ 0 ] = match[ 0 ].slice( 0 );\n\t\tif ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === \"ID\" &&\n\t\t\tcontext.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) {\n\n\t\t\tcontext = ( Expr.find[ \"ID\" ]( token.matches[ 0 ]\n\t\t\t\t.replace( runescape, funescape ), context ) || [] )[ 0 ];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[ \"needsContext\" ].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[ i ];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ ( type = token.type ) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( ( find = Expr.find[ type ] ) ) {\n\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( ( seed = find(\n\t\t\t\t\ttoken.matches[ 0 ].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext\n\t\t\t\t) ) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\t!context || rsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split( \"\" ).sort( sortOrder ).join( \"\" ) === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert( function( el ) {\n\n\t// Should return 1, but returns 4 (following)\n\treturn el.compareDocumentPosition( document.createElement( \"fieldset\" ) ) & 1;\n} );\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert( function( el ) {\n\tel.innerHTML = \"<a href='#'></a>\";\n\treturn el.firstChild.getAttribute( \"href\" ) === \"#\";\n} ) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert( function( el ) {\n\tel.innerHTML = \"<input/>\";\n\tel.firstChild.setAttribute( \"value\", \"\" );\n\treturn el.firstChild.getAttribute( \"value\" ) === \"\";\n} ) ) {\n\taddHandle( \"value\", function( elem, _name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert( function( el ) {\n\treturn el.getAttribute( \"disabled\" ) == null;\n} ) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\t\tnull;\n\t\t}\n\t} );\n}\n\nreturn Sizzle;\n\n} )( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\n\n// Deprecated\njQuery.expr[ \":\" ] = jQuery.expr.pseudos;\njQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\njQuery.escapeSelector = Sizzle.escape;\n\n\n\n\nvar dir = function( elem, dir, until ) {\n\tvar matched = [],\n\t\ttruncate = until !== undefined;\n\n\twhile ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {\n\t\tif ( elem.nodeType === 1 ) {\n\t\t\tif ( truncate && jQuery( elem ).is( until ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tmatched.push( elem );\n\t\t}\n\t}\n\treturn matched;\n};\n\n\nvar siblings = function( n, elem ) {\n\tvar matched = [];\n\n\tfor ( ; n; n = n.nextSibling ) {\n\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\tmatched.push( n );\n\t\t}\n\t}\n\n\treturn matched;\n};\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\n\n\nfunction nodeName( elem, name ) {\n\n  return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\n};\nvar rsingleTag = ( /^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i );\n\n\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t} );\n\t}\n\n\t// Single element\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t} );\n\t}\n\n\t// Arraylike of elements (jQuery, arguments, Array)\n\tif ( typeof qualifier !== \"string\" ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( indexOf.call( qualifier, elem ) > -1 ) !== not;\n\t\t} );\n\t}\n\n\t// Filtered directly for both simple and complex selectors\n\treturn jQuery.filter( qualifier, elements, not );\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\tif ( elems.length === 1 && elem.nodeType === 1 ) {\n\t\treturn jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];\n\t}\n\n\treturn jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\treturn elem.nodeType === 1;\n\t} ) );\n};\n\njQuery.fn.extend( {\n\tfind: function( selector ) {\n\t\tvar i, ret,\n\t\t\tlen = this.length,\n\t\t\tself = this;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter( function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} ) );\n\t\t}\n\n\t\tret = this.pushStack( [] );\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\treturn len > 1 ? jQuery.uniqueSort( ret ) : ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], false ) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], true ) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n} );\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\t// Shortcut simple #id case for speed\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/,\n\n\tinit = jQuery.fn.init = function( selector, context, root ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Method init() accepts an alternate rootjQuery\n\t\t// so migrate can support jQuery.sub (gh-2101)\n\t\troot = root || rootjQuery;\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector[ 0 ] === \"<\" &&\n\t\t\t\tselector[ selector.length - 1 ] === \">\" &&\n\t\t\t\tselector.length >= 3 ) {\n\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && ( match[ 1 ] || !context ) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[ 1 ] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[ 0 ] : context;\n\n\t\t\t\t\t// Option to run scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[ 1 ],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[ 2 ] );\n\n\t\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t\t// Inject the element directly into the jQuery object\n\t\t\t\t\t\tthis[ 0 ] = elem;\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || root ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis[ 0 ] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( isFunction( selector ) ) {\n\t\t\treturn root.ready !== undefined ?\n\t\t\t\troot.ready( selector ) :\n\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\n\t// Methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend( {\n\thas: function( target ) {\n\t\tvar targets = jQuery( target, this ),\n\t\t\tl = targets.length;\n\n\t\treturn this.filter( function() {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[ i ] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\ttargets = typeof selectors !== \"string\" && jQuery( selectors );\n\n\t\t// Positional selectors never match, since there's no _selection_ context\n\t\tif ( !rneedsContext.test( selectors ) ) {\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tfor ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {\n\n\t\t\t\t\t// Always skip document fragments\n\t\t\t\t\tif ( cur.nodeType < 11 && ( targets ?\n\t\t\t\t\t\ttargets.index( cur ) > -1 :\n\n\t\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\t\tjQuery.find.matchesSelector( cur, selectors ) ) ) {\n\n\t\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within the set\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// Index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn indexOf.call( jQuery( elem ), this[ 0 ] );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn indexOf.call( this,\n\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[ 0 ] : elem\n\t\t);\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.uniqueSort(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t}\n} );\n\nfunction sibling( cur, dir ) {\n\twhile ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}\n\treturn cur;\n}\n\njQuery.each( {\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn siblings( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn siblings( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\tif ( elem.contentDocument != null &&\n\n\t\t\t// Support: IE 11+\n\t\t\t// <object> elements with no `data` attribute has an object\n\t\t\t// `contentDocument` with a `null` prototype.\n\t\t\tgetProto( elem.contentDocument ) ) {\n\n\t\t\treturn elem.contentDocument;\n\t\t}\n\n\t\t// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only\n\t\t// Treat the template element as a regular one in browsers that\n\t\t// don't support it.\n\t\tif ( nodeName( elem, \"template\" ) ) {\n\t\t\telem = elem.content || elem;\n\t\t}\n\n\t\treturn jQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar matched = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tmatched = jQuery.filter( selector, matched );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tjQuery.uniqueSort( matched );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tmatched.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched );\n\t};\n} );\nvar rnothtmlwhite = ( /[^\\x20\\t\\r\\n\\f]+/g );\n\n\n\n// Convert String-formatted options into Object-formatted ones\nfunction createOptions( options ) {\n\tvar object = {};\n\tjQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t} );\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\tcreateOptions( options ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\n\t\t// Last fire value for non-forgettable lists\n\t\tmemory,\n\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\n\t\t// Flag to prevent firing\n\t\tlocked,\n\n\t\t// Actual callback list\n\t\tlist = [],\n\n\t\t// Queue of execution data for repeatable lists\n\t\tqueue = [],\n\n\t\t// Index of currently firing callback (modified by add/remove as needed)\n\t\tfiringIndex = -1,\n\n\t\t// Fire callbacks\n\t\tfire = function() {\n\n\t\t\t// Enforce single-firing\n\t\t\tlocked = locked || options.once;\n\n\t\t\t// Execute callbacks for all pending executions,\n\t\t\t// respecting firingIndex overrides and runtime changes\n\t\t\tfired = firing = true;\n\t\t\tfor ( ; queue.length; firingIndex = -1 ) {\n\t\t\t\tmemory = queue.shift();\n\t\t\t\twhile ( ++firingIndex < list.length ) {\n\n\t\t\t\t\t// Run callback and check for early termination\n\t\t\t\t\tif ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&\n\t\t\t\t\t\toptions.stopOnFalse ) {\n\n\t\t\t\t\t\t// Jump to end and forget the data so .add doesn't re-fire\n\t\t\t\t\t\tfiringIndex = list.length;\n\t\t\t\t\t\tmemory = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Forget the data if we're done with it\n\t\t\tif ( !options.memory ) {\n\t\t\t\tmemory = false;\n\t\t\t}\n\n\t\t\tfiring = false;\n\n\t\t\t// Clean up if we're done firing for good\n\t\t\tif ( locked ) {\n\n\t\t\t\t// Keep an empty list if we have data for future add calls\n\t\t\t\tif ( memory ) {\n\t\t\t\t\tlist = [];\n\n\t\t\t\t// Otherwise, this object is spent\n\t\t\t\t} else {\n\t\t\t\t\tlist = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t// Actual Callbacks object\n\t\tself = {\n\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\n\t\t\t\t\t// If we have memory from a past run, we should fire after adding\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfiringIndex = list.length - 1;\n\t\t\t\t\t\tqueue.push( memory );\n\t\t\t\t\t}\n\n\t\t\t\t\t( function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tif ( isFunction( arg ) ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && toType( arg ) !== \"string\" ) {\n\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t} )( arguments );\n\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\tvar index;\n\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\tlist.splice( index, 1 );\n\n\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ?\n\t\t\t\t\tjQuery.inArray( fn, list ) > -1 :\n\t\t\t\t\tlist.length > 0;\n\t\t\t},\n\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Disable .fire and .add\n\t\t\t// Abort any current/pending executions\n\t\t\t// Clear all callbacks and values\n\t\t\tdisable: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tlist = memory = \"\";\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\n\t\t\t// Disable .fire\n\t\t\t// Also disable .add unless we have memory (since it would have no effect)\n\t\t\t// Abort any pending executions\n\t\t\tlock: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tif ( !memory && !firing ) {\n\t\t\t\t\tlist = memory = \"\";\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tlocked: function() {\n\t\t\t\treturn !!locked;\n\t\t\t},\n\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( !locked ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tqueue.push( args );\n\t\t\t\t\tif ( !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\nfunction Identity( v ) {\n\treturn v;\n}\nfunction Thrower( ex ) {\n\tthrow ex;\n}\n\nfunction adoptValue( value, resolve, reject, noValue ) {\n\tvar method;\n\n\ttry {\n\n\t\t// Check for promise aspect first to privilege synchronous behavior\n\t\tif ( value && isFunction( ( method = value.promise ) ) ) {\n\t\t\tmethod.call( value ).done( resolve ).fail( reject );\n\n\t\t// Other thenables\n\t\t} else if ( value && isFunction( ( method = value.then ) ) ) {\n\t\t\tmethod.call( value, resolve, reject );\n\n\t\t// Other non-thenables\n\t\t} else {\n\n\t\t\t// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:\n\t\t\t// * false: [ value ].slice( 0 ) => resolve( value )\n\t\t\t// * true: [ value ].slice( 1 ) => resolve()\n\t\t\tresolve.apply( undefined, [ value ].slice( noValue ) );\n\t\t}\n\n\t// For Promises/A+, convert exceptions into rejections\n\t// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in\n\t// Deferred#then to conditionally suppress rejection.\n\t} catch ( value ) {\n\n\t\t// Support: Android 4.0 only\n\t\t// Strict mode functions invoked without .call/.apply get global-object context\n\t\treject.apply( undefined, [ value ] );\n\t}\n}\n\njQuery.extend( {\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\n\t\t\t\t// action, add listener, callbacks,\n\t\t\t\t// ... .then handlers, argument index, [final state]\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks( \"memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"memory\" ), 2 ],\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 0, \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 1, \"rejected\" ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\t\"catch\": function( fn ) {\n\t\t\t\t\treturn promise.then( null, fn );\n\t\t\t\t},\n\n\t\t\t\t// Keep pipe for back-compat\n\t\t\t\tpipe: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( _i, tuple ) {\n\n\t\t\t\t\t\t\t// Map tuples (progress, done, fail) to arguments (done, fail, progress)\n\t\t\t\t\t\t\tvar fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];\n\n\t\t\t\t\t\t\t// deferred.progress(function() { bind to newDefer or newDefer.notify })\n\t\t\t\t\t\t\t// deferred.done(function() { bind to newDefer or newDefer.resolve })\n\t\t\t\t\t\t\t// deferred.fail(function() { bind to newDefer or newDefer.reject })\n\t\t\t\t\t\t\tdeferred[ tuple[ 1 ] ]( function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify )\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ](\n\t\t\t\t\t\t\t\t\t\tthis,\n\t\t\t\t\t\t\t\t\t\tfn ? [ returned ] : arguments\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t} );\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\t\t\t\tthen: function( onFulfilled, onRejected, onProgress ) {\n\t\t\t\t\tvar maxDepth = 0;\n\t\t\t\t\tfunction resolve( depth, deferred, handler, special ) {\n\t\t\t\t\t\treturn function() {\n\t\t\t\t\t\t\tvar that = this,\n\t\t\t\t\t\t\t\targs = arguments,\n\t\t\t\t\t\t\t\tmightThrow = function() {\n\t\t\t\t\t\t\t\t\tvar returned, then;\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.3\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-59\n\t\t\t\t\t\t\t\t\t// Ignore double-resolution attempts\n\t\t\t\t\t\t\t\t\tif ( depth < maxDepth ) {\n\t\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\treturned = handler.apply( that, args );\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.1\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-48\n\t\t\t\t\t\t\t\t\tif ( returned === deferred.promise() ) {\n\t\t\t\t\t\t\t\t\t\tthrow new TypeError( \"Thenable self-resolution\" );\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ sections 2.3.3.1, 3.5\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-54\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-75\n\t\t\t\t\t\t\t\t\t// Retrieve `then` only once\n\t\t\t\t\t\t\t\t\tthen = returned &&\n\n\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.4\n\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-64\n\t\t\t\t\t\t\t\t\t\t// Only check objects and functions for thenability\n\t\t\t\t\t\t\t\t\t\t( typeof returned === \"object\" ||\n\t\t\t\t\t\t\t\t\t\t\ttypeof returned === \"function\" ) &&\n\t\t\t\t\t\t\t\t\t\treturned.then;\n\n\t\t\t\t\t\t\t\t\t// Handle a returned thenable\n\t\t\t\t\t\t\t\t\tif ( isFunction( then ) ) {\n\n\t\t\t\t\t\t\t\t\t\t// Special processors (notify) just wait for resolution\n\t\t\t\t\t\t\t\t\t\tif ( special ) {\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special )\n\t\t\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\t\t// Normal processors (resolve) also hook into progress\n\t\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t\t// ...and disregard older resolution values\n\t\t\t\t\t\t\t\t\t\t\tmaxDepth++;\n\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdeferred.notifyWith )\n\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Handle all other returned values\n\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\tif ( handler !== Identity ) {\n\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\targs = [ returned ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t// Process the value(s)\n\t\t\t\t\t\t\t\t\t\t// Default process is resolve\n\t\t\t\t\t\t\t\t\t\t( special || deferred.resolveWith )( that, args );\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},\n\n\t\t\t\t\t\t\t\t// Only normal processors (resolve) catch and reject exceptions\n\t\t\t\t\t\t\t\tprocess = special ?\n\t\t\t\t\t\t\t\t\tmightThrow :\n\t\t\t\t\t\t\t\t\tfunction() {\n\t\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\t\tmightThrow();\n\t\t\t\t\t\t\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t\t\t\t\t\t\tif ( jQuery.Deferred.exceptionHook ) {\n\t\t\t\t\t\t\t\t\t\t\t\tjQuery.Deferred.exceptionHook( e,\n\t\t\t\t\t\t\t\t\t\t\t\t\tprocess.stackTrace );\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.4.1\n\t\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-61\n\t\t\t\t\t\t\t\t\t\t\t// Ignore post-resolution exceptions\n\t\t\t\t\t\t\t\t\t\t\tif ( depth + 1 >= maxDepth ) {\n\n\t\t\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\t\t\tif ( handler !== Thrower ) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\t\t\targs = [ e ];\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tdeferred.rejectWith( that, args );\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t};\n\n\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.1\n\t\t\t\t\t\t\t// https://promisesaplus.com/#point-57\n\t\t\t\t\t\t\t// Re-resolve promises immediately to dodge false rejection from\n\t\t\t\t\t\t\t// subsequent errors\n\t\t\t\t\t\t\tif ( depth ) {\n\t\t\t\t\t\t\t\tprocess();\n\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t// Call an optional hook to record the stack, in case of exception\n\t\t\t\t\t\t\t\t// since it's otherwise lost when execution goes async\n\t\t\t\t\t\t\t\tif ( jQuery.Deferred.getStackHook ) {\n\t\t\t\t\t\t\t\t\tprocess.stackTrace = jQuery.Deferred.getStackHook();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\twindow.setTimeout( process );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\n\t\t\t\t\t\t// progress_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 0 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onProgress ) ?\n\t\t\t\t\t\t\t\t\tonProgress :\n\t\t\t\t\t\t\t\t\tIdentity,\n\t\t\t\t\t\t\t\tnewDefer.notifyWith\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// fulfilled_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 1 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onFulfilled ) ?\n\t\t\t\t\t\t\t\t\tonFulfilled :\n\t\t\t\t\t\t\t\t\tIdentity\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// rejected_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 2 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onRejected ) ?\n\t\t\t\t\t\t\t\t\tonRejected :\n\t\t\t\t\t\t\t\t\tThrower\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 5 ];\n\n\t\t\t// promise.progress = list.add\n\t\t\t// promise.done = list.add\n\t\t\t// promise.fail = list.add\n\t\t\tpromise[ tuple[ 1 ] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(\n\t\t\t\t\tfunction() {\n\n\t\t\t\t\t\t// state = \"resolved\" (i.e., fulfilled)\n\t\t\t\t\t\t// state = \"rejected\"\n\t\t\t\t\t\tstate = stateString;\n\t\t\t\t\t},\n\n\t\t\t\t\t// rejected_callbacks.disable\n\t\t\t\t\t// fulfilled_callbacks.disable\n\t\t\t\t\ttuples[ 3 - i ][ 2 ].disable,\n\n\t\t\t\t\t// rejected_handlers.disable\n\t\t\t\t\t// fulfilled_handlers.disable\n\t\t\t\t\ttuples[ 3 - i ][ 3 ].disable,\n\n\t\t\t\t\t// progress_callbacks.lock\n\t\t\t\t\ttuples[ 0 ][ 2 ].lock,\n\n\t\t\t\t\t// progress_handlers.lock\n\t\t\t\t\ttuples[ 0 ][ 3 ].lock\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// progress_handlers.fire\n\t\t\t// fulfilled_handlers.fire\n\t\t\t// rejected_handlers.fire\n\t\t\tlist.add( tuple[ 3 ].fire );\n\n\t\t\t// deferred.notify = function() { deferred.notifyWith(...) }\n\t\t\t// deferred.resolve = function() { deferred.resolveWith(...) }\n\t\t\t// deferred.reject = function() { deferred.rejectWith(...) }\n\t\t\tdeferred[ tuple[ 0 ] ] = function() {\n\t\t\t\tdeferred[ tuple[ 0 ] + \"With\" ]( this === deferred ? undefined : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\n\t\t\t// deferred.notifyWith = list.fireWith\n\t\t\t// deferred.resolveWith = list.fireWith\n\t\t\t// deferred.rejectWith = list.fireWith\n\t\t\tdeferred[ tuple[ 0 ] + \"With\" ] = list.fireWith;\n\t\t} );\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( singleValue ) {\n\t\tvar\n\n\t\t\t// count of uncompleted subordinates\n\t\t\tremaining = arguments.length,\n\n\t\t\t// count of unprocessed arguments\n\t\t\ti = remaining,\n\n\t\t\t// subordinate fulfillment data\n\t\t\tresolveContexts = Array( i ),\n\t\t\tresolveValues = slice.call( arguments ),\n\n\t\t\t// the master Deferred\n\t\t\tmaster = jQuery.Deferred(),\n\n\t\t\t// subordinate callback factory\n\t\t\tupdateFunc = function( i ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tresolveContexts[ i ] = this;\n\t\t\t\t\tresolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( !( --remaining ) ) {\n\t\t\t\t\t\tmaster.resolveWith( resolveContexts, resolveValues );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t};\n\n\t\t// Single- and empty arguments are adopted like Promise.resolve\n\t\tif ( remaining <= 1 ) {\n\t\t\tadoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject,\n\t\t\t\t!remaining );\n\n\t\t\t// Use .then() to unwrap secondary thenables (cf. gh-3000)\n\t\t\tif ( master.state() === \"pending\" ||\n\t\t\t\tisFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {\n\n\t\t\t\treturn master.then();\n\t\t\t}\n\t\t}\n\n\t\t// Multiple arguments are aggregated like Promise.all array elements\n\t\twhile ( i-- ) {\n\t\t\tadoptValue( resolveValues[ i ], updateFunc( i ), master.reject );\n\t\t}\n\n\t\treturn master.promise();\n\t}\n} );\n\n\n// These usually indicate a programmer mistake during development,\n// warn about them ASAP rather than swallowing them by default.\nvar rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;\n\njQuery.Deferred.exceptionHook = function( error, stack ) {\n\n\t// Support: IE 8 - 9 only\n\t// Console exists when dev tools are open, which can happen at any time\n\tif ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {\n\t\twindow.console.warn( \"jQuery.Deferred exception: \" + error.message, error.stack, stack );\n\t}\n};\n\n\n\n\njQuery.readyException = function( error ) {\n\twindow.setTimeout( function() {\n\t\tthrow error;\n\t} );\n};\n\n\n\n\n// The deferred used on DOM ready\nvar readyList = jQuery.Deferred();\n\njQuery.fn.ready = function( fn ) {\n\n\treadyList\n\t\t.then( fn )\n\n\t\t// Wrap jQuery.readyException in a function so that the lookup\n\t\t// happens at the time of error handling instead of callback\n\t\t// registration.\n\t\t.catch( function( error ) {\n\t\t\tjQuery.readyException( error );\n\t\t} );\n\n\treturn this;\n};\n\njQuery.extend( {\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\t}\n} );\n\njQuery.ready.then = readyList.then;\n\n// The ready event handler and self cleanup method\nfunction completed() {\n\tdocument.removeEventListener( \"DOMContentLoaded\", completed );\n\twindow.removeEventListener( \"load\", completed );\n\tjQuery.ready();\n}\n\n// Catch cases where $(document).ready() is called\n// after the browser event has already occurred.\n// Support: IE <=9 - 10 only\n// Older IE sometimes signals \"interactive\" too soon\nif ( document.readyState === \"complete\" ||\n\t( document.readyState !== \"loading\" && !document.documentElement.doScroll ) ) {\n\n\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\twindow.setTimeout( jQuery.ready );\n\n} else {\n\n\t// Use the handy event callback\n\tdocument.addEventListener( \"DOMContentLoaded\", completed );\n\n\t// A fallback to window.onload, that will always work\n\twindow.addEventListener( \"load\", completed );\n}\n\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlen = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( toType( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\taccess( elems, fn, i, key[ i ], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, _key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\tfn(\n\t\t\t\t\telems[ i ], key, raw ?\n\t\t\t\t\tvalue :\n\t\t\t\t\tvalue.call( elems[ i ], i, fn( elems[ i ], key ) )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( chainable ) {\n\t\treturn elems;\n\t}\n\n\t// Gets\n\tif ( bulk ) {\n\t\treturn fn.call( elems );\n\t}\n\n\treturn len ? fn( elems[ 0 ], key ) : emptyGet;\n};\n\n\n// Matches dashed string for camelizing\nvar rmsPrefix = /^-ms-/,\n\trdashAlpha = /-([a-z])/g;\n\n// Used by camelCase as callback to replace()\nfunction fcamelCase( _all, letter ) {\n\treturn letter.toUpperCase();\n}\n\n// Convert dashed to camelCase; used by the css and data modules\n// Support: IE <=9 - 11, Edge 12 - 15\n// Microsoft forgot to hump their vendor prefix (#9572)\nfunction camelCase( string ) {\n\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n}\nvar acceptData = function( owner ) {\n\n\t// Accepts only:\n\t//  - Node\n\t//    - Node.ELEMENT_NODE\n\t//    - Node.DOCUMENT_NODE\n\t//  - Object\n\t//    - Any\n\treturn owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );\n};\n\n\n\n\nfunction Data() {\n\tthis.expando = jQuery.expando + Data.uid++;\n}\n\nData.uid = 1;\n\nData.prototype = {\n\n\tcache: function( owner ) {\n\n\t\t// Check if the owner object already has a cache\n\t\tvar value = owner[ this.expando ];\n\n\t\t// If not, create one\n\t\tif ( !value ) {\n\t\t\tvalue = {};\n\n\t\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t\t// but we should not, see #8335.\n\t\t\t// Always return an empty object.\n\t\t\tif ( acceptData( owner ) ) {\n\n\t\t\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t\t\t// use plain assignment\n\t\t\t\tif ( owner.nodeType ) {\n\t\t\t\t\towner[ this.expando ] = value;\n\n\t\t\t\t// Otherwise secure it in a non-enumerable property\n\t\t\t\t// configurable must be true to allow the property to be\n\t\t\t\t// deleted when data is removed\n\t\t\t\t} else {\n\t\t\t\t\tObject.defineProperty( owner, this.expando, {\n\t\t\t\t\t\tvalue: value,\n\t\t\t\t\t\tconfigurable: true\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn value;\n\t},\n\tset: function( owner, data, value ) {\n\t\tvar prop,\n\t\t\tcache = this.cache( owner );\n\n\t\t// Handle: [ owner, key, value ] args\n\t\t// Always use camelCase key (gh-2257)\n\t\tif ( typeof data === \"string\" ) {\n\t\t\tcache[ camelCase( data ) ] = value;\n\n\t\t// Handle: [ owner, { properties } ] args\n\t\t} else {\n\n\t\t\t// Copy the properties one-by-one to the cache object\n\t\t\tfor ( prop in data ) {\n\t\t\t\tcache[ camelCase( prop ) ] = data[ prop ];\n\t\t\t}\n\t\t}\n\t\treturn cache;\n\t},\n\tget: function( owner, key ) {\n\t\treturn key === undefined ?\n\t\t\tthis.cache( owner ) :\n\n\t\t\t// Always use camelCase key (gh-2257)\n\t\t\towner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];\n\t},\n\taccess: function( owner, key, value ) {\n\n\t\t// In cases where either:\n\t\t//\n\t\t//   1. No key was specified\n\t\t//   2. A string key was specified, but no value provided\n\t\t//\n\t\t// Take the \"read\" path and allow the get method to determine\n\t\t// which value to return, respectively either:\n\t\t//\n\t\t//   1. The entire cache object\n\t\t//   2. The data stored at the key\n\t\t//\n\t\tif ( key === undefined ||\n\t\t\t\t( ( key && typeof key === \"string\" ) && value === undefined ) ) {\n\n\t\t\treturn this.get( owner, key );\n\t\t}\n\n\t\t// When the key is not a string, or both a key and value\n\t\t// are specified, set or extend (existing objects) with either:\n\t\t//\n\t\t//   1. An object of properties\n\t\t//   2. A key and value\n\t\t//\n\t\tthis.set( owner, key, value );\n\n\t\t// Since the \"set\" path can have two possible entry points\n\t\t// return the expected data based on which path was taken[*]\n\t\treturn value !== undefined ? value : key;\n\t},\n\tremove: function( owner, key ) {\n\t\tvar i,\n\t\t\tcache = owner[ this.expando ];\n\n\t\tif ( cache === undefined ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key !== undefined ) {\n\n\t\t\t// Support array or space separated string of keys\n\t\t\tif ( Array.isArray( key ) ) {\n\n\t\t\t\t// If key is an array of keys...\n\t\t\t\t// We always set camelCase keys, so remove that.\n\t\t\t\tkey = key.map( camelCase );\n\t\t\t} else {\n\t\t\t\tkey = camelCase( key );\n\n\t\t\t\t// If a key with the spaces exists, use it.\n\t\t\t\t// Otherwise, create an array by matching non-whitespace\n\t\t\t\tkey = key in cache ?\n\t\t\t\t\t[ key ] :\n\t\t\t\t\t( key.match( rnothtmlwhite ) || [] );\n\t\t\t}\n\n\t\t\ti = key.length;\n\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete cache[ key[ i ] ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if there's no more data\n\t\tif ( key === undefined || jQuery.isEmptyObject( cache ) ) {\n\n\t\t\t// Support: Chrome <=35 - 45\n\t\t\t// Webkit & Blink performance suffers when deleting properties\n\t\t\t// from DOM nodes, so set to undefined instead\n\t\t\t// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)\n\t\t\tif ( owner.nodeType ) {\n\t\t\t\towner[ this.expando ] = undefined;\n\t\t\t} else {\n\t\t\t\tdelete owner[ this.expando ];\n\t\t\t}\n\t\t}\n\t},\n\thasData: function( owner ) {\n\t\tvar cache = owner[ this.expando ];\n\t\treturn cache !== undefined && !jQuery.isEmptyObject( cache );\n\t}\n};\nvar dataPriv = new Data();\n\nvar dataUser = new Data();\n\n\n\n//\tImplementation Summary\n//\n//\t1. Enforce API surface and semantic compatibility with 1.9.x branch\n//\t2. Improve the module's maintainability by reducing the storage\n//\t\tpaths to a single mechanism.\n//\t3. Use the same single mechanism to support \"private\" and \"user\" data.\n//\t4. _Never_ expose \"private\" data to user code (TODO: Drop _data, _removeData)\n//\t5. Avoid exposing implementation details on user objects (eg. expando properties)\n//\t6. Provide a clear path for implementation upgrade to WeakMap in 2014\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /[A-Z]/g;\n\nfunction getData( data ) {\n\tif ( data === \"true\" ) {\n\t\treturn true;\n\t}\n\n\tif ( data === \"false\" ) {\n\t\treturn false;\n\t}\n\n\tif ( data === \"null\" ) {\n\t\treturn null;\n\t}\n\n\t// Only convert to a number if it doesn't change the string\n\tif ( data === +data + \"\" ) {\n\t\treturn +data;\n\t}\n\n\tif ( rbrace.test( data ) ) {\n\t\treturn JSON.parse( data );\n\t}\n\n\treturn data;\n}\n\nfunction dataAttr( elem, key, data ) {\n\tvar name;\n\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\t\tname = \"data-\" + key.replace( rmultiDash, \"-$&\" ).toLowerCase();\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = getData( data );\n\t\t\t} catch ( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tdataUser.set( elem, key, data );\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\treturn data;\n}\n\njQuery.extend( {\n\thasData: function( elem ) {\n\t\treturn dataUser.hasData( elem ) || dataPriv.hasData( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn dataUser.access( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\tdataUser.remove( elem, name );\n\t},\n\n\t// TODO: Now that all calls to _data and _removeData have been replaced\n\t// with direct calls to dataPriv methods, these can be deprecated.\n\t_data: function( elem, name, data ) {\n\t\treturn dataPriv.access( elem, name, data );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\tdataPriv.remove( elem, name );\n\t}\n} );\n\njQuery.fn.extend( {\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[ 0 ],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = dataUser.get( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !dataPriv.get( elem, \"hasDataAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE 11 only\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = camelCase( name.slice( 5 ) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tdataPriv.set( elem, \"hasDataAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tdataUser.set( this, key );\n\t\t\t} );\n\t\t}\n\n\t\treturn access( this, function( value ) {\n\t\t\tvar data;\n\n\t\t\t// The calling jQuery object (element matches) is not empty\n\t\t\t// (and therefore has an element appears at this[ 0 ]) and the\n\t\t\t// `value` parameter was not undefined. An empty jQuery object\n\t\t\t// will result in `undefined` for elem = this[ 0 ] which will\n\t\t\t// throw an exception if an attempt to read a data cache is made.\n\t\t\tif ( elem && value === undefined ) {\n\n\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t// The key will always be camelCased in Data\n\t\t\t\tdata = dataUser.get( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Attempt to \"discover\" the data in\n\t\t\t\t// HTML5 custom data-* attrs\n\t\t\t\tdata = dataAttr( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// We tried really hard, but the data doesn't exist.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Set the data...\n\t\t\tthis.each( function() {\n\n\t\t\t\t// We always store the camelCased key\n\t\t\t\tdataUser.set( this, key, value );\n\t\t\t} );\n\t\t}, null, value, arguments.length > 1, null, true );\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each( function() {\n\t\t\tdataUser.remove( this, key );\n\t\t} );\n\t}\n} );\n\n\njQuery.extend( {\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = dataPriv.get( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || Array.isArray( data ) ) {\n\t\t\t\t\tqueue = dataPriv.access( elem, type, jQuery.makeArray( data ) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// Clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// Not public - generate a queueHooks object, or return the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn dataPriv.get( elem, key ) || dataPriv.access( elem, key, {\n\t\t\tempty: jQuery.Callbacks( \"once memory\" ).add( function() {\n\t\t\t\tdataPriv.remove( elem, [ type + \"queue\", key ] );\n\t\t\t} )\n\t\t} );\n\t}\n} );\n\njQuery.fn.extend( {\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[ 0 ], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each( function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// Ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[ 0 ] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t} );\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t} );\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = dataPriv.get( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n} );\nvar pnum = ( /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/ ).source;\n\nvar rcssNum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" );\n\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar documentElement = document.documentElement;\n\n\n\n\tvar isAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem );\n\t\t},\n\t\tcomposed = { composed: true };\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only\n\t// Check attachment across shadow DOM boundaries when possible (gh-3504)\n\t// Support: iOS 10.0-10.2 only\n\t// Early iOS 10 versions support `attachShadow` but not `getRootNode`,\n\t// leading to errors. We need to check for `getRootNode`.\n\tif ( documentElement.getRootNode ) {\n\t\tisAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem ) ||\n\t\t\t\telem.getRootNode( composed ) === elem.ownerDocument;\n\t\t};\n\t}\nvar isHiddenWithinTree = function( elem, el ) {\n\n\t\t// isHiddenWithinTree might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\n\t\t// Inline style trumps all\n\t\treturn elem.style.display === \"none\" ||\n\t\t\telem.style.display === \"\" &&\n\n\t\t\t// Otherwise, check computed style\n\t\t\t// Support: Firefox <=43 - 45\n\t\t\t// Disconnected elements can have computed display: none, so first confirm that elem is\n\t\t\t// in the document.\n\t\t\tisAttached( elem ) &&\n\n\t\t\tjQuery.css( elem, \"display\" ) === \"none\";\n\t};\n\n\n\nfunction adjustCSS( elem, prop, valueParts, tween ) {\n\tvar adjusted, scale,\n\t\tmaxIterations = 20,\n\t\tcurrentValue = tween ?\n\t\t\tfunction() {\n\t\t\t\treturn tween.cur();\n\t\t\t} :\n\t\t\tfunction() {\n\t\t\t\treturn jQuery.css( elem, prop, \"\" );\n\t\t\t},\n\t\tinitial = currentValue(),\n\t\tunit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t// Starting value computation is required for potential unit mismatches\n\t\tinitialInUnit = elem.nodeType &&\n\t\t\t( jQuery.cssNumber[ prop ] || unit !== \"px\" && +initial ) &&\n\t\t\trcssNum.exec( jQuery.css( elem, prop ) );\n\n\tif ( initialInUnit && initialInUnit[ 3 ] !== unit ) {\n\n\t\t// Support: Firefox <=54\n\t\t// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)\n\t\tinitial = initial / 2;\n\n\t\t// Trust units reported by jQuery.css\n\t\tunit = unit || initialInUnit[ 3 ];\n\n\t\t// Iteratively approximate from a nonzero starting point\n\t\tinitialInUnit = +initial || 1;\n\n\t\twhile ( maxIterations-- ) {\n\n\t\t\t// Evaluate and update our best guess (doubling guesses that zero out).\n\t\t\t// Finish if the scale equals or crosses 1 (making the old*new product non-positive).\n\t\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\t\t\tif ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {\n\t\t\t\tmaxIterations = 0;\n\t\t\t}\n\t\t\tinitialInUnit = initialInUnit / scale;\n\n\t\t}\n\n\t\tinitialInUnit = initialInUnit * 2;\n\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\n\t\t// Make sure we update the tween properties later on\n\t\tvalueParts = valueParts || [];\n\t}\n\n\tif ( valueParts ) {\n\t\tinitialInUnit = +initialInUnit || +initial || 0;\n\n\t\t// Apply relative offset (+=/-=) if specified\n\t\tadjusted = valueParts[ 1 ] ?\n\t\t\tinitialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :\n\t\t\t+valueParts[ 2 ];\n\t\tif ( tween ) {\n\t\t\ttween.unit = unit;\n\t\t\ttween.start = initialInUnit;\n\t\t\ttween.end = adjusted;\n\t\t}\n\t}\n\treturn adjusted;\n}\n\n\nvar defaultDisplayMap = {};\n\nfunction getDefaultDisplay( elem ) {\n\tvar temp,\n\t\tdoc = elem.ownerDocument,\n\t\tnodeName = elem.nodeName,\n\t\tdisplay = defaultDisplayMap[ nodeName ];\n\n\tif ( display ) {\n\t\treturn display;\n\t}\n\n\ttemp = doc.body.appendChild( doc.createElement( nodeName ) );\n\tdisplay = jQuery.css( temp, \"display\" );\n\n\ttemp.parentNode.removeChild( temp );\n\n\tif ( display === \"none\" ) {\n\t\tdisplay = \"block\";\n\t}\n\tdefaultDisplayMap[ nodeName ] = display;\n\n\treturn display;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\t// Determine new display value for elements that need to change\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\n\t\t\t// Since we force visibility upon cascade-hidden elements, an immediate (and slow)\n\t\t\t// check is required in this first loop unless we have a nonempty display value (either\n\t\t\t// inline or about-to-be-restored)\n\t\t\tif ( display === \"none\" ) {\n\t\t\t\tvalues[ index ] = dataPriv.get( elem, \"display\" ) || null;\n\t\t\t\tif ( !values[ index ] ) {\n\t\t\t\t\telem.style.display = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( elem.style.display === \"\" && isHiddenWithinTree( elem ) ) {\n\t\t\t\tvalues[ index ] = getDefaultDisplay( elem );\n\t\t\t}\n\t\t} else {\n\t\t\tif ( display !== \"none\" ) {\n\t\t\t\tvalues[ index ] = \"none\";\n\n\t\t\t\t// Remember what we're overwriting\n\t\t\t\tdataPriv.set( elem, \"display\", display );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of the elements in a second loop to avoid constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\tif ( values[ index ] != null ) {\n\t\t\telements[ index ].style.display = values[ index ];\n\t\t}\n\t}\n\n\treturn elements;\n}\n\njQuery.fn.extend( {\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tif ( isHiddenWithinTree( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t} );\n\t}\n} );\nvar rcheckableType = ( /^(?:checkbox|radio)$/i );\n\nvar rtagName = ( /<([a-z][^\\/\\0>\\x20\\t\\r\\n\\f]*)/i );\n\nvar rscriptType = ( /^$|^module$|\\/(?:java|ecma)script/i );\n\n\n\n( function() {\n\tvar fragment = document.createDocumentFragment(),\n\t\tdiv = fragment.appendChild( document.createElement( \"div\" ) ),\n\t\tinput = document.createElement( \"input\" );\n\n\t// Support: Android 4.0 - 4.3 only\n\t// Check state lost if the name is set (#11217)\n\t// Support: Windows Web Apps (WWA)\n\t// `name` and `type` must use .setAttribute for WWA (#14901)\n\tinput.setAttribute( \"type\", \"radio\" );\n\tinput.setAttribute( \"checked\", \"checked\" );\n\tinput.setAttribute( \"name\", \"t\" );\n\n\tdiv.appendChild( input );\n\n\t// Support: Android <=4.1 only\n\t// Older WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE <=11 only\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// Support: IE <=9 only\n\t// IE <=9 replaces <option> tags with their contents when inserted outside of\n\t// the select element.\n\tdiv.innerHTML = \"<option></option>\";\n\tsupport.option = !!div.lastChild;\n} )();\n\n\n// We have to close these tags to support XHTML (#13200)\nvar wrapMap = {\n\n\t// XHTML parsers do not magically insert elements in the\n\t// same way that tag soup parsers do. So we cannot shorten\n\t// this by omitting <tbody> or other required elements.\n\tthead: [ 1, \"<table>\", \"</table>\" ],\n\tcol: [ 2, \"<table><colgroup>\", \"</colgroup></table>\" ],\n\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t_default: [ 0, \"\", \"\" ]\n};\n\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n// Support: IE <=9 only\nif ( !support.option ) {\n\twrapMap.optgroup = wrapMap.option = [ 1, \"<select multiple='multiple'>\", \"</select>\" ];\n}\n\n\nfunction getAll( context, tag ) {\n\n\t// Support: IE <=9 - 11 only\n\t// Use typeof to avoid zero-argument method invocation on host objects (#15151)\n\tvar ret;\n\n\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\tret = context.getElementsByTagName( tag || \"*\" );\n\n\t} else if ( typeof context.querySelectorAll !== \"undefined\" ) {\n\t\tret = context.querySelectorAll( tag || \"*\" );\n\n\t} else {\n\t\tret = [];\n\t}\n\n\tif ( tag === undefined || tag && nodeName( context, tag ) ) {\n\t\treturn jQuery.merge( [ context ], ret );\n\t}\n\n\treturn ret;\n}\n\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar i = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\tdataPriv.set(\n\t\t\telems[ i ],\n\t\t\t\"globalEval\",\n\t\t\t!refElements || dataPriv.get( refElements[ i ], \"globalEval\" )\n\t\t);\n\t}\n}\n\n\nvar rhtml = /<|&#?\\w+;/;\n\nfunction buildFragment( elems, context, scripts, selection, ignored ) {\n\tvar elem, tmp, tag, wrap, attached, j,\n\t\tfragment = context.createDocumentFragment(),\n\t\tnodes = [],\n\t\ti = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\telem = elems[ i ];\n\n\t\tif ( elem || elem === 0 ) {\n\n\t\t\t// Add nodes directly\n\t\t\tif ( toType( elem ) === \"object\" ) {\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t// Convert non-html into a text node\n\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t// Convert html into DOM nodes\n\t\t\t} else {\n\t\t\t\ttmp = tmp || fragment.appendChild( context.createElement( \"div\" ) );\n\n\t\t\t\t// Deserialize a standard representation\n\t\t\t\ttag = ( rtagName.exec( elem ) || [ \"\", \"\" ] )[ 1 ].toLowerCase();\n\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\t\t\t\ttmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];\n\n\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\tj = wrap[ 0 ];\n\t\t\t\twhile ( j-- ) {\n\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t}\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t// Remember the top-level container\n\t\t\t\ttmp = fragment.firstChild;\n\n\t\t\t\t// Ensure the created nodes are orphaned (#12392)\n\t\t\t\ttmp.textContent = \"\";\n\t\t\t}\n\t\t}\n\t}\n\n\t// Remove wrapper from fragment\n\tfragment.textContent = \"\";\n\n\ti = 0;\n\twhile ( ( elem = nodes[ i++ ] ) ) {\n\n\t\t// Skip elements already in the context collection (trac-4087)\n\t\tif ( selection && jQuery.inArray( elem, selection ) > -1 ) {\n\t\t\tif ( ignored ) {\n\t\t\t\tignored.push( elem );\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tattached = isAttached( elem );\n\n\t\t// Append to fragment\n\t\ttmp = getAll( fragment.appendChild( elem ), \"script\" );\n\n\t\t// Preserve script evaluation history\n\t\tif ( attached ) {\n\t\t\tsetGlobalEval( tmp );\n\t\t}\n\n\t\t// Capture executables\n\t\tif ( scripts ) {\n\t\t\tj = 0;\n\t\t\twhile ( ( elem = tmp[ j++ ] ) ) {\n\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\tscripts.push( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn fragment;\n}\n\n\nvar\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\n// Support: IE <=9 - 11+\n// focus() and blur() are asynchronous, except when they are no-op.\n// So expect focus to be synchronous when the element is already active,\n// and blur to be synchronous when the element is not already active.\n// (focus and blur are always synchronous in other supported browsers,\n// this just defines when we can count on it).\nfunction expectSync( elem, type ) {\n\treturn ( elem === safeActiveElement() ) === ( type === \"focus\" );\n}\n\n// Support: IE <=9 only\n// Accessing document.activeElement can throw unexpectedly\n// https://bugs.jquery.com/ticket/13393\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\nfunction on( elem, types, selector, data, fn, one ) {\n\tvar origFn, type;\n\n\t// Types can be a map of types/handlers\n\tif ( typeof types === \"object\" ) {\n\n\t\t// ( types-Object, selector, data )\n\t\tif ( typeof selector !== \"string\" ) {\n\n\t\t\t// ( types-Object, data )\n\t\t\tdata = data || selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tfor ( type in types ) {\n\t\t\ton( elem, type, selector, data, types[ type ], one );\n\t\t}\n\t\treturn elem;\n\t}\n\n\tif ( data == null && fn == null ) {\n\n\t\t// ( types, fn )\n\t\tfn = selector;\n\t\tdata = selector = undefined;\n\t} else if ( fn == null ) {\n\t\tif ( typeof selector === \"string\" ) {\n\n\t\t\t// ( types, selector, fn )\n\t\t\tfn = data;\n\t\t\tdata = undefined;\n\t\t} else {\n\n\t\t\t// ( types, data, fn )\n\t\t\tfn = data;\n\t\t\tdata = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t}\n\tif ( fn === false ) {\n\t\tfn = returnFalse;\n\t} else if ( !fn ) {\n\t\treturn elem;\n\t}\n\n\tif ( one === 1 ) {\n\t\torigFn = fn;\n\t\tfn = function( event ) {\n\n\t\t\t// Can use an empty set, since event contains the info\n\t\t\tjQuery().off( event );\n\t\t\treturn origFn.apply( this, arguments );\n\t\t};\n\n\t\t// Use same guid so caller can remove using origFn\n\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t}\n\treturn elem.each( function() {\n\t\tjQuery.event.add( this, types, fn, data, selector );\n\t} );\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\n\t\tvar handleObjIn, eventHandle, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.get( elem );\n\n\t\t// Only attach events to objects that accept data\n\t\tif ( !acceptData( elem ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Ensure that invalid selectors throw exceptions at attach time\n\t\t// Evaluate against documentElement in case elem is a non-element node (e.g., document)\n\t\tif ( selector ) {\n\t\t\tjQuery.find.matchesSelector( documentElement, selector );\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !( events = elemData.events ) ) {\n\t\t\tevents = elemData.events = Object.create( null );\n\t\t}\n\t\tif ( !( eventHandle = elemData.handle ) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" && jQuery.event.triggered !== e.type ?\n\t\t\t\t\tjQuery.event.dispatch.apply( elem, arguments ) : undefined;\n\t\t\t};\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend( {\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join( \".\" )\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !( handlers = events[ type ] ) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener if the special events handler returns false\n\t\t\t\tif ( !special.setup ||\n\t\t\t\t\tspecial.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\n\t\tvar j, origCount, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.hasData( elem ) && dataPriv.get( elem );\n\n\t\tif ( !elemData || !( events = elemData.events ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[ 2 ] &&\n\t\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector ||\n\t\t\t\t\t\tselector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown ||\n\t\t\t\t\tspecial.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove data and the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdataPriv.remove( elem, \"handle events\" );\n\t\t}\n\t},\n\n\tdispatch: function( nativeEvent ) {\n\n\t\tvar i, j, ret, matched, handleObj, handlerQueue,\n\t\t\targs = new Array( arguments.length ),\n\n\t\t\t// Make a writable jQuery.Event from the native event object\n\t\t\tevent = jQuery.event.fix( nativeEvent ),\n\n\t\t\thandlers = (\n\t\t\t\t\tdataPriv.get( this, \"events\" ) || Object.create( null )\n\t\t\t\t)[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[ 0 ] = event;\n\n\t\tfor ( i = 1; i < arguments.length; i++ ) {\n\t\t\targs[ i ] = arguments[ i ];\n\t\t}\n\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( ( handleObj = matched.handlers[ j++ ] ) &&\n\t\t\t\t!event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// If the event is namespaced, then each handler is only invoked if it is\n\t\t\t\t// specially universal or its namespaces are a superset of the event's.\n\t\t\t\tif ( !event.rnamespace || handleObj.namespace === false ||\n\t\t\t\t\tevent.rnamespace.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||\n\t\t\t\t\t\thandleObj.handler ).apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( ( event.result = ret ) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar i, handleObj, sel, matchedHandlers, matchedSelectors,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\tif ( delegateCount &&\n\n\t\t\t// Support: IE <=9\n\t\t\t// Black-hole SVG <use> instance trees (trac-13180)\n\t\t\tcur.nodeType &&\n\n\t\t\t// Support: Firefox <=42\n\t\t\t// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)\n\t\t\t// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click\n\t\t\t// Support: IE 11 only\n\t\t\t// ...but not arrow key \"clicks\" of radio inputs, which can have `button` -1 (gh-2343)\n\t\t\t!( event.type === \"click\" && event.button >= 1 ) ) {\n\n\t\t\tfor ( ; cur !== this; cur = cur.parentNode || this ) {\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && !( event.type === \"click\" && cur.disabled === true ) ) {\n\t\t\t\t\tmatchedHandlers = [];\n\t\t\t\t\tmatchedSelectors = {};\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatchedSelectors[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) > -1 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] ) {\n\t\t\t\t\t\t\tmatchedHandlers.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matchedHandlers.length ) {\n\t\t\t\t\t\thandlerQueue.push( { elem: cur, handlers: matchedHandlers } );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tcur = this;\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\taddProp: function( name, hook ) {\n\t\tObject.defineProperty( jQuery.Event.prototype, name, {\n\t\t\tenumerable: true,\n\t\t\tconfigurable: true,\n\n\t\t\tget: isFunction( hook ) ?\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\t\treturn hook( this.originalEvent );\n\t\t\t\t\t}\n\t\t\t\t} :\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\t\treturn this.originalEvent[ name ];\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\tset: function( value ) {\n\t\t\t\tObject.defineProperty( this, name, {\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tconfigurable: true,\n\t\t\t\t\twritable: true,\n\t\t\t\t\tvalue: value\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\t},\n\n\tfix: function( originalEvent ) {\n\t\treturn originalEvent[ jQuery.expando ] ?\n\t\t\toriginalEvent :\n\t\t\tnew jQuery.Event( originalEvent );\n\t},\n\n\tspecial: {\n\t\tload: {\n\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tclick: {\n\n\t\t\t// Utilize native event to ensure correct state for checkable inputs\n\t\t\tsetup: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Claim the first handler\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\t// dataPriv.set( el, \"click\", ... )\n\t\t\t\t\tleverageNative( el, \"click\", returnTrue );\n\t\t\t\t}\n\n\t\t\t\t// Return false to allow normal processing in the caller\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\ttrigger: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Force setup before triggering a click\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\tleverageNative( el, \"click\" );\n\t\t\t\t}\n\n\t\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\t\treturn true;\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, suppress native .click() on links\n\t\t\t// Also prevent it if we're currently inside a leveraged native-event stack\n\t\t\t_default: function( event ) {\n\t\t\t\tvar target = event.target;\n\t\t\t\treturn rcheckableType.test( target.type ) &&\n\t\t\t\t\ttarget.click && nodeName( target, \"input\" ) &&\n\t\t\t\t\tdataPriv.get( target, \"click\" ) ||\n\t\t\t\t\tnodeName( target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Ensure the presence of an event listener that handles manually-triggered\n// synthetic events by interrupting progress until reinvoked in response to\n// *native* events that it fires directly, ensuring that state changes have\n// already occurred before other listeners are invoked.\nfunction leverageNative( el, type, expectSync ) {\n\n\t// Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add\n\tif ( !expectSync ) {\n\t\tif ( dataPriv.get( el, type ) === undefined ) {\n\t\t\tjQuery.event.add( el, type, returnTrue );\n\t\t}\n\t\treturn;\n\t}\n\n\t// Register the controller as a special universal handler for all event namespaces\n\tdataPriv.set( el, type, false );\n\tjQuery.event.add( el, type, {\n\t\tnamespace: false,\n\t\thandler: function( event ) {\n\t\t\tvar notAsync, result,\n\t\t\t\tsaved = dataPriv.get( this, type );\n\n\t\t\tif ( ( event.isTrigger & 1 ) && this[ type ] ) {\n\n\t\t\t\t// Interrupt processing of the outer synthetic .trigger()ed event\n\t\t\t\t// Saved data should be false in such cases, but might be a leftover capture object\n\t\t\t\t// from an async native handler (gh-4350)\n\t\t\t\tif ( !saved.length ) {\n\n\t\t\t\t\t// Store arguments for use when handling the inner native event\n\t\t\t\t\t// There will always be at least one argument (an event object), so this array\n\t\t\t\t\t// will not be confused with a leftover capture object.\n\t\t\t\t\tsaved = slice.call( arguments );\n\t\t\t\t\tdataPriv.set( this, type, saved );\n\n\t\t\t\t\t// Trigger the native event and capture its result\n\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t// focus() and blur() are asynchronous\n\t\t\t\t\tnotAsync = expectSync( this, type );\n\t\t\t\t\tthis[ type ]();\n\t\t\t\t\tresult = dataPriv.get( this, type );\n\t\t\t\t\tif ( saved !== result || notAsync ) {\n\t\t\t\t\t\tdataPriv.set( this, type, false );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = {};\n\t\t\t\t\t}\n\t\t\t\t\tif ( saved !== result ) {\n\n\t\t\t\t\t\t// Cancel the outer synthetic event\n\t\t\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\treturn result.value;\n\t\t\t\t\t}\n\n\t\t\t\t// If this is an inner synthetic event for an event with a bubbling surrogate\n\t\t\t\t// (focus or blur), assume that the surrogate already propagated from triggering the\n\t\t\t\t// native event and prevent that from happening again here.\n\t\t\t\t// This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the\n\t\t\t\t// bubbling surrogate propagates *after* the non-bubbling base), but that seems\n\t\t\t\t// less bad than duplication.\n\t\t\t\t} else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {\n\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t}\n\n\t\t\t// If this is a native event triggered above, everything is now in order\n\t\t\t// Fire an inner synthetic event with the original arguments\n\t\t\t} else if ( saved.length ) {\n\n\t\t\t\t// ...and capture the result\n\t\t\t\tdataPriv.set( this, type, {\n\t\t\t\t\tvalue: jQuery.event.trigger(\n\n\t\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t\t// Extend with the prototype to reset the above stopImmediatePropagation()\n\t\t\t\t\t\tjQuery.extend( saved[ 0 ], jQuery.Event.prototype ),\n\t\t\t\t\t\tsaved.slice( 1 ),\n\t\t\t\t\t\tthis\n\t\t\t\t\t)\n\t\t\t\t} );\n\n\t\t\t\t// Abort handling of the native event\n\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t}\n\t\t}\n\t} );\n}\n\njQuery.removeEvent = function( elem, type, handle ) {\n\n\t// This \"if\" is needed for plain objects\n\tif ( elem.removeEventListener ) {\n\t\telem.removeEventListener( type, handle );\n\t}\n};\n\njQuery.Event = function( src, props ) {\n\n\t// Allow instantiation without the 'new' keyword\n\tif ( !( this instanceof jQuery.Event ) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\n\t\t\t\t// Support: Android <=2.3 only\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t\t// Create target properties\n\t\t// Support: Safari <=6 - 7 only\n\t\t// Target should not be a text node (#504, #13143)\n\t\tthis.target = ( src.target && src.target.nodeType === 3 ) ?\n\t\t\tsrc.target.parentNode :\n\t\t\tsrc.target;\n\n\t\tthis.currentTarget = src.currentTarget;\n\t\tthis.relatedTarget = src.relatedTarget;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || Date.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tconstructor: jQuery.Event,\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\tisSimulated: false,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.preventDefault();\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopPropagation();\n\t\t}\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Includes all common event props including KeyEvent and MouseEvent specific props\njQuery.each( {\n\taltKey: true,\n\tbubbles: true,\n\tcancelable: true,\n\tchangedTouches: true,\n\tctrlKey: true,\n\tdetail: true,\n\teventPhase: true,\n\tmetaKey: true,\n\tpageX: true,\n\tpageY: true,\n\tshiftKey: true,\n\tview: true,\n\t\"char\": true,\n\tcode: true,\n\tcharCode: true,\n\tkey: true,\n\tkeyCode: true,\n\tbutton: true,\n\tbuttons: true,\n\tclientX: true,\n\tclientY: true,\n\toffsetX: true,\n\toffsetY: true,\n\tpointerId: true,\n\tpointerType: true,\n\tscreenX: true,\n\tscreenY: true,\n\ttargetTouches: true,\n\ttoElement: true,\n\ttouches: true,\n\n\twhich: function( event ) {\n\t\tvar button = event.button;\n\n\t\t// Add which for key events\n\t\tif ( event.which == null && rkeyEvent.test( event.type ) ) {\n\t\t\treturn event.charCode != null ? event.charCode : event.keyCode;\n\t\t}\n\n\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\tif ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) {\n\t\t\tif ( button & 1 ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\tif ( button & 2 ) {\n\t\t\t\treturn 3;\n\t\t\t}\n\n\t\t\tif ( button & 4 ) {\n\t\t\t\treturn 2;\n\t\t\t}\n\n\t\t\treturn 0;\n\t\t}\n\n\t\treturn event.which;\n\t}\n}, jQuery.event.addProp );\n\njQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( type, delegateType ) {\n\tjQuery.event.special[ type ] = {\n\n\t\t// Utilize native event if possible so blur/focus sequence is correct\n\t\tsetup: function() {\n\n\t\t\t// Claim the first handler\n\t\t\t// dataPriv.set( this, \"focus\", ... )\n\t\t\t// dataPriv.set( this, \"blur\", ... )\n\t\t\tleverageNative( this, type, expectSync );\n\n\t\t\t// Return false to allow normal processing in the caller\n\t\t\treturn false;\n\t\t},\n\t\ttrigger: function() {\n\n\t\t\t// Force setup before trigger\n\t\t\tleverageNative( this, type );\n\n\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\treturn true;\n\t\t},\n\n\t\tdelegateType: delegateType\n\t};\n} );\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\n// so that event delegation works in jQuery.\n// Do the same for pointerenter/pointerleave and pointerover/pointerout\n//\n// Support: Safari 7 only\n// Safari sends mouseenter too often; see:\n// https://bugs.chromium.org/p/chromium/issues/detail?id=470258\n// for the description of the bug (it existed in older Chrome versions as well).\njQuery.each( {\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mouseenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n} );\n\njQuery.fn.extend( {\n\n\ton: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn );\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ?\n\t\t\t\t\thandleObj.origType + \".\" + handleObj.namespace :\n\t\t\t\t\thandleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t} );\n\t}\n} );\n\n\nvar\n\n\t// Support: IE <=10 - 11, Edge 12 - 13 only\n\t// In IE/Edge using regex groups here causes severe slowdowns.\n\t// See https://connect.microsoft.com/IE/feedback/details/1736512/\n\trnoInnerhtml = /<script|<style|<link/i,\n\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g;\n\n// Prefer a tbody over its parent table for containing new rows\nfunction manipulationTarget( elem, content ) {\n\tif ( nodeName( elem, \"table\" ) &&\n\t\tnodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ) {\n\n\t\treturn jQuery( elem ).children( \"tbody\" )[ 0 ] || elem;\n\t}\n\n\treturn elem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = ( elem.getAttribute( \"type\" ) !== null ) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tif ( ( elem.type || \"\" ).slice( 0, 5 ) === \"true/\" ) {\n\t\telem.type = elem.type.slice( 5 );\n\t} else {\n\t\telem.removeAttribute( \"type\" );\n\t}\n\n\treturn elem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\tvar i, l, type, pdataOld, udataOld, udataCur, events;\n\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\t// 1. Copy private data: events, handlers, etc.\n\tif ( dataPriv.hasData( src ) ) {\n\t\tpdataOld = dataPriv.get( src );\n\t\tevents = pdataOld.events;\n\n\t\tif ( events ) {\n\t\t\tdataPriv.remove( dest, \"handle events\" );\n\n\t\t\tfor ( type in events ) {\n\t\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// 2. Copy user data\n\tif ( dataUser.hasData( src ) ) {\n\t\tudataOld = dataUser.access( src );\n\t\tudataCur = jQuery.extend( {}, udataOld );\n\n\t\tdataUser.set( dest, udataCur );\n\t}\n}\n\n// Fix IE bugs, see support tests\nfunction fixInput( src, dest ) {\n\tvar nodeName = dest.nodeName.toLowerCase();\n\n\t// Fails to persist the checked state of a cloned checkbox or radio button.\n\tif ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\tdest.checked = src.checked;\n\n\t// Fails to return the selected option to the default selected state when cloning options\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\nfunction domManip( collection, args, callback, ignored ) {\n\n\t// Flatten any nested arrays\n\targs = flat( args );\n\n\tvar fragment, first, scripts, hasScripts, node, doc,\n\t\ti = 0,\n\t\tl = collection.length,\n\t\tiNoClone = l - 1,\n\t\tvalue = args[ 0 ],\n\t\tvalueIsFunction = isFunction( value );\n\n\t// We can't cloneNode fragments that contain checked, in WebKit\n\tif ( valueIsFunction ||\n\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\treturn collection.each( function( index ) {\n\t\t\tvar self = collection.eq( index );\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\targs[ 0 ] = value.call( this, index, self.html() );\n\t\t\t}\n\t\t\tdomManip( self, args, callback, ignored );\n\t\t} );\n\t}\n\n\tif ( l ) {\n\t\tfragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );\n\t\tfirst = fragment.firstChild;\n\n\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\tfragment = first;\n\t\t}\n\n\t\t// Require either new content or an interest in ignored elements to invoke the callback\n\t\tif ( first || ignored ) {\n\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\thasScripts = scripts.length;\n\n\t\t\t// Use the original fragment for the last item\n\t\t\t// instead of the first because it can end up\n\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tnode = fragment;\n\n\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\tif ( hasScripts ) {\n\n\t\t\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcallback.call( collection[ i ], node, i );\n\t\t\t}\n\n\t\t\tif ( hasScripts ) {\n\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t// Reenable scripts\n\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t!dataPriv.access( node, \"globalEval\" ) &&\n\t\t\t\t\t\tjQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\tif ( node.src && ( node.type || \"\" ).toLowerCase()  !== \"module\" ) {\n\n\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\tif ( jQuery._evalUrl && !node.noModule ) {\n\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src, {\n\t\t\t\t\t\t\t\t\tnonce: node.nonce || node.getAttribute( \"nonce\" )\n\t\t\t\t\t\t\t\t}, doc );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tDOMEval( node.textContent.replace( rcleanScript, \"\" ), node, doc );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn collection;\n}\n\nfunction remove( elem, selector, keepData ) {\n\tvar node,\n\t\tnodes = selector ? jQuery.filter( selector, elem ) : elem,\n\t\ti = 0;\n\n\tfor ( ; ( node = nodes[ i ] ) != null; i++ ) {\n\t\tif ( !keepData && node.nodeType === 1 ) {\n\t\t\tjQuery.cleanData( getAll( node ) );\n\t\t}\n\n\t\tif ( node.parentNode ) {\n\t\t\tif ( keepData && isAttached( node ) ) {\n\t\t\t\tsetGlobalEval( getAll( node, \"script\" ) );\n\t\t\t}\n\t\t\tnode.parentNode.removeChild( node );\n\t\t}\n\t}\n\n\treturn elem;\n}\n\njQuery.extend( {\n\thtmlPrefilter: function( html ) {\n\t\treturn html;\n\t},\n\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar i, l, srcElements, destElements,\n\t\t\tclone = elem.cloneNode( true ),\n\t\t\tinPage = isAttached( elem );\n\n\t\t// Fix IE cloning issues\n\t\tif ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&\n\t\t\t\t!jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\tfixInput( srcElements[ i ], destElements[ i ] );\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\t\tcloneCopyEvent( srcElements[ i ], destElements[ i ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tcleanData: function( elems ) {\n\t\tvar data, elem, type,\n\t\t\tspecial = jQuery.event.special,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {\n\t\t\tif ( acceptData( elem ) ) {\n\t\t\t\tif ( ( data = elem[ dataPriv.expando ] ) ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataPriv.expando ] = undefined;\n\t\t\t\t}\n\t\t\t\tif ( elem[ dataUser.expando ] ) {\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataUser.expando ] = undefined;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n} );\n\njQuery.fn.extend( {\n\tdetach: function( selector ) {\n\t\treturn remove( this, selector, true );\n\t},\n\n\tremove: function( selector ) {\n\t\treturn remove( this, selector );\n\t},\n\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().each( function() {\n\t\t\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\t\t\tthis.textContent = value;\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t} );\n\t},\n\n\tprepend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t} );\n\t},\n\n\tbefore: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t} );\n\t},\n\n\tafter: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t} );\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = this[ i ] ) != null; i++ ) {\n\t\t\tif ( elem.nodeType === 1 ) {\n\n\t\t\t\t// Prevent memory leaks\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\n\t\t\t\t// Remove any remaining nodes\n\t\t\t\telem.textContent = \"\";\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t} );\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined && elem.nodeType === 1 ) {\n\t\t\t\treturn elem.innerHTML;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t!wrapMap[ ( rtagName.exec( value ) || [ \"\", \"\" ] )[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = jQuery.htmlPrefilter( value );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\t\telem = this[ i ] || {};\n\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch ( e ) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar ignored = [];\n\n\t\t// Make the changes, replacing each non-ignored context element with the new content\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tvar parent = this.parentNode;\n\n\t\t\tif ( jQuery.inArray( this, ignored ) < 0 ) {\n\t\t\t\tjQuery.cleanData( getAll( this ) );\n\t\t\t\tif ( parent ) {\n\t\t\t\t\tparent.replaceChild( elem, this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Force callback invocation\n\t\t}, ignored );\n\t}\n} );\n\njQuery.each( {\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1,\n\t\t\ti = 0;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone( true );\n\t\t\tjQuery( insert[ i ] )[ original ]( elems );\n\n\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t// .get() because push.apply(_, arraylike) throws on ancient WebKit\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n} );\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\nvar getStyles = function( elem ) {\n\n\t\t// Support: IE <=11 only, Firefox <=30 (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tvar view = elem.ownerDocument.defaultView;\n\n\t\tif ( !view || !view.opener ) {\n\t\t\tview = window;\n\t\t}\n\n\t\treturn view.getComputedStyle( elem );\n\t};\n\nvar swap = function( elem, options, callback ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.call( elem );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar rboxStyle = new RegExp( cssExpand.join( \"|\" ), \"i\" );\n\n\n\n( function() {\n\n\t// Executing both pixelPosition & boxSizingReliable tests require only one layout\n\t// so they're executed at the same time to save the second computation.\n\tfunction computeStyleTests() {\n\n\t\t// This is a singleton, we need to execute it only once\n\t\tif ( !div ) {\n\t\t\treturn;\n\t\t}\n\n\t\tcontainer.style.cssText = \"position:absolute;left:-11111px;width:60px;\" +\n\t\t\t\"margin-top:1px;padding:0;border:0\";\n\t\tdiv.style.cssText =\n\t\t\t\"position:relative;display:block;box-sizing:border-box;overflow:scroll;\" +\n\t\t\t\"margin:auto;border:1px;padding:1px;\" +\n\t\t\t\"width:60%;top:1%\";\n\t\tdocumentElement.appendChild( container ).appendChild( div );\n\n\t\tvar divStyle = window.getComputedStyle( div );\n\t\tpixelPositionVal = divStyle.top !== \"1%\";\n\n\t\t// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44\n\t\treliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;\n\n\t\t// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3\n\t\t// Some styles come back with percentage values, even though they shouldn't\n\t\tdiv.style.right = \"60%\";\n\t\tpixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;\n\n\t\t// Support: IE 9 - 11 only\n\t\t// Detect misreporting of content dimensions for box-sizing:border-box elements\n\t\tboxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;\n\n\t\t// Support: IE 9 only\n\t\t// Detect overflow:scroll screwiness (gh-3699)\n\t\t// Support: Chrome <=64\n\t\t// Don't get tricked when zoom affects offsetWidth (gh-4029)\n\t\tdiv.style.position = \"absolute\";\n\t\tscrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12;\n\n\t\tdocumentElement.removeChild( container );\n\n\t\t// Nullify the div so it wouldn't be stored in the memory and\n\t\t// it will also be a sign that checks already performed\n\t\tdiv = null;\n\t}\n\n\tfunction roundPixelMeasures( measure ) {\n\t\treturn Math.round( parseFloat( measure ) );\n\t}\n\n\tvar pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,\n\t\treliableTrDimensionsVal, reliableMarginLeftVal,\n\t\tcontainer = document.createElement( \"div\" ),\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !div.style ) {\n\t\treturn;\n\t}\n\n\t// Support: IE <=9 - 11 only\n\t// Style of cloned element affects source element cloned (#8908)\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\tjQuery.extend( support, {\n\t\tboxSizingReliable: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\t\tpixelBoxStyles: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelBoxStylesVal;\n\t\t},\n\t\tpixelPosition: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelPositionVal;\n\t\t},\n\t\treliableMarginLeft: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn reliableMarginLeftVal;\n\t\t},\n\t\tscrollboxSize: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn scrollboxSizeVal;\n\t\t},\n\n\t\t// Support: IE 9 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Behavior in IE 9 is more subtle than in newer versions & it passes\n\t\t// some versions of this test; make sure not to make it pass there!\n\t\treliableTrDimensions: function() {\n\t\t\tvar table, tr, trChild, trStyle;\n\t\t\tif ( reliableTrDimensionsVal == null ) {\n\t\t\t\ttable = document.createElement( \"table\" );\n\t\t\t\ttr = document.createElement( \"tr\" );\n\t\t\t\ttrChild = document.createElement( \"div\" );\n\n\t\t\t\ttable.style.cssText = \"position:absolute;left:-11111px\";\n\t\t\t\ttr.style.height = \"1px\";\n\t\t\t\ttrChild.style.height = \"9px\";\n\n\t\t\t\tdocumentElement\n\t\t\t\t\t.appendChild( table )\n\t\t\t\t\t.appendChild( tr )\n\t\t\t\t\t.appendChild( trChild );\n\n\t\t\t\ttrStyle = window.getComputedStyle( tr );\n\t\t\t\treliableTrDimensionsVal = parseInt( trStyle.height ) > 3;\n\n\t\t\t\tdocumentElement.removeChild( table );\n\t\t\t}\n\t\t\treturn reliableTrDimensionsVal;\n\t\t}\n\t} );\n} )();\n\n\nfunction curCSS( elem, name, computed ) {\n\tvar width, minWidth, maxWidth, ret,\n\n\t\t// Support: Firefox 51+\n\t\t// Retrieving style before computed somehow\n\t\t// fixes an issue with getting wrong values\n\t\t// on detached elements\n\t\tstyle = elem.style;\n\n\tcomputed = computed || getStyles( elem );\n\n\t// getPropertyValue is needed for:\n\t//   .css('filter') (IE 9 only, #12537)\n\t//   .css('--customProperty) (#3144)\n\tif ( computed ) {\n\t\tret = computed.getPropertyValue( name ) || computed[ name ];\n\n\t\tif ( ret === \"\" && !isAttached( elem ) ) {\n\t\t\tret = jQuery.style( elem, name );\n\t\t}\n\n\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t// Android Browser returns percentage for some values,\n\t\t// but width seems to be reliably pixels.\n\t\t// This is against the CSSOM draft spec:\n\t\t// https://drafts.csswg.org/cssom/#resolved-values\n\t\tif ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\twidth = style.width;\n\t\t\tminWidth = style.minWidth;\n\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\tret = computed.width;\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.width = width;\n\t\t\tstyle.minWidth = minWidth;\n\t\t\tstyle.maxWidth = maxWidth;\n\t\t}\n\t}\n\n\treturn ret !== undefined ?\n\n\t\t// Support: IE <=9 - 11 only\n\t\t// IE returns zIndex value as an integer.\n\t\tret + \"\" :\n\t\tret;\n}\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tif ( conditionFn() ) {\n\n\t\t\t\t// Hook not needed (or it's not possible to use it due\n\t\t\t\t// to missing dependency), remove it.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\t\t\treturn ( this.get = hookFn ).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\nvar cssPrefixes = [ \"Webkit\", \"Moz\", \"ms\" ],\n\temptyStyle = document.createElement( \"div\" ).style,\n\tvendorProps = {};\n\n// Return a vendor-prefixed property or undefined\nfunction vendorPropName( name ) {\n\n\t// Check for vendor prefixed names\n\tvar capName = name[ 0 ].toUpperCase() + name.slice( 1 ),\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in emptyStyle ) {\n\t\t\treturn name;\n\t\t}\n\t}\n}\n\n// Return a potentially-mapped jQuery.cssProps or vendor prefixed property\nfunction finalPropName( name ) {\n\tvar final = jQuery.cssProps[ name ] || vendorProps[ name ];\n\n\tif ( final ) {\n\t\treturn final;\n\t}\n\tif ( name in emptyStyle ) {\n\t\treturn name;\n\t}\n\treturn vendorProps[ name ] = vendorPropName( name ) || name;\n}\n\n\nvar\n\n\t// Swappable if display is none or starts with table\n\t// except \"table\", \"table-cell\", or \"table-caption\"\n\t// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trcustomProp = /^--/,\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t};\n\nfunction setPositiveNumber( _elem, value, subtract ) {\n\n\t// Any relative (+/-) values have already been\n\t// normalized at this point\n\tvar matches = rcssNum.exec( value );\n\treturn matches ?\n\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {\n\tvar i = dimension === \"width\" ? 1 : 0,\n\t\textra = 0,\n\t\tdelta = 0;\n\n\t// Adjustment may not be necessary\n\tif ( box === ( isBorderBox ? \"border\" : \"content\" ) ) {\n\t\treturn 0;\n\t}\n\n\tfor ( ; i < 4; i += 2 ) {\n\n\t\t// Both box models exclude margin\n\t\tif ( box === \"margin\" ) {\n\t\t\tdelta += jQuery.css( elem, box + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\t// If we get here with a content-box, we're seeking \"padding\" or \"border\" or \"margin\"\n\t\tif ( !isBorderBox ) {\n\n\t\t\t// Add padding\n\t\t\tdelta += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// For \"border\" or \"margin\", add border\n\t\t\tif ( box !== \"padding\" ) {\n\t\t\t\tdelta += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\n\t\t\t// But still keep track of it otherwise\n\t\t\t} else {\n\t\t\t\textra += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\n\t\t// If we get here with a border-box (content + padding + border), we're seeking \"content\" or\n\t\t// \"padding\" or \"margin\"\n\t\t} else {\n\n\t\t\t// For \"content\", subtract padding\n\t\t\tif ( box === \"content\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// For \"content\" or \"padding\", subtract border\n\t\t\tif ( box !== \"margin\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Account for positive content-box scroll gutter when requested by providing computedVal\n\tif ( !isBorderBox && computedVal >= 0 ) {\n\n\t\t// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border\n\t\t// Assuming integer scroll gutter, subtract the rest and round down\n\t\tdelta += Math.max( 0, Math.ceil(\n\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\tcomputedVal -\n\t\t\tdelta -\n\t\t\textra -\n\t\t\t0.5\n\n\t\t// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter\n\t\t// Use an explicit zero to avoid NaN (gh-3964)\n\t\t) ) || 0;\n\t}\n\n\treturn delta;\n}\n\nfunction getWidthOrHeight( elem, dimension, extra ) {\n\n\t// Start with computed style\n\tvar styles = getStyles( elem ),\n\n\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).\n\t\t// Fake content-box until we know it's needed to know the true value.\n\t\tboxSizingNeeded = !support.boxSizingReliable() || extra,\n\t\tisBorderBox = boxSizingNeeded &&\n\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\tvalueIsBorderBox = isBorderBox,\n\n\t\tval = curCSS( elem, dimension, styles ),\n\t\toffsetProp = \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 );\n\n\t// Support: Firefox <=54\n\t// Return a confounding non-pixel value or feign ignorance, as appropriate.\n\tif ( rnumnonpx.test( val ) ) {\n\t\tif ( !extra ) {\n\t\t\treturn val;\n\t\t}\n\t\tval = \"auto\";\n\t}\n\n\n\t// Support: IE 9 - 11 only\n\t// Use offsetWidth/offsetHeight for when box sizing is unreliable.\n\t// In those cases, the computed value can be trusted to be border-box.\n\tif ( ( !support.boxSizingReliable() && isBorderBox ||\n\n\t\t// Support: IE 10 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Interestingly, in some cases IE 9 doesn't suffer from this issue.\n\t\t!support.reliableTrDimensions() && nodeName( elem, \"tr\" ) ||\n\n\t\t// Fall back to offsetWidth/offsetHeight when value is \"auto\"\n\t\t// This happens for inline elements with no explicit setting (gh-3571)\n\t\tval === \"auto\" ||\n\n\t\t// Support: Android <=4.1 - 4.3 only\n\t\t// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)\n\t\t!parseFloat( val ) && jQuery.css( elem, \"display\", false, styles ) === \"inline\" ) &&\n\n\t\t// Make sure the element is visible & connected\n\t\telem.getClientRects().length ) {\n\n\t\tisBorderBox = jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t\t// Where available, offsetWidth/offsetHeight approximate border box dimensions.\n\t\t// Where not available (e.g., SVG), assume unreliable box-sizing and interpret the\n\t\t// retrieved value as a content box dimension.\n\t\tvalueIsBorderBox = offsetProp in elem;\n\t\tif ( valueIsBorderBox ) {\n\t\t\tval = elem[ offsetProp ];\n\t\t}\n\t}\n\n\t// Normalize \"\" and auto\n\tval = parseFloat( val ) || 0;\n\n\t// Adjust for the element's box model\n\treturn ( val +\n\t\tboxModelAdjustment(\n\t\t\telem,\n\t\t\tdimension,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles,\n\n\t\t\t// Provide the current computed size to request scroll gutter calculation (gh-3589)\n\t\t\tval\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend( {\n\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"animationIterationCount\": true,\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"gridArea\": true,\n\t\t\"gridColumn\": true,\n\t\t\"gridColumnEnd\": true,\n\t\t\"gridColumnStart\": true,\n\t\t\"gridRow\": true,\n\t\t\"gridRowEnd\": true,\n\t\t\"gridRowStart\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name ),\n\t\t\tstyle = elem.style;\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to query the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Gets hook for the prefixed version, then unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// Convert \"+=\" or \"-=\" to relative numbers (#7345)\n\t\t\tif ( type === \"string\" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {\n\t\t\t\tvalue = adjustCSS( elem, name, ret );\n\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set (#7116)\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add the unit (except for certain CSS properties)\n\t\t\t// The isCustomProp check can be removed in jQuery 4.0 when we only auto-append\n\t\t\t// \"px\" to a few hardcoded values.\n\t\t\tif ( type === \"number\" && !isCustomProp ) {\n\t\t\t\tvalue += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? \"\" : \"px\" );\n\t\t\t}\n\n\t\t\t// background-* props affect original clone's values\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf( \"background\" ) === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !( \"set\" in hooks ) ||\n\t\t\t\t( value = hooks.set( elem, value, extra ) ) !== undefined ) {\n\n\t\t\t\tif ( isCustomProp ) {\n\t\t\t\t\tstyle.setProperty( name, value );\n\t\t\t\t} else {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else {\n\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks &&\n\t\t\t\t( ret = hooks.get( elem, false, extra ) ) !== undefined ) {\n\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar val, num, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name );\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to modify the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Try prefixed name followed by the unprefixed name\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t// Convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Make numeric if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || isFinite( num ) ? num || 0 : val;\n\t\t}\n\n\t\treturn val;\n\t}\n} );\n\njQuery.each( [ \"height\", \"width\" ], function( _i, dimension ) {\n\tjQuery.cssHooks[ dimension ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\n\t\t\t\t// Certain elements can have dimension info if we invisibly show them\n\t\t\t\t// but it must have a current display style that would benefit\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) &&\n\n\t\t\t\t\t// Support: Safari 8+\n\t\t\t\t\t// Table columns in Safari have non-zero offsetWidth & zero\n\t\t\t\t\t// getBoundingClientRect().width unless display is changed.\n\t\t\t\t\t// Support: IE <=11 only\n\t\t\t\t\t// Running getBoundingClientRect on a disconnected node\n\t\t\t\t\t// in IE throws an error.\n\t\t\t\t\t( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?\n\t\t\t\t\t\tswap( elem, cssShow, function() {\n\t\t\t\t\t\t\treturn getWidthOrHeight( elem, dimension, extra );\n\t\t\t\t\t\t} ) :\n\t\t\t\t\t\tgetWidthOrHeight( elem, dimension, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar matches,\n\t\t\t\tstyles = getStyles( elem ),\n\n\t\t\t\t// Only read styles.position if the test has a chance to fail\n\t\t\t\t// to avoid forcing a reflow.\n\t\t\t\tscrollboxSizeBuggy = !support.scrollboxSize() &&\n\t\t\t\t\tstyles.position === \"absolute\",\n\n\t\t\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)\n\t\t\t\tboxSizingNeeded = scrollboxSizeBuggy || extra,\n\t\t\t\tisBorderBox = boxSizingNeeded &&\n\t\t\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\tsubtract = extra ?\n\t\t\t\t\tboxModelAdjustment(\n\t\t\t\t\t\telem,\n\t\t\t\t\t\tdimension,\n\t\t\t\t\t\textra,\n\t\t\t\t\t\tisBorderBox,\n\t\t\t\t\t\tstyles\n\t\t\t\t\t) :\n\t\t\t\t\t0;\n\n\t\t\t// Account for unreliable border-box dimensions by comparing offset* to computed and\n\t\t\t// faking a content-box to get border and padding (gh-3699)\n\t\t\tif ( isBorderBox && scrollboxSizeBuggy ) {\n\t\t\t\tsubtract -= Math.ceil(\n\t\t\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\t\t\tparseFloat( styles[ dimension ] ) -\n\t\t\t\t\tboxModelAdjustment( elem, dimension, \"border\", false, styles ) -\n\t\t\t\t\t0.5\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Convert to pixels if value adjustment is needed\n\t\t\tif ( subtract && ( matches = rcssNum.exec( value ) ) &&\n\t\t\t\t( matches[ 3 ] || \"px\" ) !== \"px\" ) {\n\n\t\t\t\telem.style[ dimension ] = value;\n\t\t\t\tvalue = jQuery.css( elem, dimension );\n\t\t\t}\n\n\t\t\treturn setPositiveNumber( elem, value, subtract );\n\t\t}\n\t};\n} );\n\njQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn ( parseFloat( curCSS( elem, \"marginLeft\" ) ) ||\n\t\t\t\telem.getBoundingClientRect().left -\n\t\t\t\t\tswap( elem, { marginLeft: 0 }, function() {\n\t\t\t\t\t\treturn elem.getBoundingClientRect().left;\n\t\t\t\t\t} )\n\t\t\t\t) + \"px\";\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each( {\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// Assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split( \" \" ) : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( prefix !== \"margin\" ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n} );\n\njQuery.fn.extend( {\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( Array.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t}\n} );\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || jQuery.easing._default;\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\t// Use a property on the element directly when it is not a DOM element,\n\t\t\t// or when there is no matching style property that exists.\n\t\t\tif ( tween.elem.nodeType !== 1 ||\n\t\t\t\ttween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// Passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails.\n\t\t\t// Simple values such as \"10px\" are parsed to Float;\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as-is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\n\t\t\t// Use step hook for back compat.\n\t\t\t// Use cssHook if its there.\n\t\t\t// Use .style if available and use plain properties where available.\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.nodeType === 1 && (\n\t\t\t\t\tjQuery.cssHooks[ tween.prop ] ||\n\t\t\t\t\ttween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9 only\n// Panic based approach to setting things on disconnected nodes\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t},\n\t_default: \"swing\"\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, inProgress,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trrun = /queueHooks$/;\n\nfunction schedule() {\n\tif ( inProgress ) {\n\t\tif ( document.hidden === false && window.requestAnimationFrame ) {\n\t\t\twindow.requestAnimationFrame( schedule );\n\t\t} else {\n\t\t\twindow.setTimeout( schedule, jQuery.fx.interval );\n\t\t}\n\n\t\tjQuery.fx.tick();\n\t}\n}\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\twindow.setTimeout( function() {\n\t\tfxNow = undefined;\n\t} );\n\treturn ( fxNow = Date.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\ti = 0,\n\t\tattrs = { height: type };\n\n\t// If we include width, step value is 1 to do all cssExpand values,\n\t// otherwise step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {\n\n\t\t\t// We're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\tvar prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,\n\t\tisBox = \"width\" in props || \"height\" in props,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHiddenWithinTree( elem ),\n\t\tdataShow = dataPriv.get( elem, \"fxshow\" );\n\n\t// Queue-skipping animations hijack the fx hooks\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always( function() {\n\n\t\t\t// Ensure the complete handler is called before this completes\n\t\t\tanim.always( function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\t}\n\n\t// Detect show/hide animations\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.test( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// Pretend to be hidden if this is a \"show\" and\n\t\t\t\t// there is still data from a stopped show/hide\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\n\t\t\t\t// Ignore all other no-op show/hide data\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\t\t}\n\t}\n\n\t// Bail out if this is a no-op like .hide().hide()\n\tpropTween = !jQuery.isEmptyObject( props );\n\tif ( !propTween && jQuery.isEmptyObject( orig ) ) {\n\t\treturn;\n\t}\n\n\t// Restrict \"overflow\" and \"display\" styles during box animations\n\tif ( isBox && elem.nodeType === 1 ) {\n\n\t\t// Support: IE <=9 - 11, Edge 12 - 15\n\t\t// Record all 3 overflow attributes because IE does not infer the shorthand\n\t\t// from identically-valued overflowX and overflowY and Edge just mirrors\n\t\t// the overflowX value there.\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Identify a display type, preferring old show/hide data over the CSS cascade\n\t\trestoreDisplay = dataShow && dataShow.display;\n\t\tif ( restoreDisplay == null ) {\n\t\t\trestoreDisplay = dataPriv.get( elem, \"display\" );\n\t\t}\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\tif ( display === \"none\" ) {\n\t\t\tif ( restoreDisplay ) {\n\t\t\t\tdisplay = restoreDisplay;\n\t\t\t} else {\n\n\t\t\t\t// Get nonempty value(s) by temporarily forcing visibility\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t\trestoreDisplay = elem.style.display || restoreDisplay;\n\t\t\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\t\t\tshowHide( [ elem ] );\n\t\t\t}\n\t\t}\n\n\t\t// Animate inline elements as inline-block\n\t\tif ( display === \"inline\" || display === \"inline-block\" && restoreDisplay != null ) {\n\t\t\tif ( jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t\t// Restore the original display value at the end of pure show/hide animations\n\t\t\t\tif ( !propTween ) {\n\t\t\t\t\tanim.done( function() {\n\t\t\t\t\t\tstyle.display = restoreDisplay;\n\t\t\t\t\t} );\n\t\t\t\t\tif ( restoreDisplay == null ) {\n\t\t\t\t\t\tdisplay = style.display;\n\t\t\t\t\t\trestoreDisplay = display === \"none\" ? \"\" : display;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tanim.always( function() {\n\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t} );\n\t}\n\n\t// Implement show/hide animations\n\tpropTween = false;\n\tfor ( prop in orig ) {\n\n\t\t// General show/hide setup for this element animation\n\t\tif ( !propTween ) {\n\t\t\tif ( dataShow ) {\n\t\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\t\thidden = dataShow.hidden;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdataShow = dataPriv.access( elem, \"fxshow\", { display: restoreDisplay } );\n\t\t\t}\n\n\t\t\t// Store hidden/visible for toggle so `.stop().toggle()` \"reverses\"\n\t\t\tif ( toggle ) {\n\t\t\t\tdataShow.hidden = !hidden;\n\t\t\t}\n\n\t\t\t// Show elements before animating them\n\t\t\tif ( hidden ) {\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t}\n\n\t\t\t/* eslint-disable no-loop-func */\n\n\t\t\tanim.done( function() {\n\n\t\t\t/* eslint-enable no-loop-func */\n\n\t\t\t\t// The final step of a \"hide\" animation is actually hiding the element\n\t\t\t\tif ( !hidden ) {\n\t\t\t\t\tshowHide( [ elem ] );\n\t\t\t\t}\n\t\t\t\tdataPriv.remove( elem, \"fxshow\" );\n\t\t\t\tfor ( prop in orig ) {\n\t\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Per-property setup\n\t\tpropTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\t\tif ( !( prop in dataShow ) ) {\n\t\t\tdataShow[ prop ] = propTween.start;\n\t\t\tif ( hidden ) {\n\t\t\t\tpropTween.end = propTween.start;\n\t\t\t\tpropTween.start = 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( Array.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// Not quite $.extend, this won't overwrite existing keys.\n\t\t\t// Reusing 'index' because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = Animation.prefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\n\t\t\t// Don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t} ),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\n\t\t\t\t// Support: Android 2.3 only\n\t\t\t\t// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ] );\n\n\t\t\t// If there's more to do, yield\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t}\n\n\t\t\t// If this was an empty animation, synthesize a final progress notification\n\t\t\tif ( !length ) {\n\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t}\n\n\t\t\t// Resolve the animation and report its conclusion\n\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\treturn false;\n\t\t},\n\t\tanimation = deferred.promise( {\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, {\n\t\t\t\tspecialEasing: {},\n\t\t\t\teasing: jQuery.easing._default\n\t\t\t}, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\n\t\t\t\t\t// If we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// Resolve when we played the last frame; otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t} ),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length; index++ ) {\n\t\tresult = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\tif ( isFunction( result.stop ) ) {\n\t\t\t\tjQuery._queueHooks( animation.elem, animation.opts.queue ).stop =\n\t\t\t\t\tresult.stop.bind( result );\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\t// Attach callbacks from options\n\tanimation\n\t\t.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t} )\n\t);\n\n\treturn animation;\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\n\ttweeners: {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value );\n\t\t\tadjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );\n\t\t\treturn tween;\n\t\t} ]\n\t},\n\n\ttweener: function( props, callback ) {\n\t\tif ( isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.match( rnothtmlwhite );\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\tAnimation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];\n\t\t\tAnimation.tweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilters: [ defaultPrefilter ],\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tAnimation.prefilters.unshift( callback );\n\t\t} else {\n\t\t\tAnimation.prefilters.push( callback );\n\t\t}\n\t}\n} );\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tisFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !isFunction( easing ) && easing\n\t};\n\n\t// Go to the end state if fx are off\n\tif ( jQuery.fx.off ) {\n\t\topt.duration = 0;\n\n\t} else {\n\t\tif ( typeof opt.duration !== \"number\" ) {\n\t\t\tif ( opt.duration in jQuery.fx.speeds ) {\n\t\t\t\topt.duration = jQuery.fx.speeds[ opt.duration ];\n\n\t\t\t} else {\n\t\t\t\topt.duration = jQuery.fx.speeds._default;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend( {\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// Show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHiddenWithinTree ).css( \"opacity\", 0 ).show()\n\n\t\t\t// Animate to the value specified\n\t\t\t.end().animate( { opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || dataPriv.get( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = dataPriv.get( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this &&\n\t\t\t\t\t( type == null || timers[ index ].queue === type ) ) {\n\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Start the next in the queue if the last step wasn't forced.\n\t\t\t// Timers currently will call their complete callbacks, which\n\t\t\t// will dequeue but only if they were gotoEnd.\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t} );\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tvar index,\n\t\t\t\tdata = dataPriv.get( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// Enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// Empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// Look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t} );\n\t}\n} );\n\njQuery.each( [ \"toggle\", \"show\", \"hide\" ], function( _i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n} );\n\n// Generate shortcuts for custom animations\njQuery.each( {\n\tslideDown: genFx( \"show\" ),\n\tslideUp: genFx( \"hide\" ),\n\tslideToggle: genFx( \"toggle\" ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n} );\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ti = 0,\n\t\ttimers = jQuery.timers;\n\n\tfxNow = Date.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\n\t\t// Run the timer and safely remove it when done (allowing for external removal)\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tjQuery.fx.start();\n};\n\njQuery.fx.interval = 13;\njQuery.fx.start = function() {\n\tif ( inProgress ) {\n\t\treturn;\n\t}\n\n\tinProgress = true;\n\tschedule();\n};\n\njQuery.fx.stop = function() {\n\tinProgress = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = window.setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\twindow.clearTimeout( timeout );\n\t\t};\n\t} );\n};\n\n\n( function() {\n\tvar input = document.createElement( \"input\" ),\n\t\tselect = document.createElement( \"select\" ),\n\t\topt = select.appendChild( document.createElement( \"option\" ) );\n\n\tinput.type = \"checkbox\";\n\n\t// Support: Android <=4.3 only\n\t// Default value for a checkbox should be \"on\"\n\tsupport.checkOn = input.value !== \"\";\n\n\t// Support: IE <=11 only\n\t// Must access selectedIndex to make default options select\n\tsupport.optSelected = opt.selected;\n\n\t// Support: IE <=11 only\n\t// An input loses its value after becoming a radio\n\tinput = document.createElement( \"input\" );\n\tinput.value = \"t\";\n\tinput.type = \"radio\";\n\tsupport.radioValue = input.value === \"t\";\n} )();\n\n\nvar boolHook,\n\tattrHandle = jQuery.expr.attrHandle;\n\njQuery.fn.extend( {\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tattr: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set attributes on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// Attribute hooks are determined by the lowercase version\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\thooks = jQuery.attrHooks[ name.toLowerCase() ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\treturn value;\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tret = jQuery.find.attr( elem, name );\n\n\t\t// Non-existent attributes return null, we normalize to undefined\n\t\treturn ret == null ? undefined : ret;\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" &&\n\t\t\t\t\tnodeName( elem, \"input\" ) ) {\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name,\n\t\t\ti = 0,\n\n\t\t\t// Attribute names can contain non-HTML whitespace characters\n\t\t\t// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n\t\t\tattrNames = value && value.match( rnothtmlwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( ( name = attrNames[ i++ ] ) ) {\n\t\t\t\telem.removeAttribute( name );\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Hooks for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else {\n\t\t\telem.setAttribute( name, name );\n\t\t}\n\t\treturn name;\n\t}\n};\n\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( _i, name ) {\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = function( elem, name, isXML ) {\n\t\tvar ret, handle,\n\t\t\tlowercaseName = name.toLowerCase();\n\n\t\tif ( !isXML ) {\n\n\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\thandle = attrHandle[ lowercaseName ];\n\t\t\tattrHandle[ lowercaseName ] = ret;\n\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\tlowercaseName :\n\t\t\t\tnull;\n\t\t\tattrHandle[ lowercaseName ] = handle;\n\t\t}\n\t\treturn ret;\n\t};\n} );\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend( {\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tdelete this[ jQuery.propFix[ name ] || name ];\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set properties on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\treturn ( elem[ name ] = value );\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\treturn elem[ name ];\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\t// Support: IE <=9 - 11 only\n\t\t\t\t// elem.tabIndex doesn't always return the\n\t\t\t\t// correct value when it hasn't been explicitly set\n\t\t\t\t// https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\tif ( tabindex ) {\n\t\t\t\t\treturn parseInt( tabindex, 10 );\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\trfocusable.test( elem.nodeName ) ||\n\t\t\t\t\trclickable.test( elem.nodeName ) &&\n\t\t\t\t\telem.href\n\t\t\t\t) {\n\t\t\t\t\treturn 0;\n\t\t\t\t}\n\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t}\n} );\n\n// Support: IE <=11 only\n// Accessing the selectedIndex property\n// forces the browser to respect setting selected\n// on the option\n// The getter ensures a default option is selected\n// when in an optgroup\n// eslint rule \"no-unused-expressions\" is disabled for this code\n// since it considers such accessions noop\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent && parent.parentNode ) {\n\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\t\tset: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\njQuery.each( [\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n} );\n\n\n\n\n\t// Strip and collapse whitespace according to HTML spec\n\t// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace\n\tfunction stripAndCollapse( value ) {\n\t\tvar tokens = value.match( rnothtmlwhite ) || [];\n\t\treturn tokens.join( \" \" );\n\t}\n\n\nfunction getClass( elem ) {\n\treturn elem.getAttribute && elem.getAttribute( \"class\" ) || \"\";\n}\n\nfunction classesToArray( value ) {\n\tif ( Array.isArray( value ) ) {\n\t\treturn value;\n\t}\n\tif ( typeof value === \"string\" ) {\n\t\treturn value.match( rnothtmlwhite ) || [];\n\t}\n\treturn [];\n}\n\njQuery.fn.extend( {\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( !arguments.length ) {\n\t\t\treturn this.attr( \"class\", \"\" );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) > -1 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value,\n\t\t\tisValidValue = type === \"string\" || Array.isArray( value );\n\n\t\tif ( typeof stateVal === \"boolean\" && isValidValue ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).toggleClass(\n\t\t\t\t\tvalue.call( this, i, getClass( this ), stateVal ),\n\t\t\t\t\tstateVal\n\t\t\t\t);\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar className, i, self, classNames;\n\n\t\t\tif ( isValidValue ) {\n\n\t\t\t\t// Toggle individual class names\n\t\t\t\ti = 0;\n\t\t\t\tself = jQuery( this );\n\t\t\t\tclassNames = classesToArray( value );\n\n\t\t\t\twhile ( ( className = classNames[ i++ ] ) ) {\n\n\t\t\t\t\t// Check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( value === undefined || type === \"boolean\" ) {\n\t\t\t\tclassName = getClass( this );\n\t\t\t\tif ( className ) {\n\n\t\t\t\t\t// Store className if set\n\t\t\t\t\tdataPriv.set( this, \"__className__\", className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed `false`,\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tif ( this.setAttribute ) {\n\t\t\t\t\tthis.setAttribute( \"class\",\n\t\t\t\t\t\tclassName || value === false ?\n\t\t\t\t\t\t\"\" :\n\t\t\t\t\t\tdataPriv.get( this, \"__className__\" ) || \"\"\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className, elem,\n\t\t\ti = 0;\n\n\t\tclassName = \" \" + selector + \" \";\n\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\tif ( elem.nodeType === 1 &&\n\t\t\t\t( \" \" + stripAndCollapse( getClass( elem ) ) + \" \" ).indexOf( className ) > -1 ) {\n\t\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n} );\n\n\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend( {\n\tval: function( value ) {\n\t\tvar hooks, ret, valueIsFunction,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] ||\n\t\t\t\t\tjQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks &&\n\t\t\t\t\t\"get\" in hooks &&\n\t\t\t\t\t( ret = hooks.get( elem, \"value\" ) ) !== undefined\n\t\t\t\t) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\t// Handle most common string cases\n\t\t\t\tif ( typeof ret === \"string\" ) {\n\t\t\t\t\treturn ret.replace( rreturn, \"\" );\n\t\t\t\t}\n\n\t\t\t\t// Handle cases where value is null/undef or number\n\t\t\t\treturn ret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tvalueIsFunction = isFunction( value );\n\n\t\treturn this.each( function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\n\t\t\t} else if ( Array.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !( \"set\" in hooks ) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\n\t\t\t\t\t// Support: IE <=10 - 11 only\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\t// Strip and collapse whitespace\n\t\t\t\t\t// https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n\t\t\t\t\tstripAndCollapse( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option, i,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\",\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length;\n\n\t\t\t\tif ( index < 0 ) {\n\t\t\t\t\ti = max;\n\n\t\t\t\t} else {\n\t\t\t\t\ti = one ? index : 0;\n\t\t\t\t}\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t// IE8-9 doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t!option.disabled &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled ||\n\t\t\t\t\t\t\t\t!nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t/* eslint-disable no-cond-assign */\n\n\t\t\t\t\tif ( option.selected =\n\t\t\t\t\t\tjQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1\n\t\t\t\t\t) {\n\t\t\t\t\t\toptionSet = true;\n\t\t\t\t\t}\n\n\t\t\t\t\t/* eslint-enable no-cond-assign */\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\t\t\t\treturn values;\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Radios and checkboxes getter/setter\njQuery.each( [ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( Array.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\treturn elem.getAttribute( \"value\" ) === null ? \"on\" : elem.value;\n\t\t};\n\t}\n} );\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\nsupport.focusin = \"onfocusin\" in window;\n\n\nvar rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\tstopPropagationCallback = function( e ) {\n\t\te.stopPropagation();\n\t};\n\njQuery.extend( jQuery.event, {\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\n\t\tvar i, cur, tmp, bubbleType, ontype, handle, special, lastElement,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split( \".\" ) : [];\n\n\t\tcur = lastElement = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) > -1 ) {\n\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split( \".\" );\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf( \":\" ) < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.rnamespace = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === ( elem.ownerDocument || document ) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tlastElement = cur;\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = (\n\t\t\t\t\tdataPriv.get( cur, \"events\" ) || Object.create( null )\n\t\t\t\t)[ event.type ] &&\n\t\t\t\tdataPriv.get( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( ( !special._default ||\n\t\t\t\tspecial._default.apply( eventPath.pop(), data ) === false ) &&\n\t\t\t\tacceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name as the event.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.addEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\telem[ type ]();\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.removeEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\t// Piggyback on a donor event to simulate a different one\n\t// Used only for `focus(in | out)` events\n\tsimulate: function( type, elem, event ) {\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true\n\t\t\t}\n\t\t);\n\n\t\tjQuery.event.trigger( e, null, elem );\n\t}\n\n} );\n\njQuery.fn.extend( {\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t} );\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[ 0 ];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n} );\n\n\n// Support: Firefox <=44\n// Firefox doesn't have focus(in | out) events\n// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n//\n// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1\n// focus(in | out) events fire after focus & blur events,\n// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857\nif ( !support.focusin ) {\n\tjQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );\n\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\n\t\t\t\t// Handle: regular nodes (via `this.ownerDocument`), window\n\t\t\t\t// (via `this.document`) & document (via `this`).\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tdataPriv.access( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tdataPriv.remove( doc, fix );\n\n\t\t\t\t} else {\n\t\t\t\t\tdataPriv.access( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t} );\n}\nvar location = window.location;\n\nvar nonce = { guid: Date.now() };\n\nvar rquery = ( /\\?/ );\n\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\n\t// Support: IE 9 - 11 only\n\t// IE throws on parseFromString with invalid input.\n\ttry {\n\t\txml = ( new window.DOMParser() ).parseFromString( data, \"text/xml\" );\n\t} catch ( e ) {\n\t\txml = undefined;\n\t}\n\n\tif ( !xml || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( Array.isArray( obj ) ) {\n\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams(\n\t\t\t\t\tprefix + \"[\" + ( typeof v === \"object\" && v != null ? i : \"\" ) + \"]\",\n\t\t\t\t\tv,\n\t\t\t\t\ttraditional,\n\t\t\t\t\tadd\n\t\t\t\t);\n\t\t\t}\n\t\t} );\n\n\t} else if ( !traditional && toType( obj ) === \"object\" ) {\n\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, valueOrFunction ) {\n\n\t\t\t// If value is a function, invoke it and use its return value\n\t\t\tvar value = isFunction( valueOrFunction ) ?\n\t\t\t\tvalueOrFunction() :\n\t\t\t\tvalueOrFunction;\n\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" +\n\t\t\t\tencodeURIComponent( value == null ? \"\" : value );\n\t\t};\n\n\tif ( a == null ) {\n\t\treturn \"\";\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t} );\n\n\t} else {\n\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" );\n};\n\njQuery.fn.extend( {\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map( function() {\n\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t} )\n\t\t.filter( function() {\n\t\t\tvar type = this.type;\n\n\t\t\t// Use .is( \":disabled\" ) so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t} )\n\t\t.map( function( _i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\tif ( val == null ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tif ( Array.isArray( val ) ) {\n\t\t\t\treturn jQuery.map( val, function( val ) {\n\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t} ).get();\n\t}\n} );\n\n\nvar\n\tr20 = /%20/g,\n\trhash = /#.*$/,\n\trantiCache = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)$/mg,\n\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat( \"*\" ),\n\n\t// Anchor tag for parsing the document origin\n\toriginAnchor = document.createElement( \"a\" );\n\toriginAnchor.href = location.href;\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];\n\n\t\tif ( isFunction( func ) ) {\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( ( dataType = dataTypes[ i++ ] ) ) {\n\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType[ 0 ] === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" &&\n\t\t\t\t!seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t} );\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar key, deep,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\n\tvar ct, type, finalDataType, firstDataType,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"Content-Type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[ 0 ] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s.throws ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tstate: \"parsererror\",\n\t\t\t\t\t\t\t\terror: conv ? e : \"No conversion from \" + prev + \" to \" + current\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend( {\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: location.href,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( location.protocol ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /\\bxml\\b/,\n\t\t\thtml: /\\bhtml/,\n\t\t\tjson: /\\bjson\\b/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": JSON.parse,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar transport,\n\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\n\t\t\t// Response headers\n\t\t\tresponseHeadersString,\n\t\t\tresponseHeaders,\n\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// Url cleanup var\n\t\t\turlAnchor,\n\n\t\t\t// Request state (becomes false upon send and true upon completion)\n\t\t\tcompleted,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\t// Loop variable\n\t\t\ti,\n\n\t\t\t// uncached part of the url\n\t\t\tuncached,\n\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context &&\n\t\t\t\t( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\t\tjQuery.event,\n\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( completed ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[ 1 ].toLowerCase() + \" \" ] =\n\t\t\t\t\t\t\t\t\t( responseHeaders[ match[ 1 ].toLowerCase() + \" \" ] || [] )\n\t\t\t\t\t\t\t\t\t\t.concat( match[ 2 ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() + \" \" ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match.join( \", \" );\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn completed ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\tname = requestHeadersNames[ name.toLowerCase() ] =\n\t\t\t\t\t\t\trequestHeadersNames[ name.toLowerCase() ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( completed ) {\n\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Lazy-add the new callbacks in a way that preserves old ones\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR );\n\n\t\t// Add protocol if not provided (prefilters might expect it)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || location.href ) + \"\" )\n\t\t\t.replace( rprotocol, location.protocol + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = ( s.dataType || \"*\" ).toLowerCase().match( rnothtmlwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when the origin doesn't match the current origin.\n\t\tif ( s.crossDomain == null ) {\n\t\t\turlAnchor = document.createElement( \"a\" );\n\n\t\t\t// Support: IE <=8 - 11, Edge 12 - 15\n\t\t\t// IE throws exception on accessing the href property if url is malformed,\n\t\t\t// e.g. http://example.com:80x/\n\t\t\ttry {\n\t\t\t\turlAnchor.href = s.url;\n\n\t\t\t\t// Support: IE <=8 - 11 only\n\t\t\t\t// Anchor's host property isn't correctly set when s.url is relative\n\t\t\t\turlAnchor.href = urlAnchor.href;\n\t\t\t\ts.crossDomain = originAnchor.protocol + \"//\" + originAnchor.host !==\n\t\t\t\t\turlAnchor.protocol + \"//\" + urlAnchor.host;\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// If there is an error parsing the URL, assume it is crossDomain,\n\t\t\t\t// it can be rejected by the transport if it is invalid\n\t\t\t\ts.crossDomain = true;\n\t\t\t}\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( completed ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\t// Remove hash to simplify url manipulation\n\t\tcacheURL = s.url.replace( rhash, \"\" );\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// Remember the hash so we can put it back\n\t\t\tuncached = s.url.slice( cacheURL.length );\n\n\t\t\t// If data is available and should be processed, append data to url\n\t\t\tif ( s.data && ( s.processData || typeof s.data === \"string\" ) ) {\n\t\t\t\tcacheURL += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data;\n\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add or update anti-cache param if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\tcacheURL = cacheURL.replace( rantiCache, \"$1\" );\n\t\t\t\tuncached = ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + ( nonce.guid++ ) +\n\t\t\t\t\tuncached;\n\t\t\t}\n\n\t\t\t// Put hash and anti-cache on the URL that will be requested (gh-1732)\n\t\t\ts.url = cacheURL + uncached;\n\n\t\t// Change '%20' to '+' if this is encoded form body content (gh-2658)\n\t\t} else if ( s.data && s.processData &&\n\t\t\t( s.contentType || \"\" ).indexOf( \"application/x-www-form-urlencoded\" ) === 0 ) {\n\t\t\ts.data = s.data.replace( r20, \"+\" );\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[ 0 ] ] +\n\t\t\t\t\t( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend &&\n\t\t\t( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {\n\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// Aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tcompleteDeferred.add( s.complete );\n\t\tjqXHR.done( s.success );\n\t\tjqXHR.fail( s.error );\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\n\t\t\t// If request was aborted inside ajaxSend, stop there\n\t\t\tif ( completed ) {\n\t\t\t\treturn jqXHR;\n\t\t\t}\n\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = window.setTimeout( function() {\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tcompleted = false;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// Rethrow post-completion exceptions\n\t\t\t\tif ( completed ) {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\n\t\t\t\t// Propagate others as results\n\t\t\t\tdone( -1, e );\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Ignore repeat invocations\n\t\t\tif ( completed ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tcompleted = true;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\twindow.clearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Use a noop converter for missing script\n\t\t\tif ( !isSuccess && jQuery.inArray( \"script\", s.dataTypes ) > -1 ) {\n\t\t\t\ts.converters[ \"text script\" ] = function() {};\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"Last-Modified\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"etag\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Extract error from statusText and normalize for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n} );\n\njQuery.each( [ \"get\", \"post\" ], function( _i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\n\t\t// Shift arguments if data argument was omitted\n\t\tif ( isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\t// The url can be an options object (which then must have .url)\n\t\treturn jQuery.ajax( jQuery.extend( {\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t}, jQuery.isPlainObject( url ) && url ) );\n\t};\n} );\n\njQuery.ajaxPrefilter( function( s ) {\n\tvar i;\n\tfor ( i in s.headers ) {\n\t\tif ( i.toLowerCase() === \"content-type\" ) {\n\t\t\ts.contentType = s.headers[ i ] || \"\";\n\t\t}\n\t}\n} );\n\n\njQuery._evalUrl = function( url, options, doc ) {\n\treturn jQuery.ajax( {\n\t\turl: url,\n\n\t\t// Make this explicit, since user can override this through ajaxSetup (#11264)\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tcache: true,\n\t\tasync: false,\n\t\tglobal: false,\n\n\t\t// Only evaluate the response if it is successful (gh-4126)\n\t\t// dataFilter is not invoked for failure responses, so using it instead\n\t\t// of the default converter is kludgy but it works.\n\t\tconverters: {\n\t\t\t\"text script\": function() {}\n\t\t},\n\t\tdataFilter: function( response ) {\n\t\t\tjQuery.globalEval( response, options, doc );\n\t\t}\n\t} );\n};\n\n\njQuery.fn.extend( {\n\twrapAll: function( html ) {\n\t\tvar wrap;\n\n\t\tif ( this[ 0 ] ) {\n\t\t\tif ( isFunction( html ) ) {\n\t\t\t\thtml = html.call( this[ 0 ] );\n\t\t\t}\n\n\t\t\t// The elements to wrap the target around\n\t\t\twrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );\n\n\t\t\tif ( this[ 0 ].parentNode ) {\n\t\t\t\twrap.insertBefore( this[ 0 ] );\n\t\t\t}\n\n\t\t\twrap.map( function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstElementChild ) {\n\t\t\t\t\telem = elem.firstElementChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t} ).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapInner( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t} );\n\t},\n\n\twrap: function( html ) {\n\t\tvar htmlIsFunction = isFunction( html );\n\n\t\treturn this.each( function( i ) {\n\t\t\tjQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );\n\t\t} );\n\t},\n\n\tunwrap: function( selector ) {\n\t\tthis.parent( selector ).not( \"body\" ).each( function() {\n\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t} );\n\t\treturn this;\n\t}\n} );\n\n\njQuery.expr.pseudos.hidden = function( elem ) {\n\treturn !jQuery.expr.pseudos.visible( elem );\n};\njQuery.expr.pseudos.visible = function( elem ) {\n\treturn !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );\n};\n\n\n\n\njQuery.ajaxSettings.xhr = function() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch ( e ) {}\n};\n\nvar xhrSuccessStatus = {\n\n\t\t// File protocol always yields status code 0, assume 200\n\t\t0: 200,\n\n\t\t// Support: IE <=9 only\n\t\t// #1450: sometimes IE returns 1223 when it should be 204\n\t\t1223: 204\n\t},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nsupport.ajax = xhrSupported = !!xhrSupported;\n\njQuery.ajaxTransport( function( options ) {\n\tvar callback, errorCallback;\n\n\t// Cross domain only allowed if supported through XMLHttpRequest\n\tif ( support.cors || xhrSupported && !options.crossDomain ) {\n\t\treturn {\n\t\t\tsend: function( headers, complete ) {\n\t\t\t\tvar i,\n\t\t\t\t\txhr = options.xhr();\n\n\t\t\t\txhr.open(\n\t\t\t\t\toptions.type,\n\t\t\t\t\toptions.url,\n\t\t\t\t\toptions.async,\n\t\t\t\t\toptions.username,\n\t\t\t\t\toptions.password\n\t\t\t\t);\n\n\t\t\t\t// Apply custom fields if provided\n\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Override mime type if needed\n\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t}\n\n\t\t\t\t// X-Requested-With header\n\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\tif ( !options.crossDomain && !headers[ \"X-Requested-With\" ] ) {\n\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t}\n\n\t\t\t\t// Set headers\n\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] );\n\t\t\t\t}\n\n\t\t\t\t// Callback\n\t\t\t\tcallback = function( type ) {\n\t\t\t\t\treturn function() {\n\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\tcallback = errorCallback = xhr.onload =\n\t\t\t\t\t\t\t\txhr.onerror = xhr.onabort = xhr.ontimeout =\n\t\t\t\t\t\t\t\t\txhr.onreadystatechange = null;\n\n\t\t\t\t\t\t\tif ( type === \"abort\" ) {\n\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t} else if ( type === \"error\" ) {\n\n\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t// On a manual native abort, IE9 throws\n\t\t\t\t\t\t\t\t// errors on any property access that is not readyState\n\t\t\t\t\t\t\t\tif ( typeof xhr.status !== \"number\" ) {\n\t\t\t\t\t\t\t\t\tcomplete( 0, \"error\" );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcomplete(\n\n\t\t\t\t\t\t\t\t\t\t// File: protocol always yields status 0; see #8605, #14207\n\t\t\t\t\t\t\t\t\t\txhr.status,\n\t\t\t\t\t\t\t\t\t\txhr.statusText\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tcomplete(\n\t\t\t\t\t\t\t\t\txhrSuccessStatus[ xhr.status ] || xhr.status,\n\t\t\t\t\t\t\t\t\txhr.statusText,\n\n\t\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t\t// IE9 has no XHR2 but throws on binary (trac-11426)\n\t\t\t\t\t\t\t\t\t// For XHR2 non-text, let the caller handle it (gh-2498)\n\t\t\t\t\t\t\t\t\t( xhr.responseType || \"text\" ) !== \"text\"  ||\n\t\t\t\t\t\t\t\t\ttypeof xhr.responseText !== \"string\" ?\n\t\t\t\t\t\t\t\t\t\t{ binary: xhr.response } :\n\t\t\t\t\t\t\t\t\t\t{ text: xhr.responseText },\n\t\t\t\t\t\t\t\t\txhr.getAllResponseHeaders()\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t};\n\n\t\t\t\t// Listen to events\n\t\t\t\txhr.onload = callback();\n\t\t\t\terrorCallback = xhr.onerror = xhr.ontimeout = callback( \"error\" );\n\n\t\t\t\t// Support: IE 9 only\n\t\t\t\t// Use onreadystatechange to replace onabort\n\t\t\t\t// to handle uncaught aborts\n\t\t\t\tif ( xhr.onabort !== undefined ) {\n\t\t\t\t\txhr.onabort = errorCallback;\n\t\t\t\t} else {\n\t\t\t\t\txhr.onreadystatechange = function() {\n\n\t\t\t\t\t\t// Check readyState before timeout as it changes\n\t\t\t\t\t\tif ( xhr.readyState === 4 ) {\n\n\t\t\t\t\t\t\t// Allow onerror to be called first,\n\t\t\t\t\t\t\t// but that will not handle a native abort\n\t\t\t\t\t\t\t// Also, save errorCallback to a variable\n\t\t\t\t\t\t\t// as xhr.onerror cannot be accessed\n\t\t\t\t\t\t\twindow.setTimeout( function() {\n\t\t\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\t\t\terrorCallback();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\t// Create the abort callback\n\t\t\t\tcallback = callback( \"abort\" );\n\n\t\t\t\ttry {\n\n\t\t\t\t\t// Do send the request (this may raise an exception)\n\t\t\t\t\txhr.send( options.hasContent && options.data || null );\n\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t// #14683: Only rethrow if this hasn't been notified as an error yet\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tthrow e;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\n// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)\njQuery.ajaxPrefilter( function( s ) {\n\tif ( s.crossDomain ) {\n\t\ts.contents.script = false;\n\t}\n} );\n\n// Install script dataType\njQuery.ajaxSetup( {\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, \" +\n\t\t\t\"application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /\\b(?:java|ecma)script\\b/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n} );\n\n// Handle cache's special case and crossDomain\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t}\n} );\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function( s ) {\n\n\t// This transport only deals with cross domain or forced-by-attrs requests\n\tif ( s.crossDomain || s.scriptAttrs ) {\n\t\tvar script, callback;\n\t\treturn {\n\t\t\tsend: function( _, complete ) {\n\t\t\t\tscript = jQuery( \"<script>\" )\n\t\t\t\t\t.attr( s.scriptAttrs || {} )\n\t\t\t\t\t.prop( { charset: s.scriptCharset, src: s.url } )\n\t\t\t\t\t.on( \"load error\", callback = function( evt ) {\n\t\t\t\t\t\tscript.remove();\n\t\t\t\t\t\tcallback = null;\n\t\t\t\t\t\tif ( evt ) {\n\t\t\t\t\t\t\tcomplete( evt.type === \"error\" ? 404 : 200, evt.type );\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\tdocument.head.appendChild( script[ 0 ] );\n\t\t\t},\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup( {\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce.guid++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n} );\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" &&\n\t\t\t\t( s.contentType || \"\" )\n\t\t\t\t\t.indexOf( \"application/x-www-form-urlencoded\" ) === 0 &&\n\t\t\t\trjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[ \"script json\" ] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// Force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always( function() {\n\n\t\t\t// If previous value didn't exist - remove it\n\t\t\tif ( overwritten === undefined ) {\n\t\t\t\tjQuery( window ).removeProp( callbackName );\n\n\t\t\t// Otherwise restore preexisting value\n\t\t\t} else {\n\t\t\t\twindow[ callbackName ] = overwritten;\n\t\t\t}\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\n\t\t\t\t// Make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// Save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t} );\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n} );\n\n\n\n\n// Support: Safari 8 only\n// In Safari 8 documents created via document.implementation.createHTMLDocument\n// collapse sibling forms: the second one becomes a child of the first one.\n// Because of that, this security measure has to be disabled in Safari 8.\n// https://bugs.webkit.org/show_bug.cgi?id=137337\nsupport.createHTMLDocument = ( function() {\n\tvar body = document.implementation.createHTMLDocument( \"\" ).body;\n\tbody.innerHTML = \"<form></form><form></form>\";\n\treturn body.childNodes.length === 2;\n} )();\n\n\n// Argument \"data\" should be string of html\n// context (optional): If specified, the fragment will be created in this context,\n// defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( typeof data !== \"string\" ) {\n\t\treturn [];\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\n\tvar base, parsed, scripts;\n\n\tif ( !context ) {\n\n\t\t// Stop scripts or inline event handlers from being executed immediately\n\t\t// by using document.implementation\n\t\tif ( support.createHTMLDocument ) {\n\t\t\tcontext = document.implementation.createHTMLDocument( \"\" );\n\n\t\t\t// Set the base href for the created document\n\t\t\t// so any parsed elements with URLs\n\t\t\t// are based on the document's URL (gh-2965)\n\t\t\tbase = context.createElement( \"base\" );\n\t\t\tbase.href = document.location.href;\n\t\t\tcontext.head.appendChild( base );\n\t\t} else {\n\t\t\tcontext = document;\n\t\t}\n\t}\n\n\tparsed = rsingleTag.exec( data );\n\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[ 1 ] ) ];\n\t}\n\n\tparsed = buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tvar selector, type, response,\n\t\tself = this,\n\t\toff = url.indexOf( \" \" );\n\n\tif ( off > -1 ) {\n\t\tselector = stripAndCollapse( url.slice( off ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax( {\n\t\t\turl: url,\n\n\t\t\t// If \"type\" variable is undefined, then \"GET\" method will be used.\n\t\t\t// Make value of this field explicit since\n\t\t\t// user can override it through ajaxSetup method\n\t\t\ttype: type || \"GET\",\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t} ).done( function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery( \"<div>\" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t// If the request succeeds, this function gets \"data\", \"status\", \"jqXHR\"\n\t\t// but they are ignored because response was set above.\n\t\t// If it fails, this function gets \"jqXHR\", \"status\", \"error\"\n\t\t} ).always( callback && function( jqXHR, status ) {\n\t\t\tself.each( function() {\n\t\t\t\tcallback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t\t} );\n\t\t} );\n\t}\n\n\treturn this;\n};\n\n\n\n\njQuery.expr.pseudos.animated = function( elem ) {\n\treturn jQuery.grep( jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t} ).length;\n};\n\n\n\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// Set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\t( curCSSTop + curCSSLeft ).indexOf( \"auto\" ) > -1;\n\n\t\t// Need to be able to calculate position if either\n\t\t// top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( isFunction( options ) ) {\n\n\t\t\t// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)\n\t\t\toptions = options.call( elem, i, jQuery.extend( {}, curOffset ) );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\n\t\t} else {\n\t\t\tif ( typeof props.top === \"number\" ) {\n\t\t\t\tprops.top += \"px\";\n\t\t\t}\n\t\t\tif ( typeof props.left === \"number\" ) {\n\t\t\t\tprops.left += \"px\";\n\t\t\t}\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend( {\n\n\t// offset() relates an element's border box to the document origin\n\toffset: function( options ) {\n\n\t\t// Preserve chaining for setter\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each( function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t} );\n\t\t}\n\n\t\tvar rect, win,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !elem ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Return zeros for disconnected and hidden (display: none) elements (gh-2310)\n\t\t// Support: IE <=11 only\n\t\t// Running getBoundingClientRect on a\n\t\t// disconnected node in IE throws an error\n\t\tif ( !elem.getClientRects().length ) {\n\t\t\treturn { top: 0, left: 0 };\n\t\t}\n\n\t\t// Get document-relative position by adding viewport scroll to viewport-relative gBCR\n\t\trect = elem.getBoundingClientRect();\n\t\twin = elem.ownerDocument.defaultView;\n\t\treturn {\n\t\t\ttop: rect.top + win.pageYOffset,\n\t\t\tleft: rect.left + win.pageXOffset\n\t\t};\n\t},\n\n\t// position() relates an element's margin box to its offset parent's padding box\n\t// This corresponds to the behavior of CSS absolute positioning\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset, doc,\n\t\t\telem = this[ 0 ],\n\t\t\tparentOffset = { top: 0, left: 0 };\n\n\t\t// position:fixed elements are offset from the viewport, which itself always has zero offset\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\n\t\t\t// Assume position:fixed implies availability of getBoundingClientRect\n\t\t\toffset = elem.getBoundingClientRect();\n\n\t\t} else {\n\t\t\toffset = this.offset();\n\n\t\t\t// Account for the *real* offset parent, which can be the document or its root element\n\t\t\t// when a statically positioned element is identified\n\t\t\tdoc = elem.ownerDocument;\n\t\t\toffsetParent = elem.offsetParent || doc.documentElement;\n\t\t\twhile ( offsetParent &&\n\t\t\t\t( offsetParent === doc.body || offsetParent === doc.documentElement ) &&\n\t\t\t\tjQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\n\t\t\t\toffsetParent = offsetParent.parentNode;\n\t\t\t}\n\t\t\tif ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {\n\n\t\t\t\t// Incorporate borders into its offset, since they are outside its content origin\n\t\t\t\tparentOffset = jQuery( offsetParent ).offset();\n\t\t\t\tparentOffset.top += jQuery.css( offsetParent, \"borderTopWidth\", true );\n\t\t\t\tparentOffset.left += jQuery.css( offsetParent, \"borderLeftWidth\", true );\n\t\t\t}\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\treturn {\n\t\t\ttop: offset.top - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true )\n\t\t};\n\t},\n\n\t// This method will return documentElement in the following cases:\n\t// 1) For the element inside the iframe without offsetParent, this method will return\n\t//    documentElement of the parent window\n\t// 2) For the hidden or detached element\n\t// 3) For body or html element, i.e. in case of the html node - it will return itself\n\t//\n\t// but those exceptions were never presented as a real life use-cases\n\t// and might be considered as more preferable results.\n\t//\n\t// This logic, however, is not guaranteed and can change at any point in the future\n\toffsetParent: function() {\n\t\treturn this.map( function() {\n\t\t\tvar offsetParent = this.offsetParent;\n\n\t\t\twhile ( offsetParent && jQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\n\t\t\treturn offsetParent || documentElement;\n\t\t} );\n\t}\n} );\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = \"pageYOffset\" === prop;\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\n\t\t\t// Coalesce documents and windows\n\t\t\tvar win;\n\t\t\tif ( isWindow( elem ) ) {\n\t\t\t\twin = elem;\n\t\t\t} else if ( elem.nodeType === 9 ) {\n\t\t\t\twin = elem.defaultView;\n\t\t\t}\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? win[ prop ] : elem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : win.pageXOffset,\n\t\t\t\t\ttop ? val : win.pageYOffset\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length );\n\t};\n} );\n\n// Support: Safari <=7 - 9.1, Chrome <=37 - 49\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347\n// getComputedStyle returns percent when specified for top/left/bottom/right;\n// rather than make the css module depend on the offset module, just check for it here\njQuery.each( [ \"top\", \"left\" ], function( _i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\n\t\t\t\t// If curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n} );\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name },\n\t\tfunction( defaultExtra, funcName ) {\n\n\t\t// Margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( isWindow( elem ) ) {\n\n\t\t\t\t\t// $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)\n\t\t\t\t\treturn funcName.indexOf( \"outer\" ) === 0 ?\n\t\t\t\t\t\telem[ \"inner\" + name ] :\n\t\t\t\t\t\telem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],\n\t\t\t\t\t// whichever is greatest\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable );\n\t\t};\n\t} );\n} );\n\n\njQuery.each( [\n\t\"ajaxStart\",\n\t\"ajaxStop\",\n\t\"ajaxComplete\",\n\t\"ajaxError\",\n\t\"ajaxSuccess\",\n\t\"ajaxSend\"\n], function( _i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n} );\n\n\n\n\njQuery.fn.extend( {\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ?\n\t\t\tthis.off( selector, \"**\" ) :\n\t\t\tthis.off( types, selector || \"**\", fn );\n\t},\n\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t}\n} );\n\njQuery.each( ( \"blur focus focusin focusout resize scroll click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup contextmenu\" ).split( \" \" ),\n\tfunction( _i, name ) {\n\n\t\t// Handle event binding\n\t\tjQuery.fn[ name ] = function( data, fn ) {\n\t\t\treturn arguments.length > 0 ?\n\t\t\t\tthis.on( name, null, data, fn ) :\n\t\t\t\tthis.trigger( name );\n\t\t};\n\t} );\n\n\n\n\n// Support: Android <=4.0 only\n// Make sure we trim BOM and NBSP\nvar rtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g;\n\n// Bind a function to a context, optionally partially applying any\n// arguments.\n// jQuery.proxy is deprecated to promote standards (specifically Function#bind)\n// However, it is not slated for removal any time soon\njQuery.proxy = function( fn, context ) {\n\tvar tmp, args, proxy;\n\n\tif ( typeof context === \"string\" ) {\n\t\ttmp = fn[ context ];\n\t\tcontext = fn;\n\t\tfn = tmp;\n\t}\n\n\t// Quick check to determine if target is callable, in the spec\n\t// this throws a TypeError, but we will just return undefined.\n\tif ( !isFunction( fn ) ) {\n\t\treturn undefined;\n\t}\n\n\t// Simulated bind\n\targs = slice.call( arguments, 2 );\n\tproxy = function() {\n\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t};\n\n\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\treturn proxy;\n};\n\njQuery.holdReady = function( hold ) {\n\tif ( hold ) {\n\t\tjQuery.readyWait++;\n\t} else {\n\t\tjQuery.ready( true );\n\t}\n};\njQuery.isArray = Array.isArray;\njQuery.parseJSON = JSON.parse;\njQuery.nodeName = nodeName;\njQuery.isFunction = isFunction;\njQuery.isWindow = isWindow;\njQuery.camelCase = camelCase;\njQuery.type = toType;\n\njQuery.now = Date.now;\n\njQuery.isNumeric = function( obj ) {\n\n\t// As of jQuery 3.0, isNumeric is limited to\n\t// strings and numbers (primitives or objects)\n\t// that can be coerced to finite numbers (gh-2662)\n\tvar type = jQuery.type( obj );\n\treturn ( type === \"number\" || type === \"string\" ) &&\n\n\t\t// parseFloat NaNs numeric-cast false positives (\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t!isNaN( obj - parseFloat( obj ) );\n};\n\njQuery.trim = function( text ) {\n\treturn text == null ?\n\t\t\"\" :\n\t\t( text + \"\" ).replace( rtrim, \"\" );\n};\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t} );\n}\n\n\n\n\nvar\n\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in AMD\n// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === \"undefined\" ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n} );\n"
  },
  {
    "path": "docs/images/03_mean/lib/plotly-binding-4.10.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    // Plotly.relayout() mutates the plot input object, so make sure to \n    // keep a reference to the user-supplied width/height *before*\n    // we call Plotly.plot();\n    var lay = x.layout || {};\n    instance.width = lay.width;\n    instance.height = lay.height;\n    instance.autosize = lay.autosize || true;\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if ((x.selectize || x.highlight.dynamic) && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.newPlot(graphDiv, x);\n      instance.plotly = true;\n      \n    } else if (x.layout.transition) {\n      \n      var plot = Plotly.react(graphDiv, x);\n    \n    } else {\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.newPlot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n            if (typeof pt.pointNumber === \"number\") {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber];\n            } else if (Array.isArray(pt.pointNumber)) {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber[0]][pt.pointNumber[1]];\n            } else if (Array.isArray(pt.pointNumbers)) {\n              obj[attrsToAttach[i]] = pt.pointNumbers.map(function(idx) { return attr[idx]; });\n            }\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode && Shiny.setInputValue) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_sunburstclick: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "docs/images/03_mean/lib/plotly-binding-4.9.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if (x.selectize || x.highlight.dynamic && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.plot(graphDiv, x);\n      instance.plotly = true;\n      instance.autosize = x.layout.autosize || true;\n      instance.width = x.layout.width;\n      instance.height = x.layout.height;\n      \n    } else {\n      \n      // new x data could contain a new height/width...\n      // attach to instance so that resize logic knows about the new size\n      instance.width = x.layout.width || instance.width;\n      instance.height = x.layout.height || instance.height;\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.plot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n              // pointNumber can be an array (e.g., heatmaps)\n              // TODO: can pointNumber be 3D?\n              obj[attrsToAttach[i]] = typeof pt.pointNumber === \"number\" ? \n                attr[pt.pointNumber] : attr[pt.pointNumber[0]][pt.pointNumber[1]];\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "docs/images/03_mean/lib/plotly-binding-4.9.1/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    // Plotly.relayout() mutates the plot input object, so make sure to \n    // keep a reference to the user-supplied width/height *before*\n    // we call Plotly.plot();\n    var lay = x.layout || {};\n    instance.width = lay.width;\n    instance.height = lay.height;\n    instance.autosize = lay.autosize || true;\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if (x.selectize || x.highlight.dynamic && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.plot(graphDiv, x);\n      instance.plotly = true;\n      \n    } else {\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.plot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n            if (typeof pt.pointNumber === \"number\") {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber];\n            } else if (Array.isArray(pt.pointNumber)) {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber[0]][pt.pointNumber[1]];\n            } else if (Array.isArray(pt.pointNumbers)) {\n              obj[attrsToAttach[i]] = pt.pointNumbers.map(function(idx) { return attr[idx]; });\n            }\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode && Shiny.setInputValue) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_sunburstclick: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "docs/images/03_mean/lib/plotly-htmlwidgets-css-1.46.1/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "docs/images/03_mean/lib/plotly-htmlwidgets-css-1.49.4/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "docs/images/03_mean/lib/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "docs/images/04_variance/lib/crosstalk-1.0.0/css/crosstalk.css",
    "content": "/* Adjust margins outwards, so column contents line up with the edges of the\n   parent of container-fluid. */\n.container-fluid.crosstalk-bscols {\n  margin-left: -30px;\n  margin-right: -30px;\n  white-space: normal;\n}\n\n/* But don't adjust the margins outwards if we're directly under the body,\n   i.e. we were the top-level of something at the console. */\nbody > .container-fluid.crosstalk-bscols {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n  display: inline-block;\n  padding-right: 12px;\n  vertical-align: top;\n}\n\n@media only screen and (max-width:480px) {\n  .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n    display: block;\n    padding-right: inherit;\n  }\n}\n"
  },
  {
    "path": "docs/images/04_variance/lib/crosstalk-1.0.0/js/crosstalk.js",
    "content": "(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Events = function () {\n  function Events() {\n    _classCallCheck(this, Events);\n\n    this._types = {};\n    this._seq = 0;\n  }\n\n  _createClass(Events, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var subs = this._types[eventType];\n      if (!subs) {\n        subs = this._types[eventType] = {};\n      }\n      var sub = \"sub\" + this._seq++;\n      subs[sub] = listener;\n      return sub;\n    }\n\n    // Returns false if no match, or string for sub name if matched\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var subs = this._types[eventType];\n      if (typeof listener === \"function\") {\n        for (var key in subs) {\n          if (subs.hasOwnProperty(key)) {\n            if (subs[key] === listener) {\n              delete subs[key];\n              return key;\n            }\n          }\n        }\n        return false;\n      } else if (typeof listener === \"string\") {\n        if (subs && subs[listener]) {\n          delete subs[listener];\n          return listener;\n        }\n        return false;\n      } else {\n        throw new Error(\"Unexpected type for listener\");\n      }\n    }\n  }, {\n    key: \"trigger\",\n    value: function trigger(eventType, arg, thisObj) {\n      var subs = this._types[eventType];\n      for (var key in subs) {\n        if (subs.hasOwnProperty(key)) {\n          subs[key].call(thisObj, arg);\n        }\n      }\n    }\n  }]);\n\n  return Events;\n}();\n\nexports.default = Events;\n\n},{}],2:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.FilterHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _filterset = require(\"./filterset\");\n\nvar _filterset2 = _interopRequireDefault(_filterset);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction getFilterSet(group) {\n  var fsVar = group.var(\"filterset\");\n  var result = fsVar.get();\n  if (!result) {\n    result = new _filterset2.default();\n    fsVar.set(result);\n  }\n  return result;\n}\n\nvar id = 1;\nfunction nextId() {\n  return id++;\n}\n\nvar FilterHandle = exports.FilterHandle = function () {\n  /**\n   * @classdesc\n   * Use this class to contribute to, and listen for changes to, the filter set\n   * for the given group of widgets. Filter input controls should create one\n   * `FilterHandle` and only call {@link FilterHandle#set}. Output widgets that\n   * wish to displayed filtered data should create one `FilterHandle` and use\n   * the {@link FilterHandle#filteredKeys} property and listen for change\n   * events.\n   *\n   * If two (or more) `FilterHandle` instances in the same webpage share the\n   * same group name, they will contribute to a single \"filter set\". Each\n   * `FilterHandle` starts out with a `null` value, which means they take\n   * nothing away from the set of data that should be shown. To make a\n   * `FilterHandle` actually remove data from the filter set, set its value to\n   * an array of keys which should be displayed. Crosstalk will aggregate the\n   * various key arrays by finding their intersection; only keys that are\n   * present in all non-null filter handles are considered part of the filter\n   * set.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the @{link FilterHandle#setGroup} method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function FilterHandle(group, extraInfo) {\n    _classCallCheck(this, FilterHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The filterSet that we're tracking, if any. Can change over time.\n    this._filterSet = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._filterVar = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this._id = \"filter\" + nextId();\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this FilterHandle. If `set()` was\n   * previously called on this handle, switching groups will clear those keys\n   * from the old group's filter set. These keys will not be applied to the new\n   * group's filter set either. In other words, `setGroup()` effectively calls\n   * `clear()` before switching groups.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(FilterHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._filterVar) {\n        this._filterVar.off(\"change\", this._varOnChangeSub);\n        this.clear();\n        this._varOnChangeSub = null;\n        this._filterVar = null;\n        this._filterSet = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        group = (0, _group2.default)(group);\n        this._filterSet = getFilterSet(group);\n        this._filterVar = (0, _group2.default)(group).var(\"filter\");\n        var sub = this._filterVar.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Combine the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n    value: function _mergeExtraInfo(extraInfo) {\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Close the handle. This clears this handle's contribution to the filter set,\n     * and unsubscribes all event listeners.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.clear();\n      this.setGroup(null);\n    }\n\n    /**\n     * Clear this handle's contribution to the filter set.\n     *\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.clear(this._id);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * Set this handle's contribution to the filter set. This array should consist\n     * of the keys of the rows that _should_ be displayed; any keys that are not\n     * present in the array will be considered _filtered out_. Note that multiple\n     * `FilterHandle` instances in the group may each contribute an array of keys,\n     * and only those keys that appear in _all_ of the arrays make it through the\n     * filter.\n     *\n     * @param {string[]} keys - Empty array, or array of keys. To clear the\n     *   filter, don't pass an empty array; instead, use the\n     *   {@link FilterHandle#clear} method.\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(keys, extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.update(this._id, keys);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * @return {string[]|null} - Either: 1) an array of keys that made it through\n     *   all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n     *   is being applied (all data should be displayed).\n     */\n\n  }, {\n    key: \"on\",\n\n\n    /**\n     * Subscribe to events on this `FilterHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {FilterHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n     *   this subscription.\n     */\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancel event subscriptions created by {@link FilterHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|FilterHandle~listener} listener - Either the callback\n     *   function previously passed into {@link FilterHandle#on}, or the\n     *   string that was returned from {@link FilterHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n  }, {\n    key: \"_onChange\",\n    value: function _onChange(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * @callback FilterHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the filter set, or `null` if no filter set is active),\n     *   `oldValue` (the previous value of the filter set), and `sender` (the\n     *   `FilterHandle` instance that made the change).\n     */\n\n    /**\n     * @event FilterHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the filter set, or `null`\n     *   if no filter set is active.\n     * @property {object} oldValue - The previous value of the filter set.\n     * @property {FilterHandle} sender - The `FilterHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"filteredKeys\",\n    get: function get() {\n      return this._filterSet ? this._filterSet.value : null;\n    }\n  }]);\n\n  return FilterHandle;\n}();\n\n},{\"./events\":1,\"./filterset\":3,\"./group\":4,\"./util\":11}],3:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _util = require(\"./util\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction naturalComparator(a, b) {\n  if (a === b) {\n    return 0;\n  } else if (a < b) {\n    return -1;\n  } else if (a > b) {\n    return 1;\n  }\n}\n\n/**\n * @private\n */\n\nvar FilterSet = function () {\n  function FilterSet() {\n    _classCallCheck(this, FilterSet);\n\n    this.reset();\n  }\n\n  _createClass(FilterSet, [{\n    key: \"reset\",\n    value: function reset() {\n      // Key: handle ID, Value: array of selected keys, or null\n      this._handles = {};\n      // Key: key string, Value: count of handles that include it\n      this._keys = {};\n      this._value = null;\n      this._activeHandles = 0;\n    }\n  }, {\n    key: \"update\",\n    value: function update(handleId, keys) {\n      if (keys !== null) {\n        keys = keys.slice(0); // clone before sorting\n        keys.sort(naturalComparator);\n      }\n\n      var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys),\n          added = _diffSortedLists.added,\n          removed = _diffSortedLists.removed;\n\n      this._handles[handleId] = keys;\n\n      for (var i = 0; i < added.length; i++) {\n        this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n      }\n      for (var _i = 0; _i < removed.length; _i++) {\n        this._keys[removed[_i]]--;\n      }\n\n      this._updateValue(keys);\n    }\n\n    /**\n     * @param {string[]} keys Sorted array of strings that indicate\n     * a superset of possible keys.\n     * @private\n     */\n\n  }, {\n    key: \"_updateValue\",\n    value: function _updateValue() {\n      var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys;\n\n      var handleCount = Object.keys(this._handles).length;\n      if (handleCount === 0) {\n        this._value = null;\n      } else {\n        this._value = [];\n        for (var i = 0; i < keys.length; i++) {\n          var count = this._keys[keys[i]];\n          if (count === handleCount) {\n            this._value.push(keys[i]);\n          }\n        }\n      }\n    }\n  }, {\n    key: \"clear\",\n    value: function clear(handleId) {\n      if (typeof this._handles[handleId] === \"undefined\") {\n        return;\n      }\n\n      var keys = this._handles[handleId];\n      if (!keys) {\n        keys = [];\n      }\n\n      for (var i = 0; i < keys.length; i++) {\n        this._keys[keys[i]]--;\n      }\n      delete this._handles[handleId];\n\n      this._updateValue();\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"_allKeys\",\n    get: function get() {\n      var allKeys = Object.keys(this._keys);\n      allKeys.sort(naturalComparator);\n      return allKeys;\n    }\n  }]);\n\n  return FilterSet;\n}();\n\nexports.default = FilterSet;\n\n},{\"./util\":11}],4:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.default = group;\n\nvar _var2 = require(\"./var\");\n\nvar _var3 = _interopRequireDefault(_var2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nvar groups = global.__crosstalk_groups;\n\nfunction group(groupName) {\n  if (groupName && typeof groupName === \"string\") {\n    if (!groups.hasOwnProperty(groupName)) {\n      groups[groupName] = new Group(groupName);\n    }\n    return groups[groupName];\n  } else if ((typeof groupName === \"undefined\" ? \"undefined\" : _typeof(groupName)) === \"object\" && groupName._vars && groupName.var) {\n    // Appears to already be a group object\n    return groupName;\n  } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === \"string\") {\n    return group(groupName[0]);\n  } else {\n    throw new Error(\"Invalid groupName argument\");\n  }\n}\n\nvar Group = function () {\n  function Group(name) {\n    _classCallCheck(this, Group);\n\n    this.name = name;\n    this._vars = {};\n  }\n\n  _createClass(Group, [{\n    key: \"var\",\n    value: function _var(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name);\n      return this._vars[name];\n    }\n  }, {\n    key: \"has\",\n    value: function has(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      return this._vars.hasOwnProperty(name);\n    }\n  }]);\n\n  return Group;\n}();\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./var\":12}],5:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _selection = require(\"./selection\");\n\nvar _filter = require(\"./filter\");\n\nrequire(\"./input\");\n\nrequire(\"./input_selectize\");\n\nrequire(\"./input_checkboxgroup\");\n\nrequire(\"./input_slider\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar defaultGroup = (0, _group2.default)(\"default\");\n\nfunction var_(name) {\n  return defaultGroup.var(name);\n}\n\nfunction has(name) {\n  return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n  global.Shiny.addCustomMessageHandler(\"update-client-value\", function (message) {\n    if (typeof message.group === \"string\") {\n      (0, _group2.default)(message.group).var(message.name).set(message.value);\n    } else {\n      var_(message.name).set(message.value);\n    }\n  });\n}\n\nvar crosstalk = {\n  group: _group2.default,\n  var: var_,\n  has: has,\n  SelectionHandle: _selection.SelectionHandle,\n  FilterHandle: _filter.FilterHandle\n};\n\n/**\n * @namespace crosstalk\n */\nexports.default = crosstalk;\n\nglobal.crosstalk = crosstalk;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./group\":4,\"./input\":6,\"./input_checkboxgroup\":7,\"./input_selectize\":8,\"./input_slider\":9,\"./selection\":10}],6:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.register = register;\nvar $ = global.jQuery;\n\nvar bindings = {};\n\nfunction register(reg) {\n  bindings[reg.className] = reg;\n  if (global.document && global.document.readyState !== \"complete\") {\n    $(function () {\n      bind();\n    });\n  } else if (global.document) {\n    setTimeout(bind, 100);\n  }\n}\n\nfunction bind() {\n  Object.keys(bindings).forEach(function (className) {\n    var binding = bindings[className];\n    $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function (i, el) {\n      bindInstance(binding, el);\n    });\n  });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n  return val.replace(/([!\"#$%&'()*+,.\\/:;<=>?@\\[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n  var $el = $(el);\n  Object.keys(bindings).forEach(function (className) {\n    if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n      var binding = bindings[className];\n      bindInstance(binding, el);\n    }\n  });\n}\n\nfunction bindInstance(binding, el) {\n  var jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n  var data = JSON.parse(jsonEl[0].innerText);\n\n  var instance = binding.factory(el, data);\n  $(el).data(\"crosstalk-instance\", instance);\n  $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n  (function () {\n    var inputBinding = new global.Shiny.InputBinding();\n    var $ = global.jQuery;\n    $.extend(inputBinding, {\n      find: function find(scope) {\n        return $(scope).find(\".crosstalk-input\");\n      },\n      initialize: function initialize(el) {\n        if (!$(el).hasClass(\"crosstalk-input-bound\")) {\n          bindEl(el);\n        }\n      },\n      getId: function getId(el) {\n        return el.id;\n      },\n      getValue: function getValue(el) {},\n      setValue: function setValue(el, value) {},\n      receiveMessage: function receiveMessage(el, data) {},\n      subscribe: function subscribe(el, callback) {\n        $(el).data(\"crosstalk-instance\").resume();\n      },\n      unsubscribe: function unsubscribe(el) {\n        $(el).data(\"crosstalk-instance\").suspend();\n      }\n    });\n    global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n  })();\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{}],7:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-checkboxgroup\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    var $el = $(el);\n    $el.on(\"change\", \"input[type='checkbox']\", function () {\n      var checked = $el.find(\"input[type='checkbox']:checked\");\n      if (checked.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          checked.each(function () {\n            data.map[this.value].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],8:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-select\",\n\n  factory: function factory(el, data) {\n    /*\n     * items: {value: [...], label: [...]}\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n\n    var first = [{ value: \"\", label: \"(All)\" }];\n    var items = util.dataframeToD3(data.items);\n    var opts = {\n      options: first.concat(items),\n      valueField: \"value\",\n      labelField: \"label\",\n      searchField: \"label\"\n    };\n\n    var select = $(el).find(\"select\")[0];\n\n    var selectize = $(select).selectize(opts)[0].selectize;\n\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    selectize.on(\"change\", function () {\n      if (selectize.items.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          selectize.items.forEach(function (group) {\n            data.map[group].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6,\"./util\":11}],9:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\nvar strftime = global.strftime;\n\ninput.register({\n  className: \"crosstalk-input-slider\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var opts = {};\n    var $el = $(el).find(\"input\");\n    var dataType = $el.data(\"data-type\");\n    var timeFormat = $el.data(\"time-format\");\n    var timeFormatter = void 0;\n\n    // Set up formatting functions\n    if (dataType === \"date\") {\n      timeFormatter = strftime.utc();\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"datetime\") {\n      var timezone = $el.data(\"timezone\");\n      if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime;\n\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    }\n\n    $el.ionRangeSlider(opts);\n\n    function getValue() {\n      var result = $el.data(\"ionRangeSlider\").result;\n\n      // Function for converting numeric value from slider to appropriate type.\n      var convert = void 0;\n      var dataType = $el.data(\"data-type\");\n      if (dataType === \"date\") {\n        convert = function convert(val) {\n          return formatDateUTC(new Date(+val));\n        };\n      } else if (dataType === \"datetime\") {\n        convert = function convert(val) {\n          // Convert ms to s\n          return +val / 1000;\n        };\n      } else {\n        convert = function convert(val) {\n          return +val;\n        };\n      }\n\n      if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n        return [convert(result.from), convert(result.to)];\n      } else {\n        return convert(result.from);\n      }\n    }\n\n    var lastKnownKeys = null;\n\n    $el.on(\"change.crosstalkSliderInput\", function (event) {\n      if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n        var _getValue = getValue(),\n            _getValue2 = _slicedToArray(_getValue, 2),\n            from = _getValue2[0],\n            to = _getValue2[1];\n\n        var keys = [];\n        for (var i = 0; i < data.values.length; i++) {\n          var val = data.values[i];\n          if (val >= from && val <= to) {\n            keys.push(data.keys[i]);\n          }\n        }\n        keys.sort();\n        ctHandle.set(keys);\n        lastKnownKeys = keys;\n      }\n    });\n\n    // let $el = $(el);\n    // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n    //   let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n    //   if (checked.length === 0) {\n    //     ctHandle.clear();\n    //   } else {\n    //     let keys = {};\n    //     checked.each(function() {\n    //       data.map[this.value].forEach(function(key) {\n    //         keys[key] = true;\n    //       });\n    //     });\n    //     let keyArray = Object.keys(keys);\n    //     keyArray.sort();\n    //     ctHandle.set(keyArray);\n    //   }\n    // });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n  var str = n.toString();\n  while (str.length < digits) {\n    str = \"0\" + str;\n  }return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n  if (date instanceof Date) {\n    return date.getUTCFullYear() + \"-\" + padZeros(date.getUTCMonth() + 1, 2) + \"-\" + padZeros(date.getUTCDate(), 2);\n  } else {\n    return null;\n  }\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],10:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.SelectionHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar SelectionHandle = exports.SelectionHandle = function () {\n\n  /**\n   * @classdesc\n   * Use this class to read and write (and listen for changes to) the selection\n   * for a Crosstalk group. This is intended to be used for linked brushing.\n   *\n   * If two (or more) `SelectionHandle` instances in the same webpage share the\n   * same group name, they will share the same state. Setting the selection using\n   * one `SelectionHandle` instance will result in the `value` property instantly\n   * changing across the others, and `\"change\"` event listeners on all instances\n   * (including the one that initiated the sending) will fire.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the [SelectionHandle#setGroup](#setGroup) method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function SelectionHandle() {\n    var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n    var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n\n    _classCallCheck(this, SelectionHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._var = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this SelectionHandle. The group\n   * being switched away from (if any) will not have its selection value\n   * modified as a result of calling `setGroup`, even if this handle was the\n   * most recent handle to set the selection of the group.\n   *\n   * The group being switched to (if any) will also not have its selection value\n   * modified as a result of calling `setGroup`. If you want to set the\n   * selection value of the new group, call `set` explicitly.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(SelectionHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._var) {\n        this._var.off(\"change\", this._varOnChangeSub);\n        this._var = null;\n        this._varOnChangeSub = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        this._var = (0, _group2.default)(group).var(\"selection\");\n        var sub = this._var.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Retrieves the current selection for the group represented by this\n     * `SelectionHandle`.\n     *\n     * - If no selection is active, then this value will be falsy.\n     * - If a selection is active, but no data points are selected, then this\n     *   value will be an empty array.\n     * - If a selection is active, and data points are selected, then the keys\n     *   of the selected data points will be present in the array.\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n\n\n    /**\n     * Combines the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n    value: function _mergeExtraInfo(extraInfo) {\n      // Important incidental effect: shallow clone is returned\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n     *   {@link SelectionHandle#value}).\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(selectedKeys, extraInfo) {\n      if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any that were passed\n     *   into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Subscribes to events on this `SelectionHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {SelectionHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n     *   this subscription.\n     */\n\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancels event subscriptions created by {@link SelectionHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|SelectionHandle~listener} listener - Either the callback\n     *   function previously passed into {@link SelectionHandle#on}, or the\n     *   string that was returned from {@link SelectionHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n\n    /**\n     * Shuts down the `SelectionHandle` object.\n     *\n     * Removes all event listeners that were added through this handle.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.setGroup(null);\n    }\n\n    /**\n     * @callback SelectionHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the selection, or `undefined` if no selection is active),\n     *   `oldValue` (the previous value of the selection), and `sender` (the\n     *   `SelectionHandle` instance that made the change).\n     */\n\n    /**\n     * @event SelectionHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the selection, or `undefined`\n     *   if no selection is active.\n     * @property {object} oldValue - The previous value of the selection.\n     * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._var ? this._var.get() : null;\n    }\n  }]);\n\n  return SelectionHandle;\n}();\n\n},{\"./events\":1,\"./group\":4,\"./util\":11}],11:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.extend = extend;\nexports.checkSorted = checkSorted;\nexports.diffSortedLists = diffSortedLists;\nexports.dataframeToD3 = dataframeToD3;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction extend(target) {\n  for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n    sources[_key - 1] = arguments[_key];\n  }\n\n  for (var i = 0; i < sources.length; i++) {\n    var src = sources[i];\n    if (typeof src === \"undefined\" || src === null) continue;\n\n    for (var key in src) {\n      if (src.hasOwnProperty(key)) {\n        target[key] = src[key];\n      }\n    }\n  }\n  return target;\n}\n\nfunction checkSorted(list) {\n  for (var i = 1; i < list.length; i++) {\n    if (list[i] <= list[i - 1]) {\n      throw new Error(\"List is not sorted or contains duplicate\");\n    }\n  }\n}\n\nfunction diffSortedLists(a, b) {\n  var i_a = 0;\n  var i_b = 0;\n\n  if (!a) a = [];\n  if (!b) b = [];\n\n  var a_only = [];\n  var b_only = [];\n\n  checkSorted(a);\n  checkSorted(b);\n\n  while (i_a < a.length && i_b < b.length) {\n    if (a[i_a] === b[i_b]) {\n      i_a++;\n      i_b++;\n    } else if (a[i_a] < b[i_b]) {\n      a_only.push(a[i_a++]);\n    } else {\n      b_only.push(b[i_b++]);\n    }\n  }\n\n  if (i_a < a.length) a_only = a_only.concat(a.slice(i_a));\n  if (i_b < b.length) b_only = b_only.concat(b.slice(i_b));\n  return {\n    removed: a_only,\n    added: b_only\n  };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nfunction dataframeToD3(df) {\n  var names = [];\n  var length = void 0;\n  for (var name in df) {\n    if (df.hasOwnProperty(name)) names.push(name);\n    if (_typeof(df[name]) !== \"object\" || typeof df[name].length === \"undefined\") {\n      throw new Error(\"All fields must be arrays\");\n    } else if (typeof length !== \"undefined\" && length !== df[name].length) {\n      throw new Error(\"All fields must be arrays of the same length\");\n    }\n    length = df[name].length;\n  }\n  var results = [];\n  var item = void 0;\n  for (var row = 0; row < length; row++) {\n    item = {};\n    for (var col = 0; col < names.length; col++) {\n      item[names[col]] = df[names[col]][row];\n    }\n    results.push(item);\n  }\n  return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\n\nvar SubscriptionTracker = exports.SubscriptionTracker = function () {\n  function SubscriptionTracker(emitter) {\n    _classCallCheck(this, SubscriptionTracker);\n\n    this._emitter = emitter;\n    this._subs = {};\n  }\n\n  _createClass(SubscriptionTracker, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var sub = this._emitter.on(eventType, listener);\n      this._subs[sub] = eventType;\n      return sub;\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var sub = this._emitter.off(eventType, listener);\n      if (sub) {\n        delete this._subs[sub];\n      }\n      return sub;\n    }\n  }, {\n    key: \"removeAllListeners\",\n    value: function removeAllListeners() {\n      var _this = this;\n\n      var current_subs = this._subs;\n      this._subs = {};\n      Object.keys(current_subs).forEach(function (sub) {\n        _this._emitter.off(current_subs[sub], sub);\n      });\n    }\n  }]);\n\n  return SubscriptionTracker;\n}();\n\n},{}],12:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Var = function () {\n  function Var(group, name, /*optional*/value) {\n    _classCallCheck(this, Var);\n\n    this._group = group;\n    this._name = name;\n    this._value = value;\n    this._events = new _events2.default();\n  }\n\n  _createClass(Var, [{\n    key: \"get\",\n    value: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"set\",\n    value: function set(value, /*optional*/event) {\n      if (this._value === value) {\n        // Do nothing; the value hasn't changed\n        return;\n      }\n      var oldValue = this._value;\n      this._value = value;\n      // Alert JavaScript listeners that the value has changed\n      var evt = {};\n      if (event && (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\") {\n        for (var k in event) {\n          if (event.hasOwnProperty(k)) evt[k] = event[k];\n        }\n      }\n      evt.oldValue = oldValue;\n      evt.value = value;\n      this._events.trigger(\"change\", evt, this);\n\n      // TODO: Make this extensible, to let arbitrary back-ends know that\n      // something has changed\n      if (global.Shiny && global.Shiny.onInputChange) {\n        global.Shiny.onInputChange(\".clientValue-\" + (this._group.name !== null ? this._group.name + \"-\" : \"\") + this._name, typeof value === \"undefined\" ? null : value);\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._events.on(eventType, listener);\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._events.off(eventType, listener);\n    }\n  }]);\n\n  return Var;\n}();\n\nexports.default = Var;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./events\":1}]},{},[5])\n//# sourceMappingURL=crosstalk.js.map\n"
  },
  {
    "path": "docs/images/04_variance/lib/crosstalk-1.2.0/js/crosstalk.js",
    "content": "(function(){function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s}return e})()({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Events = function () {\n  function Events() {\n    _classCallCheck(this, Events);\n\n    this._types = {};\n    this._seq = 0;\n  }\n\n  _createClass(Events, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var subs = this._types[eventType];\n      if (!subs) {\n        subs = this._types[eventType] = {};\n      }\n      var sub = \"sub\" + this._seq++;\n      subs[sub] = listener;\n      return sub;\n    }\n\n    // Returns false if no match, or string for sub name if matched\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var subs = this._types[eventType];\n      if (typeof listener === \"function\") {\n        for (var key in subs) {\n          if (subs.hasOwnProperty(key)) {\n            if (subs[key] === listener) {\n              delete subs[key];\n              return key;\n            }\n          }\n        }\n        return false;\n      } else if (typeof listener === \"string\") {\n        if (subs && subs[listener]) {\n          delete subs[listener];\n          return listener;\n        }\n        return false;\n      } else {\n        throw new Error(\"Unexpected type for listener\");\n      }\n    }\n  }, {\n    key: \"trigger\",\n    value: function trigger(eventType, arg, thisObj) {\n      var subs = this._types[eventType];\n      for (var key in subs) {\n        if (subs.hasOwnProperty(key)) {\n          subs[key].call(thisObj, arg);\n        }\n      }\n    }\n  }]);\n\n  return Events;\n}();\n\nexports.default = Events;\n\n},{}],2:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.FilterHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _filterset = require(\"./filterset\");\n\nvar _filterset2 = _interopRequireDefault(_filterset);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction getFilterSet(group) {\n  var fsVar = group.var(\"filterset\");\n  var result = fsVar.get();\n  if (!result) {\n    result = new _filterset2.default();\n    fsVar.set(result);\n  }\n  return result;\n}\n\nvar id = 1;\nfunction nextId() {\n  return id++;\n}\n\n/**\n * Use this class to contribute to, and listen for changes to, the filter set\n * for the given group of widgets. Filter input controls should create one\n * `FilterHandle` and only call {@link FilterHandle#set}. Output widgets that\n * wish to displayed filtered data should create one `FilterHandle` and use\n * the {@link FilterHandle#filteredKeys} property and listen for change\n * events.\n *\n * If two (or more) `FilterHandle` instances in the same webpage share the\n * same group name, they will contribute to a single \"filter set\". Each\n * `FilterHandle` starts out with a `null` value, which means they take\n * nothing away from the set of data that should be shown. To make a\n * `FilterHandle` actually remove data from the filter set, set its value to\n * an array of keys which should be displayed. Crosstalk will aggregate the\n * various key arrays by finding their intersection; only keys that are\n * present in all non-null filter handles are considered part of the filter\n * set.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n *   null or undefined (or any other falsy value). This can be changed later\n *   via the {@link FilterHandle#setGroup} method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n *   the event object whenever an event is emitted.\n */\n\nvar FilterHandle = exports.FilterHandle = function () {\n  function FilterHandle(group, extraInfo) {\n    _classCallCheck(this, FilterHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The filterSet that we're tracking, if any. Can change over time.\n    this._filterSet = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._filterVar = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this._id = \"filter\" + nextId();\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this FilterHandle. If `set()` was\n   * previously called on this handle, switching groups will clear those keys\n   * from the old group's filter set. These keys will not be applied to the new\n   * group's filter set either. In other words, `setGroup()` effectively calls\n   * `clear()` before switching groups.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(FilterHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._filterVar) {\n        this._filterVar.off(\"change\", this._varOnChangeSub);\n        this.clear();\n        this._varOnChangeSub = null;\n        this._filterVar = null;\n        this._filterSet = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        group = (0, _group2.default)(group);\n        this._filterSet = getFilterSet(group);\n        this._filterVar = (0, _group2.default)(group).var(\"filter\");\n        var sub = this._filterVar.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Combine the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n    value: function _mergeExtraInfo(extraInfo) {\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Close the handle. This clears this handle's contribution to the filter set,\n     * and unsubscribes all event listeners.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.clear();\n      this.setGroup(null);\n    }\n\n    /**\n     * Clear this handle's contribution to the filter set.\n     *\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     * \n     * @fires FilterHandle#change\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.clear(this._id);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * Set this handle's contribution to the filter set. This array should consist\n     * of the keys of the rows that _should_ be displayed; any keys that are not\n     * present in the array will be considered _filtered out_. Note that multiple\n     * `FilterHandle` instances in the group may each contribute an array of keys,\n     * and only those keys that appear in _all_ of the arrays make it through the\n     * filter.\n     *\n     * @param {string[]} keys - Empty array, or array of keys. To clear the\n     *   filter, don't pass an empty array; instead, use the\n     *   {@link FilterHandle#clear} method.\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     * \n     * @fires FilterHandle#change\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(keys, extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.update(this._id, keys);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * @return {string[]|null} - Either: 1) an array of keys that made it through\n     *   all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n     *   is being applied (all data should be displayed).\n     */\n\n  }, {\n    key: \"on\",\n\n\n    /**\n     * Subscribe to events on this `FilterHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {FilterHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n     *   this subscription.\n     */\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancel event subscriptions created by {@link FilterHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|FilterHandle~listener} listener - Either the callback\n     *   function previously passed into {@link FilterHandle#on}, or the\n     *   string that was returned from {@link FilterHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n  }, {\n    key: \"_onChange\",\n    value: function _onChange(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * @callback FilterHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the filter set, or `null` if no filter set is active),\n     *   `oldValue` (the previous value of the filter set), and `sender` (the\n     *   `FilterHandle` instance that made the change).\n     */\n\n  }, {\n    key: \"filteredKeys\",\n    get: function get() {\n      return this._filterSet ? this._filterSet.value : null;\n    }\n  }]);\n\n  return FilterHandle;\n}();\n\n/**\n * @event FilterHandle#change\n * @type {object}\n * @property {object} value - The new value of the filter set, or `null`\n *   if no filter set is active.\n * @property {object} oldValue - The previous value of the filter set.\n * @property {FilterHandle} sender - The `FilterHandle` instance that\n *   changed the value.\n */\n\n},{\"./events\":1,\"./filterset\":3,\"./group\":4,\"./util\":11}],3:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _util = require(\"./util\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction naturalComparator(a, b) {\n  if (a === b) {\n    return 0;\n  } else if (a < b) {\n    return -1;\n  } else if (a > b) {\n    return 1;\n  }\n}\n\n/**\n * @private\n */\n\nvar FilterSet = function () {\n  function FilterSet() {\n    _classCallCheck(this, FilterSet);\n\n    this.reset();\n  }\n\n  _createClass(FilterSet, [{\n    key: \"reset\",\n    value: function reset() {\n      // Key: handle ID, Value: array of selected keys, or null\n      this._handles = {};\n      // Key: key string, Value: count of handles that include it\n      this._keys = {};\n      this._value = null;\n      this._activeHandles = 0;\n    }\n  }, {\n    key: \"update\",\n    value: function update(handleId, keys) {\n      if (keys !== null) {\n        keys = keys.slice(0); // clone before sorting\n        keys.sort(naturalComparator);\n      }\n\n      var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys),\n          added = _diffSortedLists.added,\n          removed = _diffSortedLists.removed;\n\n      this._handles[handleId] = keys;\n\n      for (var i = 0; i < added.length; i++) {\n        this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n      }\n      for (var _i = 0; _i < removed.length; _i++) {\n        this._keys[removed[_i]]--;\n      }\n\n      this._updateValue(keys);\n    }\n\n    /**\n     * @param {string[]} keys Sorted array of strings that indicate\n     * a superset of possible keys.\n     * @private\n     */\n\n  }, {\n    key: \"_updateValue\",\n    value: function _updateValue() {\n      var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys;\n\n      var handleCount = Object.keys(this._handles).length;\n      if (handleCount === 0) {\n        this._value = null;\n      } else {\n        this._value = [];\n        for (var i = 0; i < keys.length; i++) {\n          var count = this._keys[keys[i]];\n          if (count === handleCount) {\n            this._value.push(keys[i]);\n          }\n        }\n      }\n    }\n  }, {\n    key: \"clear\",\n    value: function clear(handleId) {\n      if (typeof this._handles[handleId] === \"undefined\") {\n        return;\n      }\n\n      var keys = this._handles[handleId];\n      if (!keys) {\n        keys = [];\n      }\n\n      for (var i = 0; i < keys.length; i++) {\n        this._keys[keys[i]]--;\n      }\n      delete this._handles[handleId];\n\n      this._updateValue();\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"_allKeys\",\n    get: function get() {\n      var allKeys = Object.keys(this._keys);\n      allKeys.sort(naturalComparator);\n      return allKeys;\n    }\n  }]);\n\n  return FilterSet;\n}();\n\nexports.default = FilterSet;\n\n},{\"./util\":11}],4:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.default = group;\n\nvar _var2 = require(\"./var\");\n\nvar _var3 = _interopRequireDefault(_var2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nvar groups = global.__crosstalk_groups;\n\nfunction group(groupName) {\n  if (groupName && typeof groupName === \"string\") {\n    if (!groups.hasOwnProperty(groupName)) {\n      groups[groupName] = new Group(groupName);\n    }\n    return groups[groupName];\n  } else if ((typeof groupName === \"undefined\" ? \"undefined\" : _typeof(groupName)) === \"object\" && groupName._vars && groupName.var) {\n    // Appears to already be a group object\n    return groupName;\n  } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === \"string\") {\n    return group(groupName[0]);\n  } else {\n    throw new Error(\"Invalid groupName argument\");\n  }\n}\n\nvar Group = function () {\n  function Group(name) {\n    _classCallCheck(this, Group);\n\n    this.name = name;\n    this._vars = {};\n  }\n\n  _createClass(Group, [{\n    key: \"var\",\n    value: function _var(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name);\n      return this._vars[name];\n    }\n  }, {\n    key: \"has\",\n    value: function has(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      return this._vars.hasOwnProperty(name);\n    }\n  }]);\n\n  return Group;\n}();\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./var\":12}],5:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _selection = require(\"./selection\");\n\nvar _filter = require(\"./filter\");\n\nvar _input = require(\"./input\");\n\nrequire(\"./input_selectize\");\n\nrequire(\"./input_checkboxgroup\");\n\nrequire(\"./input_slider\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar defaultGroup = (0, _group2.default)(\"default\");\n\nfunction var_(name) {\n  return defaultGroup.var(name);\n}\n\nfunction has(name) {\n  return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n  global.Shiny.addCustomMessageHandler(\"update-client-value\", function (message) {\n    if (typeof message.group === \"string\") {\n      (0, _group2.default)(message.group).var(message.name).set(message.value);\n    } else {\n      var_(message.name).set(message.value);\n    }\n  });\n}\n\nvar crosstalk = {\n  group: _group2.default,\n  var: var_,\n  has: has,\n  SelectionHandle: _selection.SelectionHandle,\n  FilterHandle: _filter.FilterHandle,\n  bind: _input.bind\n};\n\n/**\n * @namespace crosstalk\n */\nexports.default = crosstalk;\n\nglobal.crosstalk = crosstalk;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./group\":4,\"./input\":6,\"./input_checkboxgroup\":7,\"./input_selectize\":8,\"./input_slider\":9,\"./selection\":10}],6:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.register = register;\nexports.bind = bind;\nvar $ = global.jQuery;\n\nvar bindings = {};\n\nfunction register(reg) {\n  bindings[reg.className] = reg;\n  if (global.document && global.document.readyState !== \"complete\") {\n    $(function () {\n      bind();\n    });\n  } else if (global.document) {\n    setTimeout(bind, 100);\n  }\n}\n\nfunction bind() {\n  Object.keys(bindings).forEach(function (className) {\n    var binding = bindings[className];\n    $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function (i, el) {\n      bindInstance(binding, el);\n    });\n  });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n  return val.replace(/([!\"#$%&'()*+,./:;<=>?@[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n  var $el = $(el);\n  Object.keys(bindings).forEach(function (className) {\n    if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n      var binding = bindings[className];\n      bindInstance(binding, el);\n    }\n  });\n}\n\nfunction bindInstance(binding, el) {\n  var jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n  var data = JSON.parse(jsonEl[0].innerText);\n\n  var instance = binding.factory(el, data);\n  $(el).data(\"crosstalk-instance\", instance);\n  $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n  var inputBinding = new global.Shiny.InputBinding();\n  var _$ = global.jQuery;\n  _$.extend(inputBinding, {\n    find: function find(scope) {\n      return _$(scope).find(\".crosstalk-input\");\n    },\n    initialize: function initialize(el) {\n      if (!_$(el).hasClass(\"crosstalk-input-bound\")) {\n        bindEl(el);\n      }\n    },\n    getId: function getId(el) {\n      return el.id;\n    },\n    getValue: function getValue(el) {},\n    setValue: function setValue(el, value) {},\n    receiveMessage: function receiveMessage(el, data) {},\n    subscribe: function subscribe(el, callback) {\n      _$(el).data(\"crosstalk-instance\").resume();\n    },\n    unsubscribe: function unsubscribe(el) {\n      _$(el).data(\"crosstalk-instance\").suspend();\n    }\n  });\n  global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{}],7:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-checkboxgroup\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    var $el = $(el);\n    $el.on(\"change\", \"input[type='checkbox']\", function () {\n      var checked = $el.find(\"input[type='checkbox']:checked\");\n      if (checked.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        var keys = {};\n        checked.each(function () {\n          data.map[this.value].forEach(function (key) {\n            keys[key] = true;\n          });\n        });\n        var keyArray = Object.keys(keys);\n        keyArray.sort();\n        lastKnownKeys = keyArray;\n        ctHandle.set(keyArray);\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],8:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-select\",\n\n  factory: function factory(el, data) {\n    /*\n     * items: {value: [...], label: [...]}\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n\n    var first = [{ value: \"\", label: \"(All)\" }];\n    var items = util.dataframeToD3(data.items);\n    var opts = {\n      options: first.concat(items),\n      valueField: \"value\",\n      labelField: \"label\",\n      searchField: \"label\"\n    };\n\n    var select = $(el).find(\"select\")[0];\n\n    var selectize = $(select).selectize(opts)[0].selectize;\n\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    selectize.on(\"change\", function () {\n      if (selectize.items.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        var keys = {};\n        selectize.items.forEach(function (group) {\n          data.map[group].forEach(function (key) {\n            keys[key] = true;\n          });\n        });\n        var keyArray = Object.keys(keys);\n        keyArray.sort();\n        lastKnownKeys = keyArray;\n        ctHandle.set(keyArray);\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6,\"./util\":11}],9:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\nvar strftime = global.strftime;\n\ninput.register({\n  className: \"crosstalk-input-slider\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var opts = {};\n    var $el = $(el).find(\"input\");\n    var dataType = $el.data(\"data-type\");\n    var timeFormat = $el.data(\"time-format\");\n    var round = $el.data(\"round\");\n    var timeFormatter = void 0;\n\n    // Set up formatting functions\n    if (dataType === \"date\") {\n      timeFormatter = strftime.utc();\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"datetime\") {\n      var timezone = $el.data(\"timezone\");\n      if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime;\n\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"number\") {\n      if (typeof round !== \"undefined\") opts.prettify = function (num) {\n        var factor = Math.pow(10, round);\n        return Math.round(num * factor) / factor;\n      };\n    }\n\n    $el.ionRangeSlider(opts);\n\n    function getValue() {\n      var result = $el.data(\"ionRangeSlider\").result;\n\n      // Function for converting numeric value from slider to appropriate type.\n      var convert = void 0;\n      var dataType = $el.data(\"data-type\");\n      if (dataType === \"date\") {\n        convert = function convert(val) {\n          return formatDateUTC(new Date(+val));\n        };\n      } else if (dataType === \"datetime\") {\n        convert = function convert(val) {\n          // Convert ms to s\n          return +val / 1000;\n        };\n      } else {\n        convert = function convert(val) {\n          return +val;\n        };\n      }\n\n      if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n        return [convert(result.from), convert(result.to)];\n      } else {\n        return convert(result.from);\n      }\n    }\n\n    var lastKnownKeys = null;\n\n    $el.on(\"change.crosstalkSliderInput\", function (event) {\n      if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n        var _getValue = getValue(),\n            _getValue2 = _slicedToArray(_getValue, 2),\n            from = _getValue2[0],\n            to = _getValue2[1];\n\n        var keys = [];\n        for (var i = 0; i < data.values.length; i++) {\n          var val = data.values[i];\n          if (val >= from && val <= to) {\n            keys.push(data.keys[i]);\n          }\n        }\n        keys.sort();\n        ctHandle.set(keys);\n        lastKnownKeys = keys;\n      }\n    });\n\n    // let $el = $(el);\n    // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n    //   let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n    //   if (checked.length === 0) {\n    //     ctHandle.clear();\n    //   } else {\n    //     let keys = {};\n    //     checked.each(function() {\n    //       data.map[this.value].forEach(function(key) {\n    //         keys[key] = true;\n    //       });\n    //     });\n    //     let keyArray = Object.keys(keys);\n    //     keyArray.sort();\n    //     ctHandle.set(keyArray);\n    //   }\n    // });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n  var str = n.toString();\n  while (str.length < digits) {\n    str = \"0\" + str;\n  }return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n  if (date instanceof Date) {\n    return date.getUTCFullYear() + \"-\" + padZeros(date.getUTCMonth() + 1, 2) + \"-\" + padZeros(date.getUTCDate(), 2);\n  } else {\n    return null;\n  }\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],10:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.SelectionHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n/**\n * Use this class to read and write (and listen for changes to) the selection\n * for a Crosstalk group. This is intended to be used for linked brushing.\n *\n * If two (or more) `SelectionHandle` instances in the same webpage share the\n * same group name, they will share the same state. Setting the selection using\n * one `SelectionHandle` instance will result in the `value` property instantly\n * changing across the others, and `\"change\"` event listeners on all instances\n * (including the one that initiated the sending) will fire.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n *   null or undefined (or any other falsy value). This can be changed later\n *   via the [SelectionHandle#setGroup](#setGroup) method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n *   the event object whenever an event is emitted.\n */\nvar SelectionHandle = exports.SelectionHandle = function () {\n  function SelectionHandle() {\n    var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n    var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n\n    _classCallCheck(this, SelectionHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._var = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this SelectionHandle. The group\n   * being switched away from (if any) will not have its selection value\n   * modified as a result of calling `setGroup`, even if this handle was the\n   * most recent handle to set the selection of the group.\n   *\n   * The group being switched to (if any) will also not have its selection value\n   * modified as a result of calling `setGroup`. If you want to set the\n   * selection value of the new group, call `set` explicitly.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(SelectionHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._var) {\n        this._var.off(\"change\", this._varOnChangeSub);\n        this._var = null;\n        this._varOnChangeSub = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        this._var = (0, _group2.default)(group).var(\"selection\");\n        var sub = this._var.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Retrieves the current selection for the group represented by this\n     * `SelectionHandle`.\n     *\n     * - If no selection is active, then this value will be falsy.\n     * - If a selection is active, but no data points are selected, then this\n     *   value will be an empty array.\n     * - If a selection is active, and data points are selected, then the keys\n     *   of the selected data points will be present in the array.\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n\n\n    /**\n     * Combines the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n    value: function _mergeExtraInfo(extraInfo) {\n      // Important incidental effect: shallow clone is returned\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n     *   {@link SelectionHandle#value}).\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(selectedKeys, extraInfo) {\n      if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any that were passed\n     *   into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Subscribes to events on this `SelectionHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {SelectionHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n     *   this subscription.\n     */\n\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancels event subscriptions created by {@link SelectionHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|SelectionHandle~listener} listener - Either the callback\n     *   function previously passed into {@link SelectionHandle#on}, or the\n     *   string that was returned from {@link SelectionHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n\n    /**\n     * Shuts down the `SelectionHandle` object.\n     *\n     * Removes all event listeners that were added through this handle.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.setGroup(null);\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._var ? this._var.get() : null;\n    }\n  }]);\n\n  return SelectionHandle;\n}();\n\n/**\n * @callback SelectionHandle~listener\n * @param {Object} event - An object containing details of the event. For\n *   `\"change\"` events, this includes the properties `value` (the new\n *   value of the selection, or `undefined` if no selection is active),\n *   `oldValue` (the previous value of the selection), and `sender` (the\n *   `SelectionHandle` instance that made the change).\n */\n\n/**\n * @event SelectionHandle#change\n * @type {object}\n * @property {object} value - The new value of the selection, or `undefined`\n *   if no selection is active.\n * @property {object} oldValue - The previous value of the selection.\n * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n *   changed the value.\n */\n\n},{\"./events\":1,\"./group\":4,\"./util\":11}],11:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.extend = extend;\nexports.checkSorted = checkSorted;\nexports.diffSortedLists = diffSortedLists;\nexports.dataframeToD3 = dataframeToD3;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction extend(target) {\n  for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n    sources[_key - 1] = arguments[_key];\n  }\n\n  for (var i = 0; i < sources.length; i++) {\n    var src = sources[i];\n    if (typeof src === \"undefined\" || src === null) continue;\n\n    for (var key in src) {\n      if (src.hasOwnProperty(key)) {\n        target[key] = src[key];\n      }\n    }\n  }\n  return target;\n}\n\nfunction checkSorted(list) {\n  for (var i = 1; i < list.length; i++) {\n    if (list[i] <= list[i - 1]) {\n      throw new Error(\"List is not sorted or contains duplicate\");\n    }\n  }\n}\n\nfunction diffSortedLists(a, b) {\n  var i_a = 0;\n  var i_b = 0;\n\n  if (!a) a = [];\n  if (!b) b = [];\n\n  var a_only = [];\n  var b_only = [];\n\n  checkSorted(a);\n  checkSorted(b);\n\n  while (i_a < a.length && i_b < b.length) {\n    if (a[i_a] === b[i_b]) {\n      i_a++;\n      i_b++;\n    } else if (a[i_a] < b[i_b]) {\n      a_only.push(a[i_a++]);\n    } else {\n      b_only.push(b[i_b++]);\n    }\n  }\n\n  if (i_a < a.length) a_only = a_only.concat(a.slice(i_a));\n  if (i_b < b.length) b_only = b_only.concat(b.slice(i_b));\n  return {\n    removed: a_only,\n    added: b_only\n  };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nfunction dataframeToD3(df) {\n  var names = [];\n  var length = void 0;\n  for (var name in df) {\n    if (df.hasOwnProperty(name)) names.push(name);\n    if (_typeof(df[name]) !== \"object\" || typeof df[name].length === \"undefined\") {\n      throw new Error(\"All fields must be arrays\");\n    } else if (typeof length !== \"undefined\" && length !== df[name].length) {\n      throw new Error(\"All fields must be arrays of the same length\");\n    }\n    length = df[name].length;\n  }\n  var results = [];\n  var item = void 0;\n  for (var row = 0; row < length; row++) {\n    item = {};\n    for (var col = 0; col < names.length; col++) {\n      item[names[col]] = df[names[col]][row];\n    }\n    results.push(item);\n  }\n  return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\n\nvar SubscriptionTracker = exports.SubscriptionTracker = function () {\n  function SubscriptionTracker(emitter) {\n    _classCallCheck(this, SubscriptionTracker);\n\n    this._emitter = emitter;\n    this._subs = {};\n  }\n\n  _createClass(SubscriptionTracker, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var sub = this._emitter.on(eventType, listener);\n      this._subs[sub] = eventType;\n      return sub;\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var sub = this._emitter.off(eventType, listener);\n      if (sub) {\n        delete this._subs[sub];\n      }\n      return sub;\n    }\n  }, {\n    key: \"removeAllListeners\",\n    value: function removeAllListeners() {\n      var _this = this;\n\n      var current_subs = this._subs;\n      this._subs = {};\n      Object.keys(current_subs).forEach(function (sub) {\n        _this._emitter.off(current_subs[sub], sub);\n      });\n    }\n  }]);\n\n  return SubscriptionTracker;\n}();\n\n},{}],12:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Var = function () {\n  function Var(group, name, /*optional*/value) {\n    _classCallCheck(this, Var);\n\n    this._group = group;\n    this._name = name;\n    this._value = value;\n    this._events = new _events2.default();\n  }\n\n  _createClass(Var, [{\n    key: \"get\",\n    value: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"set\",\n    value: function set(value, /*optional*/event) {\n      if (this._value === value) {\n        // Do nothing; the value hasn't changed\n        return;\n      }\n      var oldValue = this._value;\n      this._value = value;\n      // Alert JavaScript listeners that the value has changed\n      var evt = {};\n      if (event && (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\") {\n        for (var k in event) {\n          if (event.hasOwnProperty(k)) evt[k] = event[k];\n        }\n      }\n      evt.oldValue = oldValue;\n      evt.value = value;\n      this._events.trigger(\"change\", evt, this);\n\n      // TODO: Make this extensible, to let arbitrary back-ends know that\n      // something has changed\n      if (global.Shiny && global.Shiny.onInputChange) {\n        global.Shiny.onInputChange(\".clientValue-\" + (this._group.name !== null ? this._group.name + \"-\" : \"\") + this._name, typeof value === \"undefined\" ? null : value);\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._events.on(eventType, listener);\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._events.off(eventType, listener);\n    }\n  }]);\n\n  return Var;\n}();\n\nexports.default = Var;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./events\":1}]},{},[5])\n//# sourceMappingURL=crosstalk.js.map\n"
  },
  {
    "path": "docs/images/04_variance/lib/crosstalk-1.2.0/scss/crosstalk.scss",
    "content": "/* Adjust margins outwards, so column contents line up with the edges of the\n   parent of container-fluid. */\n.container-fluid.crosstalk-bscols {\n  margin-left: -30px;\n  margin-right: -30px;\n  white-space: normal;\n}\n\n/* But don't adjust the margins outwards if we're directly under the body,\n   i.e. we were the top-level of something at the console. */\nbody > .container-fluid.crosstalk-bscols {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n  display: inline-block;\n  padding-right: 12px;\n  vertical-align: top;\n}\n\n@media only screen and (max-width:480px) {\n  .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n    display: block;\n    padding-right: inherit;\n  }\n}\n\n/* Relevant BS3 styles to make filter_checkbox() look reasonable without Bootstrap */\n.crosstalk-input {\n  margin-bottom: 15px; /* a la .form-group */\n  .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  input[type=\"checkbox\"] {\n    margin: 4px 0 0;\n    margin-top: 1px;\n    line-height: normal;\n  }\n  .checkbox {\n    position: relative;\n    display: block;\n    margin-top: 10px;\n    margin-bottom: 10px;\n  }\n  .checkbox > label{\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: 400;\n    cursor: pointer;\n  }\n  .checkbox input[type=\"checkbox\"],\n  .checkbox-inline input[type=\"checkbox\"] {\n    position: absolute;\n    margin-top: 2px;\n    margin-left: -20px;\n  }\n  .checkbox + .checkbox {\n    margin-top: -5px;\n  }\n  .checkbox-inline {\n    position: relative;\n    display: inline-block;\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: 400;\n    vertical-align: middle;\n    cursor: pointer;\n  }\n  .checkbox-inline + .checkbox-inline {\n    margin-top: 0;\n    margin-left: 10px;\n  }\n}\n"
  },
  {
    "path": "docs/images/04_variance/lib/htmlwidgets-1.3/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = eval(\"(\" + task + \")\");\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n  // Wait until after the document has loaded to render the widgets.\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      window.HTMLWidgets.staticRender();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        window.HTMLWidgets.staticRender();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = eval(\"(\" + o[part] + \")\");\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "docs/images/04_variance/lib/htmlwidgets-1.5.1/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = tryEval(task);\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  // Attempt eval() both with and without enclosing in parentheses.\n  // Note that enclosing coerces a function declaration into\n  // an expression that eval() can parse\n  // (otherwise, a SyntaxError is thrown)\n  function tryEval(code) {\n    var result = null;\n    try {\n      result = eval(code);\n    } catch(error) {\n      if (!error instanceof SyntaxError) {\n        throw error;\n      }\n      try {\n        result = eval(\"(\" + code + \")\");\n      } catch(e) {\n        if (e instanceof SyntaxError) {\n          throw error;\n        } else {\n          throw e;\n        }\n      }\n    }\n    return result;\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n\n  function has_jQuery3() {\n    if (!window.jQuery) {\n      return false;\n    }\n    var $version = window.jQuery.fn.jquery;\n    var $major_version = parseInt($version.split(\".\")[0]);\n    return $major_version >= 3;\n  }\n\n  /*\n  / Shiny 1.4 bumped jQuery from 1.x to 3.x which means jQuery's\n  / on-ready handler (i.e., $(fn)) is now asyncronous (i.e., it now\n  / really means $(setTimeout(fn)).\n  / https://jquery.com/upgrade-guide/3.0/#breaking-change-document-ready-handlers-are-now-asynchronous\n  /\n  / Since Shiny uses $() to schedule initShiny, shiny>=1.4 calls initShiny\n  / one tick later than it did before, which means staticRender() is\n  / called renderValue() earlier than (advanced) widget authors might be expecting.\n  / https://github.com/rstudio/shiny/issues/2630\n  /\n  / For a concrete example, leaflet has some methods (e.g., updateBounds)\n  / which reference Shiny methods registered in initShiny (e.g., setInputValue).\n  / Since leaflet is privy to this life-cycle, it knows to use setTimeout() to\n  / delay execution of those methods (until Shiny methods are ready)\n  / https://github.com/rstudio/leaflet/blob/18ec981/javascript/src/index.js#L266-L268\n  /\n  / Ideally widget authors wouldn't need to use this setTimeout() hack that\n  / leaflet uses to call Shiny methods on a staticRender(). In the long run,\n  / the logic initShiny should be broken up so that method registration happens\n  / right away, but binding happens later.\n  */\n  function maybeStaticRenderLater() {\n    if (shinyMode && has_jQuery3()) {\n      window.jQuery(window.HTMLWidgets.staticRender);\n    } else {\n      window.HTMLWidgets.staticRender();\n    }\n  }\n\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      maybeStaticRenderLater();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        maybeStaticRenderLater();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = tryEval(o[part]);\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "docs/images/04_variance/lib/htmlwidgets-1.5.4/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = tryEval(task);\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  // Attempt eval() both with and without enclosing in parentheses.\n  // Note that enclosing coerces a function declaration into\n  // an expression that eval() can parse\n  // (otherwise, a SyntaxError is thrown)\n  function tryEval(code) {\n    var result = null;\n    try {\n      result = eval(\"(\" + code + \")\");\n    } catch(error) {\n      if (!(error instanceof SyntaxError)) {\n        throw error;\n      }\n      try {\n        result = eval(code);\n      } catch(e) {\n        if (e instanceof SyntaxError) {\n          throw error;\n        } else {\n          throw e;\n        }\n      }\n    }\n    return result;\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n\n  function has_jQuery3() {\n    if (!window.jQuery) {\n      return false;\n    }\n    var $version = window.jQuery.fn.jquery;\n    var $major_version = parseInt($version.split(\".\")[0]);\n    return $major_version >= 3;\n  }\n\n  /*\n  / Shiny 1.4 bumped jQuery from 1.x to 3.x which means jQuery's\n  / on-ready handler (i.e., $(fn)) is now asyncronous (i.e., it now\n  / really means $(setTimeout(fn)).\n  / https://jquery.com/upgrade-guide/3.0/#breaking-change-document-ready-handlers-are-now-asynchronous\n  /\n  / Since Shiny uses $() to schedule initShiny, shiny>=1.4 calls initShiny\n  / one tick later than it did before, which means staticRender() is\n  / called renderValue() earlier than (advanced) widget authors might be expecting.\n  / https://github.com/rstudio/shiny/issues/2630\n  /\n  / For a concrete example, leaflet has some methods (e.g., updateBounds)\n  / which reference Shiny methods registered in initShiny (e.g., setInputValue).\n  / Since leaflet is privy to this life-cycle, it knows to use setTimeout() to\n  / delay execution of those methods (until Shiny methods are ready)\n  / https://github.com/rstudio/leaflet/blob/18ec981/javascript/src/index.js#L266-L268\n  /\n  / Ideally widget authors wouldn't need to use this setTimeout() hack that\n  / leaflet uses to call Shiny methods on a staticRender(). In the long run,\n  / the logic initShiny should be broken up so that method registration happens\n  / right away, but binding happens later.\n  */\n  function maybeStaticRenderLater() {\n    if (shinyMode && has_jQuery3()) {\n      window.jQuery(window.HTMLWidgets.staticRender);\n    } else {\n      window.HTMLWidgets.staticRender();\n    }\n  }\n\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      maybeStaticRenderLater();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        maybeStaticRenderLater();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = tryEval(o[part]);\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "docs/images/04_variance/lib/jquery-1.11.3/jquery-AUTHORS.txt",
    "content": "Authors ordered by first contribution.\n\nJohn Resig <jeresig@gmail.com>\nGilles van den Hoven <gilles0181@gmail.com>\nMichael Geary <mike@geary.com>\nStefan Petre <stefan.petre@gmail.com>\nYehuda Katz <wycats@gmail.com>\nCorey Jewett <cj@syntheticplayground.com>\nKlaus Hartl <klaus.hartl@googlemail.com>\nFranck Marcia <franck.marcia@gmail.com>\nJörn Zaefferer <joern.zaefferer@gmail.com>\nPaul Bakaus <paul.bakaus@googlemail.com>\nBrandon Aaron <brandon.aaron@gmail.com>\nMike Alsup <malsup@gmail.com>\nDave Methvin <dave.methvin@gmail.com>\nEd Engelhardt <edengelhardt@gmail.com>\nSean Catchpole <littlecooldude@gmail.com>\nPaul Mclanahan <pmclanahan@gmail.com>\nDavid Serduke <davidserduke@gmail.com>\nRichard D. Worth <rdworth@gmail.com>\nScott González <scott.gonzalez@gmail.com>\nAriel Flesler <aflesler@gmail.com>\nJon Evans <jon@springyweb.com>\nTJ Holowaychuk <tj@vision-media.ca>\nMichael Bensoussan <mickey@seesmic.com>\nRobert Katić <robert.katic@gmail.com>\nLouis-Rémi Babé <lrbabe@gmail.com>\nEarle Castledine <mrspeaker@gmail.com>\nDamian Janowski <damian.janowski@gmail.com>\nRich Dougherty <rich@rd.gen.nz>\nKim Dalsgaard <kim@kimdalsgaard.com>\nAndrea Giammarchi <andrea.giammarchi@gmail.com>\nMark Gibson <jollytoad@gmail.com>\nKarl Swedberg <kswedberg@gmail.com>\nJustin Meyer <justinbmeyer@gmail.com>\nBen Alman <cowboy@rj3.net>\nJames Padolsey <cla@padolsey.net>\nDavid Petersen <public@petersendidit.com>\nBatiste Bieler <batiste@gmail.com>\nAlexander Farkas <info@corrupt-system.de>\nRick Waldron <waldron.rick@gmail.com>\nFilipe Fortes <filipe@fortes.com>\nNeeraj Singh <neerajdotname@gmail.com>\nPaul Irish <paul.irish@gmail.com>\nIraê Carvalho <irae@irae.pro.br>\nMatt Curry <matt@pseudocoder.com>\nMichael Monteleone <michael@michaelmonteleone.net>\nNoah Sloan <noah.sloan@gmail.com>\nTom Viner <github@viner.tv>\nDouglas Neiner <doug@pixelgraphics.us>\nAdam J. Sontag <ajpiano@ajpiano.com>\nDave Reed <dareed@microsoft.com>\nRalph Whitbeck <ralph.whitbeck@gmail.com>\nCarl Fürstenberg <azatoth@gmail.com>\nJacob Wright <jacwright@gmail.com>\nJ. Ryan Stinnett <jryans@gmail.com>\nunknown <Igen005@.upcorp.ad.uprr.com>\ntemp01 <temp01irc@gmail.com>\nHeungsub Lee <h@subl.ee>\nColin Snover <colin@alpha.zetafleet.com>\nRyan W Tenney <ryan@10e.us>\nPinhook <contact@pinhooklabs.com>\nRon Otten <r.j.g.otten@gmail.com>\nJephte Clain <Jephte.Clain@univ-reunion.fr>\nAnton Matzneller <obhvsbypqghgc@gmail.com>\nAlex Sexton <AlexSexton@gmail.com>\nDan Heberden <danheberden@gmail.com>\nHenri Wiechers <hwiechers@gmail.com>\nRussell Holbrook <russell.holbrook@patch.com>\nJulian Aubourg <aubourg.julian@gmail.com>\nGianni Alessandro Chiappetta <gianni@runlevel6.org>\nScott Jehl <scott@scottjehl.com>\nJames Burke <jrburke@gmail.com>\nJonas Pfenniger <jonas@pfenniger.name>\nXavi Ramirez <xavi.rmz@gmail.com>\nJared Grippe <jared@deadlyicon.com>\nSylvester Keil <sylvester@keil.or.at>\nBrandon Sterne <bsterne@mozilla.com>\nMathias Bynens <mathias@qiwi.be>\nTimmy Willison <timmywillisn@gmail.com>\nCorey Frang <gnarf@gnarf.net>\nDigitalxero <digitalxero>\nAnton Kovalyov <anton@kovalyov.net>\nDavid Murdoch <musicisair@yahoo.com>\nJosh Varner <josh.varner@gmail.com>\nCharles McNulty <cmcnulty@kznf.com>\nJordan Boesch <jboesch26@gmail.com>\nJess Thrysoee <jess@thrysoee.dk>\nMichael Murray <m@murz.net>\nLee Carpenter <elcarpie@gmail.com>\nAlexis Abril <me@alexisabril.com>\nRob Morgan <robbym@gmail.com>\nJohn Firebaugh <john_firebaugh@bigfix.com>\nSam Bisbee <sam@sbisbee.com>\nGilmore Davidson <gilmoreorless@gmail.com>\nBrian Brennan <me@brianlovesthings.com>\nXavier Montillet <xavierm02.net@gmail.com>\nDaniel Pihlstrom <sciolist.se@gmail.com>\nSahab Yazdani <sahab.yazdani+github@gmail.com>\navaly <github-com@agachi.name>\nScott Hughes <hi@scott-hughes.me>\nMike Sherov <mike.sherov@gmail.com>\nGreg Hazel <ghazel@gmail.com>\nSchalk Neethling <schalk@ossreleasefeed.com>\nDenis Knauf <Denis.Knauf@gmail.com>\nTimo Tijhof <krinklemail@gmail.com>\nSteen Nielsen <swinedk@gmail.com>\nAnton Ryzhov <anton@ryzhov.me>\nShi Chuan <shichuanr@gmail.com>\nBerker Peksag <berker.peksag@gmail.com>\nToby Brain <tobyb@freshview.com>\nMatt Mueller <mattmuelle@gmail.com>\nJustin <drakefjustin@gmail.com>\nDaniel Herman <daniel.c.herman@gmail.com>\nOleg Gaidarenko <markelog@gmail.com>\nRichard Gibson <richard.gibson@gmail.com>\nRafaël Blais Masson <rafbmasson@gmail.com>\ncmc3cn <59194618@qq.com>\nJoe Presbrey <presbrey@gmail.com>\nSindre Sorhus <sindresorhus@gmail.com>\nArne de Bree <arne@bukkie.nl>\nVladislav Zarakovsky <vlad.zar@gmail.com>\nAndrew E Monat <amonat@gmail.com>\nOskari <admin@o-programs.com>\nJoao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>\ntsinha <tsinha@Anthonys-MacBook-Pro.local>\nMatt Farmer <matt@frmr.me>\nTrey Hunner <treyhunner@gmail.com>\nJason Moon <jmoon@socialcast.com>\nJeffery To <jeffery.to@gmail.com>\nKris Borchers <kris.borchers@gmail.com>\nVladimir Zhuravlev <private.face@gmail.com>\nJacob Thornton <jacobthornton@gmail.com>\nChad Killingsworth <chadkillingsworth@missouristate.edu>\nNowres Rafid <nowres.rafed@gmail.com>\nDavid Benjamin <davidben@mit.edu>\nUri Gilad <antishok@gmail.com>\nChris Faulkner <thefaulkner@gmail.com>\nElijah Manor <elijah.manor@gmail.com>\nDaniel Chatfield <chatfielddaniel@gmail.com>\nNikita Govorov <nikita.govorov@gmail.com>\nWesley Walser <wwalser@atlassian.com>\nMike Pennisi <mike@mikepennisi.com>\nMarkus Staab <markus.staab@redaxo.de>\nDave Riddle <david@joyvuu.com>\nCallum Macrae <callum@lynxphp.com>\nBenjamin Truyman <bentruyman@gmail.com>\nJames Huston <james@jameshuston.net>\nErick Ruiz de Chávez <erickrdch@gmail.com>\nDavid Bonner <dbonner@cogolabs.com>\nAkintayo Akinwunmi <aakinwunmi@judge.com>\nMORGAN <morgan@morgangraphics.com>\nIsmail Khair <ismail.khair@gmail.com>\nCarl Danley <carldanley@gmail.com>\nMike Petrovich <michael.c.petrovich@gmail.com>\nGreg Lavallee <greglavallee@wapolabs.com>\nDaniel Gálvez <dgalvez@editablething.com>\nSai Lung Wong <sai.wong@huffingtonpost.com>\nTom H Fuertes <TomFuertes@gmail.com>\nRoland Eckl <eckl.roland@googlemail.com>\nJay Merrifield <fracmak@gmail.com>\nAllen J Schmidt Jr <cobrasoft@gmail.com>\nJonathan Sampson <jjdsampson@gmail.com>\nMarcel Greter <marcel.greter@ocbnet.ch>\nMatthias Jäggli <matthias.jaeggli@gmail.com>\nDavid Fox <dfoxinator@gmail.com>\nYiming He <yiminghe@gmail.com>\nDevin Cooper <cooper.semantics@gmail.com>\nPaul Ramos <paul.b.ramos@gmail.com>\nRod Vagg <rod@vagg.org>\nBennett Sorbo <bsorbo@gmail.com>\nSebastian Burkhard <sebi.burkhard@gmail.com>\nnanto <nanto@moon.email.ne.jp>\nDanil Somsikov <danilasomsikov@gmail.com>\nRyunosuke SATO <tricknotes.rs@gmail.com>\nJean Boussier <jean.boussier@gmail.com>\nAdam Coulombe <me@adam.co>\nAndrew Plummer <plummer.andrew@gmail.com>\nMark Raddatz <mraddatz@gmail.com>\nDmitry Gusev <dmitry.gusev@gmail.com>\nMichał Gołębiowski <m.goleb@gmail.com>\nNguyen Phuc Lam <ruado1987@gmail.com>\nTom H Fuertes <tomfuertes@gmail.com>\nBrandon Johnson <bjohn465+github@gmail.com>\nJason Bedard <jason+jquery@jbedard.ca>\nKyle Robinson Young <kyle@dontkry.com>\nRenato Oliveira dos Santos <ros3@cin.ufpe.br>\nChris Talkington <chris@talkingtontech.com>\nEddie Monge <eddie@eddiemonge.com>\nTerry Jones <terry@jon.es>\nJason Merino <jasonmerino@gmail.com>\nJeremy Dunck <jdunck@gmail.com>\nChris Price <price.c@gmail.com>\nAmey Sakhadeo <me@ameyms.com>\nAnthony Ryan <anthonyryan1@gmail.com>\nDominik D. Geyer <dominik.geyer@gmail.com>\nGeorge Kats <katsgeorgeek@gmail.com>\nLihan Li <frankieteardrop@gmail.com>\nRonny Springer <springer.ronny@gmail.com>\nMarian Sollmann <marian.sollmann@cargomedia.ch>\nCorey Frang <gnarf37@gmail.com>\nChris Antaki <ChrisAntaki@gmail.com>\nNoah Hamann <njhamann@gmail.com>\nDavid Hong <d.hong@me.com>\nJakob Stoeck <jakob@pokermania.de>\nChristopher Jones <christopherjonesqed@gmail.com>\nForbes Lindesay <forbes@lindesay.co.uk>\nJohn Paul <john@johnkpaul.com>\nS. Andrew Sheppard <andrew@wq.io>\nLeonardo Balter <leonardo.balter@gmail.com>\nRoman Reiß <me@silverwind.io>\nBenjy Cui <benjytrys@gmail.com>\nRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>\nJohn Hoven <hovenj@gmail.com>\nChristian Kosmowski <ksmwsk@gmail.com>\nLiang Peng <poppinlp@gmail.com>\nTJ VanToll <tj.vantoll@gmail.com>\n"
  },
  {
    "path": "docs/images/04_variance/lib/jquery-1.11.3/jquery.js",
    "content": "/*!\n * jQuery JavaScript Library v1.11.3\n * http://jquery.com/\n *\n * Includes Sizzle.js\n * http://sizzlejs.com/\n *\n * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2015-04-28T16:19Z\n */\n\n(function( global, factory ) {\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\t\t// For CommonJS and CommonJS-like environments where a proper window is present,\n\t\t// execute the factory and get jQuery\n\t\t// For environments that do not inherently posses a window with a document\n\t\t// (such as Node.js), expose a jQuery-making factory as module.exports\n\t\t// This accentuates the need for the creation of a real window\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n}(typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Can't do this because several apps including ASP.NET trace\n// the stack via arguments.caller.callee and Firefox dies if\n// you try to trace through \"use strict\" call chains. (#13335)\n// Support: Firefox 18+\n//\n\nvar deletedIds = [];\n\nvar slice = deletedIds.slice;\n\nvar concat = deletedIds.concat;\n\nvar push = deletedIds.push;\n\nvar indexOf = deletedIds.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar support = {};\n\n\n\nvar\n\tversion = \"1.11.3\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t},\n\n\t// Support: Android<4.1, IE<9\n\t// Make sure we trim BOM and NBSP\n\trtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g,\n\n\t// Matches dashed string for camelizing\n\trmsPrefix = /^-ms-/,\n\trdashAlpha = /-([\\da-z])/gi,\n\n\t// Used by jQuery.camelCase as callback to replace()\n\tfcamelCase = function( all, letter ) {\n\t\treturn letter.toUpperCase();\n\t};\n\njQuery.fn = jQuery.prototype = {\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// Start with an empty selector\n\tselector: \"\",\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\t\treturn num != null ?\n\n\t\t\t// Return just the one element from the set\n\t\t\t( num < 0 ? this[ num + this.length ] : this[ num ] ) :\n\n\t\t\t// Return all the elements in a clean array\n\t\t\tslice.call( this );\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\t\tret.context = this.context;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\t// (You can seed the arguments with an array of args, but this is\n\t// only used internally.)\n\teach: function( callback, args ) {\n\t\treturn jQuery.each( this, callback, args );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map(this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t}));\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor(null);\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: deletedIds.sort,\n\tsplice: deletedIds.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar src, copyIsArray, copy, name, options, clone,\n\t\ttarget = arguments[0] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !jQuery.isFunction(target) ) {\n\t\ttarget = {};\n\t}\n\n\t// extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\t\t// Only deal with non-null/undefined values\n\t\tif ( (options = arguments[ i ]) != null ) {\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tsrc = target[ name ];\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {\n\t\t\t\t\tif ( copyIsArray ) {\n\t\t\t\t\t\tcopyIsArray = false;\n\t\t\t\t\t\tclone = src && jQuery.isArray(src) ? src : [];\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src && jQuery.isPlainObject(src) ? src : {};\n\t\t\t\t\t}\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend({\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\t// See test/unit/core.js for details concerning isFunction.\n\t// Since version 1.3, DOM methods and functions like alert\n\t// aren't supported. They return false on IE (#2968).\n\tisFunction: function( obj ) {\n\t\treturn jQuery.type(obj) === \"function\";\n\t},\n\n\tisArray: Array.isArray || function( obj ) {\n\t\treturn jQuery.type(obj) === \"array\";\n\t},\n\n\tisWindow: function( obj ) {\n\t\t/* jshint eqeqeq: false */\n\t\treturn obj != null && obj == obj.window;\n\t},\n\n\tisNumeric: function( obj ) {\n\t\t// parseFloat NaNs numeric-cast false positives (null|true|false|\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t// adding 1 corrects loss of precision from parseFloat (#15100)\n\t\treturn !jQuery.isArray( obj ) && (obj - parseFloat( obj ) + 1) >= 0;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\tisPlainObject: function( obj ) {\n\t\tvar key;\n\n\t\t// Must be an Object.\n\t\t// Because of IE, we also have to check the presence of the constructor property.\n\t\t// Make sure that DOM nodes and window objects don't pass through, as well\n\t\tif ( !obj || jQuery.type(obj) !== \"object\" || obj.nodeType || jQuery.isWindow( obj ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\ttry {\n\t\t\t// Not own constructor property must be Object\n\t\t\tif ( obj.constructor &&\n\t\t\t\t!hasOwn.call(obj, \"constructor\") &&\n\t\t\t\t!hasOwn.call(obj.constructor.prototype, \"isPrototypeOf\") ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\t// IE8,9 Will throw exceptions on certain host objects #9897\n\t\t\treturn false;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Handle iteration over inherited properties before own properties.\n\t\tif ( support.ownLast ) {\n\t\t\tfor ( key in obj ) {\n\t\t\t\treturn hasOwn.call( obj, key );\n\t\t\t}\n\t\t}\n\n\t\t// Own properties are enumerated firstly, so to speed up,\n\t\t// if last one is own, then all properties are own.\n\t\tfor ( key in obj ) {}\n\n\t\treturn key === undefined || hasOwn.call( obj, key );\n\t},\n\n\ttype: function( obj ) {\n\t\tif ( obj == null ) {\n\t\t\treturn obj + \"\";\n\t\t}\n\t\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\t\tclass2type[ toString.call(obj) ] || \"object\" :\n\t\t\ttypeof obj;\n\t},\n\n\t// Evaluates a script in a global context\n\t// Workarounds based on findings by Jim Driscoll\n\t// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context\n\tglobalEval: function( data ) {\n\t\tif ( data && jQuery.trim( data ) ) {\n\t\t\t// We use execScript on Internet Explorer\n\t\t\t// We use an anonymous function so that context is window\n\t\t\t// rather than jQuery in Firefox\n\t\t\t( window.execScript || function( data ) {\n\t\t\t\twindow[ \"eval\" ].call( window, data );\n\t\t\t} )( data );\n\t\t}\n\t},\n\n\t// Convert dashed to camelCase; used by the css and data modules\n\t// Microsoft forgot to hump their vendor prefix (#9572)\n\tcamelCase: function( string ) {\n\t\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n\t},\n\n\tnodeName: function( elem, name ) {\n\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\t},\n\n\t// args is for internal usage only\n\teach: function( obj, callback, args ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = obj.length,\n\t\t\tisArray = isArraylike( obj );\n\n\t\tif ( args ) {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// A special, fast, case for the most common use of each\n\t\t} else {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// Support: Android<4.1, IE<9\n\ttrim: function( text ) {\n\t\treturn text == null ?\n\t\t\t\"\" :\n\t\t\t( text + \"\" ).replace( rtrim, \"\" );\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArraylike( Object(arr) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\tvar len;\n\n\t\tif ( arr ) {\n\t\t\tif ( indexOf ) {\n\t\t\t\treturn indexOf.call( arr, elem, i );\n\t\t\t}\n\n\t\t\tlen = arr.length;\n\t\t\ti = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t// Skip accessing in sparse arrays\n\t\t\t\tif ( i in arr && arr[ i ] === elem ) {\n\t\t\t\t\treturn i;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn -1;\n\t},\n\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\twhile ( j < len ) {\n\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Workaround casting of .length to NaN on otherwise arraylike objects (e.g., NodeLists)\n\t\tif ( len !== len ) {\n\t\t\twhile ( second[j] !== undefined ) {\n\t\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t\t}\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tisArray = isArraylike( elems ),\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArray ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn concat.apply( [], ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// Bind a function to a context, optionally partially applying any\n\t// arguments.\n\tproxy: function( fn, context ) {\n\t\tvar args, proxy, tmp;\n\n\t\tif ( typeof context === \"string\" ) {\n\t\t\ttmp = fn[ context ];\n\t\t\tcontext = fn;\n\t\t\tfn = tmp;\n\t\t}\n\n\t\t// Quick check to determine if target is callable, in the spec\n\t\t// this throws a TypeError, but we will just return undefined.\n\t\tif ( !jQuery.isFunction( fn ) ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\t// Simulated bind\n\t\targs = slice.call( arguments, 2 );\n\t\tproxy = function() {\n\t\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t\t};\n\n\t\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\t\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\t\treturn proxy;\n\t},\n\n\tnow: function() {\n\t\treturn +( new Date() );\n\t},\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n});\n\n// Populate the class2type map\njQuery.each(\"Boolean Number String Function Array Date RegExp Object Error\".split(\" \"), function(i, name) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n});\n\nfunction isArraylike( obj ) {\n\n\t// Support: iOS 8.2 (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = \"length\" in obj && obj.length,\n\t\ttype = jQuery.type( obj );\n\n\tif ( type === \"function\" || jQuery.isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\tif ( obj.nodeType === 1 && length ) {\n\t\treturn true;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.2.0-pre\n * http://sizzlejs.com/\n *\n * Copyright 2008, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2014-12-16\n */\n(function( window ) {\n\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// General-purpose constants\n\tMAX_NEGATIVE = 1 << 31,\n\n\t// Instance methods\n\thasOwn = ({}).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpush_native = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\t// Use a stripped-down indexOf as it's faster than native\n\t// http://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[i] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\t// http://www.w3.org/TR/css3-syntax/#characters\n\tcharacterEncoding = \"(?:\\\\\\\\.|[\\\\w-]|[^\\\\x00-\\\\xa0])+\",\n\n\t// Loosely modeled on CSS identifier characters\n\t// An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors\n\t// Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier\n\tidentifier = characterEncoding.replace( \"w\", \"w#\" ),\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + characterEncoding + \")(?:\" + whitespace +\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\t\t// \"Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" + whitespace +\n\t\t\"*\\\\]\",\n\n\tpseudos = \":(\" + characterEncoding + \")(?:\\\\((\" +\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" + whitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace + \"*\" ),\n\n\trattributeQuotes = new RegExp( \"=\" + whitespace + \"*([^\\\\]'\\\"]*?)\" + whitespace + \"*\\\\]\", \"g\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + characterEncoding + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + characterEncoding + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + characterEncoding.replace( \"w\", \"w*\" ) + \")\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" + whitespace +\n\t\t\t\"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" + whitespace +\n\t\t\t\"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace + \"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" +\n\t\t\twhitespace + \"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\trescape = /'|\\\\/g,\n\n\t// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\([\\\\da-f]{1,6}\" + whitespace + \"?|(\" + whitespace + \")|.)\", \"ig\" ),\n\tfunescape = function( _, escaped, escapedWhitespace ) {\n\t\tvar high = \"0x\" + escaped - 0x10000;\n\t\t// NaN means non-codepoint\n\t\t// Support: Firefox<24\n\t\t// Workaround erroneous numeric interpretation of +\"0x\"\n\t\treturn high !== high || escapedWhitespace ?\n\t\t\tescaped :\n\t\t\thigh < 0 ?\n\t\t\t\t// BMP codepoint\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\t// Supplemental Plane codepoint (surrogate pair)\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t};\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t(arr = slice.call( preferredDoc.childNodes )),\n\t\tpreferredDoc.childNodes\n\t);\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpush_native.apply( target, slice.call(els) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( (target[j++] = els[i++]) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar match, elem, m, nodeType,\n\t\t// QSA vars\n\t\ti, groups, old, nid, newContext, newSelector;\n\n\tif ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\n\tcontext = context || document;\n\tresults = results || [];\n\tnodeType = context.nodeType;\n\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\tif ( !seed && documentIsHTML ) {\n\n\t\t// Try to shortcut find operations when possible (e.g., not under DocumentFragment)\n\t\tif ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {\n\t\t\t// Speed-up: Sizzle(\"#ID\")\n\t\t\tif ( (m = match[1]) ) {\n\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\telem = context.getElementById( m );\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document (jQuery #6963)\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE, Opera, and Webkit return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t// Context is not a document\n\t\t\t\t\tif ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&\n\t\t\t\t\t\tcontains( context, elem ) && elem.id === m ) {\n\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Speed-up: Sizzle(\"TAG\")\n\t\t\t} else if ( match[2] ) {\n\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\treturn results;\n\n\t\t\t// Speed-up: Sizzle(\".CLASS\")\n\t\t\t} else if ( (m = match[3]) && support.getElementsByClassName ) {\n\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\treturn results;\n\t\t\t}\n\t\t}\n\n\t\t// QSA path\n\t\tif ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {\n\t\t\tnid = old = expando;\n\t\t\tnewContext = context;\n\t\t\tnewSelector = nodeType !== 1 && selector;\n\n\t\t\t// qSA works strangely on Element-rooted queries\n\t\t\t// We can work around this by specifying an extra ID on the root\n\t\t\t// and working up from there (Thanks to Andrew Dupont for the technique)\n\t\t\t// IE 8 doesn't work on object elements\n\t\t\tif ( nodeType === 1 && context.nodeName.toLowerCase() !== \"object\" ) {\n\t\t\t\tgroups = tokenize( selector );\n\n\t\t\t\tif ( (old = context.getAttribute(\"id\")) ) {\n\t\t\t\t\tnid = old.replace( rescape, \"\\\\$&\" );\n\t\t\t\t} else {\n\t\t\t\t\tcontext.setAttribute( \"id\", nid );\n\t\t\t\t}\n\t\t\t\tnid = \"[id='\" + nid + \"'] \";\n\n\t\t\t\ti = groups.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tgroups[i] = nid + toSelector( groups[i] );\n\t\t\t\t}\n\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) || context;\n\t\t\t\tnewSelector = groups.join(\",\");\n\t\t\t}\n\n\t\t\tif ( newSelector ) {\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch(qsaError) {\n\t\t\t\t} finally {\n\t\t\t\t\tif ( !old ) {\n\t\t\t\t\t\tcontext.removeAttribute(\"id\");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {Function(string, Object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn (cache[ key + \" \" ] = value);\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created div and expects a boolean result\n */\nfunction assert( fn ) {\n\tvar div = document.createElement(\"div\");\n\n\ttry {\n\t\treturn !!fn( div );\n\t} catch (e) {\n\t\treturn false;\n\t} finally {\n\t\t// Remove from its parent by default\n\t\tif ( div.parentNode ) {\n\t\t\tdiv.parentNode.removeChild( div );\n\t\t}\n\t\t// release memory in IE\n\t\tdiv = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split(\"|\"),\n\t\ti = attrs.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[i] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\t( ~b.sourceIndex || MAX_NEGATIVE ) -\n\t\t\t( ~a.sourceIndex || MAX_NEGATIVE );\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( (cur = cur.nextSibling) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn (name === \"input\" || name === \"button\") && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction(function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction(function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ (j = matchIndexes[i]) ] ) {\n\t\t\t\t\tseed[j] = !(matches[j] = seed[j]);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t});\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\t// documentElement is verified for cases where it doesn't yet exist\n\t// (such as loading iframes in IE - #4833)\n\tvar documentElement = elem && (elem.ownerDocument || elem).documentElement;\n\treturn documentElement ? documentElement.nodeName !== \"HTML\" : false;\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, parent,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// If no document and documentElement is available, return\n\tif ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Set our document\n\tdocument = doc;\n\tdocElem = doc.documentElement;\n\tparent = doc.defaultView;\n\n\t// Support: IE>8\n\t// If iframe document is assigned to \"document\" variable and if iframe has been reloaded,\n\t// IE will throw \"permission denied\" error when accessing \"document\" variable, see jQuery #13936\n\t// IE6-8 do not support the defaultView property so parent will be undefined\n\tif ( parent && parent !== parent.top ) {\n\t\t// IE11 does not have attachEvent, so all must suffer\n\t\tif ( parent.addEventListener ) {\n\t\t\tparent.addEventListener( \"unload\", unloadHandler, false );\n\t\t} else if ( parent.attachEvent ) {\n\t\t\tparent.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t/* Support tests\n\t---------------------------------------------------------------------- */\n\tdocumentIsHTML = !isXML( doc );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert(function( div ) {\n\t\tdiv.className = \"i\";\n\t\treturn !div.getAttribute(\"className\");\n\t});\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert(function( div ) {\n\t\tdiv.appendChild( doc.createComment(\"\") );\n\t\treturn !div.getElementsByTagName(\"*\").length;\n\t});\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( doc.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert(function( div ) {\n\t\tdocElem.appendChild( div ).id = expando;\n\t\treturn !doc.getElementsByName || !doc.getElementsByName( expando ).length;\n\t});\n\n\t// ID find and filter\n\tif ( support.getById ) {\n\t\tExpr.find[\"ID\"] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar m = context.getElementById( id );\n\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\treturn m && m.parentNode ? [ m ] : [];\n\t\t\t}\n\t\t};\n\t\tExpr.filter[\"ID\"] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute(\"id\") === attrId;\n\t\t\t};\n\t\t};\n\t} else {\n\t\t// Support: IE6/7\n\t\t// getElementById is not reliable as a find shortcut\n\t\tdelete Expr.find[\"ID\"];\n\n\t\tExpr.filter[\"ID\"] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" && elem.getAttributeNode(\"id\");\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[\"TAG\"] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( (elem = results[i++]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[\"CLASS\"] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See http://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert(function( div ) {\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// http://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( div ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\f]' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( div.querySelectorAll(\"[msallowcapture^='']\").length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !div.querySelectorAll(\"[selected]\").length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.2+, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.7+\n\t\t\tif ( !div.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push(\"~=\");\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":checked\").length ) {\n\t\t\t\trbuggyQSA.push(\":checked\");\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibing-combinator selector` fails\n\t\t\tif ( !div.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push(\".#.+[+~]\");\n\t\t\t}\n\t\t});\n\n\t\tassert(function( div ) {\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = doc.createElement(\"input\");\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tdiv.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( div.querySelectorAll(\"[name=d]\").length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":enabled\").length ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tdiv.querySelectorAll(\"*,:x\");\n\t\t\trbuggyQSA.push(\",.*:\");\n\t\t});\n\t}\n\n\tif ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector) )) ) {\n\n\t\tassert(function( div ) {\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( div, \"div\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( div, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t});\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join(\"|\") );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join(\"|\") );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully does not implement inclusive descendent\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t));\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( (b = b.parentNode) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\tcompare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\tif ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t\tif ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\t\t\treturn a === doc ? -1 :\n\t\t\t\tb === doc ? 1 :\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[i] === bp[i] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[i], bp[i] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\tap[i] === preferredDoc ? -1 :\n\t\t\tbp[i] === preferredDoc ? 1 :\n\t\t\t0;\n\t};\n\n\treturn doc;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\t// Make sure that attribute selectors are quoted\n\texpr = expr.replace( rattributeQuotes, \"='$1']\" );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t// fragment in IE 9\n\t\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch (e) {}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\t// Set document vars if needed\n\tif ( ( context.ownerDocument || context ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t(val = elem.getAttributeNode(name)) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( (elem = results[i++]) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( (node = elem[i++]) ) {\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[1] = match[1].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[3] = ( match[3] || match[4] || match[5] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[2] === \"~=\" ) {\n\t\t\t\tmatch[3] = \" \" + match[3] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[1] = match[1].toLowerCase();\n\n\t\t\tif ( match[1].slice( 0, 3 ) === \"nth\" ) {\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[3] ) {\n\t\t\t\t\tSizzle.error( match[0] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === \"even\" || match[3] === \"odd\" ) );\n\t\t\t\tmatch[5] = +( ( match[7] + match[8] ) || match[3] === \"odd\" );\n\n\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[3] ) {\n\t\t\t\tSizzle.error( match[0] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[6] && match[2];\n\n\t\t\tif ( matchExpr[\"CHILD\"].test( match[0] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[3] ) {\n\t\t\t\tmatch[2] = match[4] || match[5] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t(excess = tokenize( unquoted, true )) &&\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t(excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[0] = match[0].slice( 0, excess );\n\t\t\t\tmatch[2] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() { return true; } :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t(pattern = new RegExp( \"(^|\" + whitespace + \")\" + className + \"(\" + whitespace + \"|$)\" )) &&\n\t\t\t\tclassCache( className, function( elem ) {\n\t\t\t\t\treturn pattern.test( typeof elem.className === \"string\" && elem.className || typeof elem.getAttribute !== \"undefined\" && elem.getAttribute(\"class\") || \"\" );\n\t\t\t\t});\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tvar cache, outerCache, node, diff, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( (node = node[ dir ]) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\t\t\t\t\t\t\touterCache = parent[ expando ] || (parent[ expando ] = {});\n\t\t\t\t\t\t\tcache = outerCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[0] === dirruns && cache[1];\n\t\t\t\t\t\t\tdiff = cache[0] === dirruns && cache[2];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\touterCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t} else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {\n\t\t\t\t\t\t\tdiff = cache[1];\n\n\t\t\t\t\t\t// xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\tif ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {\n\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t(node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction(function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[i] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[i] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction(function( selector ) {\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction(function( seed, matches, context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = unmatched[i]) ) {\n\t\t\t\t\t\t\tseed[i] = !(matches[i] = elem);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}) :\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tinput[0] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[0] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t}),\n\n\t\t\"has\": markFunction(function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t}),\n\n\t\t\"contains\": markFunction(function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t}),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test(lang || \"\") ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( (elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute(\"xml:lang\") || elem.getAttribute(\"lang\")) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( (elem = elem.parentNode) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t}),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": function( elem ) {\n\t\t\treturn elem.disabled === false;\n\t\t},\n\n\t\t\"disabled\": function( elem ) {\n\t\t\treturn elem.disabled === true;\n\t\t},\n\n\t\t\"checked\": function( elem ) {\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn (nodeName === \"input\" && !!elem.checked) || (nodeName === \"option\" && !!elem.selected);\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[\"empty\"]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( (attr = elem.getAttribute(\"type\")) == null || attr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo(function() {\n\t\t\treturn [ 0 ];\n\t\t}),\n\n\t\t\"last\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t}),\n\n\t\t\"eq\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t}),\n\n\t\t\"even\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"odd\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"lt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"gt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t})\n\t}\n};\n\nExpr.pseudos[\"nth\"] = Expr.pseudos[\"eq\"];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || (match = rcomma.exec( soFar )) ) {\n\t\t\tif ( match ) {\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[0].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( (tokens = []) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( (match = rcombinators.exec( soFar )) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push({\n\t\t\t\tvalue: matched,\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[0].replace( rtrim, \" \" )\n\t\t\t});\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||\n\t\t\t\t(match = preFilters[ type ]( match ))) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push({\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t});\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[i].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tcheckNonElements = base && dir === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from dir caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || (elem[ expando ] = {});\n\t\t\t\t\t\tif ( (oldCache = outerCache[ dir ]) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn (newCache[ 2 ] = oldCache[ 2 ]);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\touterCache[ dir ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[i]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[0];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[i], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (elem = unmatched[i]) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction(function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts( selector || \"*\", context.nodeType ? [ context ] : context, [] ),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( (elem = temp[i]) ) {\n\t\t\t\t\tmatcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = matcherOut[i]) ) {\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( (matcherIn[i] = elem) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, (matcherOut = []), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( (elem = matcherOut[i]) &&\n\t\t\t\t\t\t(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {\n\n\t\t\t\t\t\tseed[temp] = !(results[temp] = elem);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t});\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[0].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[\" \"],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t(checkContext = context).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (matcher = Expr.relative[ tokens[i].type ]) ) {\n\t\t\tmatchers = [ addCombinator(elementMatcher( matchers ), matcher) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[j].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\t\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\t\ttokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" })\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( (tokens = tokens.slice( j )) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[\"TAG\"]( \"*\", outermost ),\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\t\t\t\toutermostContext = context !== document && context;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Keep `i` a string if there are no elements so `matchedCount` will be \"00\" below\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && (elem = elems[i]) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (matcher = elementMatchers[j++]) ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( (elem = !matcher && elem) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\tmatchedCount += i;\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (matcher = setMatchers[j++]) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !(unmatched[i] || setMatched[i]) ) {\n\t\t\t\t\t\t\t\tsetMatched[i] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[i] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( (selector = compiled.selector || selector) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is no seed and only one group\n\tif ( match.length === 1 ) {\n\n\t\t// Take a shortcut and set the context if the root selector is an ID\n\t\ttokens = match[0] = match[0].slice( 0 );\n\t\tif ( tokens.length > 2 && (token = tokens[0]).type === \"ID\" &&\n\t\t\t\tsupport.getById && context.nodeType === 9 && documentIsHTML &&\n\t\t\t\tExpr.relative[ tokens[1].type ] ) {\n\n\t\t\tcontext = ( Expr.find[\"ID\"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[\"needsContext\"].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[i];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ (type = token.type) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( (find = Expr.find[ type ]) ) {\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( (seed = find(\n\t\t\t\t\ttoken.matches[0].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context\n\t\t\t\t)) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\trsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split(\"\").sort( sortOrder ).join(\"\") === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert(function( div1 ) {\n\t// Should return 1, but returns 4 (following)\n\treturn div1.compareDocumentPosition( document.createElement(\"div\") ) & 1;\n});\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert(function( div ) {\n\tdiv.innerHTML = \"<a href='#'></a>\";\n\treturn div.firstChild.getAttribute(\"href\") === \"#\" ;\n}) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert(function( div ) {\n\tdiv.innerHTML = \"<input/>\";\n\tdiv.firstChild.setAttribute( \"value\", \"\" );\n\treturn div.firstChild.getAttribute( \"value\" ) === \"\";\n}) ) {\n\taddHandle( \"value\", function( elem, name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert(function( div ) {\n\treturn div.getAttribute(\"disabled\") == null;\n}) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t\t(val = elem.getAttributeNode( name )) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\tnull;\n\t\t}\n\t});\n}\n\nreturn Sizzle;\n\n})( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\njQuery.expr[\":\"] = jQuery.expr.pseudos;\njQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\n\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\nvar rsingleTag = (/^<(\\w+)\\s*\\/?>(?:<\\/\\1>|)$/);\n\n\n\nvar risSimple = /^.[^:#\\[\\.,]*$/;\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( jQuery.isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\t/* jshint -W018 */\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t});\n\n\t}\n\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t});\n\n\t}\n\n\tif ( typeof qualifier === \"string\" ) {\n\t\tif ( risSimple.test( qualifier ) ) {\n\t\t\treturn jQuery.filter( qualifier, elements, not );\n\t\t}\n\n\t\tqualifier = jQuery.filter( qualifier, elements );\n\t}\n\n\treturn jQuery.grep( elements, function( elem ) {\n\t\treturn ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not;\n\t});\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\treturn elems.length === 1 && elem.nodeType === 1 ?\n\t\tjQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :\n\t\tjQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\t\treturn elem.nodeType === 1;\n\t\t}));\n};\n\njQuery.fn.extend({\n\tfind: function( selector ) {\n\t\tvar i,\n\t\t\tret = [],\n\t\t\tself = this,\n\t\t\tlen = self.length;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter(function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}) );\n\t\t}\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\t// Needed because $( selector, context ) becomes $( context ).find( selector )\n\t\tret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );\n\t\tret.selector = this.selector ? this.selector + \" \" + selector : selector;\n\t\treturn ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], false) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], true) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n});\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// Use the correct document accordingly with window argument (sandbox)\n\tdocument = window.document,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]*))$/,\n\n\tinit = jQuery.fn.init = function( selector, context ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector.charAt(0) === \"<\" && selector.charAt( selector.length - 1 ) === \">\" && selector.length >= 3 ) {\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && (match[1] || !context) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[1] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[0] : context;\n\n\t\t\t\t\t// scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[1],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( jQuery.isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[2] );\n\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE and Opera return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id !== match[2] ) {\n\t\t\t\t\t\t\treturn rootjQuery.find( selector );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Otherwise, we inject the element directly into the jQuery object\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t\tthis[0] = elem;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.context = document;\n\t\t\t\t\tthis.selector = selector;\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || rootjQuery ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis.context = this[0] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( jQuery.isFunction( selector ) ) {\n\t\t\treturn typeof rootjQuery.ready !== \"undefined\" ?\n\t\t\t\trootjQuery.ready( selector ) :\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\tif ( selector.selector !== undefined ) {\n\t\t\tthis.selector = selector.selector;\n\t\t\tthis.context = selector.context;\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\t// methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.extend({\n\tdir: function( elem, dir, until ) {\n\t\tvar matched = [],\n\t\t\tcur = elem[ dir ];\n\n\t\twhile ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {\n\t\t\tif ( cur.nodeType === 1 ) {\n\t\t\t\tmatched.push( cur );\n\t\t\t}\n\t\t\tcur = cur[dir];\n\t\t}\n\t\treturn matched;\n\t},\n\n\tsibling: function( n, elem ) {\n\t\tvar r = [];\n\n\t\tfor ( ; n; n = n.nextSibling ) {\n\t\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\t\tr.push( n );\n\t\t\t}\n\t\t}\n\n\t\treturn r;\n\t}\n});\n\njQuery.fn.extend({\n\thas: function( target ) {\n\t\tvar i,\n\t\t\ttargets = jQuery( target, this ),\n\t\t\tlen = targets.length;\n\n\t\treturn this.filter(function() {\n\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[i] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\tpos = rneedsContext.test( selectors ) || typeof selectors !== \"string\" ?\n\t\t\t\tjQuery( selectors, context || this.context ) :\n\t\t\t\t0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tfor ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) {\n\t\t\t\t// Always skip document fragments\n\t\t\t\tif ( cur.nodeType < 11 && (pos ?\n\t\t\t\t\tpos.index(cur) > -1 :\n\n\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\tjQuery.find.matchesSelector(cur, selectors)) ) {\n\n\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within\n\t// the matched set of elements\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn jQuery.inArray( this[0], jQuery( elem ) );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn jQuery.inArray(\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[0] : elem, this );\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.unique(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter(selector)\n\t\t);\n\t}\n});\n\nfunction sibling( cur, dir ) {\n\tdo {\n\t\tcur = cur[ dir ];\n\t} while ( cur && cur.nodeType !== 1 );\n\n\treturn cur;\n}\n\njQuery.each({\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn jQuery.dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn jQuery.sibling( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\treturn jQuery.nodeName( elem, \"iframe\" ) ?\n\t\t\telem.contentDocument || elem.contentWindow.document :\n\t\t\tjQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar ret = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tret = jQuery.filter( selector, ret );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tret = jQuery.unique( ret );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tret = ret.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\nvar rnotwhite = (/\\S+/g);\n\n\n\n// String to Object options format cache\nvar optionsCache = {};\n\n// Convert String-formatted options into Object-formatted ones and store in cache\nfunction createOptions( options ) {\n\tvar object = optionsCache[ options ] = {};\n\tjQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t});\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\t( optionsCache[ options ] || createOptions( options ) ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\t\t// Last fire value (for non-forgettable lists)\n\t\tmemory,\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\t\t// End of the loop when firing\n\t\tfiringLength,\n\t\t// Index of currently firing callback (modified by remove if needed)\n\t\tfiringIndex,\n\t\t// First callback to fire (used internally by add and fireWith)\n\t\tfiringStart,\n\t\t// Actual callback list\n\t\tlist = [],\n\t\t// Stack of fire calls for repeatable lists\n\t\tstack = !options.once && [],\n\t\t// Fire callbacks\n\t\tfire = function( data ) {\n\t\t\tmemory = options.memory && data;\n\t\t\tfired = true;\n\t\t\tfiringIndex = firingStart || 0;\n\t\t\tfiringStart = 0;\n\t\t\tfiringLength = list.length;\n\t\t\tfiring = true;\n\t\t\tfor ( ; list && firingIndex < firingLength; firingIndex++ ) {\n\t\t\t\tif ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {\n\t\t\t\t\tmemory = false; // To prevent further calls using add\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tfiring = false;\n\t\t\tif ( list ) {\n\t\t\t\tif ( stack ) {\n\t\t\t\t\tif ( stack.length ) {\n\t\t\t\t\t\tfire( stack.shift() );\n\t\t\t\t\t}\n\t\t\t\t} else if ( memory ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t} else {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t// Actual Callbacks object\n\t\tself = {\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\t// First, we save the current length\n\t\t\t\t\tvar start = list.length;\n\t\t\t\t\t(function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tvar type = jQuery.type( arg );\n\t\t\t\t\t\t\tif ( type === \"function\" ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && type !== \"string\" ) {\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t})( arguments );\n\t\t\t\t\t// Do we need to add the callbacks to the\n\t\t\t\t\t// current firing batch?\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tfiringLength = list.length;\n\t\t\t\t\t// With memory, if we're not firing then\n\t\t\t\t\t// we should call right away\n\t\t\t\t\t} else if ( memory ) {\n\t\t\t\t\t\tfiringStart = start;\n\t\t\t\t\t\tfire( memory );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\t\tvar index;\n\t\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\t\tlist.splice( index, 1 );\n\t\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\t\t\tif ( index <= firingLength ) {\n\t\t\t\t\t\t\t\t\tfiringLength--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );\n\t\t\t},\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tlist = [];\n\t\t\t\tfiringLength = 0;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Have the list do nothing anymore\n\t\t\tdisable: function() {\n\t\t\t\tlist = stack = memory = undefined;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it disabled?\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\t\t\t// Lock the list in its current state\n\t\t\tlock: function() {\n\t\t\t\tstack = undefined;\n\t\t\t\tif ( !memory ) {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it locked?\n\t\t\tlocked: function() {\n\t\t\t\treturn !stack;\n\t\t\t},\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( list && ( !fired || stack ) ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tstack.push( args );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tfire( args );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\njQuery.extend({\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\t\t\t\t// action, add listener, listener list, final state\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks(\"once memory\"), \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks(\"once memory\"), \"rejected\" ],\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks(\"memory\") ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\tthen: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\t\t\t\t\treturn jQuery.Deferred(function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\t\t\t\t\tvar fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];\n\t\t\t\t\t\t\t// deferred[ done | fail | progress ] for forwarding actions to newDefer\n\t\t\t\t\t\t\tdeferred[ tuple[1] ](function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && jQuery.isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject )\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t});\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t}).promise();\n\t\t\t\t},\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Keep pipe for back-compat\n\t\tpromise.pipe = promise.then;\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 3 ];\n\n\t\t\t// promise[ done | fail | progress ] = list.add\n\t\t\tpromise[ tuple[1] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(function() {\n\t\t\t\t\t// state = [ resolved | rejected ]\n\t\t\t\t\tstate = stateString;\n\n\t\t\t\t// [ reject_list | resolve_list ].disable; progress_list.lock\n\t\t\t\t}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );\n\t\t\t}\n\n\t\t\t// deferred[ resolve | reject | notify ]\n\t\t\tdeferred[ tuple[0] ] = function() {\n\t\t\t\tdeferred[ tuple[0] + \"With\" ]( this === deferred ? promise : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\t\t\tdeferred[ tuple[0] + \"With\" ] = list.fireWith;\n\t\t});\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( subordinate /* , ..., subordinateN */ ) {\n\t\tvar i = 0,\n\t\t\tresolveValues = slice.call( arguments ),\n\t\t\tlength = resolveValues.length,\n\n\t\t\t// the count of uncompleted subordinates\n\t\t\tremaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,\n\n\t\t\t// the master Deferred. If resolveValues consist of only a single Deferred, just use that.\n\t\t\tdeferred = remaining === 1 ? subordinate : jQuery.Deferred(),\n\n\t\t\t// Update function for both resolve and progress values\n\t\t\tupdateFunc = function( i, contexts, values ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tcontexts[ i ] = this;\n\t\t\t\t\tvalues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( values === progressValues ) {\n\t\t\t\t\t\tdeferred.notifyWith( contexts, values );\n\n\t\t\t\t\t} else if ( !(--remaining) ) {\n\t\t\t\t\t\tdeferred.resolveWith( contexts, values );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t},\n\n\t\t\tprogressValues, progressContexts, resolveContexts;\n\n\t\t// add listeners to Deferred subordinates; treat others as resolved\n\t\tif ( length > 1 ) {\n\t\t\tprogressValues = new Array( length );\n\t\t\tprogressContexts = new Array( length );\n\t\t\tresolveContexts = new Array( length );\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {\n\t\t\t\t\tresolveValues[ i ].promise()\n\t\t\t\t\t\t.done( updateFunc( i, resolveContexts, resolveValues ) )\n\t\t\t\t\t\t.fail( deferred.reject )\n\t\t\t\t\t\t.progress( updateFunc( i, progressContexts, progressValues ) );\n\t\t\t\t} else {\n\t\t\t\t\t--remaining;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// if we're not waiting on anything, resolve the master\n\t\tif ( !remaining ) {\n\t\t\tdeferred.resolveWith( resolveContexts, resolveValues );\n\t\t}\n\n\t\treturn deferred.promise();\n\t}\n});\n\n\n// The deferred used on DOM ready\nvar readyList;\n\njQuery.fn.ready = function( fn ) {\n\t// Add the callback\n\tjQuery.ready.promise().done( fn );\n\n\treturn this;\n};\n\njQuery.extend({\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Hold (or release) the ready event\n\tholdReady: function( hold ) {\n\t\tif ( hold ) {\n\t\t\tjQuery.readyWait++;\n\t\t} else {\n\t\t\tjQuery.ready( true );\n\t\t}\n\t},\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).\n\t\tif ( !document.body ) {\n\t\t\treturn setTimeout( jQuery.ready );\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\n\t\t// Trigger any bound ready events\n\t\tif ( jQuery.fn.triggerHandler ) {\n\t\t\tjQuery( document ).triggerHandler( \"ready\" );\n\t\t\tjQuery( document ).off( \"ready\" );\n\t\t}\n\t}\n});\n\n/**\n * Clean-up method for dom ready events\n */\nfunction detach() {\n\tif ( document.addEventListener ) {\n\t\tdocument.removeEventListener( \"DOMContentLoaded\", completed, false );\n\t\twindow.removeEventListener( \"load\", completed, false );\n\n\t} else {\n\t\tdocument.detachEvent( \"onreadystatechange\", completed );\n\t\twindow.detachEvent( \"onload\", completed );\n\t}\n}\n\n/**\n * The ready event handler and self cleanup method\n */\nfunction completed() {\n\t// readyState === \"complete\" is good enough for us to call the dom ready in oldIE\n\tif ( document.addEventListener || event.type === \"load\" || document.readyState === \"complete\" ) {\n\t\tdetach();\n\t\tjQuery.ready();\n\t}\n}\n\njQuery.ready.promise = function( obj ) {\n\tif ( !readyList ) {\n\n\t\treadyList = jQuery.Deferred();\n\n\t\t// Catch cases where $(document).ready() is called after the browser event has already occurred.\n\t\t// we once tried to use readyState \"interactive\" here, but it caused issues like the one\n\t\t// discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15\n\t\tif ( document.readyState === \"complete\" ) {\n\t\t\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\t\t\tsetTimeout( jQuery.ready );\n\n\t\t// Standards-based browsers support DOMContentLoaded\n\t\t} else if ( document.addEventListener ) {\n\t\t\t// Use the handy event callback\n\t\t\tdocument.addEventListener( \"DOMContentLoaded\", completed, false );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.addEventListener( \"load\", completed, false );\n\n\t\t// If IE event model is used\n\t\t} else {\n\t\t\t// Ensure firing before onload, maybe late but safe also for iframes\n\t\t\tdocument.attachEvent( \"onreadystatechange\", completed );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.attachEvent( \"onload\", completed );\n\n\t\t\t// If IE and not a frame\n\t\t\t// continually check to see if the document is ready\n\t\t\tvar top = false;\n\n\t\t\ttry {\n\t\t\t\ttop = window.frameElement == null && document.documentElement;\n\t\t\t} catch(e) {}\n\n\t\t\tif ( top && top.doScroll ) {\n\t\t\t\t(function doScrollCheck() {\n\t\t\t\t\tif ( !jQuery.isReady ) {\n\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t// Use the trick by Diego Perini\n\t\t\t\t\t\t\t// http://javascript.nwbox.com/IEContentLoaded/\n\t\t\t\t\t\t\ttop.doScroll(\"left\");\n\t\t\t\t\t\t} catch(e) {\n\t\t\t\t\t\t\treturn setTimeout( doScrollCheck, 50 );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// detach all dom ready events\n\t\t\t\t\t\tdetach();\n\n\t\t\t\t\t\t// and execute any waiting functions\n\t\t\t\t\t\tjQuery.ready();\n\t\t\t\t\t}\n\t\t\t\t})();\n\t\t\t}\n\t\t}\n\t}\n\treturn readyList.promise( obj );\n};\n\n\nvar strundefined = typeof undefined;\n\n\n\n// Support: IE<9\n// Iteration over object's inherited properties before its own\nvar i;\nfor ( i in jQuery( support ) ) {\n\tbreak;\n}\nsupport.ownLast = i !== \"0\";\n\n// Note: most support tests are defined in their respective modules.\n// false until the test is run\nsupport.inlineBlockNeedsLayout = false;\n\n// Execute ASAP in case we need to set body.style.zoom\njQuery(function() {\n\t// Minified: var a,b,c,d\n\tvar val, div, body, container;\n\n\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\tif ( !body || !body.style ) {\n\t\t// Return for frameset docs that don't have a body\n\t\treturn;\n\t}\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tcontainer = document.createElement( \"div\" );\n\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\tbody.appendChild( container ).appendChild( div );\n\n\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t// Support: IE<8\n\t\t// Check if natively block-level elements act like inline-block\n\t\t// elements when setting their display to 'inline' and giving\n\t\t// them layout\n\t\tdiv.style.cssText = \"display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1\";\n\n\t\tsupport.inlineBlockNeedsLayout = val = div.offsetWidth === 3;\n\t\tif ( val ) {\n\t\t\t// Prevent IE 6 from affecting layout for positioned elements #11048\n\t\t\t// Prevent IE from shrinking the body in IE 7 mode #12869\n\t\t\t// Support: IE<8\n\t\t\tbody.style.zoom = 1;\n\t\t}\n\t}\n\n\tbody.removeChild( container );\n});\n\n\n\n\n(function() {\n\tvar div = document.createElement( \"div\" );\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\n/**\n * Determines whether an object can have data\n */\njQuery.acceptData = function( elem ) {\n\tvar noData = jQuery.noData[ (elem.nodeName + \" \").toLowerCase() ],\n\t\tnodeType = +elem.nodeType || 1;\n\n\t// Do not set data on non-element DOM nodes because it will not be cleared (#8335).\n\treturn nodeType !== 1 && nodeType !== 9 ?\n\t\tfalse :\n\n\t\t// Nodes accept data unless otherwise specified; rejection can be conditional\n\t\t!noData || noData !== true && elem.getAttribute(\"classid\") === noData;\n};\n\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /([A-Z])/g;\n\nfunction dataAttr( elem, key, data ) {\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\n\t\tvar name = \"data-\" + key.replace( rmultiDash, \"-$1\" ).toLowerCase();\n\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = data === \"true\" ? true :\n\t\t\t\t\tdata === \"false\" ? false :\n\t\t\t\t\tdata === \"null\" ? null :\n\t\t\t\t\t// Only convert to a number if it doesn't change the string\n\t\t\t\t\t+data + \"\" === data ? +data :\n\t\t\t\t\trbrace.test( data ) ? jQuery.parseJSON( data ) :\n\t\t\t\t\tdata;\n\t\t\t} catch( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tjQuery.data( elem, key, data );\n\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\n\treturn data;\n}\n\n// checks a cache object for emptiness\nfunction isEmptyDataObject( obj ) {\n\tvar name;\n\tfor ( name in obj ) {\n\n\t\t// if the public data object is empty, the private is still empty\n\t\tif ( name === \"data\" && jQuery.isEmptyObject( obj[name] ) ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( name !== \"toJSON\" ) {\n\t\t\treturn false;\n\t\t}\n\t}\n\n\treturn true;\n}\n\nfunction internalData( elem, name, data, pvt /* Internal Use Only */ ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar ret, thisCache,\n\t\tinternalKey = jQuery.expando,\n\n\t\t// We have to handle DOM nodes and JS objects differently because IE6-7\n\t\t// can't GC object references properly across the DOM-JS boundary\n\t\tisNode = elem.nodeType,\n\n\t\t// Only DOM nodes need the global jQuery cache; JS object data is\n\t\t// attached directly to the object so GC can occur automatically\n\t\tcache = isNode ? jQuery.cache : elem,\n\n\t\t// Only defining an ID for JS objects if its cache already exists allows\n\t\t// the code to shortcut on the same path as a DOM node with no cache\n\t\tid = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;\n\n\t// Avoid doing any more work than we need to when trying to get data on an\n\t// object that has no data at all\n\tif ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === \"string\" ) {\n\t\treturn;\n\t}\n\n\tif ( !id ) {\n\t\t// Only DOM nodes need a new unique ID for each element since their data\n\t\t// ends up in the global cache\n\t\tif ( isNode ) {\n\t\t\tid = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++;\n\t\t} else {\n\t\t\tid = internalKey;\n\t\t}\n\t}\n\n\tif ( !cache[ id ] ) {\n\t\t// Avoid exposing jQuery metadata on plain JS objects when the object\n\t\t// is serialized using JSON.stringify\n\t\tcache[ id ] = isNode ? {} : { toJSON: jQuery.noop };\n\t}\n\n\t// An object can be passed to jQuery.data instead of a key/value pair; this gets\n\t// shallow copied over onto the existing cache\n\tif ( typeof name === \"object\" || typeof name === \"function\" ) {\n\t\tif ( pvt ) {\n\t\t\tcache[ id ] = jQuery.extend( cache[ id ], name );\n\t\t} else {\n\t\t\tcache[ id ].data = jQuery.extend( cache[ id ].data, name );\n\t\t}\n\t}\n\n\tthisCache = cache[ id ];\n\n\t// jQuery data() is stored in a separate object inside the object's internal data\n\t// cache in order to avoid key collisions between internal data and user-defined\n\t// data.\n\tif ( !pvt ) {\n\t\tif ( !thisCache.data ) {\n\t\t\tthisCache.data = {};\n\t\t}\n\n\t\tthisCache = thisCache.data;\n\t}\n\n\tif ( data !== undefined ) {\n\t\tthisCache[ jQuery.camelCase( name ) ] = data;\n\t}\n\n\t// Check for both converted-to-camel and non-converted data property names\n\t// If a data property was specified\n\tif ( typeof name === \"string\" ) {\n\n\t\t// First Try to find as-is property data\n\t\tret = thisCache[ name ];\n\n\t\t// Test for null|undefined property data\n\t\tif ( ret == null ) {\n\n\t\t\t// Try to find the camelCased property\n\t\t\tret = thisCache[ jQuery.camelCase( name ) ];\n\t\t}\n\t} else {\n\t\tret = thisCache;\n\t}\n\n\treturn ret;\n}\n\nfunction internalRemoveData( elem, name, pvt ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar thisCache, i,\n\t\tisNode = elem.nodeType,\n\n\t\t// See jQuery.data for more information\n\t\tcache = isNode ? jQuery.cache : elem,\n\t\tid = isNode ? elem[ jQuery.expando ] : jQuery.expando;\n\n\t// If there is already no cache entry for this object, there is no\n\t// purpose in continuing\n\tif ( !cache[ id ] ) {\n\t\treturn;\n\t}\n\n\tif ( name ) {\n\n\t\tthisCache = pvt ? cache[ id ] : cache[ id ].data;\n\n\t\tif ( thisCache ) {\n\n\t\t\t// Support array or space separated string names for data keys\n\t\t\tif ( !jQuery.isArray( name ) ) {\n\n\t\t\t\t// try the string as a key before any manipulation\n\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\tname = [ name ];\n\t\t\t\t} else {\n\n\t\t\t\t\t// split the camel cased version by spaces unless a key with the spaces exists\n\t\t\t\t\tname = jQuery.camelCase( name );\n\t\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\t\tname = [ name ];\n\t\t\t\t\t} else {\n\t\t\t\t\t\tname = name.split(\" \");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// If \"name\" is an array of keys...\n\t\t\t\t// When data is initially created, via (\"key\", \"val\") signature,\n\t\t\t\t// keys will be converted to camelCase.\n\t\t\t\t// Since there is no way to tell _how_ a key was added, remove\n\t\t\t\t// both plain key and camelCase key. #12786\n\t\t\t\t// This will only penalize the array argument path.\n\t\t\t\tname = name.concat( jQuery.map( name, jQuery.camelCase ) );\n\t\t\t}\n\n\t\t\ti = name.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete thisCache[ name[i] ];\n\t\t\t}\n\n\t\t\t// If there is no data left in the cache, we want to continue\n\t\t\t// and let the cache object itself get destroyed\n\t\t\tif ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t}\n\n\t// See jQuery.data for more information\n\tif ( !pvt ) {\n\t\tdelete cache[ id ].data;\n\n\t\t// Don't destroy the parent cache unless the internal data object\n\t\t// had been the only thing left in it\n\t\tif ( !isEmptyDataObject( cache[ id ] ) ) {\n\t\t\treturn;\n\t\t}\n\t}\n\n\t// Destroy the cache\n\tif ( isNode ) {\n\t\tjQuery.cleanData( [ elem ], true );\n\n\t// Use delete when supported for expandos or `cache` is not a window per isWindow (#10080)\n\t/* jshint eqeqeq: false */\n\t} else if ( support.deleteExpando || cache != cache.window ) {\n\t\t/* jshint eqeqeq: true */\n\t\tdelete cache[ id ];\n\n\t// When all else fails, null\n\t} else {\n\t\tcache[ id ] = null;\n\t}\n}\n\njQuery.extend({\n\tcache: {},\n\n\t// The following elements (space-suffixed to avoid Object.prototype collisions)\n\t// throw uncatchable exceptions if you attempt to set expando properties\n\tnoData: {\n\t\t\"applet \": true,\n\t\t\"embed \": true,\n\t\t// ...but Flash objects (which have this classid) *can* handle expandos\n\t\t\"object \": \"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"\n\t},\n\n\thasData: function( elem ) {\n\t\telem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];\n\t\treturn !!elem && !isEmptyDataObject( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name );\n\t},\n\n\t// For internal use only.\n\t_data: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data, true );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name, true );\n\t}\n});\n\njQuery.fn.extend({\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[0],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Special expections of .data basically thwart jQuery.access,\n\t\t// so implement the relevant behavior ourselves\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = jQuery.data( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !jQuery._data( elem, \"parsedAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE11+\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = jQuery.camelCase( name.slice(5) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tjQuery._data( elem, \"parsedAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each(function() {\n\t\t\t\tjQuery.data( this, key );\n\t\t\t});\n\t\t}\n\n\t\treturn arguments.length > 1 ?\n\n\t\t\t// Sets one value\n\t\t\tthis.each(function() {\n\t\t\t\tjQuery.data( this, key, value );\n\t\t\t}) :\n\n\t\t\t// Gets one value\n\t\t\t// Try to fetch any internally stored data first\n\t\t\telem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined;\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeData( this, key );\n\t\t});\n\t}\n});\n\n\njQuery.extend({\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = jQuery._data( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || jQuery.isArray(data) ) {\n\t\t\t\t\tqueue = jQuery._data( elem, type, jQuery.makeArray(data) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// not intended for public consumption - generates a queueHooks object, or returns the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn jQuery._data( elem, key ) || jQuery._data( elem, key, {\n\t\t\tempty: jQuery.Callbacks(\"once memory\").add(function() {\n\t\t\t\tjQuery._removeData( elem, type + \"queue\" );\n\t\t\t\tjQuery._removeData( elem, key );\n\t\t\t})\n\t\t});\n\t}\n});\n\njQuery.fn.extend({\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[0], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each(function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[0] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t});\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t});\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = jQuery._data( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n});\nvar pnum = (/[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/).source;\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar isHidden = function( elem, el ) {\n\t\t// isHidden might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\t\treturn jQuery.css( elem, \"display\" ) === \"none\" || !jQuery.contains( elem.ownerDocument, elem );\n\t};\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlength = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( jQuery.type( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\tjQuery.access( elems, fn, i, key[i], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !jQuery.isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tfn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn chainable ?\n\t\telems :\n\n\t\t// Gets\n\t\tbulk ?\n\t\t\tfn.call( elems ) :\n\t\t\tlength ? fn( elems[0], key ) : emptyGet;\n};\nvar rcheckableType = (/^(?:checkbox|radio)$/i);\n\n\n\n(function() {\n\t// Minified: var a,b,c\n\tvar input = document.createElement( \"input\" ),\n\t\tdiv = document.createElement( \"div\" ),\n\t\tfragment = document.createDocumentFragment();\n\n\t// Setup\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\n\t// IE strips leading whitespace when .innerHTML is used\n\tsupport.leadingWhitespace = div.firstChild.nodeType === 3;\n\n\t// Make sure that tbody elements aren't automatically inserted\n\t// IE will insert them into empty tables\n\tsupport.tbody = !div.getElementsByTagName( \"tbody\" ).length;\n\n\t// Make sure that link elements get serialized correctly by innerHTML\n\t// This requires a wrapper element in IE\n\tsupport.htmlSerialize = !!div.getElementsByTagName( \"link\" ).length;\n\n\t// Makes sure cloning an html5 element does not cause problems\n\t// Where outerHTML is undefined, this still works\n\tsupport.html5Clone =\n\t\tdocument.createElement( \"nav\" ).cloneNode( true ).outerHTML !== \"<:nav></:nav>\";\n\n\t// Check if a disconnected checkbox will retain its checked\n\t// value of true after appended to the DOM (IE6/7)\n\tinput.type = \"checkbox\";\n\tinput.checked = true;\n\tfragment.appendChild( input );\n\tsupport.appendChecked = input.checked;\n\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\t// Support: IE6-IE11+\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// #11217 - WebKit loses check when the name is after the checked attribute\n\tfragment.appendChild( div );\n\tdiv.innerHTML = \"<input type='radio' checked='checked' name='t'/>\";\n\n\t// Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3\n\t// old WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE<9\n\t// Opera does not clone events (and typeof div.attachEvent === undefined).\n\t// IE9-10 clones events bound via attachEvent, but they don't trigger with .click()\n\tsupport.noCloneEvent = true;\n\tif ( div.attachEvent ) {\n\t\tdiv.attachEvent( \"onclick\", function() {\n\t\t\tsupport.noCloneEvent = false;\n\t\t});\n\n\t\tdiv.cloneNode( true ).click();\n\t}\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n})();\n\n\n(function() {\n\tvar i, eventName,\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Support: IE<9 (lack submit/change bubble), Firefox 23+ (lack focusin event)\n\tfor ( i in { submit: true, change: true, focusin: true }) {\n\t\teventName = \"on\" + i;\n\n\t\tif ( !(support[ i + \"Bubbles\" ] = eventName in window) ) {\n\t\t\t// Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP)\n\t\t\tdiv.setAttribute( eventName, \"t\" );\n\t\t\tsupport[ i + \"Bubbles\" ] = div.attributes[ eventName ].expando === false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\nvar rformElems = /^(?:input|select|textarea)$/i,\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu)|click/,\n\trfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)$/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\t\tvar tmp, events, t, handleObjIn,\n\t\t\tspecial, eventHandle, handleObj,\n\t\t\thandlers, type, namespaces, origType,\n\t\t\telemData = jQuery._data( elem );\n\n\t\t// Don't attach events to noData or text/comment nodes (but allow plain objects)\n\t\tif ( !elemData ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !(events = elemData.events) ) {\n\t\t\tevents = elemData.events = {};\n\t\t}\n\t\tif ( !(eventHandle = elemData.handle) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== strundefined && (!e || jQuery.event.triggered !== e.type) ?\n\t\t\t\t\tjQuery.event.dispatch.apply( eventHandle.elem, arguments ) :\n\t\t\t\t\tundefined;\n\t\t\t};\n\t\t\t// Add elem as a property of the handle fn to prevent a memory leak with IE non-native events\n\t\t\teventHandle.elem = elem;\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend({\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join(\".\")\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !(handlers = events[ type ]) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener/attachEvent if the special events handler returns false\n\t\t\t\tif ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\t\t\t\t\t// Bind the global event handler to the element\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle, false );\n\n\t\t\t\t\t} else if ( elem.attachEvent ) {\n\t\t\t\t\t\telem.attachEvent( \"on\" + type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t\t// Nullify elem to prevent memory leaks in IE\n\t\telem = null;\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\t\tvar j, handleObj, tmp,\n\t\t\torigCount, t, events,\n\t\t\tspecial, handlers, type,\n\t\t\tnamespaces, origType,\n\t\t\telemData = jQuery.hasData( elem ) && jQuery._data( elem );\n\n\t\tif ( !elemData || !(events = elemData.events) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[2] && new RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector || selector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdelete elemData.handle;\n\n\t\t\t// removeData also checks for emptiness and clears the expando if empty\n\t\t\t// so use it instead of delete\n\t\t\tjQuery._removeData( elem, \"events\" );\n\t\t}\n\t},\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\t\tvar handle, ontype, cur,\n\t\t\tbubbleType, special, tmp, i,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split(\".\") : [];\n\n\t\tcur = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf(\".\") >= 0 ) {\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split(\".\");\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf(\":\") < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join(\".\");\n\t\tevent.namespace_re = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === (elem.ownerDocument || document) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {\n\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = ( jQuery._data( cur, \"events\" ) || {} )[ event.type ] && jQuery._data( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && jQuery.acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) &&\n\t\t\t\tjQuery.acceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name name as the event.\n\t\t\t\t// Can't use an .isFunction() check here because IE6/7 fails that test.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\t\t\t\t\ttry {\n\t\t\t\t\t\telem[ type ]();\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// IE<9 dies on focus/blur to hidden element (#1486,#12518)\n\t\t\t\t\t\t// only reproducible on winXP IE8 native, not IE9 in IE8 mode\n\t\t\t\t\t}\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\tdispatch: function( event ) {\n\n\t\t// Make a writable jQuery.Event from the native event object\n\t\tevent = jQuery.event.fix( event );\n\n\t\tvar i, ret, handleObj, matched, j,\n\t\t\thandlerQueue = [],\n\t\t\targs = slice.call( arguments ),\n\t\t\thandlers = ( jQuery._data( this, \"events\" ) || {} )[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[0] = event;\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// Triggered event must either 1) have no namespace, or\n\t\t\t\t// 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).\n\t\t\t\tif ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )\n\t\t\t\t\t\t\t.apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( (event.result = ret) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar sel, handleObj, matches, i,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\t// Black-hole SVG <use> instance trees (#13180)\n\t\t// Avoid non-left-click bubbling in Firefox (#3861)\n\t\tif ( delegateCount && cur.nodeType && (!event.button || event.type !== \"click\") ) {\n\n\t\t\t/* jshint eqeqeq: false */\n\t\t\tfor ( ; cur != this; cur = cur.parentNode || this ) {\n\t\t\t\t/* jshint eqeqeq: true */\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== \"click\") ) {\n\t\t\t\t\tmatches = [];\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matches[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatches[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) >= 0 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matches[ sel ] ) {\n\t\t\t\t\t\t\tmatches.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matches.length ) {\n\t\t\t\t\t\thandlerQueue.push({ elem: cur, handlers: matches });\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\tfix: function( event ) {\n\t\tif ( event[ jQuery.expando ] ) {\n\t\t\treturn event;\n\t\t}\n\n\t\t// Create a writable copy of the event object and normalize some properties\n\t\tvar i, prop, copy,\n\t\t\ttype = event.type,\n\t\t\toriginalEvent = event,\n\t\t\tfixHook = this.fixHooks[ type ];\n\n\t\tif ( !fixHook ) {\n\t\t\tthis.fixHooks[ type ] = fixHook =\n\t\t\t\trmouseEvent.test( type ) ? this.mouseHooks :\n\t\t\t\trkeyEvent.test( type ) ? this.keyHooks :\n\t\t\t\t{};\n\t\t}\n\t\tcopy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;\n\n\t\tevent = new jQuery.Event( originalEvent );\n\n\t\ti = copy.length;\n\t\twhile ( i-- ) {\n\t\t\tprop = copy[ i ];\n\t\t\tevent[ prop ] = originalEvent[ prop ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Fix target property (#1925)\n\t\tif ( !event.target ) {\n\t\t\tevent.target = originalEvent.srcElement || document;\n\t\t}\n\n\t\t// Support: Chrome 23+, Safari?\n\t\t// Target should not be a text node (#504, #13143)\n\t\tif ( event.target.nodeType === 3 ) {\n\t\t\tevent.target = event.target.parentNode;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// For mouse/key events, metaKey==false if it's undefined (#3368, #11328)\n\t\tevent.metaKey = !!event.metaKey;\n\n\t\treturn fixHook.filter ? fixHook.filter( event, originalEvent ) : event;\n\t},\n\n\t// Includes some event props shared by KeyEvent and MouseEvent\n\tprops: \"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which\".split(\" \"),\n\n\tfixHooks: {},\n\n\tkeyHooks: {\n\t\tprops: \"char charCode key keyCode\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\n\t\t\t// Add which for key events\n\t\t\tif ( event.which == null ) {\n\t\t\t\tevent.which = original.charCode != null ? original.charCode : original.keyCode;\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tmouseHooks: {\n\t\tprops: \"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\t\t\tvar body, eventDoc, doc,\n\t\t\t\tbutton = original.button,\n\t\t\t\tfromElement = original.fromElement;\n\n\t\t\t// Calculate pageX/Y if missing and clientX/Y available\n\t\t\tif ( event.pageX == null && original.clientX != null ) {\n\t\t\t\teventDoc = event.target.ownerDocument || document;\n\t\t\t\tdoc = eventDoc.documentElement;\n\t\t\t\tbody = eventDoc.body;\n\n\t\t\t\tevent.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );\n\t\t\t\tevent.pageY = original.clientY + ( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) - ( doc && doc.clientTop  || body && body.clientTop  || 0 );\n\t\t\t}\n\n\t\t\t// Add relatedTarget, if necessary\n\t\t\tif ( !event.relatedTarget && fromElement ) {\n\t\t\t\tevent.relatedTarget = fromElement === event.target ? original.toElement : fromElement;\n\t\t\t}\n\n\t\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\t\t// Note: button is not normalized, so don't use it\n\t\t\tif ( !event.which && button !== undefined ) {\n\t\t\t\tevent.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tspecial: {\n\t\tload: {\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tfocus: {\n\t\t\t// Fire native event if possible so blur/focus sequence is correct\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this !== safeActiveElement() && this.focus ) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tthis.focus();\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// If we error on focus to hidden element (#1486, #12518),\n\t\t\t\t\t\t// let .trigger() run the handlers\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusin\"\n\t\t},\n\t\tblur: {\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this === safeActiveElement() && this.blur ) {\n\t\t\t\t\tthis.blur();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusout\"\n\t\t},\n\t\tclick: {\n\t\t\t// For checkbox, fire native event so checked state will be right\n\t\t\ttrigger: function() {\n\t\t\t\tif ( jQuery.nodeName( this, \"input\" ) && this.type === \"checkbox\" && this.click ) {\n\t\t\t\t\tthis.click();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, don't fire native .click() on links\n\t\t\t_default: function( event ) {\n\t\t\t\treturn jQuery.nodeName( event.target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tsimulate: function( type, elem, event, bubble ) {\n\t\t// Piggyback on a donor event to simulate a different one.\n\t\t// Fake originalEvent to avoid donor's stopPropagation, but if the\n\t\t// simulated event prevents default then we do the same on the donor.\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true,\n\t\t\t\toriginalEvent: {}\n\t\t\t}\n\t\t);\n\t\tif ( bubble ) {\n\t\t\tjQuery.event.trigger( e, null, elem );\n\t\t} else {\n\t\t\tjQuery.event.dispatch.call( elem, e );\n\t\t}\n\t\tif ( e.isDefaultPrevented() ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\t}\n};\n\njQuery.removeEvent = document.removeEventListener ?\n\tfunction( elem, type, handle ) {\n\t\tif ( elem.removeEventListener ) {\n\t\t\telem.removeEventListener( type, handle, false );\n\t\t}\n\t} :\n\tfunction( elem, type, handle ) {\n\t\tvar name = \"on\" + type;\n\n\t\tif ( elem.detachEvent ) {\n\n\t\t\t// #8545, #7054, preventing memory leaks for custom events in IE6-8\n\t\t\t// detachEvent needed property on element, by name of that event, to properly expose it to GC\n\t\t\tif ( typeof elem[ name ] === strundefined ) {\n\t\t\t\telem[ name ] = null;\n\t\t\t}\n\n\t\t\telem.detachEvent( name, handle );\n\t\t}\n\t};\n\njQuery.Event = function( src, props ) {\n\t// Allow instantiation without the 'new' keyword\n\tif ( !(this instanceof jQuery.Event) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\t\t\t\t// Support: IE < 9, Android < 4.0\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || jQuery.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If preventDefault exists, run it on the original event\n\t\tif ( e.preventDefault ) {\n\t\t\te.preventDefault();\n\n\t\t// Support: IE\n\t\t// Otherwise set the returnValue property of the original event to false\n\t\t} else {\n\t\t\te.returnValue = false;\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\t\t// If stopPropagation exists, run it on the original event\n\t\tif ( e.stopPropagation ) {\n\t\t\te.stopPropagation();\n\t\t}\n\n\t\t// Support: IE\n\t\t// Set the cancelBubble property of the original event to true\n\t\te.cancelBubble = true;\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && e.stopImmediatePropagation ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\njQuery.each({\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mousenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || (related !== target && !jQuery.contains( target, related )) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n});\n\n// IE submit delegation\nif ( !support.submitBubbles ) {\n\n\tjQuery.event.special.submit = {\n\t\tsetup: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Lazy-add a submit handler when a descendant form may potentially be submitted\n\t\t\tjQuery.event.add( this, \"click._submit keypress._submit\", function( e ) {\n\t\t\t\t// Node name check avoids a VML-related crash in IE (#9807)\n\t\t\t\tvar elem = e.target,\n\t\t\t\t\tform = jQuery.nodeName( elem, \"input\" ) || jQuery.nodeName( elem, \"button\" ) ? elem.form : undefined;\n\t\t\t\tif ( form && !jQuery._data( form, \"submitBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( form, \"submit._submit\", function( event ) {\n\t\t\t\t\t\tevent._submit_bubble = true;\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( form, \"submitBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t\t// return undefined since we don't need an event listener\n\t\t},\n\n\t\tpostDispatch: function( event ) {\n\t\t\t// If form was submitted by the user, bubble the event up the tree\n\t\t\tif ( event._submit_bubble ) {\n\t\t\t\tdelete event._submit_bubble;\n\t\t\t\tif ( this.parentNode && !event.isTrigger ) {\n\t\t\t\t\tjQuery.event.simulate( \"submit\", this.parentNode, event, true );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Remove delegated handlers; cleanData eventually reaps submit handlers attached above\n\t\t\tjQuery.event.remove( this, \"._submit\" );\n\t\t}\n\t};\n}\n\n// IE change delegation and checkbox/radio fix\nif ( !support.changeBubbles ) {\n\n\tjQuery.event.special.change = {\n\n\t\tsetup: function() {\n\n\t\t\tif ( rformElems.test( this.nodeName ) ) {\n\t\t\t\t// IE doesn't fire change on a check/radio until blur; trigger it on click\n\t\t\t\t// after a propertychange. Eat the blur-change in special.change.handle.\n\t\t\t\t// This still fires onchange a second time for check/radio after blur.\n\t\t\t\tif ( this.type === \"checkbox\" || this.type === \"radio\" ) {\n\t\t\t\t\tjQuery.event.add( this, \"propertychange._change\", function( event ) {\n\t\t\t\t\t\tif ( event.originalEvent.propertyName === \"checked\" ) {\n\t\t\t\t\t\t\tthis._just_changed = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery.event.add( this, \"click._change\", function( event ) {\n\t\t\t\t\t\tif ( this._just_changed && !event.isTrigger ) {\n\t\t\t\t\t\t\tthis._just_changed = false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// Allow triggered, simulated change events (#11500)\n\t\t\t\t\t\tjQuery.event.simulate( \"change\", this, event, true );\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t// Delegated event; lazy-add a change handler on descendant inputs\n\t\t\tjQuery.event.add( this, \"beforeactivate._change\", function( e ) {\n\t\t\t\tvar elem = e.target;\n\n\t\t\t\tif ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, \"changeBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( elem, \"change._change\", function( event ) {\n\t\t\t\t\t\tif ( this.parentNode && !event.isSimulated && !event.isTrigger ) {\n\t\t\t\t\t\t\tjQuery.event.simulate( \"change\", this.parentNode, event, true );\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( elem, \"changeBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t},\n\n\t\thandle: function( event ) {\n\t\t\tvar elem = event.target;\n\n\t\t\t// Swallow native change events from checkbox/radio, we already triggered them above\n\t\t\tif ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== \"radio\" && elem.type !== \"checkbox\") ) {\n\t\t\t\treturn event.handleObj.handler.apply( this, arguments );\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\tjQuery.event.remove( this, \"._change\" );\n\n\t\t\treturn !rformElems.test( this.nodeName );\n\t\t}\n\t};\n}\n\n// Create \"bubbling\" focus and blur events\nif ( !support.focusinBubbles ) {\n\tjQuery.each({ focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );\n\t\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tjQuery._data( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tjQuery._removeData( doc, fix );\n\t\t\t\t} else {\n\t\t\t\t\tjQuery._data( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\njQuery.fn.extend({\n\n\ton: function( types, selector, data, fn, /*INTERNAL*/ one ) {\n\t\tvar type, origFn;\n\n\t\t// Types can be a map of types/handlers\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-Object, selector, data )\n\t\t\tif ( typeof selector !== \"string\" ) {\n\t\t\t\t// ( types-Object, data )\n\t\t\t\tdata = data || selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.on( type, selector, data, types[ type ], one );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( data == null && fn == null ) {\n\t\t\t// ( types, fn )\n\t\t\tfn = selector;\n\t\t\tdata = selector = undefined;\n\t\t} else if ( fn == null ) {\n\t\t\tif ( typeof selector === \"string\" ) {\n\t\t\t\t// ( types, selector, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = undefined;\n\t\t\t} else {\n\t\t\t\t// ( types, data, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t} else if ( !fn ) {\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( one === 1 ) {\n\t\t\torigFn = fn;\n\t\t\tfn = function( event ) {\n\t\t\t\t// Can use an empty set, since event contains the info\n\t\t\t\tjQuery().off( event );\n\t\t\t\treturn origFn.apply( this, arguments );\n\t\t\t};\n\t\t\t// Use same guid so caller can remove using origFn\n\t\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.add( this, types, fn, data, selector );\n\t\t});\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn this.on( types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ? handleObj.origType + \".\" + handleObj.namespace : handleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t});\n\t},\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t});\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[0];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n});\n\n\nfunction createSafeFragment( document ) {\n\tvar list = nodeNames.split( \"|\" ),\n\t\tsafeFrag = document.createDocumentFragment();\n\n\tif ( safeFrag.createElement ) {\n\t\twhile ( list.length ) {\n\t\t\tsafeFrag.createElement(\n\t\t\t\tlist.pop()\n\t\t\t);\n\t\t}\n\t}\n\treturn safeFrag;\n}\n\nvar nodeNames = \"abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|\" +\n\t\t\"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video\",\n\trinlinejQuery = / jQuery\\d+=\"(?:null|\\d+)\"/g,\n\trnoshimcache = new RegExp(\"<(?:\" + nodeNames + \")[\\\\s/>]\", \"i\"),\n\trleadingWhitespace = /^\\s+/,\n\trxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>]*)\\/>/gi,\n\trtagName = /<([\\w:]+)/,\n\trtbody = /<tbody/i,\n\trhtml = /<|&#?\\w+;/,\n\trnoInnerhtml = /<(?:script|style|link)/i,\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trscriptType = /^$|\\/(?:java|ecma)script/i,\n\trscriptTypeMasked = /^true\\/(.*)/,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g,\n\n\t// We have to close these tags to support XHTML (#13200)\n\twrapMap = {\n\t\toption: [ 1, \"<select multiple='multiple'>\", \"</select>\" ],\n\t\tlegend: [ 1, \"<fieldset>\", \"</fieldset>\" ],\n\t\tarea: [ 1, \"<map>\", \"</map>\" ],\n\t\tparam: [ 1, \"<object>\", \"</object>\" ],\n\t\tthead: [ 1, \"<table>\", \"</table>\" ],\n\t\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\t\tcol: [ 2, \"<table><tbody></tbody><colgroup>\", \"</colgroup></table>\" ],\n\t\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t\t// IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags,\n\t\t// unless wrapped in a div with non-breaking characters in front of it.\n\t\t_default: support.htmlSerialize ? [ 0, \"\", \"\" ] : [ 1, \"X<div>\", \"</div>\"  ]\n\t},\n\tsafeFragment = createSafeFragment( document ),\n\tfragmentDiv = safeFragment.appendChild( document.createElement(\"div\") );\n\nwrapMap.optgroup = wrapMap.option;\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\nfunction getAll( context, tag ) {\n\tvar elems, elem,\n\t\ti = 0,\n\t\tfound = typeof context.getElementsByTagName !== strundefined ? context.getElementsByTagName( tag || \"*\" ) :\n\t\t\ttypeof context.querySelectorAll !== strundefined ? context.querySelectorAll( tag || \"*\" ) :\n\t\t\tundefined;\n\n\tif ( !found ) {\n\t\tfor ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( !tag || jQuery.nodeName( elem, tag ) ) {\n\t\t\t\tfound.push( elem );\n\t\t\t} else {\n\t\t\t\tjQuery.merge( found, getAll( elem, tag ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn tag === undefined || tag && jQuery.nodeName( context, tag ) ?\n\t\tjQuery.merge( [ context ], found ) :\n\t\tfound;\n}\n\n// Used in buildFragment, fixes the defaultChecked property\nfunction fixDefaultChecked( elem ) {\n\tif ( rcheckableType.test( elem.type ) ) {\n\t\telem.defaultChecked = elem.checked;\n\t}\n}\n\n// Support: IE<8\n// Manipulating tables requires a tbody\nfunction manipulationTarget( elem, content ) {\n\treturn jQuery.nodeName( elem, \"table\" ) &&\n\t\tjQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ?\n\n\t\telem.getElementsByTagName(\"tbody\")[0] ||\n\t\t\telem.appendChild( elem.ownerDocument.createElement(\"tbody\") ) :\n\t\telem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = (jQuery.find.attr( elem, \"type\" ) !== null) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tvar match = rscriptTypeMasked.exec( elem.type );\n\tif ( match ) {\n\t\telem.type = match[1];\n\t} else {\n\t\telem.removeAttribute(\"type\");\n\t}\n\treturn elem;\n}\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar elem,\n\t\ti = 0;\n\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\tjQuery._data( elem, \"globalEval\", !refElements || jQuery._data( refElements[i], \"globalEval\" ) );\n\t}\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\n\tif ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {\n\t\treturn;\n\t}\n\n\tvar type, i, l,\n\t\toldData = jQuery._data( src ),\n\t\tcurData = jQuery._data( dest, oldData ),\n\t\tevents = oldData.events;\n\n\tif ( events ) {\n\t\tdelete curData.handle;\n\t\tcurData.events = {};\n\n\t\tfor ( type in events ) {\n\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t}\n\t\t}\n\t}\n\n\t// make the cloned public data object a copy from the original\n\tif ( curData.data ) {\n\t\tcurData.data = jQuery.extend( {}, curData.data );\n\t}\n}\n\nfunction fixCloneNodeIssues( src, dest ) {\n\tvar nodeName, e, data;\n\n\t// We do not need to do anything for non-Elements\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\tnodeName = dest.nodeName.toLowerCase();\n\n\t// IE6-8 copies events bound via attachEvent when using cloneNode.\n\tif ( !support.noCloneEvent && dest[ jQuery.expando ] ) {\n\t\tdata = jQuery._data( dest );\n\n\t\tfor ( e in data.events ) {\n\t\t\tjQuery.removeEvent( dest, e, data.handle );\n\t\t}\n\n\t\t// Event data gets referenced instead of copied if the expando gets copied too\n\t\tdest.removeAttribute( jQuery.expando );\n\t}\n\n\t// IE blanks contents when cloning scripts, and tries to evaluate newly-set text\n\tif ( nodeName === \"script\" && dest.text !== src.text ) {\n\t\tdisableScript( dest ).text = src.text;\n\t\trestoreScript( dest );\n\n\t// IE6-10 improperly clones children of object elements using classid.\n\t// IE10 throws NoModificationAllowedError if parent is null, #12132.\n\t} else if ( nodeName === \"object\" ) {\n\t\tif ( dest.parentNode ) {\n\t\t\tdest.outerHTML = src.outerHTML;\n\t\t}\n\n\t\t// This path appears unavoidable for IE9. When cloning an object\n\t\t// element in IE9, the outerHTML strategy above is not sufficient.\n\t\t// If the src has innerHTML and the destination does not,\n\t\t// copy the src.innerHTML into the dest.innerHTML. #10324\n\t\tif ( support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) {\n\t\t\tdest.innerHTML = src.innerHTML;\n\t\t}\n\n\t} else if ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\t// IE6-8 fails to persist the checked state of a cloned checkbox\n\t\t// or radio button. Worse, IE6-7 fail to give the cloned element\n\t\t// a checked appearance if the defaultChecked value isn't also set\n\n\t\tdest.defaultChecked = dest.checked = src.checked;\n\n\t\t// IE6-7 get confused and end up setting the value of a cloned\n\t\t// checkbox/radio button to an empty string instead of \"on\"\n\t\tif ( dest.value !== src.value ) {\n\t\t\tdest.value = src.value;\n\t\t}\n\n\t// IE6-8 fails to return the selected option to the default selected\n\t// state when cloning options\n\t} else if ( nodeName === \"option\" ) {\n\t\tdest.defaultSelected = dest.selected = src.defaultSelected;\n\n\t// IE6-8 fails to set the defaultValue to the correct value when\n\t// cloning other types of input fields\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\njQuery.extend({\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar destElements, node, clone, i, srcElements,\n\t\t\tinPage = jQuery.contains( elem.ownerDocument, elem );\n\n\t\tif ( support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( \"<\" + elem.nodeName + \">\" ) ) {\n\t\t\tclone = elem.cloneNode( true );\n\n\t\t// IE<=8 does not properly clone detached, unknown element nodes\n\t\t} else {\n\t\t\tfragmentDiv.innerHTML = elem.outerHTML;\n\t\t\tfragmentDiv.removeChild( clone = fragmentDiv.firstChild );\n\t\t}\n\n\t\tif ( (!support.noCloneEvent || !support.noCloneChecked) &&\n\t\t\t\t(elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\t// Fix all IE cloning issues\n\t\t\tfor ( i = 0; (node = srcElements[i]) != null; ++i ) {\n\t\t\t\t// Ensure that the destination node is not null; Fixes #9587\n\t\t\t\tif ( destElements[i] ) {\n\t\t\t\t\tfixCloneNodeIssues( node, destElements[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0; (node = srcElements[i]) != null; i++ ) {\n\t\t\t\t\tcloneCopyEvent( node, destElements[i] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\tdestElements = srcElements = node = null;\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tbuildFragment: function( elems, context, scripts, selection ) {\n\t\tvar j, elem, contains,\n\t\t\ttmp, tag, tbody, wrap,\n\t\t\tl = elems.length,\n\n\t\t\t// Ensure a safe fragment\n\t\t\tsafe = createSafeFragment( context ),\n\n\t\t\tnodes = [],\n\t\t\ti = 0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\telem = elems[ i ];\n\n\t\t\tif ( elem || elem === 0 ) {\n\n\t\t\t\t// Add nodes directly\n\t\t\t\tif ( jQuery.type( elem ) === \"object\" ) {\n\t\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t\t// Convert non-html into a text node\n\t\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t\t// Convert html into DOM nodes\n\t\t\t\t} else {\n\t\t\t\t\ttmp = tmp || safe.appendChild( context.createElement(\"div\") );\n\n\t\t\t\t\t// Deserialize a standard representation\n\t\t\t\t\ttag = (rtagName.exec( elem ) || [ \"\", \"\" ])[ 1 ].toLowerCase();\n\t\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\n\t\t\t\t\ttmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, \"<$1></$2>\" ) + wrap[2];\n\n\t\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\t\tj = wrap[0];\n\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Manually add leading whitespace removed by IE\n\t\t\t\t\tif ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {\n\t\t\t\t\t\tnodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove IE's autoinserted <tbody> from table fragments\n\t\t\t\t\tif ( !support.tbody ) {\n\n\t\t\t\t\t\t// String was a <table>, *may* have spurious <tbody>\n\t\t\t\t\t\telem = tag === \"table\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\ttmp.firstChild :\n\n\t\t\t\t\t\t\t// String was a bare <thead> or <tfoot>\n\t\t\t\t\t\t\twrap[1] === \"<table>\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\t\ttmp :\n\t\t\t\t\t\t\t\t0;\n\n\t\t\t\t\t\tj = elem && elem.childNodes.length;\n\t\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\t\tif ( jQuery.nodeName( (tbody = elem.childNodes[j]), \"tbody\" ) && !tbody.childNodes.length ) {\n\t\t\t\t\t\t\t\telem.removeChild( tbody );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t\t// Fix #12392 for WebKit and IE > 9\n\t\t\t\t\ttmp.textContent = \"\";\n\n\t\t\t\t\t// Fix #12392 for oldIE\n\t\t\t\t\twhile ( tmp.firstChild ) {\n\t\t\t\t\t\ttmp.removeChild( tmp.firstChild );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remember the top-level container for proper cleanup\n\t\t\t\t\ttmp = safe.lastChild;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Fix #11356: Clear elements from fragment\n\t\tif ( tmp ) {\n\t\t\tsafe.removeChild( tmp );\n\t\t}\n\n\t\t// Reset defaultChecked for any radios and checkboxes\n\t\t// about to be appended to the DOM in IE 6/7 (#8060)\n\t\tif ( !support.appendChecked ) {\n\t\t\tjQuery.grep( getAll( nodes, \"input\" ), fixDefaultChecked );\n\t\t}\n\n\t\ti = 0;\n\t\twhile ( (elem = nodes[ i++ ]) ) {\n\n\t\t\t// #4087 - If origin and destination elements are the same, and this is\n\t\t\t// that element, do not do anything\n\t\t\tif ( selection && jQuery.inArray( elem, selection ) !== -1 ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tcontains = jQuery.contains( elem.ownerDocument, elem );\n\n\t\t\t// Append to fragment\n\t\t\ttmp = getAll( safe.appendChild( elem ), \"script\" );\n\n\t\t\t// Preserve script evaluation history\n\t\t\tif ( contains ) {\n\t\t\t\tsetGlobalEval( tmp );\n\t\t\t}\n\n\t\t\t// Capture executables\n\t\t\tif ( scripts ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (elem = tmp[ j++ ]) ) {\n\t\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\t\tscripts.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\ttmp = null;\n\n\t\treturn safe;\n\t},\n\n\tcleanData: function( elems, /* internal */ acceptData ) {\n\t\tvar elem, type, id, data,\n\t\t\ti = 0,\n\t\t\tinternalKey = jQuery.expando,\n\t\t\tcache = jQuery.cache,\n\t\t\tdeleteExpando = support.deleteExpando,\n\t\t\tspecial = jQuery.event.special;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( acceptData || jQuery.acceptData( elem ) ) {\n\n\t\t\t\tid = elem[ internalKey ];\n\t\t\t\tdata = id && cache[ id ];\n\n\t\t\t\tif ( data ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove cache only if it was not already removed by jQuery.event.remove\n\t\t\t\t\tif ( cache[ id ] ) {\n\n\t\t\t\t\t\tdelete cache[ id ];\n\n\t\t\t\t\t\t// IE does not allow us to delete expando properties from nodes,\n\t\t\t\t\t\t// nor does it have a removeAttribute function on Document nodes;\n\t\t\t\t\t\t// we must handle all of these cases\n\t\t\t\t\t\tif ( deleteExpando ) {\n\t\t\t\t\t\t\tdelete elem[ internalKey ];\n\n\t\t\t\t\t\t} else if ( typeof elem.removeAttribute !== strundefined ) {\n\t\t\t\t\t\t\telem.removeAttribute( internalKey );\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\telem[ internalKey ] = null;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tdeletedIds.push( id );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\njQuery.fn.extend({\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t});\n\t},\n\n\tprepend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t});\n\t},\n\n\tbefore: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t});\n\t},\n\n\tafter: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t});\n\t},\n\n\tremove: function( selector, keepData /* Internal Use Only */ ) {\n\t\tvar elem,\n\t\t\telems = selector ? jQuery.filter( selector, this ) : this,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\n\t\t\tif ( !keepData && elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem ) );\n\t\t\t}\n\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\tif ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\t\tsetGlobalEval( getAll( elem, \"script\" ) );\n\t\t\t\t}\n\t\t\t\telem.parentNode.removeChild( elem );\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = this[i]) != null; i++ ) {\n\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t}\n\n\t\t\t// Remove any remaining nodes\n\t\t\twhile ( elem.firstChild ) {\n\t\t\t\telem.removeChild( elem.firstChild );\n\t\t\t}\n\n\t\t\t// If this is a select, ensure that it displays empty (#12336)\n\t\t\t// Support: IE<9\n\t\t\tif ( elem.options && jQuery.nodeName( elem, \"select\" ) ) {\n\t\t\t\telem.options.length = 0;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map(function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t});\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined ) {\n\t\t\t\treturn elem.nodeType === 1 ?\n\t\t\t\t\telem.innerHTML.replace( rinlinejQuery, \"\" ) :\n\t\t\t\t\tundefined;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t( support.htmlSerialize || !rnoshimcache.test( value )  ) &&\n\t\t\t\t( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&\n\t\t\t\t!wrapMap[ (rtagName.exec( value ) || [ \"\", \"\" ])[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = value.replace( rxhtmlTag, \"<$1></$2>\" );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor (; i < l; i++ ) {\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\telem = this[i] || {};\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar arg = arguments[ 0 ];\n\n\t\t// Make the changes, replacing each context element with the new content\n\t\tthis.domManip( arguments, function( elem ) {\n\t\t\targ = this.parentNode;\n\n\t\t\tjQuery.cleanData( getAll( this ) );\n\n\t\t\tif ( arg ) {\n\t\t\t\targ.replaceChild( elem, this );\n\t\t\t}\n\t\t});\n\n\t\t// Force removal if there was no new content (e.g., from empty arguments)\n\t\treturn arg && (arg.length || arg.nodeType) ? this : this.remove();\n\t},\n\n\tdetach: function( selector ) {\n\t\treturn this.remove( selector, true );\n\t},\n\n\tdomManip: function( args, callback ) {\n\n\t\t// Flatten any nested arrays\n\t\targs = concat.apply( [], args );\n\n\t\tvar first, node, hasScripts,\n\t\t\tscripts, doc, fragment,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tset = this,\n\t\t\tiNoClone = l - 1,\n\t\t\tvalue = args[0],\n\t\t\tisFunction = jQuery.isFunction( value );\n\n\t\t// We can't cloneNode fragments that contain checked, in WebKit\n\t\tif ( isFunction ||\n\t\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\t\treturn this.each(function( index ) {\n\t\t\t\tvar self = set.eq( index );\n\t\t\t\tif ( isFunction ) {\n\t\t\t\t\targs[0] = value.call( this, index, self.html() );\n\t\t\t\t}\n\t\t\t\tself.domManip( args, callback );\n\t\t\t});\n\t\t}\n\n\t\tif ( l ) {\n\t\t\tfragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );\n\t\t\tfirst = fragment.firstChild;\n\n\t\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\t\tfragment = first;\n\t\t\t}\n\n\t\t\tif ( first ) {\n\t\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\t\thasScripts = scripts.length;\n\n\t\t\t\t// Use the original fragment for the last item instead of the first because it can end up\n\t\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\tnode = fragment;\n\n\t\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tcallback.call( this[i], node, i );\n\t\t\t\t}\n\n\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t\t// Reenable scripts\n\t\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t\t!jQuery._data( node, \"globalEval\" ) && jQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\t\tif ( node.src ) {\n\t\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\t\tif ( jQuery._evalUrl ) {\n\t\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.globalEval( ( node.text || node.textContent || node.innerHTML || \"\" ).replace( rcleanScript, \"\" ) );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Fix #11809: Avoid leaking memory\n\t\t\t\tfragment = first = null;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t}\n});\n\njQuery.each({\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\ti = 0,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone(true);\n\t\t\tjQuery( insert[i] )[ original ]( elems );\n\n\t\t\t// Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get()\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\n\n\nvar iframe,\n\telemdisplay = {};\n\n/**\n * Retrieve the actual display of a element\n * @param {String} name nodeName of the element\n * @param {Object} doc Document object\n */\n// Called only from within defaultDisplay\nfunction actualDisplay( name, doc ) {\n\tvar style,\n\t\telem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),\n\n\t\t// getDefaultComputedStyle might be reliably used only on attached element\n\t\tdisplay = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ?\n\n\t\t\t// Use of this method is a temporary fix (more like optmization) until something better comes along,\n\t\t\t// since it was removed from specification and supported only in FF\n\t\t\tstyle.display : jQuery.css( elem[ 0 ], \"display\" );\n\n\t// We don't have any data stored on the element,\n\t// so use \"detach\" method as fast way to get rid of the element\n\telem.detach();\n\n\treturn display;\n}\n\n/**\n * Try to determine the default display value of an element\n * @param {String} nodeName\n */\nfunction defaultDisplay( nodeName ) {\n\tvar doc = document,\n\t\tdisplay = elemdisplay[ nodeName ];\n\n\tif ( !display ) {\n\t\tdisplay = actualDisplay( nodeName, doc );\n\n\t\t// If the simple way fails, read from inside an iframe\n\t\tif ( display === \"none\" || !display ) {\n\n\t\t\t// Use the already-created iframe if possible\n\t\t\tiframe = (iframe || jQuery( \"<iframe frameborder='0' width='0' height='0'/>\" )).appendTo( doc.documentElement );\n\n\t\t\t// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse\n\t\t\tdoc = ( iframe[ 0 ].contentWindow || iframe[ 0 ].contentDocument ).document;\n\n\t\t\t// Support: IE\n\t\t\tdoc.write();\n\t\t\tdoc.close();\n\n\t\t\tdisplay = actualDisplay( nodeName, doc );\n\t\t\tiframe.detach();\n\t\t}\n\n\t\t// Store the correct default display\n\t\telemdisplay[ nodeName ] = display;\n\t}\n\n\treturn display;\n}\n\n\n(function() {\n\tvar shrinkWrapBlocksVal;\n\n\tsupport.shrinkWrapBlocks = function() {\n\t\tif ( shrinkWrapBlocksVal != null ) {\n\t\t\treturn shrinkWrapBlocksVal;\n\t\t}\n\n\t\t// Will be changed later if needed.\n\t\tshrinkWrapBlocksVal = false;\n\n\t\t// Minified: var b,c,d\n\t\tvar div, body, container;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\t// Support: IE6\n\t\t// Check if elements with layout shrink-wrap their children\n\t\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t\t// Reset CSS: box-sizing; display; margin; border\n\t\t\tdiv.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;\" +\n\t\t\t\t\"padding:1px;width:1px;zoom:1\";\n\t\t\tdiv.appendChild( document.createElement( \"div\" ) ).style.width = \"5px\";\n\t\t\tshrinkWrapBlocksVal = div.offsetWidth !== 3;\n\t\t}\n\n\t\tbody.removeChild( container );\n\n\t\treturn shrinkWrapBlocksVal;\n\t};\n\n})();\nvar rmargin = (/^margin/);\n\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\n\n\nvar getStyles, curCSS,\n\trposition = /^(top|right|bottom|left)$/;\n\nif ( window.getComputedStyle ) {\n\tgetStyles = function( elem ) {\n\t\t// Support: IE<=11+, Firefox<=30+ (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tif ( elem.ownerDocument.defaultView.opener ) {\n\t\t\treturn elem.ownerDocument.defaultView.getComputedStyle( elem, null );\n\t\t}\n\n\t\treturn window.getComputedStyle( elem, null );\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar width, minWidth, maxWidth, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\n\t\t// getPropertyValue is only needed for .css('filter') in IE9, see #12537\n\t\tret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;\n\n\t\tif ( computed ) {\n\n\t\t\tif ( ret === \"\" && !jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\tret = jQuery.style( elem, name );\n\t\t\t}\n\n\t\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t\t// Chrome < 17 and Safari 5.0 uses \"computed value\" instead of \"used value\" for margin-right\n\t\t\t// Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels\n\t\t\t// this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values\n\t\t\tif ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {\n\n\t\t\t\t// Remember the original values\n\t\t\t\twidth = style.width;\n\t\t\t\tminWidth = style.minWidth;\n\t\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t\t// Put in the new values to get a computed value out\n\t\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\t\tret = computed.width;\n\n\t\t\t\t// Revert the changed values\n\t\t\t\tstyle.width = width;\n\t\t\t\tstyle.minWidth = minWidth;\n\t\t\t\tstyle.maxWidth = maxWidth;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\";\n\t};\n} else if ( document.documentElement.currentStyle ) {\n\tgetStyles = function( elem ) {\n\t\treturn elem.currentStyle;\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar left, rs, rsLeft, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\t\tret = computed ? computed[ name ] : undefined;\n\n\t\t// Avoid setting ret to empty string here\n\t\t// so we don't default to auto\n\t\tif ( ret == null && style && style[ name ] ) {\n\t\t\tret = style[ name ];\n\t\t}\n\n\t\t// From the awesome hack by Dean Edwards\n\t\t// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291\n\n\t\t// If we're not dealing with a regular pixel number\n\t\t// but a number that has a weird ending, we need to convert it to pixels\n\t\t// but not position css attributes, as those are proportional to the parent element instead\n\t\t// and we can't measure the parent instead because it might trigger a \"stacking dolls\" problem\n\t\tif ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\tleft = style.left;\n\t\t\trs = elem.runtimeStyle;\n\t\t\trsLeft = rs && rs.left;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = elem.currentStyle.left;\n\t\t\t}\n\t\t\tstyle.left = name === \"fontSize\" ? \"1em\" : ret;\n\t\t\tret = style.pixelLeft + \"px\";\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.left = left;\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = rsLeft;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\" || \"auto\";\n\t};\n}\n\n\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tvar condition = conditionFn();\n\n\t\t\tif ( condition == null ) {\n\t\t\t\t// The test was not ready at this point; screw the hook this time\n\t\t\t\t// but check again when needed next time.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( condition ) {\n\t\t\t\t// Hook not needed (or it's not possible to use it due to missing dependency),\n\t\t\t\t// remove it.\n\t\t\t\t// Since there are no other hooks for marginRight, remove the whole object.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\n\t\t\treturn (this.get = hookFn).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\n(function() {\n\t// Minified: var b,c,d,e,f,g, h,i\n\tvar div, style, a, pixelPositionVal, boxSizingReliableVal,\n\t\treliableHiddenOffsetsVal, reliableMarginRightVal;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName( \"a\" )[ 0 ];\n\tstyle = a && a.style;\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !style ) {\n\t\treturn;\n\t}\n\n\tstyle.cssText = \"float:left;opacity:.5\";\n\n\t// Support: IE<9\n\t// Make sure that element opacity exists (as opposed to filter)\n\tsupport.opacity = style.opacity === \"0.5\";\n\n\t// Verify style float existence\n\t// (IE uses styleFloat instead of cssFloat)\n\tsupport.cssFloat = !!style.cssFloat;\n\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\t// Support: Firefox<29, Android 2.3\n\t// Vendor-prefix box-sizing\n\tsupport.boxSizing = style.boxSizing === \"\" || style.MozBoxSizing === \"\" ||\n\t\tstyle.WebkitBoxSizing === \"\";\n\n\tjQuery.extend(support, {\n\t\treliableHiddenOffsets: function() {\n\t\t\tif ( reliableHiddenOffsetsVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableHiddenOffsetsVal;\n\t\t},\n\n\t\tboxSizingReliable: function() {\n\t\t\tif ( boxSizingReliableVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\n\t\tpixelPosition: function() {\n\t\t\tif ( pixelPositionVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn pixelPositionVal;\n\t\t},\n\n\t\t// Support: Android 2.3\n\t\treliableMarginRight: function() {\n\t\t\tif ( reliableMarginRightVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableMarginRightVal;\n\t\t}\n\t});\n\n\tfunction computeStyleTests() {\n\t\t// Minified: var b,c,d,j\n\t\tvar div, body, container, contents;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\tdiv.style.cssText =\n\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t// Vendor-prefix box-sizing\n\t\t\t\"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;\" +\n\t\t\t\"box-sizing:border-box;display:block;margin-top:1%;top:1%;\" +\n\t\t\t\"border:1px;padding:1px;width:4px;position:absolute\";\n\n\t\t// Support: IE<9\n\t\t// Assume reasonable values in the absence of getComputedStyle\n\t\tpixelPositionVal = boxSizingReliableVal = false;\n\t\treliableMarginRightVal = true;\n\n\t\t// Check for getComputedStyle so that this code is not run in IE<9.\n\t\tif ( window.getComputedStyle ) {\n\t\t\tpixelPositionVal = ( window.getComputedStyle( div, null ) || {} ).top !== \"1%\";\n\t\t\tboxSizingReliableVal =\n\t\t\t\t( window.getComputedStyle( div, null ) || { width: \"4px\" } ).width === \"4px\";\n\n\t\t\t// Support: Android 2.3\n\t\t\t// Div with explicit width and no margin-right incorrectly\n\t\t\t// gets computed margin-right based on width of container (#3333)\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\tcontents = div.appendChild( document.createElement( \"div\" ) );\n\n\t\t\t// Reset CSS: box-sizing; display; margin; border; padding\n\t\t\tcontents.style.cssText = div.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;padding:0\";\n\t\t\tcontents.style.marginRight = contents.style.width = \"0\";\n\t\t\tdiv.style.width = \"1px\";\n\n\t\t\treliableMarginRightVal =\n\t\t\t\t!parseFloat( ( window.getComputedStyle( contents, null ) || {} ).marginRight );\n\n\t\t\tdiv.removeChild( contents );\n\t\t}\n\n\t\t// Support: IE8\n\t\t// Check if table cells still have offsetWidth/Height when they are set\n\t\t// to display:none and there are still other visible table cells in a\n\t\t// table row; if so, offsetWidth/Height are not reliable for use when\n\t\t// determining if an element has been hidden directly using\n\t\t// display:none (it is still safe to use offsets if a parent element is\n\t\t// hidden; don safety goggles and see bug #4512 for more information).\n\t\tdiv.innerHTML = \"<table><tr><td></td><td>t</td></tr></table>\";\n\t\tcontents = div.getElementsByTagName( \"td\" );\n\t\tcontents[ 0 ].style.cssText = \"margin:0;border:0;padding:0;display:none\";\n\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\tif ( reliableHiddenOffsetsVal ) {\n\t\t\tcontents[ 0 ].style.display = \"\";\n\t\t\tcontents[ 1 ].style.display = \"none\";\n\t\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\t}\n\n\t\tbody.removeChild( container );\n\t}\n\n})();\n\n\n// A method for quickly swapping in/out CSS properties to get correct calculations.\njQuery.swap = function( elem, options, callback, args ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.apply( elem, args || [] );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar\n\t\tralpha = /alpha\\([^)]*\\)/i,\n\tropacity = /opacity\\s*=\\s*([^)]*)/,\n\n\t// swappable if display is none or starts with table except \"table\", \"table-cell\", or \"table-caption\"\n\t// see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trnumsplit = new RegExp( \"^(\" + pnum + \")(.*)$\", \"i\" ),\n\trrelNum = new RegExp( \"^([+-])=(\" + pnum + \")\", \"i\" ),\n\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t},\n\n\tcssPrefixes = [ \"Webkit\", \"O\", \"Moz\", \"ms\" ];\n\n\n// return a css property mapped to a potentially vendor prefixed property\nfunction vendorPropName( style, name ) {\n\n\t// shortcut for names that are not vendor prefixed\n\tif ( name in style ) {\n\t\treturn name;\n\t}\n\n\t// check for vendor prefixed names\n\tvar capName = name.charAt(0).toUpperCase() + name.slice(1),\n\t\torigName = name,\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in style ) {\n\t\t\treturn name;\n\t\t}\n\t}\n\n\treturn origName;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem, hidden,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\" );\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\t\t\t// Reset the inline display of this element to learn if it is\n\t\t\t// being hidden by cascaded rules or not\n\t\t\tif ( !values[ index ] && display === \"none\" ) {\n\t\t\t\telem.style.display = \"\";\n\t\t\t}\n\n\t\t\t// Set elements which have been overridden with display: none\n\t\t\t// in a stylesheet to whatever the default browser style is\n\t\t\t// for such an element\n\t\t\tif ( elem.style.display === \"\" && isHidden( elem ) ) {\n\t\t\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\", defaultDisplay(elem.nodeName) );\n\t\t\t}\n\t\t} else {\n\t\t\thidden = isHidden( elem );\n\n\t\t\tif ( display && display !== \"none\" || !hidden ) {\n\t\t\t\tjQuery._data( elem, \"olddisplay\", hidden ? display : jQuery.css( elem, \"display\" ) );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of most of the elements in a second loop\n\t// to avoid the constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( !show || elem.style.display === \"none\" || elem.style.display === \"\" ) {\n\t\t\telem.style.display = show ? values[ index ] || \"\" : \"none\";\n\t\t}\n\t}\n\n\treturn elements;\n}\n\nfunction setPositiveNumber( elem, value, subtract ) {\n\tvar matches = rnumsplit.exec( value );\n\treturn matches ?\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {\n\tvar i = extra === ( isBorderBox ? \"border\" : \"content\" ) ?\n\t\t// If we already have the right measurement, avoid augmentation\n\t\t4 :\n\t\t// Otherwise initialize for horizontal or vertical properties\n\t\tname === \"width\" ? 1 : 0,\n\n\t\tval = 0;\n\n\tfor ( ; i < 4; i += 2 ) {\n\t\t// both box models exclude margin, so add it if we want it\n\t\tif ( extra === \"margin\" ) {\n\t\t\tval += jQuery.css( elem, extra + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\tif ( isBorderBox ) {\n\t\t\t// border-box includes padding, so remove it if we want content\n\t\t\tif ( extra === \"content\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// at this point, extra isn't border nor margin, so remove border\n\t\t\tif ( extra !== \"margin\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t} else {\n\t\t\t// at this point, extra isn't content, so add padding\n\t\t\tval += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// at this point, extra isn't content nor padding, so add border\n\t\t\tif ( extra !== \"padding\" ) {\n\t\t\t\tval += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn val;\n}\n\nfunction getWidthOrHeight( elem, name, extra ) {\n\n\t// Start with offset property, which is equivalent to the border-box value\n\tvar valueIsBorderBox = true,\n\t\tval = name === \"width\" ? elem.offsetWidth : elem.offsetHeight,\n\t\tstyles = getStyles( elem ),\n\t\tisBorderBox = support.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t// some non-html elements return undefined for offsetWidth, so check for null/undefined\n\t// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285\n\t// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668\n\tif ( val <= 0 || val == null ) {\n\t\t// Fall back to computed then uncomputed css if necessary\n\t\tval = curCSS( elem, name, styles );\n\t\tif ( val < 0 || val == null ) {\n\t\t\tval = elem.style[ name ];\n\t\t}\n\n\t\t// Computed unit is not pixels. Stop here and return.\n\t\tif ( rnumnonpx.test(val) ) {\n\t\t\treturn val;\n\t\t}\n\n\t\t// we need the check for style in case a browser which returns unreliable values\n\t\t// for getComputedStyle silently falls back to the reliable elem.style\n\t\tvalueIsBorderBox = isBorderBox && ( support.boxSizingReliable() || val === elem.style[ name ] );\n\n\t\t// Normalize \"\", auto, and prepare for extra\n\t\tval = parseFloat( val ) || 0;\n\t}\n\n\t// use the active box-sizing model to add/subtract irrelevant styles\n\treturn ( val +\n\t\taugmentWidthOrHeight(\n\t\t\telem,\n\t\t\tname,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend({\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {\n\t\t// normalize float css property\n\t\t\"float\": support.cssFloat ? \"cssFloat\" : \"styleFloat\"\n\t},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = jQuery.camelCase( name ),\n\t\t\tstyle = elem.style;\n\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// convert relative number strings (+= or -=) to relative numbers. #7345\n\t\t\tif ( type === \"string\" && (ret = rrelNum.exec( value )) ) {\n\t\t\t\tvalue = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set. See: #7116\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add 'px' to the (except for certain CSS properties)\n\t\t\tif ( type === \"number\" && !jQuery.cssNumber[ origName ] ) {\n\t\t\t\tvalue += \"px\";\n\t\t\t}\n\n\t\t\t// Fixes #8908, it can be done more correctly by specifing setters in cssHooks,\n\t\t\t// but it would mean to define eight (for every problematic property) identical functions\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf(\"background\") === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !(\"set\" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {\n\n\t\t\t\t// Support: IE\n\t\t\t\t// Swallow errors from 'invalid' CSS values (#5509)\n\t\t\t\ttry {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t} else {\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar num, val, hooks,\n\t\t\torigName = jQuery.camelCase( name );\n\n\t\t// Make sure that we're working with the right name\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t//convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Return, converting to number if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || jQuery.isNumeric( num ) ? num || 0 : val;\n\t\t}\n\t\treturn val;\n\t}\n});\n\njQuery.each([ \"height\", \"width\" ], function( i, name ) {\n\tjQuery.cssHooks[ name ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\t\t\t\t// certain elements can have dimension info if we invisibly show them\n\t\t\t\t// however, it must have a current display style that would benefit from this\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) && elem.offsetWidth === 0 ?\n\t\t\t\t\tjQuery.swap( elem, cssShow, function() {\n\t\t\t\t\t\treturn getWidthOrHeight( elem, name, extra );\n\t\t\t\t\t}) :\n\t\t\t\t\tgetWidthOrHeight( elem, name, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar styles = extra && getStyles( elem );\n\t\t\treturn setPositiveNumber( elem, value, extra ?\n\t\t\t\taugmentWidthOrHeight(\n\t\t\t\t\telem,\n\t\t\t\t\tname,\n\t\t\t\t\textra,\n\t\t\t\t\tsupport.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\t\tstyles\n\t\t\t\t) : 0\n\t\t\t);\n\t\t}\n\t};\n});\n\nif ( !support.opacity ) {\n\tjQuery.cssHooks.opacity = {\n\t\tget: function( elem, computed ) {\n\t\t\t// IE uses filters for opacity\n\t\t\treturn ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || \"\" ) ?\n\t\t\t\t( 0.01 * parseFloat( RegExp.$1 ) ) + \"\" :\n\t\t\t\tcomputed ? \"1\" : \"\";\n\t\t},\n\n\t\tset: function( elem, value ) {\n\t\t\tvar style = elem.style,\n\t\t\t\tcurrentStyle = elem.currentStyle,\n\t\t\t\topacity = jQuery.isNumeric( value ) ? \"alpha(opacity=\" + value * 100 + \")\" : \"\",\n\t\t\t\tfilter = currentStyle && currentStyle.filter || style.filter || \"\";\n\n\t\t\t// IE has trouble with opacity if it does not have layout\n\t\t\t// Force it by setting the zoom level\n\t\t\tstyle.zoom = 1;\n\n\t\t\t// if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652\n\t\t\t// if value === \"\", then remove inline opacity #12685\n\t\t\tif ( ( value >= 1 || value === \"\" ) &&\n\t\t\t\t\tjQuery.trim( filter.replace( ralpha, \"\" ) ) === \"\" &&\n\t\t\t\t\tstyle.removeAttribute ) {\n\n\t\t\t\t// Setting style.filter to null, \"\" & \" \" still leave \"filter:\" in the cssText\n\t\t\t\t// if \"filter:\" is present at all, clearType is disabled, we want to avoid this\n\t\t\t\t// style.removeAttribute is IE Only, but so apparently is this code path...\n\t\t\t\tstyle.removeAttribute( \"filter\" );\n\n\t\t\t\t// if there is no filter style applied in a css rule or unset inline opacity, we are done\n\t\t\t\tif ( value === \"\" || currentStyle && !currentStyle.filter ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// otherwise, set new filter values\n\t\t\tstyle.filter = ralpha.test( filter ) ?\n\t\t\t\tfilter.replace( ralpha, opacity ) :\n\t\t\t\tfilter + \" \" + opacity;\n\t\t}\n\t};\n}\n\njQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\t// Work around by temporarily setting element display to inline-block\n\t\t\treturn jQuery.swap( elem, { \"display\": \"inline-block\" },\n\t\t\t\tcurCSS, [ elem, \"marginRight\" ] );\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each({\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split(\" \") : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( !rmargin.test( prefix ) ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n});\n\njQuery.fn.extend({\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( jQuery.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t},\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( isHidden( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t});\n\t}\n});\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || \"swing\";\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\tif ( tween.elem[ tween.prop ] != null &&\n\t\t\t\t(!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails\n\t\t\t// so, simple values such as \"10px\" are parsed to Float.\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\t\t\t// use step hook for back compat - use cssHook if its there - use .style if its\n\t\t\t// available and use plain properties where available\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9\n// Panic based approach to setting things on disconnected nodes\n\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t}\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back Compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, timerId,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trfxnum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" ),\n\trrun = /queueHooks$/,\n\tanimationPrefilters = [ defaultPrefilter ],\n\ttweeners = {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value ),\n\t\t\t\ttarget = tween.cur(),\n\t\t\t\tparts = rfxnum.exec( value ),\n\t\t\t\tunit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t\t\t// Starting value computation is required for potential unit mismatches\n\t\t\t\tstart = ( jQuery.cssNumber[ prop ] || unit !== \"px\" && +target ) &&\n\t\t\t\t\trfxnum.exec( jQuery.css( tween.elem, prop ) ),\n\t\t\t\tscale = 1,\n\t\t\t\tmaxIterations = 20;\n\n\t\t\tif ( start && start[ 3 ] !== unit ) {\n\t\t\t\t// Trust units reported by jQuery.css\n\t\t\t\tunit = unit || start[ 3 ];\n\n\t\t\t\t// Make sure we update the tween properties later on\n\t\t\t\tparts = parts || [];\n\n\t\t\t\t// Iteratively approximate from a nonzero starting point\n\t\t\t\tstart = +target || 1;\n\n\t\t\t\tdo {\n\t\t\t\t\t// If previous iteration zeroed out, double until we get *something*\n\t\t\t\t\t// Use a string for doubling factor so we don't accidentally see scale as unchanged below\n\t\t\t\t\tscale = scale || \".5\";\n\n\t\t\t\t\t// Adjust and apply\n\t\t\t\t\tstart = start / scale;\n\t\t\t\t\tjQuery.style( tween.elem, prop, start + unit );\n\n\t\t\t\t// Update scale, tolerating zero or NaN from tween.cur()\n\t\t\t\t// And breaking the loop if scale is unchanged or perfect, or if we've just had enough\n\t\t\t\t} while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );\n\t\t\t}\n\n\t\t\t// Update tween properties\n\t\t\tif ( parts ) {\n\t\t\t\tstart = tween.start = +start || +target || 0;\n\t\t\t\ttween.unit = unit;\n\t\t\t\t// If a +=/-= token was provided, we're doing a relative animation\n\t\t\t\ttween.end = parts[ 1 ] ?\n\t\t\t\t\tstart + ( parts[ 1 ] + 1 ) * parts[ 2 ] :\n\t\t\t\t\t+parts[ 2 ];\n\t\t\t}\n\n\t\t\treturn tween;\n\t\t} ]\n\t};\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\tsetTimeout(function() {\n\t\tfxNow = undefined;\n\t});\n\treturn ( fxNow = jQuery.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\tattrs = { height: type },\n\t\ti = 0;\n\n\t// if we include width, step value is 1 to do all cssExpand values,\n\t// if we don't include width, step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4 ; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( tweeners[ prop ] || [] ).concat( tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( (tween = collection[ index ].call( animation, prop, value )) ) {\n\n\t\t\t// we're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\t/* jshint validthis: true */\n\tvar prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHidden( elem ),\n\t\tdataShow = jQuery._data( elem, \"fxshow\" );\n\n\t// handle queue: false promises\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always(function() {\n\t\t\t// doing this makes sure that the complete handler will be called\n\t\t\t// before this completes\n\t\t\tanim.always(function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t}\n\n\t// height/width overflow pass\n\tif ( elem.nodeType === 1 && ( \"height\" in props || \"width\" in props ) ) {\n\t\t// Make sure that nothing sneaks out\n\t\t// Record all 3 overflow attributes because IE does not\n\t\t// change the overflow attribute when overflowX and\n\t\t// overflowY are set to the same value\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Set display property to inline-block for height/width\n\t\t// animations on inline elements that are having width/height animated\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\n\t\t// Test default display if display is currently \"none\"\n\t\tcheckDisplay = display === \"none\" ?\n\t\t\tjQuery._data( elem, \"olddisplay\" ) || defaultDisplay( elem.nodeName ) : display;\n\n\t\tif ( checkDisplay === \"inline\" && jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t// inline-level elements accept inline-block;\n\t\t\t// block-level elements need to be inline with layout\n\t\t\tif ( !support.inlineBlockNeedsLayout || defaultDisplay( elem.nodeName ) === \"inline\" ) {\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t} else {\n\t\t\t\tstyle.zoom = 1;\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tif ( !support.shrinkWrapBlocks() ) {\n\t\t\tanim.always(function() {\n\t\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t\t});\n\t\t}\n\t}\n\n\t// show/hide pass\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.exec( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\n\t\t// Any non-fx value stops us from restoring the original display value\n\t\t} else {\n\t\t\tdisplay = undefined;\n\t\t}\n\t}\n\n\tif ( !jQuery.isEmptyObject( orig ) ) {\n\t\tif ( dataShow ) {\n\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\thidden = dataShow.hidden;\n\t\t\t}\n\t\t} else {\n\t\t\tdataShow = jQuery._data( elem, \"fxshow\", {} );\n\t\t}\n\n\t\t// store state if its toggle - enables .stop().toggle() to \"reverse\"\n\t\tif ( toggle ) {\n\t\t\tdataShow.hidden = !hidden;\n\t\t}\n\t\tif ( hidden ) {\n\t\t\tjQuery( elem ).show();\n\t\t} else {\n\t\t\tanim.done(function() {\n\t\t\t\tjQuery( elem ).hide();\n\t\t\t});\n\t\t}\n\t\tanim.done(function() {\n\t\t\tvar prop;\n\t\t\tjQuery._removeData( elem, \"fxshow\" );\n\t\t\tfor ( prop in orig ) {\n\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t}\n\t\t});\n\t\tfor ( prop in orig ) {\n\t\t\ttween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\n\t\t\tif ( !( prop in dataShow ) ) {\n\t\t\t\tdataShow[ prop ] = tween.start;\n\t\t\t\tif ( hidden ) {\n\t\t\t\t\ttween.end = tween.start;\n\t\t\t\t\ttween.start = prop === \"width\" || prop === \"height\" ? 1 : 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t// If this is a noop like .hide().hide(), restore an overwritten display value\n\t} else if ( (display === \"none\" ? defaultDisplay( elem.nodeName ) : display) === \"inline\" ) {\n\t\tstyle.display = display;\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = jQuery.camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( jQuery.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// not quite $.extend, this wont overwrite keys already present.\n\t\t\t// also - reusing 'index' from above because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = animationPrefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\t\t\t// don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t}),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\t\t\t\t// archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ]);\n\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t} else {\n\t\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\t\tanimation = deferred.promise({\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, { specialEasing: {} }, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\t\t\t\t\t// if we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// resolve when we played the last frame\n\t\t\t\t// otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t}),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length ; index++ ) {\n\t\tresult = animationPrefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( jQuery.isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t})\n\t);\n\n\t// attach callbacks from options\n\treturn animation.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\ttweener: function( props, callback ) {\n\t\tif ( jQuery.isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.split(\" \");\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length ; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\ttweeners[ prop ] = tweeners[ prop ] || [];\n\t\t\ttweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tanimationPrefilters.unshift( callback );\n\t\t} else {\n\t\t\tanimationPrefilters.push( callback );\n\t\t}\n\t}\n});\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tjQuery.isFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !jQuery.isFunction( easing ) && easing\n\t};\n\n\topt.duration = jQuery.fx.off ? 0 : typeof opt.duration === \"number\" ? opt.duration :\n\t\topt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;\n\n\t// normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( jQuery.isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend({\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHidden ).css( \"opacity\", 0 ).show()\n\n\t\t\t// animate to the value specified\n\t\t\t.end().animate({ opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || jQuery._data( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue && type !== false ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = jQuery._data( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// start the next in the queue if the last step wasn't forced\n\t\t\t// timers currently will call their complete callbacks, which will dequeue\n\t\t\t// but only if they were gotoEnd\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t});\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tvar index,\n\t\t\t\tdata = jQuery._data( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t});\n\t}\n});\n\njQuery.each([ \"toggle\", \"show\", \"hide\" ], function( i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n});\n\n// Generate shortcuts for custom animations\njQuery.each({\n\tslideDown: genFx(\"show\"),\n\tslideUp: genFx(\"hide\"),\n\tslideToggle: genFx(\"toggle\"),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n});\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ttimers = jQuery.timers,\n\t\ti = 0;\n\n\tfxNow = jQuery.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\t\t// Checks the timer has not already been removed\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tif ( timer() ) {\n\t\tjQuery.fx.start();\n\t} else {\n\t\tjQuery.timers.pop();\n\t}\n};\n\njQuery.fx.interval = 13;\n\njQuery.fx.start = function() {\n\tif ( !timerId ) {\n\t\ttimerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );\n\t}\n};\n\njQuery.fx.stop = function() {\n\tclearInterval( timerId );\n\ttimerId = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\tclearTimeout( timeout );\n\t\t};\n\t});\n};\n\n\n(function() {\n\t// Minified: var a,b,c,d,e\n\tvar input, div, select, a, opt;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.setAttribute( \"className\", \"t\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName(\"a\")[ 0 ];\n\n\t// First batch of tests.\n\tselect = document.createElement(\"select\");\n\topt = select.appendChild( document.createElement(\"option\") );\n\tinput = div.getElementsByTagName(\"input\")[ 0 ];\n\n\ta.style.cssText = \"top:1px\";\n\n\t// Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)\n\tsupport.getSetAttribute = div.className !== \"t\";\n\n\t// Get the style information from getAttribute\n\t// (IE uses .cssText instead)\n\tsupport.style = /top/.test( a.getAttribute(\"style\") );\n\n\t// Make sure that URLs aren't manipulated\n\t// (IE normalizes it by default)\n\tsupport.hrefNormalized = a.getAttribute(\"href\") === \"/a\";\n\n\t// Check the default checkbox/radio value (\"\" on WebKit; \"on\" elsewhere)\n\tsupport.checkOn = !!input.value;\n\n\t// Make sure that a selected-by-default option has a working selected property.\n\t// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)\n\tsupport.optSelected = opt.selected;\n\n\t// Tests for enctype support on a form (#6743)\n\tsupport.enctype = !!document.createElement(\"form\").enctype;\n\n\t// Make sure that the options inside disabled selects aren't marked as disabled\n\t// (WebKit marks them as disabled)\n\tselect.disabled = true;\n\tsupport.optDisabled = !opt.disabled;\n\n\t// Support: IE8 only\n\t// Check if we can trust getAttribute(\"value\")\n\tinput = document.createElement( \"input\" );\n\tinput.setAttribute( \"value\", \"\" );\n\tsupport.input = input.getAttribute( \"value\" ) === \"\";\n\n\t// Check if an input maintains its value after becoming a radio\n\tinput.value = \"t\";\n\tinput.setAttribute( \"type\", \"radio\" );\n\tsupport.radioValue = input.value === \"t\";\n})();\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend({\n\tval: function( value ) {\n\t\tvar hooks, ret, isFunction,\n\t\t\telem = this[0];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, \"value\" )) !== undefined ) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\treturn typeof ret === \"string\" ?\n\t\t\t\t\t// handle most common string cases\n\t\t\t\t\tret.replace(rreturn, \"\") :\n\t\t\t\t\t// handle cases where value is null/undef or number\n\t\t\t\t\tret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tisFunction = jQuery.isFunction( value );\n\n\t\treturn this.each(function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( isFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\t\t\t} else if ( jQuery.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t});\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !(\"set\" in hooks) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\t\t\t\t\t// Support: IE10-11+\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\tjQuery.trim( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\" || index < 0,\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length,\n\t\t\t\t\ti = index < 0 ?\n\t\t\t\t\t\tmax :\n\t\t\t\t\t\tone ? index : 0;\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// oldIE doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t( support.optDisabled ? !option.disabled : option.getAttribute(\"disabled\") === null ) &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\tif ( jQuery.inArray( jQuery.valHooks.option.get( option ), values ) >= 0 ) {\n\n\t\t\t\t\t\t// Support: IE6\n\t\t\t\t\t\t// When new option element is added to select box we need to\n\t\t\t\t\t\t// force reflow of newly added node in order to workaround delay\n\t\t\t\t\t\t// of initialization properties\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\toption.selected = optionSet = true;\n\n\t\t\t\t\t\t} catch ( _ ) {\n\n\t\t\t\t\t\t\t// Will be executed only in IE6\n\t\t\t\t\t\t\toption.scrollHeight;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\toption.selected = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\n\t\t\t\treturn options;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Radios and checkboxes getter/setter\njQuery.each([ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( jQuery.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\t// Support: Webkit\n\t\t\t// \"\" is returned instead of \"on\" if a value isn't specified\n\t\t\treturn elem.getAttribute(\"value\") === null ? \"on\" : elem.value;\n\t\t};\n\t}\n});\n\n\n\n\nvar nodeHook, boolHook,\n\tattrHandle = jQuery.expr.attrHandle,\n\truseDefault = /^(?:checked|selected)$/i,\n\tgetSetAttribute = support.getSetAttribute,\n\tgetSetInput = support.input;\n\njQuery.fn.extend({\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tattr: function( elem, name, value ) {\n\t\tvar hooks, ret,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set attributes on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === strundefined ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// All attributes are lowercase\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\tname = name.toLowerCase();\n\t\t\thooks = jQuery.attrHooks[ name ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\n\t\t\t} else if ( hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {\n\t\t\t\treturn ret;\n\n\t\t\t} else {\n\t\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\t\treturn value;\n\t\t\t}\n\n\t\t} else if ( hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ) {\n\t\t\treturn ret;\n\n\t\t} else {\n\t\t\tret = jQuery.find.attr( elem, name );\n\n\t\t\t// Non-existent attributes return null, we normalize to undefined\n\t\t\treturn ret == null ?\n\t\t\t\tundefined :\n\t\t\t\tret;\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name, propName,\n\t\t\ti = 0,\n\t\t\tattrNames = value && value.match( rnotwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( (name = attrNames[i++]) ) {\n\t\t\t\tpropName = jQuery.propFix[ name ] || name;\n\n\t\t\t\t// Boolean attributes get special treatment (#10870)\n\t\t\t\tif ( jQuery.expr.match.bool.test( name ) ) {\n\t\t\t\t\t// Set corresponding property to false\n\t\t\t\t\tif ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t// Also clear defaultChecked/defaultSelected (if appropriate)\n\t\t\t\t\t} else {\n\t\t\t\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] =\n\t\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t}\n\n\t\t\t\t// See #9699 for explanation of this approach (setting first, then removal)\n\t\t\t\t} else {\n\t\t\t\t\tjQuery.attr( elem, name, \"\" );\n\t\t\t\t}\n\n\t\t\t\telem.removeAttribute( getSetAttribute ? name : propName );\n\t\t\t}\n\t\t}\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" && jQuery.nodeName(elem, \"input\") ) {\n\t\t\t\t\t// Setting the type on a radio button after the value resets the value in IE6-9\n\t\t\t\t\t// Reset value to default in case type is set after value during creation\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Hook for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t// IE<8 needs the *property* name\n\t\t\telem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name );\n\n\t\t// Use defaultChecked and defaultSelected for oldIE\n\t\t} else {\n\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] = elem[ name ] = true;\n\t\t}\n\n\t\treturn name;\n\t}\n};\n\n// Retrieve booleans specially\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( i, name ) {\n\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ?\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret, handle;\n\t\t\tif ( !isXML ) {\n\t\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\t\thandle = attrHandle[ name ];\n\t\t\t\tattrHandle[ name ] = ret;\n\t\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t\tattrHandle[ name ] = handle;\n\t\t\t}\n\t\t\treturn ret;\n\t\t} :\n\t\tfunction( elem, name, isXML ) {\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn elem[ jQuery.camelCase( \"default-\" + name ) ] ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n});\n\n// fix oldIE attroperties\nif ( !getSetInput || !getSetAttribute ) {\n\tjQuery.attrHooks.value = {\n\t\tset: function( elem, value, name ) {\n\t\t\tif ( jQuery.nodeName( elem, \"input\" ) ) {\n\t\t\t\t// Does not return so that setAttribute is also used\n\t\t\t\telem.defaultValue = value;\n\t\t\t} else {\n\t\t\t\t// Use nodeHook if defined (#1954); otherwise setAttribute is fine\n\t\t\t\treturn nodeHook && nodeHook.set( elem, value, name );\n\t\t\t}\n\t\t}\n\t};\n}\n\n// IE6/7 do not support getting/setting some attributes with get/setAttribute\nif ( !getSetAttribute ) {\n\n\t// Use this for any attribute in IE6/7\n\t// This fixes almost every IE6/7 issue\n\tnodeHook = {\n\t\tset: function( elem, value, name ) {\n\t\t\t// Set the existing or create a new attribute node\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( !ret ) {\n\t\t\t\telem.setAttributeNode(\n\t\t\t\t\t(ret = elem.ownerDocument.createAttribute( name ))\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tret.value = value += \"\";\n\n\t\t\t// Break association with cloned elements by also using setAttribute (#9646)\n\t\t\tif ( name === \"value\" || value === elem.getAttribute( name ) ) {\n\t\t\t\treturn value;\n\t\t\t}\n\t\t}\n\t};\n\n\t// Some attributes are constructed with empty-string values when not defined\n\tattrHandle.id = attrHandle.name = attrHandle.coords =\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret;\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn (ret = elem.getAttributeNode( name )) && ret.value !== \"\" ?\n\t\t\t\t\tret.value :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n\n\t// Fixing value retrieval on a button requires this module\n\tjQuery.valHooks.button = {\n\t\tget: function( elem, name ) {\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( ret && ret.specified ) {\n\t\t\t\treturn ret.value;\n\t\t\t}\n\t\t},\n\t\tset: nodeHook.set\n\t};\n\n\t// Set contenteditable to false on removals(#10429)\n\t// Setting to empty string throws an error as an invalid value\n\tjQuery.attrHooks.contenteditable = {\n\t\tset: function( elem, value, name ) {\n\t\t\tnodeHook.set( elem, value === \"\" ? false : value, name );\n\t\t}\n\t};\n\n\t// Set width and height to auto instead of 0 on empty string( Bug #8150 )\n\t// This is for removals\n\tjQuery.each([ \"width\", \"height\" ], function( i, name ) {\n\t\tjQuery.attrHooks[ name ] = {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( value === \"\" ) {\n\t\t\t\t\telem.setAttribute( name, \"auto\" );\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\nif ( !support.style ) {\n\tjQuery.attrHooks.style = {\n\t\tget: function( elem ) {\n\t\t\t// Return undefined in the case of empty string\n\t\t\t// Note: IE uppercases css property names, but if we were to .toLowerCase()\n\t\t\t// .cssText, that would destroy case senstitivity in URL's, like in \"background\"\n\t\t\treturn elem.style.cssText || undefined;\n\t\t},\n\t\tset: function( elem, value ) {\n\t\t\treturn ( elem.style.cssText = value + \"\" );\n\t\t}\n\t};\n}\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button|object)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend({\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\tname = jQuery.propFix[ name ] || name;\n\t\treturn this.each(function() {\n\t\t\t// try/catch handles cases where IE balks (such as removing a property on window)\n\t\t\ttry {\n\t\t\t\tthis[ name ] = undefined;\n\t\t\t\tdelete this[ name ];\n\t\t\t} catch( e ) {}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t},\n\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks, notxml,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set properties on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tnotxml = nType !== 1 || !jQuery.isXMLDoc( elem );\n\n\t\tif ( notxml ) {\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\treturn hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?\n\t\t\t\tret :\n\t\t\t\t( elem[ name ] = value );\n\n\t\t} else {\n\t\t\treturn hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ?\n\t\t\t\tret :\n\t\t\t\telem[ name ];\n\t\t}\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\t\t\t\t// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set\n\t\t\t\t// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\treturn tabindex ?\n\t\t\t\t\tparseInt( tabindex, 10 ) :\n\t\t\t\t\trfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?\n\t\t\t\t\t\t0 :\n\t\t\t\t\t\t-1;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Some attributes require a special call on IE\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !support.hrefNormalized ) {\n\t// href/src property should get the full normalized URL (#10299/#12915)\n\tjQuery.each([ \"href\", \"src\" ], function( i, name ) {\n\t\tjQuery.propHooks[ name ] = {\n\t\t\tget: function( elem ) {\n\t\t\t\treturn elem.getAttribute( name, 4 );\n\t\t\t}\n\t\t};\n\t});\n}\n\n// Support: Safari, IE9+\n// mis-reports the default selected property of an option\n// Accessing the parent's selectedIndex property fixes it\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\t// Make sure that it also works with optgroups, see #5701\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\t};\n}\n\njQuery.each([\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n});\n\n// IE6/7 call enctype encoding\nif ( !support.enctype ) {\n\tjQuery.propFix.enctype = \"encoding\";\n}\n\n\n\n\nvar rclass = /[\\t\\r\\n\\f]/g;\n\njQuery.fn.extend({\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\n\t\tif ( proceed ) {\n\t\t\t// The disjunction here is for better compressibility (see removeClass)\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\" \"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = jQuery.trim( cur );\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = arguments.length === 0 || typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\t\tif ( proceed ) {\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\"\"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) >= 0 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = value ? jQuery.trim( cur ) : \"\";\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value;\n\n\t\tif ( typeof stateVal === \"boolean\" && type === \"string\" ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tjQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( type === \"string\" ) {\n\t\t\t\t// toggle individual class names\n\t\t\t\tvar className,\n\t\t\t\t\ti = 0,\n\t\t\t\t\tself = jQuery( this ),\n\t\t\t\t\tclassNames = value.match( rnotwhite ) || [];\n\n\t\t\t\twhile ( (className = classNames[ i++ ]) ) {\n\t\t\t\t\t// check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( type === strundefined || type === \"boolean\" ) {\n\t\t\t\tif ( this.className ) {\n\t\t\t\t\t// store className if set\n\t\t\t\t\tjQuery._data( this, \"__className__\", this.className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed \"false\",\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tthis.className = this.className || value === false ? \"\" : jQuery._data( this, \"__className__\" ) || \"\";\n\t\t\t}\n\t\t});\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className = \" \" + selector + \" \",\n\t\t\ti = 0,\n\t\t\tl = this.length;\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tif ( this[i].nodeType === 1 && (\" \" + this[i].className + \" \").replace(rclass, \" \").indexOf( className ) >= 0 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n});\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\njQuery.each( (\"blur focus focusin focusout load resize scroll unload click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup error contextmenu\").split(\" \"), function( i, name ) {\n\n\t// Handle event binding\n\tjQuery.fn[ name ] = function( data, fn ) {\n\t\treturn arguments.length > 0 ?\n\t\t\tthis.on( name, null, data, fn ) :\n\t\t\tthis.trigger( name );\n\t};\n});\n\njQuery.fn.extend({\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t},\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ? this.off( selector, \"**\" ) : this.off( types, selector || \"**\", fn );\n\t}\n});\n\n\nvar nonce = jQuery.now();\n\nvar rquery = (/\\?/);\n\n\n\nvar rvalidtokens = /(,)|(\\[|{)|(}|])|\"(?:[^\"\\\\\\r\\n]|\\\\[\"\\\\\\/bfnrt]|\\\\u[\\da-fA-F]{4})*\"\\s*:?|true|false|null|-?(?!0\\d)\\d+(?:\\.\\d+|)(?:[eE][+-]?\\d+|)/g;\n\njQuery.parseJSON = function( data ) {\n\t// Attempt to parse using the native JSON parser first\n\tif ( window.JSON && window.JSON.parse ) {\n\t\t// Support: Android 2.3\n\t\t// Workaround failure to string-cast null input\n\t\treturn window.JSON.parse( data + \"\" );\n\t}\n\n\tvar requireNonComma,\n\t\tdepth = null,\n\t\tstr = jQuery.trim( data + \"\" );\n\n\t// Guard against invalid (and possibly dangerous) input by ensuring that nothing remains\n\t// after removing valid tokens\n\treturn str && !jQuery.trim( str.replace( rvalidtokens, function( token, comma, open, close ) {\n\n\t\t// Force termination if we see a misplaced comma\n\t\tif ( requireNonComma && comma ) {\n\t\t\tdepth = 0;\n\t\t}\n\n\t\t// Perform no more replacements after returning to outermost depth\n\t\tif ( depth === 0 ) {\n\t\t\treturn token;\n\t\t}\n\n\t\t// Commas must not follow \"[\", \"{\", or \",\"\n\t\trequireNonComma = open || comma;\n\n\t\t// Determine new depth\n\t\t// array/object open (\"[\" or \"{\"): depth += true - false (increment)\n\t\t// array/object close (\"]\" or \"}\"): depth += false - true (decrement)\n\t\t// other cases (\",\" or primitive): depth += true - true (numeric cast)\n\t\tdepth += !close - !open;\n\n\t\t// Remove this token\n\t\treturn \"\";\n\t}) ) ?\n\t\t( Function( \"return \" + str ) )() :\n\t\tjQuery.error( \"Invalid JSON: \" + data );\n};\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml, tmp;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\ttry {\n\t\tif ( window.DOMParser ) { // Standard\n\t\t\ttmp = new DOMParser();\n\t\t\txml = tmp.parseFromString( data, \"text/xml\" );\n\t\t} else { // IE\n\t\t\txml = new ActiveXObject( \"Microsoft.XMLDOM\" );\n\t\t\txml.async = \"false\";\n\t\t\txml.loadXML( data );\n\t\t}\n\t} catch( e ) {\n\t\txml = undefined;\n\t}\n\tif ( !xml || !xml.documentElement || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\t// Document location\n\tajaxLocParts,\n\tajaxLocation,\n\n\trhash = /#.*$/,\n\trts = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)\\r?$/mg, // IE leaves an \\r character at EOL\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\trurl = /^([\\w.+-]+:)(?:\\/\\/(?:[^\\/?#]*@|)([^\\/?#:]*)(?::(\\d+)|)|)/,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat(\"*\");\n\n// #8138, IE may throw an exception when accessing\n// a field from window.location if document.domain has been set\ntry {\n\tajaxLocation = location.href;\n} catch( e ) {\n\t// Use the href attribute of an A element\n\t// since IE will modify it given document.location\n\tajaxLocation = document.createElement( \"a\" );\n\tajaxLocation.href = \"\";\n\tajaxLocation = ajaxLocation.href;\n}\n\n// Segment location into parts\najaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];\n\n\t\tif ( jQuery.isFunction( func ) ) {\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( (dataType = dataTypes[i++]) ) {\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType.charAt( 0 ) === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t});\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar deep, key,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\tvar firstDataType, ct, finalDataType, type,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader(\"Content-Type\");\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[0] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s[ \"throws\" ] ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn { state: \"parsererror\", error: conv ? e : \"No conversion from \" + prev + \" to \" + current };\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend({\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: ajaxLocation,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /xml/,\n\t\t\thtml: /html/,\n\t\t\tjson: /json/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": jQuery.parseJSON,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar // Cross-domain detection vars\n\t\t\tparts,\n\t\t\t// Loop variable\n\t\t\ti,\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\t\t\t// Response headers as string\n\t\t\tresponseHeadersString,\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\ttransport,\n\t\t\t// Response headers\n\t\t\tresponseHeaders,\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\tjQuery.event,\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks(\"once memory\"),\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\t\t\t// The jqXHR state\n\t\t\tstate = 0,\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( state === 2 ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( (match = rheaders.exec( responseHeadersString )) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[1].toLowerCase() ] = match[ 2 ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match;\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn state === 2 ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tvar lname = name.toLowerCase();\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\tname = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\t// Lazy-add the new callback in a way that preserves old ones\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR ).complete = completeDeferred.add;\n\t\tjqXHR.success = jqXHR.done;\n\t\tjqXHR.error = jqXHR.fail;\n\n\t\t// Remove hash character (#7531: and string promotion)\n\t\t// Add protocol if not provided (#5866: IE7 issue with protocol-less urls)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || ajaxLocation ) + \"\" ).replace( rhash, \"\" ).replace( rprotocol, ajaxLocParts[ 1 ] + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = jQuery.trim( s.dataType || \"*\" ).toLowerCase().match( rnotwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when we have a protocol:host:port mismatch\n\t\tif ( s.crossDomain == null ) {\n\t\t\tparts = rurl.exec( s.url.toLowerCase() );\n\t\t\ts.crossDomain = !!( parts &&\n\t\t\t\t( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||\n\t\t\t\t\t( parts[ 3 ] || ( parts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) !==\n\t\t\t\t\t\t( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) )\n\t\t\t);\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( state === 2 ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger(\"ajaxStart\");\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\tcacheURL = s.url;\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// If data is available, append data to url\n\t\t\tif ( s.data ) {\n\t\t\t\tcacheURL = ( s.url += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data );\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add anti-cache in url if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\ts.url = rts.test( cacheURL ) ?\n\n\t\t\t\t\t// If there is already a '_' parameter, set its value\n\t\t\t\t\tcacheURL.replace( rts, \"$1_=\" + nonce++ ) :\n\n\t\t\t\t\t// Otherwise add one to the end\n\t\t\t\t\tcacheURL + ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + nonce++;\n\t\t\t}\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tfor ( i in { success: 1, error: 1, complete: 1 } ) {\n\t\t\tjqXHR[ i ]( s[ i ] );\n\t\t}\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = setTimeout(function() {\n\t\t\t\t\tjqXHR.abort(\"timeout\");\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tstate = 1;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\t\t\t\t// Propagate exception as error if not done\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tdone( -1, e );\n\t\t\t\t// Simply rethrow otherwise\n\t\t\t\t} else {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Called once\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// State is \"done\" now\n\t\t\tstate = 2;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\tclearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"Last-Modified\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"etag\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// We extract error from statusText\n\t\t\t\t// then normalize statusText and status for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger(\"ajaxStop\");\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n});\n\njQuery.each( [ \"get\", \"post\" ], function( i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\t\t// shift arguments if data argument was omitted\n\t\tif ( jQuery.isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\treturn jQuery.ajax({\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t});\n\t};\n});\n\n\njQuery._evalUrl = function( url ) {\n\treturn jQuery.ajax({\n\t\turl: url,\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tasync: false,\n\t\tglobal: false,\n\t\t\"throws\": true\n\t});\n};\n\n\njQuery.fn.extend({\n\twrapAll: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapAll( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\tif ( this[0] ) {\n\t\t\t// The elements to wrap the target around\n\t\t\tvar wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);\n\n\t\t\tif ( this[0].parentNode ) {\n\t\t\t\twrap.insertBefore( this[0] );\n\t\t\t}\n\n\t\t\twrap.map(function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstChild && elem.firstChild.nodeType === 1 ) {\n\t\t\t\t\telem = elem.firstChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t}).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapInner( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t});\n\t},\n\n\twrap: function( html ) {\n\t\tvar isFunction = jQuery.isFunction( html );\n\n\t\treturn this.each(function(i) {\n\t\t\tjQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );\n\t\t});\n\t},\n\n\tunwrap: function() {\n\t\treturn this.parent().each(function() {\n\t\t\tif ( !jQuery.nodeName( this, \"body\" ) ) {\n\t\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t\t}\n\t\t}).end();\n\t}\n});\n\n\njQuery.expr.filters.hidden = function( elem ) {\n\t// Support: Opera <= 12.12\n\t// Opera reports offsetWidths and offsetHeights less than zero on some elements\n\treturn elem.offsetWidth <= 0 && elem.offsetHeight <= 0 ||\n\t\t(!support.reliableHiddenOffsets() &&\n\t\t\t((elem.style && elem.style.display) || jQuery.css( elem, \"display\" )) === \"none\");\n};\n\njQuery.expr.filters.visible = function( elem ) {\n\treturn !jQuery.expr.filters.hidden( elem );\n};\n\n\n\n\nvar r20 = /%20/g,\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( jQuery.isArray( obj ) ) {\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams( prefix + \"[\" + ( typeof v === \"object\" ? i : \"\" ) + \"]\", v, traditional, add );\n\t\t\t}\n\t\t});\n\n\t} else if ( !traditional && jQuery.type( obj ) === \"object\" ) {\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, value ) {\n\t\t\t// If value is a function, invoke it and return its value\n\t\t\tvalue = jQuery.isFunction( value ) ? value() : ( value == null ? \"\" : value );\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" + encodeURIComponent( value );\n\t\t};\n\n\t// Set traditional to true for jQuery <= 1.3.2 behavior.\n\tif ( traditional === undefined ) {\n\t\ttraditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t});\n\n\t} else {\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" ).replace( r20, \"+\" );\n};\n\njQuery.fn.extend({\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map(function() {\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t})\n\t\t.filter(function() {\n\t\t\tvar type = this.type;\n\t\t\t// Use .is(\":disabled\") so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t})\n\t\t.map(function( i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\treturn val == null ?\n\t\t\t\tnull :\n\t\t\t\tjQuery.isArray( val ) ?\n\t\t\t\t\tjQuery.map( val, function( val ) {\n\t\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t\t}) :\n\t\t\t\t\t{ name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t}).get();\n\t}\n});\n\n\n// Create the request object\n// (This is still attached to ajaxSettings for backward compatibility)\njQuery.ajaxSettings.xhr = window.ActiveXObject !== undefined ?\n\t// Support: IE6+\n\tfunction() {\n\n\t\t// XHR cannot access local files, always use ActiveX for that case\n\t\treturn !this.isLocal &&\n\n\t\t\t// Support: IE7-8\n\t\t\t// oldIE XHR does not support non-RFC2616 methods (#13240)\n\t\t\t// See http://msdn.microsoft.com/en-us/library/ie/ms536648(v=vs.85).aspx\n\t\t\t// and http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9\n\t\t\t// Although this check for six methods instead of eight\n\t\t\t// since IE also does not support \"trace\" and \"connect\"\n\t\t\t/^(get|post|head|put|delete|options)$/i.test( this.type ) &&\n\n\t\t\tcreateStandardXHR() || createActiveXHR();\n\t} :\n\t// For all other browsers, use the standard XMLHttpRequest object\n\tcreateStandardXHR;\n\nvar xhrId = 0,\n\txhrCallbacks = {},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\n// Support: IE<10\n// Open requests must be manually aborted on unload (#5280)\n// See https://support.microsoft.com/kb/2856746 for more info\nif ( window.attachEvent ) {\n\twindow.attachEvent( \"onunload\", function() {\n\t\tfor ( var key in xhrCallbacks ) {\n\t\t\txhrCallbacks[ key ]( undefined, true );\n\t\t}\n\t});\n}\n\n// Determine support properties\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nxhrSupported = support.ajax = !!xhrSupported;\n\n// Create transport if the browser can provide an xhr\nif ( xhrSupported ) {\n\n\tjQuery.ajaxTransport(function( options ) {\n\t\t// Cross domain only allowed if supported through XMLHttpRequest\n\t\tif ( !options.crossDomain || support.cors ) {\n\n\t\t\tvar callback;\n\n\t\t\treturn {\n\t\t\t\tsend: function( headers, complete ) {\n\t\t\t\t\tvar i,\n\t\t\t\t\t\txhr = options.xhr(),\n\t\t\t\t\t\tid = ++xhrId;\n\n\t\t\t\t\t// Open the socket\n\t\t\t\t\txhr.open( options.type, options.url, options.async, options.username, options.password );\n\n\t\t\t\t\t// Apply custom fields if provided\n\t\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Override mime type if needed\n\t\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t\t}\n\n\t\t\t\t\t// X-Requested-With header\n\t\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\t\tif ( !options.crossDomain && !headers[\"X-Requested-With\"] ) {\n\t\t\t\t\t\theaders[\"X-Requested-With\"] = \"XMLHttpRequest\";\n\t\t\t\t\t}\n\n\t\t\t\t\t// Set headers\n\t\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// IE's ActiveXObject throws a 'Type Mismatch' exception when setting\n\t\t\t\t\t\t// request header to a null-value.\n\t\t\t\t\t\t//\n\t\t\t\t\t\t// To keep consistent with other XHR implementations, cast the value\n\t\t\t\t\t\t// to string and ignore `undefined`.\n\t\t\t\t\t\tif ( headers[ i ] !== undefined ) {\n\t\t\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] + \"\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Do send the request\n\t\t\t\t\t// This may raise an exception which is actually\n\t\t\t\t\t// handled in jQuery.ajax (so no try/catch here)\n\t\t\t\t\txhr.send( ( options.hasContent && options.data ) || null );\n\n\t\t\t\t\t// Listener\n\t\t\t\t\tcallback = function( _, isAbort ) {\n\t\t\t\t\t\tvar status, statusText, responses;\n\n\t\t\t\t\t\t// Was never called and is aborted or complete\n\t\t\t\t\t\tif ( callback && ( isAbort || xhr.readyState === 4 ) ) {\n\t\t\t\t\t\t\t// Clean up\n\t\t\t\t\t\t\tdelete xhrCallbacks[ id ];\n\t\t\t\t\t\t\tcallback = undefined;\n\t\t\t\t\t\t\txhr.onreadystatechange = jQuery.noop;\n\n\t\t\t\t\t\t\t// Abort manually if needed\n\t\t\t\t\t\t\tif ( isAbort ) {\n\t\t\t\t\t\t\t\tif ( xhr.readyState !== 4 ) {\n\t\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tresponses = {};\n\t\t\t\t\t\t\t\tstatus = xhr.status;\n\n\t\t\t\t\t\t\t\t// Support: IE<10\n\t\t\t\t\t\t\t\t// Accessing binary-data responseText throws an exception\n\t\t\t\t\t\t\t\t// (#11426)\n\t\t\t\t\t\t\t\tif ( typeof xhr.responseText === \"string\" ) {\n\t\t\t\t\t\t\t\t\tresponses.text = xhr.responseText;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Firefox throws an exception when accessing\n\t\t\t\t\t\t\t\t// statusText for faulty cross-domain requests\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tstatusText = xhr.statusText;\n\t\t\t\t\t\t\t\t} catch( e ) {\n\t\t\t\t\t\t\t\t\t// We normalize with Webkit giving an empty statusText\n\t\t\t\t\t\t\t\t\tstatusText = \"\";\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Filter status for non standard behaviors\n\n\t\t\t\t\t\t\t\t// If the request is local and we have data: assume a success\n\t\t\t\t\t\t\t\t// (success with no data won't get notified, that's the best we\n\t\t\t\t\t\t\t\t// can do given current implementations)\n\t\t\t\t\t\t\t\tif ( !status && options.isLocal && !options.crossDomain ) {\n\t\t\t\t\t\t\t\t\tstatus = responses.text ? 200 : 404;\n\t\t\t\t\t\t\t\t// IE - #1450: sometimes returns 1223 when it should be 204\n\t\t\t\t\t\t\t\t} else if ( status === 1223 ) {\n\t\t\t\t\t\t\t\t\tstatus = 204;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Call complete if needed\n\t\t\t\t\t\tif ( responses ) {\n\t\t\t\t\t\t\tcomplete( status, statusText, responses, xhr.getAllResponseHeaders() );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\tif ( !options.async ) {\n\t\t\t\t\t\t// if we're in sync mode we fire the callback\n\t\t\t\t\t\tcallback();\n\t\t\t\t\t} else if ( xhr.readyState === 4 ) {\n\t\t\t\t\t\t// (IE6 & IE7) if it's in cache and has been\n\t\t\t\t\t\t// retrieved directly we need to fire the callback\n\t\t\t\t\t\tsetTimeout( callback );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// Add to the list of active xhr callbacks\n\t\t\t\t\t\txhr.onreadystatechange = xhrCallbacks[ id ] = callback;\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tabort: function() {\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tcallback( undefined, true );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t});\n}\n\n// Functions to create xhrs\nfunction createStandardXHR() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch( e ) {}\n}\n\nfunction createActiveXHR() {\n\ttry {\n\t\treturn new window.ActiveXObject( \"Microsoft.XMLHTTP\" );\n\t} catch( e ) {}\n}\n\n\n\n\n// Install script dataType\njQuery.ajaxSetup({\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /(?:java|ecma)script/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n});\n\n// Handle cache's special case and global\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t\ts.global = false;\n\t}\n});\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function(s) {\n\n\t// This transport only deals with cross domain requests\n\tif ( s.crossDomain ) {\n\n\t\tvar script,\n\t\t\thead = document.head || jQuery(\"head\")[0] || document.documentElement;\n\n\t\treturn {\n\n\t\t\tsend: function( _, callback ) {\n\n\t\t\t\tscript = document.createElement(\"script\");\n\n\t\t\t\tscript.async = true;\n\n\t\t\t\tif ( s.scriptCharset ) {\n\t\t\t\t\tscript.charset = s.scriptCharset;\n\t\t\t\t}\n\n\t\t\t\tscript.src = s.url;\n\n\t\t\t\t// Attach handlers for all browsers\n\t\t\t\tscript.onload = script.onreadystatechange = function( _, isAbort ) {\n\n\t\t\t\t\tif ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {\n\n\t\t\t\t\t\t// Handle memory leak in IE\n\t\t\t\t\t\tscript.onload = script.onreadystatechange = null;\n\n\t\t\t\t\t\t// Remove the script\n\t\t\t\t\t\tif ( script.parentNode ) {\n\t\t\t\t\t\t\tscript.parentNode.removeChild( script );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Dereference the script\n\t\t\t\t\t\tscript = null;\n\n\t\t\t\t\t\t// Callback if not abort\n\t\t\t\t\t\tif ( !isAbort ) {\n\t\t\t\t\t\t\tcallback( 200, \"success\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\t// Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\thead.insertBefore( script, head.firstChild );\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( script ) {\n\t\t\t\t\tscript.onload( undefined, true );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n});\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup({\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n});\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" && !( s.contentType || \"\" ).indexOf(\"application/x-www-form-urlencoded\") && rjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[\"script json\"] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always(function() {\n\t\t\t// Restore preexisting value\n\t\t\twindow[ callbackName ] = overwritten;\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\t\t\t\t// make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && jQuery.isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t});\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n});\n\n\n\n\n// data: string of html\n// context (optional): If specified, the fragment will be created in this context, defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\tcontext = context || document;\n\n\tvar parsed = rsingleTag.exec( data ),\n\t\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[1] ) ];\n\t}\n\n\tparsed = jQuery.buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n// Keep a copy of the old load method\nvar _load = jQuery.fn.load;\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tif ( typeof url !== \"string\" && _load ) {\n\t\treturn _load.apply( this, arguments );\n\t}\n\n\tvar selector, response, type,\n\t\tself = this,\n\t\toff = url.indexOf(\" \");\n\n\tif ( off >= 0 ) {\n\t\tselector = jQuery.trim( url.slice( off, url.length ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( jQuery.isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax({\n\t\t\turl: url,\n\n\t\t\t// if \"type\" variable is undefined, then \"GET\" method will be used\n\t\t\ttype: type,\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t}).done(function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery(\"<div>\").append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t}).complete( callback && function( jqXHR, status ) {\n\t\t\tself.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t});\n\t}\n\n\treturn this;\n};\n\n\n\n\n// Attach a bunch of functions for handling common AJAX events\njQuery.each( [ \"ajaxStart\", \"ajaxStop\", \"ajaxComplete\", \"ajaxError\", \"ajaxSuccess\", \"ajaxSend\" ], function( i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n});\n\n\n\n\njQuery.expr.filters.animated = function( elem ) {\n\treturn jQuery.grep(jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t}).length;\n};\n\n\n\n\n\nvar docElem = window.document.documentElement;\n\n/**\n * Gets a window from an element\n */\nfunction getWindow( elem ) {\n\treturn jQuery.isWindow( elem ) ?\n\t\telem :\n\t\telem.nodeType === 9 ?\n\t\t\telem.defaultView || elem.parentWindow :\n\t\t\tfalse;\n}\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\tjQuery.inArray(\"auto\", [ curCSSTop, curCSSLeft ] ) > -1;\n\n\t\t// need to be able to calculate position if either top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( jQuery.isFunction( options ) ) {\n\t\t\toptions = options.call( elem, i, curOffset );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend({\n\toffset: function( options ) {\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each(function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t});\n\t\t}\n\n\t\tvar docElem, win,\n\t\t\tbox = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ],\n\t\t\tdoc = elem && elem.ownerDocument;\n\n\t\tif ( !doc ) {\n\t\t\treturn;\n\t\t}\n\n\t\tdocElem = doc.documentElement;\n\n\t\t// Make sure it's not a disconnected DOM node\n\t\tif ( !jQuery.contains( docElem, elem ) ) {\n\t\t\treturn box;\n\t\t}\n\n\t\t// If we don't have gBCR, just use 0,0 rather than error\n\t\t// BlackBerry 5, iOS 3 (original iPhone)\n\t\tif ( typeof elem.getBoundingClientRect !== strundefined ) {\n\t\t\tbox = elem.getBoundingClientRect();\n\t\t}\n\t\twin = getWindow( doc );\n\t\treturn {\n\t\t\ttop: box.top  + ( win.pageYOffset || docElem.scrollTop )  - ( docElem.clientTop  || 0 ),\n\t\t\tleft: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 )\n\t\t};\n\t},\n\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset,\n\t\t\tparentOffset = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ];\n\n\t\t// fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is its only offset parent\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\t\t\t// we assume that getBoundingClientRect is available when computed position is fixed\n\t\t\toffset = elem.getBoundingClientRect();\n\t\t} else {\n\t\t\t// Get *real* offsetParent\n\t\t\toffsetParent = this.offsetParent();\n\n\t\t\t// Get correct offsets\n\t\t\toffset = this.offset();\n\t\t\tif ( !jQuery.nodeName( offsetParent[ 0 ], \"html\" ) ) {\n\t\t\t\tparentOffset = offsetParent.offset();\n\t\t\t}\n\n\t\t\t// Add offsetParent borders\n\t\t\tparentOffset.top  += jQuery.css( offsetParent[ 0 ], \"borderTopWidth\", true );\n\t\t\tparentOffset.left += jQuery.css( offsetParent[ 0 ], \"borderLeftWidth\", true );\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\t// note: when an element has margin: auto the offsetLeft and marginLeft\n\t\t// are the same in Safari causing offset.left to incorrectly be 0\n\t\treturn {\n\t\t\ttop:  offset.top  - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true)\n\t\t};\n\t},\n\n\toffsetParent: function() {\n\t\treturn this.map(function() {\n\t\t\tvar offsetParent = this.offsetParent || docElem;\n\n\t\t\twhile ( offsetParent && ( !jQuery.nodeName( offsetParent, \"html\" ) && jQuery.css( offsetParent, \"position\" ) === \"static\" ) ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\t\t\treturn offsetParent || docElem;\n\t\t});\n\t}\n});\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = /Y/.test( prop );\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\t\t\tvar win = getWindow( elem );\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? (prop in win) ? win[ prop ] :\n\t\t\t\t\twin.document.documentElement[ method ] :\n\t\t\t\t\telem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : jQuery( win ).scrollLeft(),\n\t\t\t\t\ttop ? val : jQuery( win ).scrollTop()\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length, null );\n\t};\n});\n\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// getComputedStyle returns percent when specified for top/left/bottom/right\n// rather than make the css module depend on the offset module, we just check for it here\njQuery.each( [ \"top\", \"left\" ], function( i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\t\t\t\t// if curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n});\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name }, function( defaultExtra, funcName ) {\n\t\t// margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( jQuery.isWindow( elem ) ) {\n\t\t\t\t\t// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there\n\t\t\t\t\t// isn't a whole lot we can do. See pull request at this URL for discussion:\n\t\t\t\t\t// https://github.com/jquery/jquery/pull/764\n\t\t\t\t\treturn elem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest\n\t\t\t\t\t// unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it.\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable, null );\n\t\t};\n\t});\n});\n\n\n// The number of elements contained in the matched element set\njQuery.fn.size = function() {\n\treturn this.length;\n};\n\njQuery.fn.andSelf = jQuery.fn.addBack;\n\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t});\n}\n\n\n\n\nvar\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in\n// AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === strundefined ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n\n}));\n"
  },
  {
    "path": "docs/images/04_variance/lib/jquery-3.5.1/jquery-AUTHORS.txt",
    "content": "Authors ordered by first contribution.\n\nJohn Resig <jeresig@gmail.com>\nGilles van den Hoven <gilles0181@gmail.com>\nMichael Geary <mike@geary.com>\nStefan Petre <stefan.petre@gmail.com>\nYehuda Katz <wycats@gmail.com>\nCorey Jewett <cj@syntheticplayground.com>\nKlaus Hartl <klaus.hartl@gmail.com>\nFranck Marcia <franck.marcia@gmail.com>\nJörn Zaefferer <joern.zaefferer@gmail.com>\nPaul Bakaus <paul.bakaus@gmail.com>\nBrandon Aaron <brandon.aaron@gmail.com>\nMike Alsup <malsup@gmail.com>\nDave Methvin <dave.methvin@gmail.com>\nEd Engelhardt <edengelhardt@gmail.com>\nSean Catchpole <littlecooldude@gmail.com>\nPaul Mclanahan <pmclanahan@gmail.com>\nDavid Serduke <davidserduke@gmail.com>\nRichard D. Worth <rdworth@gmail.com>\nScott González <scott.gonzalez@gmail.com>\nAriel Flesler <aflesler@gmail.com>\nCheah Chu Yeow <chuyeow@gmail.com>\nAndrew Chalkley <andrew@chalkley.org>\nFabio Buffoni <fabio.buffoni@bitmaster.it>\nStefan Bauckmeier  <stefan@bauckmeier.de>\nJon Evans <jon@springyweb.com>\nTJ Holowaychuk <tj@vision-media.ca>\nRiccardo De Agostini <rdeago@gmail.com>\nMichael Bensoussan <mickey@seesmic.com>\nLouis-Rémi Babé <lrbabe@gmail.com>\nRobert Katić <robert.katic@gmail.com>\nDamian Janowski <damian.janowski@gmail.com>\nAnton Kovalyov <anton@kovalyov.net>\nDušan B. Jovanovic <dbjdbj@gmail.com>\nEarle Castledine <mrspeaker@gmail.com>\nRich Dougherty <rich@rd.gen.nz>\nKim Dalsgaard <kim@kimdalsgaard.com>\nAndrea Giammarchi <andrea.giammarchi@gmail.com>\nFabian Jakobs <fabian.jakobs@web.de>\nMark Gibson <jollytoad@gmail.com>\nKarl Swedberg <kswedberg@gmail.com>\nJustin Meyer <justinbmeyer@gmail.com>\nBen Alman <cowboy@rj3.net>\nJames Padolsey <cla@padolsey.net>\nDavid Petersen <public@petersendidit.com>\nBatiste Bieler <batiste.bieler@gmail.com>\nJake Archibald <jake.archibald@bbc.co.uk>\nAlexander Farkas <info@corrupt-system.de>\nFilipe Fortes <filipe@fortes.com>\nRick Waldron <waldron.rick@gmail.com>\nNeeraj Singh <neerajdotname@gmail.com>\nPaul Irish <paul.irish@gmail.com>\nIraê Carvalho <irae@irae.pro.br>\nMatt Curry <matt@pseudocoder.com>\nMichael Monteleone <michael@michaelmonteleone.net>\nNoah Sloan <noah.sloan@gmail.com>\nTom Viner <github@viner.tv>\nJ. Ryan Stinnett <jryans@gmail.com>\nDouglas Neiner <doug@dougneiner.com>\nAdam J. Sontag <ajpiano@ajpiano.com>\nHeungsub Lee <h@subl.ee>\nDave Reed <dareed@microsoft.com>\nCarl Fürstenberg <azatoth@gmail.com>\nJacob Wright <jacwright@gmail.com>\nRalph Whitbeck <ralph.whitbeck@gmail.com>\nunknown <Igen005@.upcorp.ad.uprr.com>\ntemp01 <temp01irc@gmail.com>\nColin Snover <github.com@zetafleet.com>\nJared Grippe <jared@deadlyicon.com>\nRyan W Tenney <ryan@10e.us>\nAlex Sexton <AlexSexton@gmail.com>\nPinhook <contact@pinhooklabs.com>\nRon Otten <r.j.g.otten@gmail.com>\nJephte Clain <Jephte.Clain@univ-reunion.fr>\nAnton Matzneller <obhvsbypqghgc@gmail.com>\nDan Heberden <danheberden@gmail.com>\nHenri Wiechers <hwiechers@gmail.com>\nRussell Holbrook <russell.holbrook@patch.com>\nJulian Aubourg <aubourg.julian@gmail.com>\nGianni Alessandro Chiappetta <gianni@runlevel6.org>\nScott Jehl <scottjehl@gmail.com>\nJames Burke <jrburke@gmail.com>\nJonas Pfenniger <jonas@pfenniger.name>\nXavi Ramirez <xavi.rmz@gmail.com>\nSylvester Keil <sylvester@keil.or.at>\nBrandon Sterne <bsterne@mozilla.com>\nMathias Bynens <mathias@qiwi.be>\nLee Carpenter <elcarpie@gmail.com>\nTimmy Willison <4timmywil@gmail.com>\nCorey Frang <gnarf37@gmail.com>\nDigitalxero <digitalxero>\nDavid Murdoch <david@davidmurdoch.com>\nJosh Varner <josh.varner@gmail.com>\nCharles McNulty <cmcnulty@kznf.com>\nJordan Boesch <jboesch26@gmail.com>\nJess Thrysoee <jess@thrysoee.dk>\nMichael Murray <m@murz.net>\nAlexis Abril <me@alexisabril.com>\nRob Morgan <robbym@gmail.com>\nJohn Firebaugh <john_firebaugh@bigfix.com>\nSam Bisbee <sam@sbisbee.com>\nGilmore Davidson <gilmoreorless@gmail.com>\nBrian Brennan <me@brianlovesthings.com>\nXavier Montillet <xavierm02.net@gmail.com>\nDaniel Pihlstrom <sciolist.se@gmail.com>\nSahab Yazdani <sahab.yazdani+github@gmail.com>\navaly <github-com@agachi.name>\nScott Hughes <hi@scott-hughes.me>\nMike Sherov <mike.sherov@gmail.com>\nGreg Hazel <ghazel@gmail.com>\nSchalk Neethling <schalk@ossreleasefeed.com>\nDenis Knauf <Denis.Knauf@gmail.com>\nTimo Tijhof <krinklemail@gmail.com>\nSteen Nielsen <swinedk@gmail.com>\nAnton Ryzhov <anton@ryzhov.me>\nShi Chuan <shichuanr@gmail.com>\nMatt Mueller <mattmuelle@gmail.com>\nBerker Peksag <berker.peksag@gmail.com>\nToby Brain <tobyb@freshview.com>\nJustin <drakefjustin@gmail.com>\nDaniel Herman <daniel.c.herman@gmail.com>\nOleg Gaidarenko <markelog@gmail.com>\nRock Hymas <rock@fogcreek.com>\nRichard Gibson <richard.gibson@gmail.com>\nRafaël Blais Masson <rafbmasson@gmail.com>\ncmc3cn <59194618@qq.com>\nJoe Presbrey <presbrey@gmail.com>\nSindre Sorhus <sindresorhus@gmail.com>\nArne de Bree <arne@bukkie.nl>\nVladislav Zarakovsky <vlad.zar@gmail.com>\nAndrew E Monat <amonat@gmail.com>\nOskari <admin@o-programs.com>\nJoao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>\ntsinha <tsinha@Anthonys-MacBook-Pro.local>\nDominik D. Geyer <dominik.geyer@gmail.com>\nMatt Farmer <matt@frmr.me>\nTrey Hunner <treyhunner@gmail.com>\nJason Moon <jmoon@socialcast.com>\nJeffery To <jeffery.to@gmail.com>\nKris Borchers <kris.borchers@gmail.com>\nVladimir Zhuravlev <private.face@gmail.com>\nJacob Thornton <jacobthornton@gmail.com>\nChad Killingsworth <chadkillingsworth@missouristate.edu>\nVitya Muhachev <vic99999@yandex.ru>\nNowres Rafid <nowres.rafed@gmail.com>\nDavid Benjamin <davidben@mit.edu>\nAlan Plum <github@ap.apsq.de>\nUri Gilad <antishok@gmail.com>\nChris Faulkner <thefaulkner@gmail.com>\nMarcel Greter <marcel.greter@ocbnet.ch>\nElijah Manor <elijah.manor@gmail.com>\nDaniel Chatfield <chatfielddaniel@gmail.com>\nDaniel Gálvez <dgalvez@editablething.com>\nNikita Govorov <nikita.govorov@gmail.com>\nWesley Walser <waw325@gmail.com>\nMike Pennisi <mike@mikepennisi.com>\nMatthias Jäggli <matthias.jaeggli@gmail.com>\nDevin Cooper <cooper.semantics@gmail.com>\nMarkus Staab <markus.staab@redaxo.de>\nDave Riddle <david@joyvuu.com>\nCallum Macrae <callum@lynxphp.com>\nJonathan Sampson <jjdsampson@gmail.com>\nBenjamin Truyman <bentruyman@gmail.com>\nJay Merrifield <fracmak@gmail.com>\nJames Huston <james@jameshuston.net>\nSai Lung Wong <sai.wong@huffingtonpost.com>\nErick Ruiz de Chávez <erickrdch@gmail.com>\nDavid Bonner <dbonner@cogolabs.com>\nAllen J Schmidt Jr <cobrasoft@gmail.com>\nAkintayo Akinwunmi <aakinwunmi@judge.com>\nMORGAN <morgan@morgangraphics.com>\nIsmail Khair <ismail.khair@gmail.com>\nCarl Danley <carldanley@gmail.com>\nMike Petrovich <michael.c.petrovich@gmail.com>\nGreg Lavallee <greglavallee@wapolabs.com>\nTom H Fuertes <TomFuertes@gmail.com>\nRoland Eckl <eckl.roland@googlemail.com>\nYiming He <yiminghe@gmail.com>\nDavid Fox <dfoxinator@gmail.com>\nBennett Sorbo <bsorbo@gmail.com>\nPaul Ramos <paul.b.ramos@gmail.com>\nRod Vagg <rod@vagg.org>\nSebastian Burkhard <sebi.burkhard@gmail.com>\nZachary Adam Kaplan <razic@viralkitty.com>\nAdam Coulombe <me@adam.co>\nnanto_vi <nanto@moon.email.ne.jp>\nnanto <nanto@moon.email.ne.jp>\nDanil Somsikov <danilasomsikov@gmail.com>\nRyunosuke SATO <tricknotes.rs@gmail.com>\nDiego Tres <diegotres@gmail.com>\nJean Boussier <jean.boussier@gmail.com>\nAndrew Plummer <plummer.andrew@gmail.com>\nMark Raddatz <mraddatz@gmail.com>\nPascal Borreli <pascal@borreli.com>\nIsaac Z. Schlueter <i@izs.me>\nKarl Sieburg <ksieburg@yahoo.com>\nNguyen Phuc Lam <ruado1987@gmail.com>\nDmitry Gusev <dmitry.gusev@gmail.com>\nSteven Benner <admin@stevenbenner.com>\nLi Xudong <istonelee@gmail.com>\nMichał Gołębiowski-Owczarek <m.goleb@gmail.com>\nRenato Oliveira dos Santos <ros3@cin.ufpe.br>\nFrederic Junod <frederic.junod@camptocamp.com>\nTom H Fuertes <tomfuertes@gmail.com>\nMitch Foley <mitch@thefoley.net>\nros3cin <ros3@cin.ufpe.br>\nKyle Robinson Young <kyle@dontkry.com>\nJohn Paul <john@johnkpaul.com>\nJason Bedard <jason+jquery@jbedard.ca>\nChris Talkington <chris@talkingtontech.com>\nEddie Monge <eddie@eddiemonge.com>\nTerry Jones <terry@jon.es>\nJason Merino <jasonmerino@gmail.com>\nDan Burzo <danburzo@gmail.com>\nJeremy Dunck <jdunck@gmail.com>\nChris Price <price.c@gmail.com>\nGuy Bedford <guybedford@gmail.com>\nnjhamann <njhamann@gmail.com>\nGoare Mao <mygoare@gmail.com>\nAmey Sakhadeo <me@ameyms.com>\nMike Sidorov <mikes.ekb@gmail.com>\nAnthony Ryan <anthonyryan1@gmail.com>\nLihan Li <frankieteardrop@gmail.com>\nGeorge Kats <katsgeorgeek@gmail.com>\nDongseok Paeng <dongseok83.paeng@lge.com>\nRonny Springer <springer.ronny@gmail.com>\nIlya Kantor <iliakan@gmail.com>\nMarian Sollmann <marian.sollmann@cargomedia.ch>\nChris Antaki <ChrisAntaki@gmail.com>\nDavid Hong <d.hong@me.com>\nJakob Stoeck <jakob@pokermania.de>\nChristopher Jones <chris@cjqed.com>\nForbes Lindesay <forbes@lindesay.co.uk>\nS. Andrew Sheppard <andrew@wq.io>\nLeonardo Balter <leonardo.balter@gmail.com>\nRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>\nDaniel Husar <dano.husar@gmail.com>\nPhilip Jägenstedt <philip@foolip.org>\nJohn Hoven <hovenj@gmail.com>\nRoman Reiß <me@silverwind.io>\nBenjy Cui <benjytrys@gmail.com>\nChristian Kosmowski <ksmwsk@gmail.com>\nDavid Corbacho <davidcorbacho@gmail.com>\nLiang Peng <poppinlp@gmail.com>\nTJ VanToll <tj.vantoll@gmail.com>\nAurelio De Rosa <aurelioderosa@gmail.com>\nSenya Pugach <upisfree@outlook.com>\nDan Hart <danhart@notonthehighstreet.com>\nNazar Mokrynskyi <nazar@mokrynskyi.com>\nBenjamin Tan <demoneaux@gmail.com>\nAmit Merchant <bullredeyes@gmail.com>\nJason Bedard <jason+github@jbedard.ca>\nVeaceslav Grimalschi <grimalschi@yandex.ru>\nRichard McDaniel <rm0026@uah.edu>\nArthur Verschaeve <contact@arthurverschaeve.be>\nShivaji Varma <contact@shivajivarma.com>\nBen Toews <mastahyeti@gmail.com>\nBin Xin <rhyzix@gmail.com>\nNeftaly Hernandez <neftaly.hernandez@gmail.com>\nT.J. Crowder <tj.crowder@farsightsoftware.com>\nNicolas HENRY <icewil@gmail.com>\nFrederic Hemberger <mail@frederic-hemberger.de>\nVictor Homyakov <vkhomyackov@gmail.com>\nAditya Raghavan <araghavan3@gmail.com>\nAnne-Gaelle Colom <coloma@westminster.ac.uk>\nLeonardo Braga <leonardo.braga@gmail.com>\nGeorge Mauer <gmauer@gmail.com>\nStephen Edgar <stephen@netweb.com.au>\nThomas Tortorini <thomastortorini@gmail.com>\nJörn Wagner <joern.wagner@explicatis.com>\nJon Hester <jon.d.hester@gmail.com>\nColin Frick <colin@bash.li>\nWinston Howes <winstonhowes@gmail.com>\nAlexander O'Mara <me@alexomara.com>\nChris Rebert <github@rebertia.com>\nBastian Buchholz <buchholz.bastian@googlemail.com>\nMu Haibao <mhbseal@163.com>\nCalvin Metcalf <calvin.metcalf@gmail.com>\nArthur Stolyar <nekr.fabula@gmail.com>\nGabriel Schulhof <gabriel.schulhof@intel.com>\nGilad Peleg <giladp007@gmail.com>\nJulian Alexander Murillo <julian.alexander.murillo@gmail.com>\nKevin Kirsche <Kev.Kirsche+GitHub@gmail.com>\nMartin Naumann <martin@geekonaut.de>\nYongwoo Jeon <yongwoo.jeon@navercorp.com>\nJohn-David Dalton <john.david.dalton@gmail.com>\nMarek Lewandowski <m.lewandowski@cksource.com>\nBruno Pérel <brunoperel@gmail.com>\nDaniel Nill <daniellnill@gmail.com>\nReed Loden <reed@reedloden.com>\nSean Henderson <seanh.za@gmail.com>\nGary Ye <garysye@gmail.com>\nRichard Kraaijenhagen <stdin+git@riichard.com>\nConnor Atherton <c.liam.atherton@gmail.com>\nChristian Grete <webmaster@christiangrete.com>\nTom von Clef <thomas.vonclef@gmail.com>\nLiza Ramo <liza.h.ramo@gmail.com>\nJoelle Fleurantin <joasqueeniebee@gmail.com>\nSteve Mao <maochenyan@gmail.com>\nJon Dufresne <jon.dufresne@gmail.com>\nJae Sung Park <alberto.park@gmail.com>\nJosh Soref <apache@soref.com>\nSaptak Sengupta <saptak013@gmail.com>\nHenry Wong <henryw4k@gmail.com>\nJun Sun <klsforever@gmail.com>\nMartijn W. van der Lee <martijn@vanderlee.com>\nDevin Wilson <dwilson6.github@gmail.com>\nDamian Senn <jquery@topaxi.codes>\nZack Hall <zackhall@outlook.com>\nVitaliy Terziev <vitaliyterziev@gmail.com>\nTodor Prikumov <tono_pr@abv.bg>\nBernhard M. Wiedemann <jquerybmw@lsmod.de>\nJha Naman <createnaman@gmail.com>\nAlexander Lisianoi <all3fox@gmail.com>\nWilliam Robinet <william.robinet@conostix.com>\nJoe Trumbull <trumbull.j@gmail.com>\nAlexander K <xpyro@ya.ru>\nRalin Chimev <ralin.chimev@gmail.com>\nFelipe Sateler <fsateler@gmail.com>\nChristophe Tafani-Dereeper <christophetd@hotmail.fr>\nManoj Kumar <nithmanoj@gmail.com>\nDavid Broder-Rodgers <broder93@gmail.com>\nAlex Louden <alex@louden.com>\nAlex Padilla <alexonezero@outlook.com>\nkaran-96 <karanbatra96@gmail.com>\n南漂一卒 <shiy007@qq.com>\nErik Lax <erik@datahack.se>\nBoom Lee <teabyii@gmail.com>\nAndreas Solleder <asol@num42.de>\nPierre Spring <pierre@nelm.io>\nShashanka Nataraj <shashankan.10@gmail.com>\nCDAGaming <cstack2011@yahoo.com>\nMatan Kotler-Berkowitz <205matan@gmail.com>\nJordan Beland <jordan.beland@gmail.com>\nHenry Zhu <hi@henryzoo.com>\nNilton Cesar <niltoncms@gmail.com>\nbasil.belokon <basil.belokon@gmail.com>\nAndrey Meshkov <ay.meshkov@gmail.com>\ntmybr11 <tomas.perone@gmail.com>\nLuis Emilio Velasco Sanchez <emibloque@gmail.com>\nEd S <ejsanders@gmail.com>\nBert Zhang <enbo@users.noreply.github.com>\nSébastien Règne <regseb@users.noreply.github.com>\nwartmanm <3869625+wartmanm@users.noreply.github.com>\nSiddharth Dungarwal <sd5869@gmail.com>\nabnud1 <ahmad13932013@hotmail.com>\nAndrei Fangli <andrei_fangli@outlook.com>\nMarja Hölttä <marja.holtta@gmail.com>\nbuddh4 <mail@jharrer.de>\nHoang <dangkyokhoang@gmail.com>\nWonseop Kim <wonseop.kim@samsung.com>\nPat O'Callaghan <patocallaghan@gmail.com>\nJuanMa Ruiz <ruizjuanma@gmail.com>\nAhmed.S.ElAfifi <ahmed.s.elafifi@gmail.com>\nSean Robinson <sean.robinson@scottsdalecc.edu>\nChristian Oliff <christianoliff@pm.me>\n"
  },
  {
    "path": "docs/images/04_variance/lib/jquery-3.5.1/jquery.js",
    "content": "/*!\n * jQuery JavaScript Library v3.5.1\n * https://jquery.com/\n *\n * Includes Sizzle.js\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://jquery.org/license\n *\n * Date: 2020-05-04T22:49Z\n */\n( function( global, factory ) {\n\n\t\"use strict\";\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\n\t\t// For CommonJS and CommonJS-like environments where a proper `window`\n\t\t// is present, execute the factory and get jQuery.\n\t\t// For environments that do not have a `window` with a `document`\n\t\t// (such as Node.js), expose a factory as module.exports.\n\t\t// This accentuates the need for the creation of a real `window`.\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info.\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n} )( typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1\n// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode\n// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common\n// enough that all such attempts are guarded in a try block.\n\"use strict\";\n\nvar arr = [];\n\nvar getProto = Object.getPrototypeOf;\n\nvar slice = arr.slice;\n\nvar flat = arr.flat ? function( array ) {\n\treturn arr.flat.call( array );\n} : function( array ) {\n\treturn arr.concat.apply( [], array );\n};\n\n\nvar push = arr.push;\n\nvar indexOf = arr.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar fnToString = hasOwn.toString;\n\nvar ObjectFunctionString = fnToString.call( Object );\n\nvar support = {};\n\nvar isFunction = function isFunction( obj ) {\n\n      // Support: Chrome <=57, Firefox <=52\n      // In some browsers, typeof returns \"function\" for HTML <object> elements\n      // (i.e., `typeof document.createElement( \"object\" ) === \"function\"`).\n      // We don't want to classify *any* DOM node as a function.\n      return typeof obj === \"function\" && typeof obj.nodeType !== \"number\";\n  };\n\n\nvar isWindow = function isWindow( obj ) {\n\t\treturn obj != null && obj === obj.window;\n\t};\n\n\nvar document = window.document;\n\n\n\n\tvar preservedScriptAttributes = {\n\t\ttype: true,\n\t\tsrc: true,\n\t\tnonce: true,\n\t\tnoModule: true\n\t};\n\n\tfunction DOMEval( code, node, doc ) {\n\t\tdoc = doc || document;\n\n\t\tvar i, val,\n\t\t\tscript = doc.createElement( \"script\" );\n\n\t\tscript.text = code;\n\t\tif ( node ) {\n\t\t\tfor ( i in preservedScriptAttributes ) {\n\n\t\t\t\t// Support: Firefox 64+, Edge 18+\n\t\t\t\t// Some browsers don't support the \"nonce\" property on scripts.\n\t\t\t\t// On the other hand, just using `getAttribute` is not enough as\n\t\t\t\t// the `nonce` attribute is reset to an empty string whenever it\n\t\t\t\t// becomes browsing-context connected.\n\t\t\t\t// See https://github.com/whatwg/html/issues/2369\n\t\t\t\t// See https://html.spec.whatwg.org/#nonce-attributes\n\t\t\t\t// The `node.getAttribute` check was added for the sake of\n\t\t\t\t// `jQuery.globalEval` so that it can fake a nonce-containing node\n\t\t\t\t// via an object.\n\t\t\t\tval = node[ i ] || node.getAttribute && node.getAttribute( i );\n\t\t\t\tif ( val ) {\n\t\t\t\t\tscript.setAttribute( i, val );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tdoc.head.appendChild( script ).parentNode.removeChild( script );\n\t}\n\n\nfunction toType( obj ) {\n\tif ( obj == null ) {\n\t\treturn obj + \"\";\n\t}\n\n\t// Support: Android <=2.3 only (functionish RegExp)\n\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\tclass2type[ toString.call( obj ) ] || \"object\" :\n\t\ttypeof obj;\n}\n/* global Symbol */\n// Defining this global in .eslintrc.json would create a danger of using the global\n// unguarded in another place, it seems safer to define global only for this module\n\n\n\nvar\n\tversion = \"3.5.1\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t};\n\njQuery.fn = jQuery.prototype = {\n\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\n\t\t// Return all the elements in a clean array\n\t\tif ( num == null ) {\n\t\t\treturn slice.call( this );\n\t\t}\n\n\t\t// Return just the one element from the set\n\t\treturn num < 0 ? this[ num + this.length ] : this[ num ];\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\teach: function( callback ) {\n\t\treturn jQuery.each( this, callback );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map( this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t} ) );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teven: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn ( i + 1 ) % 2;\n\t\t} ) );\n\t},\n\n\todd: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn i % 2;\n\t\t} ) );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor();\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: arr.sort,\n\tsplice: arr.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[ 0 ] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// Skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !isFunction( target ) ) {\n\t\ttarget = {};\n\t}\n\n\t// Extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\n\t\t// Only deal with non-null/undefined values\n\t\tif ( ( options = arguments[ i ] ) != null ) {\n\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent Object.prototype pollution\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( name === \"__proto__\" || target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject( copy ) ||\n\t\t\t\t\t( copyIsArray = Array.isArray( copy ) ) ) ) {\n\t\t\t\t\tsrc = target[ name ];\n\n\t\t\t\t\t// Ensure proper type for the source value\n\t\t\t\t\tif ( copyIsArray && !Array.isArray( src ) ) {\n\t\t\t\t\t\tclone = [];\n\t\t\t\t\t} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {\n\t\t\t\t\t\tclone = {};\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src;\n\t\t\t\t\t}\n\t\t\t\t\tcopyIsArray = false;\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend( {\n\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\tisPlainObject: function( obj ) {\n\t\tvar proto, Ctor;\n\n\t\t// Detect obvious negatives\n\t\t// Use toString instead of jQuery.type to catch host objects\n\t\tif ( !obj || toString.call( obj ) !== \"[object Object]\" ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tproto = getProto( obj );\n\n\t\t// Objects with no prototype (e.g., `Object.create( null )`) are plain\n\t\tif ( !proto ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Objects with prototype are plain iff they were constructed by a global Object function\n\t\tCtor = hasOwn.call( proto, \"constructor\" ) && proto.constructor;\n\t\treturn typeof Ctor === \"function\" && fnToString.call( Ctor ) === ObjectFunctionString;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\t// Evaluates a script in a provided context; falls back to the global one\n\t// if not specified.\n\tglobalEval: function( code, options, doc ) {\n\t\tDOMEval( code, { nonce: options && options.nonce }, doc );\n\t},\n\n\teach: function( obj, callback ) {\n\t\tvar length, i = 0;\n\n\t\tif ( isArrayLike( obj ) ) {\n\t\t\tlength = obj.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tfor ( i in obj ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArrayLike( Object( arr ) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\treturn arr == null ? -1 : indexOf.call( arr, elem, i );\n\t},\n\n\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t// push.apply(_, arraylike) throws on ancient WebKit\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\tfor ( ; j < len; j++ ) {\n\t\t\tfirst[ i++ ] = second[ j ];\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar length, value,\n\t\t\ti = 0,\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArrayLike( elems ) ) {\n\t\t\tlength = elems.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn flat( ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n} );\n\nif ( typeof Symbol === \"function\" ) {\n\tjQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];\n}\n\n// Populate the class2type map\njQuery.each( \"Boolean Number String Function Array Date RegExp Object Error Symbol\".split( \" \" ),\nfunction( _i, name ) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n} );\n\nfunction isArrayLike( obj ) {\n\n\t// Support: real iOS 8.2 only (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = !!obj && \"length\" in obj && obj.length,\n\t\ttype = toType( obj );\n\n\tif ( isFunction( obj ) || isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.3.5\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://js.foundation/\n *\n * Date: 2020-03-14\n */\n( function( window ) {\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tnonnativeSelectorCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// Instance methods\n\thasOwn = ( {} ).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpushNative = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\n\t// Use a stripped-down indexOf as it's faster than native\n\t// https://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[ i ] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|\" +\n\t\t\"ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\n\t// https://www.w3.org/TR/css-syntax-3/#ident-token-diagram\n\tidentifier = \"(?:\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace +\n\t\t\"?|\\\\\\\\[^\\\\r\\\\n\\\\f]|[\\\\w-]|[^\\0-\\\\x7f])+\",\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + identifier + \")(?:\" + whitespace +\n\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\n\t\t// \"Attribute values must be CSS identifiers [capture 5]\n\t\t// or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" +\n\t\twhitespace + \"*\\\\]\",\n\n\tpseudos = \":(\" + identifier + \")(?:\\\\((\" +\n\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" +\n\t\twhitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace +\n\t\t\"*\" ),\n\trdescend = new RegExp( whitespace + \"|>\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + identifier + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + identifier + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + identifier + \"|[*])\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" +\n\t\t\twhitespace + \"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" +\n\t\t\twhitespace + \"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace +\n\t\t\t\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" + whitespace +\n\t\t\t\"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trhtml = /HTML$/i,\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\n\t// CSS escapes\n\t// http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace + \"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\", \"g\" ),\n\tfunescape = function( escape, nonHex ) {\n\t\tvar high = \"0x\" + escape.slice( 1 ) - 0x10000;\n\n\t\treturn nonHex ?\n\n\t\t\t// Strip the backslash prefix from a non-hex escape sequence\n\t\t\tnonHex :\n\n\t\t\t// Replace a hexadecimal escape sequence with the encoded Unicode code point\n\t\t\t// Support: IE <=11+\n\t\t\t// For values outside the Basic Multilingual Plane (BMP), manually construct a\n\t\t\t// surrogate pair\n\t\t\thigh < 0 ?\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// CSS string/identifier serialization\n\t// https://drafts.csswg.org/cssom/#common-serializing-idioms\n\trcssescape = /([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,\n\tfcssescape = function( ch, asCodePoint ) {\n\t\tif ( asCodePoint ) {\n\n\t\t\t// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER\n\t\t\tif ( ch === \"\\0\" ) {\n\t\t\t\treturn \"\\uFFFD\";\n\t\t\t}\n\n\t\t\t// Control characters and (dependent upon position) numbers get escaped as code points\n\t\t\treturn ch.slice( 0, -1 ) + \"\\\\\" +\n\t\t\t\tch.charCodeAt( ch.length - 1 ).toString( 16 ) + \" \";\n\t\t}\n\n\t\t// Other potentially-special ASCII characters get backslash-escaped\n\t\treturn \"\\\\\" + ch;\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t},\n\n\tinDisabledFieldset = addCombinator(\n\t\tfunction( elem ) {\n\t\t\treturn elem.disabled === true && elem.nodeName.toLowerCase() === \"fieldset\";\n\t\t},\n\t\t{ dir: \"parentNode\", next: \"legend\" }\n\t);\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t( arr = slice.call( preferredDoc.childNodes ) ),\n\t\tpreferredDoc.childNodes\n\t);\n\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\t// eslint-disable-next-line no-unused-expressions\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpushNative.apply( target, slice.call( els ) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( ( target[ j++ ] = els[ i++ ] ) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar m, i, elem, nid, match, groups, newSelector,\n\t\tnewContext = context && context.ownerDocument,\n\n\t\t// nodeType defaults to 9, since context defaults to document\n\t\tnodeType = context ? context.nodeType : 9;\n\n\tresults = results || [];\n\n\t// Return early from calls with invalid selector or context\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\t// Try to shortcut find operations (as opposed to filters) in HTML documents\n\tif ( !seed ) {\n\t\tsetDocument( context );\n\t\tcontext = context || document;\n\n\t\tif ( documentIsHTML ) {\n\n\t\t\t// If the selector is sufficiently simple, try using a \"get*By*\" DOM method\n\t\t\t// (excepting DocumentFragment context, where the methods don't exist)\n\t\t\tif ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) {\n\n\t\t\t\t// ID selector\n\t\t\t\tif ( ( m = match[ 1 ] ) ) {\n\n\t\t\t\t\t// Document context\n\t\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\t\tif ( ( elem = context.getElementById( m ) ) ) {\n\n\t\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// Element context\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\tif ( newContext && ( elem = newContext.getElementById( m ) ) &&\n\t\t\t\t\t\t\tcontains( context, elem ) &&\n\t\t\t\t\t\t\telem.id === m ) {\n\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t// Type selector\n\t\t\t\t} else if ( match[ 2 ] ) {\n\t\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\t\treturn results;\n\n\t\t\t\t// Class selector\n\t\t\t\t} else if ( ( m = match[ 3 ] ) && support.getElementsByClassName &&\n\t\t\t\t\tcontext.getElementsByClassName ) {\n\n\t\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\t\treturn results;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Take advantage of querySelectorAll\n\t\t\tif ( support.qsa &&\n\t\t\t\t!nonnativeSelectorCache[ selector + \" \" ] &&\n\t\t\t\t( !rbuggyQSA || !rbuggyQSA.test( selector ) ) &&\n\n\t\t\t\t// Support: IE 8 only\n\t\t\t\t// Exclude object elements\n\t\t\t\t( nodeType !== 1 || context.nodeName.toLowerCase() !== \"object\" ) ) {\n\n\t\t\t\tnewSelector = selector;\n\t\t\t\tnewContext = context;\n\n\t\t\t\t// qSA considers elements outside a scoping root when evaluating child or\n\t\t\t\t// descendant combinators, which is not what we want.\n\t\t\t\t// In such cases, we work around the behavior by prefixing every selector in the\n\t\t\t\t// list with an ID selector referencing the scope context.\n\t\t\t\t// The technique has to be used as well when a leading combinator is used\n\t\t\t\t// as such selectors are not recognized by querySelectorAll.\n\t\t\t\t// Thanks to Andrew Dupont for this technique.\n\t\t\t\tif ( nodeType === 1 &&\n\t\t\t\t\t( rdescend.test( selector ) || rcombinators.test( selector ) ) ) {\n\n\t\t\t\t\t// Expand context for sibling selectors\n\t\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext;\n\n\t\t\t\t\t// We can use :scope instead of the ID hack if the browser\n\t\t\t\t\t// supports it & if we're not changing the context.\n\t\t\t\t\tif ( newContext !== context || !support.scope ) {\n\n\t\t\t\t\t\t// Capture the context ID, setting it first if necessary\n\t\t\t\t\t\tif ( ( nid = context.getAttribute( \"id\" ) ) ) {\n\t\t\t\t\t\t\tnid = nid.replace( rcssescape, fcssescape );\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tcontext.setAttribute( \"id\", ( nid = expando ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prefix every selector in the list\n\t\t\t\t\tgroups = tokenize( selector );\n\t\t\t\t\ti = groups.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tgroups[ i ] = ( nid ? \"#\" + nid : \":scope\" ) + \" \" +\n\t\t\t\t\t\t\ttoSelector( groups[ i ] );\n\t\t\t\t\t}\n\t\t\t\t\tnewSelector = groups.join( \",\" );\n\t\t\t\t}\n\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch ( qsaError ) {\n\t\t\t\t\tnonnativeSelectorCache( selector, true );\n\t\t\t\t} finally {\n\t\t\t\t\tif ( nid === expando ) {\n\t\t\t\t\t\tcontext.removeAttribute( \"id\" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {function(string, object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn ( cache[ key + \" \" ] = value );\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created element and returns a boolean result\n */\nfunction assert( fn ) {\n\tvar el = document.createElement( \"fieldset\" );\n\n\ttry {\n\t\treturn !!fn( el );\n\t} catch ( e ) {\n\t\treturn false;\n\t} finally {\n\n\t\t// Remove from its parent by default\n\t\tif ( el.parentNode ) {\n\t\t\tel.parentNode.removeChild( el );\n\t\t}\n\n\t\t// release memory in IE\n\t\tel = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split( \"|\" ),\n\t\ti = arr.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[ i ] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\ta.sourceIndex - b.sourceIndex;\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( ( cur = cur.nextSibling ) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn ( name === \"input\" || name === \"button\" ) && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for :enabled/:disabled\n * @param {Boolean} disabled true for :disabled; false for :enabled\n */\nfunction createDisabledPseudo( disabled ) {\n\n\t// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable\n\treturn function( elem ) {\n\n\t\t// Only certain elements can match :enabled or :disabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled\n\t\tif ( \"form\" in elem ) {\n\n\t\t\t// Check for inherited disabledness on relevant non-disabled elements:\n\t\t\t// * listed form-associated elements in a disabled fieldset\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#category-listed\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled\n\t\t\t// * option elements in a disabled optgroup\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled\n\t\t\t// All such elements have a \"form\" property.\n\t\t\tif ( elem.parentNode && elem.disabled === false ) {\n\n\t\t\t\t// Option elements defer to a parent optgroup if present\n\t\t\t\tif ( \"label\" in elem ) {\n\t\t\t\t\tif ( \"label\" in elem.parentNode ) {\n\t\t\t\t\t\treturn elem.parentNode.disabled === disabled;\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn elem.disabled === disabled;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Support: IE 6 - 11\n\t\t\t\t// Use the isDisabled shortcut property to check for disabled fieldset ancestors\n\t\t\t\treturn elem.isDisabled === disabled ||\n\n\t\t\t\t\t// Where there is no isDisabled, check manually\n\t\t\t\t\t/* jshint -W018 */\n\t\t\t\t\telem.isDisabled !== !disabled &&\n\t\t\t\t\tinDisabledFieldset( elem ) === disabled;\n\t\t\t}\n\n\t\t\treturn elem.disabled === disabled;\n\n\t\t// Try to winnow out elements that can't be disabled before trusting the disabled property.\n\t\t// Some victims get caught in our net (label, legend, menu, track), but it shouldn't\n\t\t// even exist on them, let alone have a boolean value.\n\t\t} else if ( \"label\" in elem ) {\n\t\t\treturn elem.disabled === disabled;\n\t\t}\n\n\t\t// Remaining elements are neither :enabled nor :disabled\n\t\treturn false;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction( function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction( function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ ( j = matchIndexes[ i ] ) ] ) {\n\t\t\t\t\tseed[ j ] = !( matches[ j ] = seed[ j ] );\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t} );\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\tvar namespace = elem.namespaceURI,\n\t\tdocElem = ( elem.ownerDocument || elem ).documentElement;\n\n\t// Support: IE <=8\n\t// Assume HTML when documentElement doesn't yet exist, such as inside loading iframes\n\t// https://bugs.jquery.com/ticket/4833\n\treturn !rhtml.test( namespace || docElem && docElem.nodeName || \"HTML\" );\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, subWindow,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// Return early if doc is invalid or already selected\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Update global variables\n\tdocument = doc;\n\tdocElem = document.documentElement;\n\tdocumentIsHTML = !isXML( document );\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t// Accessing iframe documents after unload throws \"permission denied\" errors (jQuery #13936)\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( preferredDoc != document &&\n\t\t( subWindow = document.defaultView ) && subWindow.top !== subWindow ) {\n\n\t\t// Support: IE 11, Edge\n\t\tif ( subWindow.addEventListener ) {\n\t\t\tsubWindow.addEventListener( \"unload\", unloadHandler, false );\n\n\t\t// Support: IE 9 - 10 only\n\t\t} else if ( subWindow.attachEvent ) {\n\t\t\tsubWindow.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t// Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only,\n\t// Safari 4 - 5 only, Opera <=11.6 - 12.x only\n\t// IE/Edge & older browsers don't support the :scope pseudo-class.\n\t// Support: Safari 6.0 only\n\t// Safari 6.0 supports :scope but it's an alias of :root there.\n\tsupport.scope = assert( function( el ) {\n\t\tdocElem.appendChild( el ).appendChild( document.createElement( \"div\" ) );\n\t\treturn typeof el.querySelectorAll !== \"undefined\" &&\n\t\t\t!el.querySelectorAll( \":scope fieldset div\" ).length;\n\t} );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert( function( el ) {\n\t\tel.className = \"i\";\n\t\treturn !el.getAttribute( \"className\" );\n\t} );\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert( function( el ) {\n\t\tel.appendChild( document.createComment( \"\" ) );\n\t\treturn !el.getElementsByTagName( \"*\" ).length;\n\t} );\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( document.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programmatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert( function( el ) {\n\t\tdocElem.appendChild( el ).id = expando;\n\t\treturn !document.getElementsByName || !document.getElementsByName( expando ).length;\n\t} );\n\n\t// ID filter and find\n\tif ( support.getById ) {\n\t\tExpr.filter[ \"ID\" ] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute( \"id\" ) === attrId;\n\t\t\t};\n\t\t};\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar elem = context.getElementById( id );\n\t\t\t\treturn elem ? [ elem ] : [];\n\t\t\t}\n\t\t};\n\t} else {\n\t\tExpr.filter[ \"ID\" ] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" &&\n\t\t\t\t\telem.getAttributeNode( \"id\" );\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\n\t\t// Support: IE 6 - 7 only\n\t\t// getElementById is not reliable as a find shortcut\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar node, i, elems,\n\t\t\t\t\telem = context.getElementById( id );\n\n\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t// Verify the id attribute\n\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t}\n\n\t\t\t\t\t// Fall back on getElementsByName\n\t\t\t\t\telems = context.getElementsByName( id );\n\t\t\t\t\ti = 0;\n\t\t\t\t\twhile ( ( elem = elems[ i++ ] ) ) {\n\t\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn [];\n\t\t\t}\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[ \"TAG\" ] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[ \"CLASS\" ] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See https://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) {\n\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert( function( el ) {\n\n\t\t\tvar input;\n\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// https://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( el ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\r\\\\' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( el.querySelectorAll( \"[msallowcapture^='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !el.querySelectorAll( \"[selected]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+\n\t\t\tif ( !el.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"~=\" );\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 15 - 18+\n\t\t\t// IE 11/Edge don't find elements on a `[name='']` query in some cases.\n\t\t\t// Adding a temporary attribute to the document before the selection works\n\t\t\t// around the issue.\n\t\t\t// Interestingly, IE 10 & older don't seem to have the issue.\n\t\t\tinput = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"name\", \"\" );\n\t\t\tel.appendChild( input );\n\t\t\tif ( !el.querySelectorAll( \"[name='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*name\" + whitespace + \"*=\" +\n\t\t\t\t\twhitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !el.querySelectorAll( \":checked\" ).length ) {\n\t\t\t\trbuggyQSA.push( \":checked\" );\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibling-combinator selector` fails\n\t\t\tif ( !el.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push( \".#.+[+~]\" );\n\t\t\t}\n\n\t\t\t// Support: Firefox <=3.6 - 5 only\n\t\t\t// Old Firefox doesn't throw on a badly-escaped identifier.\n\t\t\tel.querySelectorAll( \"\\\\\\f\" );\n\t\t\trbuggyQSA.push( \"[\\\\r\\\\n\\\\f]\" );\n\t\t} );\n\n\t\tassert( function( el ) {\n\t\t\tel.innerHTML = \"<a href='' disabled='disabled'></a>\" +\n\t\t\t\t\"<select disabled='disabled'><option/></select>\";\n\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tel.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( el.querySelectorAll( \"[name=d]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( el.querySelectorAll( \":enabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: IE9-11+\n\t\t\t// IE's :disabled selector does not pick up the children of disabled fieldsets\n\t\t\tdocElem.appendChild( el ).disabled = true;\n\t\t\tif ( el.querySelectorAll( \":disabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: Opera 10 - 11 only\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tel.querySelectorAll( \"*,:x\" );\n\t\t\trbuggyQSA.push( \",.*:\" );\n\t\t} );\n\t}\n\n\tif ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector ) ) ) ) {\n\n\t\tassert( function( el ) {\n\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( el, \"*\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( el, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t} );\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( \"|\" ) );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( \"|\" ) );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully self-exclusive\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t) );\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( ( b = b.parentNode ) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t// two documents; shallow comparisons work.\n\t\t// eslint-disable-next-line eqeqeq\n\t\tcompare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( a == document || a.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, a ) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( b == document || b.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, b ) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\treturn a == document ? -1 :\n\t\t\t\tb == document ? 1 :\n\t\t\t\t/* eslint-enable eqeqeq */\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[ i ] === bp[ i ] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[ i ], bp[ i ] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\tap[ i ] == preferredDoc ? -1 :\n\t\t\tbp[ i ] == preferredDoc ? 1 :\n\t\t\t/* eslint-enable eqeqeq */\n\t\t\t0;\n\t};\n\n\treturn document;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\tsetDocument( elem );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t!nonnativeSelectorCache[ expr + \" \" ] &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\n\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t// fragment in IE 9\n\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\tnonnativeSelectorCache( expr, true );\n\t\t}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( context.ownerDocument || context ) != document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( elem.ownerDocument || elem ) != document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.escape = function( sel ) {\n\treturn ( sel + \"\" ).replace( rcssescape, fcssescape );\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( ( node = elem[ i++ ] ) ) {\n\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[ 1 ] = match[ 1 ].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[ 3 ] = ( match[ 3 ] || match[ 4 ] ||\n\t\t\t\tmatch[ 5 ] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[ 2 ] === \"~=\" ) {\n\t\t\t\tmatch[ 3 ] = \" \" + match[ 3 ] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[ 1 ] = match[ 1 ].toLowerCase();\n\n\t\t\tif ( match[ 1 ].slice( 0, 3 ) === \"nth\" ) {\n\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[ 3 ] ) {\n\t\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[ 4 ] = +( match[ 4 ] ?\n\t\t\t\t\tmatch[ 5 ] + ( match[ 6 ] || 1 ) :\n\t\t\t\t\t2 * ( match[ 3 ] === \"even\" || match[ 3 ] === \"odd\" ) );\n\t\t\t\tmatch[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === \"odd\" );\n\n\t\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[ 3 ] ) {\n\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[ 6 ] && match[ 2 ];\n\n\t\t\tif ( matchExpr[ \"CHILD\" ].test( match[ 0 ] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[ 3 ] ) {\n\t\t\t\tmatch[ 2 ] = match[ 4 ] || match[ 5 ] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t( excess = tokenize( unquoted, true ) ) &&\n\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t( excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length ) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[ 0 ] = match[ 0 ].slice( 0, excess );\n\t\t\t\tmatch[ 2 ] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() {\n\t\t\t\t\treturn true;\n\t\t\t\t} :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t( pattern = new RegExp( \"(^|\" + whitespace +\n\t\t\t\t\t\")\" + className + \"(\" + whitespace + \"|$)\" ) ) && classCache(\n\t\t\t\t\t\tclassName, function( elem ) {\n\t\t\t\t\t\t\treturn pattern.test(\n\t\t\t\t\t\t\t\ttypeof elem.className === \"string\" && elem.className ||\n\t\t\t\t\t\t\t\ttypeof elem.getAttribute !== \"undefined\" &&\n\t\t\t\t\t\t\t\t\telem.getAttribute( \"class\" ) ||\n\t\t\t\t\t\t\t\t\"\"\n\t\t\t\t\t\t\t);\n\t\t\t\t} );\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\t/* eslint-disable max-len */\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t\t/* eslint-enable max-len */\n\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, _argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tvar cache, uniqueCache, outerCache, node, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType,\n\t\t\t\t\t\tdiff = false;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( ( node = node[ dir ] ) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) {\n\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\n\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\tnode = parent;\n\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\tdiff = nodeIndex && cache[ 2 ];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t\tif ( useCache ) {\n\n\t\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\t\tdiff = nodeIndex;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// xml :nth-child(...)\n\t\t\t\t\t\t\t// or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t\tif ( diff === false ) {\n\n\t\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t\tif ( ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) &&\n\t\t\t\t\t\t\t\t\t\t++diff ) {\n\n\t\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t\touterCache = node[ expando ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction( function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[ i ] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[ i ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t} ) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction( function( selector ) {\n\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction( function( seed, matches, _context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\t\t\t\t\tseed[ i ] = !( matches[ i ] = elem );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} ) :\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tinput[ 0 ] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[ 0 ] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t} ),\n\n\t\t\"has\": markFunction( function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t} ),\n\n\t\t\"contains\": markFunction( function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t} ),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test( lang || \"\" ) ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( ( elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute( \"xml:lang\" ) || elem.getAttribute( \"lang\" ) ) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( ( elem = elem.parentNode ) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t} ),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement &&\n\t\t\t\t( !document.hasFocus || document.hasFocus() ) &&\n\t\t\t\t!!( elem.type || elem.href || ~elem.tabIndex );\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": createDisabledPseudo( false ),\n\t\t\"disabled\": createDisabledPseudo( true ),\n\n\t\t\"checked\": function( elem ) {\n\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn ( nodeName === \"input\" && !!elem.checked ) ||\n\t\t\t\t( nodeName === \"option\" && !!elem.selected );\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\t// eslint-disable-next-line no-unused-expressions\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[ \"empty\" ]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( ( attr = elem.getAttribute( \"type\" ) ) == null ||\n\t\t\t\t\tattr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo( function() {\n\t\t\treturn [ 0 ];\n\t\t} ),\n\n\t\t\"last\": createPositionalPseudo( function( _matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t} ),\n\n\t\t\"eq\": createPositionalPseudo( function( _matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t} ),\n\n\t\t\"even\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"odd\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"lt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ?\n\t\t\t\targument + length :\n\t\t\t\targument > length ?\n\t\t\t\t\tlength :\n\t\t\t\t\targument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"gt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} )\n\t}\n};\n\nExpr.pseudos[ \"nth\" ] = Expr.pseudos[ \"eq\" ];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || ( match = rcomma.exec( soFar ) ) ) {\n\t\t\tif ( match ) {\n\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[ 0 ].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( ( tokens = [] ) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( ( match = rcombinators.exec( soFar ) ) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push( {\n\t\t\t\tvalue: matched,\n\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[ 0 ].replace( rtrim, \" \" )\n\t\t\t} );\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] ||\n\t\t\t\t( match = preFilters[ type ]( match ) ) ) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push( {\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t} );\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[ i ].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tskip = combinator.next,\n\t\tkey = skip || dir,\n\t\tcheckNonElements = base && key === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, uniqueCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || ( elem[ expando ] = {} );\n\n\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\tuniqueCache = outerCache[ elem.uniqueID ] ||\n\t\t\t\t\t\t\t( outerCache[ elem.uniqueID ] = {} );\n\n\t\t\t\t\t\tif ( skip && skip === elem.nodeName.toLowerCase() ) {\n\t\t\t\t\t\t\telem = elem[ dir ] || elem;\n\t\t\t\t\t\t} else if ( ( oldCache = uniqueCache[ key ] ) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn ( newCache[ 2 ] = oldCache[ 2 ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\tuniqueCache[ key ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[ i ]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[ 0 ];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[ i ], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction( function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts(\n\t\t\t\tselector || \"*\",\n\t\t\t\tcontext.nodeType ? [ context ] : context,\n\t\t\t\t[]\n\t\t\t),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( ( elem = temp[ i ] ) ) {\n\t\t\t\t\tmatcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) ) {\n\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( ( matcherIn[ i ] = elem ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, ( matcherOut = [] ), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) &&\n\t\t\t\t\t\t( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) {\n\n\t\t\t\t\t\tseed[ temp ] = !( results[ temp ] = elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t} );\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[ 0 ].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[ \" \" ],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t( checkContext = context ).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) {\n\t\t\tmatchers = [ addCombinator( elementMatcher( matchers ), matcher ) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[ j ].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\n\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\ttokens\n\t\t\t\t\t\t.slice( 0, i - 1 )\n\t\t\t\t\t\t.concat( { value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" } )\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[ \"TAG\" ]( \"*\", outermost ),\n\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\n\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\toutermostContext = context == document || context || outermost;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\n\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\tif ( !context && elem.ownerDocument != document ) {\n\t\t\t\t\t\tsetDocument( elem );\n\t\t\t\t\t\txml = !documentIsHTML;\n\t\t\t\t\t}\n\t\t\t\t\twhile ( ( matcher = elementMatchers[ j++ ] ) ) {\n\t\t\t\t\t\tif ( matcher( elem, context || document, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( ( elem = !matcher && elem ) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// `i` is now the count of elements visited above, and adding it to `matchedCount`\n\t\t\t// makes the latter nonnegative.\n\t\t\tmatchedCount += i;\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\t// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n\t\t\t// equals `i`), unless we didn't visit _any_ elements in the above loop because we have\n\t\t\t// no element matchers and no seed.\n\t\t\t// Incrementing an initially-string \"0\" `i` allows `i` to remain a string only in that\n\t\t\t// case, which will result in a \"00\" `matchedCount` that differs from `i` but is also\n\t\t\t// numerically zero.\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( ( matcher = setMatchers[ j++ ] ) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !( unmatched[ i ] || setMatched[ i ] ) ) {\n\t\t\t\t\t\t\t\tsetMatched[ i ] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[ i ] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache(\n\t\t\tselector,\n\t\t\tmatcherFromGroupMatchers( elementMatchers, setMatchers )\n\t\t);\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( ( selector = compiled.selector || selector ) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is only one selector in the list and no seed\n\t// (the latter of which guarantees us context)\n\tif ( match.length === 1 ) {\n\n\t\t// Reduce context if the leading compound selector is an ID\n\t\ttokens = match[ 0 ] = match[ 0 ].slice( 0 );\n\t\tif ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === \"ID\" &&\n\t\t\tcontext.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) {\n\n\t\t\tcontext = ( Expr.find[ \"ID\" ]( token.matches[ 0 ]\n\t\t\t\t.replace( runescape, funescape ), context ) || [] )[ 0 ];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[ \"needsContext\" ].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[ i ];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ ( type = token.type ) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( ( find = Expr.find[ type ] ) ) {\n\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( ( seed = find(\n\t\t\t\t\ttoken.matches[ 0 ].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext\n\t\t\t\t) ) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\t!context || rsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split( \"\" ).sort( sortOrder ).join( \"\" ) === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert( function( el ) {\n\n\t// Should return 1, but returns 4 (following)\n\treturn el.compareDocumentPosition( document.createElement( \"fieldset\" ) ) & 1;\n} );\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert( function( el ) {\n\tel.innerHTML = \"<a href='#'></a>\";\n\treturn el.firstChild.getAttribute( \"href\" ) === \"#\";\n} ) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert( function( el ) {\n\tel.innerHTML = \"<input/>\";\n\tel.firstChild.setAttribute( \"value\", \"\" );\n\treturn el.firstChild.getAttribute( \"value\" ) === \"\";\n} ) ) {\n\taddHandle( \"value\", function( elem, _name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert( function( el ) {\n\treturn el.getAttribute( \"disabled\" ) == null;\n} ) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\t\tnull;\n\t\t}\n\t} );\n}\n\nreturn Sizzle;\n\n} )( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\n\n// Deprecated\njQuery.expr[ \":\" ] = jQuery.expr.pseudos;\njQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\njQuery.escapeSelector = Sizzle.escape;\n\n\n\n\nvar dir = function( elem, dir, until ) {\n\tvar matched = [],\n\t\ttruncate = until !== undefined;\n\n\twhile ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {\n\t\tif ( elem.nodeType === 1 ) {\n\t\t\tif ( truncate && jQuery( elem ).is( until ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tmatched.push( elem );\n\t\t}\n\t}\n\treturn matched;\n};\n\n\nvar siblings = function( n, elem ) {\n\tvar matched = [];\n\n\tfor ( ; n; n = n.nextSibling ) {\n\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\tmatched.push( n );\n\t\t}\n\t}\n\n\treturn matched;\n};\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\n\n\nfunction nodeName( elem, name ) {\n\n  return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\n};\nvar rsingleTag = ( /^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i );\n\n\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t} );\n\t}\n\n\t// Single element\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t} );\n\t}\n\n\t// Arraylike of elements (jQuery, arguments, Array)\n\tif ( typeof qualifier !== \"string\" ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( indexOf.call( qualifier, elem ) > -1 ) !== not;\n\t\t} );\n\t}\n\n\t// Filtered directly for both simple and complex selectors\n\treturn jQuery.filter( qualifier, elements, not );\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\tif ( elems.length === 1 && elem.nodeType === 1 ) {\n\t\treturn jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];\n\t}\n\n\treturn jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\treturn elem.nodeType === 1;\n\t} ) );\n};\n\njQuery.fn.extend( {\n\tfind: function( selector ) {\n\t\tvar i, ret,\n\t\t\tlen = this.length,\n\t\t\tself = this;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter( function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} ) );\n\t\t}\n\n\t\tret = this.pushStack( [] );\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\treturn len > 1 ? jQuery.uniqueSort( ret ) : ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], false ) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], true ) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n} );\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\t// Shortcut simple #id case for speed\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/,\n\n\tinit = jQuery.fn.init = function( selector, context, root ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Method init() accepts an alternate rootjQuery\n\t\t// so migrate can support jQuery.sub (gh-2101)\n\t\troot = root || rootjQuery;\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector[ 0 ] === \"<\" &&\n\t\t\t\tselector[ selector.length - 1 ] === \">\" &&\n\t\t\t\tselector.length >= 3 ) {\n\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && ( match[ 1 ] || !context ) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[ 1 ] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[ 0 ] : context;\n\n\t\t\t\t\t// Option to run scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[ 1 ],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[ 2 ] );\n\n\t\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t\t// Inject the element directly into the jQuery object\n\t\t\t\t\t\tthis[ 0 ] = elem;\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || root ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis[ 0 ] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( isFunction( selector ) ) {\n\t\t\treturn root.ready !== undefined ?\n\t\t\t\troot.ready( selector ) :\n\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\n\t// Methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend( {\n\thas: function( target ) {\n\t\tvar targets = jQuery( target, this ),\n\t\t\tl = targets.length;\n\n\t\treturn this.filter( function() {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[ i ] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\ttargets = typeof selectors !== \"string\" && jQuery( selectors );\n\n\t\t// Positional selectors never match, since there's no _selection_ context\n\t\tif ( !rneedsContext.test( selectors ) ) {\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tfor ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {\n\n\t\t\t\t\t// Always skip document fragments\n\t\t\t\t\tif ( cur.nodeType < 11 && ( targets ?\n\t\t\t\t\t\ttargets.index( cur ) > -1 :\n\n\t\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\t\tjQuery.find.matchesSelector( cur, selectors ) ) ) {\n\n\t\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within the set\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// Index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn indexOf.call( jQuery( elem ), this[ 0 ] );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn indexOf.call( this,\n\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[ 0 ] : elem\n\t\t);\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.uniqueSort(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t}\n} );\n\nfunction sibling( cur, dir ) {\n\twhile ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}\n\treturn cur;\n}\n\njQuery.each( {\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn siblings( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn siblings( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\tif ( elem.contentDocument != null &&\n\n\t\t\t// Support: IE 11+\n\t\t\t// <object> elements with no `data` attribute has an object\n\t\t\t// `contentDocument` with a `null` prototype.\n\t\t\tgetProto( elem.contentDocument ) ) {\n\n\t\t\treturn elem.contentDocument;\n\t\t}\n\n\t\t// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only\n\t\t// Treat the template element as a regular one in browsers that\n\t\t// don't support it.\n\t\tif ( nodeName( elem, \"template\" ) ) {\n\t\t\telem = elem.content || elem;\n\t\t}\n\n\t\treturn jQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar matched = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tmatched = jQuery.filter( selector, matched );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tjQuery.uniqueSort( matched );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tmatched.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched );\n\t};\n} );\nvar rnothtmlwhite = ( /[^\\x20\\t\\r\\n\\f]+/g );\n\n\n\n// Convert String-formatted options into Object-formatted ones\nfunction createOptions( options ) {\n\tvar object = {};\n\tjQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t} );\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\tcreateOptions( options ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\n\t\t// Last fire value for non-forgettable lists\n\t\tmemory,\n\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\n\t\t// Flag to prevent firing\n\t\tlocked,\n\n\t\t// Actual callback list\n\t\tlist = [],\n\n\t\t// Queue of execution data for repeatable lists\n\t\tqueue = [],\n\n\t\t// Index of currently firing callback (modified by add/remove as needed)\n\t\tfiringIndex = -1,\n\n\t\t// Fire callbacks\n\t\tfire = function() {\n\n\t\t\t// Enforce single-firing\n\t\t\tlocked = locked || options.once;\n\n\t\t\t// Execute callbacks for all pending executions,\n\t\t\t// respecting firingIndex overrides and runtime changes\n\t\t\tfired = firing = true;\n\t\t\tfor ( ; queue.length; firingIndex = -1 ) {\n\t\t\t\tmemory = queue.shift();\n\t\t\t\twhile ( ++firingIndex < list.length ) {\n\n\t\t\t\t\t// Run callback and check for early termination\n\t\t\t\t\tif ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&\n\t\t\t\t\t\toptions.stopOnFalse ) {\n\n\t\t\t\t\t\t// Jump to end and forget the data so .add doesn't re-fire\n\t\t\t\t\t\tfiringIndex = list.length;\n\t\t\t\t\t\tmemory = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Forget the data if we're done with it\n\t\t\tif ( !options.memory ) {\n\t\t\t\tmemory = false;\n\t\t\t}\n\n\t\t\tfiring = false;\n\n\t\t\t// Clean up if we're done firing for good\n\t\t\tif ( locked ) {\n\n\t\t\t\t// Keep an empty list if we have data for future add calls\n\t\t\t\tif ( memory ) {\n\t\t\t\t\tlist = [];\n\n\t\t\t\t// Otherwise, this object is spent\n\t\t\t\t} else {\n\t\t\t\t\tlist = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t// Actual Callbacks object\n\t\tself = {\n\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\n\t\t\t\t\t// If we have memory from a past run, we should fire after adding\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfiringIndex = list.length - 1;\n\t\t\t\t\t\tqueue.push( memory );\n\t\t\t\t\t}\n\n\t\t\t\t\t( function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tif ( isFunction( arg ) ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && toType( arg ) !== \"string\" ) {\n\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t} )( arguments );\n\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\tvar index;\n\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\tlist.splice( index, 1 );\n\n\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ?\n\t\t\t\t\tjQuery.inArray( fn, list ) > -1 :\n\t\t\t\t\tlist.length > 0;\n\t\t\t},\n\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Disable .fire and .add\n\t\t\t// Abort any current/pending executions\n\t\t\t// Clear all callbacks and values\n\t\t\tdisable: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tlist = memory = \"\";\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\n\t\t\t// Disable .fire\n\t\t\t// Also disable .add unless we have memory (since it would have no effect)\n\t\t\t// Abort any pending executions\n\t\t\tlock: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tif ( !memory && !firing ) {\n\t\t\t\t\tlist = memory = \"\";\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tlocked: function() {\n\t\t\t\treturn !!locked;\n\t\t\t},\n\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( !locked ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tqueue.push( args );\n\t\t\t\t\tif ( !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\nfunction Identity( v ) {\n\treturn v;\n}\nfunction Thrower( ex ) {\n\tthrow ex;\n}\n\nfunction adoptValue( value, resolve, reject, noValue ) {\n\tvar method;\n\n\ttry {\n\n\t\t// Check for promise aspect first to privilege synchronous behavior\n\t\tif ( value && isFunction( ( method = value.promise ) ) ) {\n\t\t\tmethod.call( value ).done( resolve ).fail( reject );\n\n\t\t// Other thenables\n\t\t} else if ( value && isFunction( ( method = value.then ) ) ) {\n\t\t\tmethod.call( value, resolve, reject );\n\n\t\t// Other non-thenables\n\t\t} else {\n\n\t\t\t// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:\n\t\t\t// * false: [ value ].slice( 0 ) => resolve( value )\n\t\t\t// * true: [ value ].slice( 1 ) => resolve()\n\t\t\tresolve.apply( undefined, [ value ].slice( noValue ) );\n\t\t}\n\n\t// For Promises/A+, convert exceptions into rejections\n\t// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in\n\t// Deferred#then to conditionally suppress rejection.\n\t} catch ( value ) {\n\n\t\t// Support: Android 4.0 only\n\t\t// Strict mode functions invoked without .call/.apply get global-object context\n\t\treject.apply( undefined, [ value ] );\n\t}\n}\n\njQuery.extend( {\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\n\t\t\t\t// action, add listener, callbacks,\n\t\t\t\t// ... .then handlers, argument index, [final state]\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks( \"memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"memory\" ), 2 ],\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 0, \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 1, \"rejected\" ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\t\"catch\": function( fn ) {\n\t\t\t\t\treturn promise.then( null, fn );\n\t\t\t\t},\n\n\t\t\t\t// Keep pipe for back-compat\n\t\t\t\tpipe: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( _i, tuple ) {\n\n\t\t\t\t\t\t\t// Map tuples (progress, done, fail) to arguments (done, fail, progress)\n\t\t\t\t\t\t\tvar fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];\n\n\t\t\t\t\t\t\t// deferred.progress(function() { bind to newDefer or newDefer.notify })\n\t\t\t\t\t\t\t// deferred.done(function() { bind to newDefer or newDefer.resolve })\n\t\t\t\t\t\t\t// deferred.fail(function() { bind to newDefer or newDefer.reject })\n\t\t\t\t\t\t\tdeferred[ tuple[ 1 ] ]( function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify )\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ](\n\t\t\t\t\t\t\t\t\t\tthis,\n\t\t\t\t\t\t\t\t\t\tfn ? [ returned ] : arguments\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t} );\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\t\t\t\tthen: function( onFulfilled, onRejected, onProgress ) {\n\t\t\t\t\tvar maxDepth = 0;\n\t\t\t\t\tfunction resolve( depth, deferred, handler, special ) {\n\t\t\t\t\t\treturn function() {\n\t\t\t\t\t\t\tvar that = this,\n\t\t\t\t\t\t\t\targs = arguments,\n\t\t\t\t\t\t\t\tmightThrow = function() {\n\t\t\t\t\t\t\t\t\tvar returned, then;\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.3\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-59\n\t\t\t\t\t\t\t\t\t// Ignore double-resolution attempts\n\t\t\t\t\t\t\t\t\tif ( depth < maxDepth ) {\n\t\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\treturned = handler.apply( that, args );\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.1\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-48\n\t\t\t\t\t\t\t\t\tif ( returned === deferred.promise() ) {\n\t\t\t\t\t\t\t\t\t\tthrow new TypeError( \"Thenable self-resolution\" );\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ sections 2.3.3.1, 3.5\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-54\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-75\n\t\t\t\t\t\t\t\t\t// Retrieve `then` only once\n\t\t\t\t\t\t\t\t\tthen = returned &&\n\n\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.4\n\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-64\n\t\t\t\t\t\t\t\t\t\t// Only check objects and functions for thenability\n\t\t\t\t\t\t\t\t\t\t( typeof returned === \"object\" ||\n\t\t\t\t\t\t\t\t\t\t\ttypeof returned === \"function\" ) &&\n\t\t\t\t\t\t\t\t\t\treturned.then;\n\n\t\t\t\t\t\t\t\t\t// Handle a returned thenable\n\t\t\t\t\t\t\t\t\tif ( isFunction( then ) ) {\n\n\t\t\t\t\t\t\t\t\t\t// Special processors (notify) just wait for resolution\n\t\t\t\t\t\t\t\t\t\tif ( special ) {\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special )\n\t\t\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\t\t// Normal processors (resolve) also hook into progress\n\t\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t\t// ...and disregard older resolution values\n\t\t\t\t\t\t\t\t\t\t\tmaxDepth++;\n\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdeferred.notifyWith )\n\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Handle all other returned values\n\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\tif ( handler !== Identity ) {\n\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\targs = [ returned ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t// Process the value(s)\n\t\t\t\t\t\t\t\t\t\t// Default process is resolve\n\t\t\t\t\t\t\t\t\t\t( special || deferred.resolveWith )( that, args );\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},\n\n\t\t\t\t\t\t\t\t// Only normal processors (resolve) catch and reject exceptions\n\t\t\t\t\t\t\t\tprocess = special ?\n\t\t\t\t\t\t\t\t\tmightThrow :\n\t\t\t\t\t\t\t\t\tfunction() {\n\t\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\t\tmightThrow();\n\t\t\t\t\t\t\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t\t\t\t\t\t\tif ( jQuery.Deferred.exceptionHook ) {\n\t\t\t\t\t\t\t\t\t\t\t\tjQuery.Deferred.exceptionHook( e,\n\t\t\t\t\t\t\t\t\t\t\t\t\tprocess.stackTrace );\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.4.1\n\t\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-61\n\t\t\t\t\t\t\t\t\t\t\t// Ignore post-resolution exceptions\n\t\t\t\t\t\t\t\t\t\t\tif ( depth + 1 >= maxDepth ) {\n\n\t\t\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\t\t\tif ( handler !== Thrower ) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\t\t\targs = [ e ];\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tdeferred.rejectWith( that, args );\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t};\n\n\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.1\n\t\t\t\t\t\t\t// https://promisesaplus.com/#point-57\n\t\t\t\t\t\t\t// Re-resolve promises immediately to dodge false rejection from\n\t\t\t\t\t\t\t// subsequent errors\n\t\t\t\t\t\t\tif ( depth ) {\n\t\t\t\t\t\t\t\tprocess();\n\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t// Call an optional hook to record the stack, in case of exception\n\t\t\t\t\t\t\t\t// since it's otherwise lost when execution goes async\n\t\t\t\t\t\t\t\tif ( jQuery.Deferred.getStackHook ) {\n\t\t\t\t\t\t\t\t\tprocess.stackTrace = jQuery.Deferred.getStackHook();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\twindow.setTimeout( process );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\n\t\t\t\t\t\t// progress_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 0 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onProgress ) ?\n\t\t\t\t\t\t\t\t\tonProgress :\n\t\t\t\t\t\t\t\t\tIdentity,\n\t\t\t\t\t\t\t\tnewDefer.notifyWith\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// fulfilled_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 1 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onFulfilled ) ?\n\t\t\t\t\t\t\t\t\tonFulfilled :\n\t\t\t\t\t\t\t\t\tIdentity\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// rejected_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 2 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onRejected ) ?\n\t\t\t\t\t\t\t\t\tonRejected :\n\t\t\t\t\t\t\t\t\tThrower\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 5 ];\n\n\t\t\t// promise.progress = list.add\n\t\t\t// promise.done = list.add\n\t\t\t// promise.fail = list.add\n\t\t\tpromise[ tuple[ 1 ] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(\n\t\t\t\t\tfunction() {\n\n\t\t\t\t\t\t// state = \"resolved\" (i.e., fulfilled)\n\t\t\t\t\t\t// state = \"rejected\"\n\t\t\t\t\t\tstate = stateString;\n\t\t\t\t\t},\n\n\t\t\t\t\t// rejected_callbacks.disable\n\t\t\t\t\t// fulfilled_callbacks.disable\n\t\t\t\t\ttuples[ 3 - i ][ 2 ].disable,\n\n\t\t\t\t\t// rejected_handlers.disable\n\t\t\t\t\t// fulfilled_handlers.disable\n\t\t\t\t\ttuples[ 3 - i ][ 3 ].disable,\n\n\t\t\t\t\t// progress_callbacks.lock\n\t\t\t\t\ttuples[ 0 ][ 2 ].lock,\n\n\t\t\t\t\t// progress_handlers.lock\n\t\t\t\t\ttuples[ 0 ][ 3 ].lock\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// progress_handlers.fire\n\t\t\t// fulfilled_handlers.fire\n\t\t\t// rejected_handlers.fire\n\t\t\tlist.add( tuple[ 3 ].fire );\n\n\t\t\t// deferred.notify = function() { deferred.notifyWith(...) }\n\t\t\t// deferred.resolve = function() { deferred.resolveWith(...) }\n\t\t\t// deferred.reject = function() { deferred.rejectWith(...) }\n\t\t\tdeferred[ tuple[ 0 ] ] = function() {\n\t\t\t\tdeferred[ tuple[ 0 ] + \"With\" ]( this === deferred ? undefined : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\n\t\t\t// deferred.notifyWith = list.fireWith\n\t\t\t// deferred.resolveWith = list.fireWith\n\t\t\t// deferred.rejectWith = list.fireWith\n\t\t\tdeferred[ tuple[ 0 ] + \"With\" ] = list.fireWith;\n\t\t} );\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( singleValue ) {\n\t\tvar\n\n\t\t\t// count of uncompleted subordinates\n\t\t\tremaining = arguments.length,\n\n\t\t\t// count of unprocessed arguments\n\t\t\ti = remaining,\n\n\t\t\t// subordinate fulfillment data\n\t\t\tresolveContexts = Array( i ),\n\t\t\tresolveValues = slice.call( arguments ),\n\n\t\t\t// the master Deferred\n\t\t\tmaster = jQuery.Deferred(),\n\n\t\t\t// subordinate callback factory\n\t\t\tupdateFunc = function( i ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tresolveContexts[ i ] = this;\n\t\t\t\t\tresolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( !( --remaining ) ) {\n\t\t\t\t\t\tmaster.resolveWith( resolveContexts, resolveValues );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t};\n\n\t\t// Single- and empty arguments are adopted like Promise.resolve\n\t\tif ( remaining <= 1 ) {\n\t\t\tadoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject,\n\t\t\t\t!remaining );\n\n\t\t\t// Use .then() to unwrap secondary thenables (cf. gh-3000)\n\t\t\tif ( master.state() === \"pending\" ||\n\t\t\t\tisFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {\n\n\t\t\t\treturn master.then();\n\t\t\t}\n\t\t}\n\n\t\t// Multiple arguments are aggregated like Promise.all array elements\n\t\twhile ( i-- ) {\n\t\t\tadoptValue( resolveValues[ i ], updateFunc( i ), master.reject );\n\t\t}\n\n\t\treturn master.promise();\n\t}\n} );\n\n\n// These usually indicate a programmer mistake during development,\n// warn about them ASAP rather than swallowing them by default.\nvar rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;\n\njQuery.Deferred.exceptionHook = function( error, stack ) {\n\n\t// Support: IE 8 - 9 only\n\t// Console exists when dev tools are open, which can happen at any time\n\tif ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {\n\t\twindow.console.warn( \"jQuery.Deferred exception: \" + error.message, error.stack, stack );\n\t}\n};\n\n\n\n\njQuery.readyException = function( error ) {\n\twindow.setTimeout( function() {\n\t\tthrow error;\n\t} );\n};\n\n\n\n\n// The deferred used on DOM ready\nvar readyList = jQuery.Deferred();\n\njQuery.fn.ready = function( fn ) {\n\n\treadyList\n\t\t.then( fn )\n\n\t\t// Wrap jQuery.readyException in a function so that the lookup\n\t\t// happens at the time of error handling instead of callback\n\t\t// registration.\n\t\t.catch( function( error ) {\n\t\t\tjQuery.readyException( error );\n\t\t} );\n\n\treturn this;\n};\n\njQuery.extend( {\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\t}\n} );\n\njQuery.ready.then = readyList.then;\n\n// The ready event handler and self cleanup method\nfunction completed() {\n\tdocument.removeEventListener( \"DOMContentLoaded\", completed );\n\twindow.removeEventListener( \"load\", completed );\n\tjQuery.ready();\n}\n\n// Catch cases where $(document).ready() is called\n// after the browser event has already occurred.\n// Support: IE <=9 - 10 only\n// Older IE sometimes signals \"interactive\" too soon\nif ( document.readyState === \"complete\" ||\n\t( document.readyState !== \"loading\" && !document.documentElement.doScroll ) ) {\n\n\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\twindow.setTimeout( jQuery.ready );\n\n} else {\n\n\t// Use the handy event callback\n\tdocument.addEventListener( \"DOMContentLoaded\", completed );\n\n\t// A fallback to window.onload, that will always work\n\twindow.addEventListener( \"load\", completed );\n}\n\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlen = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( toType( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\taccess( elems, fn, i, key[ i ], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, _key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\tfn(\n\t\t\t\t\telems[ i ], key, raw ?\n\t\t\t\t\tvalue :\n\t\t\t\t\tvalue.call( elems[ i ], i, fn( elems[ i ], key ) )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( chainable ) {\n\t\treturn elems;\n\t}\n\n\t// Gets\n\tif ( bulk ) {\n\t\treturn fn.call( elems );\n\t}\n\n\treturn len ? fn( elems[ 0 ], key ) : emptyGet;\n};\n\n\n// Matches dashed string for camelizing\nvar rmsPrefix = /^-ms-/,\n\trdashAlpha = /-([a-z])/g;\n\n// Used by camelCase as callback to replace()\nfunction fcamelCase( _all, letter ) {\n\treturn letter.toUpperCase();\n}\n\n// Convert dashed to camelCase; used by the css and data modules\n// Support: IE <=9 - 11, Edge 12 - 15\n// Microsoft forgot to hump their vendor prefix (#9572)\nfunction camelCase( string ) {\n\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n}\nvar acceptData = function( owner ) {\n\n\t// Accepts only:\n\t//  - Node\n\t//    - Node.ELEMENT_NODE\n\t//    - Node.DOCUMENT_NODE\n\t//  - Object\n\t//    - Any\n\treturn owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );\n};\n\n\n\n\nfunction Data() {\n\tthis.expando = jQuery.expando + Data.uid++;\n}\n\nData.uid = 1;\n\nData.prototype = {\n\n\tcache: function( owner ) {\n\n\t\t// Check if the owner object already has a cache\n\t\tvar value = owner[ this.expando ];\n\n\t\t// If not, create one\n\t\tif ( !value ) {\n\t\t\tvalue = {};\n\n\t\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t\t// but we should not, see #8335.\n\t\t\t// Always return an empty object.\n\t\t\tif ( acceptData( owner ) ) {\n\n\t\t\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t\t\t// use plain assignment\n\t\t\t\tif ( owner.nodeType ) {\n\t\t\t\t\towner[ this.expando ] = value;\n\n\t\t\t\t// Otherwise secure it in a non-enumerable property\n\t\t\t\t// configurable must be true to allow the property to be\n\t\t\t\t// deleted when data is removed\n\t\t\t\t} else {\n\t\t\t\t\tObject.defineProperty( owner, this.expando, {\n\t\t\t\t\t\tvalue: value,\n\t\t\t\t\t\tconfigurable: true\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn value;\n\t},\n\tset: function( owner, data, value ) {\n\t\tvar prop,\n\t\t\tcache = this.cache( owner );\n\n\t\t// Handle: [ owner, key, value ] args\n\t\t// Always use camelCase key (gh-2257)\n\t\tif ( typeof data === \"string\" ) {\n\t\t\tcache[ camelCase( data ) ] = value;\n\n\t\t// Handle: [ owner, { properties } ] args\n\t\t} else {\n\n\t\t\t// Copy the properties one-by-one to the cache object\n\t\t\tfor ( prop in data ) {\n\t\t\t\tcache[ camelCase( prop ) ] = data[ prop ];\n\t\t\t}\n\t\t}\n\t\treturn cache;\n\t},\n\tget: function( owner, key ) {\n\t\treturn key === undefined ?\n\t\t\tthis.cache( owner ) :\n\n\t\t\t// Always use camelCase key (gh-2257)\n\t\t\towner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];\n\t},\n\taccess: function( owner, key, value ) {\n\n\t\t// In cases where either:\n\t\t//\n\t\t//   1. No key was specified\n\t\t//   2. A string key was specified, but no value provided\n\t\t//\n\t\t// Take the \"read\" path and allow the get method to determine\n\t\t// which value to return, respectively either:\n\t\t//\n\t\t//   1. The entire cache object\n\t\t//   2. The data stored at the key\n\t\t//\n\t\tif ( key === undefined ||\n\t\t\t\t( ( key && typeof key === \"string\" ) && value === undefined ) ) {\n\n\t\t\treturn this.get( owner, key );\n\t\t}\n\n\t\t// When the key is not a string, or both a key and value\n\t\t// are specified, set or extend (existing objects) with either:\n\t\t//\n\t\t//   1. An object of properties\n\t\t//   2. A key and value\n\t\t//\n\t\tthis.set( owner, key, value );\n\n\t\t// Since the \"set\" path can have two possible entry points\n\t\t// return the expected data based on which path was taken[*]\n\t\treturn value !== undefined ? value : key;\n\t},\n\tremove: function( owner, key ) {\n\t\tvar i,\n\t\t\tcache = owner[ this.expando ];\n\n\t\tif ( cache === undefined ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key !== undefined ) {\n\n\t\t\t// Support array or space separated string of keys\n\t\t\tif ( Array.isArray( key ) ) {\n\n\t\t\t\t// If key is an array of keys...\n\t\t\t\t// We always set camelCase keys, so remove that.\n\t\t\t\tkey = key.map( camelCase );\n\t\t\t} else {\n\t\t\t\tkey = camelCase( key );\n\n\t\t\t\t// If a key with the spaces exists, use it.\n\t\t\t\t// Otherwise, create an array by matching non-whitespace\n\t\t\t\tkey = key in cache ?\n\t\t\t\t\t[ key ] :\n\t\t\t\t\t( key.match( rnothtmlwhite ) || [] );\n\t\t\t}\n\n\t\t\ti = key.length;\n\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete cache[ key[ i ] ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if there's no more data\n\t\tif ( key === undefined || jQuery.isEmptyObject( cache ) ) {\n\n\t\t\t// Support: Chrome <=35 - 45\n\t\t\t// Webkit & Blink performance suffers when deleting properties\n\t\t\t// from DOM nodes, so set to undefined instead\n\t\t\t// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)\n\t\t\tif ( owner.nodeType ) {\n\t\t\t\towner[ this.expando ] = undefined;\n\t\t\t} else {\n\t\t\t\tdelete owner[ this.expando ];\n\t\t\t}\n\t\t}\n\t},\n\thasData: function( owner ) {\n\t\tvar cache = owner[ this.expando ];\n\t\treturn cache !== undefined && !jQuery.isEmptyObject( cache );\n\t}\n};\nvar dataPriv = new Data();\n\nvar dataUser = new Data();\n\n\n\n//\tImplementation Summary\n//\n//\t1. Enforce API surface and semantic compatibility with 1.9.x branch\n//\t2. Improve the module's maintainability by reducing the storage\n//\t\tpaths to a single mechanism.\n//\t3. Use the same single mechanism to support \"private\" and \"user\" data.\n//\t4. _Never_ expose \"private\" data to user code (TODO: Drop _data, _removeData)\n//\t5. Avoid exposing implementation details on user objects (eg. expando properties)\n//\t6. Provide a clear path for implementation upgrade to WeakMap in 2014\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /[A-Z]/g;\n\nfunction getData( data ) {\n\tif ( data === \"true\" ) {\n\t\treturn true;\n\t}\n\n\tif ( data === \"false\" ) {\n\t\treturn false;\n\t}\n\n\tif ( data === \"null\" ) {\n\t\treturn null;\n\t}\n\n\t// Only convert to a number if it doesn't change the string\n\tif ( data === +data + \"\" ) {\n\t\treturn +data;\n\t}\n\n\tif ( rbrace.test( data ) ) {\n\t\treturn JSON.parse( data );\n\t}\n\n\treturn data;\n}\n\nfunction dataAttr( elem, key, data ) {\n\tvar name;\n\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\t\tname = \"data-\" + key.replace( rmultiDash, \"-$&\" ).toLowerCase();\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = getData( data );\n\t\t\t} catch ( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tdataUser.set( elem, key, data );\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\treturn data;\n}\n\njQuery.extend( {\n\thasData: function( elem ) {\n\t\treturn dataUser.hasData( elem ) || dataPriv.hasData( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn dataUser.access( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\tdataUser.remove( elem, name );\n\t},\n\n\t// TODO: Now that all calls to _data and _removeData have been replaced\n\t// with direct calls to dataPriv methods, these can be deprecated.\n\t_data: function( elem, name, data ) {\n\t\treturn dataPriv.access( elem, name, data );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\tdataPriv.remove( elem, name );\n\t}\n} );\n\njQuery.fn.extend( {\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[ 0 ],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = dataUser.get( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !dataPriv.get( elem, \"hasDataAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE 11 only\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = camelCase( name.slice( 5 ) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tdataPriv.set( elem, \"hasDataAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tdataUser.set( this, key );\n\t\t\t} );\n\t\t}\n\n\t\treturn access( this, function( value ) {\n\t\t\tvar data;\n\n\t\t\t// The calling jQuery object (element matches) is not empty\n\t\t\t// (and therefore has an element appears at this[ 0 ]) and the\n\t\t\t// `value` parameter was not undefined. An empty jQuery object\n\t\t\t// will result in `undefined` for elem = this[ 0 ] which will\n\t\t\t// throw an exception if an attempt to read a data cache is made.\n\t\t\tif ( elem && value === undefined ) {\n\n\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t// The key will always be camelCased in Data\n\t\t\t\tdata = dataUser.get( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Attempt to \"discover\" the data in\n\t\t\t\t// HTML5 custom data-* attrs\n\t\t\t\tdata = dataAttr( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// We tried really hard, but the data doesn't exist.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Set the data...\n\t\t\tthis.each( function() {\n\n\t\t\t\t// We always store the camelCased key\n\t\t\t\tdataUser.set( this, key, value );\n\t\t\t} );\n\t\t}, null, value, arguments.length > 1, null, true );\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each( function() {\n\t\t\tdataUser.remove( this, key );\n\t\t} );\n\t}\n} );\n\n\njQuery.extend( {\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = dataPriv.get( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || Array.isArray( data ) ) {\n\t\t\t\t\tqueue = dataPriv.access( elem, type, jQuery.makeArray( data ) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// Clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// Not public - generate a queueHooks object, or return the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn dataPriv.get( elem, key ) || dataPriv.access( elem, key, {\n\t\t\tempty: jQuery.Callbacks( \"once memory\" ).add( function() {\n\t\t\t\tdataPriv.remove( elem, [ type + \"queue\", key ] );\n\t\t\t} )\n\t\t} );\n\t}\n} );\n\njQuery.fn.extend( {\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[ 0 ], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each( function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// Ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[ 0 ] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t} );\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t} );\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = dataPriv.get( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n} );\nvar pnum = ( /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/ ).source;\n\nvar rcssNum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" );\n\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar documentElement = document.documentElement;\n\n\n\n\tvar isAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem );\n\t\t},\n\t\tcomposed = { composed: true };\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only\n\t// Check attachment across shadow DOM boundaries when possible (gh-3504)\n\t// Support: iOS 10.0-10.2 only\n\t// Early iOS 10 versions support `attachShadow` but not `getRootNode`,\n\t// leading to errors. We need to check for `getRootNode`.\n\tif ( documentElement.getRootNode ) {\n\t\tisAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem ) ||\n\t\t\t\telem.getRootNode( composed ) === elem.ownerDocument;\n\t\t};\n\t}\nvar isHiddenWithinTree = function( elem, el ) {\n\n\t\t// isHiddenWithinTree might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\n\t\t// Inline style trumps all\n\t\treturn elem.style.display === \"none\" ||\n\t\t\telem.style.display === \"\" &&\n\n\t\t\t// Otherwise, check computed style\n\t\t\t// Support: Firefox <=43 - 45\n\t\t\t// Disconnected elements can have computed display: none, so first confirm that elem is\n\t\t\t// in the document.\n\t\t\tisAttached( elem ) &&\n\n\t\t\tjQuery.css( elem, \"display\" ) === \"none\";\n\t};\n\n\n\nfunction adjustCSS( elem, prop, valueParts, tween ) {\n\tvar adjusted, scale,\n\t\tmaxIterations = 20,\n\t\tcurrentValue = tween ?\n\t\t\tfunction() {\n\t\t\t\treturn tween.cur();\n\t\t\t} :\n\t\t\tfunction() {\n\t\t\t\treturn jQuery.css( elem, prop, \"\" );\n\t\t\t},\n\t\tinitial = currentValue(),\n\t\tunit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t// Starting value computation is required for potential unit mismatches\n\t\tinitialInUnit = elem.nodeType &&\n\t\t\t( jQuery.cssNumber[ prop ] || unit !== \"px\" && +initial ) &&\n\t\t\trcssNum.exec( jQuery.css( elem, prop ) );\n\n\tif ( initialInUnit && initialInUnit[ 3 ] !== unit ) {\n\n\t\t// Support: Firefox <=54\n\t\t// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)\n\t\tinitial = initial / 2;\n\n\t\t// Trust units reported by jQuery.css\n\t\tunit = unit || initialInUnit[ 3 ];\n\n\t\t// Iteratively approximate from a nonzero starting point\n\t\tinitialInUnit = +initial || 1;\n\n\t\twhile ( maxIterations-- ) {\n\n\t\t\t// Evaluate and update our best guess (doubling guesses that zero out).\n\t\t\t// Finish if the scale equals or crosses 1 (making the old*new product non-positive).\n\t\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\t\t\tif ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {\n\t\t\t\tmaxIterations = 0;\n\t\t\t}\n\t\t\tinitialInUnit = initialInUnit / scale;\n\n\t\t}\n\n\t\tinitialInUnit = initialInUnit * 2;\n\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\n\t\t// Make sure we update the tween properties later on\n\t\tvalueParts = valueParts || [];\n\t}\n\n\tif ( valueParts ) {\n\t\tinitialInUnit = +initialInUnit || +initial || 0;\n\n\t\t// Apply relative offset (+=/-=) if specified\n\t\tadjusted = valueParts[ 1 ] ?\n\t\t\tinitialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :\n\t\t\t+valueParts[ 2 ];\n\t\tif ( tween ) {\n\t\t\ttween.unit = unit;\n\t\t\ttween.start = initialInUnit;\n\t\t\ttween.end = adjusted;\n\t\t}\n\t}\n\treturn adjusted;\n}\n\n\nvar defaultDisplayMap = {};\n\nfunction getDefaultDisplay( elem ) {\n\tvar temp,\n\t\tdoc = elem.ownerDocument,\n\t\tnodeName = elem.nodeName,\n\t\tdisplay = defaultDisplayMap[ nodeName ];\n\n\tif ( display ) {\n\t\treturn display;\n\t}\n\n\ttemp = doc.body.appendChild( doc.createElement( nodeName ) );\n\tdisplay = jQuery.css( temp, \"display\" );\n\n\ttemp.parentNode.removeChild( temp );\n\n\tif ( display === \"none\" ) {\n\t\tdisplay = \"block\";\n\t}\n\tdefaultDisplayMap[ nodeName ] = display;\n\n\treturn display;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\t// Determine new display value for elements that need to change\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\n\t\t\t// Since we force visibility upon cascade-hidden elements, an immediate (and slow)\n\t\t\t// check is required in this first loop unless we have a nonempty display value (either\n\t\t\t// inline or about-to-be-restored)\n\t\t\tif ( display === \"none\" ) {\n\t\t\t\tvalues[ index ] = dataPriv.get( elem, \"display\" ) || null;\n\t\t\t\tif ( !values[ index ] ) {\n\t\t\t\t\telem.style.display = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( elem.style.display === \"\" && isHiddenWithinTree( elem ) ) {\n\t\t\t\tvalues[ index ] = getDefaultDisplay( elem );\n\t\t\t}\n\t\t} else {\n\t\t\tif ( display !== \"none\" ) {\n\t\t\t\tvalues[ index ] = \"none\";\n\n\t\t\t\t// Remember what we're overwriting\n\t\t\t\tdataPriv.set( elem, \"display\", display );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of the elements in a second loop to avoid constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\tif ( values[ index ] != null ) {\n\t\t\telements[ index ].style.display = values[ index ];\n\t\t}\n\t}\n\n\treturn elements;\n}\n\njQuery.fn.extend( {\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tif ( isHiddenWithinTree( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t} );\n\t}\n} );\nvar rcheckableType = ( /^(?:checkbox|radio)$/i );\n\nvar rtagName = ( /<([a-z][^\\/\\0>\\x20\\t\\r\\n\\f]*)/i );\n\nvar rscriptType = ( /^$|^module$|\\/(?:java|ecma)script/i );\n\n\n\n( function() {\n\tvar fragment = document.createDocumentFragment(),\n\t\tdiv = fragment.appendChild( document.createElement( \"div\" ) ),\n\t\tinput = document.createElement( \"input\" );\n\n\t// Support: Android 4.0 - 4.3 only\n\t// Check state lost if the name is set (#11217)\n\t// Support: Windows Web Apps (WWA)\n\t// `name` and `type` must use .setAttribute for WWA (#14901)\n\tinput.setAttribute( \"type\", \"radio\" );\n\tinput.setAttribute( \"checked\", \"checked\" );\n\tinput.setAttribute( \"name\", \"t\" );\n\n\tdiv.appendChild( input );\n\n\t// Support: Android <=4.1 only\n\t// Older WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE <=11 only\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// Support: IE <=9 only\n\t// IE <=9 replaces <option> tags with their contents when inserted outside of\n\t// the select element.\n\tdiv.innerHTML = \"<option></option>\";\n\tsupport.option = !!div.lastChild;\n} )();\n\n\n// We have to close these tags to support XHTML (#13200)\nvar wrapMap = {\n\n\t// XHTML parsers do not magically insert elements in the\n\t// same way that tag soup parsers do. So we cannot shorten\n\t// this by omitting <tbody> or other required elements.\n\tthead: [ 1, \"<table>\", \"</table>\" ],\n\tcol: [ 2, \"<table><colgroup>\", \"</colgroup></table>\" ],\n\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t_default: [ 0, \"\", \"\" ]\n};\n\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n// Support: IE <=9 only\nif ( !support.option ) {\n\twrapMap.optgroup = wrapMap.option = [ 1, \"<select multiple='multiple'>\", \"</select>\" ];\n}\n\n\nfunction getAll( context, tag ) {\n\n\t// Support: IE <=9 - 11 only\n\t// Use typeof to avoid zero-argument method invocation on host objects (#15151)\n\tvar ret;\n\n\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\tret = context.getElementsByTagName( tag || \"*\" );\n\n\t} else if ( typeof context.querySelectorAll !== \"undefined\" ) {\n\t\tret = context.querySelectorAll( tag || \"*\" );\n\n\t} else {\n\t\tret = [];\n\t}\n\n\tif ( tag === undefined || tag && nodeName( context, tag ) ) {\n\t\treturn jQuery.merge( [ context ], ret );\n\t}\n\n\treturn ret;\n}\n\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar i = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\tdataPriv.set(\n\t\t\telems[ i ],\n\t\t\t\"globalEval\",\n\t\t\t!refElements || dataPriv.get( refElements[ i ], \"globalEval\" )\n\t\t);\n\t}\n}\n\n\nvar rhtml = /<|&#?\\w+;/;\n\nfunction buildFragment( elems, context, scripts, selection, ignored ) {\n\tvar elem, tmp, tag, wrap, attached, j,\n\t\tfragment = context.createDocumentFragment(),\n\t\tnodes = [],\n\t\ti = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\telem = elems[ i ];\n\n\t\tif ( elem || elem === 0 ) {\n\n\t\t\t// Add nodes directly\n\t\t\tif ( toType( elem ) === \"object\" ) {\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t// Convert non-html into a text node\n\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t// Convert html into DOM nodes\n\t\t\t} else {\n\t\t\t\ttmp = tmp || fragment.appendChild( context.createElement( \"div\" ) );\n\n\t\t\t\t// Deserialize a standard representation\n\t\t\t\ttag = ( rtagName.exec( elem ) || [ \"\", \"\" ] )[ 1 ].toLowerCase();\n\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\t\t\t\ttmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];\n\n\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\tj = wrap[ 0 ];\n\t\t\t\twhile ( j-- ) {\n\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t}\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t// Remember the top-level container\n\t\t\t\ttmp = fragment.firstChild;\n\n\t\t\t\t// Ensure the created nodes are orphaned (#12392)\n\t\t\t\ttmp.textContent = \"\";\n\t\t\t}\n\t\t}\n\t}\n\n\t// Remove wrapper from fragment\n\tfragment.textContent = \"\";\n\n\ti = 0;\n\twhile ( ( elem = nodes[ i++ ] ) ) {\n\n\t\t// Skip elements already in the context collection (trac-4087)\n\t\tif ( selection && jQuery.inArray( elem, selection ) > -1 ) {\n\t\t\tif ( ignored ) {\n\t\t\t\tignored.push( elem );\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tattached = isAttached( elem );\n\n\t\t// Append to fragment\n\t\ttmp = getAll( fragment.appendChild( elem ), \"script\" );\n\n\t\t// Preserve script evaluation history\n\t\tif ( attached ) {\n\t\t\tsetGlobalEval( tmp );\n\t\t}\n\n\t\t// Capture executables\n\t\tif ( scripts ) {\n\t\t\tj = 0;\n\t\t\twhile ( ( elem = tmp[ j++ ] ) ) {\n\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\tscripts.push( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn fragment;\n}\n\n\nvar\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\n// Support: IE <=9 - 11+\n// focus() and blur() are asynchronous, except when they are no-op.\n// So expect focus to be synchronous when the element is already active,\n// and blur to be synchronous when the element is not already active.\n// (focus and blur are always synchronous in other supported browsers,\n// this just defines when we can count on it).\nfunction expectSync( elem, type ) {\n\treturn ( elem === safeActiveElement() ) === ( type === \"focus\" );\n}\n\n// Support: IE <=9 only\n// Accessing document.activeElement can throw unexpectedly\n// https://bugs.jquery.com/ticket/13393\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\nfunction on( elem, types, selector, data, fn, one ) {\n\tvar origFn, type;\n\n\t// Types can be a map of types/handlers\n\tif ( typeof types === \"object\" ) {\n\n\t\t// ( types-Object, selector, data )\n\t\tif ( typeof selector !== \"string\" ) {\n\n\t\t\t// ( types-Object, data )\n\t\t\tdata = data || selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tfor ( type in types ) {\n\t\t\ton( elem, type, selector, data, types[ type ], one );\n\t\t}\n\t\treturn elem;\n\t}\n\n\tif ( data == null && fn == null ) {\n\n\t\t// ( types, fn )\n\t\tfn = selector;\n\t\tdata = selector = undefined;\n\t} else if ( fn == null ) {\n\t\tif ( typeof selector === \"string\" ) {\n\n\t\t\t// ( types, selector, fn )\n\t\t\tfn = data;\n\t\t\tdata = undefined;\n\t\t} else {\n\n\t\t\t// ( types, data, fn )\n\t\t\tfn = data;\n\t\t\tdata = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t}\n\tif ( fn === false ) {\n\t\tfn = returnFalse;\n\t} else if ( !fn ) {\n\t\treturn elem;\n\t}\n\n\tif ( one === 1 ) {\n\t\torigFn = fn;\n\t\tfn = function( event ) {\n\n\t\t\t// Can use an empty set, since event contains the info\n\t\t\tjQuery().off( event );\n\t\t\treturn origFn.apply( this, arguments );\n\t\t};\n\n\t\t// Use same guid so caller can remove using origFn\n\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t}\n\treturn elem.each( function() {\n\t\tjQuery.event.add( this, types, fn, data, selector );\n\t} );\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\n\t\tvar handleObjIn, eventHandle, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.get( elem );\n\n\t\t// Only attach events to objects that accept data\n\t\tif ( !acceptData( elem ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Ensure that invalid selectors throw exceptions at attach time\n\t\t// Evaluate against documentElement in case elem is a non-element node (e.g., document)\n\t\tif ( selector ) {\n\t\t\tjQuery.find.matchesSelector( documentElement, selector );\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !( events = elemData.events ) ) {\n\t\t\tevents = elemData.events = Object.create( null );\n\t\t}\n\t\tif ( !( eventHandle = elemData.handle ) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" && jQuery.event.triggered !== e.type ?\n\t\t\t\t\tjQuery.event.dispatch.apply( elem, arguments ) : undefined;\n\t\t\t};\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend( {\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join( \".\" )\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !( handlers = events[ type ] ) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener if the special events handler returns false\n\t\t\t\tif ( !special.setup ||\n\t\t\t\t\tspecial.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\n\t\tvar j, origCount, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.hasData( elem ) && dataPriv.get( elem );\n\n\t\tif ( !elemData || !( events = elemData.events ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[ 2 ] &&\n\t\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector ||\n\t\t\t\t\t\tselector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown ||\n\t\t\t\t\tspecial.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove data and the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdataPriv.remove( elem, \"handle events\" );\n\t\t}\n\t},\n\n\tdispatch: function( nativeEvent ) {\n\n\t\tvar i, j, ret, matched, handleObj, handlerQueue,\n\t\t\targs = new Array( arguments.length ),\n\n\t\t\t// Make a writable jQuery.Event from the native event object\n\t\t\tevent = jQuery.event.fix( nativeEvent ),\n\n\t\t\thandlers = (\n\t\t\t\t\tdataPriv.get( this, \"events\" ) || Object.create( null )\n\t\t\t\t)[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[ 0 ] = event;\n\n\t\tfor ( i = 1; i < arguments.length; i++ ) {\n\t\t\targs[ i ] = arguments[ i ];\n\t\t}\n\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( ( handleObj = matched.handlers[ j++ ] ) &&\n\t\t\t\t!event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// If the event is namespaced, then each handler is only invoked if it is\n\t\t\t\t// specially universal or its namespaces are a superset of the event's.\n\t\t\t\tif ( !event.rnamespace || handleObj.namespace === false ||\n\t\t\t\t\tevent.rnamespace.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||\n\t\t\t\t\t\thandleObj.handler ).apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( ( event.result = ret ) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar i, handleObj, sel, matchedHandlers, matchedSelectors,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\tif ( delegateCount &&\n\n\t\t\t// Support: IE <=9\n\t\t\t// Black-hole SVG <use> instance trees (trac-13180)\n\t\t\tcur.nodeType &&\n\n\t\t\t// Support: Firefox <=42\n\t\t\t// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)\n\t\t\t// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click\n\t\t\t// Support: IE 11 only\n\t\t\t// ...but not arrow key \"clicks\" of radio inputs, which can have `button` -1 (gh-2343)\n\t\t\t!( event.type === \"click\" && event.button >= 1 ) ) {\n\n\t\t\tfor ( ; cur !== this; cur = cur.parentNode || this ) {\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && !( event.type === \"click\" && cur.disabled === true ) ) {\n\t\t\t\t\tmatchedHandlers = [];\n\t\t\t\t\tmatchedSelectors = {};\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatchedSelectors[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) > -1 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] ) {\n\t\t\t\t\t\t\tmatchedHandlers.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matchedHandlers.length ) {\n\t\t\t\t\t\thandlerQueue.push( { elem: cur, handlers: matchedHandlers } );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tcur = this;\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\taddProp: function( name, hook ) {\n\t\tObject.defineProperty( jQuery.Event.prototype, name, {\n\t\t\tenumerable: true,\n\t\t\tconfigurable: true,\n\n\t\t\tget: isFunction( hook ) ?\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\t\treturn hook( this.originalEvent );\n\t\t\t\t\t}\n\t\t\t\t} :\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\t\treturn this.originalEvent[ name ];\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\tset: function( value ) {\n\t\t\t\tObject.defineProperty( this, name, {\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tconfigurable: true,\n\t\t\t\t\twritable: true,\n\t\t\t\t\tvalue: value\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\t},\n\n\tfix: function( originalEvent ) {\n\t\treturn originalEvent[ jQuery.expando ] ?\n\t\t\toriginalEvent :\n\t\t\tnew jQuery.Event( originalEvent );\n\t},\n\n\tspecial: {\n\t\tload: {\n\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tclick: {\n\n\t\t\t// Utilize native event to ensure correct state for checkable inputs\n\t\t\tsetup: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Claim the first handler\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\t// dataPriv.set( el, \"click\", ... )\n\t\t\t\t\tleverageNative( el, \"click\", returnTrue );\n\t\t\t\t}\n\n\t\t\t\t// Return false to allow normal processing in the caller\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\ttrigger: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Force setup before triggering a click\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\tleverageNative( el, \"click\" );\n\t\t\t\t}\n\n\t\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\t\treturn true;\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, suppress native .click() on links\n\t\t\t// Also prevent it if we're currently inside a leveraged native-event stack\n\t\t\t_default: function( event ) {\n\t\t\t\tvar target = event.target;\n\t\t\t\treturn rcheckableType.test( target.type ) &&\n\t\t\t\t\ttarget.click && nodeName( target, \"input\" ) &&\n\t\t\t\t\tdataPriv.get( target, \"click\" ) ||\n\t\t\t\t\tnodeName( target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Ensure the presence of an event listener that handles manually-triggered\n// synthetic events by interrupting progress until reinvoked in response to\n// *native* events that it fires directly, ensuring that state changes have\n// already occurred before other listeners are invoked.\nfunction leverageNative( el, type, expectSync ) {\n\n\t// Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add\n\tif ( !expectSync ) {\n\t\tif ( dataPriv.get( el, type ) === undefined ) {\n\t\t\tjQuery.event.add( el, type, returnTrue );\n\t\t}\n\t\treturn;\n\t}\n\n\t// Register the controller as a special universal handler for all event namespaces\n\tdataPriv.set( el, type, false );\n\tjQuery.event.add( el, type, {\n\t\tnamespace: false,\n\t\thandler: function( event ) {\n\t\t\tvar notAsync, result,\n\t\t\t\tsaved = dataPriv.get( this, type );\n\n\t\t\tif ( ( event.isTrigger & 1 ) && this[ type ] ) {\n\n\t\t\t\t// Interrupt processing of the outer synthetic .trigger()ed event\n\t\t\t\t// Saved data should be false in such cases, but might be a leftover capture object\n\t\t\t\t// from an async native handler (gh-4350)\n\t\t\t\tif ( !saved.length ) {\n\n\t\t\t\t\t// Store arguments for use when handling the inner native event\n\t\t\t\t\t// There will always be at least one argument (an event object), so this array\n\t\t\t\t\t// will not be confused with a leftover capture object.\n\t\t\t\t\tsaved = slice.call( arguments );\n\t\t\t\t\tdataPriv.set( this, type, saved );\n\n\t\t\t\t\t// Trigger the native event and capture its result\n\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t// focus() and blur() are asynchronous\n\t\t\t\t\tnotAsync = expectSync( this, type );\n\t\t\t\t\tthis[ type ]();\n\t\t\t\t\tresult = dataPriv.get( this, type );\n\t\t\t\t\tif ( saved !== result || notAsync ) {\n\t\t\t\t\t\tdataPriv.set( this, type, false );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = {};\n\t\t\t\t\t}\n\t\t\t\t\tif ( saved !== result ) {\n\n\t\t\t\t\t\t// Cancel the outer synthetic event\n\t\t\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\treturn result.value;\n\t\t\t\t\t}\n\n\t\t\t\t// If this is an inner synthetic event for an event with a bubbling surrogate\n\t\t\t\t// (focus or blur), assume that the surrogate already propagated from triggering the\n\t\t\t\t// native event and prevent that from happening again here.\n\t\t\t\t// This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the\n\t\t\t\t// bubbling surrogate propagates *after* the non-bubbling base), but that seems\n\t\t\t\t// less bad than duplication.\n\t\t\t\t} else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {\n\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t}\n\n\t\t\t// If this is a native event triggered above, everything is now in order\n\t\t\t// Fire an inner synthetic event with the original arguments\n\t\t\t} else if ( saved.length ) {\n\n\t\t\t\t// ...and capture the result\n\t\t\t\tdataPriv.set( this, type, {\n\t\t\t\t\tvalue: jQuery.event.trigger(\n\n\t\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t\t// Extend with the prototype to reset the above stopImmediatePropagation()\n\t\t\t\t\t\tjQuery.extend( saved[ 0 ], jQuery.Event.prototype ),\n\t\t\t\t\t\tsaved.slice( 1 ),\n\t\t\t\t\t\tthis\n\t\t\t\t\t)\n\t\t\t\t} );\n\n\t\t\t\t// Abort handling of the native event\n\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t}\n\t\t}\n\t} );\n}\n\njQuery.removeEvent = function( elem, type, handle ) {\n\n\t// This \"if\" is needed for plain objects\n\tif ( elem.removeEventListener ) {\n\t\telem.removeEventListener( type, handle );\n\t}\n};\n\njQuery.Event = function( src, props ) {\n\n\t// Allow instantiation without the 'new' keyword\n\tif ( !( this instanceof jQuery.Event ) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\n\t\t\t\t// Support: Android <=2.3 only\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t\t// Create target properties\n\t\t// Support: Safari <=6 - 7 only\n\t\t// Target should not be a text node (#504, #13143)\n\t\tthis.target = ( src.target && src.target.nodeType === 3 ) ?\n\t\t\tsrc.target.parentNode :\n\t\t\tsrc.target;\n\n\t\tthis.currentTarget = src.currentTarget;\n\t\tthis.relatedTarget = src.relatedTarget;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || Date.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tconstructor: jQuery.Event,\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\tisSimulated: false,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.preventDefault();\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopPropagation();\n\t\t}\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Includes all common event props including KeyEvent and MouseEvent specific props\njQuery.each( {\n\taltKey: true,\n\tbubbles: true,\n\tcancelable: true,\n\tchangedTouches: true,\n\tctrlKey: true,\n\tdetail: true,\n\teventPhase: true,\n\tmetaKey: true,\n\tpageX: true,\n\tpageY: true,\n\tshiftKey: true,\n\tview: true,\n\t\"char\": true,\n\tcode: true,\n\tcharCode: true,\n\tkey: true,\n\tkeyCode: true,\n\tbutton: true,\n\tbuttons: true,\n\tclientX: true,\n\tclientY: true,\n\toffsetX: true,\n\toffsetY: true,\n\tpointerId: true,\n\tpointerType: true,\n\tscreenX: true,\n\tscreenY: true,\n\ttargetTouches: true,\n\ttoElement: true,\n\ttouches: true,\n\n\twhich: function( event ) {\n\t\tvar button = event.button;\n\n\t\t// Add which for key events\n\t\tif ( event.which == null && rkeyEvent.test( event.type ) ) {\n\t\t\treturn event.charCode != null ? event.charCode : event.keyCode;\n\t\t}\n\n\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\tif ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) {\n\t\t\tif ( button & 1 ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\tif ( button & 2 ) {\n\t\t\t\treturn 3;\n\t\t\t}\n\n\t\t\tif ( button & 4 ) {\n\t\t\t\treturn 2;\n\t\t\t}\n\n\t\t\treturn 0;\n\t\t}\n\n\t\treturn event.which;\n\t}\n}, jQuery.event.addProp );\n\njQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( type, delegateType ) {\n\tjQuery.event.special[ type ] = {\n\n\t\t// Utilize native event if possible so blur/focus sequence is correct\n\t\tsetup: function() {\n\n\t\t\t// Claim the first handler\n\t\t\t// dataPriv.set( this, \"focus\", ... )\n\t\t\t// dataPriv.set( this, \"blur\", ... )\n\t\t\tleverageNative( this, type, expectSync );\n\n\t\t\t// Return false to allow normal processing in the caller\n\t\t\treturn false;\n\t\t},\n\t\ttrigger: function() {\n\n\t\t\t// Force setup before trigger\n\t\t\tleverageNative( this, type );\n\n\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\treturn true;\n\t\t},\n\n\t\tdelegateType: delegateType\n\t};\n} );\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\n// so that event delegation works in jQuery.\n// Do the same for pointerenter/pointerleave and pointerover/pointerout\n//\n// Support: Safari 7 only\n// Safari sends mouseenter too often; see:\n// https://bugs.chromium.org/p/chromium/issues/detail?id=470258\n// for the description of the bug (it existed in older Chrome versions as well).\njQuery.each( {\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mouseenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n} );\n\njQuery.fn.extend( {\n\n\ton: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn );\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ?\n\t\t\t\t\thandleObj.origType + \".\" + handleObj.namespace :\n\t\t\t\t\thandleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t} );\n\t}\n} );\n\n\nvar\n\n\t// Support: IE <=10 - 11, Edge 12 - 13 only\n\t// In IE/Edge using regex groups here causes severe slowdowns.\n\t// See https://connect.microsoft.com/IE/feedback/details/1736512/\n\trnoInnerhtml = /<script|<style|<link/i,\n\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g;\n\n// Prefer a tbody over its parent table for containing new rows\nfunction manipulationTarget( elem, content ) {\n\tif ( nodeName( elem, \"table\" ) &&\n\t\tnodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ) {\n\n\t\treturn jQuery( elem ).children( \"tbody\" )[ 0 ] || elem;\n\t}\n\n\treturn elem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = ( elem.getAttribute( \"type\" ) !== null ) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tif ( ( elem.type || \"\" ).slice( 0, 5 ) === \"true/\" ) {\n\t\telem.type = elem.type.slice( 5 );\n\t} else {\n\t\telem.removeAttribute( \"type\" );\n\t}\n\n\treturn elem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\tvar i, l, type, pdataOld, udataOld, udataCur, events;\n\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\t// 1. Copy private data: events, handlers, etc.\n\tif ( dataPriv.hasData( src ) ) {\n\t\tpdataOld = dataPriv.get( src );\n\t\tevents = pdataOld.events;\n\n\t\tif ( events ) {\n\t\t\tdataPriv.remove( dest, \"handle events\" );\n\n\t\t\tfor ( type in events ) {\n\t\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// 2. Copy user data\n\tif ( dataUser.hasData( src ) ) {\n\t\tudataOld = dataUser.access( src );\n\t\tudataCur = jQuery.extend( {}, udataOld );\n\n\t\tdataUser.set( dest, udataCur );\n\t}\n}\n\n// Fix IE bugs, see support tests\nfunction fixInput( src, dest ) {\n\tvar nodeName = dest.nodeName.toLowerCase();\n\n\t// Fails to persist the checked state of a cloned checkbox or radio button.\n\tif ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\tdest.checked = src.checked;\n\n\t// Fails to return the selected option to the default selected state when cloning options\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\nfunction domManip( collection, args, callback, ignored ) {\n\n\t// Flatten any nested arrays\n\targs = flat( args );\n\n\tvar fragment, first, scripts, hasScripts, node, doc,\n\t\ti = 0,\n\t\tl = collection.length,\n\t\tiNoClone = l - 1,\n\t\tvalue = args[ 0 ],\n\t\tvalueIsFunction = isFunction( value );\n\n\t// We can't cloneNode fragments that contain checked, in WebKit\n\tif ( valueIsFunction ||\n\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\treturn collection.each( function( index ) {\n\t\t\tvar self = collection.eq( index );\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\targs[ 0 ] = value.call( this, index, self.html() );\n\t\t\t}\n\t\t\tdomManip( self, args, callback, ignored );\n\t\t} );\n\t}\n\n\tif ( l ) {\n\t\tfragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );\n\t\tfirst = fragment.firstChild;\n\n\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\tfragment = first;\n\t\t}\n\n\t\t// Require either new content or an interest in ignored elements to invoke the callback\n\t\tif ( first || ignored ) {\n\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\thasScripts = scripts.length;\n\n\t\t\t// Use the original fragment for the last item\n\t\t\t// instead of the first because it can end up\n\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tnode = fragment;\n\n\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\tif ( hasScripts ) {\n\n\t\t\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcallback.call( collection[ i ], node, i );\n\t\t\t}\n\n\t\t\tif ( hasScripts ) {\n\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t// Reenable scripts\n\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t!dataPriv.access( node, \"globalEval\" ) &&\n\t\t\t\t\t\tjQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\tif ( node.src && ( node.type || \"\" ).toLowerCase()  !== \"module\" ) {\n\n\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\tif ( jQuery._evalUrl && !node.noModule ) {\n\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src, {\n\t\t\t\t\t\t\t\t\tnonce: node.nonce || node.getAttribute( \"nonce\" )\n\t\t\t\t\t\t\t\t}, doc );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tDOMEval( node.textContent.replace( rcleanScript, \"\" ), node, doc );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn collection;\n}\n\nfunction remove( elem, selector, keepData ) {\n\tvar node,\n\t\tnodes = selector ? jQuery.filter( selector, elem ) : elem,\n\t\ti = 0;\n\n\tfor ( ; ( node = nodes[ i ] ) != null; i++ ) {\n\t\tif ( !keepData && node.nodeType === 1 ) {\n\t\t\tjQuery.cleanData( getAll( node ) );\n\t\t}\n\n\t\tif ( node.parentNode ) {\n\t\t\tif ( keepData && isAttached( node ) ) {\n\t\t\t\tsetGlobalEval( getAll( node, \"script\" ) );\n\t\t\t}\n\t\t\tnode.parentNode.removeChild( node );\n\t\t}\n\t}\n\n\treturn elem;\n}\n\njQuery.extend( {\n\thtmlPrefilter: function( html ) {\n\t\treturn html;\n\t},\n\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar i, l, srcElements, destElements,\n\t\t\tclone = elem.cloneNode( true ),\n\t\t\tinPage = isAttached( elem );\n\n\t\t// Fix IE cloning issues\n\t\tif ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&\n\t\t\t\t!jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\tfixInput( srcElements[ i ], destElements[ i ] );\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\t\tcloneCopyEvent( srcElements[ i ], destElements[ i ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tcleanData: function( elems ) {\n\t\tvar data, elem, type,\n\t\t\tspecial = jQuery.event.special,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {\n\t\t\tif ( acceptData( elem ) ) {\n\t\t\t\tif ( ( data = elem[ dataPriv.expando ] ) ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataPriv.expando ] = undefined;\n\t\t\t\t}\n\t\t\t\tif ( elem[ dataUser.expando ] ) {\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataUser.expando ] = undefined;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n} );\n\njQuery.fn.extend( {\n\tdetach: function( selector ) {\n\t\treturn remove( this, selector, true );\n\t},\n\n\tremove: function( selector ) {\n\t\treturn remove( this, selector );\n\t},\n\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().each( function() {\n\t\t\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\t\t\tthis.textContent = value;\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t} );\n\t},\n\n\tprepend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t} );\n\t},\n\n\tbefore: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t} );\n\t},\n\n\tafter: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t} );\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = this[ i ] ) != null; i++ ) {\n\t\t\tif ( elem.nodeType === 1 ) {\n\n\t\t\t\t// Prevent memory leaks\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\n\t\t\t\t// Remove any remaining nodes\n\t\t\t\telem.textContent = \"\";\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t} );\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined && elem.nodeType === 1 ) {\n\t\t\t\treturn elem.innerHTML;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t!wrapMap[ ( rtagName.exec( value ) || [ \"\", \"\" ] )[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = jQuery.htmlPrefilter( value );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\t\telem = this[ i ] || {};\n\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch ( e ) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar ignored = [];\n\n\t\t// Make the changes, replacing each non-ignored context element with the new content\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tvar parent = this.parentNode;\n\n\t\t\tif ( jQuery.inArray( this, ignored ) < 0 ) {\n\t\t\t\tjQuery.cleanData( getAll( this ) );\n\t\t\t\tif ( parent ) {\n\t\t\t\t\tparent.replaceChild( elem, this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Force callback invocation\n\t\t}, ignored );\n\t}\n} );\n\njQuery.each( {\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1,\n\t\t\ti = 0;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone( true );\n\t\t\tjQuery( insert[ i ] )[ original ]( elems );\n\n\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t// .get() because push.apply(_, arraylike) throws on ancient WebKit\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n} );\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\nvar getStyles = function( elem ) {\n\n\t\t// Support: IE <=11 only, Firefox <=30 (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tvar view = elem.ownerDocument.defaultView;\n\n\t\tif ( !view || !view.opener ) {\n\t\t\tview = window;\n\t\t}\n\n\t\treturn view.getComputedStyle( elem );\n\t};\n\nvar swap = function( elem, options, callback ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.call( elem );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar rboxStyle = new RegExp( cssExpand.join( \"|\" ), \"i\" );\n\n\n\n( function() {\n\n\t// Executing both pixelPosition & boxSizingReliable tests require only one layout\n\t// so they're executed at the same time to save the second computation.\n\tfunction computeStyleTests() {\n\n\t\t// This is a singleton, we need to execute it only once\n\t\tif ( !div ) {\n\t\t\treturn;\n\t\t}\n\n\t\tcontainer.style.cssText = \"position:absolute;left:-11111px;width:60px;\" +\n\t\t\t\"margin-top:1px;padding:0;border:0\";\n\t\tdiv.style.cssText =\n\t\t\t\"position:relative;display:block;box-sizing:border-box;overflow:scroll;\" +\n\t\t\t\"margin:auto;border:1px;padding:1px;\" +\n\t\t\t\"width:60%;top:1%\";\n\t\tdocumentElement.appendChild( container ).appendChild( div );\n\n\t\tvar divStyle = window.getComputedStyle( div );\n\t\tpixelPositionVal = divStyle.top !== \"1%\";\n\n\t\t// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44\n\t\treliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;\n\n\t\t// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3\n\t\t// Some styles come back with percentage values, even though they shouldn't\n\t\tdiv.style.right = \"60%\";\n\t\tpixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;\n\n\t\t// Support: IE 9 - 11 only\n\t\t// Detect misreporting of content dimensions for box-sizing:border-box elements\n\t\tboxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;\n\n\t\t// Support: IE 9 only\n\t\t// Detect overflow:scroll screwiness (gh-3699)\n\t\t// Support: Chrome <=64\n\t\t// Don't get tricked when zoom affects offsetWidth (gh-4029)\n\t\tdiv.style.position = \"absolute\";\n\t\tscrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12;\n\n\t\tdocumentElement.removeChild( container );\n\n\t\t// Nullify the div so it wouldn't be stored in the memory and\n\t\t// it will also be a sign that checks already performed\n\t\tdiv = null;\n\t}\n\n\tfunction roundPixelMeasures( measure ) {\n\t\treturn Math.round( parseFloat( measure ) );\n\t}\n\n\tvar pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,\n\t\treliableTrDimensionsVal, reliableMarginLeftVal,\n\t\tcontainer = document.createElement( \"div\" ),\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !div.style ) {\n\t\treturn;\n\t}\n\n\t// Support: IE <=9 - 11 only\n\t// Style of cloned element affects source element cloned (#8908)\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\tjQuery.extend( support, {\n\t\tboxSizingReliable: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\t\tpixelBoxStyles: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelBoxStylesVal;\n\t\t},\n\t\tpixelPosition: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelPositionVal;\n\t\t},\n\t\treliableMarginLeft: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn reliableMarginLeftVal;\n\t\t},\n\t\tscrollboxSize: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn scrollboxSizeVal;\n\t\t},\n\n\t\t// Support: IE 9 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Behavior in IE 9 is more subtle than in newer versions & it passes\n\t\t// some versions of this test; make sure not to make it pass there!\n\t\treliableTrDimensions: function() {\n\t\t\tvar table, tr, trChild, trStyle;\n\t\t\tif ( reliableTrDimensionsVal == null ) {\n\t\t\t\ttable = document.createElement( \"table\" );\n\t\t\t\ttr = document.createElement( \"tr\" );\n\t\t\t\ttrChild = document.createElement( \"div\" );\n\n\t\t\t\ttable.style.cssText = \"position:absolute;left:-11111px\";\n\t\t\t\ttr.style.height = \"1px\";\n\t\t\t\ttrChild.style.height = \"9px\";\n\n\t\t\t\tdocumentElement\n\t\t\t\t\t.appendChild( table )\n\t\t\t\t\t.appendChild( tr )\n\t\t\t\t\t.appendChild( trChild );\n\n\t\t\t\ttrStyle = window.getComputedStyle( tr );\n\t\t\t\treliableTrDimensionsVal = parseInt( trStyle.height ) > 3;\n\n\t\t\t\tdocumentElement.removeChild( table );\n\t\t\t}\n\t\t\treturn reliableTrDimensionsVal;\n\t\t}\n\t} );\n} )();\n\n\nfunction curCSS( elem, name, computed ) {\n\tvar width, minWidth, maxWidth, ret,\n\n\t\t// Support: Firefox 51+\n\t\t// Retrieving style before computed somehow\n\t\t// fixes an issue with getting wrong values\n\t\t// on detached elements\n\t\tstyle = elem.style;\n\n\tcomputed = computed || getStyles( elem );\n\n\t// getPropertyValue is needed for:\n\t//   .css('filter') (IE 9 only, #12537)\n\t//   .css('--customProperty) (#3144)\n\tif ( computed ) {\n\t\tret = computed.getPropertyValue( name ) || computed[ name ];\n\n\t\tif ( ret === \"\" && !isAttached( elem ) ) {\n\t\t\tret = jQuery.style( elem, name );\n\t\t}\n\n\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t// Android Browser returns percentage for some values,\n\t\t// but width seems to be reliably pixels.\n\t\t// This is against the CSSOM draft spec:\n\t\t// https://drafts.csswg.org/cssom/#resolved-values\n\t\tif ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\twidth = style.width;\n\t\t\tminWidth = style.minWidth;\n\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\tret = computed.width;\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.width = width;\n\t\t\tstyle.minWidth = minWidth;\n\t\t\tstyle.maxWidth = maxWidth;\n\t\t}\n\t}\n\n\treturn ret !== undefined ?\n\n\t\t// Support: IE <=9 - 11 only\n\t\t// IE returns zIndex value as an integer.\n\t\tret + \"\" :\n\t\tret;\n}\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tif ( conditionFn() ) {\n\n\t\t\t\t// Hook not needed (or it's not possible to use it due\n\t\t\t\t// to missing dependency), remove it.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\t\t\treturn ( this.get = hookFn ).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\nvar cssPrefixes = [ \"Webkit\", \"Moz\", \"ms\" ],\n\temptyStyle = document.createElement( \"div\" ).style,\n\tvendorProps = {};\n\n// Return a vendor-prefixed property or undefined\nfunction vendorPropName( name ) {\n\n\t// Check for vendor prefixed names\n\tvar capName = name[ 0 ].toUpperCase() + name.slice( 1 ),\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in emptyStyle ) {\n\t\t\treturn name;\n\t\t}\n\t}\n}\n\n// Return a potentially-mapped jQuery.cssProps or vendor prefixed property\nfunction finalPropName( name ) {\n\tvar final = jQuery.cssProps[ name ] || vendorProps[ name ];\n\n\tif ( final ) {\n\t\treturn final;\n\t}\n\tif ( name in emptyStyle ) {\n\t\treturn name;\n\t}\n\treturn vendorProps[ name ] = vendorPropName( name ) || name;\n}\n\n\nvar\n\n\t// Swappable if display is none or starts with table\n\t// except \"table\", \"table-cell\", or \"table-caption\"\n\t// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trcustomProp = /^--/,\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t};\n\nfunction setPositiveNumber( _elem, value, subtract ) {\n\n\t// Any relative (+/-) values have already been\n\t// normalized at this point\n\tvar matches = rcssNum.exec( value );\n\treturn matches ?\n\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {\n\tvar i = dimension === \"width\" ? 1 : 0,\n\t\textra = 0,\n\t\tdelta = 0;\n\n\t// Adjustment may not be necessary\n\tif ( box === ( isBorderBox ? \"border\" : \"content\" ) ) {\n\t\treturn 0;\n\t}\n\n\tfor ( ; i < 4; i += 2 ) {\n\n\t\t// Both box models exclude margin\n\t\tif ( box === \"margin\" ) {\n\t\t\tdelta += jQuery.css( elem, box + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\t// If we get here with a content-box, we're seeking \"padding\" or \"border\" or \"margin\"\n\t\tif ( !isBorderBox ) {\n\n\t\t\t// Add padding\n\t\t\tdelta += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// For \"border\" or \"margin\", add border\n\t\t\tif ( box !== \"padding\" ) {\n\t\t\t\tdelta += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\n\t\t\t// But still keep track of it otherwise\n\t\t\t} else {\n\t\t\t\textra += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\n\t\t// If we get here with a border-box (content + padding + border), we're seeking \"content\" or\n\t\t// \"padding\" or \"margin\"\n\t\t} else {\n\n\t\t\t// For \"content\", subtract padding\n\t\t\tif ( box === \"content\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// For \"content\" or \"padding\", subtract border\n\t\t\tif ( box !== \"margin\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Account for positive content-box scroll gutter when requested by providing computedVal\n\tif ( !isBorderBox && computedVal >= 0 ) {\n\n\t\t// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border\n\t\t// Assuming integer scroll gutter, subtract the rest and round down\n\t\tdelta += Math.max( 0, Math.ceil(\n\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\tcomputedVal -\n\t\t\tdelta -\n\t\t\textra -\n\t\t\t0.5\n\n\t\t// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter\n\t\t// Use an explicit zero to avoid NaN (gh-3964)\n\t\t) ) || 0;\n\t}\n\n\treturn delta;\n}\n\nfunction getWidthOrHeight( elem, dimension, extra ) {\n\n\t// Start with computed style\n\tvar styles = getStyles( elem ),\n\n\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).\n\t\t// Fake content-box until we know it's needed to know the true value.\n\t\tboxSizingNeeded = !support.boxSizingReliable() || extra,\n\t\tisBorderBox = boxSizingNeeded &&\n\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\tvalueIsBorderBox = isBorderBox,\n\n\t\tval = curCSS( elem, dimension, styles ),\n\t\toffsetProp = \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 );\n\n\t// Support: Firefox <=54\n\t// Return a confounding non-pixel value or feign ignorance, as appropriate.\n\tif ( rnumnonpx.test( val ) ) {\n\t\tif ( !extra ) {\n\t\t\treturn val;\n\t\t}\n\t\tval = \"auto\";\n\t}\n\n\n\t// Support: IE 9 - 11 only\n\t// Use offsetWidth/offsetHeight for when box sizing is unreliable.\n\t// In those cases, the computed value can be trusted to be border-box.\n\tif ( ( !support.boxSizingReliable() && isBorderBox ||\n\n\t\t// Support: IE 10 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Interestingly, in some cases IE 9 doesn't suffer from this issue.\n\t\t!support.reliableTrDimensions() && nodeName( elem, \"tr\" ) ||\n\n\t\t// Fall back to offsetWidth/offsetHeight when value is \"auto\"\n\t\t// This happens for inline elements with no explicit setting (gh-3571)\n\t\tval === \"auto\" ||\n\n\t\t// Support: Android <=4.1 - 4.3 only\n\t\t// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)\n\t\t!parseFloat( val ) && jQuery.css( elem, \"display\", false, styles ) === \"inline\" ) &&\n\n\t\t// Make sure the element is visible & connected\n\t\telem.getClientRects().length ) {\n\n\t\tisBorderBox = jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t\t// Where available, offsetWidth/offsetHeight approximate border box dimensions.\n\t\t// Where not available (e.g., SVG), assume unreliable box-sizing and interpret the\n\t\t// retrieved value as a content box dimension.\n\t\tvalueIsBorderBox = offsetProp in elem;\n\t\tif ( valueIsBorderBox ) {\n\t\t\tval = elem[ offsetProp ];\n\t\t}\n\t}\n\n\t// Normalize \"\" and auto\n\tval = parseFloat( val ) || 0;\n\n\t// Adjust for the element's box model\n\treturn ( val +\n\t\tboxModelAdjustment(\n\t\t\telem,\n\t\t\tdimension,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles,\n\n\t\t\t// Provide the current computed size to request scroll gutter calculation (gh-3589)\n\t\t\tval\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend( {\n\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"animationIterationCount\": true,\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"gridArea\": true,\n\t\t\"gridColumn\": true,\n\t\t\"gridColumnEnd\": true,\n\t\t\"gridColumnStart\": true,\n\t\t\"gridRow\": true,\n\t\t\"gridRowEnd\": true,\n\t\t\"gridRowStart\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name ),\n\t\t\tstyle = elem.style;\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to query the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Gets hook for the prefixed version, then unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// Convert \"+=\" or \"-=\" to relative numbers (#7345)\n\t\t\tif ( type === \"string\" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {\n\t\t\t\tvalue = adjustCSS( elem, name, ret );\n\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set (#7116)\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add the unit (except for certain CSS properties)\n\t\t\t// The isCustomProp check can be removed in jQuery 4.0 when we only auto-append\n\t\t\t// \"px\" to a few hardcoded values.\n\t\t\tif ( type === \"number\" && !isCustomProp ) {\n\t\t\t\tvalue += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? \"\" : \"px\" );\n\t\t\t}\n\n\t\t\t// background-* props affect original clone's values\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf( \"background\" ) === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !( \"set\" in hooks ) ||\n\t\t\t\t( value = hooks.set( elem, value, extra ) ) !== undefined ) {\n\n\t\t\t\tif ( isCustomProp ) {\n\t\t\t\t\tstyle.setProperty( name, value );\n\t\t\t\t} else {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else {\n\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks &&\n\t\t\t\t( ret = hooks.get( elem, false, extra ) ) !== undefined ) {\n\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar val, num, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name );\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to modify the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Try prefixed name followed by the unprefixed name\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t// Convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Make numeric if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || isFinite( num ) ? num || 0 : val;\n\t\t}\n\n\t\treturn val;\n\t}\n} );\n\njQuery.each( [ \"height\", \"width\" ], function( _i, dimension ) {\n\tjQuery.cssHooks[ dimension ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\n\t\t\t\t// Certain elements can have dimension info if we invisibly show them\n\t\t\t\t// but it must have a current display style that would benefit\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) &&\n\n\t\t\t\t\t// Support: Safari 8+\n\t\t\t\t\t// Table columns in Safari have non-zero offsetWidth & zero\n\t\t\t\t\t// getBoundingClientRect().width unless display is changed.\n\t\t\t\t\t// Support: IE <=11 only\n\t\t\t\t\t// Running getBoundingClientRect on a disconnected node\n\t\t\t\t\t// in IE throws an error.\n\t\t\t\t\t( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?\n\t\t\t\t\t\tswap( elem, cssShow, function() {\n\t\t\t\t\t\t\treturn getWidthOrHeight( elem, dimension, extra );\n\t\t\t\t\t\t} ) :\n\t\t\t\t\t\tgetWidthOrHeight( elem, dimension, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar matches,\n\t\t\t\tstyles = getStyles( elem ),\n\n\t\t\t\t// Only read styles.position if the test has a chance to fail\n\t\t\t\t// to avoid forcing a reflow.\n\t\t\t\tscrollboxSizeBuggy = !support.scrollboxSize() &&\n\t\t\t\t\tstyles.position === \"absolute\",\n\n\t\t\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)\n\t\t\t\tboxSizingNeeded = scrollboxSizeBuggy || extra,\n\t\t\t\tisBorderBox = boxSizingNeeded &&\n\t\t\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\tsubtract = extra ?\n\t\t\t\t\tboxModelAdjustment(\n\t\t\t\t\t\telem,\n\t\t\t\t\t\tdimension,\n\t\t\t\t\t\textra,\n\t\t\t\t\t\tisBorderBox,\n\t\t\t\t\t\tstyles\n\t\t\t\t\t) :\n\t\t\t\t\t0;\n\n\t\t\t// Account for unreliable border-box dimensions by comparing offset* to computed and\n\t\t\t// faking a content-box to get border and padding (gh-3699)\n\t\t\tif ( isBorderBox && scrollboxSizeBuggy ) {\n\t\t\t\tsubtract -= Math.ceil(\n\t\t\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\t\t\tparseFloat( styles[ dimension ] ) -\n\t\t\t\t\tboxModelAdjustment( elem, dimension, \"border\", false, styles ) -\n\t\t\t\t\t0.5\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Convert to pixels if value adjustment is needed\n\t\t\tif ( subtract && ( matches = rcssNum.exec( value ) ) &&\n\t\t\t\t( matches[ 3 ] || \"px\" ) !== \"px\" ) {\n\n\t\t\t\telem.style[ dimension ] = value;\n\t\t\t\tvalue = jQuery.css( elem, dimension );\n\t\t\t}\n\n\t\t\treturn setPositiveNumber( elem, value, subtract );\n\t\t}\n\t};\n} );\n\njQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn ( parseFloat( curCSS( elem, \"marginLeft\" ) ) ||\n\t\t\t\telem.getBoundingClientRect().left -\n\t\t\t\t\tswap( elem, { marginLeft: 0 }, function() {\n\t\t\t\t\t\treturn elem.getBoundingClientRect().left;\n\t\t\t\t\t} )\n\t\t\t\t) + \"px\";\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each( {\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// Assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split( \" \" ) : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( prefix !== \"margin\" ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n} );\n\njQuery.fn.extend( {\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( Array.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t}\n} );\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || jQuery.easing._default;\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\t// Use a property on the element directly when it is not a DOM element,\n\t\t\t// or when there is no matching style property that exists.\n\t\t\tif ( tween.elem.nodeType !== 1 ||\n\t\t\t\ttween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// Passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails.\n\t\t\t// Simple values such as \"10px\" are parsed to Float;\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as-is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\n\t\t\t// Use step hook for back compat.\n\t\t\t// Use cssHook if its there.\n\t\t\t// Use .style if available and use plain properties where available.\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.nodeType === 1 && (\n\t\t\t\t\tjQuery.cssHooks[ tween.prop ] ||\n\t\t\t\t\ttween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9 only\n// Panic based approach to setting things on disconnected nodes\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t},\n\t_default: \"swing\"\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, inProgress,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trrun = /queueHooks$/;\n\nfunction schedule() {\n\tif ( inProgress ) {\n\t\tif ( document.hidden === false && window.requestAnimationFrame ) {\n\t\t\twindow.requestAnimationFrame( schedule );\n\t\t} else {\n\t\t\twindow.setTimeout( schedule, jQuery.fx.interval );\n\t\t}\n\n\t\tjQuery.fx.tick();\n\t}\n}\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\twindow.setTimeout( function() {\n\t\tfxNow = undefined;\n\t} );\n\treturn ( fxNow = Date.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\ti = 0,\n\t\tattrs = { height: type };\n\n\t// If we include width, step value is 1 to do all cssExpand values,\n\t// otherwise step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {\n\n\t\t\t// We're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\tvar prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,\n\t\tisBox = \"width\" in props || \"height\" in props,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHiddenWithinTree( elem ),\n\t\tdataShow = dataPriv.get( elem, \"fxshow\" );\n\n\t// Queue-skipping animations hijack the fx hooks\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always( function() {\n\n\t\t\t// Ensure the complete handler is called before this completes\n\t\t\tanim.always( function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\t}\n\n\t// Detect show/hide animations\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.test( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// Pretend to be hidden if this is a \"show\" and\n\t\t\t\t// there is still data from a stopped show/hide\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\n\t\t\t\t// Ignore all other no-op show/hide data\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\t\t}\n\t}\n\n\t// Bail out if this is a no-op like .hide().hide()\n\tpropTween = !jQuery.isEmptyObject( props );\n\tif ( !propTween && jQuery.isEmptyObject( orig ) ) {\n\t\treturn;\n\t}\n\n\t// Restrict \"overflow\" and \"display\" styles during box animations\n\tif ( isBox && elem.nodeType === 1 ) {\n\n\t\t// Support: IE <=9 - 11, Edge 12 - 15\n\t\t// Record all 3 overflow attributes because IE does not infer the shorthand\n\t\t// from identically-valued overflowX and overflowY and Edge just mirrors\n\t\t// the overflowX value there.\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Identify a display type, preferring old show/hide data over the CSS cascade\n\t\trestoreDisplay = dataShow && dataShow.display;\n\t\tif ( restoreDisplay == null ) {\n\t\t\trestoreDisplay = dataPriv.get( elem, \"display\" );\n\t\t}\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\tif ( display === \"none\" ) {\n\t\t\tif ( restoreDisplay ) {\n\t\t\t\tdisplay = restoreDisplay;\n\t\t\t} else {\n\n\t\t\t\t// Get nonempty value(s) by temporarily forcing visibility\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t\trestoreDisplay = elem.style.display || restoreDisplay;\n\t\t\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\t\t\tshowHide( [ elem ] );\n\t\t\t}\n\t\t}\n\n\t\t// Animate inline elements as inline-block\n\t\tif ( display === \"inline\" || display === \"inline-block\" && restoreDisplay != null ) {\n\t\t\tif ( jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t\t// Restore the original display value at the end of pure show/hide animations\n\t\t\t\tif ( !propTween ) {\n\t\t\t\t\tanim.done( function() {\n\t\t\t\t\t\tstyle.display = restoreDisplay;\n\t\t\t\t\t} );\n\t\t\t\t\tif ( restoreDisplay == null ) {\n\t\t\t\t\t\tdisplay = style.display;\n\t\t\t\t\t\trestoreDisplay = display === \"none\" ? \"\" : display;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tanim.always( function() {\n\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t} );\n\t}\n\n\t// Implement show/hide animations\n\tpropTween = false;\n\tfor ( prop in orig ) {\n\n\t\t// General show/hide setup for this element animation\n\t\tif ( !propTween ) {\n\t\t\tif ( dataShow ) {\n\t\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\t\thidden = dataShow.hidden;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdataShow = dataPriv.access( elem, \"fxshow\", { display: restoreDisplay } );\n\t\t\t}\n\n\t\t\t// Store hidden/visible for toggle so `.stop().toggle()` \"reverses\"\n\t\t\tif ( toggle ) {\n\t\t\t\tdataShow.hidden = !hidden;\n\t\t\t}\n\n\t\t\t// Show elements before animating them\n\t\t\tif ( hidden ) {\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t}\n\n\t\t\t/* eslint-disable no-loop-func */\n\n\t\t\tanim.done( function() {\n\n\t\t\t/* eslint-enable no-loop-func */\n\n\t\t\t\t// The final step of a \"hide\" animation is actually hiding the element\n\t\t\t\tif ( !hidden ) {\n\t\t\t\t\tshowHide( [ elem ] );\n\t\t\t\t}\n\t\t\t\tdataPriv.remove( elem, \"fxshow\" );\n\t\t\t\tfor ( prop in orig ) {\n\t\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Per-property setup\n\t\tpropTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\t\tif ( !( prop in dataShow ) ) {\n\t\t\tdataShow[ prop ] = propTween.start;\n\t\t\tif ( hidden ) {\n\t\t\t\tpropTween.end = propTween.start;\n\t\t\t\tpropTween.start = 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( Array.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// Not quite $.extend, this won't overwrite existing keys.\n\t\t\t// Reusing 'index' because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = Animation.prefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\n\t\t\t// Don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t} ),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\n\t\t\t\t// Support: Android 2.3 only\n\t\t\t\t// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ] );\n\n\t\t\t// If there's more to do, yield\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t}\n\n\t\t\t// If this was an empty animation, synthesize a final progress notification\n\t\t\tif ( !length ) {\n\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t}\n\n\t\t\t// Resolve the animation and report its conclusion\n\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\treturn false;\n\t\t},\n\t\tanimation = deferred.promise( {\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, {\n\t\t\t\tspecialEasing: {},\n\t\t\t\teasing: jQuery.easing._default\n\t\t\t}, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\n\t\t\t\t\t// If we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// Resolve when we played the last frame; otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t} ),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length; index++ ) {\n\t\tresult = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\tif ( isFunction( result.stop ) ) {\n\t\t\t\tjQuery._queueHooks( animation.elem, animation.opts.queue ).stop =\n\t\t\t\t\tresult.stop.bind( result );\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\t// Attach callbacks from options\n\tanimation\n\t\t.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t} )\n\t);\n\n\treturn animation;\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\n\ttweeners: {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value );\n\t\t\tadjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );\n\t\t\treturn tween;\n\t\t} ]\n\t},\n\n\ttweener: function( props, callback ) {\n\t\tif ( isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.match( rnothtmlwhite );\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\tAnimation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];\n\t\t\tAnimation.tweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilters: [ defaultPrefilter ],\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tAnimation.prefilters.unshift( callback );\n\t\t} else {\n\t\t\tAnimation.prefilters.push( callback );\n\t\t}\n\t}\n} );\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tisFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !isFunction( easing ) && easing\n\t};\n\n\t// Go to the end state if fx are off\n\tif ( jQuery.fx.off ) {\n\t\topt.duration = 0;\n\n\t} else {\n\t\tif ( typeof opt.duration !== \"number\" ) {\n\t\t\tif ( opt.duration in jQuery.fx.speeds ) {\n\t\t\t\topt.duration = jQuery.fx.speeds[ opt.duration ];\n\n\t\t\t} else {\n\t\t\t\topt.duration = jQuery.fx.speeds._default;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend( {\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// Show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHiddenWithinTree ).css( \"opacity\", 0 ).show()\n\n\t\t\t// Animate to the value specified\n\t\t\t.end().animate( { opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || dataPriv.get( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = dataPriv.get( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this &&\n\t\t\t\t\t( type == null || timers[ index ].queue === type ) ) {\n\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Start the next in the queue if the last step wasn't forced.\n\t\t\t// Timers currently will call their complete callbacks, which\n\t\t\t// will dequeue but only if they were gotoEnd.\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t} );\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tvar index,\n\t\t\t\tdata = dataPriv.get( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// Enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// Empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// Look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t} );\n\t}\n} );\n\njQuery.each( [ \"toggle\", \"show\", \"hide\" ], function( _i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n} );\n\n// Generate shortcuts for custom animations\njQuery.each( {\n\tslideDown: genFx( \"show\" ),\n\tslideUp: genFx( \"hide\" ),\n\tslideToggle: genFx( \"toggle\" ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n} );\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ti = 0,\n\t\ttimers = jQuery.timers;\n\n\tfxNow = Date.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\n\t\t// Run the timer and safely remove it when done (allowing for external removal)\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tjQuery.fx.start();\n};\n\njQuery.fx.interval = 13;\njQuery.fx.start = function() {\n\tif ( inProgress ) {\n\t\treturn;\n\t}\n\n\tinProgress = true;\n\tschedule();\n};\n\njQuery.fx.stop = function() {\n\tinProgress = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = window.setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\twindow.clearTimeout( timeout );\n\t\t};\n\t} );\n};\n\n\n( function() {\n\tvar input = document.createElement( \"input\" ),\n\t\tselect = document.createElement( \"select\" ),\n\t\topt = select.appendChild( document.createElement( \"option\" ) );\n\n\tinput.type = \"checkbox\";\n\n\t// Support: Android <=4.3 only\n\t// Default value for a checkbox should be \"on\"\n\tsupport.checkOn = input.value !== \"\";\n\n\t// Support: IE <=11 only\n\t// Must access selectedIndex to make default options select\n\tsupport.optSelected = opt.selected;\n\n\t// Support: IE <=11 only\n\t// An input loses its value after becoming a radio\n\tinput = document.createElement( \"input\" );\n\tinput.value = \"t\";\n\tinput.type = \"radio\";\n\tsupport.radioValue = input.value === \"t\";\n} )();\n\n\nvar boolHook,\n\tattrHandle = jQuery.expr.attrHandle;\n\njQuery.fn.extend( {\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tattr: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set attributes on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// Attribute hooks are determined by the lowercase version\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\thooks = jQuery.attrHooks[ name.toLowerCase() ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\treturn value;\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tret = jQuery.find.attr( elem, name );\n\n\t\t// Non-existent attributes return null, we normalize to undefined\n\t\treturn ret == null ? undefined : ret;\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" &&\n\t\t\t\t\tnodeName( elem, \"input\" ) ) {\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name,\n\t\t\ti = 0,\n\n\t\t\t// Attribute names can contain non-HTML whitespace characters\n\t\t\t// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n\t\t\tattrNames = value && value.match( rnothtmlwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( ( name = attrNames[ i++ ] ) ) {\n\t\t\t\telem.removeAttribute( name );\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Hooks for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else {\n\t\t\telem.setAttribute( name, name );\n\t\t}\n\t\treturn name;\n\t}\n};\n\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( _i, name ) {\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = function( elem, name, isXML ) {\n\t\tvar ret, handle,\n\t\t\tlowercaseName = name.toLowerCase();\n\n\t\tif ( !isXML ) {\n\n\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\thandle = attrHandle[ lowercaseName ];\n\t\t\tattrHandle[ lowercaseName ] = ret;\n\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\tlowercaseName :\n\t\t\t\tnull;\n\t\t\tattrHandle[ lowercaseName ] = handle;\n\t\t}\n\t\treturn ret;\n\t};\n} );\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend( {\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tdelete this[ jQuery.propFix[ name ] || name ];\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set properties on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\treturn ( elem[ name ] = value );\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\treturn elem[ name ];\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\t// Support: IE <=9 - 11 only\n\t\t\t\t// elem.tabIndex doesn't always return the\n\t\t\t\t// correct value when it hasn't been explicitly set\n\t\t\t\t// https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\tif ( tabindex ) {\n\t\t\t\t\treturn parseInt( tabindex, 10 );\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\trfocusable.test( elem.nodeName ) ||\n\t\t\t\t\trclickable.test( elem.nodeName ) &&\n\t\t\t\t\telem.href\n\t\t\t\t) {\n\t\t\t\t\treturn 0;\n\t\t\t\t}\n\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t}\n} );\n\n// Support: IE <=11 only\n// Accessing the selectedIndex property\n// forces the browser to respect setting selected\n// on the option\n// The getter ensures a default option is selected\n// when in an optgroup\n// eslint rule \"no-unused-expressions\" is disabled for this code\n// since it considers such accessions noop\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent && parent.parentNode ) {\n\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\t\tset: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\njQuery.each( [\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n} );\n\n\n\n\n\t// Strip and collapse whitespace according to HTML spec\n\t// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace\n\tfunction stripAndCollapse( value ) {\n\t\tvar tokens = value.match( rnothtmlwhite ) || [];\n\t\treturn tokens.join( \" \" );\n\t}\n\n\nfunction getClass( elem ) {\n\treturn elem.getAttribute && elem.getAttribute( \"class\" ) || \"\";\n}\n\nfunction classesToArray( value ) {\n\tif ( Array.isArray( value ) ) {\n\t\treturn value;\n\t}\n\tif ( typeof value === \"string\" ) {\n\t\treturn value.match( rnothtmlwhite ) || [];\n\t}\n\treturn [];\n}\n\njQuery.fn.extend( {\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( !arguments.length ) {\n\t\t\treturn this.attr( \"class\", \"\" );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) > -1 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value,\n\t\t\tisValidValue = type === \"string\" || Array.isArray( value );\n\n\t\tif ( typeof stateVal === \"boolean\" && isValidValue ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).toggleClass(\n\t\t\t\t\tvalue.call( this, i, getClass( this ), stateVal ),\n\t\t\t\t\tstateVal\n\t\t\t\t);\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar className, i, self, classNames;\n\n\t\t\tif ( isValidValue ) {\n\n\t\t\t\t// Toggle individual class names\n\t\t\t\ti = 0;\n\t\t\t\tself = jQuery( this );\n\t\t\t\tclassNames = classesToArray( value );\n\n\t\t\t\twhile ( ( className = classNames[ i++ ] ) ) {\n\n\t\t\t\t\t// Check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( value === undefined || type === \"boolean\" ) {\n\t\t\t\tclassName = getClass( this );\n\t\t\t\tif ( className ) {\n\n\t\t\t\t\t// Store className if set\n\t\t\t\t\tdataPriv.set( this, \"__className__\", className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed `false`,\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tif ( this.setAttribute ) {\n\t\t\t\t\tthis.setAttribute( \"class\",\n\t\t\t\t\t\tclassName || value === false ?\n\t\t\t\t\t\t\"\" :\n\t\t\t\t\t\tdataPriv.get( this, \"__className__\" ) || \"\"\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className, elem,\n\t\t\ti = 0;\n\n\t\tclassName = \" \" + selector + \" \";\n\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\tif ( elem.nodeType === 1 &&\n\t\t\t\t( \" \" + stripAndCollapse( getClass( elem ) ) + \" \" ).indexOf( className ) > -1 ) {\n\t\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n} );\n\n\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend( {\n\tval: function( value ) {\n\t\tvar hooks, ret, valueIsFunction,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] ||\n\t\t\t\t\tjQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks &&\n\t\t\t\t\t\"get\" in hooks &&\n\t\t\t\t\t( ret = hooks.get( elem, \"value\" ) ) !== undefined\n\t\t\t\t) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\t// Handle most common string cases\n\t\t\t\tif ( typeof ret === \"string\" ) {\n\t\t\t\t\treturn ret.replace( rreturn, \"\" );\n\t\t\t\t}\n\n\t\t\t\t// Handle cases where value is null/undef or number\n\t\t\t\treturn ret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tvalueIsFunction = isFunction( value );\n\n\t\treturn this.each( function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\n\t\t\t} else if ( Array.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !( \"set\" in hooks ) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\n\t\t\t\t\t// Support: IE <=10 - 11 only\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\t// Strip and collapse whitespace\n\t\t\t\t\t// https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n\t\t\t\t\tstripAndCollapse( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option, i,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\",\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length;\n\n\t\t\t\tif ( index < 0 ) {\n\t\t\t\t\ti = max;\n\n\t\t\t\t} else {\n\t\t\t\t\ti = one ? index : 0;\n\t\t\t\t}\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t// IE8-9 doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t!option.disabled &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled ||\n\t\t\t\t\t\t\t\t!nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t/* eslint-disable no-cond-assign */\n\n\t\t\t\t\tif ( option.selected =\n\t\t\t\t\t\tjQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1\n\t\t\t\t\t) {\n\t\t\t\t\t\toptionSet = true;\n\t\t\t\t\t}\n\n\t\t\t\t\t/* eslint-enable no-cond-assign */\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\t\t\t\treturn values;\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Radios and checkboxes getter/setter\njQuery.each( [ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( Array.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\treturn elem.getAttribute( \"value\" ) === null ? \"on\" : elem.value;\n\t\t};\n\t}\n} );\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\nsupport.focusin = \"onfocusin\" in window;\n\n\nvar rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\tstopPropagationCallback = function( e ) {\n\t\te.stopPropagation();\n\t};\n\njQuery.extend( jQuery.event, {\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\n\t\tvar i, cur, tmp, bubbleType, ontype, handle, special, lastElement,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split( \".\" ) : [];\n\n\t\tcur = lastElement = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) > -1 ) {\n\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split( \".\" );\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf( \":\" ) < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.rnamespace = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === ( elem.ownerDocument || document ) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tlastElement = cur;\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = (\n\t\t\t\t\tdataPriv.get( cur, \"events\" ) || Object.create( null )\n\t\t\t\t)[ event.type ] &&\n\t\t\t\tdataPriv.get( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( ( !special._default ||\n\t\t\t\tspecial._default.apply( eventPath.pop(), data ) === false ) &&\n\t\t\t\tacceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name as the event.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.addEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\telem[ type ]();\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.removeEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\t// Piggyback on a donor event to simulate a different one\n\t// Used only for `focus(in | out)` events\n\tsimulate: function( type, elem, event ) {\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true\n\t\t\t}\n\t\t);\n\n\t\tjQuery.event.trigger( e, null, elem );\n\t}\n\n} );\n\njQuery.fn.extend( {\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t} );\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[ 0 ];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n} );\n\n\n// Support: Firefox <=44\n// Firefox doesn't have focus(in | out) events\n// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n//\n// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1\n// focus(in | out) events fire after focus & blur events,\n// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857\nif ( !support.focusin ) {\n\tjQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );\n\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\n\t\t\t\t// Handle: regular nodes (via `this.ownerDocument`), window\n\t\t\t\t// (via `this.document`) & document (via `this`).\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tdataPriv.access( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tdataPriv.remove( doc, fix );\n\n\t\t\t\t} else {\n\t\t\t\t\tdataPriv.access( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t} );\n}\nvar location = window.location;\n\nvar nonce = { guid: Date.now() };\n\nvar rquery = ( /\\?/ );\n\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\n\t// Support: IE 9 - 11 only\n\t// IE throws on parseFromString with invalid input.\n\ttry {\n\t\txml = ( new window.DOMParser() ).parseFromString( data, \"text/xml\" );\n\t} catch ( e ) {\n\t\txml = undefined;\n\t}\n\n\tif ( !xml || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( Array.isArray( obj ) ) {\n\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams(\n\t\t\t\t\tprefix + \"[\" + ( typeof v === \"object\" && v != null ? i : \"\" ) + \"]\",\n\t\t\t\t\tv,\n\t\t\t\t\ttraditional,\n\t\t\t\t\tadd\n\t\t\t\t);\n\t\t\t}\n\t\t} );\n\n\t} else if ( !traditional && toType( obj ) === \"object\" ) {\n\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, valueOrFunction ) {\n\n\t\t\t// If value is a function, invoke it and use its return value\n\t\t\tvar value = isFunction( valueOrFunction ) ?\n\t\t\t\tvalueOrFunction() :\n\t\t\t\tvalueOrFunction;\n\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" +\n\t\t\t\tencodeURIComponent( value == null ? \"\" : value );\n\t\t};\n\n\tif ( a == null ) {\n\t\treturn \"\";\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t} );\n\n\t} else {\n\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" );\n};\n\njQuery.fn.extend( {\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map( function() {\n\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t} )\n\t\t.filter( function() {\n\t\t\tvar type = this.type;\n\n\t\t\t// Use .is( \":disabled\" ) so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t} )\n\t\t.map( function( _i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\tif ( val == null ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tif ( Array.isArray( val ) ) {\n\t\t\t\treturn jQuery.map( val, function( val ) {\n\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t} ).get();\n\t}\n} );\n\n\nvar\n\tr20 = /%20/g,\n\trhash = /#.*$/,\n\trantiCache = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)$/mg,\n\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat( \"*\" ),\n\n\t// Anchor tag for parsing the document origin\n\toriginAnchor = document.createElement( \"a\" );\n\toriginAnchor.href = location.href;\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];\n\n\t\tif ( isFunction( func ) ) {\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( ( dataType = dataTypes[ i++ ] ) ) {\n\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType[ 0 ] === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" &&\n\t\t\t\t!seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t} );\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar key, deep,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\n\tvar ct, type, finalDataType, firstDataType,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"Content-Type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[ 0 ] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s.throws ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tstate: \"parsererror\",\n\t\t\t\t\t\t\t\terror: conv ? e : \"No conversion from \" + prev + \" to \" + current\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend( {\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: location.href,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( location.protocol ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /\\bxml\\b/,\n\t\t\thtml: /\\bhtml/,\n\t\t\tjson: /\\bjson\\b/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": JSON.parse,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar transport,\n\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\n\t\t\t// Response headers\n\t\t\tresponseHeadersString,\n\t\t\tresponseHeaders,\n\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// Url cleanup var\n\t\t\turlAnchor,\n\n\t\t\t// Request state (becomes false upon send and true upon completion)\n\t\t\tcompleted,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\t// Loop variable\n\t\t\ti,\n\n\t\t\t// uncached part of the url\n\t\t\tuncached,\n\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context &&\n\t\t\t\t( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\t\tjQuery.event,\n\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( completed ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[ 1 ].toLowerCase() + \" \" ] =\n\t\t\t\t\t\t\t\t\t( responseHeaders[ match[ 1 ].toLowerCase() + \" \" ] || [] )\n\t\t\t\t\t\t\t\t\t\t.concat( match[ 2 ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() + \" \" ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match.join( \", \" );\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn completed ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\tname = requestHeadersNames[ name.toLowerCase() ] =\n\t\t\t\t\t\t\trequestHeadersNames[ name.toLowerCase() ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( completed ) {\n\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Lazy-add the new callbacks in a way that preserves old ones\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR );\n\n\t\t// Add protocol if not provided (prefilters might expect it)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || location.href ) + \"\" )\n\t\t\t.replace( rprotocol, location.protocol + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = ( s.dataType || \"*\" ).toLowerCase().match( rnothtmlwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when the origin doesn't match the current origin.\n\t\tif ( s.crossDomain == null ) {\n\t\t\turlAnchor = document.createElement( \"a\" );\n\n\t\t\t// Support: IE <=8 - 11, Edge 12 - 15\n\t\t\t// IE throws exception on accessing the href property if url is malformed,\n\t\t\t// e.g. http://example.com:80x/\n\t\t\ttry {\n\t\t\t\turlAnchor.href = s.url;\n\n\t\t\t\t// Support: IE <=8 - 11 only\n\t\t\t\t// Anchor's host property isn't correctly set when s.url is relative\n\t\t\t\turlAnchor.href = urlAnchor.href;\n\t\t\t\ts.crossDomain = originAnchor.protocol + \"//\" + originAnchor.host !==\n\t\t\t\t\turlAnchor.protocol + \"//\" + urlAnchor.host;\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// If there is an error parsing the URL, assume it is crossDomain,\n\t\t\t\t// it can be rejected by the transport if it is invalid\n\t\t\t\ts.crossDomain = true;\n\t\t\t}\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( completed ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\t// Remove hash to simplify url manipulation\n\t\tcacheURL = s.url.replace( rhash, \"\" );\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// Remember the hash so we can put it back\n\t\t\tuncached = s.url.slice( cacheURL.length );\n\n\t\t\t// If data is available and should be processed, append data to url\n\t\t\tif ( s.data && ( s.processData || typeof s.data === \"string\" ) ) {\n\t\t\t\tcacheURL += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data;\n\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add or update anti-cache param if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\tcacheURL = cacheURL.replace( rantiCache, \"$1\" );\n\t\t\t\tuncached = ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + ( nonce.guid++ ) +\n\t\t\t\t\tuncached;\n\t\t\t}\n\n\t\t\t// Put hash and anti-cache on the URL that will be requested (gh-1732)\n\t\t\ts.url = cacheURL + uncached;\n\n\t\t// Change '%20' to '+' if this is encoded form body content (gh-2658)\n\t\t} else if ( s.data && s.processData &&\n\t\t\t( s.contentType || \"\" ).indexOf( \"application/x-www-form-urlencoded\" ) === 0 ) {\n\t\t\ts.data = s.data.replace( r20, \"+\" );\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[ 0 ] ] +\n\t\t\t\t\t( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend &&\n\t\t\t( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {\n\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// Aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tcompleteDeferred.add( s.complete );\n\t\tjqXHR.done( s.success );\n\t\tjqXHR.fail( s.error );\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\n\t\t\t// If request was aborted inside ajaxSend, stop there\n\t\t\tif ( completed ) {\n\t\t\t\treturn jqXHR;\n\t\t\t}\n\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = window.setTimeout( function() {\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tcompleted = false;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// Rethrow post-completion exceptions\n\t\t\t\tif ( completed ) {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\n\t\t\t\t// Propagate others as results\n\t\t\t\tdone( -1, e );\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Ignore repeat invocations\n\t\t\tif ( completed ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tcompleted = true;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\twindow.clearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Use a noop converter for missing script\n\t\t\tif ( !isSuccess && jQuery.inArray( \"script\", s.dataTypes ) > -1 ) {\n\t\t\t\ts.converters[ \"text script\" ] = function() {};\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"Last-Modified\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"etag\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Extract error from statusText and normalize for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n} );\n\njQuery.each( [ \"get\", \"post\" ], function( _i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\n\t\t// Shift arguments if data argument was omitted\n\t\tif ( isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\t// The url can be an options object (which then must have .url)\n\t\treturn jQuery.ajax( jQuery.extend( {\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t}, jQuery.isPlainObject( url ) && url ) );\n\t};\n} );\n\njQuery.ajaxPrefilter( function( s ) {\n\tvar i;\n\tfor ( i in s.headers ) {\n\t\tif ( i.toLowerCase() === \"content-type\" ) {\n\t\t\ts.contentType = s.headers[ i ] || \"\";\n\t\t}\n\t}\n} );\n\n\njQuery._evalUrl = function( url, options, doc ) {\n\treturn jQuery.ajax( {\n\t\turl: url,\n\n\t\t// Make this explicit, since user can override this through ajaxSetup (#11264)\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tcache: true,\n\t\tasync: false,\n\t\tglobal: false,\n\n\t\t// Only evaluate the response if it is successful (gh-4126)\n\t\t// dataFilter is not invoked for failure responses, so using it instead\n\t\t// of the default converter is kludgy but it works.\n\t\tconverters: {\n\t\t\t\"text script\": function() {}\n\t\t},\n\t\tdataFilter: function( response ) {\n\t\t\tjQuery.globalEval( response, options, doc );\n\t\t}\n\t} );\n};\n\n\njQuery.fn.extend( {\n\twrapAll: function( html ) {\n\t\tvar wrap;\n\n\t\tif ( this[ 0 ] ) {\n\t\t\tif ( isFunction( html ) ) {\n\t\t\t\thtml = html.call( this[ 0 ] );\n\t\t\t}\n\n\t\t\t// The elements to wrap the target around\n\t\t\twrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );\n\n\t\t\tif ( this[ 0 ].parentNode ) {\n\t\t\t\twrap.insertBefore( this[ 0 ] );\n\t\t\t}\n\n\t\t\twrap.map( function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstElementChild ) {\n\t\t\t\t\telem = elem.firstElementChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t} ).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapInner( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t} );\n\t},\n\n\twrap: function( html ) {\n\t\tvar htmlIsFunction = isFunction( html );\n\n\t\treturn this.each( function( i ) {\n\t\t\tjQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );\n\t\t} );\n\t},\n\n\tunwrap: function( selector ) {\n\t\tthis.parent( selector ).not( \"body\" ).each( function() {\n\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t} );\n\t\treturn this;\n\t}\n} );\n\n\njQuery.expr.pseudos.hidden = function( elem ) {\n\treturn !jQuery.expr.pseudos.visible( elem );\n};\njQuery.expr.pseudos.visible = function( elem ) {\n\treturn !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );\n};\n\n\n\n\njQuery.ajaxSettings.xhr = function() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch ( e ) {}\n};\n\nvar xhrSuccessStatus = {\n\n\t\t// File protocol always yields status code 0, assume 200\n\t\t0: 200,\n\n\t\t// Support: IE <=9 only\n\t\t// #1450: sometimes IE returns 1223 when it should be 204\n\t\t1223: 204\n\t},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nsupport.ajax = xhrSupported = !!xhrSupported;\n\njQuery.ajaxTransport( function( options ) {\n\tvar callback, errorCallback;\n\n\t// Cross domain only allowed if supported through XMLHttpRequest\n\tif ( support.cors || xhrSupported && !options.crossDomain ) {\n\t\treturn {\n\t\t\tsend: function( headers, complete ) {\n\t\t\t\tvar i,\n\t\t\t\t\txhr = options.xhr();\n\n\t\t\t\txhr.open(\n\t\t\t\t\toptions.type,\n\t\t\t\t\toptions.url,\n\t\t\t\t\toptions.async,\n\t\t\t\t\toptions.username,\n\t\t\t\t\toptions.password\n\t\t\t\t);\n\n\t\t\t\t// Apply custom fields if provided\n\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Override mime type if needed\n\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t}\n\n\t\t\t\t// X-Requested-With header\n\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\tif ( !options.crossDomain && !headers[ \"X-Requested-With\" ] ) {\n\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t}\n\n\t\t\t\t// Set headers\n\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] );\n\t\t\t\t}\n\n\t\t\t\t// Callback\n\t\t\t\tcallback = function( type ) {\n\t\t\t\t\treturn function() {\n\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\tcallback = errorCallback = xhr.onload =\n\t\t\t\t\t\t\t\txhr.onerror = xhr.onabort = xhr.ontimeout =\n\t\t\t\t\t\t\t\t\txhr.onreadystatechange = null;\n\n\t\t\t\t\t\t\tif ( type === \"abort\" ) {\n\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t} else if ( type === \"error\" ) {\n\n\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t// On a manual native abort, IE9 throws\n\t\t\t\t\t\t\t\t// errors on any property access that is not readyState\n\t\t\t\t\t\t\t\tif ( typeof xhr.status !== \"number\" ) {\n\t\t\t\t\t\t\t\t\tcomplete( 0, \"error\" );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcomplete(\n\n\t\t\t\t\t\t\t\t\t\t// File: protocol always yields status 0; see #8605, #14207\n\t\t\t\t\t\t\t\t\t\txhr.status,\n\t\t\t\t\t\t\t\t\t\txhr.statusText\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tcomplete(\n\t\t\t\t\t\t\t\t\txhrSuccessStatus[ xhr.status ] || xhr.status,\n\t\t\t\t\t\t\t\t\txhr.statusText,\n\n\t\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t\t// IE9 has no XHR2 but throws on binary (trac-11426)\n\t\t\t\t\t\t\t\t\t// For XHR2 non-text, let the caller handle it (gh-2498)\n\t\t\t\t\t\t\t\t\t( xhr.responseType || \"text\" ) !== \"text\"  ||\n\t\t\t\t\t\t\t\t\ttypeof xhr.responseText !== \"string\" ?\n\t\t\t\t\t\t\t\t\t\t{ binary: xhr.response } :\n\t\t\t\t\t\t\t\t\t\t{ text: xhr.responseText },\n\t\t\t\t\t\t\t\t\txhr.getAllResponseHeaders()\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t};\n\n\t\t\t\t// Listen to events\n\t\t\t\txhr.onload = callback();\n\t\t\t\terrorCallback = xhr.onerror = xhr.ontimeout = callback( \"error\" );\n\n\t\t\t\t// Support: IE 9 only\n\t\t\t\t// Use onreadystatechange to replace onabort\n\t\t\t\t// to handle uncaught aborts\n\t\t\t\tif ( xhr.onabort !== undefined ) {\n\t\t\t\t\txhr.onabort = errorCallback;\n\t\t\t\t} else {\n\t\t\t\t\txhr.onreadystatechange = function() {\n\n\t\t\t\t\t\t// Check readyState before timeout as it changes\n\t\t\t\t\t\tif ( xhr.readyState === 4 ) {\n\n\t\t\t\t\t\t\t// Allow onerror to be called first,\n\t\t\t\t\t\t\t// but that will not handle a native abort\n\t\t\t\t\t\t\t// Also, save errorCallback to a variable\n\t\t\t\t\t\t\t// as xhr.onerror cannot be accessed\n\t\t\t\t\t\t\twindow.setTimeout( function() {\n\t\t\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\t\t\terrorCallback();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\t// Create the abort callback\n\t\t\t\tcallback = callback( \"abort\" );\n\n\t\t\t\ttry {\n\n\t\t\t\t\t// Do send the request (this may raise an exception)\n\t\t\t\t\txhr.send( options.hasContent && options.data || null );\n\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t// #14683: Only rethrow if this hasn't been notified as an error yet\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tthrow e;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\n// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)\njQuery.ajaxPrefilter( function( s ) {\n\tif ( s.crossDomain ) {\n\t\ts.contents.script = false;\n\t}\n} );\n\n// Install script dataType\njQuery.ajaxSetup( {\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, \" +\n\t\t\t\"application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /\\b(?:java|ecma)script\\b/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n} );\n\n// Handle cache's special case and crossDomain\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t}\n} );\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function( s ) {\n\n\t// This transport only deals with cross domain or forced-by-attrs requests\n\tif ( s.crossDomain || s.scriptAttrs ) {\n\t\tvar script, callback;\n\t\treturn {\n\t\t\tsend: function( _, complete ) {\n\t\t\t\tscript = jQuery( \"<script>\" )\n\t\t\t\t\t.attr( s.scriptAttrs || {} )\n\t\t\t\t\t.prop( { charset: s.scriptCharset, src: s.url } )\n\t\t\t\t\t.on( \"load error\", callback = function( evt ) {\n\t\t\t\t\t\tscript.remove();\n\t\t\t\t\t\tcallback = null;\n\t\t\t\t\t\tif ( evt ) {\n\t\t\t\t\t\t\tcomplete( evt.type === \"error\" ? 404 : 200, evt.type );\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\tdocument.head.appendChild( script[ 0 ] );\n\t\t\t},\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup( {\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce.guid++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n} );\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" &&\n\t\t\t\t( s.contentType || \"\" )\n\t\t\t\t\t.indexOf( \"application/x-www-form-urlencoded\" ) === 0 &&\n\t\t\t\trjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[ \"script json\" ] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// Force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always( function() {\n\n\t\t\t// If previous value didn't exist - remove it\n\t\t\tif ( overwritten === undefined ) {\n\t\t\t\tjQuery( window ).removeProp( callbackName );\n\n\t\t\t// Otherwise restore preexisting value\n\t\t\t} else {\n\t\t\t\twindow[ callbackName ] = overwritten;\n\t\t\t}\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\n\t\t\t\t// Make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// Save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t} );\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n} );\n\n\n\n\n// Support: Safari 8 only\n// In Safari 8 documents created via document.implementation.createHTMLDocument\n// collapse sibling forms: the second one becomes a child of the first one.\n// Because of that, this security measure has to be disabled in Safari 8.\n// https://bugs.webkit.org/show_bug.cgi?id=137337\nsupport.createHTMLDocument = ( function() {\n\tvar body = document.implementation.createHTMLDocument( \"\" ).body;\n\tbody.innerHTML = \"<form></form><form></form>\";\n\treturn body.childNodes.length === 2;\n} )();\n\n\n// Argument \"data\" should be string of html\n// context (optional): If specified, the fragment will be created in this context,\n// defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( typeof data !== \"string\" ) {\n\t\treturn [];\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\n\tvar base, parsed, scripts;\n\n\tif ( !context ) {\n\n\t\t// Stop scripts or inline event handlers from being executed immediately\n\t\t// by using document.implementation\n\t\tif ( support.createHTMLDocument ) {\n\t\t\tcontext = document.implementation.createHTMLDocument( \"\" );\n\n\t\t\t// Set the base href for the created document\n\t\t\t// so any parsed elements with URLs\n\t\t\t// are based on the document's URL (gh-2965)\n\t\t\tbase = context.createElement( \"base\" );\n\t\t\tbase.href = document.location.href;\n\t\t\tcontext.head.appendChild( base );\n\t\t} else {\n\t\t\tcontext = document;\n\t\t}\n\t}\n\n\tparsed = rsingleTag.exec( data );\n\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[ 1 ] ) ];\n\t}\n\n\tparsed = buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tvar selector, type, response,\n\t\tself = this,\n\t\toff = url.indexOf( \" \" );\n\n\tif ( off > -1 ) {\n\t\tselector = stripAndCollapse( url.slice( off ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax( {\n\t\t\turl: url,\n\n\t\t\t// If \"type\" variable is undefined, then \"GET\" method will be used.\n\t\t\t// Make value of this field explicit since\n\t\t\t// user can override it through ajaxSetup method\n\t\t\ttype: type || \"GET\",\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t} ).done( function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery( \"<div>\" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t// If the request succeeds, this function gets \"data\", \"status\", \"jqXHR\"\n\t\t// but they are ignored because response was set above.\n\t\t// If it fails, this function gets \"jqXHR\", \"status\", \"error\"\n\t\t} ).always( callback && function( jqXHR, status ) {\n\t\t\tself.each( function() {\n\t\t\t\tcallback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t\t} );\n\t\t} );\n\t}\n\n\treturn this;\n};\n\n\n\n\njQuery.expr.pseudos.animated = function( elem ) {\n\treturn jQuery.grep( jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t} ).length;\n};\n\n\n\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// Set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\t( curCSSTop + curCSSLeft ).indexOf( \"auto\" ) > -1;\n\n\t\t// Need to be able to calculate position if either\n\t\t// top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( isFunction( options ) ) {\n\n\t\t\t// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)\n\t\t\toptions = options.call( elem, i, jQuery.extend( {}, curOffset ) );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\n\t\t} else {\n\t\t\tif ( typeof props.top === \"number\" ) {\n\t\t\t\tprops.top += \"px\";\n\t\t\t}\n\t\t\tif ( typeof props.left === \"number\" ) {\n\t\t\t\tprops.left += \"px\";\n\t\t\t}\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend( {\n\n\t// offset() relates an element's border box to the document origin\n\toffset: function( options ) {\n\n\t\t// Preserve chaining for setter\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each( function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t} );\n\t\t}\n\n\t\tvar rect, win,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !elem ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Return zeros for disconnected and hidden (display: none) elements (gh-2310)\n\t\t// Support: IE <=11 only\n\t\t// Running getBoundingClientRect on a\n\t\t// disconnected node in IE throws an error\n\t\tif ( !elem.getClientRects().length ) {\n\t\t\treturn { top: 0, left: 0 };\n\t\t}\n\n\t\t// Get document-relative position by adding viewport scroll to viewport-relative gBCR\n\t\trect = elem.getBoundingClientRect();\n\t\twin = elem.ownerDocument.defaultView;\n\t\treturn {\n\t\t\ttop: rect.top + win.pageYOffset,\n\t\t\tleft: rect.left + win.pageXOffset\n\t\t};\n\t},\n\n\t// position() relates an element's margin box to its offset parent's padding box\n\t// This corresponds to the behavior of CSS absolute positioning\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset, doc,\n\t\t\telem = this[ 0 ],\n\t\t\tparentOffset = { top: 0, left: 0 };\n\n\t\t// position:fixed elements are offset from the viewport, which itself always has zero offset\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\n\t\t\t// Assume position:fixed implies availability of getBoundingClientRect\n\t\t\toffset = elem.getBoundingClientRect();\n\n\t\t} else {\n\t\t\toffset = this.offset();\n\n\t\t\t// Account for the *real* offset parent, which can be the document or its root element\n\t\t\t// when a statically positioned element is identified\n\t\t\tdoc = elem.ownerDocument;\n\t\t\toffsetParent = elem.offsetParent || doc.documentElement;\n\t\t\twhile ( offsetParent &&\n\t\t\t\t( offsetParent === doc.body || offsetParent === doc.documentElement ) &&\n\t\t\t\tjQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\n\t\t\t\toffsetParent = offsetParent.parentNode;\n\t\t\t}\n\t\t\tif ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {\n\n\t\t\t\t// Incorporate borders into its offset, since they are outside its content origin\n\t\t\t\tparentOffset = jQuery( offsetParent ).offset();\n\t\t\t\tparentOffset.top += jQuery.css( offsetParent, \"borderTopWidth\", true );\n\t\t\t\tparentOffset.left += jQuery.css( offsetParent, \"borderLeftWidth\", true );\n\t\t\t}\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\treturn {\n\t\t\ttop: offset.top - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true )\n\t\t};\n\t},\n\n\t// This method will return documentElement in the following cases:\n\t// 1) For the element inside the iframe without offsetParent, this method will return\n\t//    documentElement of the parent window\n\t// 2) For the hidden or detached element\n\t// 3) For body or html element, i.e. in case of the html node - it will return itself\n\t//\n\t// but those exceptions were never presented as a real life use-cases\n\t// and might be considered as more preferable results.\n\t//\n\t// This logic, however, is not guaranteed and can change at any point in the future\n\toffsetParent: function() {\n\t\treturn this.map( function() {\n\t\t\tvar offsetParent = this.offsetParent;\n\n\t\t\twhile ( offsetParent && jQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\n\t\t\treturn offsetParent || documentElement;\n\t\t} );\n\t}\n} );\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = \"pageYOffset\" === prop;\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\n\t\t\t// Coalesce documents and windows\n\t\t\tvar win;\n\t\t\tif ( isWindow( elem ) ) {\n\t\t\t\twin = elem;\n\t\t\t} else if ( elem.nodeType === 9 ) {\n\t\t\t\twin = elem.defaultView;\n\t\t\t}\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? win[ prop ] : elem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : win.pageXOffset,\n\t\t\t\t\ttop ? val : win.pageYOffset\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length );\n\t};\n} );\n\n// Support: Safari <=7 - 9.1, Chrome <=37 - 49\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347\n// getComputedStyle returns percent when specified for top/left/bottom/right;\n// rather than make the css module depend on the offset module, just check for it here\njQuery.each( [ \"top\", \"left\" ], function( _i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\n\t\t\t\t// If curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n} );\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name },\n\t\tfunction( defaultExtra, funcName ) {\n\n\t\t// Margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( isWindow( elem ) ) {\n\n\t\t\t\t\t// $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)\n\t\t\t\t\treturn funcName.indexOf( \"outer\" ) === 0 ?\n\t\t\t\t\t\telem[ \"inner\" + name ] :\n\t\t\t\t\t\telem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],\n\t\t\t\t\t// whichever is greatest\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable );\n\t\t};\n\t} );\n} );\n\n\njQuery.each( [\n\t\"ajaxStart\",\n\t\"ajaxStop\",\n\t\"ajaxComplete\",\n\t\"ajaxError\",\n\t\"ajaxSuccess\",\n\t\"ajaxSend\"\n], function( _i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n} );\n\n\n\n\njQuery.fn.extend( {\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ?\n\t\t\tthis.off( selector, \"**\" ) :\n\t\t\tthis.off( types, selector || \"**\", fn );\n\t},\n\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t}\n} );\n\njQuery.each( ( \"blur focus focusin focusout resize scroll click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup contextmenu\" ).split( \" \" ),\n\tfunction( _i, name ) {\n\n\t\t// Handle event binding\n\t\tjQuery.fn[ name ] = function( data, fn ) {\n\t\t\treturn arguments.length > 0 ?\n\t\t\t\tthis.on( name, null, data, fn ) :\n\t\t\t\tthis.trigger( name );\n\t\t};\n\t} );\n\n\n\n\n// Support: Android <=4.0 only\n// Make sure we trim BOM and NBSP\nvar rtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g;\n\n// Bind a function to a context, optionally partially applying any\n// arguments.\n// jQuery.proxy is deprecated to promote standards (specifically Function#bind)\n// However, it is not slated for removal any time soon\njQuery.proxy = function( fn, context ) {\n\tvar tmp, args, proxy;\n\n\tif ( typeof context === \"string\" ) {\n\t\ttmp = fn[ context ];\n\t\tcontext = fn;\n\t\tfn = tmp;\n\t}\n\n\t// Quick check to determine if target is callable, in the spec\n\t// this throws a TypeError, but we will just return undefined.\n\tif ( !isFunction( fn ) ) {\n\t\treturn undefined;\n\t}\n\n\t// Simulated bind\n\targs = slice.call( arguments, 2 );\n\tproxy = function() {\n\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t};\n\n\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\treturn proxy;\n};\n\njQuery.holdReady = function( hold ) {\n\tif ( hold ) {\n\t\tjQuery.readyWait++;\n\t} else {\n\t\tjQuery.ready( true );\n\t}\n};\njQuery.isArray = Array.isArray;\njQuery.parseJSON = JSON.parse;\njQuery.nodeName = nodeName;\njQuery.isFunction = isFunction;\njQuery.isWindow = isWindow;\njQuery.camelCase = camelCase;\njQuery.type = toType;\n\njQuery.now = Date.now;\n\njQuery.isNumeric = function( obj ) {\n\n\t// As of jQuery 3.0, isNumeric is limited to\n\t// strings and numbers (primitives or objects)\n\t// that can be coerced to finite numbers (gh-2662)\n\tvar type = jQuery.type( obj );\n\treturn ( type === \"number\" || type === \"string\" ) &&\n\n\t\t// parseFloat NaNs numeric-cast false positives (\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t!isNaN( obj - parseFloat( obj ) );\n};\n\njQuery.trim = function( text ) {\n\treturn text == null ?\n\t\t\"\" :\n\t\t( text + \"\" ).replace( rtrim, \"\" );\n};\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t} );\n}\n\n\n\n\nvar\n\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in AMD\n// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === \"undefined\" ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n} );\n"
  },
  {
    "path": "docs/images/04_variance/lib/plotly-binding-4.10.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    // Plotly.relayout() mutates the plot input object, so make sure to \n    // keep a reference to the user-supplied width/height *before*\n    // we call Plotly.plot();\n    var lay = x.layout || {};\n    instance.width = lay.width;\n    instance.height = lay.height;\n    instance.autosize = lay.autosize || true;\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if ((x.selectize || x.highlight.dynamic) && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.newPlot(graphDiv, x);\n      instance.plotly = true;\n      \n    } else if (x.layout.transition) {\n      \n      var plot = Plotly.react(graphDiv, x);\n    \n    } else {\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.newPlot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n            if (typeof pt.pointNumber === \"number\") {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber];\n            } else if (Array.isArray(pt.pointNumber)) {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber[0]][pt.pointNumber[1]];\n            } else if (Array.isArray(pt.pointNumbers)) {\n              obj[attrsToAttach[i]] = pt.pointNumbers.map(function(idx) { return attr[idx]; });\n            }\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode && Shiny.setInputValue) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_sunburstclick: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "docs/images/04_variance/lib/plotly-binding-4.9.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if (x.selectize || x.highlight.dynamic && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.plot(graphDiv, x);\n      instance.plotly = true;\n      instance.autosize = x.layout.autosize || true;\n      instance.width = x.layout.width;\n      instance.height = x.layout.height;\n      \n    } else {\n      \n      // new x data could contain a new height/width...\n      // attach to instance so that resize logic knows about the new size\n      instance.width = x.layout.width || instance.width;\n      instance.height = x.layout.height || instance.height;\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.plot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n              // pointNumber can be an array (e.g., heatmaps)\n              // TODO: can pointNumber be 3D?\n              obj[attrsToAttach[i]] = typeof pt.pointNumber === \"number\" ? \n                attr[pt.pointNumber] : attr[pt.pointNumber[0]][pt.pointNumber[1]];\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "docs/images/04_variance/lib/plotly-binding-4.9.1/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    // Plotly.relayout() mutates the plot input object, so make sure to \n    // keep a reference to the user-supplied width/height *before*\n    // we call Plotly.plot();\n    var lay = x.layout || {};\n    instance.width = lay.width;\n    instance.height = lay.height;\n    instance.autosize = lay.autosize || true;\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if (x.selectize || x.highlight.dynamic && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.plot(graphDiv, x);\n      instance.plotly = true;\n      \n    } else {\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.plot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n            if (typeof pt.pointNumber === \"number\") {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber];\n            } else if (Array.isArray(pt.pointNumber)) {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber[0]][pt.pointNumber[1]];\n            } else if (Array.isArray(pt.pointNumbers)) {\n              obj[attrsToAttach[i]] = pt.pointNumbers.map(function(idx) { return attr[idx]; });\n            }\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode && Shiny.setInputValue) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_sunburstclick: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "docs/images/04_variance/lib/plotly-htmlwidgets-css-1.46.1/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "docs/images/04_variance/lib/plotly-htmlwidgets-css-1.49.4/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "docs/images/04_variance/lib/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "docs/images/04_variance/mega_dots.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<meta charset=\"utf-8\"/>\n<style>body{background-color:white;}</style>\n<script src=\"lib/htmlwidgets-1.5.4/htmlwidgets.js\"></script>\n<script src=\"lib/plotly-binding-4.10.0/plotly.js\"></script>\n<script src=\"lib/typedarray-0.1/typedarray.min.js\"></script>\n<script src=\"lib/jquery-3.5.1/jquery.min.js\"></script>\n<link href=\"lib/crosstalk-1.2.0/css/crosstalk.min.css\" rel=\"stylesheet\" />\n<script src=\"lib/crosstalk-1.2.0/js/crosstalk.min.js\"></script>\n<link href=\"lib/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css\" rel=\"stylesheet\" />\n<script src=\"lib/plotly-main-2.5.1/plotly-latest.min.js\"></script>\n\n</head>\n<body>\n<div id=\"htmlwidget-77517bcddfbff689c1d2\" style=\"width:700px;height:450px;\" class=\"plotly html-widget\"></div>\n<script type=\"application/json\" data-for=\"htmlwidget-77517bcddfbff689c1d2\">{\"x\":{\"visdat\":{\"1437b6ae28f83\":[\"function () \",\"plotlyVisDat\"]},\"cur_data\":\"1437b6ae28f83\",\"attrs\":{\"1437b6ae28f83\":{\"mode\":\"markers\",\"x\":{},\"y\":{},\"marker\":{\"size\":20,\"opacity\":0.75},\"hoverinfo\":\"text\",\"text\":{},\"color\":{},\"frame\":{},\"colors\":[\"midnightblue\",\"skyblue2\"],\"alpha_stroke\":1,\"sizes\":[10,100],\"spans\":[1,20],\"type\":\"scatter\"}},\"layout\":{\"width\":700,\"height\":450,\"margin\":{\"b\":10,\"l\":100,\"t\":10,\"r\":100,\"pad\":4},\"autosize\":false,\"xaxis\":{\"domain\":[0,1],\"automargin\":true,\"range\":[7,20.5],\"zeroline\":false,\"title\":\"Mean\"},\"yaxis\":{\"domain\":[0,1],\"automargin\":true,\"range\":[-2,38],\"zeroline\":false,\"title\":\"Biased variance\"},\"shapes\":[{\"type\":\"line\",\"x0\":0,\"x1\":1,\"xref\":\"paper\",\"y0\":19.7549830207255,\"y1\":19.7549830207255,\"line\":{\"color\":\"black\",\"dash\":\"dash\",\"width\":3}},{\"type\":\"line\",\"y0\":0,\"y1\":1,\"yref\":\"paper\",\"x0\":13.9054257525725,\"x1\":13.9054257525725,\"line\":{\"color\":\"black\",\"dash\":\"dash\",\"width\":3}}],\"hovermode\":\"closest\",\"showlegend\":false,\"sliders\":[{\"currentvalue\":{\"prefix\":\"Number of Samples: \",\"xanchor\":\"right\",\"font\":{\"size\":14,\"color\":\"grey70\"}},\"steps\":[{\"method\":\"animate\",\"args\":[[\"0\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"0\",\"value\":\"0\"},{\"method\":\"animate\",\"args\":[[\"10\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"10\",\"value\":\"10\"},{\"method\":\"animate\",\"args\":[[\"20\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"20\",\"value\":\"20\"},{\"method\":\"animate\",\"args\":[[\"30\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"30\",\"value\":\"30\"},{\"method\":\"animate\",\"args\":[[\"40\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"40\",\"value\":\"40\"},{\"method\":\"animate\",\"args\":[[\"50\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"50\",\"value\":\"50\"},{\"method\":\"animate\",\"args\":[[\"60\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"60\",\"value\":\"60\"},{\"method\":\"animate\",\"args\":[[\"70\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"70\",\"value\":\"70\"},{\"method\":\"animate\",\"args\":[[\"80\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"80\",\"value\":\"80\"},{\"method\":\"animate\",\"args\":[[\"90\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"90\",\"value\":\"90\"},{\"method\":\"animate\",\"args\":[[\"100\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"100\",\"value\":\"100\"},{\"method\":\"animate\",\"args\":[[\"110\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"110\",\"value\":\"110\"},{\"method\":\"animate\",\"args\":[[\"120\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"120\",\"value\":\"120\"},{\"method\":\"animate\",\"args\":[[\"130\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"130\",\"value\":\"130\"},{\"method\":\"animate\",\"args\":[[\"140\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"140\",\"value\":\"140\"},{\"method\":\"animate\",\"args\":[[\"150\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"150\",\"value\":\"150\"},{\"method\":\"animate\",\"args\":[[\"160\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"160\",\"value\":\"160\"},{\"method\":\"animate\",\"args\":[[\"170\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"170\",\"value\":\"170\"},{\"method\":\"animate\",\"args\":[[\"180\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"180\",\"value\":\"180\"},{\"method\":\"animate\",\"args\":[[\"190\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"190\",\"value\":\"190\"},{\"method\":\"animate\",\"args\":[[\"200\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"200\",\"value\":\"200\"},{\"method\":\"animate\",\"args\":[[\"210\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"210\",\"value\":\"210\"},{\"method\":\"animate\",\"args\":[[\"220\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"220\",\"value\":\"220\"},{\"method\":\"animate\",\"args\":[[\"230\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"230\",\"value\":\"230\"},{\"method\":\"animate\",\"args\":[[\"240\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"240\",\"value\":\"240\"},{\"method\":\"animate\",\"args\":[[\"250\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"250\",\"value\":\"250\"},{\"method\":\"animate\",\"args\":[[\"260\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"260\",\"value\":\"260\"},{\"method\":\"animate\",\"args\":[[\"270\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"270\",\"value\":\"270\"},{\"method\":\"animate\",\"args\":[[\"280\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"280\",\"value\":\"280\"},{\"method\":\"animate\",\"args\":[[\"290\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"290\",\"value\":\"290\"},{\"method\":\"animate\",\"args\":[[\"300\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"300\",\"value\":\"300\"},{\"method\":\"animate\",\"args\":[[\"310\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"310\",\"value\":\"310\"},{\"method\":\"animate\",\"args\":[[\"320\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"320\",\"value\":\"320\"},{\"method\":\"animate\",\"args\":[[\"330\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"330\",\"value\":\"330\"},{\"method\":\"animate\",\"args\":[[\"340\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"340\",\"value\":\"340\"},{\"method\":\"animate\",\"args\":[[\"350\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"350\",\"value\":\"350\"},{\"method\":\"animate\",\"args\":[[\"360\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"360\",\"value\":\"360\"},{\"method\":\"animate\",\"args\":[[\"370\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"370\",\"value\":\"370\"},{\"method\":\"animate\",\"args\":[[\"380\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"380\",\"value\":\"380\"},{\"method\":\"animate\",\"args\":[[\"390\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"390\",\"value\":\"390\"},{\"method\":\"animate\",\"args\":[[\"400\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"400\",\"value\":\"400\"},{\"method\":\"animate\",\"args\":[[\"410\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"410\",\"value\":\"410\"},{\"method\":\"animate\",\"args\":[[\"420\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"420\",\"value\":\"420\"},{\"method\":\"animate\",\"args\":[[\"430\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"430\",\"value\":\"430\"},{\"method\":\"animate\",\"args\":[[\"440\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"440\",\"value\":\"440\"},{\"method\":\"animate\",\"args\":[[\"450\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"450\",\"value\":\"450\"},{\"method\":\"animate\",\"args\":[[\"460\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"460\",\"value\":\"460\"},{\"method\":\"animate\",\"args\":[[\"470\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"470\",\"value\":\"470\"},{\"method\":\"animate\",\"args\":[[\"480\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"480\",\"value\":\"480\"},{\"method\":\"animate\",\"args\":[[\"490\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"490\",\"value\":\"490\"},{\"method\":\"animate\",\"args\":[[\"500\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"500\",\"value\":\"500\"},{\"method\":\"animate\",\"args\":[[\"510\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"510\",\"value\":\"510\"},{\"method\":\"animate\",\"args\":[[\"520\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"520\",\"value\":\"520\"},{\"method\":\"animate\",\"args\":[[\"530\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"530\",\"value\":\"530\"},{\"method\":\"animate\",\"args\":[[\"540\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"540\",\"value\":\"540\"},{\"method\":\"animate\",\"args\":[[\"550\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"550\",\"value\":\"550\"},{\"method\":\"animate\",\"args\":[[\"560\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"560\",\"value\":\"560\"},{\"method\":\"animate\",\"args\":[[\"570\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"570\",\"value\":\"570\"},{\"method\":\"animate\",\"args\":[[\"580\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"580\",\"value\":\"580\"},{\"method\":\"animate\",\"args\":[[\"590\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"590\",\"value\":\"590\"},{\"method\":\"animate\",\"args\":[[\"600\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"600\",\"value\":\"600\"},{\"method\":\"animate\",\"args\":[[\"610\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"610\",\"value\":\"610\"},{\"method\":\"animate\",\"args\":[[\"620\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"620\",\"value\":\"620\"},{\"method\":\"animate\",\"args\":[[\"630\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"630\",\"value\":\"630\"},{\"method\":\"animate\",\"args\":[[\"640\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"640\",\"value\":\"640\"},{\"method\":\"animate\",\"args\":[[\"650\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"650\",\"value\":\"650\"},{\"method\":\"animate\",\"args\":[[\"660\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"660\",\"value\":\"660\"},{\"method\":\"animate\",\"args\":[[\"670\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"670\",\"value\":\"670\"},{\"method\":\"animate\",\"args\":[[\"680\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"680\",\"value\":\"680\"},{\"method\":\"animate\",\"args\":[[\"690\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"690\",\"value\":\"690\"},{\"method\":\"animate\",\"args\":[[\"700\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"700\",\"value\":\"700\"},{\"method\":\"animate\",\"args\":[[\"710\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"710\",\"value\":\"710\"},{\"method\":\"animate\",\"args\":[[\"720\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"720\",\"value\":\"720\"},{\"method\":\"animate\",\"args\":[[\"730\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"730\",\"value\":\"730\"},{\"method\":\"animate\",\"args\":[[\"740\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"740\",\"value\":\"740\"},{\"method\":\"animate\",\"args\":[[\"750\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"750\",\"value\":\"750\"},{\"method\":\"animate\",\"args\":[[\"760\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"760\",\"value\":\"760\"},{\"method\":\"animate\",\"args\":[[\"770\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"770\",\"value\":\"770\"},{\"method\":\"animate\",\"args\":[[\"780\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"780\",\"value\":\"780\"},{\"method\":\"animate\",\"args\":[[\"790\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"790\",\"value\":\"790\"},{\"method\":\"animate\",\"args\":[[\"800\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"800\",\"value\":\"800\"},{\"method\":\"animate\",\"args\":[[\"810\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"810\",\"value\":\"810\"},{\"method\":\"animate\",\"args\":[[\"820\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"820\",\"value\":\"820\"},{\"method\":\"animate\",\"args\":[[\"830\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"830\",\"value\":\"830\"},{\"method\":\"animate\",\"args\":[[\"840\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"840\",\"value\":\"840\"},{\"method\":\"animate\",\"args\":[[\"850\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"850\",\"value\":\"850\"},{\"method\":\"animate\",\"args\":[[\"860\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"860\",\"value\":\"860\"},{\"method\":\"animate\",\"args\":[[\"870\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"870\",\"value\":\"870\"},{\"method\":\"animate\",\"args\":[[\"880\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"880\",\"value\":\"880\"},{\"method\":\"animate\",\"args\":[[\"890\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"890\",\"value\":\"890\"},{\"method\":\"animate\",\"args\":[[\"900\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"900\",\"value\":\"900\"},{\"method\":\"animate\",\"args\":[[\"910\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"910\",\"value\":\"910\"},{\"method\":\"animate\",\"args\":[[\"920\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"920\",\"value\":\"920\"},{\"method\":\"animate\",\"args\":[[\"930\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"930\",\"value\":\"930\"},{\"method\":\"animate\",\"args\":[[\"940\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"940\",\"value\":\"940\"},{\"method\":\"animate\",\"args\":[[\"950\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"950\",\"value\":\"950\"},{\"method\":\"animate\",\"args\":[[\"960\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"960\",\"value\":\"960\"},{\"method\":\"animate\",\"args\":[[\"970\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"970\",\"value\":\"970\"},{\"method\":\"animate\",\"args\":[[\"980\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"980\",\"value\":\"980\"},{\"method\":\"animate\",\"args\":[[\"990\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"990\",\"value\":\"990\"},{\"method\":\"animate\",\"args\":[[\"1000\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1000\",\"value\":\"1000\"}],\"visible\":true,\"pad\":{\"t\":40}}],\"updatemenus\":[{\"type\":\"buttons\",\"direction\":\"right\",\"showactive\":false,\"y\":0,\"x\":0,\"yanchor\":\"top\",\"xanchor\":\"right\",\"pad\":{\"t\":60,\"r\":5},\"buttons\":[{\"label\":\"Play\",\"method\":\"animate\",\"args\":[null,{\"fromcurrent\":true,\"mode\":\"immediate\",\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false}}]}]}],\"legend\":{\"yanchor\":\"top\",\"y\":0.5}},\"source\":\"A\",\"config\":{\"modeBarButtonsToAdd\":[\"hoverclosest\",\"hovercompare\"],\"showSendToCloud\":false,\"displayModeBar\":false},\"data\":[{\"mode\":\"markers\",\"x\":[null],\"y\":[null],\"marker\":{\"color\":\"rgba(25,25,112,1)\",\"size\":20,\"opacity\":0.75,\"line\":{\"color\":\"rgba(25,25,112,1)\"}},\"hoverinfo\":\"text\",\"text\":\"Mean: Inf <br />Variance: Inf\",\"frame\":\"0\",\"type\":\"scatter\",\"textfont\":{\"color\":\"rgba(25,25,112,1)\"},\"error_y\":{\"color\":\"rgba(25,25,112,1)\"},\"error_x\":{\"color\":\"rgba(25,25,112,1)\"},\"line\":{\"color\":\"rgba(25,25,112,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[7.02530462043929,null],\"y\":[0.000464508112556394,null],\"type\":\"scatter\",\"mode\":\"markers\",\"opacity\":0,\"hoverinfo\":\"none\",\"showlegend\":false,\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2,\"len\":0.5,\"lenmode\":\"fraction\",\"y\":1,\"yanchor\":\"top\"},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":true,\"color\":[2,10],\"line\":{\"color\":\"rgba(255,127,14,1)\"}},\"xaxis\":\"x\",\"yaxis\":\"y\",\"frame\":null}],\"highlight\":{\"on\":\"plotly_click\",\"persistent\":false,\"dynamic\":false,\"selectize\":false,\"opacityDim\":0.2,\"selected\":{\"opacity\":1},\"debounce\":0},\"frames\":[{\"name\":\"0\",\"data\":[{\"mode\":\"markers\",\"x\":[null],\"y\":[null],\"marker\":{\"color\":\"rgba(25,25,112,1)\",\"size\":20,\"opacity\":0.75,\"line\":{\"color\":\"rgba(25,25,112,1)\"}},\"hoverinfo\":\"text\",\"text\":\"Mean: Inf <br />Variance: Inf\",\"frame\":\"0\",\"type\":\"scatter\",\"textfont\":{\"color\":\"rgba(25,25,112,1)\"},\"error_y\":{\"color\":\"rgba(25,25,112,1)\"},\"error_x\":{\"color\":\"rgba(25,25,112,1)\"},\"line\":{\"color\":\"rgba(25,25,112,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"10\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\"],\"frame\":\"10\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"20\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\"],\"frame\":\"20\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"30\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\"],\"frame\":\"30\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"40\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\"],\"frame\":\"40\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"50\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\"],\"frame\":\"50\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"60\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\"],\"frame\":\"60\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"70\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\"],\"frame\":\"70\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"80\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\"],\"frame\":\"80\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"90\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\"],\"frame\":\"90\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"100\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\"],\"frame\":\"100\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"110\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\"],\"frame\":\"110\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"120\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\"],\"frame\":\"120\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"130\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\"],\"frame\":\"130\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"140\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\"],\"frame\":\"140\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"150\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\"],\"frame\":\"150\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"160\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\"],\"frame\":\"160\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"170\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\"],\"frame\":\"170\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"180\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\"],\"frame\":\"180\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"190\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\"],\"frame\":\"190\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"200\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\"],\"frame\":\"200\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"210\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\"],\"frame\":\"210\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"220\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\"],\"frame\":\"220\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"230\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\"],\"frame\":\"230\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"240\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\"],\"frame\":\"240\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"250\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\"],\"frame\":\"250\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"260\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\"],\"frame\":\"260\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"270\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\"],\"frame\":\"270\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"280\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\"],\"frame\":\"280\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"290\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\"],\"frame\":\"290\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"300\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\"],\"frame\":\"300\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"310\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\"],\"frame\":\"310\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"320\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\"],\"frame\":\"320\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"330\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\"],\"frame\":\"330\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"340\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\"],\"frame\":\"340\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"350\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\"],\"frame\":\"350\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"360\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\"],\"frame\":\"360\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"370\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\"],\"frame\":\"370\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"380\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\"],\"frame\":\"380\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"390\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\"],\"frame\":\"390\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"400\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\"],\"frame\":\"400\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"410\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\"],\"frame\":\"410\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"420\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\"],\"frame\":\"420\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"430\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\"],\"frame\":\"430\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"440\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\"],\"frame\":\"440\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"450\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\"],\"frame\":\"450\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"460\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\"],\"frame\":\"460\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"470\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\"],\"frame\":\"470\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"480\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\"],\"frame\":\"480\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"490\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\"],\"frame\":\"490\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"500\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\"],\"frame\":\"500\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"510\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\"],\"frame\":\"510\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"520\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\"],\"frame\":\"520\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"530\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\"],\"frame\":\"530\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"540\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\"],\"frame\":\"540\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"550\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\"],\"frame\":\"550\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"560\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\"],\"frame\":\"560\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"570\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\"],\"frame\":\"570\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"580\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\"],\"frame\":\"580\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"590\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\"],\"frame\":\"590\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"600\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\"],\"frame\":\"600\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"610\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\"],\"frame\":\"610\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"620\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\"],\"frame\":\"620\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"630\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\"],\"frame\":\"630\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"640\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\"],\"frame\":\"640\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"650\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\"],\"frame\":\"650\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"660\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\"],\"frame\":\"660\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"670\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\"],\"frame\":\"670\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"680\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\"],\"frame\":\"680\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"690\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\"],\"frame\":\"690\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"700\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\"],\"frame\":\"700\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"710\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\"],\"frame\":\"710\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"720\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\"],\"frame\":\"720\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"730\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\"],\"frame\":\"730\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"740\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\"],\"frame\":\"740\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"750\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\"],\"frame\":\"750\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"760\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\"],\"frame\":\"760\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"770\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\"],\"frame\":\"770\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"780\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\"],\"frame\":\"780\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"790\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\"],\"frame\":\"790\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"800\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\"],\"frame\":\"800\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"810\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\"],\"frame\":\"810\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"820\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\"],\"frame\":\"820\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"830\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\"],\"frame\":\"830\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"840\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\"],\"frame\":\"840\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"850\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\"],\"frame\":\"850\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"860\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\"],\"frame\":\"860\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"870\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\"],\"frame\":\"870\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"880\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\"],\"frame\":\"880\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"890\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\"],\"frame\":\"890\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"900\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\"],\"frame\":\"900\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"910\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\"],\"frame\":\"910\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"920\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927,13.2851929866638,15.3695719450044,14.4459613543841,17.3006947978765,12.8891125909971,15.0331603308827,13.2054270096697,15.5856677575946,15.2051287372861,14.8196306940205],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552,26.5591603033638,19.335835459262,20.7036235465066,0.208641387288052,20.6115442876446,12.7430887403933,20.5868427324115,16.364575788813,17.9625945067458,17.7315741346053],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\",\"Mean: 13.29 <br />Variance: 26.56\",\"Mean: 15.37 <br />Variance: 19.34\",\"Mean: 14.45 <br />Variance: 20.7\",\"Mean: 17.3 <br />Variance: 0.21\",\"Mean: 12.89 <br />Variance: 20.61\",\"Mean: 15.03 <br />Variance: 12.74\",\"Mean: 13.21 <br />Variance: 20.59\",\"Mean: 15.59 <br />Variance: 16.36\",\"Mean: 15.21 <br />Variance: 17.96\",\"Mean: 14.82 <br />Variance: 17.73\"],\"frame\":\"920\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"930\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927,13.2851929866638,15.3695719450044,14.4459613543841,17.3006947978765,12.8891125909971,15.0331603308827,13.2054270096697,15.5856677575946,15.2051287372861,14.8196306940205,16.1631067468124,15.3599671371452,12.6592193382426,12.9214914940341,10.9621627646124,14.391371590318,12.7733783723621,8.82272025205295,13.7102812918842,12.0541193744177],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552,26.5591603033638,19.335835459262,20.7036235465066,0.208641387288052,20.6115442876446,12.7430887403933,20.5868427324115,16.364575788813,17.9625945067458,17.7315741346053,18.9574728157458,19.4296327887366,22.0681953325355,17.9654269464216,13.4525509909972,18.5114212073831,16.8024391866228,1.49471807338387,15.7960076004629,14.038998882859],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\",\"Mean: 13.29 <br />Variance: 26.56\",\"Mean: 15.37 <br />Variance: 19.34\",\"Mean: 14.45 <br />Variance: 20.7\",\"Mean: 17.3 <br />Variance: 0.21\",\"Mean: 12.89 <br />Variance: 20.61\",\"Mean: 15.03 <br />Variance: 12.74\",\"Mean: 13.21 <br />Variance: 20.59\",\"Mean: 15.59 <br />Variance: 16.36\",\"Mean: 15.21 <br />Variance: 17.96\",\"Mean: 14.82 <br />Variance: 17.73\",\"Mean: 16.16 <br />Variance: 18.96\",\"Mean: 15.36 <br />Variance: 19.43\",\"Mean: 12.66 <br />Variance: 22.07\",\"Mean: 12.92 <br />Variance: 17.97\",\"Mean: 10.96 <br />Variance: 13.45\",\"Mean: 14.39 <br />Variance: 18.51\",\"Mean: 12.77 <br />Variance: 16.8\",\"Mean: 8.82 <br />Variance: 1.49\",\"Mean: 13.71 <br />Variance: 15.8\",\"Mean: 12.05 <br />Variance: 14.04\"],\"frame\":\"930\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"940\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927,13.2851929866638,15.3695719450044,14.4459613543841,17.3006947978765,12.8891125909971,15.0331603308827,13.2054270096697,15.5856677575946,15.2051287372861,14.8196306940205,16.1631067468124,15.3599671371452,12.6592193382426,12.9214914940341,10.9621627646124,14.391371590318,12.7733783723621,8.82272025205295,13.7102812918842,12.0541193744177,15.4283675568904,16.1847309209782,12.8742074982595,13.3803330064499,10.815508421524,16.7022070194263,12.7919947651473,14.7660807549922,13.8725256106499,9.46772578621262],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552,26.5591603033638,19.335835459262,20.7036235465066,0.208641387288052,20.6115442876446,12.7430887403933,20.5868427324115,16.364575788813,17.9625945067458,17.7315741346053,18.9574728157458,19.4296327887366,22.0681953325355,17.9654269464216,13.4525509909972,18.5114212073831,16.8024391866228,1.49471807338387,15.7960076004629,14.038998882859,11.1617045917126,14.2045809720534,19.5632156615578,17.6166565086691,15.0506230826099,14.1553483813581,10.2206093982834,20.212610818768,30.5173794848566,1.45950691630166],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\",\"Mean: 13.29 <br />Variance: 26.56\",\"Mean: 15.37 <br />Variance: 19.34\",\"Mean: 14.45 <br />Variance: 20.7\",\"Mean: 17.3 <br />Variance: 0.21\",\"Mean: 12.89 <br />Variance: 20.61\",\"Mean: 15.03 <br />Variance: 12.74\",\"Mean: 13.21 <br />Variance: 20.59\",\"Mean: 15.59 <br />Variance: 16.36\",\"Mean: 15.21 <br />Variance: 17.96\",\"Mean: 14.82 <br />Variance: 17.73\",\"Mean: 16.16 <br />Variance: 18.96\",\"Mean: 15.36 <br />Variance: 19.43\",\"Mean: 12.66 <br />Variance: 22.07\",\"Mean: 12.92 <br />Variance: 17.97\",\"Mean: 10.96 <br />Variance: 13.45\",\"Mean: 14.39 <br />Variance: 18.51\",\"Mean: 12.77 <br />Variance: 16.8\",\"Mean: 8.82 <br />Variance: 1.49\",\"Mean: 13.71 <br />Variance: 15.8\",\"Mean: 12.05 <br />Variance: 14.04\",\"Mean: 15.43 <br />Variance: 11.16\",\"Mean: 16.18 <br />Variance: 14.2\",\"Mean: 12.87 <br />Variance: 19.56\",\"Mean: 13.38 <br />Variance: 17.62\",\"Mean: 10.82 <br />Variance: 15.05\",\"Mean: 16.7 <br />Variance: 14.16\",\"Mean: 12.79 <br />Variance: 10.22\",\"Mean: 14.77 <br />Variance: 20.21\",\"Mean: 13.87 <br />Variance: 30.52\",\"Mean: 9.47 <br />Variance: 1.46\"],\"frame\":\"940\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"950\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927,13.2851929866638,15.3695719450044,14.4459613543841,17.3006947978765,12.8891125909971,15.0331603308827,13.2054270096697,15.5856677575946,15.2051287372861,14.8196306940205,16.1631067468124,15.3599671371452,12.6592193382426,12.9214914940341,10.9621627646124,14.391371590318,12.7733783723621,8.82272025205295,13.7102812918842,12.0541193744177,15.4283675568904,16.1847309209782,12.8742074982595,13.3803330064499,10.815508421524,16.7022070194263,12.7919947651473,14.7660807549922,13.8725256106499,9.46772578621262,11.4242472040732,13.940712585737,13.0070703385898,14.1193610757061,14.012491484604,12.9995863865027,13.7545635545606,18.1449373648727,12.4010215052769,12.3957043778212],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552,26.5591603033638,19.335835459262,20.7036235465066,0.208641387288052,20.6115442876446,12.7430887403933,20.5868427324115,16.364575788813,17.9625945067458,17.7315741346053,18.9574728157458,19.4296327887366,22.0681953325355,17.9654269464216,13.4525509909972,18.5114212073831,16.8024391866228,1.49471807338387,15.7960076004629,14.038998882859,11.1617045917126,14.2045809720534,19.5632156615578,17.6166565086691,15.0506230826099,14.1553483813581,10.2206093982834,20.212610818768,30.5173794848566,1.45950691630166,21.2344286193916,23.838169530659,20.0523158110267,11.6492829090518,20.1413206637129,22.1840083959358,13.748688955124,0.338829419423433,19.6087106664744,17.4529740894337],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\",\"Mean: 13.29 <br />Variance: 26.56\",\"Mean: 15.37 <br />Variance: 19.34\",\"Mean: 14.45 <br />Variance: 20.7\",\"Mean: 17.3 <br />Variance: 0.21\",\"Mean: 12.89 <br />Variance: 20.61\",\"Mean: 15.03 <br />Variance: 12.74\",\"Mean: 13.21 <br />Variance: 20.59\",\"Mean: 15.59 <br />Variance: 16.36\",\"Mean: 15.21 <br />Variance: 17.96\",\"Mean: 14.82 <br />Variance: 17.73\",\"Mean: 16.16 <br />Variance: 18.96\",\"Mean: 15.36 <br />Variance: 19.43\",\"Mean: 12.66 <br />Variance: 22.07\",\"Mean: 12.92 <br />Variance: 17.97\",\"Mean: 10.96 <br />Variance: 13.45\",\"Mean: 14.39 <br />Variance: 18.51\",\"Mean: 12.77 <br />Variance: 16.8\",\"Mean: 8.82 <br />Variance: 1.49\",\"Mean: 13.71 <br />Variance: 15.8\",\"Mean: 12.05 <br />Variance: 14.04\",\"Mean: 15.43 <br />Variance: 11.16\",\"Mean: 16.18 <br />Variance: 14.2\",\"Mean: 12.87 <br />Variance: 19.56\",\"Mean: 13.38 <br />Variance: 17.62\",\"Mean: 10.82 <br />Variance: 15.05\",\"Mean: 16.7 <br />Variance: 14.16\",\"Mean: 12.79 <br />Variance: 10.22\",\"Mean: 14.77 <br />Variance: 20.21\",\"Mean: 13.87 <br />Variance: 30.52\",\"Mean: 9.47 <br />Variance: 1.46\",\"Mean: 11.42 <br />Variance: 21.23\",\"Mean: 13.94 <br />Variance: 23.84\",\"Mean: 13.01 <br />Variance: 20.05\",\"Mean: 14.12 <br />Variance: 11.65\",\"Mean: 14.01 <br />Variance: 20.14\",\"Mean: 13 <br />Variance: 22.18\",\"Mean: 13.75 <br />Variance: 13.75\",\"Mean: 18.14 <br />Variance: 0.34\",\"Mean: 12.4 <br />Variance: 19.61\",\"Mean: 12.4 <br />Variance: 17.45\"],\"frame\":\"950\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"960\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927,13.2851929866638,15.3695719450044,14.4459613543841,17.3006947978765,12.8891125909971,15.0331603308827,13.2054270096697,15.5856677575946,15.2051287372861,14.8196306940205,16.1631067468124,15.3599671371452,12.6592193382426,12.9214914940341,10.9621627646124,14.391371590318,12.7733783723621,8.82272025205295,13.7102812918842,12.0541193744177,15.4283675568904,16.1847309209782,12.8742074982595,13.3803330064499,10.815508421524,16.7022070194263,12.7919947651473,14.7660807549922,13.8725256106499,9.46772578621262,11.4242472040732,13.940712585737,13.0070703385898,14.1193610757061,14.012491484604,12.9995863865027,13.7545635545606,18.1449373648727,12.4010215052769,12.3957043778212,14.2345478269609,9.40337271238869,13.668621448493,13.0696102139665,12.2626034684959,14.7790016504005,11.980815899315,14.974995721293,14.8188150566672,15.0049385511056],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552,26.5591603033638,19.335835459262,20.7036235465066,0.208641387288052,20.6115442876446,12.7430887403933,20.5868427324115,16.364575788813,17.9625945067458,17.7315741346053,18.9574728157458,19.4296327887366,22.0681953325355,17.9654269464216,13.4525509909972,18.5114212073831,16.8024391866228,1.49471807338387,15.7960076004629,14.038998882859,11.1617045917126,14.2045809720534,19.5632156615578,17.6166565086691,15.0506230826099,14.1553483813581,10.2206093982834,20.212610818768,30.5173794848566,1.45950691630166,21.2344286193916,23.838169530659,20.0523158110267,11.6492829090518,20.1413206637129,22.1840083959358,13.748688955124,0.338829419423433,19.6087106664744,17.4529740894337,31.2835480800128,1.90105497935151,21.9318114025957,24.3260109476153,15.2280733289853,11.9927361295099,11.3623730150741,19.662961878407,12.3355288101397,15.3266933291041],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\",\"Mean: 13.29 <br />Variance: 26.56\",\"Mean: 15.37 <br />Variance: 19.34\",\"Mean: 14.45 <br />Variance: 20.7\",\"Mean: 17.3 <br />Variance: 0.21\",\"Mean: 12.89 <br />Variance: 20.61\",\"Mean: 15.03 <br />Variance: 12.74\",\"Mean: 13.21 <br />Variance: 20.59\",\"Mean: 15.59 <br />Variance: 16.36\",\"Mean: 15.21 <br />Variance: 17.96\",\"Mean: 14.82 <br />Variance: 17.73\",\"Mean: 16.16 <br />Variance: 18.96\",\"Mean: 15.36 <br />Variance: 19.43\",\"Mean: 12.66 <br />Variance: 22.07\",\"Mean: 12.92 <br />Variance: 17.97\",\"Mean: 10.96 <br />Variance: 13.45\",\"Mean: 14.39 <br />Variance: 18.51\",\"Mean: 12.77 <br />Variance: 16.8\",\"Mean: 8.82 <br />Variance: 1.49\",\"Mean: 13.71 <br />Variance: 15.8\",\"Mean: 12.05 <br />Variance: 14.04\",\"Mean: 15.43 <br />Variance: 11.16\",\"Mean: 16.18 <br />Variance: 14.2\",\"Mean: 12.87 <br />Variance: 19.56\",\"Mean: 13.38 <br />Variance: 17.62\",\"Mean: 10.82 <br />Variance: 15.05\",\"Mean: 16.7 <br />Variance: 14.16\",\"Mean: 12.79 <br />Variance: 10.22\",\"Mean: 14.77 <br />Variance: 20.21\",\"Mean: 13.87 <br />Variance: 30.52\",\"Mean: 9.47 <br />Variance: 1.46\",\"Mean: 11.42 <br />Variance: 21.23\",\"Mean: 13.94 <br />Variance: 23.84\",\"Mean: 13.01 <br />Variance: 20.05\",\"Mean: 14.12 <br />Variance: 11.65\",\"Mean: 14.01 <br />Variance: 20.14\",\"Mean: 13 <br />Variance: 22.18\",\"Mean: 13.75 <br />Variance: 13.75\",\"Mean: 18.14 <br />Variance: 0.34\",\"Mean: 12.4 <br />Variance: 19.61\",\"Mean: 12.4 <br />Variance: 17.45\",\"Mean: 14.23 <br />Variance: 31.28\",\"Mean: 9.4 <br />Variance: 1.9\",\"Mean: 13.67 <br />Variance: 21.93\",\"Mean: 13.07 <br />Variance: 24.33\",\"Mean: 12.26 <br />Variance: 15.23\",\"Mean: 14.78 <br />Variance: 11.99\",\"Mean: 11.98 <br />Variance: 11.36\",\"Mean: 14.97 <br />Variance: 19.66\",\"Mean: 14.82 <br />Variance: 12.34\",\"Mean: 15 <br />Variance: 15.33\"],\"frame\":\"960\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"970\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927,13.2851929866638,15.3695719450044,14.4459613543841,17.3006947978765,12.8891125909971,15.0331603308827,13.2054270096697,15.5856677575946,15.2051287372861,14.8196306940205,16.1631067468124,15.3599671371452,12.6592193382426,12.9214914940341,10.9621627646124,14.391371590318,12.7733783723621,8.82272025205295,13.7102812918842,12.0541193744177,15.4283675568904,16.1847309209782,12.8742074982595,13.3803330064499,10.815508421524,16.7022070194263,12.7919947651473,14.7660807549922,13.8725256106499,9.46772578621262,11.4242472040732,13.940712585737,13.0070703385898,14.1193610757061,14.012491484604,12.9995863865027,13.7545635545606,18.1449373648727,12.4010215052769,12.3957043778212,14.2345478269609,9.40337271238869,13.668621448493,13.0696102139665,12.2626034684959,14.7790016504005,11.980815899315,14.974995721293,14.8188150566672,15.0049385511056,13.0129670087957,12.9524452451709,17.677421507408,12.2151135347687,12.6275810190037,15.5185111236049,15.3961045681409,11.7206492958625,16.0151857358609,15.6954468216701],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552,26.5591603033638,19.335835459262,20.7036235465066,0.208641387288052,20.6115442876446,12.7430887403933,20.5868427324115,16.364575788813,17.9625945067458,17.7315741346053,18.9574728157458,19.4296327887366,22.0681953325355,17.9654269464216,13.4525509909972,18.5114212073831,16.8024391866228,1.49471807338387,15.7960076004629,14.038998882859,11.1617045917126,14.2045809720534,19.5632156615578,17.6166565086691,15.0506230826099,14.1553483813581,10.2206093982834,20.212610818768,30.5173794848566,1.45950691630166,21.2344286193916,23.838169530659,20.0523158110267,11.6492829090518,20.1413206637129,22.1840083959358,13.748688955124,0.338829419423433,19.6087106664744,17.4529740894337,31.2835480800128,1.90105497935151,21.9318114025957,24.3260109476153,15.2280733289853,11.9927361295099,11.3623730150741,19.662961878407,12.3355288101397,15.3266933291041,17.1049680715165,14.588298232003,0.107379516433379,17.0536408699266,11.9679001999832,6.23939213581793,24.4908365884475,16.9957838212789,10.884831591684,6.45722925044353],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8,7,8,2,5,7,3,2,4,8,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8,7,8,2,5,7,3,2,4,8,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\",\"Mean: 13.29 <br />Variance: 26.56\",\"Mean: 15.37 <br />Variance: 19.34\",\"Mean: 14.45 <br />Variance: 20.7\",\"Mean: 17.3 <br />Variance: 0.21\",\"Mean: 12.89 <br />Variance: 20.61\",\"Mean: 15.03 <br />Variance: 12.74\",\"Mean: 13.21 <br />Variance: 20.59\",\"Mean: 15.59 <br />Variance: 16.36\",\"Mean: 15.21 <br />Variance: 17.96\",\"Mean: 14.82 <br />Variance: 17.73\",\"Mean: 16.16 <br />Variance: 18.96\",\"Mean: 15.36 <br />Variance: 19.43\",\"Mean: 12.66 <br />Variance: 22.07\",\"Mean: 12.92 <br />Variance: 17.97\",\"Mean: 10.96 <br />Variance: 13.45\",\"Mean: 14.39 <br />Variance: 18.51\",\"Mean: 12.77 <br />Variance: 16.8\",\"Mean: 8.82 <br />Variance: 1.49\",\"Mean: 13.71 <br />Variance: 15.8\",\"Mean: 12.05 <br />Variance: 14.04\",\"Mean: 15.43 <br />Variance: 11.16\",\"Mean: 16.18 <br />Variance: 14.2\",\"Mean: 12.87 <br />Variance: 19.56\",\"Mean: 13.38 <br />Variance: 17.62\",\"Mean: 10.82 <br />Variance: 15.05\",\"Mean: 16.7 <br />Variance: 14.16\",\"Mean: 12.79 <br />Variance: 10.22\",\"Mean: 14.77 <br />Variance: 20.21\",\"Mean: 13.87 <br />Variance: 30.52\",\"Mean: 9.47 <br />Variance: 1.46\",\"Mean: 11.42 <br />Variance: 21.23\",\"Mean: 13.94 <br />Variance: 23.84\",\"Mean: 13.01 <br />Variance: 20.05\",\"Mean: 14.12 <br />Variance: 11.65\",\"Mean: 14.01 <br />Variance: 20.14\",\"Mean: 13 <br />Variance: 22.18\",\"Mean: 13.75 <br />Variance: 13.75\",\"Mean: 18.14 <br />Variance: 0.34\",\"Mean: 12.4 <br />Variance: 19.61\",\"Mean: 12.4 <br />Variance: 17.45\",\"Mean: 14.23 <br />Variance: 31.28\",\"Mean: 9.4 <br />Variance: 1.9\",\"Mean: 13.67 <br />Variance: 21.93\",\"Mean: 13.07 <br />Variance: 24.33\",\"Mean: 12.26 <br />Variance: 15.23\",\"Mean: 14.78 <br />Variance: 11.99\",\"Mean: 11.98 <br />Variance: 11.36\",\"Mean: 14.97 <br />Variance: 19.66\",\"Mean: 14.82 <br />Variance: 12.34\",\"Mean: 15 <br />Variance: 15.33\",\"Mean: 13.01 <br />Variance: 17.1\",\"Mean: 12.95 <br />Variance: 14.59\",\"Mean: 17.68 <br />Variance: 0.11\",\"Mean: 12.22 <br />Variance: 17.05\",\"Mean: 12.63 <br />Variance: 11.97\",\"Mean: 15.52 <br />Variance: 6.24\",\"Mean: 15.4 <br />Variance: 24.49\",\"Mean: 11.72 <br />Variance: 17\",\"Mean: 16.02 <br />Variance: 10.88\",\"Mean: 15.7 <br />Variance: 6.46\"],\"frame\":\"970\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"980\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927,13.2851929866638,15.3695719450044,14.4459613543841,17.3006947978765,12.8891125909971,15.0331603308827,13.2054270096697,15.5856677575946,15.2051287372861,14.8196306940205,16.1631067468124,15.3599671371452,12.6592193382426,12.9214914940341,10.9621627646124,14.391371590318,12.7733783723621,8.82272025205295,13.7102812918842,12.0541193744177,15.4283675568904,16.1847309209782,12.8742074982595,13.3803330064499,10.815508421524,16.7022070194263,12.7919947651473,14.7660807549922,13.8725256106499,9.46772578621262,11.4242472040732,13.940712585737,13.0070703385898,14.1193610757061,14.012491484604,12.9995863865027,13.7545635545606,18.1449373648727,12.4010215052769,12.3957043778212,14.2345478269609,9.40337271238869,13.668621448493,13.0696102139665,12.2626034684959,14.7790016504005,11.980815899315,14.974995721293,14.8188150566672,15.0049385511056,13.0129670087957,12.9524452451709,17.677421507408,12.2151135347687,12.6275810190037,15.5185111236049,15.3961045681409,11.7206492958625,16.0151857358609,15.6954468216701,15.6830938351203,13.7737810975369,17.0294754077116,13.8028275023401,14.8132583479551,12.1409441635177,13.9006775078297,10.3950024589752,12.5870084873251,13.9994892421814],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552,26.5591603033638,19.335835459262,20.7036235465066,0.208641387288052,20.6115442876446,12.7430887403933,20.5868427324115,16.364575788813,17.9625945067458,17.7315741346053,18.9574728157458,19.4296327887366,22.0681953325355,17.9654269464216,13.4525509909972,18.5114212073831,16.8024391866228,1.49471807338387,15.7960076004629,14.038998882859,11.1617045917126,14.2045809720534,19.5632156615578,17.6166565086691,15.0506230826099,14.1553483813581,10.2206093982834,20.212610818768,30.5173794848566,1.45950691630166,21.2344286193916,23.838169530659,20.0523158110267,11.6492829090518,20.1413206637129,22.1840083959358,13.748688955124,0.338829419423433,19.6087106664744,17.4529740894337,31.2835480800128,1.90105497935151,21.9318114025957,24.3260109476153,15.2280733289853,11.9927361295099,11.3623730150741,19.662961878407,12.3355288101397,15.3266933291041,17.1049680715165,14.588298232003,0.107379516433379,17.0536408699266,11.9679001999832,6.23939213581793,24.4908365884475,16.9957838212789,10.884831591684,6.45722925044353,12.471691707927,21.084650646786,6.37366885116658,22.9766834624955,17.0640291935766,18.3349115090502,21.8509835261901,0.955853402053476,16.275626672941,24.0327820881977],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8,7,8,2,5,7,3,2,4,8,2,5,8,6,8,10,2,9,3,9,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8,7,8,2,5,7,3,2,4,8,2,5,8,6,8,10,2,9,3,9,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\",\"Mean: 13.29 <br />Variance: 26.56\",\"Mean: 15.37 <br />Variance: 19.34\",\"Mean: 14.45 <br />Variance: 20.7\",\"Mean: 17.3 <br />Variance: 0.21\",\"Mean: 12.89 <br />Variance: 20.61\",\"Mean: 15.03 <br />Variance: 12.74\",\"Mean: 13.21 <br />Variance: 20.59\",\"Mean: 15.59 <br />Variance: 16.36\",\"Mean: 15.21 <br />Variance: 17.96\",\"Mean: 14.82 <br />Variance: 17.73\",\"Mean: 16.16 <br />Variance: 18.96\",\"Mean: 15.36 <br />Variance: 19.43\",\"Mean: 12.66 <br />Variance: 22.07\",\"Mean: 12.92 <br />Variance: 17.97\",\"Mean: 10.96 <br />Variance: 13.45\",\"Mean: 14.39 <br />Variance: 18.51\",\"Mean: 12.77 <br />Variance: 16.8\",\"Mean: 8.82 <br />Variance: 1.49\",\"Mean: 13.71 <br />Variance: 15.8\",\"Mean: 12.05 <br />Variance: 14.04\",\"Mean: 15.43 <br />Variance: 11.16\",\"Mean: 16.18 <br />Variance: 14.2\",\"Mean: 12.87 <br />Variance: 19.56\",\"Mean: 13.38 <br />Variance: 17.62\",\"Mean: 10.82 <br />Variance: 15.05\",\"Mean: 16.7 <br />Variance: 14.16\",\"Mean: 12.79 <br />Variance: 10.22\",\"Mean: 14.77 <br />Variance: 20.21\",\"Mean: 13.87 <br />Variance: 30.52\",\"Mean: 9.47 <br />Variance: 1.46\",\"Mean: 11.42 <br />Variance: 21.23\",\"Mean: 13.94 <br />Variance: 23.84\",\"Mean: 13.01 <br />Variance: 20.05\",\"Mean: 14.12 <br />Variance: 11.65\",\"Mean: 14.01 <br />Variance: 20.14\",\"Mean: 13 <br />Variance: 22.18\",\"Mean: 13.75 <br />Variance: 13.75\",\"Mean: 18.14 <br />Variance: 0.34\",\"Mean: 12.4 <br />Variance: 19.61\",\"Mean: 12.4 <br />Variance: 17.45\",\"Mean: 14.23 <br />Variance: 31.28\",\"Mean: 9.4 <br />Variance: 1.9\",\"Mean: 13.67 <br />Variance: 21.93\",\"Mean: 13.07 <br />Variance: 24.33\",\"Mean: 12.26 <br />Variance: 15.23\",\"Mean: 14.78 <br />Variance: 11.99\",\"Mean: 11.98 <br />Variance: 11.36\",\"Mean: 14.97 <br />Variance: 19.66\",\"Mean: 14.82 <br />Variance: 12.34\",\"Mean: 15 <br />Variance: 15.33\",\"Mean: 13.01 <br />Variance: 17.1\",\"Mean: 12.95 <br />Variance: 14.59\",\"Mean: 17.68 <br />Variance: 0.11\",\"Mean: 12.22 <br />Variance: 17.05\",\"Mean: 12.63 <br />Variance: 11.97\",\"Mean: 15.52 <br />Variance: 6.24\",\"Mean: 15.4 <br />Variance: 24.49\",\"Mean: 11.72 <br />Variance: 17\",\"Mean: 16.02 <br />Variance: 10.88\",\"Mean: 15.7 <br />Variance: 6.46\",\"Mean: 15.68 <br />Variance: 12.47\",\"Mean: 13.77 <br />Variance: 21.08\",\"Mean: 17.03 <br />Variance: 6.37\",\"Mean: 13.8 <br />Variance: 22.98\",\"Mean: 14.81 <br />Variance: 17.06\",\"Mean: 12.14 <br />Variance: 18.33\",\"Mean: 13.9 <br />Variance: 21.85\",\"Mean: 10.4 <br />Variance: 0.96\",\"Mean: 12.59 <br />Variance: 16.28\",\"Mean: 14 <br />Variance: 24.03\"],\"frame\":\"980\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"990\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927,13.2851929866638,15.3695719450044,14.4459613543841,17.3006947978765,12.8891125909971,15.0331603308827,13.2054270096697,15.5856677575946,15.2051287372861,14.8196306940205,16.1631067468124,15.3599671371452,12.6592193382426,12.9214914940341,10.9621627646124,14.391371590318,12.7733783723621,8.82272025205295,13.7102812918842,12.0541193744177,15.4283675568904,16.1847309209782,12.8742074982595,13.3803330064499,10.815508421524,16.7022070194263,12.7919947651473,14.7660807549922,13.8725256106499,9.46772578621262,11.4242472040732,13.940712585737,13.0070703385898,14.1193610757061,14.012491484604,12.9995863865027,13.7545635545606,18.1449373648727,12.4010215052769,12.3957043778212,14.2345478269609,9.40337271238869,13.668621448493,13.0696102139665,12.2626034684959,14.7790016504005,11.980815899315,14.974995721293,14.8188150566672,15.0049385511056,13.0129670087957,12.9524452451709,17.677421507408,12.2151135347687,12.6275810190037,15.5185111236049,15.3961045681409,11.7206492958625,16.0151857358609,15.6954468216701,15.6830938351203,13.7737810975369,17.0294754077116,13.8028275023401,14.8132583479551,12.1409441635177,13.9006775078297,10.3950024589752,12.5870084873251,13.9994892421814,13.1465125122866,12.4918122232986,11.0933083618774,10.2519407957179,14.1059501058562,13.4002976804542,14.6040540739369,16.130622858654,9.85632641064244,12.7344953365197],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552,26.5591603033638,19.335835459262,20.7036235465066,0.208641387288052,20.6115442876446,12.7430887403933,20.5868427324115,16.364575788813,17.9625945067458,17.7315741346053,18.9574728157458,19.4296327887366,22.0681953325355,17.9654269464216,13.4525509909972,18.5114212073831,16.8024391866228,1.49471807338387,15.7960076004629,14.038998882859,11.1617045917126,14.2045809720534,19.5632156615578,17.6166565086691,15.0506230826099,14.1553483813581,10.2206093982834,20.212610818768,30.5173794848566,1.45950691630166,21.2344286193916,23.838169530659,20.0523158110267,11.6492829090518,20.1413206637129,22.1840083959358,13.748688955124,0.338829419423433,19.6087106664744,17.4529740894337,31.2835480800128,1.90105497935151,21.9318114025957,24.3260109476153,15.2280733289853,11.9927361295099,11.3623730150741,19.662961878407,12.3355288101397,15.3266933291041,17.1049680715165,14.588298232003,0.107379516433379,17.0536408699266,11.9679001999832,6.23939213581793,24.4908365884475,16.9957838212789,10.884831591684,6.45722925044353,12.471691707927,21.084650646786,6.37366885116658,22.9766834624955,17.0640291935766,18.3349115090502,21.8509835261901,0.955853402053476,16.275626672941,24.0327820881977,20.7338251339468,16.098787476293,11.9318482480831,1.46643845669488,19.7644436456831,20.4095158045324,11.4998578631633,15.3472272479616,0.865726282262343,25.4669716632679],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8,7,8,2,5,7,3,2,4,8,2,5,8,6,8,10,2,9,3,9,3,2,10,4,2,8,9,7,6,3,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8,7,8,2,5,7,3,2,4,8,2,5,8,6,8,10,2,9,3,9,3,2,10,4,2,8,9,7,6,3,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\",\"Mean: 13.29 <br />Variance: 26.56\",\"Mean: 15.37 <br />Variance: 19.34\",\"Mean: 14.45 <br />Variance: 20.7\",\"Mean: 17.3 <br />Variance: 0.21\",\"Mean: 12.89 <br />Variance: 20.61\",\"Mean: 15.03 <br />Variance: 12.74\",\"Mean: 13.21 <br />Variance: 20.59\",\"Mean: 15.59 <br />Variance: 16.36\",\"Mean: 15.21 <br />Variance: 17.96\",\"Mean: 14.82 <br />Variance: 17.73\",\"Mean: 16.16 <br />Variance: 18.96\",\"Mean: 15.36 <br />Variance: 19.43\",\"Mean: 12.66 <br />Variance: 22.07\",\"Mean: 12.92 <br />Variance: 17.97\",\"Mean: 10.96 <br />Variance: 13.45\",\"Mean: 14.39 <br />Variance: 18.51\",\"Mean: 12.77 <br />Variance: 16.8\",\"Mean: 8.82 <br />Variance: 1.49\",\"Mean: 13.71 <br />Variance: 15.8\",\"Mean: 12.05 <br />Variance: 14.04\",\"Mean: 15.43 <br />Variance: 11.16\",\"Mean: 16.18 <br />Variance: 14.2\",\"Mean: 12.87 <br />Variance: 19.56\",\"Mean: 13.38 <br />Variance: 17.62\",\"Mean: 10.82 <br />Variance: 15.05\",\"Mean: 16.7 <br />Variance: 14.16\",\"Mean: 12.79 <br />Variance: 10.22\",\"Mean: 14.77 <br />Variance: 20.21\",\"Mean: 13.87 <br />Variance: 30.52\",\"Mean: 9.47 <br />Variance: 1.46\",\"Mean: 11.42 <br />Variance: 21.23\",\"Mean: 13.94 <br />Variance: 23.84\",\"Mean: 13.01 <br />Variance: 20.05\",\"Mean: 14.12 <br />Variance: 11.65\",\"Mean: 14.01 <br />Variance: 20.14\",\"Mean: 13 <br />Variance: 22.18\",\"Mean: 13.75 <br />Variance: 13.75\",\"Mean: 18.14 <br />Variance: 0.34\",\"Mean: 12.4 <br />Variance: 19.61\",\"Mean: 12.4 <br />Variance: 17.45\",\"Mean: 14.23 <br />Variance: 31.28\",\"Mean: 9.4 <br />Variance: 1.9\",\"Mean: 13.67 <br />Variance: 21.93\",\"Mean: 13.07 <br />Variance: 24.33\",\"Mean: 12.26 <br />Variance: 15.23\",\"Mean: 14.78 <br />Variance: 11.99\",\"Mean: 11.98 <br />Variance: 11.36\",\"Mean: 14.97 <br />Variance: 19.66\",\"Mean: 14.82 <br />Variance: 12.34\",\"Mean: 15 <br />Variance: 15.33\",\"Mean: 13.01 <br />Variance: 17.1\",\"Mean: 12.95 <br />Variance: 14.59\",\"Mean: 17.68 <br />Variance: 0.11\",\"Mean: 12.22 <br />Variance: 17.05\",\"Mean: 12.63 <br />Variance: 11.97\",\"Mean: 15.52 <br />Variance: 6.24\",\"Mean: 15.4 <br />Variance: 24.49\",\"Mean: 11.72 <br />Variance: 17\",\"Mean: 16.02 <br />Variance: 10.88\",\"Mean: 15.7 <br />Variance: 6.46\",\"Mean: 15.68 <br />Variance: 12.47\",\"Mean: 13.77 <br />Variance: 21.08\",\"Mean: 17.03 <br />Variance: 6.37\",\"Mean: 13.8 <br />Variance: 22.98\",\"Mean: 14.81 <br />Variance: 17.06\",\"Mean: 12.14 <br />Variance: 18.33\",\"Mean: 13.9 <br />Variance: 21.85\",\"Mean: 10.4 <br />Variance: 0.96\",\"Mean: 12.59 <br />Variance: 16.28\",\"Mean: 14 <br />Variance: 24.03\",\"Mean: 13.15 <br />Variance: 20.73\",\"Mean: 12.49 <br />Variance: 16.1\",\"Mean: 11.09 <br />Variance: 11.93\",\"Mean: 10.25 <br />Variance: 1.47\",\"Mean: 14.11 <br />Variance: 19.76\",\"Mean: 13.4 <br />Variance: 20.41\",\"Mean: 14.6 <br />Variance: 11.5\",\"Mean: 16.13 <br />Variance: 15.35\",\"Mean: 9.86 <br />Variance: 0.87\",\"Mean: 12.73 <br />Variance: 25.47\"],\"frame\":\"990\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1000\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927,13.2851929866638,15.3695719450044,14.4459613543841,17.3006947978765,12.8891125909971,15.0331603308827,13.2054270096697,15.5856677575946,15.2051287372861,14.8196306940205,16.1631067468124,15.3599671371452,12.6592193382426,12.9214914940341,10.9621627646124,14.391371590318,12.7733783723621,8.82272025205295,13.7102812918842,12.0541193744177,15.4283675568904,16.1847309209782,12.8742074982595,13.3803330064499,10.815508421524,16.7022070194263,12.7919947651473,14.7660807549922,13.8725256106499,9.46772578621262,11.4242472040732,13.940712585737,13.0070703385898,14.1193610757061,14.012491484604,12.9995863865027,13.7545635545606,18.1449373648727,12.4010215052769,12.3957043778212,14.2345478269609,9.40337271238869,13.668621448493,13.0696102139665,12.2626034684959,14.7790016504005,11.980815899315,14.974995721293,14.8188150566672,15.0049385511056,13.0129670087957,12.9524452451709,17.677421507408,12.2151135347687,12.6275810190037,15.5185111236049,15.3961045681409,11.7206492958625,16.0151857358609,15.6954468216701,15.6830938351203,13.7737810975369,17.0294754077116,13.8028275023401,14.8132583479551,12.1409441635177,13.9006775078297,10.3950024589752,12.5870084873251,13.9994892421814,13.1465125122866,12.4918122232986,11.0933083618774,10.2519407957179,14.1059501058562,13.4002976804542,14.6040540739369,16.130622858654,9.85632641064244,12.7344953365197,11.2381287606482,15.7574137979064,13.8702778108934,13.7185875248914,12.7008106830612,12.1506264560787,14.334692985637,13.9556765391826,15.6177231586737,14.7537055296109],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552,26.5591603033638,19.335835459262,20.7036235465066,0.208641387288052,20.6115442876446,12.7430887403933,20.5868427324115,16.364575788813,17.9625945067458,17.7315741346053,18.9574728157458,19.4296327887366,22.0681953325355,17.9654269464216,13.4525509909972,18.5114212073831,16.8024391866228,1.49471807338387,15.7960076004629,14.038998882859,11.1617045917126,14.2045809720534,19.5632156615578,17.6166565086691,15.0506230826099,14.1553483813581,10.2206093982834,20.212610818768,30.5173794848566,1.45950691630166,21.2344286193916,23.838169530659,20.0523158110267,11.6492829090518,20.1413206637129,22.1840083959358,13.748688955124,0.338829419423433,19.6087106664744,17.4529740894337,31.2835480800128,1.90105497935151,21.9318114025957,24.3260109476153,15.2280733289853,11.9927361295099,11.3623730150741,19.662961878407,12.3355288101397,15.3266933291041,17.1049680715165,14.588298232003,0.107379516433379,17.0536408699266,11.9679001999832,6.23939213581793,24.4908365884475,16.9957838212789,10.884831591684,6.45722925044353,12.471691707927,21.084650646786,6.37366885116658,22.9766834624955,17.0640291935766,18.3349115090502,21.8509835261901,0.955853402053476,16.275626672941,24.0327820881977,20.7338251339468,16.098787476293,11.9318482480831,1.46643845669488,19.7644436456831,20.4095158045324,11.4998578631633,15.3472272479616,0.865726282262343,25.4669716632679,19.9128310062752,16.0126995448318,10.5414206161858,18.09104734217,23.6715808824482,16.9223065974051,20.7285606335064,20.1415857155695,15.908031970387,13.8218863212505],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8,7,8,2,5,7,3,2,4,8,2,5,8,6,8,10,2,9,3,9,3,2,10,4,2,8,9,7,6,3,2,7,4,3,2,10,7,8,6,4,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8,7,8,2,5,7,3,2,4,8,2,5,8,6,8,10,2,9,3,9,3,2,10,4,2,8,9,7,6,3,2,7,4,3,2,10,7,8,6,4,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\",\"Mean: 13.29 <br />Variance: 26.56\",\"Mean: 15.37 <br />Variance: 19.34\",\"Mean: 14.45 <br />Variance: 20.7\",\"Mean: 17.3 <br />Variance: 0.21\",\"Mean: 12.89 <br />Variance: 20.61\",\"Mean: 15.03 <br />Variance: 12.74\",\"Mean: 13.21 <br />Variance: 20.59\",\"Mean: 15.59 <br />Variance: 16.36\",\"Mean: 15.21 <br />Variance: 17.96\",\"Mean: 14.82 <br />Variance: 17.73\",\"Mean: 16.16 <br />Variance: 18.96\",\"Mean: 15.36 <br />Variance: 19.43\",\"Mean: 12.66 <br />Variance: 22.07\",\"Mean: 12.92 <br />Variance: 17.97\",\"Mean: 10.96 <br />Variance: 13.45\",\"Mean: 14.39 <br />Variance: 18.51\",\"Mean: 12.77 <br />Variance: 16.8\",\"Mean: 8.82 <br />Variance: 1.49\",\"Mean: 13.71 <br />Variance: 15.8\",\"Mean: 12.05 <br />Variance: 14.04\",\"Mean: 15.43 <br />Variance: 11.16\",\"Mean: 16.18 <br />Variance: 14.2\",\"Mean: 12.87 <br />Variance: 19.56\",\"Mean: 13.38 <br />Variance: 17.62\",\"Mean: 10.82 <br />Variance: 15.05\",\"Mean: 16.7 <br />Variance: 14.16\",\"Mean: 12.79 <br />Variance: 10.22\",\"Mean: 14.77 <br />Variance: 20.21\",\"Mean: 13.87 <br />Variance: 30.52\",\"Mean: 9.47 <br />Variance: 1.46\",\"Mean: 11.42 <br />Variance: 21.23\",\"Mean: 13.94 <br />Variance: 23.84\",\"Mean: 13.01 <br />Variance: 20.05\",\"Mean: 14.12 <br />Variance: 11.65\",\"Mean: 14.01 <br />Variance: 20.14\",\"Mean: 13 <br />Variance: 22.18\",\"Mean: 13.75 <br />Variance: 13.75\",\"Mean: 18.14 <br />Variance: 0.34\",\"Mean: 12.4 <br />Variance: 19.61\",\"Mean: 12.4 <br />Variance: 17.45\",\"Mean: 14.23 <br />Variance: 31.28\",\"Mean: 9.4 <br />Variance: 1.9\",\"Mean: 13.67 <br />Variance: 21.93\",\"Mean: 13.07 <br />Variance: 24.33\",\"Mean: 12.26 <br />Variance: 15.23\",\"Mean: 14.78 <br />Variance: 11.99\",\"Mean: 11.98 <br />Variance: 11.36\",\"Mean: 14.97 <br />Variance: 19.66\",\"Mean: 14.82 <br />Variance: 12.34\",\"Mean: 15 <br />Variance: 15.33\",\"Mean: 13.01 <br />Variance: 17.1\",\"Mean: 12.95 <br />Variance: 14.59\",\"Mean: 17.68 <br />Variance: 0.11\",\"Mean: 12.22 <br />Variance: 17.05\",\"Mean: 12.63 <br />Variance: 11.97\",\"Mean: 15.52 <br />Variance: 6.24\",\"Mean: 15.4 <br />Variance: 24.49\",\"Mean: 11.72 <br />Variance: 17\",\"Mean: 16.02 <br />Variance: 10.88\",\"Mean: 15.7 <br />Variance: 6.46\",\"Mean: 15.68 <br />Variance: 12.47\",\"Mean: 13.77 <br />Variance: 21.08\",\"Mean: 17.03 <br />Variance: 6.37\",\"Mean: 13.8 <br />Variance: 22.98\",\"Mean: 14.81 <br />Variance: 17.06\",\"Mean: 12.14 <br />Variance: 18.33\",\"Mean: 13.9 <br />Variance: 21.85\",\"Mean: 10.4 <br />Variance: 0.96\",\"Mean: 12.59 <br />Variance: 16.28\",\"Mean: 14 <br />Variance: 24.03\",\"Mean: 13.15 <br />Variance: 20.73\",\"Mean: 12.49 <br />Variance: 16.1\",\"Mean: 11.09 <br />Variance: 11.93\",\"Mean: 10.25 <br />Variance: 1.47\",\"Mean: 14.11 <br />Variance: 19.76\",\"Mean: 13.4 <br />Variance: 20.41\",\"Mean: 14.6 <br />Variance: 11.5\",\"Mean: 16.13 <br />Variance: 15.35\",\"Mean: 9.86 <br />Variance: 0.87\",\"Mean: 12.73 <br />Variance: 25.47\",\"Mean: 11.24 <br />Variance: 19.91\",\"Mean: 15.76 <br />Variance: 16.01\",\"Mean: 13.87 <br />Variance: 10.54\",\"Mean: 13.72 <br />Variance: 18.09\",\"Mean: 12.7 <br />Variance: 23.67\",\"Mean: 12.15 <br />Variance: 16.92\",\"Mean: 14.33 <br />Variance: 20.73\",\"Mean: 13.96 <br />Variance: 20.14\",\"Mean: 15.62 <br />Variance: 15.91\",\"Mean: 14.75 <br />Variance: 13.82\"],\"frame\":\"1000\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]}],\"shinyEvents\":[\"plotly_hover\",\"plotly_click\",\"plotly_selected\",\"plotly_relayout\",\"plotly_brushed\",\"plotly_brushing\",\"plotly_clickannotation\",\"plotly_doubleclick\",\"plotly_deselect\",\"plotly_afterplot\",\"plotly_sunburstclick\"],\"base_url\":\"https://plot.ly\"},\"evals\":[],\"jsHooks\":[]}</script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/images/04_variance/static_bar.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<meta charset=\"utf-8\"/>\n<style>body{background-color:white;}</style>\n<script src=\"lib/htmlwidgets-1.5.4/htmlwidgets.js\"></script>\n<script src=\"lib/plotly-binding-4.10.0/plotly.js\"></script>\n<script src=\"lib/typedarray-0.1/typedarray.min.js\"></script>\n<script src=\"lib/jquery-3.5.1/jquery.min.js\"></script>\n<link href=\"lib/crosstalk-1.2.0/css/crosstalk.min.css\" rel=\"stylesheet\" />\n<script src=\"lib/crosstalk-1.2.0/js/crosstalk.min.js\"></script>\n<link href=\"lib/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css\" rel=\"stylesheet\" />\n<script src=\"lib/plotly-main-2.5.1/plotly-latest.min.js\"></script>\n\n</head>\n<body>\n<div id=\"htmlwidget-505c454e0b778758cbee\" style=\"width:650px;height:350px;\" class=\"plotly html-widget\"></div>\n<script type=\"application/json\" data-for=\"htmlwidget-505c454e0b778758cbee\">{\"x\":{\"visdat\":{\"1437b295dfe43\":[\"function () \",\"plotlyVisDat\"]},\"cur_data\":\"1437b295dfe43\",\"attrs\":{\"1437b295dfe43\":{\"x\":{},\"y\":{},\"marker\":{\"size\":2,\"opacity\":1},\"hoverinfo\":\"y\",\"color\":{},\"colors\":[\"midnightblue\",\"skyblue2\"],\"alpha_stroke\":1,\"sizes\":[10,100],\"spans\":[1,20],\"type\":\"bar\"}},\"layout\":{\"width\":650,\"height\":350,\"margin\":{\"b\":10,\"l\":100,\"t\":10,\"r\":100,\"pad\":4},\"autosize\":false,\"yaxis\":{\"domain\":[0,1],\"automargin\":true,\"range\":[0,90],\"zeroline\":false,\"title\":\"Biased Sample variance / Pop. variance (%)\"},\"xaxis\":{\"domain\":[0,1],\"automargin\":true,\"title\":\"Sample Size\"},\"hovermode\":\"closest\",\"showlegend\":false,\"legend\":{\"yanchor\":\"top\",\"y\":0.5}},\"source\":\"A\",\"config\":{\"modeBarButtonsToAdd\":[\"hoverclosest\",\"hovercompare\"],\"showSendToCloud\":false,\"displayModeBar\":false},\"data\":[{\"x\":[2,3,4,5,6,7,8,9,10],\"y\":[48.6152963437656,67.0767457959402,75.5930514082707,80.0291964132669,83.6545607648594,85.1515992768087,87.4419687423834,88.7926759087281,90.8171312805006],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[2,3,4,5,6,7,8,9,10],\"size\":2,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[2,3,4,5,6,7,8,9,10]}},\"hoverinfo\":[\"y\",\"y\",\"y\",\"y\",\"y\",\"y\",\"y\",\"y\",\"y\"],\"type\":\"bar\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"frame\":null},{\"x\":[2,10],\"y\":[48.6152963437656,90.8171312805006],\"type\":\"scatter\",\"mode\":\"markers\",\"opacity\":0,\"hoverinfo\":\"none\",\"showlegend\":false,\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2,\"len\":0.5,\"lenmode\":\"fraction\",\"y\":1,\"yanchor\":\"top\"},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[2,10],\"line\":{\"color\":\"rgba(255,127,14,1)\"}},\"xaxis\":\"x\",\"yaxis\":\"y\",\"frame\":null}],\"highlight\":{\"on\":\"plotly_click\",\"persistent\":false,\"dynamic\":false,\"selectize\":false,\"opacityDim\":0.2,\"selected\":{\"opacity\":1},\"debounce\":0},\"shinyEvents\":[\"plotly_hover\",\"plotly_click\",\"plotly_selected\",\"plotly_relayout\",\"plotly_brushed\",\"plotly_brushing\",\"plotly_clickannotation\",\"plotly_doubleclick\",\"plotly_deselect\",\"plotly_afterplot\",\"plotly_sunburstclick\"],\"base_url\":\"https://plot.ly\"},\"evals\":[],\"jsHooks\":[]}</script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/images/05_correlation/cov_vs_sxsy.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<meta charset=\"utf-8\"/>\n<style>body{background-color:white;}</style>\n<script src=\"lib/htmlwidgets-1.5.4/htmlwidgets.js\"></script>\n<script src=\"lib/plotly-binding-4.10.0/plotly.js\"></script>\n<script src=\"lib/typedarray-0.1/typedarray.min.js\"></script>\n<script src=\"lib/jquery-3.5.1/jquery.min.js\"></script>\n<link href=\"lib/crosstalk-1.2.0/css/crosstalk.min.css\" rel=\"stylesheet\" />\n<script src=\"lib/crosstalk-1.2.0/js/crosstalk.min.js\"></script>\n<link href=\"lib/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css\" rel=\"stylesheet\" />\n<script src=\"lib/plotly-main-2.5.1/plotly-latest.min.js\"></script>\n\n</head>\n<body>\n<div id=\"htmlwidget-74acc6e8c79a8ae9bca7\" style=\"width:700px;height:450px;\" class=\"plotly html-widget\"></div>\n<script type=\"application/json\" data-for=\"htmlwidget-74acc6e8c79a8ae9bca7\">{\"x\":{\"visdat\":{\"1437bcfa9715\":[\"function () \",\"plotlyVisDat\"]},\"cur_data\":\"1437bcfa9715\",\"attrs\":{\"1437bcfa9715\":{\"mode\":\"markers\",\"x\":{},\"y\":{},\"marker\":{\"size\":12,\"opacity\":1},\"hoverinfo\":\"text\",\"text\":{},\"color\":{},\"frame\":{},\"colors\":[\"#289BF8\",\"#FF5E78\"],\"alpha_stroke\":1,\"sizes\":[10,100],\"spans\":[1,20],\"type\":\"scatter\"}},\"layout\":{\"width\":700,\"height\":450,\"margin\":{\"b\":10,\"l\":100,\"t\":10,\"r\":100,\"pad\":4},\"autosize\":false,\"xaxis\":{\"domain\":[0,1],\"automargin\":true,\"range\":[-3,3],\"zeroline\":false,\"title\":\"Covariance\"},\"yaxis\":{\"domain\":[0,1],\"automargin\":true,\"range\":[-0.1,4.5],\"zeroline\":false,\"title\":\"Product of standard deviations\"},\"hovermode\":\"closest\",\"showlegend\":false,\"sliders\":[{\"currentvalue\":{\"prefix\":\"Number of Samples: \",\"xanchor\":\"right\",\"font\":{\"size\":14,\"color\":\"grey70\"}},\"steps\":[{\"method\":\"animate\",\"args\":[[\"0\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"0\",\"value\":\"0\"},{\"method\":\"animate\",\"args\":[[\"100\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"100\",\"value\":\"100\"},{\"method\":\"animate\",\"args\":[[\"200\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"200\",\"value\":\"200\"},{\"method\":\"animate\",\"args\":[[\"300\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"300\",\"value\":\"300\"},{\"method\":\"animate\",\"args\":[[\"400\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"400\",\"value\":\"400\"},{\"method\":\"animate\",\"args\":[[\"500\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"500\",\"value\":\"500\"},{\"method\":\"animate\",\"args\":[[\"600\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"600\",\"value\":\"600\"},{\"method\":\"animate\",\"args\":[[\"700\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"700\",\"value\":\"700\"},{\"method\":\"animate\",\"args\":[[\"800\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"800\",\"value\":\"800\"},{\"method\":\"animate\",\"args\":[[\"900\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"900\",\"value\":\"900\"},{\"method\":\"animate\",\"args\":[[\"1000\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1000\",\"value\":\"1000\"},{\"method\":\"animate\",\"args\":[[\"1100\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1100\",\"value\":\"1100\"},{\"method\":\"animate\",\"args\":[[\"1200\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1200\",\"value\":\"1200\"},{\"method\":\"animate\",\"args\":[[\"1300\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1300\",\"value\":\"1300\"},{\"method\":\"animate\",\"args\":[[\"1400\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1400\",\"value\":\"1400\"},{\"method\":\"animate\",\"args\":[[\"1500\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1500\",\"value\":\"1500\"},{\"method\":\"animate\",\"args\":[[\"1600\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1600\",\"value\":\"1600\"},{\"method\":\"animate\",\"args\":[[\"1700\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1700\",\"value\":\"1700\"},{\"method\":\"animate\",\"args\":[[\"1800\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1800\",\"value\":\"1800\"},{\"method\":\"animate\",\"args\":[[\"1900\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1900\",\"value\":\"1900\"},{\"method\":\"animate\",\"args\":[[\"2000\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2000\",\"value\":\"2000\"},{\"method\":\"animate\",\"args\":[[\"2100\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2100\",\"value\":\"2100\"},{\"method\":\"animate\",\"args\":[[\"2200\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2200\",\"value\":\"2200\"},{\"method\":\"animate\",\"args\":[[\"2300\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2300\",\"value\":\"2300\"},{\"method\":\"animate\",\"args\":[[\"2400\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2400\",\"value\":\"2400\"},{\"method\":\"animate\",\"args\":[[\"2500\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2500\",\"value\":\"2500\"},{\"method\":\"animate\",\"args\":[[\"2600\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2600\",\"value\":\"2600\"},{\"method\":\"animate\",\"args\":[[\"2700\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2700\",\"value\":\"2700\"},{\"method\":\"animate\",\"args\":[[\"2800\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2800\",\"value\":\"2800\"},{\"method\":\"animate\",\"args\":[[\"2900\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2900\",\"value\":\"2900\"},{\"method\":\"animate\",\"args\":[[\"3000\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"3000\",\"value\":\"3000\"}],\"visible\":true,\"pad\":{\"t\":40}}],\"updatemenus\":[{\"type\":\"buttons\",\"direction\":\"right\",\"showactive\":false,\"y\":0,\"x\":0,\"yanchor\":\"top\",\"xanchor\":\"right\",\"pad\":{\"t\":60,\"r\":5},\"buttons\":[{\"label\":\"Play\",\"method\":\"animate\",\"args\":[null,{\"fromcurrent\":true,\"mode\":\"immediate\",\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false}}]}]}],\"legend\":{\"yanchor\":\"top\",\"y\":0.5}},\"source\":\"A\",\"config\":{\"modeBarButtonsToAdd\":[\"hoverclosest\",\"hovercompare\"],\"showSendToCloud\":false,\"displayModeBar\":false},\"data\":[{\"mode\":\"markers\",\"x\":[null],\"y\":[null],\"marker\":{\"color\":\"rgba(192,130,182,1)\",\"size\":12,\"opacity\":1,\"line\":{\"color\":\"rgba(192,130,182,1)\"}},\"hoverinfo\":\"text\",\"text\":\"Covariance: Inf <br />Pooled SD: Inf\",\"frame\":\"0\",\"type\":\"scatter\",\"textfont\":{\"color\":\"rgba(192,130,182,1)\"},\"error_y\":{\"color\":\"rgba(192,130,182,1)\"},\"error_x\":{\"color\":\"rgba(192,130,182,1)\"},\"line\":{\"color\":\"rgba(192,130,182,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[-3.39,null],\"y\":[0.07,null],\"type\":\"scatter\",\"mode\":\"markers\",\"opacity\":0,\"hoverinfo\":\"none\",\"showlegend\":false,\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2,\"len\":0.5,\"lenmode\":\"fraction\",\"y\":1,\"yanchor\":\"top\"},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":true,\"color\":[-0.99,0.98],\"line\":{\"color\":\"rgba(255,127,14,1)\"}},\"xaxis\":\"x\",\"yaxis\":\"y\",\"frame\":null}],\"highlight\":{\"on\":\"plotly_click\",\"persistent\":false,\"dynamic\":false,\"selectize\":false,\"opacityDim\":0.2,\"selected\":{\"opacity\":1},\"debounce\":0},\"frames\":[{\"name\":\"0\",\"data\":[{\"mode\":\"markers\",\"x\":[null],\"y\":[null],\"marker\":{\"color\":\"rgba(192,130,182,1)\",\"size\":12,\"opacity\":1,\"line\":{\"color\":\"rgba(192,130,182,1)\"}},\"hoverinfo\":\"text\",\"text\":\"Covariance: Inf <br />Pooled SD: Inf\",\"frame\":\"0\",\"type\":\"scatter\",\"textfont\":{\"color\":\"rgba(192,130,182,1)\"},\"error_y\":{\"color\":\"rgba(192,130,182,1)\"},\"error_x\":{\"color\":\"rgba(192,130,182,1)\"},\"line\":{\"color\":\"rgba(192,130,182,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"100\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\"],\"frame\":\"100\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"200\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\"],\"frame\":\"200\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"300\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\"],\"frame\":\"300\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"400\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\"],\"frame\":\"400\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"500\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\"],\"frame\":\"500\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"600\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\"],\"frame\":\"600\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"700\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\"],\"frame\":\"700\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"800\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\"],\"frame\":\"800\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"900\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\"],\"frame\":\"900\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1000\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\"],\"frame\":\"1000\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1100\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\"],\"frame\":\"1100\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1200\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\"],\"frame\":\"1200\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1300\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\"],\"frame\":\"1300\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1400\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\"],\"frame\":\"1400\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1500\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\"],\"frame\":\"1500\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1600\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\"],\"frame\":\"1600\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1700\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\"],\"frame\":\"1700\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1800\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\"],\"frame\":\"1800\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1900\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\"],\"frame\":\"1900\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2000\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\"],\"frame\":\"2000\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2100\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\"],\"frame\":\"2100\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2200\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7,0.17,-1.1,0.54,0.96,0.46,0.49,0.1,0.2,-0.03,0.45,0.13,0.05,-0.65,-0.3,0.66,-0.46,0.12,-0.16,0.35,-0.77,0.2,-0.57,0.76,0.18,0.11,0.02,-0.28,-0.62,-0.65,-0.12,0.32,-0.48,0.38,0.91,-0.69,-0.6,0.09,1.15,-0.57,0.05,0.3,-0.07,0.28,-0.01,-0.03,0.95,0.83,-0.97,0.04,-0.58,-0.96,0.23,0.81,-0.11,-0.54,0.58,-0.39,0.78,0.4,-0.32,-0.38,-0.57,-0.11,-0.08,-0.08,-0.57,0.33,-0.33,0.27,-1.12,1.37,-1.64,-2.13,-0.14,-1.43,0.06,0.13,0.03,0.08,0.22,-0.4,0.12,0.29,-0.93,0.81,0.46,-0.18,0.39,-1.82,0.52,-0.45,0.1,-0.65,-0.2,-0.42,0.25,-0.22,0.12,-0.28,1.16],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14,1.39,2.11,0.64,1.87,1.81,2.14,0.73,1.17,0.99,0.98,1.73,0.65,1.81,0.77,1.01,1.86,1.58,0.7,0.98,1.55,0.98,1.03,1.13,0.92,0.96,1.17,1.26,1.33,1.35,0.82,2.11,0.87,1.69,1.42,0.97,2.99,2.68,2.32,1.16,0.89,1.21,0.46,1.48,1.39,0.39,2.16,1.26,1.14,0.7,2.74,1.49,0.66,1.46,0.56,0.59,0.82,1.39,1.14,1.33,0.95,0.62,1.05,1.85,1.05,1.51,0.98,1.42,1.14,1.9,1.43,1.65,2.42,2.59,0.94,2.3,0.75,0.99,1.16,1.12,0.75,0.55,0.86,0.93,1.63,1.08,0.67,0.86,0.63,3.11,1.71,1.08,1.13,1.66,1.17,0.74,1.87,1.19,0.4,1.56,1.48],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\",\"Covariance: 0.17 <br />Pooled SD: 1.39\",\"Covariance: -1.1 <br />Pooled SD: 2.11\",\"Covariance: 0.54 <br />Pooled SD: 0.64\",\"Covariance: 0.96 <br />Pooled SD: 1.87\",\"Covariance: 0.46 <br />Pooled SD: 1.81\",\"Covariance: 0.49 <br />Pooled SD: 2.14\",\"Covariance: 0.1 <br />Pooled SD: 0.73\",\"Covariance: 0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.03 <br />Pooled SD: 0.99\",\"Covariance: 0.45 <br />Pooled SD: 0.98\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.81\",\"Covariance: -0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.66 <br />Pooled SD: 1.01\",\"Covariance: -0.46 <br />Pooled SD: 1.86\",\"Covariance: 0.12 <br />Pooled SD: 1.58\",\"Covariance: -0.16 <br />Pooled SD: 0.7\",\"Covariance: 0.35 <br />Pooled SD: 0.98\",\"Covariance: -0.77 <br />Pooled SD: 1.55\",\"Covariance: 0.2 <br />Pooled SD: 0.98\",\"Covariance: -0.57 <br />Pooled SD: 1.03\",\"Covariance: 0.76 <br />Pooled SD: 1.13\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.02 <br />Pooled SD: 1.17\",\"Covariance: -0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.33\",\"Covariance: -0.65 <br />Pooled SD: 1.35\",\"Covariance: -0.12 <br />Pooled SD: 0.82\",\"Covariance: 0.32 <br />Pooled SD: 2.11\",\"Covariance: -0.48 <br />Pooled SD: 0.87\",\"Covariance: 0.38 <br />Pooled SD: 1.69\",\"Covariance: 0.91 <br />Pooled SD: 1.42\",\"Covariance: -0.69 <br />Pooled SD: 0.97\",\"Covariance: -0.6 <br />Pooled SD: 2.99\",\"Covariance: 0.09 <br />Pooled SD: 2.68\",\"Covariance: 1.15 <br />Pooled SD: 2.32\",\"Covariance: -0.57 <br />Pooled SD: 1.16\",\"Covariance: 0.05 <br />Pooled SD: 0.89\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: -0.07 <br />Pooled SD: 0.46\",\"Covariance: 0.28 <br />Pooled SD: 1.48\",\"Covariance: -0.01 <br />Pooled SD: 1.39\",\"Covariance: -0.03 <br />Pooled SD: 0.39\",\"Covariance: 0.95 <br />Pooled SD: 2.16\",\"Covariance: 0.83 <br />Pooled SD: 1.26\",\"Covariance: -0.97 <br />Pooled SD: 1.14\",\"Covariance: 0.04 <br />Pooled SD: 0.7\",\"Covariance: -0.58 <br />Pooled SD: 2.74\",\"Covariance: -0.96 <br />Pooled SD: 1.49\",\"Covariance: 0.23 <br />Pooled SD: 0.66\",\"Covariance: 0.81 <br />Pooled SD: 1.46\",\"Covariance: -0.11 <br />Pooled SD: 0.56\",\"Covariance: -0.54 <br />Pooled SD: 0.59\",\"Covariance: 0.58 <br />Pooled SD: 0.82\",\"Covariance: -0.39 <br />Pooled SD: 1.39\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 0.4 <br />Pooled SD: 1.33\",\"Covariance: -0.32 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.57 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 1.05\",\"Covariance: -0.08 <br />Pooled SD: 1.51\",\"Covariance: -0.57 <br />Pooled SD: 0.98\",\"Covariance: 0.33 <br />Pooled SD: 1.42\",\"Covariance: -0.33 <br />Pooled SD: 1.14\",\"Covariance: 0.27 <br />Pooled SD: 1.9\",\"Covariance: -1.12 <br />Pooled SD: 1.43\",\"Covariance: 1.37 <br />Pooled SD: 1.65\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: -2.13 <br />Pooled SD: 2.59\",\"Covariance: -0.14 <br />Pooled SD: 0.94\",\"Covariance: -1.43 <br />Pooled SD: 2.3\",\"Covariance: 0.06 <br />Pooled SD: 0.75\",\"Covariance: 0.13 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 1.16\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.12 <br />Pooled SD: 0.86\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.93 <br />Pooled SD: 1.63\",\"Covariance: 0.81 <br />Pooled SD: 1.08\",\"Covariance: 0.46 <br />Pooled SD: 0.67\",\"Covariance: -0.18 <br />Pooled SD: 0.86\",\"Covariance: 0.39 <br />Pooled SD: 0.63\",\"Covariance: -1.82 <br />Pooled SD: 3.11\",\"Covariance: 0.52 <br />Pooled SD: 1.71\",\"Covariance: -0.45 <br />Pooled SD: 1.08\",\"Covariance: 0.1 <br />Pooled SD: 1.13\",\"Covariance: -0.65 <br />Pooled SD: 1.66\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 0.74\",\"Covariance: 0.25 <br />Pooled SD: 1.87\",\"Covariance: -0.22 <br />Pooled SD: 1.19\",\"Covariance: 0.12 <br />Pooled SD: 0.4\",\"Covariance: -0.28 <br />Pooled SD: 1.56\",\"Covariance: 1.16 <br />Pooled SD: 1.48\"],\"frame\":\"2200\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2300\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7,0.17,-1.1,0.54,0.96,0.46,0.49,0.1,0.2,-0.03,0.45,0.13,0.05,-0.65,-0.3,0.66,-0.46,0.12,-0.16,0.35,-0.77,0.2,-0.57,0.76,0.18,0.11,0.02,-0.28,-0.62,-0.65,-0.12,0.32,-0.48,0.38,0.91,-0.69,-0.6,0.09,1.15,-0.57,0.05,0.3,-0.07,0.28,-0.01,-0.03,0.95,0.83,-0.97,0.04,-0.58,-0.96,0.23,0.81,-0.11,-0.54,0.58,-0.39,0.78,0.4,-0.32,-0.38,-0.57,-0.11,-0.08,-0.08,-0.57,0.33,-0.33,0.27,-1.12,1.37,-1.64,-2.13,-0.14,-1.43,0.06,0.13,0.03,0.08,0.22,-0.4,0.12,0.29,-0.93,0.81,0.46,-0.18,0.39,-1.82,0.52,-0.45,0.1,-0.65,-0.2,-0.42,0.25,-0.22,0.12,-0.28,1.16,0.5,0.28,-1.01,0.38,1.33,0.61,0.03,0.75,0.57,-0.1,0.18,0.41,0.54,-0.03,0.61,0.05,0.34,-0.18,0.38,-0.38,0.41,-0.39,-0.26,1.37,-0.34,0.17,0.49,-0.11,-0.15,0.87,0.13,-0.2,0.04,-0.09,0.58,0.82,-0.05,0.35,0.12,-0.02,0.11,0.11,0.2,-0.16,0.06,-0.39,0.58,-0.75,-0.08,0.22,-0.1,-0.26,-0.94,-0.19,0.31,-0.17,1.21,-0.88,0.22,-1.27,0.75,-0.05,0.96,-0.39,0.52,-0.15,0.08,-0.33,0.26,-0.16,-0.86,0.16,-0.55,0.51,0.08,0.07,1.51,0.48,-0.22,0.91,0.63,1.31,0.97,-0.05,-0.21,0.55,0.57,0.36,-0.23,0,-0.28,-0.4,0.34,-0.23,0.47,0.66,0.63,0.1,-0.07,0.1],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14,1.39,2.11,0.64,1.87,1.81,2.14,0.73,1.17,0.99,0.98,1.73,0.65,1.81,0.77,1.01,1.86,1.58,0.7,0.98,1.55,0.98,1.03,1.13,0.92,0.96,1.17,1.26,1.33,1.35,0.82,2.11,0.87,1.69,1.42,0.97,2.99,2.68,2.32,1.16,0.89,1.21,0.46,1.48,1.39,0.39,2.16,1.26,1.14,0.7,2.74,1.49,0.66,1.46,0.56,0.59,0.82,1.39,1.14,1.33,0.95,0.62,1.05,1.85,1.05,1.51,0.98,1.42,1.14,1.9,1.43,1.65,2.42,2.59,0.94,2.3,0.75,0.99,1.16,1.12,0.75,0.55,0.86,0.93,1.63,1.08,0.67,0.86,0.63,3.11,1.71,1.08,1.13,1.66,1.17,0.74,1.87,1.19,0.4,1.56,1.48,0.71,0.9,1.56,0.74,1.7,2.04,0.94,1.42,1.44,0.49,0.41,0.95,1.05,0.9,1.02,0.73,0.92,2.43,1.37,1.33,1.64,1.02,0.62,1.88,1.68,2.41,1.6,1.51,2.26,2.39,0.25,0.65,0.48,1.5,1.71,1.63,0.75,1.08,0.77,1.06,0.69,0.93,1.41,0.85,1.86,1.11,1.12,1.12,1.71,0.35,1.05,1.53,1.57,0.4,0.9,0.96,2.18,1.88,0.58,2.39,2.15,1.81,1.59,1.71,1.16,0.86,0.95,0.86,1.31,1.03,1.8,1.17,1.9,1.28,0.36,0.98,1.56,1.18,2.7,1.98,1.3,1.86,2.1,0.6,0.89,1.12,3.05,0.97,0.85,0.38,1.18,0.72,0.86,1.07,1.64,2.35,1.4,1.41,0.51,0.99],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\",\"Covariance: 0.17 <br />Pooled SD: 1.39\",\"Covariance: -1.1 <br />Pooled SD: 2.11\",\"Covariance: 0.54 <br />Pooled SD: 0.64\",\"Covariance: 0.96 <br />Pooled SD: 1.87\",\"Covariance: 0.46 <br />Pooled SD: 1.81\",\"Covariance: 0.49 <br />Pooled SD: 2.14\",\"Covariance: 0.1 <br />Pooled SD: 0.73\",\"Covariance: 0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.03 <br />Pooled SD: 0.99\",\"Covariance: 0.45 <br />Pooled SD: 0.98\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.81\",\"Covariance: -0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.66 <br />Pooled SD: 1.01\",\"Covariance: -0.46 <br />Pooled SD: 1.86\",\"Covariance: 0.12 <br />Pooled SD: 1.58\",\"Covariance: -0.16 <br />Pooled SD: 0.7\",\"Covariance: 0.35 <br />Pooled SD: 0.98\",\"Covariance: -0.77 <br />Pooled SD: 1.55\",\"Covariance: 0.2 <br />Pooled SD: 0.98\",\"Covariance: -0.57 <br />Pooled SD: 1.03\",\"Covariance: 0.76 <br />Pooled SD: 1.13\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.02 <br />Pooled SD: 1.17\",\"Covariance: -0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.33\",\"Covariance: -0.65 <br />Pooled SD: 1.35\",\"Covariance: -0.12 <br />Pooled SD: 0.82\",\"Covariance: 0.32 <br />Pooled SD: 2.11\",\"Covariance: -0.48 <br />Pooled SD: 0.87\",\"Covariance: 0.38 <br />Pooled SD: 1.69\",\"Covariance: 0.91 <br />Pooled SD: 1.42\",\"Covariance: -0.69 <br />Pooled SD: 0.97\",\"Covariance: -0.6 <br />Pooled SD: 2.99\",\"Covariance: 0.09 <br />Pooled SD: 2.68\",\"Covariance: 1.15 <br />Pooled SD: 2.32\",\"Covariance: -0.57 <br />Pooled SD: 1.16\",\"Covariance: 0.05 <br />Pooled SD: 0.89\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: -0.07 <br />Pooled SD: 0.46\",\"Covariance: 0.28 <br />Pooled SD: 1.48\",\"Covariance: -0.01 <br />Pooled SD: 1.39\",\"Covariance: -0.03 <br />Pooled SD: 0.39\",\"Covariance: 0.95 <br />Pooled SD: 2.16\",\"Covariance: 0.83 <br />Pooled SD: 1.26\",\"Covariance: -0.97 <br />Pooled SD: 1.14\",\"Covariance: 0.04 <br />Pooled SD: 0.7\",\"Covariance: -0.58 <br />Pooled SD: 2.74\",\"Covariance: -0.96 <br />Pooled SD: 1.49\",\"Covariance: 0.23 <br />Pooled SD: 0.66\",\"Covariance: 0.81 <br />Pooled SD: 1.46\",\"Covariance: -0.11 <br />Pooled SD: 0.56\",\"Covariance: -0.54 <br />Pooled SD: 0.59\",\"Covariance: 0.58 <br />Pooled SD: 0.82\",\"Covariance: -0.39 <br />Pooled SD: 1.39\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 0.4 <br />Pooled SD: 1.33\",\"Covariance: -0.32 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.57 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 1.05\",\"Covariance: -0.08 <br />Pooled SD: 1.51\",\"Covariance: -0.57 <br />Pooled SD: 0.98\",\"Covariance: 0.33 <br />Pooled SD: 1.42\",\"Covariance: -0.33 <br />Pooled SD: 1.14\",\"Covariance: 0.27 <br />Pooled SD: 1.9\",\"Covariance: -1.12 <br />Pooled SD: 1.43\",\"Covariance: 1.37 <br />Pooled SD: 1.65\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: -2.13 <br />Pooled SD: 2.59\",\"Covariance: -0.14 <br />Pooled SD: 0.94\",\"Covariance: -1.43 <br />Pooled SD: 2.3\",\"Covariance: 0.06 <br />Pooled SD: 0.75\",\"Covariance: 0.13 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 1.16\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.12 <br />Pooled SD: 0.86\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.93 <br />Pooled SD: 1.63\",\"Covariance: 0.81 <br />Pooled SD: 1.08\",\"Covariance: 0.46 <br />Pooled SD: 0.67\",\"Covariance: -0.18 <br />Pooled SD: 0.86\",\"Covariance: 0.39 <br />Pooled SD: 0.63\",\"Covariance: -1.82 <br />Pooled SD: 3.11\",\"Covariance: 0.52 <br />Pooled SD: 1.71\",\"Covariance: -0.45 <br />Pooled SD: 1.08\",\"Covariance: 0.1 <br />Pooled SD: 1.13\",\"Covariance: -0.65 <br />Pooled SD: 1.66\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 0.74\",\"Covariance: 0.25 <br />Pooled SD: 1.87\",\"Covariance: -0.22 <br />Pooled SD: 1.19\",\"Covariance: 0.12 <br />Pooled SD: 0.4\",\"Covariance: -0.28 <br />Pooled SD: 1.56\",\"Covariance: 1.16 <br />Pooled SD: 1.48\",\"Covariance: 0.5 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 0.9\",\"Covariance: -1.01 <br />Pooled SD: 1.56\",\"Covariance: 0.38 <br />Pooled SD: 0.74\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.61 <br />Pooled SD: 2.04\",\"Covariance: 0.03 <br />Pooled SD: 0.94\",\"Covariance: 0.75 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 1.44\",\"Covariance: -0.1 <br />Pooled SD: 0.49\",\"Covariance: 0.18 <br />Pooled SD: 0.41\",\"Covariance: 0.41 <br />Pooled SD: 0.95\",\"Covariance: 0.54 <br />Pooled SD: 1.05\",\"Covariance: -0.03 <br />Pooled SD: 0.9\",\"Covariance: 0.61 <br />Pooled SD: 1.02\",\"Covariance: 0.05 <br />Pooled SD: 0.73\",\"Covariance: 0.34 <br />Pooled SD: 0.92\",\"Covariance: -0.18 <br />Pooled SD: 2.43\",\"Covariance: 0.38 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.33\",\"Covariance: 0.41 <br />Pooled SD: 1.64\",\"Covariance: -0.39 <br />Pooled SD: 1.02\",\"Covariance: -0.26 <br />Pooled SD: 0.62\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.17 <br />Pooled SD: 2.41\",\"Covariance: 0.49 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 2.26\",\"Covariance: 0.87 <br />Pooled SD: 2.39\",\"Covariance: 0.13 <br />Pooled SD: 0.25\",\"Covariance: -0.2 <br />Pooled SD: 0.65\",\"Covariance: 0.04 <br />Pooled SD: 0.48\",\"Covariance: -0.09 <br />Pooled SD: 1.5\",\"Covariance: 0.58 <br />Pooled SD: 1.71\",\"Covariance: 0.82 <br />Pooled SD: 1.63\",\"Covariance: -0.05 <br />Pooled SD: 0.75\",\"Covariance: 0.35 <br />Pooled SD: 1.08\",\"Covariance: 0.12 <br />Pooled SD: 0.77\",\"Covariance: -0.02 <br />Pooled SD: 1.06\",\"Covariance: 0.11 <br />Pooled SD: 0.69\",\"Covariance: 0.11 <br />Pooled SD: 0.93\",\"Covariance: 0.2 <br />Pooled SD: 1.41\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.06 <br />Pooled SD: 1.86\",\"Covariance: -0.39 <br />Pooled SD: 1.11\",\"Covariance: 0.58 <br />Pooled SD: 1.12\",\"Covariance: -0.75 <br />Pooled SD: 1.12\",\"Covariance: -0.08 <br />Pooled SD: 1.71\",\"Covariance: 0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.1 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 1.53\",\"Covariance: -0.94 <br />Pooled SD: 1.57\",\"Covariance: -0.19 <br />Pooled SD: 0.4\",\"Covariance: 0.31 <br />Pooled SD: 0.9\",\"Covariance: -0.17 <br />Pooled SD: 0.96\",\"Covariance: 1.21 <br />Pooled SD: 2.18\",\"Covariance: -0.88 <br />Pooled SD: 1.88\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: -1.27 <br />Pooled SD: 2.39\",\"Covariance: 0.75 <br />Pooled SD: 2.15\",\"Covariance: -0.05 <br />Pooled SD: 1.81\",\"Covariance: 0.96 <br />Pooled SD: 1.59\",\"Covariance: -0.39 <br />Pooled SD: 1.71\",\"Covariance: 0.52 <br />Pooled SD: 1.16\",\"Covariance: -0.15 <br />Pooled SD: 0.86\",\"Covariance: 0.08 <br />Pooled SD: 0.95\",\"Covariance: -0.33 <br />Pooled SD: 0.86\",\"Covariance: 0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.16 <br />Pooled SD: 1.03\",\"Covariance: -0.86 <br />Pooled SD: 1.8\",\"Covariance: 0.16 <br />Pooled SD: 1.17\",\"Covariance: -0.55 <br />Pooled SD: 1.9\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.08 <br />Pooled SD: 0.36\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: 1.51 <br />Pooled SD: 1.56\",\"Covariance: 0.48 <br />Pooled SD: 1.18\",\"Covariance: -0.22 <br />Pooled SD: 2.7\",\"Covariance: 0.91 <br />Pooled SD: 1.98\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: 1.31 <br />Pooled SD: 1.86\",\"Covariance: 0.97 <br />Pooled SD: 2.1\",\"Covariance: -0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.21 <br />Pooled SD: 0.89\",\"Covariance: 0.55 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 3.05\",\"Covariance: 0.36 <br />Pooled SD: 0.97\",\"Covariance: -0.23 <br />Pooled SD: 0.85\",\"Covariance: 0 <br />Pooled SD: 0.38\",\"Covariance: -0.28 <br />Pooled SD: 1.18\",\"Covariance: -0.4 <br />Pooled SD: 0.72\",\"Covariance: 0.34 <br />Pooled SD: 0.86\",\"Covariance: -0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.47 <br />Pooled SD: 1.64\",\"Covariance: 0.66 <br />Pooled SD: 2.35\",\"Covariance: 0.63 <br />Pooled SD: 1.4\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.51\",\"Covariance: 0.1 <br />Pooled SD: 0.99\"],\"frame\":\"2300\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2400\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7,0.17,-1.1,0.54,0.96,0.46,0.49,0.1,0.2,-0.03,0.45,0.13,0.05,-0.65,-0.3,0.66,-0.46,0.12,-0.16,0.35,-0.77,0.2,-0.57,0.76,0.18,0.11,0.02,-0.28,-0.62,-0.65,-0.12,0.32,-0.48,0.38,0.91,-0.69,-0.6,0.09,1.15,-0.57,0.05,0.3,-0.07,0.28,-0.01,-0.03,0.95,0.83,-0.97,0.04,-0.58,-0.96,0.23,0.81,-0.11,-0.54,0.58,-0.39,0.78,0.4,-0.32,-0.38,-0.57,-0.11,-0.08,-0.08,-0.57,0.33,-0.33,0.27,-1.12,1.37,-1.64,-2.13,-0.14,-1.43,0.06,0.13,0.03,0.08,0.22,-0.4,0.12,0.29,-0.93,0.81,0.46,-0.18,0.39,-1.82,0.52,-0.45,0.1,-0.65,-0.2,-0.42,0.25,-0.22,0.12,-0.28,1.16,0.5,0.28,-1.01,0.38,1.33,0.61,0.03,0.75,0.57,-0.1,0.18,0.41,0.54,-0.03,0.61,0.05,0.34,-0.18,0.38,-0.38,0.41,-0.39,-0.26,1.37,-0.34,0.17,0.49,-0.11,-0.15,0.87,0.13,-0.2,0.04,-0.09,0.58,0.82,-0.05,0.35,0.12,-0.02,0.11,0.11,0.2,-0.16,0.06,-0.39,0.58,-0.75,-0.08,0.22,-0.1,-0.26,-0.94,-0.19,0.31,-0.17,1.21,-0.88,0.22,-1.27,0.75,-0.05,0.96,-0.39,0.52,-0.15,0.08,-0.33,0.26,-0.16,-0.86,0.16,-0.55,0.51,0.08,0.07,1.51,0.48,-0.22,0.91,0.63,1.31,0.97,-0.05,-0.21,0.55,0.57,0.36,-0.23,0,-0.28,-0.4,0.34,-0.23,0.47,0.66,0.63,0.1,-0.07,0.1,0.23,-0.25,0.45,0.18,-0.46,-0.35,-0.38,0.53,-0.18,0.01,0.01,0.57,-0.44,0.13,0.78,-0.15,0.26,0.17,1.1,-0.09,-0.52,-0.12,0.38,0.64,0.18,-0.65,0.07,-0.66,0.12,1.45,0.5,0.06,0.04,0.7,0.66,0.08,-1.54,0.45,0.16,0.01,-0.06,-0.27,0.3,0,-0.44,-0.89,0.64,1.1,0.5,0.32,-0.48,-0.28,0.44,0,-0.02,0.13,-0.45,-0.02,-0.82,-0.26,0.7,0.37,0.2,1.99,-0.07,0.29,1.79,-1.05,0.39,0.7,0.07,-0.39,-1.65,0.34,0.23,-0,-0.86,0.27,-1.43,0.38,0.44,0.45,1.33,0.16,-0.26,1.01,0.12,-0.56,-0.47,-0.18,-0.21,-0.62,-0.8,-0.09,0.27,-0.48,0.06,-0.24,0.67,-0.19],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14,1.39,2.11,0.64,1.87,1.81,2.14,0.73,1.17,0.99,0.98,1.73,0.65,1.81,0.77,1.01,1.86,1.58,0.7,0.98,1.55,0.98,1.03,1.13,0.92,0.96,1.17,1.26,1.33,1.35,0.82,2.11,0.87,1.69,1.42,0.97,2.99,2.68,2.32,1.16,0.89,1.21,0.46,1.48,1.39,0.39,2.16,1.26,1.14,0.7,2.74,1.49,0.66,1.46,0.56,0.59,0.82,1.39,1.14,1.33,0.95,0.62,1.05,1.85,1.05,1.51,0.98,1.42,1.14,1.9,1.43,1.65,2.42,2.59,0.94,2.3,0.75,0.99,1.16,1.12,0.75,0.55,0.86,0.93,1.63,1.08,0.67,0.86,0.63,3.11,1.71,1.08,1.13,1.66,1.17,0.74,1.87,1.19,0.4,1.56,1.48,0.71,0.9,1.56,0.74,1.7,2.04,0.94,1.42,1.44,0.49,0.41,0.95,1.05,0.9,1.02,0.73,0.92,2.43,1.37,1.33,1.64,1.02,0.62,1.88,1.68,2.41,1.6,1.51,2.26,2.39,0.25,0.65,0.48,1.5,1.71,1.63,0.75,1.08,0.77,1.06,0.69,0.93,1.41,0.85,1.86,1.11,1.12,1.12,1.71,0.35,1.05,1.53,1.57,0.4,0.9,0.96,2.18,1.88,0.58,2.39,2.15,1.81,1.59,1.71,1.16,0.86,0.95,0.86,1.31,1.03,1.8,1.17,1.9,1.28,0.36,0.98,1.56,1.18,2.7,1.98,1.3,1.86,2.1,0.6,0.89,1.12,3.05,0.97,0.85,0.38,1.18,0.72,0.86,1.07,1.64,2.35,1.4,1.41,0.51,0.99,1.61,2.32,0.6,0.72,0.8,1.47,0.85,0.74,0.4,0.62,1.42,0.85,0.68,0.72,1.06,0.65,0.67,1.68,1.67,1.43,0.82,1.01,1.24,1.69,0.69,1.96,0.81,0.91,1.76,1.62,0.72,1.04,1.06,1.99,2.49,0.69,2.17,1.46,0.63,0.48,0.49,1.21,1.57,0.82,0.53,2.58,0.7,1.49,1.53,0.69,0.49,0.38,1.06,0.61,0.44,1.73,1.25,0.5,1.19,2.28,0.81,1.59,0.41,2.39,0.23,0.57,2.95,1.48,1.6,1,1.45,0.78,2.34,0.87,1.27,1.66,1.4,0.77,1.62,1.2,0.65,0.85,2.39,1.21,1.18,1.18,0.93,0.9,0.9,0.69,0.77,1.15,1.31,0.49,1.36,1.13,0.93,0.51,1.15,0.93],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\",\"Covariance: 0.17 <br />Pooled SD: 1.39\",\"Covariance: -1.1 <br />Pooled SD: 2.11\",\"Covariance: 0.54 <br />Pooled SD: 0.64\",\"Covariance: 0.96 <br />Pooled SD: 1.87\",\"Covariance: 0.46 <br />Pooled SD: 1.81\",\"Covariance: 0.49 <br />Pooled SD: 2.14\",\"Covariance: 0.1 <br />Pooled SD: 0.73\",\"Covariance: 0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.03 <br />Pooled SD: 0.99\",\"Covariance: 0.45 <br />Pooled SD: 0.98\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.81\",\"Covariance: -0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.66 <br />Pooled SD: 1.01\",\"Covariance: -0.46 <br />Pooled SD: 1.86\",\"Covariance: 0.12 <br />Pooled SD: 1.58\",\"Covariance: -0.16 <br />Pooled SD: 0.7\",\"Covariance: 0.35 <br />Pooled SD: 0.98\",\"Covariance: -0.77 <br />Pooled SD: 1.55\",\"Covariance: 0.2 <br />Pooled SD: 0.98\",\"Covariance: -0.57 <br />Pooled SD: 1.03\",\"Covariance: 0.76 <br />Pooled SD: 1.13\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.02 <br />Pooled SD: 1.17\",\"Covariance: -0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.33\",\"Covariance: -0.65 <br />Pooled SD: 1.35\",\"Covariance: -0.12 <br />Pooled SD: 0.82\",\"Covariance: 0.32 <br />Pooled SD: 2.11\",\"Covariance: -0.48 <br />Pooled SD: 0.87\",\"Covariance: 0.38 <br />Pooled SD: 1.69\",\"Covariance: 0.91 <br />Pooled SD: 1.42\",\"Covariance: -0.69 <br />Pooled SD: 0.97\",\"Covariance: -0.6 <br />Pooled SD: 2.99\",\"Covariance: 0.09 <br />Pooled SD: 2.68\",\"Covariance: 1.15 <br />Pooled SD: 2.32\",\"Covariance: -0.57 <br />Pooled SD: 1.16\",\"Covariance: 0.05 <br />Pooled SD: 0.89\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: -0.07 <br />Pooled SD: 0.46\",\"Covariance: 0.28 <br />Pooled SD: 1.48\",\"Covariance: -0.01 <br />Pooled SD: 1.39\",\"Covariance: -0.03 <br />Pooled SD: 0.39\",\"Covariance: 0.95 <br />Pooled SD: 2.16\",\"Covariance: 0.83 <br />Pooled SD: 1.26\",\"Covariance: -0.97 <br />Pooled SD: 1.14\",\"Covariance: 0.04 <br />Pooled SD: 0.7\",\"Covariance: -0.58 <br />Pooled SD: 2.74\",\"Covariance: -0.96 <br />Pooled SD: 1.49\",\"Covariance: 0.23 <br />Pooled SD: 0.66\",\"Covariance: 0.81 <br />Pooled SD: 1.46\",\"Covariance: -0.11 <br />Pooled SD: 0.56\",\"Covariance: -0.54 <br />Pooled SD: 0.59\",\"Covariance: 0.58 <br />Pooled SD: 0.82\",\"Covariance: -0.39 <br />Pooled SD: 1.39\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 0.4 <br />Pooled SD: 1.33\",\"Covariance: -0.32 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.57 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 1.05\",\"Covariance: -0.08 <br />Pooled SD: 1.51\",\"Covariance: -0.57 <br />Pooled SD: 0.98\",\"Covariance: 0.33 <br />Pooled SD: 1.42\",\"Covariance: -0.33 <br />Pooled SD: 1.14\",\"Covariance: 0.27 <br />Pooled SD: 1.9\",\"Covariance: -1.12 <br />Pooled SD: 1.43\",\"Covariance: 1.37 <br />Pooled SD: 1.65\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: -2.13 <br />Pooled SD: 2.59\",\"Covariance: -0.14 <br />Pooled SD: 0.94\",\"Covariance: -1.43 <br />Pooled SD: 2.3\",\"Covariance: 0.06 <br />Pooled SD: 0.75\",\"Covariance: 0.13 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 1.16\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.12 <br />Pooled SD: 0.86\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.93 <br />Pooled SD: 1.63\",\"Covariance: 0.81 <br />Pooled SD: 1.08\",\"Covariance: 0.46 <br />Pooled SD: 0.67\",\"Covariance: -0.18 <br />Pooled SD: 0.86\",\"Covariance: 0.39 <br />Pooled SD: 0.63\",\"Covariance: -1.82 <br />Pooled SD: 3.11\",\"Covariance: 0.52 <br />Pooled SD: 1.71\",\"Covariance: -0.45 <br />Pooled SD: 1.08\",\"Covariance: 0.1 <br />Pooled SD: 1.13\",\"Covariance: -0.65 <br />Pooled SD: 1.66\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 0.74\",\"Covariance: 0.25 <br />Pooled SD: 1.87\",\"Covariance: -0.22 <br />Pooled SD: 1.19\",\"Covariance: 0.12 <br />Pooled SD: 0.4\",\"Covariance: -0.28 <br />Pooled SD: 1.56\",\"Covariance: 1.16 <br />Pooled SD: 1.48\",\"Covariance: 0.5 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 0.9\",\"Covariance: -1.01 <br />Pooled SD: 1.56\",\"Covariance: 0.38 <br />Pooled SD: 0.74\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.61 <br />Pooled SD: 2.04\",\"Covariance: 0.03 <br />Pooled SD: 0.94\",\"Covariance: 0.75 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 1.44\",\"Covariance: -0.1 <br />Pooled SD: 0.49\",\"Covariance: 0.18 <br />Pooled SD: 0.41\",\"Covariance: 0.41 <br />Pooled SD: 0.95\",\"Covariance: 0.54 <br />Pooled SD: 1.05\",\"Covariance: -0.03 <br />Pooled SD: 0.9\",\"Covariance: 0.61 <br />Pooled SD: 1.02\",\"Covariance: 0.05 <br />Pooled SD: 0.73\",\"Covariance: 0.34 <br />Pooled SD: 0.92\",\"Covariance: -0.18 <br />Pooled SD: 2.43\",\"Covariance: 0.38 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.33\",\"Covariance: 0.41 <br />Pooled SD: 1.64\",\"Covariance: -0.39 <br />Pooled SD: 1.02\",\"Covariance: -0.26 <br />Pooled SD: 0.62\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.17 <br />Pooled SD: 2.41\",\"Covariance: 0.49 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 2.26\",\"Covariance: 0.87 <br />Pooled SD: 2.39\",\"Covariance: 0.13 <br />Pooled SD: 0.25\",\"Covariance: -0.2 <br />Pooled SD: 0.65\",\"Covariance: 0.04 <br />Pooled SD: 0.48\",\"Covariance: -0.09 <br />Pooled SD: 1.5\",\"Covariance: 0.58 <br />Pooled SD: 1.71\",\"Covariance: 0.82 <br />Pooled SD: 1.63\",\"Covariance: -0.05 <br />Pooled SD: 0.75\",\"Covariance: 0.35 <br />Pooled SD: 1.08\",\"Covariance: 0.12 <br />Pooled SD: 0.77\",\"Covariance: -0.02 <br />Pooled SD: 1.06\",\"Covariance: 0.11 <br />Pooled SD: 0.69\",\"Covariance: 0.11 <br />Pooled SD: 0.93\",\"Covariance: 0.2 <br />Pooled SD: 1.41\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.06 <br />Pooled SD: 1.86\",\"Covariance: -0.39 <br />Pooled SD: 1.11\",\"Covariance: 0.58 <br />Pooled SD: 1.12\",\"Covariance: -0.75 <br />Pooled SD: 1.12\",\"Covariance: -0.08 <br />Pooled SD: 1.71\",\"Covariance: 0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.1 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 1.53\",\"Covariance: -0.94 <br />Pooled SD: 1.57\",\"Covariance: -0.19 <br />Pooled SD: 0.4\",\"Covariance: 0.31 <br />Pooled SD: 0.9\",\"Covariance: -0.17 <br />Pooled SD: 0.96\",\"Covariance: 1.21 <br />Pooled SD: 2.18\",\"Covariance: -0.88 <br />Pooled SD: 1.88\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: -1.27 <br />Pooled SD: 2.39\",\"Covariance: 0.75 <br />Pooled SD: 2.15\",\"Covariance: -0.05 <br />Pooled SD: 1.81\",\"Covariance: 0.96 <br />Pooled SD: 1.59\",\"Covariance: -0.39 <br />Pooled SD: 1.71\",\"Covariance: 0.52 <br />Pooled SD: 1.16\",\"Covariance: -0.15 <br />Pooled SD: 0.86\",\"Covariance: 0.08 <br />Pooled SD: 0.95\",\"Covariance: -0.33 <br />Pooled SD: 0.86\",\"Covariance: 0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.16 <br />Pooled SD: 1.03\",\"Covariance: -0.86 <br />Pooled SD: 1.8\",\"Covariance: 0.16 <br />Pooled SD: 1.17\",\"Covariance: -0.55 <br />Pooled SD: 1.9\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.08 <br />Pooled SD: 0.36\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: 1.51 <br />Pooled SD: 1.56\",\"Covariance: 0.48 <br />Pooled SD: 1.18\",\"Covariance: -0.22 <br />Pooled SD: 2.7\",\"Covariance: 0.91 <br />Pooled SD: 1.98\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: 1.31 <br />Pooled SD: 1.86\",\"Covariance: 0.97 <br />Pooled SD: 2.1\",\"Covariance: -0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.21 <br />Pooled SD: 0.89\",\"Covariance: 0.55 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 3.05\",\"Covariance: 0.36 <br />Pooled SD: 0.97\",\"Covariance: -0.23 <br />Pooled SD: 0.85\",\"Covariance: 0 <br />Pooled SD: 0.38\",\"Covariance: -0.28 <br />Pooled SD: 1.18\",\"Covariance: -0.4 <br />Pooled SD: 0.72\",\"Covariance: 0.34 <br />Pooled SD: 0.86\",\"Covariance: -0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.47 <br />Pooled SD: 1.64\",\"Covariance: 0.66 <br />Pooled SD: 2.35\",\"Covariance: 0.63 <br />Pooled SD: 1.4\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.51\",\"Covariance: 0.1 <br />Pooled SD: 0.99\",\"Covariance: 0.23 <br />Pooled SD: 1.61\",\"Covariance: -0.25 <br />Pooled SD: 2.32\",\"Covariance: 0.45 <br />Pooled SD: 0.6\",\"Covariance: 0.18 <br />Pooled SD: 0.72\",\"Covariance: -0.46 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 1.47\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: 0.53 <br />Pooled SD: 0.74\",\"Covariance: -0.18 <br />Pooled SD: 0.4\",\"Covariance: 0.01 <br />Pooled SD: 0.62\",\"Covariance: 0.01 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 0.85\",\"Covariance: -0.44 <br />Pooled SD: 0.68\",\"Covariance: 0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.78 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.65\",\"Covariance: 0.26 <br />Pooled SD: 0.67\",\"Covariance: 0.17 <br />Pooled SD: 1.68\",\"Covariance: 1.1 <br />Pooled SD: 1.67\",\"Covariance: -0.09 <br />Pooled SD: 1.43\",\"Covariance: -0.52 <br />Pooled SD: 0.82\",\"Covariance: -0.12 <br />Pooled SD: 1.01\",\"Covariance: 0.38 <br />Pooled SD: 1.24\",\"Covariance: 0.64 <br />Pooled SD: 1.69\",\"Covariance: 0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.96\",\"Covariance: 0.07 <br />Pooled SD: 0.81\",\"Covariance: -0.66 <br />Pooled SD: 0.91\",\"Covariance: 0.12 <br />Pooled SD: 1.76\",\"Covariance: 1.45 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 0.72\",\"Covariance: 0.06 <br />Pooled SD: 1.04\",\"Covariance: 0.04 <br />Pooled SD: 1.06\",\"Covariance: 0.7 <br />Pooled SD: 1.99\",\"Covariance: 0.66 <br />Pooled SD: 2.49\",\"Covariance: 0.08 <br />Pooled SD: 0.69\",\"Covariance: -1.54 <br />Pooled SD: 2.17\",\"Covariance: 0.45 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.63\",\"Covariance: 0.01 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.49\",\"Covariance: -0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.3 <br />Pooled SD: 1.57\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: -0.44 <br />Pooled SD: 0.53\",\"Covariance: -0.89 <br />Pooled SD: 2.58\",\"Covariance: 0.64 <br />Pooled SD: 0.7\",\"Covariance: 1.1 <br />Pooled SD: 1.49\",\"Covariance: 0.5 <br />Pooled SD: 1.53\",\"Covariance: 0.32 <br />Pooled SD: 0.69\",\"Covariance: -0.48 <br />Pooled SD: 0.49\",\"Covariance: -0.28 <br />Pooled SD: 0.38\",\"Covariance: 0.44 <br />Pooled SD: 1.06\",\"Covariance: 0 <br />Pooled SD: 0.61\",\"Covariance: -0.02 <br />Pooled SD: 0.44\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: -0.45 <br />Pooled SD: 1.25\",\"Covariance: -0.02 <br />Pooled SD: 0.5\",\"Covariance: -0.82 <br />Pooled SD: 1.19\",\"Covariance: -0.26 <br />Pooled SD: 2.28\",\"Covariance: 0.7 <br />Pooled SD: 0.81\",\"Covariance: 0.37 <br />Pooled SD: 1.59\",\"Covariance: 0.2 <br />Pooled SD: 0.41\",\"Covariance: 1.99 <br />Pooled SD: 2.39\",\"Covariance: -0.07 <br />Pooled SD: 0.23\",\"Covariance: 0.29 <br />Pooled SD: 0.57\",\"Covariance: 1.79 <br />Pooled SD: 2.95\",\"Covariance: -1.05 <br />Pooled SD: 1.48\",\"Covariance: 0.39 <br />Pooled SD: 1.6\",\"Covariance: 0.7 <br />Pooled SD: 1\",\"Covariance: 0.07 <br />Pooled SD: 1.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -1.65 <br />Pooled SD: 2.34\",\"Covariance: 0.34 <br />Pooled SD: 0.87\",\"Covariance: 0.23 <br />Pooled SD: 1.27\",\"Covariance: 0 <br />Pooled SD: 1.66\",\"Covariance: -0.86 <br />Pooled SD: 1.4\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -1.43 <br />Pooled SD: 1.62\",\"Covariance: 0.38 <br />Pooled SD: 1.2\",\"Covariance: 0.44 <br />Pooled SD: 0.65\",\"Covariance: 0.45 <br />Pooled SD: 0.85\",\"Covariance: 1.33 <br />Pooled SD: 2.39\",\"Covariance: 0.16 <br />Pooled SD: 1.21\",\"Covariance: -0.26 <br />Pooled SD: 1.18\",\"Covariance: 1.01 <br />Pooled SD: 1.18\",\"Covariance: 0.12 <br />Pooled SD: 0.93\",\"Covariance: -0.56 <br />Pooled SD: 0.9\",\"Covariance: -0.47 <br />Pooled SD: 0.9\",\"Covariance: -0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.21 <br />Pooled SD: 0.77\",\"Covariance: -0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.8 <br />Pooled SD: 1.31\",\"Covariance: -0.09 <br />Pooled SD: 0.49\",\"Covariance: 0.27 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.13\",\"Covariance: 0.06 <br />Pooled SD: 0.93\",\"Covariance: -0.24 <br />Pooled SD: 0.51\",\"Covariance: 0.67 <br />Pooled SD: 1.15\",\"Covariance: -0.19 <br />Pooled SD: 0.93\"],\"frame\":\"2400\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2500\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7,0.17,-1.1,0.54,0.96,0.46,0.49,0.1,0.2,-0.03,0.45,0.13,0.05,-0.65,-0.3,0.66,-0.46,0.12,-0.16,0.35,-0.77,0.2,-0.57,0.76,0.18,0.11,0.02,-0.28,-0.62,-0.65,-0.12,0.32,-0.48,0.38,0.91,-0.69,-0.6,0.09,1.15,-0.57,0.05,0.3,-0.07,0.28,-0.01,-0.03,0.95,0.83,-0.97,0.04,-0.58,-0.96,0.23,0.81,-0.11,-0.54,0.58,-0.39,0.78,0.4,-0.32,-0.38,-0.57,-0.11,-0.08,-0.08,-0.57,0.33,-0.33,0.27,-1.12,1.37,-1.64,-2.13,-0.14,-1.43,0.06,0.13,0.03,0.08,0.22,-0.4,0.12,0.29,-0.93,0.81,0.46,-0.18,0.39,-1.82,0.52,-0.45,0.1,-0.65,-0.2,-0.42,0.25,-0.22,0.12,-0.28,1.16,0.5,0.28,-1.01,0.38,1.33,0.61,0.03,0.75,0.57,-0.1,0.18,0.41,0.54,-0.03,0.61,0.05,0.34,-0.18,0.38,-0.38,0.41,-0.39,-0.26,1.37,-0.34,0.17,0.49,-0.11,-0.15,0.87,0.13,-0.2,0.04,-0.09,0.58,0.82,-0.05,0.35,0.12,-0.02,0.11,0.11,0.2,-0.16,0.06,-0.39,0.58,-0.75,-0.08,0.22,-0.1,-0.26,-0.94,-0.19,0.31,-0.17,1.21,-0.88,0.22,-1.27,0.75,-0.05,0.96,-0.39,0.52,-0.15,0.08,-0.33,0.26,-0.16,-0.86,0.16,-0.55,0.51,0.08,0.07,1.51,0.48,-0.22,0.91,0.63,1.31,0.97,-0.05,-0.21,0.55,0.57,0.36,-0.23,0,-0.28,-0.4,0.34,-0.23,0.47,0.66,0.63,0.1,-0.07,0.1,0.23,-0.25,0.45,0.18,-0.46,-0.35,-0.38,0.53,-0.18,0.01,0.01,0.57,-0.44,0.13,0.78,-0.15,0.26,0.17,1.1,-0.09,-0.52,-0.12,0.38,0.64,0.18,-0.65,0.07,-0.66,0.12,1.45,0.5,0.06,0.04,0.7,0.66,0.08,-1.54,0.45,0.16,0.01,-0.06,-0.27,0.3,0,-0.44,-0.89,0.64,1.1,0.5,0.32,-0.48,-0.28,0.44,0,-0.02,0.13,-0.45,-0.02,-0.82,-0.26,0.7,0.37,0.2,1.99,-0.07,0.29,1.79,-1.05,0.39,0.7,0.07,-0.39,-1.65,0.34,0.23,-0,-0.86,0.27,-1.43,0.38,0.44,0.45,1.33,0.16,-0.26,1.01,0.12,-0.56,-0.47,-0.18,-0.21,-0.62,-0.8,-0.09,0.27,-0.48,0.06,-0.24,0.67,-0.19,-0.8,0.85,-0.19,-0.86,0.79,-0.76,0.22,0.1,-0.74,1,0.3,-0.98,-0.44,-0.19,-0.86,-0.13,0.17,-0.04,0.37,0.23,0.95,-0.88,0.18,0.19,-0.12,0.05,-0.27,0.43,1.16,0.19,0.51,0.05,0.56,-0.08,-3.39,-0.44,-0.93,0.07,-0.42,0.99,0.33,-0.31,0.11,0.33,0.39,-0.85,-0.53,-0.75,1.18,-1.21,0.83,-0.25,-0.74,-0.33,-0.46,1.62,0.16,-0.55,-0.13,-0.14,-0.21,-0.66,0.04,1.08,0.59,-0.02,-1.14,0.54,-0.83,-0.3,0.54,0.73,0.41,0.07,-0.14,0.16,-0.33,-0.32,0.35,-0.41,-0.11,0.32,-0.77,-0.44,-0.08,2.65,-0.38,0.15,-0.49,0.31,0.18,0.18,-0.01,0.16,0.23,-0.21,0.54,-0.37,0.71,-0],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14,1.39,2.11,0.64,1.87,1.81,2.14,0.73,1.17,0.99,0.98,1.73,0.65,1.81,0.77,1.01,1.86,1.58,0.7,0.98,1.55,0.98,1.03,1.13,0.92,0.96,1.17,1.26,1.33,1.35,0.82,2.11,0.87,1.69,1.42,0.97,2.99,2.68,2.32,1.16,0.89,1.21,0.46,1.48,1.39,0.39,2.16,1.26,1.14,0.7,2.74,1.49,0.66,1.46,0.56,0.59,0.82,1.39,1.14,1.33,0.95,0.62,1.05,1.85,1.05,1.51,0.98,1.42,1.14,1.9,1.43,1.65,2.42,2.59,0.94,2.3,0.75,0.99,1.16,1.12,0.75,0.55,0.86,0.93,1.63,1.08,0.67,0.86,0.63,3.11,1.71,1.08,1.13,1.66,1.17,0.74,1.87,1.19,0.4,1.56,1.48,0.71,0.9,1.56,0.74,1.7,2.04,0.94,1.42,1.44,0.49,0.41,0.95,1.05,0.9,1.02,0.73,0.92,2.43,1.37,1.33,1.64,1.02,0.62,1.88,1.68,2.41,1.6,1.51,2.26,2.39,0.25,0.65,0.48,1.5,1.71,1.63,0.75,1.08,0.77,1.06,0.69,0.93,1.41,0.85,1.86,1.11,1.12,1.12,1.71,0.35,1.05,1.53,1.57,0.4,0.9,0.96,2.18,1.88,0.58,2.39,2.15,1.81,1.59,1.71,1.16,0.86,0.95,0.86,1.31,1.03,1.8,1.17,1.9,1.28,0.36,0.98,1.56,1.18,2.7,1.98,1.3,1.86,2.1,0.6,0.89,1.12,3.05,0.97,0.85,0.38,1.18,0.72,0.86,1.07,1.64,2.35,1.4,1.41,0.51,0.99,1.61,2.32,0.6,0.72,0.8,1.47,0.85,0.74,0.4,0.62,1.42,0.85,0.68,0.72,1.06,0.65,0.67,1.68,1.67,1.43,0.82,1.01,1.24,1.69,0.69,1.96,0.81,0.91,1.76,1.62,0.72,1.04,1.06,1.99,2.49,0.69,2.17,1.46,0.63,0.48,0.49,1.21,1.57,0.82,0.53,2.58,0.7,1.49,1.53,0.69,0.49,0.38,1.06,0.61,0.44,1.73,1.25,0.5,1.19,2.28,0.81,1.59,0.41,2.39,0.23,0.57,2.95,1.48,1.6,1,1.45,0.78,2.34,0.87,1.27,1.66,1.4,0.77,1.62,1.2,0.65,0.85,2.39,1.21,1.18,1.18,0.93,0.9,0.9,0.69,0.77,1.15,1.31,0.49,1.36,1.13,0.93,0.51,1.15,0.93,1.25,1.34,1.94,2.03,1.38,1.97,0.58,0.37,1.13,1.74,1.63,1.54,0.73,0.8,1.82,0.74,1.01,0.46,0.56,0.69,1.84,1.32,0.59,0.91,1.27,0.87,0.73,2.73,1.7,0.58,1.72,0.64,1.14,2.25,3.65,1.08,1.64,1.46,1.38,1.1,0.98,2.19,2.18,1.83,0.99,1.7,2.21,0.85,1.55,1.61,0.99,0.49,2.13,1.5,0.99,3.64,0.86,0.93,0.76,1.48,1.22,1.37,1.5,2.4,0.96,2.59,2.22,1.16,2.07,1.19,0.88,1.95,0.61,1.21,0.78,0.51,1.8,1.35,1.82,1.31,1.61,0.65,1.15,1.85,0.44,2.86,0.87,1.06,0.85,1.15,0.81,0.44,0.58,2.39,0.89,0.7,0.84,1.57,1,0.71],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\",\"Covariance: 0.17 <br />Pooled SD: 1.39\",\"Covariance: -1.1 <br />Pooled SD: 2.11\",\"Covariance: 0.54 <br />Pooled SD: 0.64\",\"Covariance: 0.96 <br />Pooled SD: 1.87\",\"Covariance: 0.46 <br />Pooled SD: 1.81\",\"Covariance: 0.49 <br />Pooled SD: 2.14\",\"Covariance: 0.1 <br />Pooled SD: 0.73\",\"Covariance: 0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.03 <br />Pooled SD: 0.99\",\"Covariance: 0.45 <br />Pooled SD: 0.98\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.81\",\"Covariance: -0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.66 <br />Pooled SD: 1.01\",\"Covariance: -0.46 <br />Pooled SD: 1.86\",\"Covariance: 0.12 <br />Pooled SD: 1.58\",\"Covariance: -0.16 <br />Pooled SD: 0.7\",\"Covariance: 0.35 <br />Pooled SD: 0.98\",\"Covariance: -0.77 <br />Pooled SD: 1.55\",\"Covariance: 0.2 <br />Pooled SD: 0.98\",\"Covariance: -0.57 <br />Pooled SD: 1.03\",\"Covariance: 0.76 <br />Pooled SD: 1.13\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.02 <br />Pooled SD: 1.17\",\"Covariance: -0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.33\",\"Covariance: -0.65 <br />Pooled SD: 1.35\",\"Covariance: -0.12 <br />Pooled SD: 0.82\",\"Covariance: 0.32 <br />Pooled SD: 2.11\",\"Covariance: -0.48 <br />Pooled SD: 0.87\",\"Covariance: 0.38 <br />Pooled SD: 1.69\",\"Covariance: 0.91 <br />Pooled SD: 1.42\",\"Covariance: -0.69 <br />Pooled SD: 0.97\",\"Covariance: -0.6 <br />Pooled SD: 2.99\",\"Covariance: 0.09 <br />Pooled SD: 2.68\",\"Covariance: 1.15 <br />Pooled SD: 2.32\",\"Covariance: -0.57 <br />Pooled SD: 1.16\",\"Covariance: 0.05 <br />Pooled SD: 0.89\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: -0.07 <br />Pooled SD: 0.46\",\"Covariance: 0.28 <br />Pooled SD: 1.48\",\"Covariance: -0.01 <br />Pooled SD: 1.39\",\"Covariance: -0.03 <br />Pooled SD: 0.39\",\"Covariance: 0.95 <br />Pooled SD: 2.16\",\"Covariance: 0.83 <br />Pooled SD: 1.26\",\"Covariance: -0.97 <br />Pooled SD: 1.14\",\"Covariance: 0.04 <br />Pooled SD: 0.7\",\"Covariance: -0.58 <br />Pooled SD: 2.74\",\"Covariance: -0.96 <br />Pooled SD: 1.49\",\"Covariance: 0.23 <br />Pooled SD: 0.66\",\"Covariance: 0.81 <br />Pooled SD: 1.46\",\"Covariance: -0.11 <br />Pooled SD: 0.56\",\"Covariance: -0.54 <br />Pooled SD: 0.59\",\"Covariance: 0.58 <br />Pooled SD: 0.82\",\"Covariance: -0.39 <br />Pooled SD: 1.39\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 0.4 <br />Pooled SD: 1.33\",\"Covariance: -0.32 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.57 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 1.05\",\"Covariance: -0.08 <br />Pooled SD: 1.51\",\"Covariance: -0.57 <br />Pooled SD: 0.98\",\"Covariance: 0.33 <br />Pooled SD: 1.42\",\"Covariance: -0.33 <br />Pooled SD: 1.14\",\"Covariance: 0.27 <br />Pooled SD: 1.9\",\"Covariance: -1.12 <br />Pooled SD: 1.43\",\"Covariance: 1.37 <br />Pooled SD: 1.65\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: -2.13 <br />Pooled SD: 2.59\",\"Covariance: -0.14 <br />Pooled SD: 0.94\",\"Covariance: -1.43 <br />Pooled SD: 2.3\",\"Covariance: 0.06 <br />Pooled SD: 0.75\",\"Covariance: 0.13 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 1.16\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.12 <br />Pooled SD: 0.86\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.93 <br />Pooled SD: 1.63\",\"Covariance: 0.81 <br />Pooled SD: 1.08\",\"Covariance: 0.46 <br />Pooled SD: 0.67\",\"Covariance: -0.18 <br />Pooled SD: 0.86\",\"Covariance: 0.39 <br />Pooled SD: 0.63\",\"Covariance: -1.82 <br />Pooled SD: 3.11\",\"Covariance: 0.52 <br />Pooled SD: 1.71\",\"Covariance: -0.45 <br />Pooled SD: 1.08\",\"Covariance: 0.1 <br />Pooled SD: 1.13\",\"Covariance: -0.65 <br />Pooled SD: 1.66\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 0.74\",\"Covariance: 0.25 <br />Pooled SD: 1.87\",\"Covariance: -0.22 <br />Pooled SD: 1.19\",\"Covariance: 0.12 <br />Pooled SD: 0.4\",\"Covariance: -0.28 <br />Pooled SD: 1.56\",\"Covariance: 1.16 <br />Pooled SD: 1.48\",\"Covariance: 0.5 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 0.9\",\"Covariance: -1.01 <br />Pooled SD: 1.56\",\"Covariance: 0.38 <br />Pooled SD: 0.74\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.61 <br />Pooled SD: 2.04\",\"Covariance: 0.03 <br />Pooled SD: 0.94\",\"Covariance: 0.75 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 1.44\",\"Covariance: -0.1 <br />Pooled SD: 0.49\",\"Covariance: 0.18 <br />Pooled SD: 0.41\",\"Covariance: 0.41 <br />Pooled SD: 0.95\",\"Covariance: 0.54 <br />Pooled SD: 1.05\",\"Covariance: -0.03 <br />Pooled SD: 0.9\",\"Covariance: 0.61 <br />Pooled SD: 1.02\",\"Covariance: 0.05 <br />Pooled SD: 0.73\",\"Covariance: 0.34 <br />Pooled SD: 0.92\",\"Covariance: -0.18 <br />Pooled SD: 2.43\",\"Covariance: 0.38 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.33\",\"Covariance: 0.41 <br />Pooled SD: 1.64\",\"Covariance: -0.39 <br />Pooled SD: 1.02\",\"Covariance: -0.26 <br />Pooled SD: 0.62\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.17 <br />Pooled SD: 2.41\",\"Covariance: 0.49 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 2.26\",\"Covariance: 0.87 <br />Pooled SD: 2.39\",\"Covariance: 0.13 <br />Pooled SD: 0.25\",\"Covariance: -0.2 <br />Pooled SD: 0.65\",\"Covariance: 0.04 <br />Pooled SD: 0.48\",\"Covariance: -0.09 <br />Pooled SD: 1.5\",\"Covariance: 0.58 <br />Pooled SD: 1.71\",\"Covariance: 0.82 <br />Pooled SD: 1.63\",\"Covariance: -0.05 <br />Pooled SD: 0.75\",\"Covariance: 0.35 <br />Pooled SD: 1.08\",\"Covariance: 0.12 <br />Pooled SD: 0.77\",\"Covariance: -0.02 <br />Pooled SD: 1.06\",\"Covariance: 0.11 <br />Pooled SD: 0.69\",\"Covariance: 0.11 <br />Pooled SD: 0.93\",\"Covariance: 0.2 <br />Pooled SD: 1.41\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.06 <br />Pooled SD: 1.86\",\"Covariance: -0.39 <br />Pooled SD: 1.11\",\"Covariance: 0.58 <br />Pooled SD: 1.12\",\"Covariance: -0.75 <br />Pooled SD: 1.12\",\"Covariance: -0.08 <br />Pooled SD: 1.71\",\"Covariance: 0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.1 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 1.53\",\"Covariance: -0.94 <br />Pooled SD: 1.57\",\"Covariance: -0.19 <br />Pooled SD: 0.4\",\"Covariance: 0.31 <br />Pooled SD: 0.9\",\"Covariance: -0.17 <br />Pooled SD: 0.96\",\"Covariance: 1.21 <br />Pooled SD: 2.18\",\"Covariance: -0.88 <br />Pooled SD: 1.88\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: -1.27 <br />Pooled SD: 2.39\",\"Covariance: 0.75 <br />Pooled SD: 2.15\",\"Covariance: -0.05 <br />Pooled SD: 1.81\",\"Covariance: 0.96 <br />Pooled SD: 1.59\",\"Covariance: -0.39 <br />Pooled SD: 1.71\",\"Covariance: 0.52 <br />Pooled SD: 1.16\",\"Covariance: -0.15 <br />Pooled SD: 0.86\",\"Covariance: 0.08 <br />Pooled SD: 0.95\",\"Covariance: -0.33 <br />Pooled SD: 0.86\",\"Covariance: 0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.16 <br />Pooled SD: 1.03\",\"Covariance: -0.86 <br />Pooled SD: 1.8\",\"Covariance: 0.16 <br />Pooled SD: 1.17\",\"Covariance: -0.55 <br />Pooled SD: 1.9\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.08 <br />Pooled SD: 0.36\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: 1.51 <br />Pooled SD: 1.56\",\"Covariance: 0.48 <br />Pooled SD: 1.18\",\"Covariance: -0.22 <br />Pooled SD: 2.7\",\"Covariance: 0.91 <br />Pooled SD: 1.98\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: 1.31 <br />Pooled SD: 1.86\",\"Covariance: 0.97 <br />Pooled SD: 2.1\",\"Covariance: -0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.21 <br />Pooled SD: 0.89\",\"Covariance: 0.55 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 3.05\",\"Covariance: 0.36 <br />Pooled SD: 0.97\",\"Covariance: -0.23 <br />Pooled SD: 0.85\",\"Covariance: 0 <br />Pooled SD: 0.38\",\"Covariance: -0.28 <br />Pooled SD: 1.18\",\"Covariance: -0.4 <br />Pooled SD: 0.72\",\"Covariance: 0.34 <br />Pooled SD: 0.86\",\"Covariance: -0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.47 <br />Pooled SD: 1.64\",\"Covariance: 0.66 <br />Pooled SD: 2.35\",\"Covariance: 0.63 <br />Pooled SD: 1.4\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.51\",\"Covariance: 0.1 <br />Pooled SD: 0.99\",\"Covariance: 0.23 <br />Pooled SD: 1.61\",\"Covariance: -0.25 <br />Pooled SD: 2.32\",\"Covariance: 0.45 <br />Pooled SD: 0.6\",\"Covariance: 0.18 <br />Pooled SD: 0.72\",\"Covariance: -0.46 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 1.47\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: 0.53 <br />Pooled SD: 0.74\",\"Covariance: -0.18 <br />Pooled SD: 0.4\",\"Covariance: 0.01 <br />Pooled SD: 0.62\",\"Covariance: 0.01 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 0.85\",\"Covariance: -0.44 <br />Pooled SD: 0.68\",\"Covariance: 0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.78 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.65\",\"Covariance: 0.26 <br />Pooled SD: 0.67\",\"Covariance: 0.17 <br />Pooled SD: 1.68\",\"Covariance: 1.1 <br />Pooled SD: 1.67\",\"Covariance: -0.09 <br />Pooled SD: 1.43\",\"Covariance: -0.52 <br />Pooled SD: 0.82\",\"Covariance: -0.12 <br />Pooled SD: 1.01\",\"Covariance: 0.38 <br />Pooled SD: 1.24\",\"Covariance: 0.64 <br />Pooled SD: 1.69\",\"Covariance: 0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.96\",\"Covariance: 0.07 <br />Pooled SD: 0.81\",\"Covariance: -0.66 <br />Pooled SD: 0.91\",\"Covariance: 0.12 <br />Pooled SD: 1.76\",\"Covariance: 1.45 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 0.72\",\"Covariance: 0.06 <br />Pooled SD: 1.04\",\"Covariance: 0.04 <br />Pooled SD: 1.06\",\"Covariance: 0.7 <br />Pooled SD: 1.99\",\"Covariance: 0.66 <br />Pooled SD: 2.49\",\"Covariance: 0.08 <br />Pooled SD: 0.69\",\"Covariance: -1.54 <br />Pooled SD: 2.17\",\"Covariance: 0.45 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.63\",\"Covariance: 0.01 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.49\",\"Covariance: -0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.3 <br />Pooled SD: 1.57\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: -0.44 <br />Pooled SD: 0.53\",\"Covariance: -0.89 <br />Pooled SD: 2.58\",\"Covariance: 0.64 <br />Pooled SD: 0.7\",\"Covariance: 1.1 <br />Pooled SD: 1.49\",\"Covariance: 0.5 <br />Pooled SD: 1.53\",\"Covariance: 0.32 <br />Pooled SD: 0.69\",\"Covariance: -0.48 <br />Pooled SD: 0.49\",\"Covariance: -0.28 <br />Pooled SD: 0.38\",\"Covariance: 0.44 <br />Pooled SD: 1.06\",\"Covariance: 0 <br />Pooled SD: 0.61\",\"Covariance: -0.02 <br />Pooled SD: 0.44\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: -0.45 <br />Pooled SD: 1.25\",\"Covariance: -0.02 <br />Pooled SD: 0.5\",\"Covariance: -0.82 <br />Pooled SD: 1.19\",\"Covariance: -0.26 <br />Pooled SD: 2.28\",\"Covariance: 0.7 <br />Pooled SD: 0.81\",\"Covariance: 0.37 <br />Pooled SD: 1.59\",\"Covariance: 0.2 <br />Pooled SD: 0.41\",\"Covariance: 1.99 <br />Pooled SD: 2.39\",\"Covariance: -0.07 <br />Pooled SD: 0.23\",\"Covariance: 0.29 <br />Pooled SD: 0.57\",\"Covariance: 1.79 <br />Pooled SD: 2.95\",\"Covariance: -1.05 <br />Pooled SD: 1.48\",\"Covariance: 0.39 <br />Pooled SD: 1.6\",\"Covariance: 0.7 <br />Pooled SD: 1\",\"Covariance: 0.07 <br />Pooled SD: 1.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -1.65 <br />Pooled SD: 2.34\",\"Covariance: 0.34 <br />Pooled SD: 0.87\",\"Covariance: 0.23 <br />Pooled SD: 1.27\",\"Covariance: 0 <br />Pooled SD: 1.66\",\"Covariance: -0.86 <br />Pooled SD: 1.4\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -1.43 <br />Pooled SD: 1.62\",\"Covariance: 0.38 <br />Pooled SD: 1.2\",\"Covariance: 0.44 <br />Pooled SD: 0.65\",\"Covariance: 0.45 <br />Pooled SD: 0.85\",\"Covariance: 1.33 <br />Pooled SD: 2.39\",\"Covariance: 0.16 <br />Pooled SD: 1.21\",\"Covariance: -0.26 <br />Pooled SD: 1.18\",\"Covariance: 1.01 <br />Pooled SD: 1.18\",\"Covariance: 0.12 <br />Pooled SD: 0.93\",\"Covariance: -0.56 <br />Pooled SD: 0.9\",\"Covariance: -0.47 <br />Pooled SD: 0.9\",\"Covariance: -0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.21 <br />Pooled SD: 0.77\",\"Covariance: -0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.8 <br />Pooled SD: 1.31\",\"Covariance: -0.09 <br />Pooled SD: 0.49\",\"Covariance: 0.27 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.13\",\"Covariance: 0.06 <br />Pooled SD: 0.93\",\"Covariance: -0.24 <br />Pooled SD: 0.51\",\"Covariance: 0.67 <br />Pooled SD: 1.15\",\"Covariance: -0.19 <br />Pooled SD: 0.93\",\"Covariance: -0.8 <br />Pooled SD: 1.25\",\"Covariance: 0.85 <br />Pooled SD: 1.34\",\"Covariance: -0.19 <br />Pooled SD: 1.94\",\"Covariance: -0.86 <br />Pooled SD: 2.03\",\"Covariance: 0.79 <br />Pooled SD: 1.38\",\"Covariance: -0.76 <br />Pooled SD: 1.97\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: 0.1 <br />Pooled SD: 0.37\",\"Covariance: -0.74 <br />Pooled SD: 1.13\",\"Covariance: 1 <br />Pooled SD: 1.74\",\"Covariance: 0.3 <br />Pooled SD: 1.63\",\"Covariance: -0.98 <br />Pooled SD: 1.54\",\"Covariance: -0.44 <br />Pooled SD: 0.73\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.86 <br />Pooled SD: 1.82\",\"Covariance: -0.13 <br />Pooled SD: 0.74\",\"Covariance: 0.17 <br />Pooled SD: 1.01\",\"Covariance: -0.04 <br />Pooled SD: 0.46\",\"Covariance: 0.37 <br />Pooled SD: 0.56\",\"Covariance: 0.23 <br />Pooled SD: 0.69\",\"Covariance: 0.95 <br />Pooled SD: 1.84\",\"Covariance: -0.88 <br />Pooled SD: 1.32\",\"Covariance: 0.18 <br />Pooled SD: 0.59\",\"Covariance: 0.19 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.27\",\"Covariance: 0.05 <br />Pooled SD: 0.87\",\"Covariance: -0.27 <br />Pooled SD: 0.73\",\"Covariance: 0.43 <br />Pooled SD: 2.73\",\"Covariance: 1.16 <br />Pooled SD: 1.7\",\"Covariance: 0.19 <br />Pooled SD: 0.58\",\"Covariance: 0.51 <br />Pooled SD: 1.72\",\"Covariance: 0.05 <br />Pooled SD: 0.64\",\"Covariance: 0.56 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 2.25\",\"Covariance: -3.39 <br />Pooled SD: 3.65\",\"Covariance: -0.44 <br />Pooled SD: 1.08\",\"Covariance: -0.93 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.46\",\"Covariance: -0.42 <br />Pooled SD: 1.38\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.33 <br />Pooled SD: 0.98\",\"Covariance: -0.31 <br />Pooled SD: 2.19\",\"Covariance: 0.11 <br />Pooled SD: 2.18\",\"Covariance: 0.33 <br />Pooled SD: 1.83\",\"Covariance: 0.39 <br />Pooled SD: 0.99\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.53 <br />Pooled SD: 2.21\",\"Covariance: -0.75 <br />Pooled SD: 0.85\",\"Covariance: 1.18 <br />Pooled SD: 1.55\",\"Covariance: -1.21 <br />Pooled SD: 1.61\",\"Covariance: 0.83 <br />Pooled SD: 0.99\",\"Covariance: -0.25 <br />Pooled SD: 0.49\",\"Covariance: -0.74 <br />Pooled SD: 2.13\",\"Covariance: -0.33 <br />Pooled SD: 1.5\",\"Covariance: -0.46 <br />Pooled SD: 0.99\",\"Covariance: 1.62 <br />Pooled SD: 3.64\",\"Covariance: 0.16 <br />Pooled SD: 0.86\",\"Covariance: -0.55 <br />Pooled SD: 0.93\",\"Covariance: -0.13 <br />Pooled SD: 0.76\",\"Covariance: -0.14 <br />Pooled SD: 1.48\",\"Covariance: -0.21 <br />Pooled SD: 1.22\",\"Covariance: -0.66 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 1.5\",\"Covariance: 1.08 <br />Pooled SD: 2.4\",\"Covariance: 0.59 <br />Pooled SD: 0.96\",\"Covariance: -0.02 <br />Pooled SD: 2.59\",\"Covariance: -1.14 <br />Pooled SD: 2.22\",\"Covariance: 0.54 <br />Pooled SD: 1.16\",\"Covariance: -0.83 <br />Pooled SD: 2.07\",\"Covariance: -0.3 <br />Pooled SD: 1.19\",\"Covariance: 0.54 <br />Pooled SD: 0.88\",\"Covariance: 0.73 <br />Pooled SD: 1.95\",\"Covariance: 0.41 <br />Pooled SD: 0.61\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.14 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 0.51\",\"Covariance: -0.33 <br />Pooled SD: 1.8\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: 0.35 <br />Pooled SD: 1.82\",\"Covariance: -0.41 <br />Pooled SD: 1.31\",\"Covariance: -0.11 <br />Pooled SD: 1.61\",\"Covariance: 0.32 <br />Pooled SD: 0.65\",\"Covariance: -0.77 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 0.44\",\"Covariance: 2.65 <br />Pooled SD: 2.86\",\"Covariance: -0.38 <br />Pooled SD: 0.87\",\"Covariance: 0.15 <br />Pooled SD: 1.06\",\"Covariance: -0.49 <br />Pooled SD: 0.85\",\"Covariance: 0.31 <br />Pooled SD: 1.15\",\"Covariance: 0.18 <br />Pooled SD: 0.81\",\"Covariance: 0.18 <br />Pooled SD: 0.44\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: 0.16 <br />Pooled SD: 2.39\",\"Covariance: 0.23 <br />Pooled SD: 0.89\",\"Covariance: -0.21 <br />Pooled SD: 0.7\",\"Covariance: 0.54 <br />Pooled SD: 0.84\",\"Covariance: -0.37 <br />Pooled SD: 1.57\",\"Covariance: 0.71 <br />Pooled SD: 1\",\"Covariance: 0 <br />Pooled SD: 0.71\"],\"frame\":\"2500\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2600\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7,0.17,-1.1,0.54,0.96,0.46,0.49,0.1,0.2,-0.03,0.45,0.13,0.05,-0.65,-0.3,0.66,-0.46,0.12,-0.16,0.35,-0.77,0.2,-0.57,0.76,0.18,0.11,0.02,-0.28,-0.62,-0.65,-0.12,0.32,-0.48,0.38,0.91,-0.69,-0.6,0.09,1.15,-0.57,0.05,0.3,-0.07,0.28,-0.01,-0.03,0.95,0.83,-0.97,0.04,-0.58,-0.96,0.23,0.81,-0.11,-0.54,0.58,-0.39,0.78,0.4,-0.32,-0.38,-0.57,-0.11,-0.08,-0.08,-0.57,0.33,-0.33,0.27,-1.12,1.37,-1.64,-2.13,-0.14,-1.43,0.06,0.13,0.03,0.08,0.22,-0.4,0.12,0.29,-0.93,0.81,0.46,-0.18,0.39,-1.82,0.52,-0.45,0.1,-0.65,-0.2,-0.42,0.25,-0.22,0.12,-0.28,1.16,0.5,0.28,-1.01,0.38,1.33,0.61,0.03,0.75,0.57,-0.1,0.18,0.41,0.54,-0.03,0.61,0.05,0.34,-0.18,0.38,-0.38,0.41,-0.39,-0.26,1.37,-0.34,0.17,0.49,-0.11,-0.15,0.87,0.13,-0.2,0.04,-0.09,0.58,0.82,-0.05,0.35,0.12,-0.02,0.11,0.11,0.2,-0.16,0.06,-0.39,0.58,-0.75,-0.08,0.22,-0.1,-0.26,-0.94,-0.19,0.31,-0.17,1.21,-0.88,0.22,-1.27,0.75,-0.05,0.96,-0.39,0.52,-0.15,0.08,-0.33,0.26,-0.16,-0.86,0.16,-0.55,0.51,0.08,0.07,1.51,0.48,-0.22,0.91,0.63,1.31,0.97,-0.05,-0.21,0.55,0.57,0.36,-0.23,0,-0.28,-0.4,0.34,-0.23,0.47,0.66,0.63,0.1,-0.07,0.1,0.23,-0.25,0.45,0.18,-0.46,-0.35,-0.38,0.53,-0.18,0.01,0.01,0.57,-0.44,0.13,0.78,-0.15,0.26,0.17,1.1,-0.09,-0.52,-0.12,0.38,0.64,0.18,-0.65,0.07,-0.66,0.12,1.45,0.5,0.06,0.04,0.7,0.66,0.08,-1.54,0.45,0.16,0.01,-0.06,-0.27,0.3,0,-0.44,-0.89,0.64,1.1,0.5,0.32,-0.48,-0.28,0.44,0,-0.02,0.13,-0.45,-0.02,-0.82,-0.26,0.7,0.37,0.2,1.99,-0.07,0.29,1.79,-1.05,0.39,0.7,0.07,-0.39,-1.65,0.34,0.23,-0,-0.86,0.27,-1.43,0.38,0.44,0.45,1.33,0.16,-0.26,1.01,0.12,-0.56,-0.47,-0.18,-0.21,-0.62,-0.8,-0.09,0.27,-0.48,0.06,-0.24,0.67,-0.19,-0.8,0.85,-0.19,-0.86,0.79,-0.76,0.22,0.1,-0.74,1,0.3,-0.98,-0.44,-0.19,-0.86,-0.13,0.17,-0.04,0.37,0.23,0.95,-0.88,0.18,0.19,-0.12,0.05,-0.27,0.43,1.16,0.19,0.51,0.05,0.56,-0.08,-3.39,-0.44,-0.93,0.07,-0.42,0.99,0.33,-0.31,0.11,0.33,0.39,-0.85,-0.53,-0.75,1.18,-1.21,0.83,-0.25,-0.74,-0.33,-0.46,1.62,0.16,-0.55,-0.13,-0.14,-0.21,-0.66,0.04,1.08,0.59,-0.02,-1.14,0.54,-0.83,-0.3,0.54,0.73,0.41,0.07,-0.14,0.16,-0.33,-0.32,0.35,-0.41,-0.11,0.32,-0.77,-0.44,-0.08,2.65,-0.38,0.15,-0.49,0.31,0.18,0.18,-0.01,0.16,0.23,-0.21,0.54,-0.37,0.71,-0,0.76,0.07,-0.28,-0.15,0.33,-0.49,-0.25,-0.12,-0.66,-0.7,-0.56,-0.12,-0.12,0.06,0.78,-0.35,0.34,0.19,1,-0.17,0.67,-1.53,-0.54,0.8,0.34,-1.59,0.52,-0.1,0.42,-0.86,-0.78,-0.18,0.02,-0.42,-0.01,-0.11,-0.6,0.73,0.48,0.36,-0.47,-0.25,0.28,-0.72,0.25,-0.66,0.43,0.16,-0.31,0.68,-0.41,0.77,-0.05,-0.46,0.61,0.05,-0.67,-2.07,-0.82,-0.85,-0.03,0.76,-0.28,0.79,-0.74,-0.17,-0.1,-0.83,-0.22,0.78,0.97,-0.1,0,-0.16,0.93,0.83,0.77,-0.12,-0.41,0.13,-0.13,0.07,0.34,0.02,-0.55,-0.54,0.28,-0.05,0.48,0.42,0.4,0.37,0.14,-0.74,-1.09,0.19,-0.37,0.3,-0.08,-0.26],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14,1.39,2.11,0.64,1.87,1.81,2.14,0.73,1.17,0.99,0.98,1.73,0.65,1.81,0.77,1.01,1.86,1.58,0.7,0.98,1.55,0.98,1.03,1.13,0.92,0.96,1.17,1.26,1.33,1.35,0.82,2.11,0.87,1.69,1.42,0.97,2.99,2.68,2.32,1.16,0.89,1.21,0.46,1.48,1.39,0.39,2.16,1.26,1.14,0.7,2.74,1.49,0.66,1.46,0.56,0.59,0.82,1.39,1.14,1.33,0.95,0.62,1.05,1.85,1.05,1.51,0.98,1.42,1.14,1.9,1.43,1.65,2.42,2.59,0.94,2.3,0.75,0.99,1.16,1.12,0.75,0.55,0.86,0.93,1.63,1.08,0.67,0.86,0.63,3.11,1.71,1.08,1.13,1.66,1.17,0.74,1.87,1.19,0.4,1.56,1.48,0.71,0.9,1.56,0.74,1.7,2.04,0.94,1.42,1.44,0.49,0.41,0.95,1.05,0.9,1.02,0.73,0.92,2.43,1.37,1.33,1.64,1.02,0.62,1.88,1.68,2.41,1.6,1.51,2.26,2.39,0.25,0.65,0.48,1.5,1.71,1.63,0.75,1.08,0.77,1.06,0.69,0.93,1.41,0.85,1.86,1.11,1.12,1.12,1.71,0.35,1.05,1.53,1.57,0.4,0.9,0.96,2.18,1.88,0.58,2.39,2.15,1.81,1.59,1.71,1.16,0.86,0.95,0.86,1.31,1.03,1.8,1.17,1.9,1.28,0.36,0.98,1.56,1.18,2.7,1.98,1.3,1.86,2.1,0.6,0.89,1.12,3.05,0.97,0.85,0.38,1.18,0.72,0.86,1.07,1.64,2.35,1.4,1.41,0.51,0.99,1.61,2.32,0.6,0.72,0.8,1.47,0.85,0.74,0.4,0.62,1.42,0.85,0.68,0.72,1.06,0.65,0.67,1.68,1.67,1.43,0.82,1.01,1.24,1.69,0.69,1.96,0.81,0.91,1.76,1.62,0.72,1.04,1.06,1.99,2.49,0.69,2.17,1.46,0.63,0.48,0.49,1.21,1.57,0.82,0.53,2.58,0.7,1.49,1.53,0.69,0.49,0.38,1.06,0.61,0.44,1.73,1.25,0.5,1.19,2.28,0.81,1.59,0.41,2.39,0.23,0.57,2.95,1.48,1.6,1,1.45,0.78,2.34,0.87,1.27,1.66,1.4,0.77,1.62,1.2,0.65,0.85,2.39,1.21,1.18,1.18,0.93,0.9,0.9,0.69,0.77,1.15,1.31,0.49,1.36,1.13,0.93,0.51,1.15,0.93,1.25,1.34,1.94,2.03,1.38,1.97,0.58,0.37,1.13,1.74,1.63,1.54,0.73,0.8,1.82,0.74,1.01,0.46,0.56,0.69,1.84,1.32,0.59,0.91,1.27,0.87,0.73,2.73,1.7,0.58,1.72,0.64,1.14,2.25,3.65,1.08,1.64,1.46,1.38,1.1,0.98,2.19,2.18,1.83,0.99,1.7,2.21,0.85,1.55,1.61,0.99,0.49,2.13,1.5,0.99,3.64,0.86,0.93,0.76,1.48,1.22,1.37,1.5,2.4,0.96,2.59,2.22,1.16,2.07,1.19,0.88,1.95,0.61,1.21,0.78,0.51,1.8,1.35,1.82,1.31,1.61,0.65,1.15,1.85,0.44,2.86,0.87,1.06,0.85,1.15,0.81,0.44,0.58,2.39,0.89,0.7,0.84,1.57,1,0.71,1.64,1.21,0.8,1.12,1.23,1.81,1.18,0.39,0.88,1.43,0.67,1.33,0.35,0.88,1.73,0.85,1.44,0.97,1.15,0.47,1.16,1.81,1.32,1.44,0.95,2.18,1.13,0.77,2.03,1.35,1.44,1.18,0.62,1.24,0.58,0.24,1.3,1.02,0.94,0.57,1.22,1.75,1.99,0.99,1.21,1.24,1.39,1.84,0.8,1.14,1.69,1.5,1.17,0.92,2.33,0.48,1.15,3.33,1.12,1.24,2.15,0.77,0.95,1.41,2.43,1.23,1.21,2.01,2.12,1.33,1.22,0.8,1.45,0.57,1.36,1.56,1.42,1.29,1.12,0.91,0.67,1.22,0.69,0.67,0.66,1.02,0.4,1.12,1.47,1.65,2.57,1.07,0.98,1.46,1.45,1.5,1.45,0.83,1.4,0.68],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\",\"Covariance: 0.17 <br />Pooled SD: 1.39\",\"Covariance: -1.1 <br />Pooled SD: 2.11\",\"Covariance: 0.54 <br />Pooled SD: 0.64\",\"Covariance: 0.96 <br />Pooled SD: 1.87\",\"Covariance: 0.46 <br />Pooled SD: 1.81\",\"Covariance: 0.49 <br />Pooled SD: 2.14\",\"Covariance: 0.1 <br />Pooled SD: 0.73\",\"Covariance: 0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.03 <br />Pooled SD: 0.99\",\"Covariance: 0.45 <br />Pooled SD: 0.98\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.81\",\"Covariance: -0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.66 <br />Pooled SD: 1.01\",\"Covariance: -0.46 <br />Pooled SD: 1.86\",\"Covariance: 0.12 <br />Pooled SD: 1.58\",\"Covariance: -0.16 <br />Pooled SD: 0.7\",\"Covariance: 0.35 <br />Pooled SD: 0.98\",\"Covariance: -0.77 <br />Pooled SD: 1.55\",\"Covariance: 0.2 <br />Pooled SD: 0.98\",\"Covariance: -0.57 <br />Pooled SD: 1.03\",\"Covariance: 0.76 <br />Pooled SD: 1.13\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.02 <br />Pooled SD: 1.17\",\"Covariance: -0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.33\",\"Covariance: -0.65 <br />Pooled SD: 1.35\",\"Covariance: -0.12 <br />Pooled SD: 0.82\",\"Covariance: 0.32 <br />Pooled SD: 2.11\",\"Covariance: -0.48 <br />Pooled SD: 0.87\",\"Covariance: 0.38 <br />Pooled SD: 1.69\",\"Covariance: 0.91 <br />Pooled SD: 1.42\",\"Covariance: -0.69 <br />Pooled SD: 0.97\",\"Covariance: -0.6 <br />Pooled SD: 2.99\",\"Covariance: 0.09 <br />Pooled SD: 2.68\",\"Covariance: 1.15 <br />Pooled SD: 2.32\",\"Covariance: -0.57 <br />Pooled SD: 1.16\",\"Covariance: 0.05 <br />Pooled SD: 0.89\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: -0.07 <br />Pooled SD: 0.46\",\"Covariance: 0.28 <br />Pooled SD: 1.48\",\"Covariance: -0.01 <br />Pooled SD: 1.39\",\"Covariance: -0.03 <br />Pooled SD: 0.39\",\"Covariance: 0.95 <br />Pooled SD: 2.16\",\"Covariance: 0.83 <br />Pooled SD: 1.26\",\"Covariance: -0.97 <br />Pooled SD: 1.14\",\"Covariance: 0.04 <br />Pooled SD: 0.7\",\"Covariance: -0.58 <br />Pooled SD: 2.74\",\"Covariance: -0.96 <br />Pooled SD: 1.49\",\"Covariance: 0.23 <br />Pooled SD: 0.66\",\"Covariance: 0.81 <br />Pooled SD: 1.46\",\"Covariance: -0.11 <br />Pooled SD: 0.56\",\"Covariance: -0.54 <br />Pooled SD: 0.59\",\"Covariance: 0.58 <br />Pooled SD: 0.82\",\"Covariance: -0.39 <br />Pooled SD: 1.39\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 0.4 <br />Pooled SD: 1.33\",\"Covariance: -0.32 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.57 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 1.05\",\"Covariance: -0.08 <br />Pooled SD: 1.51\",\"Covariance: -0.57 <br />Pooled SD: 0.98\",\"Covariance: 0.33 <br />Pooled SD: 1.42\",\"Covariance: -0.33 <br />Pooled SD: 1.14\",\"Covariance: 0.27 <br />Pooled SD: 1.9\",\"Covariance: -1.12 <br />Pooled SD: 1.43\",\"Covariance: 1.37 <br />Pooled SD: 1.65\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: -2.13 <br />Pooled SD: 2.59\",\"Covariance: -0.14 <br />Pooled SD: 0.94\",\"Covariance: -1.43 <br />Pooled SD: 2.3\",\"Covariance: 0.06 <br />Pooled SD: 0.75\",\"Covariance: 0.13 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 1.16\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.12 <br />Pooled SD: 0.86\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.93 <br />Pooled SD: 1.63\",\"Covariance: 0.81 <br />Pooled SD: 1.08\",\"Covariance: 0.46 <br />Pooled SD: 0.67\",\"Covariance: -0.18 <br />Pooled SD: 0.86\",\"Covariance: 0.39 <br />Pooled SD: 0.63\",\"Covariance: -1.82 <br />Pooled SD: 3.11\",\"Covariance: 0.52 <br />Pooled SD: 1.71\",\"Covariance: -0.45 <br />Pooled SD: 1.08\",\"Covariance: 0.1 <br />Pooled SD: 1.13\",\"Covariance: -0.65 <br />Pooled SD: 1.66\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 0.74\",\"Covariance: 0.25 <br />Pooled SD: 1.87\",\"Covariance: -0.22 <br />Pooled SD: 1.19\",\"Covariance: 0.12 <br />Pooled SD: 0.4\",\"Covariance: -0.28 <br />Pooled SD: 1.56\",\"Covariance: 1.16 <br />Pooled SD: 1.48\",\"Covariance: 0.5 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 0.9\",\"Covariance: -1.01 <br />Pooled SD: 1.56\",\"Covariance: 0.38 <br />Pooled SD: 0.74\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.61 <br />Pooled SD: 2.04\",\"Covariance: 0.03 <br />Pooled SD: 0.94\",\"Covariance: 0.75 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 1.44\",\"Covariance: -0.1 <br />Pooled SD: 0.49\",\"Covariance: 0.18 <br />Pooled SD: 0.41\",\"Covariance: 0.41 <br />Pooled SD: 0.95\",\"Covariance: 0.54 <br />Pooled SD: 1.05\",\"Covariance: -0.03 <br />Pooled SD: 0.9\",\"Covariance: 0.61 <br />Pooled SD: 1.02\",\"Covariance: 0.05 <br />Pooled SD: 0.73\",\"Covariance: 0.34 <br />Pooled SD: 0.92\",\"Covariance: -0.18 <br />Pooled SD: 2.43\",\"Covariance: 0.38 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.33\",\"Covariance: 0.41 <br />Pooled SD: 1.64\",\"Covariance: -0.39 <br />Pooled SD: 1.02\",\"Covariance: -0.26 <br />Pooled SD: 0.62\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.17 <br />Pooled SD: 2.41\",\"Covariance: 0.49 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 2.26\",\"Covariance: 0.87 <br />Pooled SD: 2.39\",\"Covariance: 0.13 <br />Pooled SD: 0.25\",\"Covariance: -0.2 <br />Pooled SD: 0.65\",\"Covariance: 0.04 <br />Pooled SD: 0.48\",\"Covariance: -0.09 <br />Pooled SD: 1.5\",\"Covariance: 0.58 <br />Pooled SD: 1.71\",\"Covariance: 0.82 <br />Pooled SD: 1.63\",\"Covariance: -0.05 <br />Pooled SD: 0.75\",\"Covariance: 0.35 <br />Pooled SD: 1.08\",\"Covariance: 0.12 <br />Pooled SD: 0.77\",\"Covariance: -0.02 <br />Pooled SD: 1.06\",\"Covariance: 0.11 <br />Pooled SD: 0.69\",\"Covariance: 0.11 <br />Pooled SD: 0.93\",\"Covariance: 0.2 <br />Pooled SD: 1.41\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.06 <br />Pooled SD: 1.86\",\"Covariance: -0.39 <br />Pooled SD: 1.11\",\"Covariance: 0.58 <br />Pooled SD: 1.12\",\"Covariance: -0.75 <br />Pooled SD: 1.12\",\"Covariance: -0.08 <br />Pooled SD: 1.71\",\"Covariance: 0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.1 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 1.53\",\"Covariance: -0.94 <br />Pooled SD: 1.57\",\"Covariance: -0.19 <br />Pooled SD: 0.4\",\"Covariance: 0.31 <br />Pooled SD: 0.9\",\"Covariance: -0.17 <br />Pooled SD: 0.96\",\"Covariance: 1.21 <br />Pooled SD: 2.18\",\"Covariance: -0.88 <br />Pooled SD: 1.88\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: -1.27 <br />Pooled SD: 2.39\",\"Covariance: 0.75 <br />Pooled SD: 2.15\",\"Covariance: -0.05 <br />Pooled SD: 1.81\",\"Covariance: 0.96 <br />Pooled SD: 1.59\",\"Covariance: -0.39 <br />Pooled SD: 1.71\",\"Covariance: 0.52 <br />Pooled SD: 1.16\",\"Covariance: -0.15 <br />Pooled SD: 0.86\",\"Covariance: 0.08 <br />Pooled SD: 0.95\",\"Covariance: -0.33 <br />Pooled SD: 0.86\",\"Covariance: 0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.16 <br />Pooled SD: 1.03\",\"Covariance: -0.86 <br />Pooled SD: 1.8\",\"Covariance: 0.16 <br />Pooled SD: 1.17\",\"Covariance: -0.55 <br />Pooled SD: 1.9\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.08 <br />Pooled SD: 0.36\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: 1.51 <br />Pooled SD: 1.56\",\"Covariance: 0.48 <br />Pooled SD: 1.18\",\"Covariance: -0.22 <br />Pooled SD: 2.7\",\"Covariance: 0.91 <br />Pooled SD: 1.98\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: 1.31 <br />Pooled SD: 1.86\",\"Covariance: 0.97 <br />Pooled SD: 2.1\",\"Covariance: -0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.21 <br />Pooled SD: 0.89\",\"Covariance: 0.55 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 3.05\",\"Covariance: 0.36 <br />Pooled SD: 0.97\",\"Covariance: -0.23 <br />Pooled SD: 0.85\",\"Covariance: 0 <br />Pooled SD: 0.38\",\"Covariance: -0.28 <br />Pooled SD: 1.18\",\"Covariance: -0.4 <br />Pooled SD: 0.72\",\"Covariance: 0.34 <br />Pooled SD: 0.86\",\"Covariance: -0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.47 <br />Pooled SD: 1.64\",\"Covariance: 0.66 <br />Pooled SD: 2.35\",\"Covariance: 0.63 <br />Pooled SD: 1.4\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.51\",\"Covariance: 0.1 <br />Pooled SD: 0.99\",\"Covariance: 0.23 <br />Pooled SD: 1.61\",\"Covariance: -0.25 <br />Pooled SD: 2.32\",\"Covariance: 0.45 <br />Pooled SD: 0.6\",\"Covariance: 0.18 <br />Pooled SD: 0.72\",\"Covariance: -0.46 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 1.47\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: 0.53 <br />Pooled SD: 0.74\",\"Covariance: -0.18 <br />Pooled SD: 0.4\",\"Covariance: 0.01 <br />Pooled SD: 0.62\",\"Covariance: 0.01 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 0.85\",\"Covariance: -0.44 <br />Pooled SD: 0.68\",\"Covariance: 0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.78 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.65\",\"Covariance: 0.26 <br />Pooled SD: 0.67\",\"Covariance: 0.17 <br />Pooled SD: 1.68\",\"Covariance: 1.1 <br />Pooled SD: 1.67\",\"Covariance: -0.09 <br />Pooled SD: 1.43\",\"Covariance: -0.52 <br />Pooled SD: 0.82\",\"Covariance: -0.12 <br />Pooled SD: 1.01\",\"Covariance: 0.38 <br />Pooled SD: 1.24\",\"Covariance: 0.64 <br />Pooled SD: 1.69\",\"Covariance: 0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.96\",\"Covariance: 0.07 <br />Pooled SD: 0.81\",\"Covariance: -0.66 <br />Pooled SD: 0.91\",\"Covariance: 0.12 <br />Pooled SD: 1.76\",\"Covariance: 1.45 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 0.72\",\"Covariance: 0.06 <br />Pooled SD: 1.04\",\"Covariance: 0.04 <br />Pooled SD: 1.06\",\"Covariance: 0.7 <br />Pooled SD: 1.99\",\"Covariance: 0.66 <br />Pooled SD: 2.49\",\"Covariance: 0.08 <br />Pooled SD: 0.69\",\"Covariance: -1.54 <br />Pooled SD: 2.17\",\"Covariance: 0.45 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.63\",\"Covariance: 0.01 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.49\",\"Covariance: -0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.3 <br />Pooled SD: 1.57\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: -0.44 <br />Pooled SD: 0.53\",\"Covariance: -0.89 <br />Pooled SD: 2.58\",\"Covariance: 0.64 <br />Pooled SD: 0.7\",\"Covariance: 1.1 <br />Pooled SD: 1.49\",\"Covariance: 0.5 <br />Pooled SD: 1.53\",\"Covariance: 0.32 <br />Pooled SD: 0.69\",\"Covariance: -0.48 <br />Pooled SD: 0.49\",\"Covariance: -0.28 <br />Pooled SD: 0.38\",\"Covariance: 0.44 <br />Pooled SD: 1.06\",\"Covariance: 0 <br />Pooled SD: 0.61\",\"Covariance: -0.02 <br />Pooled SD: 0.44\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: -0.45 <br />Pooled SD: 1.25\",\"Covariance: -0.02 <br />Pooled SD: 0.5\",\"Covariance: -0.82 <br />Pooled SD: 1.19\",\"Covariance: -0.26 <br />Pooled SD: 2.28\",\"Covariance: 0.7 <br />Pooled SD: 0.81\",\"Covariance: 0.37 <br />Pooled SD: 1.59\",\"Covariance: 0.2 <br />Pooled SD: 0.41\",\"Covariance: 1.99 <br />Pooled SD: 2.39\",\"Covariance: -0.07 <br />Pooled SD: 0.23\",\"Covariance: 0.29 <br />Pooled SD: 0.57\",\"Covariance: 1.79 <br />Pooled SD: 2.95\",\"Covariance: -1.05 <br />Pooled SD: 1.48\",\"Covariance: 0.39 <br />Pooled SD: 1.6\",\"Covariance: 0.7 <br />Pooled SD: 1\",\"Covariance: 0.07 <br />Pooled SD: 1.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -1.65 <br />Pooled SD: 2.34\",\"Covariance: 0.34 <br />Pooled SD: 0.87\",\"Covariance: 0.23 <br />Pooled SD: 1.27\",\"Covariance: 0 <br />Pooled SD: 1.66\",\"Covariance: -0.86 <br />Pooled SD: 1.4\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -1.43 <br />Pooled SD: 1.62\",\"Covariance: 0.38 <br />Pooled SD: 1.2\",\"Covariance: 0.44 <br />Pooled SD: 0.65\",\"Covariance: 0.45 <br />Pooled SD: 0.85\",\"Covariance: 1.33 <br />Pooled SD: 2.39\",\"Covariance: 0.16 <br />Pooled SD: 1.21\",\"Covariance: -0.26 <br />Pooled SD: 1.18\",\"Covariance: 1.01 <br />Pooled SD: 1.18\",\"Covariance: 0.12 <br />Pooled SD: 0.93\",\"Covariance: -0.56 <br />Pooled SD: 0.9\",\"Covariance: -0.47 <br />Pooled SD: 0.9\",\"Covariance: -0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.21 <br />Pooled SD: 0.77\",\"Covariance: -0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.8 <br />Pooled SD: 1.31\",\"Covariance: -0.09 <br />Pooled SD: 0.49\",\"Covariance: 0.27 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.13\",\"Covariance: 0.06 <br />Pooled SD: 0.93\",\"Covariance: -0.24 <br />Pooled SD: 0.51\",\"Covariance: 0.67 <br />Pooled SD: 1.15\",\"Covariance: -0.19 <br />Pooled SD: 0.93\",\"Covariance: -0.8 <br />Pooled SD: 1.25\",\"Covariance: 0.85 <br />Pooled SD: 1.34\",\"Covariance: -0.19 <br />Pooled SD: 1.94\",\"Covariance: -0.86 <br />Pooled SD: 2.03\",\"Covariance: 0.79 <br />Pooled SD: 1.38\",\"Covariance: -0.76 <br />Pooled SD: 1.97\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: 0.1 <br />Pooled SD: 0.37\",\"Covariance: -0.74 <br />Pooled SD: 1.13\",\"Covariance: 1 <br />Pooled SD: 1.74\",\"Covariance: 0.3 <br />Pooled SD: 1.63\",\"Covariance: -0.98 <br />Pooled SD: 1.54\",\"Covariance: -0.44 <br />Pooled SD: 0.73\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.86 <br />Pooled SD: 1.82\",\"Covariance: -0.13 <br />Pooled SD: 0.74\",\"Covariance: 0.17 <br />Pooled SD: 1.01\",\"Covariance: -0.04 <br />Pooled SD: 0.46\",\"Covariance: 0.37 <br />Pooled SD: 0.56\",\"Covariance: 0.23 <br />Pooled SD: 0.69\",\"Covariance: 0.95 <br />Pooled SD: 1.84\",\"Covariance: -0.88 <br />Pooled SD: 1.32\",\"Covariance: 0.18 <br />Pooled SD: 0.59\",\"Covariance: 0.19 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.27\",\"Covariance: 0.05 <br />Pooled SD: 0.87\",\"Covariance: -0.27 <br />Pooled SD: 0.73\",\"Covariance: 0.43 <br />Pooled SD: 2.73\",\"Covariance: 1.16 <br />Pooled SD: 1.7\",\"Covariance: 0.19 <br />Pooled SD: 0.58\",\"Covariance: 0.51 <br />Pooled SD: 1.72\",\"Covariance: 0.05 <br />Pooled SD: 0.64\",\"Covariance: 0.56 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 2.25\",\"Covariance: -3.39 <br />Pooled SD: 3.65\",\"Covariance: -0.44 <br />Pooled SD: 1.08\",\"Covariance: -0.93 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.46\",\"Covariance: -0.42 <br />Pooled SD: 1.38\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.33 <br />Pooled SD: 0.98\",\"Covariance: -0.31 <br />Pooled SD: 2.19\",\"Covariance: 0.11 <br />Pooled SD: 2.18\",\"Covariance: 0.33 <br />Pooled SD: 1.83\",\"Covariance: 0.39 <br />Pooled SD: 0.99\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.53 <br />Pooled SD: 2.21\",\"Covariance: -0.75 <br />Pooled SD: 0.85\",\"Covariance: 1.18 <br />Pooled SD: 1.55\",\"Covariance: -1.21 <br />Pooled SD: 1.61\",\"Covariance: 0.83 <br />Pooled SD: 0.99\",\"Covariance: -0.25 <br />Pooled SD: 0.49\",\"Covariance: -0.74 <br />Pooled SD: 2.13\",\"Covariance: -0.33 <br />Pooled SD: 1.5\",\"Covariance: -0.46 <br />Pooled SD: 0.99\",\"Covariance: 1.62 <br />Pooled SD: 3.64\",\"Covariance: 0.16 <br />Pooled SD: 0.86\",\"Covariance: -0.55 <br />Pooled SD: 0.93\",\"Covariance: -0.13 <br />Pooled SD: 0.76\",\"Covariance: -0.14 <br />Pooled SD: 1.48\",\"Covariance: -0.21 <br />Pooled SD: 1.22\",\"Covariance: -0.66 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 1.5\",\"Covariance: 1.08 <br />Pooled SD: 2.4\",\"Covariance: 0.59 <br />Pooled SD: 0.96\",\"Covariance: -0.02 <br />Pooled SD: 2.59\",\"Covariance: -1.14 <br />Pooled SD: 2.22\",\"Covariance: 0.54 <br />Pooled SD: 1.16\",\"Covariance: -0.83 <br />Pooled SD: 2.07\",\"Covariance: -0.3 <br />Pooled SD: 1.19\",\"Covariance: 0.54 <br />Pooled SD: 0.88\",\"Covariance: 0.73 <br />Pooled SD: 1.95\",\"Covariance: 0.41 <br />Pooled SD: 0.61\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.14 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 0.51\",\"Covariance: -0.33 <br />Pooled SD: 1.8\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: 0.35 <br />Pooled SD: 1.82\",\"Covariance: -0.41 <br />Pooled SD: 1.31\",\"Covariance: -0.11 <br />Pooled SD: 1.61\",\"Covariance: 0.32 <br />Pooled SD: 0.65\",\"Covariance: -0.77 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 0.44\",\"Covariance: 2.65 <br />Pooled SD: 2.86\",\"Covariance: -0.38 <br />Pooled SD: 0.87\",\"Covariance: 0.15 <br />Pooled SD: 1.06\",\"Covariance: -0.49 <br />Pooled SD: 0.85\",\"Covariance: 0.31 <br />Pooled SD: 1.15\",\"Covariance: 0.18 <br />Pooled SD: 0.81\",\"Covariance: 0.18 <br />Pooled SD: 0.44\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: 0.16 <br />Pooled SD: 2.39\",\"Covariance: 0.23 <br />Pooled SD: 0.89\",\"Covariance: -0.21 <br />Pooled SD: 0.7\",\"Covariance: 0.54 <br />Pooled SD: 0.84\",\"Covariance: -0.37 <br />Pooled SD: 1.57\",\"Covariance: 0.71 <br />Pooled SD: 1\",\"Covariance: 0 <br />Pooled SD: 0.71\",\"Covariance: 0.76 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.28 <br />Pooled SD: 0.8\",\"Covariance: -0.15 <br />Pooled SD: 1.12\",\"Covariance: 0.33 <br />Pooled SD: 1.23\",\"Covariance: -0.49 <br />Pooled SD: 1.81\",\"Covariance: -0.25 <br />Pooled SD: 1.18\",\"Covariance: -0.12 <br />Pooled SD: 0.39\",\"Covariance: -0.66 <br />Pooled SD: 0.88\",\"Covariance: -0.7 <br />Pooled SD: 1.43\",\"Covariance: -0.56 <br />Pooled SD: 0.67\",\"Covariance: -0.12 <br />Pooled SD: 1.33\",\"Covariance: -0.12 <br />Pooled SD: 0.35\",\"Covariance: 0.06 <br />Pooled SD: 0.88\",\"Covariance: 0.78 <br />Pooled SD: 1.73\",\"Covariance: -0.35 <br />Pooled SD: 0.85\",\"Covariance: 0.34 <br />Pooled SD: 1.44\",\"Covariance: 0.19 <br />Pooled SD: 0.97\",\"Covariance: 1 <br />Pooled SD: 1.15\",\"Covariance: -0.17 <br />Pooled SD: 0.47\",\"Covariance: 0.67 <br />Pooled SD: 1.16\",\"Covariance: -1.53 <br />Pooled SD: 1.81\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.8 <br />Pooled SD: 1.44\",\"Covariance: 0.34 <br />Pooled SD: 0.95\",\"Covariance: -1.59 <br />Pooled SD: 2.18\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 0.77\",\"Covariance: 0.42 <br />Pooled SD: 2.03\",\"Covariance: -0.86 <br />Pooled SD: 1.35\",\"Covariance: -0.78 <br />Pooled SD: 1.44\",\"Covariance: -0.18 <br />Pooled SD: 1.18\",\"Covariance: 0.02 <br />Pooled SD: 0.62\",\"Covariance: -0.42 <br />Pooled SD: 1.24\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: -0.11 <br />Pooled SD: 0.24\",\"Covariance: -0.6 <br />Pooled SD: 1.3\",\"Covariance: 0.73 <br />Pooled SD: 1.02\",\"Covariance: 0.48 <br />Pooled SD: 0.94\",\"Covariance: 0.36 <br />Pooled SD: 0.57\",\"Covariance: -0.47 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: 0.28 <br />Pooled SD: 1.99\",\"Covariance: -0.72 <br />Pooled SD: 0.99\",\"Covariance: 0.25 <br />Pooled SD: 1.21\",\"Covariance: -0.66 <br />Pooled SD: 1.24\",\"Covariance: 0.43 <br />Pooled SD: 1.39\",\"Covariance: 0.16 <br />Pooled SD: 1.84\",\"Covariance: -0.31 <br />Pooled SD: 0.8\",\"Covariance: 0.68 <br />Pooled SD: 1.14\",\"Covariance: -0.41 <br />Pooled SD: 1.69\",\"Covariance: 0.77 <br />Pooled SD: 1.5\",\"Covariance: -0.05 <br />Pooled SD: 1.17\",\"Covariance: -0.46 <br />Pooled SD: 0.92\",\"Covariance: 0.61 <br />Pooled SD: 2.33\",\"Covariance: 0.05 <br />Pooled SD: 0.48\",\"Covariance: -0.67 <br />Pooled SD: 1.15\",\"Covariance: -2.07 <br />Pooled SD: 3.33\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: -0.85 <br />Pooled SD: 1.24\",\"Covariance: -0.03 <br />Pooled SD: 2.15\",\"Covariance: 0.76 <br />Pooled SD: 0.77\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: 0.79 <br />Pooled SD: 1.41\",\"Covariance: -0.74 <br />Pooled SD: 2.43\",\"Covariance: -0.17 <br />Pooled SD: 1.23\",\"Covariance: -0.1 <br />Pooled SD: 1.21\",\"Covariance: -0.83 <br />Pooled SD: 2.01\",\"Covariance: -0.22 <br />Pooled SD: 2.12\",\"Covariance: 0.78 <br />Pooled SD: 1.33\",\"Covariance: 0.97 <br />Pooled SD: 1.22\",\"Covariance: -0.1 <br />Pooled SD: 0.8\",\"Covariance: 0 <br />Pooled SD: 1.45\",\"Covariance: -0.16 <br />Pooled SD: 0.57\",\"Covariance: 0.93 <br />Pooled SD: 1.36\",\"Covariance: 0.83 <br />Pooled SD: 1.56\",\"Covariance: 0.77 <br />Pooled SD: 1.42\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.41 <br />Pooled SD: 1.12\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.13 <br />Pooled SD: 0.67\",\"Covariance: 0.07 <br />Pooled SD: 1.22\",\"Covariance: 0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.55 <br />Pooled SD: 0.66\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.12\",\"Covariance: 0.48 <br />Pooled SD: 1.47\",\"Covariance: 0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.4 <br />Pooled SD: 2.57\",\"Covariance: 0.37 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 0.98\",\"Covariance: -0.74 <br />Pooled SD: 1.46\",\"Covariance: -1.09 <br />Pooled SD: 1.45\",\"Covariance: 0.19 <br />Pooled SD: 1.5\",\"Covariance: -0.37 <br />Pooled SD: 1.45\",\"Covariance: 0.3 <br />Pooled SD: 0.83\",\"Covariance: -0.08 <br />Pooled SD: 1.4\",\"Covariance: -0.26 <br />Pooled SD: 0.68\"],\"frame\":\"2600\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2700\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7,0.17,-1.1,0.54,0.96,0.46,0.49,0.1,0.2,-0.03,0.45,0.13,0.05,-0.65,-0.3,0.66,-0.46,0.12,-0.16,0.35,-0.77,0.2,-0.57,0.76,0.18,0.11,0.02,-0.28,-0.62,-0.65,-0.12,0.32,-0.48,0.38,0.91,-0.69,-0.6,0.09,1.15,-0.57,0.05,0.3,-0.07,0.28,-0.01,-0.03,0.95,0.83,-0.97,0.04,-0.58,-0.96,0.23,0.81,-0.11,-0.54,0.58,-0.39,0.78,0.4,-0.32,-0.38,-0.57,-0.11,-0.08,-0.08,-0.57,0.33,-0.33,0.27,-1.12,1.37,-1.64,-2.13,-0.14,-1.43,0.06,0.13,0.03,0.08,0.22,-0.4,0.12,0.29,-0.93,0.81,0.46,-0.18,0.39,-1.82,0.52,-0.45,0.1,-0.65,-0.2,-0.42,0.25,-0.22,0.12,-0.28,1.16,0.5,0.28,-1.01,0.38,1.33,0.61,0.03,0.75,0.57,-0.1,0.18,0.41,0.54,-0.03,0.61,0.05,0.34,-0.18,0.38,-0.38,0.41,-0.39,-0.26,1.37,-0.34,0.17,0.49,-0.11,-0.15,0.87,0.13,-0.2,0.04,-0.09,0.58,0.82,-0.05,0.35,0.12,-0.02,0.11,0.11,0.2,-0.16,0.06,-0.39,0.58,-0.75,-0.08,0.22,-0.1,-0.26,-0.94,-0.19,0.31,-0.17,1.21,-0.88,0.22,-1.27,0.75,-0.05,0.96,-0.39,0.52,-0.15,0.08,-0.33,0.26,-0.16,-0.86,0.16,-0.55,0.51,0.08,0.07,1.51,0.48,-0.22,0.91,0.63,1.31,0.97,-0.05,-0.21,0.55,0.57,0.36,-0.23,0,-0.28,-0.4,0.34,-0.23,0.47,0.66,0.63,0.1,-0.07,0.1,0.23,-0.25,0.45,0.18,-0.46,-0.35,-0.38,0.53,-0.18,0.01,0.01,0.57,-0.44,0.13,0.78,-0.15,0.26,0.17,1.1,-0.09,-0.52,-0.12,0.38,0.64,0.18,-0.65,0.07,-0.66,0.12,1.45,0.5,0.06,0.04,0.7,0.66,0.08,-1.54,0.45,0.16,0.01,-0.06,-0.27,0.3,0,-0.44,-0.89,0.64,1.1,0.5,0.32,-0.48,-0.28,0.44,0,-0.02,0.13,-0.45,-0.02,-0.82,-0.26,0.7,0.37,0.2,1.99,-0.07,0.29,1.79,-1.05,0.39,0.7,0.07,-0.39,-1.65,0.34,0.23,-0,-0.86,0.27,-1.43,0.38,0.44,0.45,1.33,0.16,-0.26,1.01,0.12,-0.56,-0.47,-0.18,-0.21,-0.62,-0.8,-0.09,0.27,-0.48,0.06,-0.24,0.67,-0.19,-0.8,0.85,-0.19,-0.86,0.79,-0.76,0.22,0.1,-0.74,1,0.3,-0.98,-0.44,-0.19,-0.86,-0.13,0.17,-0.04,0.37,0.23,0.95,-0.88,0.18,0.19,-0.12,0.05,-0.27,0.43,1.16,0.19,0.51,0.05,0.56,-0.08,-3.39,-0.44,-0.93,0.07,-0.42,0.99,0.33,-0.31,0.11,0.33,0.39,-0.85,-0.53,-0.75,1.18,-1.21,0.83,-0.25,-0.74,-0.33,-0.46,1.62,0.16,-0.55,-0.13,-0.14,-0.21,-0.66,0.04,1.08,0.59,-0.02,-1.14,0.54,-0.83,-0.3,0.54,0.73,0.41,0.07,-0.14,0.16,-0.33,-0.32,0.35,-0.41,-0.11,0.32,-0.77,-0.44,-0.08,2.65,-0.38,0.15,-0.49,0.31,0.18,0.18,-0.01,0.16,0.23,-0.21,0.54,-0.37,0.71,-0,0.76,0.07,-0.28,-0.15,0.33,-0.49,-0.25,-0.12,-0.66,-0.7,-0.56,-0.12,-0.12,0.06,0.78,-0.35,0.34,0.19,1,-0.17,0.67,-1.53,-0.54,0.8,0.34,-1.59,0.52,-0.1,0.42,-0.86,-0.78,-0.18,0.02,-0.42,-0.01,-0.11,-0.6,0.73,0.48,0.36,-0.47,-0.25,0.28,-0.72,0.25,-0.66,0.43,0.16,-0.31,0.68,-0.41,0.77,-0.05,-0.46,0.61,0.05,-0.67,-2.07,-0.82,-0.85,-0.03,0.76,-0.28,0.79,-0.74,-0.17,-0.1,-0.83,-0.22,0.78,0.97,-0.1,0,-0.16,0.93,0.83,0.77,-0.12,-0.41,0.13,-0.13,0.07,0.34,0.02,-0.55,-0.54,0.28,-0.05,0.48,0.42,0.4,0.37,0.14,-0.74,-1.09,0.19,-0.37,0.3,-0.08,-0.26,0.27,0.13,0.03,0.79,0.04,0.21,-0.35,-0.71,0.25,-0.16,-0.66,-0.08,-0.74,0.13,0.15,0.09,-0.18,-0.45,-0.51,-0.32,-0.63,0.16,-0.33,0.37,1.46,0.48,-0.35,0.54,-0.7,0.8,-0.06,-0.5,0.43,-0.2,0,1.4,-0.53,0.72,-0.54,-0.54,0.52,-0.19,1.18,0.32,-0.87,0.52,-0.02,0.46,-0.43,-0.08,-1,0.87,-0.29,0.57,-0.6,-0.61,0.09,0.49,-0.06,-0.85,-0.18,0.2,0.04,0,0.64,-1.17,-0.08,0.25,-0.68,0.1,-0.44,-1.41,0.65,-0.76,0.84,-0.22,1.48,-0.1,0.58,-0.9,0.2,-1.21,0.35,-0.48,0.37,0.13,0.28,0.49,-0.39,-0.5,-0.17,0.36,0.22,-0.77,-0.13,0.11,-0.06,0.4,0.99,0.57],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14,1.39,2.11,0.64,1.87,1.81,2.14,0.73,1.17,0.99,0.98,1.73,0.65,1.81,0.77,1.01,1.86,1.58,0.7,0.98,1.55,0.98,1.03,1.13,0.92,0.96,1.17,1.26,1.33,1.35,0.82,2.11,0.87,1.69,1.42,0.97,2.99,2.68,2.32,1.16,0.89,1.21,0.46,1.48,1.39,0.39,2.16,1.26,1.14,0.7,2.74,1.49,0.66,1.46,0.56,0.59,0.82,1.39,1.14,1.33,0.95,0.62,1.05,1.85,1.05,1.51,0.98,1.42,1.14,1.9,1.43,1.65,2.42,2.59,0.94,2.3,0.75,0.99,1.16,1.12,0.75,0.55,0.86,0.93,1.63,1.08,0.67,0.86,0.63,3.11,1.71,1.08,1.13,1.66,1.17,0.74,1.87,1.19,0.4,1.56,1.48,0.71,0.9,1.56,0.74,1.7,2.04,0.94,1.42,1.44,0.49,0.41,0.95,1.05,0.9,1.02,0.73,0.92,2.43,1.37,1.33,1.64,1.02,0.62,1.88,1.68,2.41,1.6,1.51,2.26,2.39,0.25,0.65,0.48,1.5,1.71,1.63,0.75,1.08,0.77,1.06,0.69,0.93,1.41,0.85,1.86,1.11,1.12,1.12,1.71,0.35,1.05,1.53,1.57,0.4,0.9,0.96,2.18,1.88,0.58,2.39,2.15,1.81,1.59,1.71,1.16,0.86,0.95,0.86,1.31,1.03,1.8,1.17,1.9,1.28,0.36,0.98,1.56,1.18,2.7,1.98,1.3,1.86,2.1,0.6,0.89,1.12,3.05,0.97,0.85,0.38,1.18,0.72,0.86,1.07,1.64,2.35,1.4,1.41,0.51,0.99,1.61,2.32,0.6,0.72,0.8,1.47,0.85,0.74,0.4,0.62,1.42,0.85,0.68,0.72,1.06,0.65,0.67,1.68,1.67,1.43,0.82,1.01,1.24,1.69,0.69,1.96,0.81,0.91,1.76,1.62,0.72,1.04,1.06,1.99,2.49,0.69,2.17,1.46,0.63,0.48,0.49,1.21,1.57,0.82,0.53,2.58,0.7,1.49,1.53,0.69,0.49,0.38,1.06,0.61,0.44,1.73,1.25,0.5,1.19,2.28,0.81,1.59,0.41,2.39,0.23,0.57,2.95,1.48,1.6,1,1.45,0.78,2.34,0.87,1.27,1.66,1.4,0.77,1.62,1.2,0.65,0.85,2.39,1.21,1.18,1.18,0.93,0.9,0.9,0.69,0.77,1.15,1.31,0.49,1.36,1.13,0.93,0.51,1.15,0.93,1.25,1.34,1.94,2.03,1.38,1.97,0.58,0.37,1.13,1.74,1.63,1.54,0.73,0.8,1.82,0.74,1.01,0.46,0.56,0.69,1.84,1.32,0.59,0.91,1.27,0.87,0.73,2.73,1.7,0.58,1.72,0.64,1.14,2.25,3.65,1.08,1.64,1.46,1.38,1.1,0.98,2.19,2.18,1.83,0.99,1.7,2.21,0.85,1.55,1.61,0.99,0.49,2.13,1.5,0.99,3.64,0.86,0.93,0.76,1.48,1.22,1.37,1.5,2.4,0.96,2.59,2.22,1.16,2.07,1.19,0.88,1.95,0.61,1.21,0.78,0.51,1.8,1.35,1.82,1.31,1.61,0.65,1.15,1.85,0.44,2.86,0.87,1.06,0.85,1.15,0.81,0.44,0.58,2.39,0.89,0.7,0.84,1.57,1,0.71,1.64,1.21,0.8,1.12,1.23,1.81,1.18,0.39,0.88,1.43,0.67,1.33,0.35,0.88,1.73,0.85,1.44,0.97,1.15,0.47,1.16,1.81,1.32,1.44,0.95,2.18,1.13,0.77,2.03,1.35,1.44,1.18,0.62,1.24,0.58,0.24,1.3,1.02,0.94,0.57,1.22,1.75,1.99,0.99,1.21,1.24,1.39,1.84,0.8,1.14,1.69,1.5,1.17,0.92,2.33,0.48,1.15,3.33,1.12,1.24,2.15,0.77,0.95,1.41,2.43,1.23,1.21,2.01,2.12,1.33,1.22,0.8,1.45,0.57,1.36,1.56,1.42,1.29,1.12,0.91,0.67,1.22,0.69,0.67,0.66,1.02,0.4,1.12,1.47,1.65,2.57,1.07,0.98,1.46,1.45,1.5,1.45,0.83,1.4,0.68,1.78,0.24,0.42,2.15,1.23,1.33,0.84,1.11,1.43,0.73,1.15,1.18,2.21,1.22,2.2,0.48,1.46,0.89,1.04,0.52,0.78,2.17,1.79,1.1,1.87,2.23,1.23,1.36,1.06,1.36,1.03,0.81,0.86,1.25,0.86,1.59,0.99,1.23,1.35,1.45,0.88,0.48,1.38,2.23,1.92,1.02,0.56,0.94,1.98,0.22,1.19,2.22,2.18,0.91,2.06,1.92,0.52,0.87,1.73,1.62,0.44,1.51,0.68,0.82,1.44,1.6,0.69,1.44,0.77,1.38,0.78,2.79,1.62,2.06,1.79,1.16,1.89,1.47,2.82,2.01,2.26,2,1.36,1.08,0.93,2.85,0.73,3.45,0.78,2.23,1.15,0.88,0.79,2.21,1.34,1.66,2.59,0.8,1.1,1.72],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38,0.15,0.53,0.07,0.37,0.03,0.16,-0.41,-0.64,0.18,-0.22,-0.57,-0.07,-0.34,0.11,0.07,0.18,-0.13,-0.51,-0.49,-0.63,-0.8,0.07,-0.18,0.33,0.78,0.21,-0.28,0.4,-0.66,0.59,-0.06,-0.61,0.5,-0.16,0,0.88,-0.53,0.59,-0.4,-0.37,0.6,-0.4,0.85,0.14,-0.45,0.51,-0.03,0.49,-0.22,-0.37,-0.84,0.39,-0.14,0.63,-0.29,-0.31,0.18,0.56,-0.04,-0.53,-0.41,0.13,0.06,0,0.44,-0.73,-0.12,0.17,-0.88,0.07,-0.56,-0.5,0.4,-0.37,0.47,-0.19,0.78,-0.07,0.2,-0.45,0.09,-0.6,0.26,-0.44,0.4,0.05,0.39,0.14,-0.49,-0.22,-0.14,0.41,0.28,-0.35,-0.1,0.07,-0.02,0.5,0.9,0.33],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38,0.15,0.53,0.07,0.37,0.03,0.16,-0.41,-0.64,0.18,-0.22,-0.57,-0.07,-0.34,0.11,0.07,0.18,-0.13,-0.51,-0.49,-0.63,-0.8,0.07,-0.18,0.33,0.78,0.21,-0.28,0.4,-0.66,0.59,-0.06,-0.61,0.5,-0.16,0,0.88,-0.53,0.59,-0.4,-0.37,0.6,-0.4,0.85,0.14,-0.45,0.51,-0.03,0.49,-0.22,-0.37,-0.84,0.39,-0.14,0.63,-0.29,-0.31,0.18,0.56,-0.04,-0.53,-0.41,0.13,0.06,0,0.44,-0.73,-0.12,0.17,-0.88,0.07,-0.56,-0.5,0.4,-0.37,0.47,-0.19,0.78,-0.07,0.2,-0.45,0.09,-0.6,0.26,-0.44,0.4,0.05,0.39,0.14,-0.49,-0.22,-0.14,0.41,0.28,-0.35,-0.1,0.07,-0.02,0.5,0.9,0.33]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\",\"Covariance: 0.17 <br />Pooled SD: 1.39\",\"Covariance: -1.1 <br />Pooled SD: 2.11\",\"Covariance: 0.54 <br />Pooled SD: 0.64\",\"Covariance: 0.96 <br />Pooled SD: 1.87\",\"Covariance: 0.46 <br />Pooled SD: 1.81\",\"Covariance: 0.49 <br />Pooled SD: 2.14\",\"Covariance: 0.1 <br />Pooled SD: 0.73\",\"Covariance: 0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.03 <br />Pooled SD: 0.99\",\"Covariance: 0.45 <br />Pooled SD: 0.98\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.81\",\"Covariance: -0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.66 <br />Pooled SD: 1.01\",\"Covariance: -0.46 <br />Pooled SD: 1.86\",\"Covariance: 0.12 <br />Pooled SD: 1.58\",\"Covariance: -0.16 <br />Pooled SD: 0.7\",\"Covariance: 0.35 <br />Pooled SD: 0.98\",\"Covariance: -0.77 <br />Pooled SD: 1.55\",\"Covariance: 0.2 <br />Pooled SD: 0.98\",\"Covariance: -0.57 <br />Pooled SD: 1.03\",\"Covariance: 0.76 <br />Pooled SD: 1.13\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.02 <br />Pooled SD: 1.17\",\"Covariance: -0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.33\",\"Covariance: -0.65 <br />Pooled SD: 1.35\",\"Covariance: -0.12 <br />Pooled SD: 0.82\",\"Covariance: 0.32 <br />Pooled SD: 2.11\",\"Covariance: -0.48 <br />Pooled SD: 0.87\",\"Covariance: 0.38 <br />Pooled SD: 1.69\",\"Covariance: 0.91 <br />Pooled SD: 1.42\",\"Covariance: -0.69 <br />Pooled SD: 0.97\",\"Covariance: -0.6 <br />Pooled SD: 2.99\",\"Covariance: 0.09 <br />Pooled SD: 2.68\",\"Covariance: 1.15 <br />Pooled SD: 2.32\",\"Covariance: -0.57 <br />Pooled SD: 1.16\",\"Covariance: 0.05 <br />Pooled SD: 0.89\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: -0.07 <br />Pooled SD: 0.46\",\"Covariance: 0.28 <br />Pooled SD: 1.48\",\"Covariance: -0.01 <br />Pooled SD: 1.39\",\"Covariance: -0.03 <br />Pooled SD: 0.39\",\"Covariance: 0.95 <br />Pooled SD: 2.16\",\"Covariance: 0.83 <br />Pooled SD: 1.26\",\"Covariance: -0.97 <br />Pooled SD: 1.14\",\"Covariance: 0.04 <br />Pooled SD: 0.7\",\"Covariance: -0.58 <br />Pooled SD: 2.74\",\"Covariance: -0.96 <br />Pooled SD: 1.49\",\"Covariance: 0.23 <br />Pooled SD: 0.66\",\"Covariance: 0.81 <br />Pooled SD: 1.46\",\"Covariance: -0.11 <br />Pooled SD: 0.56\",\"Covariance: -0.54 <br />Pooled SD: 0.59\",\"Covariance: 0.58 <br />Pooled SD: 0.82\",\"Covariance: -0.39 <br />Pooled SD: 1.39\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 0.4 <br />Pooled SD: 1.33\",\"Covariance: -0.32 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.57 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 1.05\",\"Covariance: -0.08 <br />Pooled SD: 1.51\",\"Covariance: -0.57 <br />Pooled SD: 0.98\",\"Covariance: 0.33 <br />Pooled SD: 1.42\",\"Covariance: -0.33 <br />Pooled SD: 1.14\",\"Covariance: 0.27 <br />Pooled SD: 1.9\",\"Covariance: -1.12 <br />Pooled SD: 1.43\",\"Covariance: 1.37 <br />Pooled SD: 1.65\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: -2.13 <br />Pooled SD: 2.59\",\"Covariance: -0.14 <br />Pooled SD: 0.94\",\"Covariance: -1.43 <br />Pooled SD: 2.3\",\"Covariance: 0.06 <br />Pooled SD: 0.75\",\"Covariance: 0.13 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 1.16\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.12 <br />Pooled SD: 0.86\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.93 <br />Pooled SD: 1.63\",\"Covariance: 0.81 <br />Pooled SD: 1.08\",\"Covariance: 0.46 <br />Pooled SD: 0.67\",\"Covariance: -0.18 <br />Pooled SD: 0.86\",\"Covariance: 0.39 <br />Pooled SD: 0.63\",\"Covariance: -1.82 <br />Pooled SD: 3.11\",\"Covariance: 0.52 <br />Pooled SD: 1.71\",\"Covariance: -0.45 <br />Pooled SD: 1.08\",\"Covariance: 0.1 <br />Pooled SD: 1.13\",\"Covariance: -0.65 <br />Pooled SD: 1.66\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 0.74\",\"Covariance: 0.25 <br />Pooled SD: 1.87\",\"Covariance: -0.22 <br />Pooled SD: 1.19\",\"Covariance: 0.12 <br />Pooled SD: 0.4\",\"Covariance: -0.28 <br />Pooled SD: 1.56\",\"Covariance: 1.16 <br />Pooled SD: 1.48\",\"Covariance: 0.5 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 0.9\",\"Covariance: -1.01 <br />Pooled SD: 1.56\",\"Covariance: 0.38 <br />Pooled SD: 0.74\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.61 <br />Pooled SD: 2.04\",\"Covariance: 0.03 <br />Pooled SD: 0.94\",\"Covariance: 0.75 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 1.44\",\"Covariance: -0.1 <br />Pooled SD: 0.49\",\"Covariance: 0.18 <br />Pooled SD: 0.41\",\"Covariance: 0.41 <br />Pooled SD: 0.95\",\"Covariance: 0.54 <br />Pooled SD: 1.05\",\"Covariance: -0.03 <br />Pooled SD: 0.9\",\"Covariance: 0.61 <br />Pooled SD: 1.02\",\"Covariance: 0.05 <br />Pooled SD: 0.73\",\"Covariance: 0.34 <br />Pooled SD: 0.92\",\"Covariance: -0.18 <br />Pooled SD: 2.43\",\"Covariance: 0.38 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.33\",\"Covariance: 0.41 <br />Pooled SD: 1.64\",\"Covariance: -0.39 <br />Pooled SD: 1.02\",\"Covariance: -0.26 <br />Pooled SD: 0.62\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.17 <br />Pooled SD: 2.41\",\"Covariance: 0.49 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 2.26\",\"Covariance: 0.87 <br />Pooled SD: 2.39\",\"Covariance: 0.13 <br />Pooled SD: 0.25\",\"Covariance: -0.2 <br />Pooled SD: 0.65\",\"Covariance: 0.04 <br />Pooled SD: 0.48\",\"Covariance: -0.09 <br />Pooled SD: 1.5\",\"Covariance: 0.58 <br />Pooled SD: 1.71\",\"Covariance: 0.82 <br />Pooled SD: 1.63\",\"Covariance: -0.05 <br />Pooled SD: 0.75\",\"Covariance: 0.35 <br />Pooled SD: 1.08\",\"Covariance: 0.12 <br />Pooled SD: 0.77\",\"Covariance: -0.02 <br />Pooled SD: 1.06\",\"Covariance: 0.11 <br />Pooled SD: 0.69\",\"Covariance: 0.11 <br />Pooled SD: 0.93\",\"Covariance: 0.2 <br />Pooled SD: 1.41\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.06 <br />Pooled SD: 1.86\",\"Covariance: -0.39 <br />Pooled SD: 1.11\",\"Covariance: 0.58 <br />Pooled SD: 1.12\",\"Covariance: -0.75 <br />Pooled SD: 1.12\",\"Covariance: -0.08 <br />Pooled SD: 1.71\",\"Covariance: 0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.1 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 1.53\",\"Covariance: -0.94 <br />Pooled SD: 1.57\",\"Covariance: -0.19 <br />Pooled SD: 0.4\",\"Covariance: 0.31 <br />Pooled SD: 0.9\",\"Covariance: -0.17 <br />Pooled SD: 0.96\",\"Covariance: 1.21 <br />Pooled SD: 2.18\",\"Covariance: -0.88 <br />Pooled SD: 1.88\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: -1.27 <br />Pooled SD: 2.39\",\"Covariance: 0.75 <br />Pooled SD: 2.15\",\"Covariance: -0.05 <br />Pooled SD: 1.81\",\"Covariance: 0.96 <br />Pooled SD: 1.59\",\"Covariance: -0.39 <br />Pooled SD: 1.71\",\"Covariance: 0.52 <br />Pooled SD: 1.16\",\"Covariance: -0.15 <br />Pooled SD: 0.86\",\"Covariance: 0.08 <br />Pooled SD: 0.95\",\"Covariance: -0.33 <br />Pooled SD: 0.86\",\"Covariance: 0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.16 <br />Pooled SD: 1.03\",\"Covariance: -0.86 <br />Pooled SD: 1.8\",\"Covariance: 0.16 <br />Pooled SD: 1.17\",\"Covariance: -0.55 <br />Pooled SD: 1.9\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.08 <br />Pooled SD: 0.36\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: 1.51 <br />Pooled SD: 1.56\",\"Covariance: 0.48 <br />Pooled SD: 1.18\",\"Covariance: -0.22 <br />Pooled SD: 2.7\",\"Covariance: 0.91 <br />Pooled SD: 1.98\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: 1.31 <br />Pooled SD: 1.86\",\"Covariance: 0.97 <br />Pooled SD: 2.1\",\"Covariance: -0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.21 <br />Pooled SD: 0.89\",\"Covariance: 0.55 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 3.05\",\"Covariance: 0.36 <br />Pooled SD: 0.97\",\"Covariance: -0.23 <br />Pooled SD: 0.85\",\"Covariance: 0 <br />Pooled SD: 0.38\",\"Covariance: -0.28 <br />Pooled SD: 1.18\",\"Covariance: -0.4 <br />Pooled SD: 0.72\",\"Covariance: 0.34 <br />Pooled SD: 0.86\",\"Covariance: -0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.47 <br />Pooled SD: 1.64\",\"Covariance: 0.66 <br />Pooled SD: 2.35\",\"Covariance: 0.63 <br />Pooled SD: 1.4\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.51\",\"Covariance: 0.1 <br />Pooled SD: 0.99\",\"Covariance: 0.23 <br />Pooled SD: 1.61\",\"Covariance: -0.25 <br />Pooled SD: 2.32\",\"Covariance: 0.45 <br />Pooled SD: 0.6\",\"Covariance: 0.18 <br />Pooled SD: 0.72\",\"Covariance: -0.46 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 1.47\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: 0.53 <br />Pooled SD: 0.74\",\"Covariance: -0.18 <br />Pooled SD: 0.4\",\"Covariance: 0.01 <br />Pooled SD: 0.62\",\"Covariance: 0.01 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 0.85\",\"Covariance: -0.44 <br />Pooled SD: 0.68\",\"Covariance: 0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.78 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.65\",\"Covariance: 0.26 <br />Pooled SD: 0.67\",\"Covariance: 0.17 <br />Pooled SD: 1.68\",\"Covariance: 1.1 <br />Pooled SD: 1.67\",\"Covariance: -0.09 <br />Pooled SD: 1.43\",\"Covariance: -0.52 <br />Pooled SD: 0.82\",\"Covariance: -0.12 <br />Pooled SD: 1.01\",\"Covariance: 0.38 <br />Pooled SD: 1.24\",\"Covariance: 0.64 <br />Pooled SD: 1.69\",\"Covariance: 0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.96\",\"Covariance: 0.07 <br />Pooled SD: 0.81\",\"Covariance: -0.66 <br />Pooled SD: 0.91\",\"Covariance: 0.12 <br />Pooled SD: 1.76\",\"Covariance: 1.45 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 0.72\",\"Covariance: 0.06 <br />Pooled SD: 1.04\",\"Covariance: 0.04 <br />Pooled SD: 1.06\",\"Covariance: 0.7 <br />Pooled SD: 1.99\",\"Covariance: 0.66 <br />Pooled SD: 2.49\",\"Covariance: 0.08 <br />Pooled SD: 0.69\",\"Covariance: -1.54 <br />Pooled SD: 2.17\",\"Covariance: 0.45 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.63\",\"Covariance: 0.01 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.49\",\"Covariance: -0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.3 <br />Pooled SD: 1.57\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: -0.44 <br />Pooled SD: 0.53\",\"Covariance: -0.89 <br />Pooled SD: 2.58\",\"Covariance: 0.64 <br />Pooled SD: 0.7\",\"Covariance: 1.1 <br />Pooled SD: 1.49\",\"Covariance: 0.5 <br />Pooled SD: 1.53\",\"Covariance: 0.32 <br />Pooled SD: 0.69\",\"Covariance: -0.48 <br />Pooled SD: 0.49\",\"Covariance: -0.28 <br />Pooled SD: 0.38\",\"Covariance: 0.44 <br />Pooled SD: 1.06\",\"Covariance: 0 <br />Pooled SD: 0.61\",\"Covariance: -0.02 <br />Pooled SD: 0.44\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: -0.45 <br />Pooled SD: 1.25\",\"Covariance: -0.02 <br />Pooled SD: 0.5\",\"Covariance: -0.82 <br />Pooled SD: 1.19\",\"Covariance: -0.26 <br />Pooled SD: 2.28\",\"Covariance: 0.7 <br />Pooled SD: 0.81\",\"Covariance: 0.37 <br />Pooled SD: 1.59\",\"Covariance: 0.2 <br />Pooled SD: 0.41\",\"Covariance: 1.99 <br />Pooled SD: 2.39\",\"Covariance: -0.07 <br />Pooled SD: 0.23\",\"Covariance: 0.29 <br />Pooled SD: 0.57\",\"Covariance: 1.79 <br />Pooled SD: 2.95\",\"Covariance: -1.05 <br />Pooled SD: 1.48\",\"Covariance: 0.39 <br />Pooled SD: 1.6\",\"Covariance: 0.7 <br />Pooled SD: 1\",\"Covariance: 0.07 <br />Pooled SD: 1.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -1.65 <br />Pooled SD: 2.34\",\"Covariance: 0.34 <br />Pooled SD: 0.87\",\"Covariance: 0.23 <br />Pooled SD: 1.27\",\"Covariance: 0 <br />Pooled SD: 1.66\",\"Covariance: -0.86 <br />Pooled SD: 1.4\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -1.43 <br />Pooled SD: 1.62\",\"Covariance: 0.38 <br />Pooled SD: 1.2\",\"Covariance: 0.44 <br />Pooled SD: 0.65\",\"Covariance: 0.45 <br />Pooled SD: 0.85\",\"Covariance: 1.33 <br />Pooled SD: 2.39\",\"Covariance: 0.16 <br />Pooled SD: 1.21\",\"Covariance: -0.26 <br />Pooled SD: 1.18\",\"Covariance: 1.01 <br />Pooled SD: 1.18\",\"Covariance: 0.12 <br />Pooled SD: 0.93\",\"Covariance: -0.56 <br />Pooled SD: 0.9\",\"Covariance: -0.47 <br />Pooled SD: 0.9\",\"Covariance: -0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.21 <br />Pooled SD: 0.77\",\"Covariance: -0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.8 <br />Pooled SD: 1.31\",\"Covariance: -0.09 <br />Pooled SD: 0.49\",\"Covariance: 0.27 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.13\",\"Covariance: 0.06 <br />Pooled SD: 0.93\",\"Covariance: -0.24 <br />Pooled SD: 0.51\",\"Covariance: 0.67 <br />Pooled SD: 1.15\",\"Covariance: -0.19 <br />Pooled SD: 0.93\",\"Covariance: -0.8 <br />Pooled SD: 1.25\",\"Covariance: 0.85 <br />Pooled SD: 1.34\",\"Covariance: -0.19 <br />Pooled SD: 1.94\",\"Covariance: -0.86 <br />Pooled SD: 2.03\",\"Covariance: 0.79 <br />Pooled SD: 1.38\",\"Covariance: -0.76 <br />Pooled SD: 1.97\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: 0.1 <br />Pooled SD: 0.37\",\"Covariance: -0.74 <br />Pooled SD: 1.13\",\"Covariance: 1 <br />Pooled SD: 1.74\",\"Covariance: 0.3 <br />Pooled SD: 1.63\",\"Covariance: -0.98 <br />Pooled SD: 1.54\",\"Covariance: -0.44 <br />Pooled SD: 0.73\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.86 <br />Pooled SD: 1.82\",\"Covariance: -0.13 <br />Pooled SD: 0.74\",\"Covariance: 0.17 <br />Pooled SD: 1.01\",\"Covariance: -0.04 <br />Pooled SD: 0.46\",\"Covariance: 0.37 <br />Pooled SD: 0.56\",\"Covariance: 0.23 <br />Pooled SD: 0.69\",\"Covariance: 0.95 <br />Pooled SD: 1.84\",\"Covariance: -0.88 <br />Pooled SD: 1.32\",\"Covariance: 0.18 <br />Pooled SD: 0.59\",\"Covariance: 0.19 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.27\",\"Covariance: 0.05 <br />Pooled SD: 0.87\",\"Covariance: -0.27 <br />Pooled SD: 0.73\",\"Covariance: 0.43 <br />Pooled SD: 2.73\",\"Covariance: 1.16 <br />Pooled SD: 1.7\",\"Covariance: 0.19 <br />Pooled SD: 0.58\",\"Covariance: 0.51 <br />Pooled SD: 1.72\",\"Covariance: 0.05 <br />Pooled SD: 0.64\",\"Covariance: 0.56 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 2.25\",\"Covariance: -3.39 <br />Pooled SD: 3.65\",\"Covariance: -0.44 <br />Pooled SD: 1.08\",\"Covariance: -0.93 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.46\",\"Covariance: -0.42 <br />Pooled SD: 1.38\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.33 <br />Pooled SD: 0.98\",\"Covariance: -0.31 <br />Pooled SD: 2.19\",\"Covariance: 0.11 <br />Pooled SD: 2.18\",\"Covariance: 0.33 <br />Pooled SD: 1.83\",\"Covariance: 0.39 <br />Pooled SD: 0.99\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.53 <br />Pooled SD: 2.21\",\"Covariance: -0.75 <br />Pooled SD: 0.85\",\"Covariance: 1.18 <br />Pooled SD: 1.55\",\"Covariance: -1.21 <br />Pooled SD: 1.61\",\"Covariance: 0.83 <br />Pooled SD: 0.99\",\"Covariance: -0.25 <br />Pooled SD: 0.49\",\"Covariance: -0.74 <br />Pooled SD: 2.13\",\"Covariance: -0.33 <br />Pooled SD: 1.5\",\"Covariance: -0.46 <br />Pooled SD: 0.99\",\"Covariance: 1.62 <br />Pooled SD: 3.64\",\"Covariance: 0.16 <br />Pooled SD: 0.86\",\"Covariance: -0.55 <br />Pooled SD: 0.93\",\"Covariance: -0.13 <br />Pooled SD: 0.76\",\"Covariance: -0.14 <br />Pooled SD: 1.48\",\"Covariance: -0.21 <br />Pooled SD: 1.22\",\"Covariance: -0.66 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 1.5\",\"Covariance: 1.08 <br />Pooled SD: 2.4\",\"Covariance: 0.59 <br />Pooled SD: 0.96\",\"Covariance: -0.02 <br />Pooled SD: 2.59\",\"Covariance: -1.14 <br />Pooled SD: 2.22\",\"Covariance: 0.54 <br />Pooled SD: 1.16\",\"Covariance: -0.83 <br />Pooled SD: 2.07\",\"Covariance: -0.3 <br />Pooled SD: 1.19\",\"Covariance: 0.54 <br />Pooled SD: 0.88\",\"Covariance: 0.73 <br />Pooled SD: 1.95\",\"Covariance: 0.41 <br />Pooled SD: 0.61\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.14 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 0.51\",\"Covariance: -0.33 <br />Pooled SD: 1.8\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: 0.35 <br />Pooled SD: 1.82\",\"Covariance: -0.41 <br />Pooled SD: 1.31\",\"Covariance: -0.11 <br />Pooled SD: 1.61\",\"Covariance: 0.32 <br />Pooled SD: 0.65\",\"Covariance: -0.77 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 0.44\",\"Covariance: 2.65 <br />Pooled SD: 2.86\",\"Covariance: -0.38 <br />Pooled SD: 0.87\",\"Covariance: 0.15 <br />Pooled SD: 1.06\",\"Covariance: -0.49 <br />Pooled SD: 0.85\",\"Covariance: 0.31 <br />Pooled SD: 1.15\",\"Covariance: 0.18 <br />Pooled SD: 0.81\",\"Covariance: 0.18 <br />Pooled SD: 0.44\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: 0.16 <br />Pooled SD: 2.39\",\"Covariance: 0.23 <br />Pooled SD: 0.89\",\"Covariance: -0.21 <br />Pooled SD: 0.7\",\"Covariance: 0.54 <br />Pooled SD: 0.84\",\"Covariance: -0.37 <br />Pooled SD: 1.57\",\"Covariance: 0.71 <br />Pooled SD: 1\",\"Covariance: 0 <br />Pooled SD: 0.71\",\"Covariance: 0.76 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.28 <br />Pooled SD: 0.8\",\"Covariance: -0.15 <br />Pooled SD: 1.12\",\"Covariance: 0.33 <br />Pooled SD: 1.23\",\"Covariance: -0.49 <br />Pooled SD: 1.81\",\"Covariance: -0.25 <br />Pooled SD: 1.18\",\"Covariance: -0.12 <br />Pooled SD: 0.39\",\"Covariance: -0.66 <br />Pooled SD: 0.88\",\"Covariance: -0.7 <br />Pooled SD: 1.43\",\"Covariance: -0.56 <br />Pooled SD: 0.67\",\"Covariance: -0.12 <br />Pooled SD: 1.33\",\"Covariance: -0.12 <br />Pooled SD: 0.35\",\"Covariance: 0.06 <br />Pooled SD: 0.88\",\"Covariance: 0.78 <br />Pooled SD: 1.73\",\"Covariance: -0.35 <br />Pooled SD: 0.85\",\"Covariance: 0.34 <br />Pooled SD: 1.44\",\"Covariance: 0.19 <br />Pooled SD: 0.97\",\"Covariance: 1 <br />Pooled SD: 1.15\",\"Covariance: -0.17 <br />Pooled SD: 0.47\",\"Covariance: 0.67 <br />Pooled SD: 1.16\",\"Covariance: -1.53 <br />Pooled SD: 1.81\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.8 <br />Pooled SD: 1.44\",\"Covariance: 0.34 <br />Pooled SD: 0.95\",\"Covariance: -1.59 <br />Pooled SD: 2.18\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 0.77\",\"Covariance: 0.42 <br />Pooled SD: 2.03\",\"Covariance: -0.86 <br />Pooled SD: 1.35\",\"Covariance: -0.78 <br />Pooled SD: 1.44\",\"Covariance: -0.18 <br />Pooled SD: 1.18\",\"Covariance: 0.02 <br />Pooled SD: 0.62\",\"Covariance: -0.42 <br />Pooled SD: 1.24\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: -0.11 <br />Pooled SD: 0.24\",\"Covariance: -0.6 <br />Pooled SD: 1.3\",\"Covariance: 0.73 <br />Pooled SD: 1.02\",\"Covariance: 0.48 <br />Pooled SD: 0.94\",\"Covariance: 0.36 <br />Pooled SD: 0.57\",\"Covariance: -0.47 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: 0.28 <br />Pooled SD: 1.99\",\"Covariance: -0.72 <br />Pooled SD: 0.99\",\"Covariance: 0.25 <br />Pooled SD: 1.21\",\"Covariance: -0.66 <br />Pooled SD: 1.24\",\"Covariance: 0.43 <br />Pooled SD: 1.39\",\"Covariance: 0.16 <br />Pooled SD: 1.84\",\"Covariance: -0.31 <br />Pooled SD: 0.8\",\"Covariance: 0.68 <br />Pooled SD: 1.14\",\"Covariance: -0.41 <br />Pooled SD: 1.69\",\"Covariance: 0.77 <br />Pooled SD: 1.5\",\"Covariance: -0.05 <br />Pooled SD: 1.17\",\"Covariance: -0.46 <br />Pooled SD: 0.92\",\"Covariance: 0.61 <br />Pooled SD: 2.33\",\"Covariance: 0.05 <br />Pooled SD: 0.48\",\"Covariance: -0.67 <br />Pooled SD: 1.15\",\"Covariance: -2.07 <br />Pooled SD: 3.33\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: -0.85 <br />Pooled SD: 1.24\",\"Covariance: -0.03 <br />Pooled SD: 2.15\",\"Covariance: 0.76 <br />Pooled SD: 0.77\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: 0.79 <br />Pooled SD: 1.41\",\"Covariance: -0.74 <br />Pooled SD: 2.43\",\"Covariance: -0.17 <br />Pooled SD: 1.23\",\"Covariance: -0.1 <br />Pooled SD: 1.21\",\"Covariance: -0.83 <br />Pooled SD: 2.01\",\"Covariance: -0.22 <br />Pooled SD: 2.12\",\"Covariance: 0.78 <br />Pooled SD: 1.33\",\"Covariance: 0.97 <br />Pooled SD: 1.22\",\"Covariance: -0.1 <br />Pooled SD: 0.8\",\"Covariance: 0 <br />Pooled SD: 1.45\",\"Covariance: -0.16 <br />Pooled SD: 0.57\",\"Covariance: 0.93 <br />Pooled SD: 1.36\",\"Covariance: 0.83 <br />Pooled SD: 1.56\",\"Covariance: 0.77 <br />Pooled SD: 1.42\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.41 <br />Pooled SD: 1.12\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.13 <br />Pooled SD: 0.67\",\"Covariance: 0.07 <br />Pooled SD: 1.22\",\"Covariance: 0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.55 <br />Pooled SD: 0.66\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.12\",\"Covariance: 0.48 <br />Pooled SD: 1.47\",\"Covariance: 0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.4 <br />Pooled SD: 2.57\",\"Covariance: 0.37 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 0.98\",\"Covariance: -0.74 <br />Pooled SD: 1.46\",\"Covariance: -1.09 <br />Pooled SD: 1.45\",\"Covariance: 0.19 <br />Pooled SD: 1.5\",\"Covariance: -0.37 <br />Pooled SD: 1.45\",\"Covariance: 0.3 <br />Pooled SD: 0.83\",\"Covariance: -0.08 <br />Pooled SD: 1.4\",\"Covariance: -0.26 <br />Pooled SD: 0.68\",\"Covariance: 0.27 <br />Pooled SD: 1.78\",\"Covariance: 0.13 <br />Pooled SD: 0.24\",\"Covariance: 0.03 <br />Pooled SD: 0.42\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: 0.04 <br />Pooled SD: 1.23\",\"Covariance: 0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.35 <br />Pooled SD: 0.84\",\"Covariance: -0.71 <br />Pooled SD: 1.11\",\"Covariance: 0.25 <br />Pooled SD: 1.43\",\"Covariance: -0.16 <br />Pooled SD: 0.73\",\"Covariance: -0.66 <br />Pooled SD: 1.15\",\"Covariance: -0.08 <br />Pooled SD: 1.18\",\"Covariance: -0.74 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 1.22\",\"Covariance: 0.15 <br />Pooled SD: 2.2\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -0.18 <br />Pooled SD: 1.46\",\"Covariance: -0.45 <br />Pooled SD: 0.89\",\"Covariance: -0.51 <br />Pooled SD: 1.04\",\"Covariance: -0.32 <br />Pooled SD: 0.52\",\"Covariance: -0.63 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 2.17\",\"Covariance: -0.33 <br />Pooled SD: 1.79\",\"Covariance: 0.37 <br />Pooled SD: 1.1\",\"Covariance: 1.46 <br />Pooled SD: 1.87\",\"Covariance: 0.48 <br />Pooled SD: 2.23\",\"Covariance: -0.35 <br />Pooled SD: 1.23\",\"Covariance: 0.54 <br />Pooled SD: 1.36\",\"Covariance: -0.7 <br />Pooled SD: 1.06\",\"Covariance: 0.8 <br />Pooled SD: 1.36\",\"Covariance: -0.06 <br />Pooled SD: 1.03\",\"Covariance: -0.5 <br />Pooled SD: 0.81\",\"Covariance: 0.43 <br />Pooled SD: 0.86\",\"Covariance: -0.2 <br />Pooled SD: 1.25\",\"Covariance: 0 <br />Pooled SD: 0.86\",\"Covariance: 1.4 <br />Pooled SD: 1.59\",\"Covariance: -0.53 <br />Pooled SD: 0.99\",\"Covariance: 0.72 <br />Pooled SD: 1.23\",\"Covariance: -0.54 <br />Pooled SD: 1.35\",\"Covariance: -0.54 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.88\",\"Covariance: -0.19 <br />Pooled SD: 0.48\",\"Covariance: 1.18 <br />Pooled SD: 1.38\",\"Covariance: 0.32 <br />Pooled SD: 2.23\",\"Covariance: -0.87 <br />Pooled SD: 1.92\",\"Covariance: 0.52 <br />Pooled SD: 1.02\",\"Covariance: -0.02 <br />Pooled SD: 0.56\",\"Covariance: 0.46 <br />Pooled SD: 0.94\",\"Covariance: -0.43 <br />Pooled SD: 1.98\",\"Covariance: -0.08 <br />Pooled SD: 0.22\",\"Covariance: -1 <br />Pooled SD: 1.19\",\"Covariance: 0.87 <br />Pooled SD: 2.22\",\"Covariance: -0.29 <br />Pooled SD: 2.18\",\"Covariance: 0.57 <br />Pooled SD: 0.91\",\"Covariance: -0.6 <br />Pooled SD: 2.06\",\"Covariance: -0.61 <br />Pooled SD: 1.92\",\"Covariance: 0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.49 <br />Pooled SD: 0.87\",\"Covariance: -0.06 <br />Pooled SD: 1.73\",\"Covariance: -0.85 <br />Pooled SD: 1.62\",\"Covariance: -0.18 <br />Pooled SD: 0.44\",\"Covariance: 0.2 <br />Pooled SD: 1.51\",\"Covariance: 0.04 <br />Pooled SD: 0.68\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: 0.64 <br />Pooled SD: 1.44\",\"Covariance: -1.17 <br />Pooled SD: 1.6\",\"Covariance: -0.08 <br />Pooled SD: 0.69\",\"Covariance: 0.25 <br />Pooled SD: 1.44\",\"Covariance: -0.68 <br />Pooled SD: 0.77\",\"Covariance: 0.1 <br />Pooled SD: 1.38\",\"Covariance: -0.44 <br />Pooled SD: 0.78\",\"Covariance: -1.41 <br />Pooled SD: 2.79\",\"Covariance: 0.65 <br />Pooled SD: 1.62\",\"Covariance: -0.76 <br />Pooled SD: 2.06\",\"Covariance: 0.84 <br />Pooled SD: 1.79\",\"Covariance: -0.22 <br />Pooled SD: 1.16\",\"Covariance: 1.48 <br />Pooled SD: 1.89\",\"Covariance: -0.1 <br />Pooled SD: 1.47\",\"Covariance: 0.58 <br />Pooled SD: 2.82\",\"Covariance: -0.9 <br />Pooled SD: 2.01\",\"Covariance: 0.2 <br />Pooled SD: 2.26\",\"Covariance: -1.21 <br />Pooled SD: 2\",\"Covariance: 0.35 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.08\",\"Covariance: 0.37 <br />Pooled SD: 0.93\",\"Covariance: 0.13 <br />Pooled SD: 2.85\",\"Covariance: 0.28 <br />Pooled SD: 0.73\",\"Covariance: 0.49 <br />Pooled SD: 3.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -0.5 <br />Pooled SD: 2.23\",\"Covariance: -0.17 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 0.88\",\"Covariance: 0.22 <br />Pooled SD: 0.79\",\"Covariance: -0.77 <br />Pooled SD: 2.21\",\"Covariance: -0.13 <br />Pooled SD: 1.34\",\"Covariance: 0.11 <br />Pooled SD: 1.66\",\"Covariance: -0.06 <br />Pooled SD: 2.59\",\"Covariance: 0.4 <br />Pooled SD: 0.8\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.57 <br />Pooled SD: 1.72\"],\"frame\":\"2700\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2800\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7,0.17,-1.1,0.54,0.96,0.46,0.49,0.1,0.2,-0.03,0.45,0.13,0.05,-0.65,-0.3,0.66,-0.46,0.12,-0.16,0.35,-0.77,0.2,-0.57,0.76,0.18,0.11,0.02,-0.28,-0.62,-0.65,-0.12,0.32,-0.48,0.38,0.91,-0.69,-0.6,0.09,1.15,-0.57,0.05,0.3,-0.07,0.28,-0.01,-0.03,0.95,0.83,-0.97,0.04,-0.58,-0.96,0.23,0.81,-0.11,-0.54,0.58,-0.39,0.78,0.4,-0.32,-0.38,-0.57,-0.11,-0.08,-0.08,-0.57,0.33,-0.33,0.27,-1.12,1.37,-1.64,-2.13,-0.14,-1.43,0.06,0.13,0.03,0.08,0.22,-0.4,0.12,0.29,-0.93,0.81,0.46,-0.18,0.39,-1.82,0.52,-0.45,0.1,-0.65,-0.2,-0.42,0.25,-0.22,0.12,-0.28,1.16,0.5,0.28,-1.01,0.38,1.33,0.61,0.03,0.75,0.57,-0.1,0.18,0.41,0.54,-0.03,0.61,0.05,0.34,-0.18,0.38,-0.38,0.41,-0.39,-0.26,1.37,-0.34,0.17,0.49,-0.11,-0.15,0.87,0.13,-0.2,0.04,-0.09,0.58,0.82,-0.05,0.35,0.12,-0.02,0.11,0.11,0.2,-0.16,0.06,-0.39,0.58,-0.75,-0.08,0.22,-0.1,-0.26,-0.94,-0.19,0.31,-0.17,1.21,-0.88,0.22,-1.27,0.75,-0.05,0.96,-0.39,0.52,-0.15,0.08,-0.33,0.26,-0.16,-0.86,0.16,-0.55,0.51,0.08,0.07,1.51,0.48,-0.22,0.91,0.63,1.31,0.97,-0.05,-0.21,0.55,0.57,0.36,-0.23,0,-0.28,-0.4,0.34,-0.23,0.47,0.66,0.63,0.1,-0.07,0.1,0.23,-0.25,0.45,0.18,-0.46,-0.35,-0.38,0.53,-0.18,0.01,0.01,0.57,-0.44,0.13,0.78,-0.15,0.26,0.17,1.1,-0.09,-0.52,-0.12,0.38,0.64,0.18,-0.65,0.07,-0.66,0.12,1.45,0.5,0.06,0.04,0.7,0.66,0.08,-1.54,0.45,0.16,0.01,-0.06,-0.27,0.3,0,-0.44,-0.89,0.64,1.1,0.5,0.32,-0.48,-0.28,0.44,0,-0.02,0.13,-0.45,-0.02,-0.82,-0.26,0.7,0.37,0.2,1.99,-0.07,0.29,1.79,-1.05,0.39,0.7,0.07,-0.39,-1.65,0.34,0.23,-0,-0.86,0.27,-1.43,0.38,0.44,0.45,1.33,0.16,-0.26,1.01,0.12,-0.56,-0.47,-0.18,-0.21,-0.62,-0.8,-0.09,0.27,-0.48,0.06,-0.24,0.67,-0.19,-0.8,0.85,-0.19,-0.86,0.79,-0.76,0.22,0.1,-0.74,1,0.3,-0.98,-0.44,-0.19,-0.86,-0.13,0.17,-0.04,0.37,0.23,0.95,-0.88,0.18,0.19,-0.12,0.05,-0.27,0.43,1.16,0.19,0.51,0.05,0.56,-0.08,-3.39,-0.44,-0.93,0.07,-0.42,0.99,0.33,-0.31,0.11,0.33,0.39,-0.85,-0.53,-0.75,1.18,-1.21,0.83,-0.25,-0.74,-0.33,-0.46,1.62,0.16,-0.55,-0.13,-0.14,-0.21,-0.66,0.04,1.08,0.59,-0.02,-1.14,0.54,-0.83,-0.3,0.54,0.73,0.41,0.07,-0.14,0.16,-0.33,-0.32,0.35,-0.41,-0.11,0.32,-0.77,-0.44,-0.08,2.65,-0.38,0.15,-0.49,0.31,0.18,0.18,-0.01,0.16,0.23,-0.21,0.54,-0.37,0.71,-0,0.76,0.07,-0.28,-0.15,0.33,-0.49,-0.25,-0.12,-0.66,-0.7,-0.56,-0.12,-0.12,0.06,0.78,-0.35,0.34,0.19,1,-0.17,0.67,-1.53,-0.54,0.8,0.34,-1.59,0.52,-0.1,0.42,-0.86,-0.78,-0.18,0.02,-0.42,-0.01,-0.11,-0.6,0.73,0.48,0.36,-0.47,-0.25,0.28,-0.72,0.25,-0.66,0.43,0.16,-0.31,0.68,-0.41,0.77,-0.05,-0.46,0.61,0.05,-0.67,-2.07,-0.82,-0.85,-0.03,0.76,-0.28,0.79,-0.74,-0.17,-0.1,-0.83,-0.22,0.78,0.97,-0.1,0,-0.16,0.93,0.83,0.77,-0.12,-0.41,0.13,-0.13,0.07,0.34,0.02,-0.55,-0.54,0.28,-0.05,0.48,0.42,0.4,0.37,0.14,-0.74,-1.09,0.19,-0.37,0.3,-0.08,-0.26,0.27,0.13,0.03,0.79,0.04,0.21,-0.35,-0.71,0.25,-0.16,-0.66,-0.08,-0.74,0.13,0.15,0.09,-0.18,-0.45,-0.51,-0.32,-0.63,0.16,-0.33,0.37,1.46,0.48,-0.35,0.54,-0.7,0.8,-0.06,-0.5,0.43,-0.2,0,1.4,-0.53,0.72,-0.54,-0.54,0.52,-0.19,1.18,0.32,-0.87,0.52,-0.02,0.46,-0.43,-0.08,-1,0.87,-0.29,0.57,-0.6,-0.61,0.09,0.49,-0.06,-0.85,-0.18,0.2,0.04,0,0.64,-1.17,-0.08,0.25,-0.68,0.1,-0.44,-1.41,0.65,-0.76,0.84,-0.22,1.48,-0.1,0.58,-0.9,0.2,-1.21,0.35,-0.48,0.37,0.13,0.28,0.49,-0.39,-0.5,-0.17,0.36,0.22,-0.77,-0.13,0.11,-0.06,0.4,0.99,0.57,1.64,-0.21,0.18,0.1,-0.1,0.1,-0.28,0.49,0,-1.68,-0.68,-0.04,0.02,-0.22,0.58,0.29,-1.43,-0.35,-0.55,-0.2,0.54,-0.22,-0.1,1.11,-0.01,-0.43,-0.6,-0.1,0.92,-0.15,-0.32,0.81,0.45,0.51,0.33,0.41,0.31,-0.04,0.05,-0.05,-0.32,-0.71,-0.04,-0.92,-0.52,0.22,0.48,-0.32,-0.46,-1.11,-0.31,0.71,-0.65,0.06,0.67,0.89,0.4,0.27,0.31,-0.32,-0.3,0.76,0.34,-0.02,-0.77,-0.52,-1.27,1.23,1.09,0.53,0.64,0.06,0.04,0.33,-0.21,0.94,-0.62,0.39,0.16,-0.1,0.54,-0.15,0.27,-0.16,-0.21,0.03,0.44,-0.05,-0,-0.64,0.33,0.79,0.43,0.14,0.24,0.31,-0.23,0.17,1.01,-1.18],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14,1.39,2.11,0.64,1.87,1.81,2.14,0.73,1.17,0.99,0.98,1.73,0.65,1.81,0.77,1.01,1.86,1.58,0.7,0.98,1.55,0.98,1.03,1.13,0.92,0.96,1.17,1.26,1.33,1.35,0.82,2.11,0.87,1.69,1.42,0.97,2.99,2.68,2.32,1.16,0.89,1.21,0.46,1.48,1.39,0.39,2.16,1.26,1.14,0.7,2.74,1.49,0.66,1.46,0.56,0.59,0.82,1.39,1.14,1.33,0.95,0.62,1.05,1.85,1.05,1.51,0.98,1.42,1.14,1.9,1.43,1.65,2.42,2.59,0.94,2.3,0.75,0.99,1.16,1.12,0.75,0.55,0.86,0.93,1.63,1.08,0.67,0.86,0.63,3.11,1.71,1.08,1.13,1.66,1.17,0.74,1.87,1.19,0.4,1.56,1.48,0.71,0.9,1.56,0.74,1.7,2.04,0.94,1.42,1.44,0.49,0.41,0.95,1.05,0.9,1.02,0.73,0.92,2.43,1.37,1.33,1.64,1.02,0.62,1.88,1.68,2.41,1.6,1.51,2.26,2.39,0.25,0.65,0.48,1.5,1.71,1.63,0.75,1.08,0.77,1.06,0.69,0.93,1.41,0.85,1.86,1.11,1.12,1.12,1.71,0.35,1.05,1.53,1.57,0.4,0.9,0.96,2.18,1.88,0.58,2.39,2.15,1.81,1.59,1.71,1.16,0.86,0.95,0.86,1.31,1.03,1.8,1.17,1.9,1.28,0.36,0.98,1.56,1.18,2.7,1.98,1.3,1.86,2.1,0.6,0.89,1.12,3.05,0.97,0.85,0.38,1.18,0.72,0.86,1.07,1.64,2.35,1.4,1.41,0.51,0.99,1.61,2.32,0.6,0.72,0.8,1.47,0.85,0.74,0.4,0.62,1.42,0.85,0.68,0.72,1.06,0.65,0.67,1.68,1.67,1.43,0.82,1.01,1.24,1.69,0.69,1.96,0.81,0.91,1.76,1.62,0.72,1.04,1.06,1.99,2.49,0.69,2.17,1.46,0.63,0.48,0.49,1.21,1.57,0.82,0.53,2.58,0.7,1.49,1.53,0.69,0.49,0.38,1.06,0.61,0.44,1.73,1.25,0.5,1.19,2.28,0.81,1.59,0.41,2.39,0.23,0.57,2.95,1.48,1.6,1,1.45,0.78,2.34,0.87,1.27,1.66,1.4,0.77,1.62,1.2,0.65,0.85,2.39,1.21,1.18,1.18,0.93,0.9,0.9,0.69,0.77,1.15,1.31,0.49,1.36,1.13,0.93,0.51,1.15,0.93,1.25,1.34,1.94,2.03,1.38,1.97,0.58,0.37,1.13,1.74,1.63,1.54,0.73,0.8,1.82,0.74,1.01,0.46,0.56,0.69,1.84,1.32,0.59,0.91,1.27,0.87,0.73,2.73,1.7,0.58,1.72,0.64,1.14,2.25,3.65,1.08,1.64,1.46,1.38,1.1,0.98,2.19,2.18,1.83,0.99,1.7,2.21,0.85,1.55,1.61,0.99,0.49,2.13,1.5,0.99,3.64,0.86,0.93,0.76,1.48,1.22,1.37,1.5,2.4,0.96,2.59,2.22,1.16,2.07,1.19,0.88,1.95,0.61,1.21,0.78,0.51,1.8,1.35,1.82,1.31,1.61,0.65,1.15,1.85,0.44,2.86,0.87,1.06,0.85,1.15,0.81,0.44,0.58,2.39,0.89,0.7,0.84,1.57,1,0.71,1.64,1.21,0.8,1.12,1.23,1.81,1.18,0.39,0.88,1.43,0.67,1.33,0.35,0.88,1.73,0.85,1.44,0.97,1.15,0.47,1.16,1.81,1.32,1.44,0.95,2.18,1.13,0.77,2.03,1.35,1.44,1.18,0.62,1.24,0.58,0.24,1.3,1.02,0.94,0.57,1.22,1.75,1.99,0.99,1.21,1.24,1.39,1.84,0.8,1.14,1.69,1.5,1.17,0.92,2.33,0.48,1.15,3.33,1.12,1.24,2.15,0.77,0.95,1.41,2.43,1.23,1.21,2.01,2.12,1.33,1.22,0.8,1.45,0.57,1.36,1.56,1.42,1.29,1.12,0.91,0.67,1.22,0.69,0.67,0.66,1.02,0.4,1.12,1.47,1.65,2.57,1.07,0.98,1.46,1.45,1.5,1.45,0.83,1.4,0.68,1.78,0.24,0.42,2.15,1.23,1.33,0.84,1.11,1.43,0.73,1.15,1.18,2.21,1.22,2.2,0.48,1.46,0.89,1.04,0.52,0.78,2.17,1.79,1.1,1.87,2.23,1.23,1.36,1.06,1.36,1.03,0.81,0.86,1.25,0.86,1.59,0.99,1.23,1.35,1.45,0.88,0.48,1.38,2.23,1.92,1.02,0.56,0.94,1.98,0.22,1.19,2.22,2.18,0.91,2.06,1.92,0.52,0.87,1.73,1.62,0.44,1.51,0.68,0.82,1.44,1.6,0.69,1.44,0.77,1.38,0.78,2.79,1.62,2.06,1.79,1.16,1.89,1.47,2.82,2.01,2.26,2,1.36,1.08,0.93,2.85,0.73,3.45,0.78,2.23,1.15,0.88,0.79,2.21,1.34,1.66,2.59,0.8,1.1,1.72,1.89,1.05,0.99,1.52,0.65,1.49,2.17,0.79,1.09,2.96,1.22,1.7,1.03,0.31,1.41,1.05,1.63,1.94,0.7,1.17,0.83,2.03,1.37,1.63,2.46,1.55,1.09,0.85,1.53,0.57,0.75,1.57,0.93,1.06,1.65,0.89,1.32,1.33,0.25,2.09,1.43,2.1,0.97,1.57,1.03,0.91,1.16,1.52,1.12,2.18,1.24,0.95,1.18,1.14,1.52,1,0.67,1.21,1.34,1.42,1.52,1.35,1.87,1.66,0.87,1.73,2.37,1.65,2.1,1.86,1.71,1.09,1.98,1.25,0.55,1.06,1.53,0.9,0.53,2,1.08,0.58,0.77,1.41,1.05,0.55,1.71,0.53,1.56,0.83,0.76,1.12,0.82,2.04,1.53,1.35,0.57,1.41,1.23,2.03],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38,0.15,0.53,0.07,0.37,0.03,0.16,-0.41,-0.64,0.18,-0.22,-0.57,-0.07,-0.34,0.11,0.07,0.18,-0.13,-0.51,-0.49,-0.63,-0.8,0.07,-0.18,0.33,0.78,0.21,-0.28,0.4,-0.66,0.59,-0.06,-0.61,0.5,-0.16,0,0.88,-0.53,0.59,-0.4,-0.37,0.6,-0.4,0.85,0.14,-0.45,0.51,-0.03,0.49,-0.22,-0.37,-0.84,0.39,-0.14,0.63,-0.29,-0.31,0.18,0.56,-0.04,-0.53,-0.41,0.13,0.06,0,0.44,-0.73,-0.12,0.17,-0.88,0.07,-0.56,-0.5,0.4,-0.37,0.47,-0.19,0.78,-0.07,0.2,-0.45,0.09,-0.6,0.26,-0.44,0.4,0.05,0.39,0.14,-0.49,-0.22,-0.14,0.41,0.28,-0.35,-0.1,0.07,-0.02,0.5,0.9,0.33,0.87,-0.2,0.19,0.07,-0.15,0.06,-0.13,0.62,0,-0.57,-0.56,-0.02,0.02,-0.7,0.41,0.28,-0.88,-0.18,-0.78,-0.17,0.66,-0.11,-0.07,0.68,-0,-0.27,-0.55,-0.12,0.6,-0.26,-0.42,0.51,0.48,0.48,0.2,0.46,0.24,-0.03,0.2,-0.03,-0.23,-0.34,-0.04,-0.59,-0.5,0.24,0.42,-0.21,-0.41,-0.51,-0.25,0.75,-0.55,0.05,0.44,0.89,0.6,0.23,0.23,-0.22,-0.19,0.56,0.18,-0.01,-0.88,-0.3,-0.53,0.75,0.52,0.28,0.38,0.05,0.02,0.26,-0.39,0.88,-0.41,0.43,0.31,-0.05,0.5,-0.26,0.36,-0.11,-0.2,0.05,0.26,-0.1,-0,-0.78,0.44,0.7,0.52,0.07,0.16,0.23,-0.4,0.12,0.83,-0.58],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38,0.15,0.53,0.07,0.37,0.03,0.16,-0.41,-0.64,0.18,-0.22,-0.57,-0.07,-0.34,0.11,0.07,0.18,-0.13,-0.51,-0.49,-0.63,-0.8,0.07,-0.18,0.33,0.78,0.21,-0.28,0.4,-0.66,0.59,-0.06,-0.61,0.5,-0.16,0,0.88,-0.53,0.59,-0.4,-0.37,0.6,-0.4,0.85,0.14,-0.45,0.51,-0.03,0.49,-0.22,-0.37,-0.84,0.39,-0.14,0.63,-0.29,-0.31,0.18,0.56,-0.04,-0.53,-0.41,0.13,0.06,0,0.44,-0.73,-0.12,0.17,-0.88,0.07,-0.56,-0.5,0.4,-0.37,0.47,-0.19,0.78,-0.07,0.2,-0.45,0.09,-0.6,0.26,-0.44,0.4,0.05,0.39,0.14,-0.49,-0.22,-0.14,0.41,0.28,-0.35,-0.1,0.07,-0.02,0.5,0.9,0.33,0.87,-0.2,0.19,0.07,-0.15,0.06,-0.13,0.62,0,-0.57,-0.56,-0.02,0.02,-0.7,0.41,0.28,-0.88,-0.18,-0.78,-0.17,0.66,-0.11,-0.07,0.68,-0,-0.27,-0.55,-0.12,0.6,-0.26,-0.42,0.51,0.48,0.48,0.2,0.46,0.24,-0.03,0.2,-0.03,-0.23,-0.34,-0.04,-0.59,-0.5,0.24,0.42,-0.21,-0.41,-0.51,-0.25,0.75,-0.55,0.05,0.44,0.89,0.6,0.23,0.23,-0.22,-0.19,0.56,0.18,-0.01,-0.88,-0.3,-0.53,0.75,0.52,0.28,0.38,0.05,0.02,0.26,-0.39,0.88,-0.41,0.43,0.31,-0.05,0.5,-0.26,0.36,-0.11,-0.2,0.05,0.26,-0.1,-0,-0.78,0.44,0.7,0.52,0.07,0.16,0.23,-0.4,0.12,0.83,-0.58]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\",\"Covariance: 0.17 <br />Pooled SD: 1.39\",\"Covariance: -1.1 <br />Pooled SD: 2.11\",\"Covariance: 0.54 <br />Pooled SD: 0.64\",\"Covariance: 0.96 <br />Pooled SD: 1.87\",\"Covariance: 0.46 <br />Pooled SD: 1.81\",\"Covariance: 0.49 <br />Pooled SD: 2.14\",\"Covariance: 0.1 <br />Pooled SD: 0.73\",\"Covariance: 0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.03 <br />Pooled SD: 0.99\",\"Covariance: 0.45 <br />Pooled SD: 0.98\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.81\",\"Covariance: -0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.66 <br />Pooled SD: 1.01\",\"Covariance: -0.46 <br />Pooled SD: 1.86\",\"Covariance: 0.12 <br />Pooled SD: 1.58\",\"Covariance: -0.16 <br />Pooled SD: 0.7\",\"Covariance: 0.35 <br />Pooled SD: 0.98\",\"Covariance: -0.77 <br />Pooled SD: 1.55\",\"Covariance: 0.2 <br />Pooled SD: 0.98\",\"Covariance: -0.57 <br />Pooled SD: 1.03\",\"Covariance: 0.76 <br />Pooled SD: 1.13\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.02 <br />Pooled SD: 1.17\",\"Covariance: -0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.33\",\"Covariance: -0.65 <br />Pooled SD: 1.35\",\"Covariance: -0.12 <br />Pooled SD: 0.82\",\"Covariance: 0.32 <br />Pooled SD: 2.11\",\"Covariance: -0.48 <br />Pooled SD: 0.87\",\"Covariance: 0.38 <br />Pooled SD: 1.69\",\"Covariance: 0.91 <br />Pooled SD: 1.42\",\"Covariance: -0.69 <br />Pooled SD: 0.97\",\"Covariance: -0.6 <br />Pooled SD: 2.99\",\"Covariance: 0.09 <br />Pooled SD: 2.68\",\"Covariance: 1.15 <br />Pooled SD: 2.32\",\"Covariance: -0.57 <br />Pooled SD: 1.16\",\"Covariance: 0.05 <br />Pooled SD: 0.89\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: -0.07 <br />Pooled SD: 0.46\",\"Covariance: 0.28 <br />Pooled SD: 1.48\",\"Covariance: -0.01 <br />Pooled SD: 1.39\",\"Covariance: -0.03 <br />Pooled SD: 0.39\",\"Covariance: 0.95 <br />Pooled SD: 2.16\",\"Covariance: 0.83 <br />Pooled SD: 1.26\",\"Covariance: -0.97 <br />Pooled SD: 1.14\",\"Covariance: 0.04 <br />Pooled SD: 0.7\",\"Covariance: -0.58 <br />Pooled SD: 2.74\",\"Covariance: -0.96 <br />Pooled SD: 1.49\",\"Covariance: 0.23 <br />Pooled SD: 0.66\",\"Covariance: 0.81 <br />Pooled SD: 1.46\",\"Covariance: -0.11 <br />Pooled SD: 0.56\",\"Covariance: -0.54 <br />Pooled SD: 0.59\",\"Covariance: 0.58 <br />Pooled SD: 0.82\",\"Covariance: -0.39 <br />Pooled SD: 1.39\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 0.4 <br />Pooled SD: 1.33\",\"Covariance: -0.32 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.57 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 1.05\",\"Covariance: -0.08 <br />Pooled SD: 1.51\",\"Covariance: -0.57 <br />Pooled SD: 0.98\",\"Covariance: 0.33 <br />Pooled SD: 1.42\",\"Covariance: -0.33 <br />Pooled SD: 1.14\",\"Covariance: 0.27 <br />Pooled SD: 1.9\",\"Covariance: -1.12 <br />Pooled SD: 1.43\",\"Covariance: 1.37 <br />Pooled SD: 1.65\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: -2.13 <br />Pooled SD: 2.59\",\"Covariance: -0.14 <br />Pooled SD: 0.94\",\"Covariance: -1.43 <br />Pooled SD: 2.3\",\"Covariance: 0.06 <br />Pooled SD: 0.75\",\"Covariance: 0.13 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 1.16\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.12 <br />Pooled SD: 0.86\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.93 <br />Pooled SD: 1.63\",\"Covariance: 0.81 <br />Pooled SD: 1.08\",\"Covariance: 0.46 <br />Pooled SD: 0.67\",\"Covariance: -0.18 <br />Pooled SD: 0.86\",\"Covariance: 0.39 <br />Pooled SD: 0.63\",\"Covariance: -1.82 <br />Pooled SD: 3.11\",\"Covariance: 0.52 <br />Pooled SD: 1.71\",\"Covariance: -0.45 <br />Pooled SD: 1.08\",\"Covariance: 0.1 <br />Pooled SD: 1.13\",\"Covariance: -0.65 <br />Pooled SD: 1.66\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 0.74\",\"Covariance: 0.25 <br />Pooled SD: 1.87\",\"Covariance: -0.22 <br />Pooled SD: 1.19\",\"Covariance: 0.12 <br />Pooled SD: 0.4\",\"Covariance: -0.28 <br />Pooled SD: 1.56\",\"Covariance: 1.16 <br />Pooled SD: 1.48\",\"Covariance: 0.5 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 0.9\",\"Covariance: -1.01 <br />Pooled SD: 1.56\",\"Covariance: 0.38 <br />Pooled SD: 0.74\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.61 <br />Pooled SD: 2.04\",\"Covariance: 0.03 <br />Pooled SD: 0.94\",\"Covariance: 0.75 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 1.44\",\"Covariance: -0.1 <br />Pooled SD: 0.49\",\"Covariance: 0.18 <br />Pooled SD: 0.41\",\"Covariance: 0.41 <br />Pooled SD: 0.95\",\"Covariance: 0.54 <br />Pooled SD: 1.05\",\"Covariance: -0.03 <br />Pooled SD: 0.9\",\"Covariance: 0.61 <br />Pooled SD: 1.02\",\"Covariance: 0.05 <br />Pooled SD: 0.73\",\"Covariance: 0.34 <br />Pooled SD: 0.92\",\"Covariance: -0.18 <br />Pooled SD: 2.43\",\"Covariance: 0.38 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.33\",\"Covariance: 0.41 <br />Pooled SD: 1.64\",\"Covariance: -0.39 <br />Pooled SD: 1.02\",\"Covariance: -0.26 <br />Pooled SD: 0.62\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.17 <br />Pooled SD: 2.41\",\"Covariance: 0.49 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 2.26\",\"Covariance: 0.87 <br />Pooled SD: 2.39\",\"Covariance: 0.13 <br />Pooled SD: 0.25\",\"Covariance: -0.2 <br />Pooled SD: 0.65\",\"Covariance: 0.04 <br />Pooled SD: 0.48\",\"Covariance: -0.09 <br />Pooled SD: 1.5\",\"Covariance: 0.58 <br />Pooled SD: 1.71\",\"Covariance: 0.82 <br />Pooled SD: 1.63\",\"Covariance: -0.05 <br />Pooled SD: 0.75\",\"Covariance: 0.35 <br />Pooled SD: 1.08\",\"Covariance: 0.12 <br />Pooled SD: 0.77\",\"Covariance: -0.02 <br />Pooled SD: 1.06\",\"Covariance: 0.11 <br />Pooled SD: 0.69\",\"Covariance: 0.11 <br />Pooled SD: 0.93\",\"Covariance: 0.2 <br />Pooled SD: 1.41\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.06 <br />Pooled SD: 1.86\",\"Covariance: -0.39 <br />Pooled SD: 1.11\",\"Covariance: 0.58 <br />Pooled SD: 1.12\",\"Covariance: -0.75 <br />Pooled SD: 1.12\",\"Covariance: -0.08 <br />Pooled SD: 1.71\",\"Covariance: 0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.1 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 1.53\",\"Covariance: -0.94 <br />Pooled SD: 1.57\",\"Covariance: -0.19 <br />Pooled SD: 0.4\",\"Covariance: 0.31 <br />Pooled SD: 0.9\",\"Covariance: -0.17 <br />Pooled SD: 0.96\",\"Covariance: 1.21 <br />Pooled SD: 2.18\",\"Covariance: -0.88 <br />Pooled SD: 1.88\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: -1.27 <br />Pooled SD: 2.39\",\"Covariance: 0.75 <br />Pooled SD: 2.15\",\"Covariance: -0.05 <br />Pooled SD: 1.81\",\"Covariance: 0.96 <br />Pooled SD: 1.59\",\"Covariance: -0.39 <br />Pooled SD: 1.71\",\"Covariance: 0.52 <br />Pooled SD: 1.16\",\"Covariance: -0.15 <br />Pooled SD: 0.86\",\"Covariance: 0.08 <br />Pooled SD: 0.95\",\"Covariance: -0.33 <br />Pooled SD: 0.86\",\"Covariance: 0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.16 <br />Pooled SD: 1.03\",\"Covariance: -0.86 <br />Pooled SD: 1.8\",\"Covariance: 0.16 <br />Pooled SD: 1.17\",\"Covariance: -0.55 <br />Pooled SD: 1.9\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.08 <br />Pooled SD: 0.36\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: 1.51 <br />Pooled SD: 1.56\",\"Covariance: 0.48 <br />Pooled SD: 1.18\",\"Covariance: -0.22 <br />Pooled SD: 2.7\",\"Covariance: 0.91 <br />Pooled SD: 1.98\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: 1.31 <br />Pooled SD: 1.86\",\"Covariance: 0.97 <br />Pooled SD: 2.1\",\"Covariance: -0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.21 <br />Pooled SD: 0.89\",\"Covariance: 0.55 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 3.05\",\"Covariance: 0.36 <br />Pooled SD: 0.97\",\"Covariance: -0.23 <br />Pooled SD: 0.85\",\"Covariance: 0 <br />Pooled SD: 0.38\",\"Covariance: -0.28 <br />Pooled SD: 1.18\",\"Covariance: -0.4 <br />Pooled SD: 0.72\",\"Covariance: 0.34 <br />Pooled SD: 0.86\",\"Covariance: -0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.47 <br />Pooled SD: 1.64\",\"Covariance: 0.66 <br />Pooled SD: 2.35\",\"Covariance: 0.63 <br />Pooled SD: 1.4\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.51\",\"Covariance: 0.1 <br />Pooled SD: 0.99\",\"Covariance: 0.23 <br />Pooled SD: 1.61\",\"Covariance: -0.25 <br />Pooled SD: 2.32\",\"Covariance: 0.45 <br />Pooled SD: 0.6\",\"Covariance: 0.18 <br />Pooled SD: 0.72\",\"Covariance: -0.46 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 1.47\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: 0.53 <br />Pooled SD: 0.74\",\"Covariance: -0.18 <br />Pooled SD: 0.4\",\"Covariance: 0.01 <br />Pooled SD: 0.62\",\"Covariance: 0.01 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 0.85\",\"Covariance: -0.44 <br />Pooled SD: 0.68\",\"Covariance: 0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.78 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.65\",\"Covariance: 0.26 <br />Pooled SD: 0.67\",\"Covariance: 0.17 <br />Pooled SD: 1.68\",\"Covariance: 1.1 <br />Pooled SD: 1.67\",\"Covariance: -0.09 <br />Pooled SD: 1.43\",\"Covariance: -0.52 <br />Pooled SD: 0.82\",\"Covariance: -0.12 <br />Pooled SD: 1.01\",\"Covariance: 0.38 <br />Pooled SD: 1.24\",\"Covariance: 0.64 <br />Pooled SD: 1.69\",\"Covariance: 0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.96\",\"Covariance: 0.07 <br />Pooled SD: 0.81\",\"Covariance: -0.66 <br />Pooled SD: 0.91\",\"Covariance: 0.12 <br />Pooled SD: 1.76\",\"Covariance: 1.45 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 0.72\",\"Covariance: 0.06 <br />Pooled SD: 1.04\",\"Covariance: 0.04 <br />Pooled SD: 1.06\",\"Covariance: 0.7 <br />Pooled SD: 1.99\",\"Covariance: 0.66 <br />Pooled SD: 2.49\",\"Covariance: 0.08 <br />Pooled SD: 0.69\",\"Covariance: -1.54 <br />Pooled SD: 2.17\",\"Covariance: 0.45 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.63\",\"Covariance: 0.01 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.49\",\"Covariance: -0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.3 <br />Pooled SD: 1.57\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: -0.44 <br />Pooled SD: 0.53\",\"Covariance: -0.89 <br />Pooled SD: 2.58\",\"Covariance: 0.64 <br />Pooled SD: 0.7\",\"Covariance: 1.1 <br />Pooled SD: 1.49\",\"Covariance: 0.5 <br />Pooled SD: 1.53\",\"Covariance: 0.32 <br />Pooled SD: 0.69\",\"Covariance: -0.48 <br />Pooled SD: 0.49\",\"Covariance: -0.28 <br />Pooled SD: 0.38\",\"Covariance: 0.44 <br />Pooled SD: 1.06\",\"Covariance: 0 <br />Pooled SD: 0.61\",\"Covariance: -0.02 <br />Pooled SD: 0.44\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: -0.45 <br />Pooled SD: 1.25\",\"Covariance: -0.02 <br />Pooled SD: 0.5\",\"Covariance: -0.82 <br />Pooled SD: 1.19\",\"Covariance: -0.26 <br />Pooled SD: 2.28\",\"Covariance: 0.7 <br />Pooled SD: 0.81\",\"Covariance: 0.37 <br />Pooled SD: 1.59\",\"Covariance: 0.2 <br />Pooled SD: 0.41\",\"Covariance: 1.99 <br />Pooled SD: 2.39\",\"Covariance: -0.07 <br />Pooled SD: 0.23\",\"Covariance: 0.29 <br />Pooled SD: 0.57\",\"Covariance: 1.79 <br />Pooled SD: 2.95\",\"Covariance: -1.05 <br />Pooled SD: 1.48\",\"Covariance: 0.39 <br />Pooled SD: 1.6\",\"Covariance: 0.7 <br />Pooled SD: 1\",\"Covariance: 0.07 <br />Pooled SD: 1.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -1.65 <br />Pooled SD: 2.34\",\"Covariance: 0.34 <br />Pooled SD: 0.87\",\"Covariance: 0.23 <br />Pooled SD: 1.27\",\"Covariance: 0 <br />Pooled SD: 1.66\",\"Covariance: -0.86 <br />Pooled SD: 1.4\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -1.43 <br />Pooled SD: 1.62\",\"Covariance: 0.38 <br />Pooled SD: 1.2\",\"Covariance: 0.44 <br />Pooled SD: 0.65\",\"Covariance: 0.45 <br />Pooled SD: 0.85\",\"Covariance: 1.33 <br />Pooled SD: 2.39\",\"Covariance: 0.16 <br />Pooled SD: 1.21\",\"Covariance: -0.26 <br />Pooled SD: 1.18\",\"Covariance: 1.01 <br />Pooled SD: 1.18\",\"Covariance: 0.12 <br />Pooled SD: 0.93\",\"Covariance: -0.56 <br />Pooled SD: 0.9\",\"Covariance: -0.47 <br />Pooled SD: 0.9\",\"Covariance: -0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.21 <br />Pooled SD: 0.77\",\"Covariance: -0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.8 <br />Pooled SD: 1.31\",\"Covariance: -0.09 <br />Pooled SD: 0.49\",\"Covariance: 0.27 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.13\",\"Covariance: 0.06 <br />Pooled SD: 0.93\",\"Covariance: -0.24 <br />Pooled SD: 0.51\",\"Covariance: 0.67 <br />Pooled SD: 1.15\",\"Covariance: -0.19 <br />Pooled SD: 0.93\",\"Covariance: -0.8 <br />Pooled SD: 1.25\",\"Covariance: 0.85 <br />Pooled SD: 1.34\",\"Covariance: -0.19 <br />Pooled SD: 1.94\",\"Covariance: -0.86 <br />Pooled SD: 2.03\",\"Covariance: 0.79 <br />Pooled SD: 1.38\",\"Covariance: -0.76 <br />Pooled SD: 1.97\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: 0.1 <br />Pooled SD: 0.37\",\"Covariance: -0.74 <br />Pooled SD: 1.13\",\"Covariance: 1 <br />Pooled SD: 1.74\",\"Covariance: 0.3 <br />Pooled SD: 1.63\",\"Covariance: -0.98 <br />Pooled SD: 1.54\",\"Covariance: -0.44 <br />Pooled SD: 0.73\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.86 <br />Pooled SD: 1.82\",\"Covariance: -0.13 <br />Pooled SD: 0.74\",\"Covariance: 0.17 <br />Pooled SD: 1.01\",\"Covariance: -0.04 <br />Pooled SD: 0.46\",\"Covariance: 0.37 <br />Pooled SD: 0.56\",\"Covariance: 0.23 <br />Pooled SD: 0.69\",\"Covariance: 0.95 <br />Pooled SD: 1.84\",\"Covariance: -0.88 <br />Pooled SD: 1.32\",\"Covariance: 0.18 <br />Pooled SD: 0.59\",\"Covariance: 0.19 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.27\",\"Covariance: 0.05 <br />Pooled SD: 0.87\",\"Covariance: -0.27 <br />Pooled SD: 0.73\",\"Covariance: 0.43 <br />Pooled SD: 2.73\",\"Covariance: 1.16 <br />Pooled SD: 1.7\",\"Covariance: 0.19 <br />Pooled SD: 0.58\",\"Covariance: 0.51 <br />Pooled SD: 1.72\",\"Covariance: 0.05 <br />Pooled SD: 0.64\",\"Covariance: 0.56 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 2.25\",\"Covariance: -3.39 <br />Pooled SD: 3.65\",\"Covariance: -0.44 <br />Pooled SD: 1.08\",\"Covariance: -0.93 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.46\",\"Covariance: -0.42 <br />Pooled SD: 1.38\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.33 <br />Pooled SD: 0.98\",\"Covariance: -0.31 <br />Pooled SD: 2.19\",\"Covariance: 0.11 <br />Pooled SD: 2.18\",\"Covariance: 0.33 <br />Pooled SD: 1.83\",\"Covariance: 0.39 <br />Pooled SD: 0.99\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.53 <br />Pooled SD: 2.21\",\"Covariance: -0.75 <br />Pooled SD: 0.85\",\"Covariance: 1.18 <br />Pooled SD: 1.55\",\"Covariance: -1.21 <br />Pooled SD: 1.61\",\"Covariance: 0.83 <br />Pooled SD: 0.99\",\"Covariance: -0.25 <br />Pooled SD: 0.49\",\"Covariance: -0.74 <br />Pooled SD: 2.13\",\"Covariance: -0.33 <br />Pooled SD: 1.5\",\"Covariance: -0.46 <br />Pooled SD: 0.99\",\"Covariance: 1.62 <br />Pooled SD: 3.64\",\"Covariance: 0.16 <br />Pooled SD: 0.86\",\"Covariance: -0.55 <br />Pooled SD: 0.93\",\"Covariance: -0.13 <br />Pooled SD: 0.76\",\"Covariance: -0.14 <br />Pooled SD: 1.48\",\"Covariance: -0.21 <br />Pooled SD: 1.22\",\"Covariance: -0.66 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 1.5\",\"Covariance: 1.08 <br />Pooled SD: 2.4\",\"Covariance: 0.59 <br />Pooled SD: 0.96\",\"Covariance: -0.02 <br />Pooled SD: 2.59\",\"Covariance: -1.14 <br />Pooled SD: 2.22\",\"Covariance: 0.54 <br />Pooled SD: 1.16\",\"Covariance: -0.83 <br />Pooled SD: 2.07\",\"Covariance: -0.3 <br />Pooled SD: 1.19\",\"Covariance: 0.54 <br />Pooled SD: 0.88\",\"Covariance: 0.73 <br />Pooled SD: 1.95\",\"Covariance: 0.41 <br />Pooled SD: 0.61\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.14 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 0.51\",\"Covariance: -0.33 <br />Pooled SD: 1.8\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: 0.35 <br />Pooled SD: 1.82\",\"Covariance: -0.41 <br />Pooled SD: 1.31\",\"Covariance: -0.11 <br />Pooled SD: 1.61\",\"Covariance: 0.32 <br />Pooled SD: 0.65\",\"Covariance: -0.77 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 0.44\",\"Covariance: 2.65 <br />Pooled SD: 2.86\",\"Covariance: -0.38 <br />Pooled SD: 0.87\",\"Covariance: 0.15 <br />Pooled SD: 1.06\",\"Covariance: -0.49 <br />Pooled SD: 0.85\",\"Covariance: 0.31 <br />Pooled SD: 1.15\",\"Covariance: 0.18 <br />Pooled SD: 0.81\",\"Covariance: 0.18 <br />Pooled SD: 0.44\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: 0.16 <br />Pooled SD: 2.39\",\"Covariance: 0.23 <br />Pooled SD: 0.89\",\"Covariance: -0.21 <br />Pooled SD: 0.7\",\"Covariance: 0.54 <br />Pooled SD: 0.84\",\"Covariance: -0.37 <br />Pooled SD: 1.57\",\"Covariance: 0.71 <br />Pooled SD: 1\",\"Covariance: 0 <br />Pooled SD: 0.71\",\"Covariance: 0.76 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.28 <br />Pooled SD: 0.8\",\"Covariance: -0.15 <br />Pooled SD: 1.12\",\"Covariance: 0.33 <br />Pooled SD: 1.23\",\"Covariance: -0.49 <br />Pooled SD: 1.81\",\"Covariance: -0.25 <br />Pooled SD: 1.18\",\"Covariance: -0.12 <br />Pooled SD: 0.39\",\"Covariance: -0.66 <br />Pooled SD: 0.88\",\"Covariance: -0.7 <br />Pooled SD: 1.43\",\"Covariance: -0.56 <br />Pooled SD: 0.67\",\"Covariance: -0.12 <br />Pooled SD: 1.33\",\"Covariance: -0.12 <br />Pooled SD: 0.35\",\"Covariance: 0.06 <br />Pooled SD: 0.88\",\"Covariance: 0.78 <br />Pooled SD: 1.73\",\"Covariance: -0.35 <br />Pooled SD: 0.85\",\"Covariance: 0.34 <br />Pooled SD: 1.44\",\"Covariance: 0.19 <br />Pooled SD: 0.97\",\"Covariance: 1 <br />Pooled SD: 1.15\",\"Covariance: -0.17 <br />Pooled SD: 0.47\",\"Covariance: 0.67 <br />Pooled SD: 1.16\",\"Covariance: -1.53 <br />Pooled SD: 1.81\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.8 <br />Pooled SD: 1.44\",\"Covariance: 0.34 <br />Pooled SD: 0.95\",\"Covariance: -1.59 <br />Pooled SD: 2.18\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 0.77\",\"Covariance: 0.42 <br />Pooled SD: 2.03\",\"Covariance: -0.86 <br />Pooled SD: 1.35\",\"Covariance: -0.78 <br />Pooled SD: 1.44\",\"Covariance: -0.18 <br />Pooled SD: 1.18\",\"Covariance: 0.02 <br />Pooled SD: 0.62\",\"Covariance: -0.42 <br />Pooled SD: 1.24\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: -0.11 <br />Pooled SD: 0.24\",\"Covariance: -0.6 <br />Pooled SD: 1.3\",\"Covariance: 0.73 <br />Pooled SD: 1.02\",\"Covariance: 0.48 <br />Pooled SD: 0.94\",\"Covariance: 0.36 <br />Pooled SD: 0.57\",\"Covariance: -0.47 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: 0.28 <br />Pooled SD: 1.99\",\"Covariance: -0.72 <br />Pooled SD: 0.99\",\"Covariance: 0.25 <br />Pooled SD: 1.21\",\"Covariance: -0.66 <br />Pooled SD: 1.24\",\"Covariance: 0.43 <br />Pooled SD: 1.39\",\"Covariance: 0.16 <br />Pooled SD: 1.84\",\"Covariance: -0.31 <br />Pooled SD: 0.8\",\"Covariance: 0.68 <br />Pooled SD: 1.14\",\"Covariance: -0.41 <br />Pooled SD: 1.69\",\"Covariance: 0.77 <br />Pooled SD: 1.5\",\"Covariance: -0.05 <br />Pooled SD: 1.17\",\"Covariance: -0.46 <br />Pooled SD: 0.92\",\"Covariance: 0.61 <br />Pooled SD: 2.33\",\"Covariance: 0.05 <br />Pooled SD: 0.48\",\"Covariance: -0.67 <br />Pooled SD: 1.15\",\"Covariance: -2.07 <br />Pooled SD: 3.33\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: -0.85 <br />Pooled SD: 1.24\",\"Covariance: -0.03 <br />Pooled SD: 2.15\",\"Covariance: 0.76 <br />Pooled SD: 0.77\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: 0.79 <br />Pooled SD: 1.41\",\"Covariance: -0.74 <br />Pooled SD: 2.43\",\"Covariance: -0.17 <br />Pooled SD: 1.23\",\"Covariance: -0.1 <br />Pooled SD: 1.21\",\"Covariance: -0.83 <br />Pooled SD: 2.01\",\"Covariance: -0.22 <br />Pooled SD: 2.12\",\"Covariance: 0.78 <br />Pooled SD: 1.33\",\"Covariance: 0.97 <br />Pooled SD: 1.22\",\"Covariance: -0.1 <br />Pooled SD: 0.8\",\"Covariance: 0 <br />Pooled SD: 1.45\",\"Covariance: -0.16 <br />Pooled SD: 0.57\",\"Covariance: 0.93 <br />Pooled SD: 1.36\",\"Covariance: 0.83 <br />Pooled SD: 1.56\",\"Covariance: 0.77 <br />Pooled SD: 1.42\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.41 <br />Pooled SD: 1.12\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.13 <br />Pooled SD: 0.67\",\"Covariance: 0.07 <br />Pooled SD: 1.22\",\"Covariance: 0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.55 <br />Pooled SD: 0.66\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.12\",\"Covariance: 0.48 <br />Pooled SD: 1.47\",\"Covariance: 0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.4 <br />Pooled SD: 2.57\",\"Covariance: 0.37 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 0.98\",\"Covariance: -0.74 <br />Pooled SD: 1.46\",\"Covariance: -1.09 <br />Pooled SD: 1.45\",\"Covariance: 0.19 <br />Pooled SD: 1.5\",\"Covariance: -0.37 <br />Pooled SD: 1.45\",\"Covariance: 0.3 <br />Pooled SD: 0.83\",\"Covariance: -0.08 <br />Pooled SD: 1.4\",\"Covariance: -0.26 <br />Pooled SD: 0.68\",\"Covariance: 0.27 <br />Pooled SD: 1.78\",\"Covariance: 0.13 <br />Pooled SD: 0.24\",\"Covariance: 0.03 <br />Pooled SD: 0.42\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: 0.04 <br />Pooled SD: 1.23\",\"Covariance: 0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.35 <br />Pooled SD: 0.84\",\"Covariance: -0.71 <br />Pooled SD: 1.11\",\"Covariance: 0.25 <br />Pooled SD: 1.43\",\"Covariance: -0.16 <br />Pooled SD: 0.73\",\"Covariance: -0.66 <br />Pooled SD: 1.15\",\"Covariance: -0.08 <br />Pooled SD: 1.18\",\"Covariance: -0.74 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 1.22\",\"Covariance: 0.15 <br />Pooled SD: 2.2\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -0.18 <br />Pooled SD: 1.46\",\"Covariance: -0.45 <br />Pooled SD: 0.89\",\"Covariance: -0.51 <br />Pooled SD: 1.04\",\"Covariance: -0.32 <br />Pooled SD: 0.52\",\"Covariance: -0.63 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 2.17\",\"Covariance: -0.33 <br />Pooled SD: 1.79\",\"Covariance: 0.37 <br />Pooled SD: 1.1\",\"Covariance: 1.46 <br />Pooled SD: 1.87\",\"Covariance: 0.48 <br />Pooled SD: 2.23\",\"Covariance: -0.35 <br />Pooled SD: 1.23\",\"Covariance: 0.54 <br />Pooled SD: 1.36\",\"Covariance: -0.7 <br />Pooled SD: 1.06\",\"Covariance: 0.8 <br />Pooled SD: 1.36\",\"Covariance: -0.06 <br />Pooled SD: 1.03\",\"Covariance: -0.5 <br />Pooled SD: 0.81\",\"Covariance: 0.43 <br />Pooled SD: 0.86\",\"Covariance: -0.2 <br />Pooled SD: 1.25\",\"Covariance: 0 <br />Pooled SD: 0.86\",\"Covariance: 1.4 <br />Pooled SD: 1.59\",\"Covariance: -0.53 <br />Pooled SD: 0.99\",\"Covariance: 0.72 <br />Pooled SD: 1.23\",\"Covariance: -0.54 <br />Pooled SD: 1.35\",\"Covariance: -0.54 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.88\",\"Covariance: -0.19 <br />Pooled SD: 0.48\",\"Covariance: 1.18 <br />Pooled SD: 1.38\",\"Covariance: 0.32 <br />Pooled SD: 2.23\",\"Covariance: -0.87 <br />Pooled SD: 1.92\",\"Covariance: 0.52 <br />Pooled SD: 1.02\",\"Covariance: -0.02 <br />Pooled SD: 0.56\",\"Covariance: 0.46 <br />Pooled SD: 0.94\",\"Covariance: -0.43 <br />Pooled SD: 1.98\",\"Covariance: -0.08 <br />Pooled SD: 0.22\",\"Covariance: -1 <br />Pooled SD: 1.19\",\"Covariance: 0.87 <br />Pooled SD: 2.22\",\"Covariance: -0.29 <br />Pooled SD: 2.18\",\"Covariance: 0.57 <br />Pooled SD: 0.91\",\"Covariance: -0.6 <br />Pooled SD: 2.06\",\"Covariance: -0.61 <br />Pooled SD: 1.92\",\"Covariance: 0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.49 <br />Pooled SD: 0.87\",\"Covariance: -0.06 <br />Pooled SD: 1.73\",\"Covariance: -0.85 <br />Pooled SD: 1.62\",\"Covariance: -0.18 <br />Pooled SD: 0.44\",\"Covariance: 0.2 <br />Pooled SD: 1.51\",\"Covariance: 0.04 <br />Pooled SD: 0.68\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: 0.64 <br />Pooled SD: 1.44\",\"Covariance: -1.17 <br />Pooled SD: 1.6\",\"Covariance: -0.08 <br />Pooled SD: 0.69\",\"Covariance: 0.25 <br />Pooled SD: 1.44\",\"Covariance: -0.68 <br />Pooled SD: 0.77\",\"Covariance: 0.1 <br />Pooled SD: 1.38\",\"Covariance: -0.44 <br />Pooled SD: 0.78\",\"Covariance: -1.41 <br />Pooled SD: 2.79\",\"Covariance: 0.65 <br />Pooled SD: 1.62\",\"Covariance: -0.76 <br />Pooled SD: 2.06\",\"Covariance: 0.84 <br />Pooled SD: 1.79\",\"Covariance: -0.22 <br />Pooled SD: 1.16\",\"Covariance: 1.48 <br />Pooled SD: 1.89\",\"Covariance: -0.1 <br />Pooled SD: 1.47\",\"Covariance: 0.58 <br />Pooled SD: 2.82\",\"Covariance: -0.9 <br />Pooled SD: 2.01\",\"Covariance: 0.2 <br />Pooled SD: 2.26\",\"Covariance: -1.21 <br />Pooled SD: 2\",\"Covariance: 0.35 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.08\",\"Covariance: 0.37 <br />Pooled SD: 0.93\",\"Covariance: 0.13 <br />Pooled SD: 2.85\",\"Covariance: 0.28 <br />Pooled SD: 0.73\",\"Covariance: 0.49 <br />Pooled SD: 3.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -0.5 <br />Pooled SD: 2.23\",\"Covariance: -0.17 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 0.88\",\"Covariance: 0.22 <br />Pooled SD: 0.79\",\"Covariance: -0.77 <br />Pooled SD: 2.21\",\"Covariance: -0.13 <br />Pooled SD: 1.34\",\"Covariance: 0.11 <br />Pooled SD: 1.66\",\"Covariance: -0.06 <br />Pooled SD: 2.59\",\"Covariance: 0.4 <br />Pooled SD: 0.8\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.57 <br />Pooled SD: 1.72\",\"Covariance: 1.64 <br />Pooled SD: 1.89\",\"Covariance: -0.21 <br />Pooled SD: 1.05\",\"Covariance: 0.18 <br />Pooled SD: 0.99\",\"Covariance: 0.1 <br />Pooled SD: 1.52\",\"Covariance: -0.1 <br />Pooled SD: 0.65\",\"Covariance: 0.1 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 2.17\",\"Covariance: 0.49 <br />Pooled SD: 0.79\",\"Covariance: 0 <br />Pooled SD: 1.09\",\"Covariance: -1.68 <br />Pooled SD: 2.96\",\"Covariance: -0.68 <br />Pooled SD: 1.22\",\"Covariance: -0.04 <br />Pooled SD: 1.7\",\"Covariance: 0.02 <br />Pooled SD: 1.03\",\"Covariance: -0.22 <br />Pooled SD: 0.31\",\"Covariance: 0.58 <br />Pooled SD: 1.41\",\"Covariance: 0.29 <br />Pooled SD: 1.05\",\"Covariance: -1.43 <br />Pooled SD: 1.63\",\"Covariance: -0.35 <br />Pooled SD: 1.94\",\"Covariance: -0.55 <br />Pooled SD: 0.7\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: 0.54 <br />Pooled SD: 0.83\",\"Covariance: -0.22 <br />Pooled SD: 2.03\",\"Covariance: -0.1 <br />Pooled SD: 1.37\",\"Covariance: 1.11 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 2.46\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: -0.6 <br />Pooled SD: 1.09\",\"Covariance: -0.1 <br />Pooled SD: 0.85\",\"Covariance: 0.92 <br />Pooled SD: 1.53\",\"Covariance: -0.15 <br />Pooled SD: 0.57\",\"Covariance: -0.32 <br />Pooled SD: 0.75\",\"Covariance: 0.81 <br />Pooled SD: 1.57\",\"Covariance: 0.45 <br />Pooled SD: 0.93\",\"Covariance: 0.51 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.65\",\"Covariance: 0.41 <br />Pooled SD: 0.89\",\"Covariance: 0.31 <br />Pooled SD: 1.32\",\"Covariance: -0.04 <br />Pooled SD: 1.33\",\"Covariance: 0.05 <br />Pooled SD: 0.25\",\"Covariance: -0.05 <br />Pooled SD: 2.09\",\"Covariance: -0.32 <br />Pooled SD: 1.43\",\"Covariance: -0.71 <br />Pooled SD: 2.1\",\"Covariance: -0.04 <br />Pooled SD: 0.97\",\"Covariance: -0.92 <br />Pooled SD: 1.57\",\"Covariance: -0.52 <br />Pooled SD: 1.03\",\"Covariance: 0.22 <br />Pooled SD: 0.91\",\"Covariance: 0.48 <br />Pooled SD: 1.16\",\"Covariance: -0.32 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: -1.11 <br />Pooled SD: 2.18\",\"Covariance: -0.31 <br />Pooled SD: 1.24\",\"Covariance: 0.71 <br />Pooled SD: 0.95\",\"Covariance: -0.65 <br />Pooled SD: 1.18\",\"Covariance: 0.06 <br />Pooled SD: 1.14\",\"Covariance: 0.67 <br />Pooled SD: 1.52\",\"Covariance: 0.89 <br />Pooled SD: 1\",\"Covariance: 0.4 <br />Pooled SD: 0.67\",\"Covariance: 0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.31 <br />Pooled SD: 1.34\",\"Covariance: -0.32 <br />Pooled SD: 1.42\",\"Covariance: -0.3 <br />Pooled SD: 1.52\",\"Covariance: 0.76 <br />Pooled SD: 1.35\",\"Covariance: 0.34 <br />Pooled SD: 1.87\",\"Covariance: -0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.77 <br />Pooled SD: 0.87\",\"Covariance: -0.52 <br />Pooled SD: 1.73\",\"Covariance: -1.27 <br />Pooled SD: 2.37\",\"Covariance: 1.23 <br />Pooled SD: 1.65\",\"Covariance: 1.09 <br />Pooled SD: 2.1\",\"Covariance: 0.53 <br />Pooled SD: 1.86\",\"Covariance: 0.64 <br />Pooled SD: 1.71\",\"Covariance: 0.06 <br />Pooled SD: 1.09\",\"Covariance: 0.04 <br />Pooled SD: 1.98\",\"Covariance: 0.33 <br />Pooled SD: 1.25\",\"Covariance: -0.21 <br />Pooled SD: 0.55\",\"Covariance: 0.94 <br />Pooled SD: 1.06\",\"Covariance: -0.62 <br />Pooled SD: 1.53\",\"Covariance: 0.39 <br />Pooled SD: 0.9\",\"Covariance: 0.16 <br />Pooled SD: 0.53\",\"Covariance: -0.1 <br />Pooled SD: 2\",\"Covariance: 0.54 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.05\",\"Covariance: 0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.44 <br />Pooled SD: 1.71\",\"Covariance: -0.05 <br />Pooled SD: 0.53\",\"Covariance: 0 <br />Pooled SD: 1.56\",\"Covariance: -0.64 <br />Pooled SD: 0.83\",\"Covariance: 0.33 <br />Pooled SD: 0.76\",\"Covariance: 0.79 <br />Pooled SD: 1.12\",\"Covariance: 0.43 <br />Pooled SD: 0.82\",\"Covariance: 0.14 <br />Pooled SD: 2.04\",\"Covariance: 0.24 <br />Pooled SD: 1.53\",\"Covariance: 0.31 <br />Pooled SD: 1.35\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.17 <br />Pooled SD: 1.41\",\"Covariance: 1.01 <br />Pooled SD: 1.23\",\"Covariance: -1.18 <br />Pooled SD: 2.03\"],\"frame\":\"2800\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2900\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7,0.17,-1.1,0.54,0.96,0.46,0.49,0.1,0.2,-0.03,0.45,0.13,0.05,-0.65,-0.3,0.66,-0.46,0.12,-0.16,0.35,-0.77,0.2,-0.57,0.76,0.18,0.11,0.02,-0.28,-0.62,-0.65,-0.12,0.32,-0.48,0.38,0.91,-0.69,-0.6,0.09,1.15,-0.57,0.05,0.3,-0.07,0.28,-0.01,-0.03,0.95,0.83,-0.97,0.04,-0.58,-0.96,0.23,0.81,-0.11,-0.54,0.58,-0.39,0.78,0.4,-0.32,-0.38,-0.57,-0.11,-0.08,-0.08,-0.57,0.33,-0.33,0.27,-1.12,1.37,-1.64,-2.13,-0.14,-1.43,0.06,0.13,0.03,0.08,0.22,-0.4,0.12,0.29,-0.93,0.81,0.46,-0.18,0.39,-1.82,0.52,-0.45,0.1,-0.65,-0.2,-0.42,0.25,-0.22,0.12,-0.28,1.16,0.5,0.28,-1.01,0.38,1.33,0.61,0.03,0.75,0.57,-0.1,0.18,0.41,0.54,-0.03,0.61,0.05,0.34,-0.18,0.38,-0.38,0.41,-0.39,-0.26,1.37,-0.34,0.17,0.49,-0.11,-0.15,0.87,0.13,-0.2,0.04,-0.09,0.58,0.82,-0.05,0.35,0.12,-0.02,0.11,0.11,0.2,-0.16,0.06,-0.39,0.58,-0.75,-0.08,0.22,-0.1,-0.26,-0.94,-0.19,0.31,-0.17,1.21,-0.88,0.22,-1.27,0.75,-0.05,0.96,-0.39,0.52,-0.15,0.08,-0.33,0.26,-0.16,-0.86,0.16,-0.55,0.51,0.08,0.07,1.51,0.48,-0.22,0.91,0.63,1.31,0.97,-0.05,-0.21,0.55,0.57,0.36,-0.23,0,-0.28,-0.4,0.34,-0.23,0.47,0.66,0.63,0.1,-0.07,0.1,0.23,-0.25,0.45,0.18,-0.46,-0.35,-0.38,0.53,-0.18,0.01,0.01,0.57,-0.44,0.13,0.78,-0.15,0.26,0.17,1.1,-0.09,-0.52,-0.12,0.38,0.64,0.18,-0.65,0.07,-0.66,0.12,1.45,0.5,0.06,0.04,0.7,0.66,0.08,-1.54,0.45,0.16,0.01,-0.06,-0.27,0.3,0,-0.44,-0.89,0.64,1.1,0.5,0.32,-0.48,-0.28,0.44,0,-0.02,0.13,-0.45,-0.02,-0.82,-0.26,0.7,0.37,0.2,1.99,-0.07,0.29,1.79,-1.05,0.39,0.7,0.07,-0.39,-1.65,0.34,0.23,-0,-0.86,0.27,-1.43,0.38,0.44,0.45,1.33,0.16,-0.26,1.01,0.12,-0.56,-0.47,-0.18,-0.21,-0.62,-0.8,-0.09,0.27,-0.48,0.06,-0.24,0.67,-0.19,-0.8,0.85,-0.19,-0.86,0.79,-0.76,0.22,0.1,-0.74,1,0.3,-0.98,-0.44,-0.19,-0.86,-0.13,0.17,-0.04,0.37,0.23,0.95,-0.88,0.18,0.19,-0.12,0.05,-0.27,0.43,1.16,0.19,0.51,0.05,0.56,-0.08,-3.39,-0.44,-0.93,0.07,-0.42,0.99,0.33,-0.31,0.11,0.33,0.39,-0.85,-0.53,-0.75,1.18,-1.21,0.83,-0.25,-0.74,-0.33,-0.46,1.62,0.16,-0.55,-0.13,-0.14,-0.21,-0.66,0.04,1.08,0.59,-0.02,-1.14,0.54,-0.83,-0.3,0.54,0.73,0.41,0.07,-0.14,0.16,-0.33,-0.32,0.35,-0.41,-0.11,0.32,-0.77,-0.44,-0.08,2.65,-0.38,0.15,-0.49,0.31,0.18,0.18,-0.01,0.16,0.23,-0.21,0.54,-0.37,0.71,-0,0.76,0.07,-0.28,-0.15,0.33,-0.49,-0.25,-0.12,-0.66,-0.7,-0.56,-0.12,-0.12,0.06,0.78,-0.35,0.34,0.19,1,-0.17,0.67,-1.53,-0.54,0.8,0.34,-1.59,0.52,-0.1,0.42,-0.86,-0.78,-0.18,0.02,-0.42,-0.01,-0.11,-0.6,0.73,0.48,0.36,-0.47,-0.25,0.28,-0.72,0.25,-0.66,0.43,0.16,-0.31,0.68,-0.41,0.77,-0.05,-0.46,0.61,0.05,-0.67,-2.07,-0.82,-0.85,-0.03,0.76,-0.28,0.79,-0.74,-0.17,-0.1,-0.83,-0.22,0.78,0.97,-0.1,0,-0.16,0.93,0.83,0.77,-0.12,-0.41,0.13,-0.13,0.07,0.34,0.02,-0.55,-0.54,0.28,-0.05,0.48,0.42,0.4,0.37,0.14,-0.74,-1.09,0.19,-0.37,0.3,-0.08,-0.26,0.27,0.13,0.03,0.79,0.04,0.21,-0.35,-0.71,0.25,-0.16,-0.66,-0.08,-0.74,0.13,0.15,0.09,-0.18,-0.45,-0.51,-0.32,-0.63,0.16,-0.33,0.37,1.46,0.48,-0.35,0.54,-0.7,0.8,-0.06,-0.5,0.43,-0.2,0,1.4,-0.53,0.72,-0.54,-0.54,0.52,-0.19,1.18,0.32,-0.87,0.52,-0.02,0.46,-0.43,-0.08,-1,0.87,-0.29,0.57,-0.6,-0.61,0.09,0.49,-0.06,-0.85,-0.18,0.2,0.04,0,0.64,-1.17,-0.08,0.25,-0.68,0.1,-0.44,-1.41,0.65,-0.76,0.84,-0.22,1.48,-0.1,0.58,-0.9,0.2,-1.21,0.35,-0.48,0.37,0.13,0.28,0.49,-0.39,-0.5,-0.17,0.36,0.22,-0.77,-0.13,0.11,-0.06,0.4,0.99,0.57,1.64,-0.21,0.18,0.1,-0.1,0.1,-0.28,0.49,0,-1.68,-0.68,-0.04,0.02,-0.22,0.58,0.29,-1.43,-0.35,-0.55,-0.2,0.54,-0.22,-0.1,1.11,-0.01,-0.43,-0.6,-0.1,0.92,-0.15,-0.32,0.81,0.45,0.51,0.33,0.41,0.31,-0.04,0.05,-0.05,-0.32,-0.71,-0.04,-0.92,-0.52,0.22,0.48,-0.32,-0.46,-1.11,-0.31,0.71,-0.65,0.06,0.67,0.89,0.4,0.27,0.31,-0.32,-0.3,0.76,0.34,-0.02,-0.77,-0.52,-1.27,1.23,1.09,0.53,0.64,0.06,0.04,0.33,-0.21,0.94,-0.62,0.39,0.16,-0.1,0.54,-0.15,0.27,-0.16,-0.21,0.03,0.44,-0.05,-0,-0.64,0.33,0.79,0.43,0.14,0.24,0.31,-0.23,0.17,1.01,-1.18,0.48,-0.02,0.2,0.55,0.35,0.21,0.38,0.17,0.04,-0.08,-0.06,0.25,0.78,0.09,-0.35,-0.2,0.26,0.49,-0.31,-0.18,0.06,-0.66,0.36,-0.61,-0.29,-0.67,0.38,-0.17,0.31,0.5,0.25,-0,-0.54,0.56,0.34,0.7,0.04,0.31,0.51,0.16,-0.71,0.05,-0.04,-0.07,-0.17,0.42,0.43,-0.07,-0.53,-0.17,-0.12,0.04,-0.22,1.54,0.58,0.34,-0.35,0.51,-0.82,-0.87,0.29,-1.15,0.93,0.18,0.61,-0.03,0.51,-0.07,1.18,-0.05,0.08,-0.67,0.04,1.35,-0.71,-0.24,-0.54,-0.26,-0.38,-0.35,-0.64,0.56,0.06,0.48,1.27,0.94,-0.08,-0.17,0.64,-0.5,-0.61,0.24,-0.36,0.2,0.29,0.32,0.46,0.4,-0.81,-1.07],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14,1.39,2.11,0.64,1.87,1.81,2.14,0.73,1.17,0.99,0.98,1.73,0.65,1.81,0.77,1.01,1.86,1.58,0.7,0.98,1.55,0.98,1.03,1.13,0.92,0.96,1.17,1.26,1.33,1.35,0.82,2.11,0.87,1.69,1.42,0.97,2.99,2.68,2.32,1.16,0.89,1.21,0.46,1.48,1.39,0.39,2.16,1.26,1.14,0.7,2.74,1.49,0.66,1.46,0.56,0.59,0.82,1.39,1.14,1.33,0.95,0.62,1.05,1.85,1.05,1.51,0.98,1.42,1.14,1.9,1.43,1.65,2.42,2.59,0.94,2.3,0.75,0.99,1.16,1.12,0.75,0.55,0.86,0.93,1.63,1.08,0.67,0.86,0.63,3.11,1.71,1.08,1.13,1.66,1.17,0.74,1.87,1.19,0.4,1.56,1.48,0.71,0.9,1.56,0.74,1.7,2.04,0.94,1.42,1.44,0.49,0.41,0.95,1.05,0.9,1.02,0.73,0.92,2.43,1.37,1.33,1.64,1.02,0.62,1.88,1.68,2.41,1.6,1.51,2.26,2.39,0.25,0.65,0.48,1.5,1.71,1.63,0.75,1.08,0.77,1.06,0.69,0.93,1.41,0.85,1.86,1.11,1.12,1.12,1.71,0.35,1.05,1.53,1.57,0.4,0.9,0.96,2.18,1.88,0.58,2.39,2.15,1.81,1.59,1.71,1.16,0.86,0.95,0.86,1.31,1.03,1.8,1.17,1.9,1.28,0.36,0.98,1.56,1.18,2.7,1.98,1.3,1.86,2.1,0.6,0.89,1.12,3.05,0.97,0.85,0.38,1.18,0.72,0.86,1.07,1.64,2.35,1.4,1.41,0.51,0.99,1.61,2.32,0.6,0.72,0.8,1.47,0.85,0.74,0.4,0.62,1.42,0.85,0.68,0.72,1.06,0.65,0.67,1.68,1.67,1.43,0.82,1.01,1.24,1.69,0.69,1.96,0.81,0.91,1.76,1.62,0.72,1.04,1.06,1.99,2.49,0.69,2.17,1.46,0.63,0.48,0.49,1.21,1.57,0.82,0.53,2.58,0.7,1.49,1.53,0.69,0.49,0.38,1.06,0.61,0.44,1.73,1.25,0.5,1.19,2.28,0.81,1.59,0.41,2.39,0.23,0.57,2.95,1.48,1.6,1,1.45,0.78,2.34,0.87,1.27,1.66,1.4,0.77,1.62,1.2,0.65,0.85,2.39,1.21,1.18,1.18,0.93,0.9,0.9,0.69,0.77,1.15,1.31,0.49,1.36,1.13,0.93,0.51,1.15,0.93,1.25,1.34,1.94,2.03,1.38,1.97,0.58,0.37,1.13,1.74,1.63,1.54,0.73,0.8,1.82,0.74,1.01,0.46,0.56,0.69,1.84,1.32,0.59,0.91,1.27,0.87,0.73,2.73,1.7,0.58,1.72,0.64,1.14,2.25,3.65,1.08,1.64,1.46,1.38,1.1,0.98,2.19,2.18,1.83,0.99,1.7,2.21,0.85,1.55,1.61,0.99,0.49,2.13,1.5,0.99,3.64,0.86,0.93,0.76,1.48,1.22,1.37,1.5,2.4,0.96,2.59,2.22,1.16,2.07,1.19,0.88,1.95,0.61,1.21,0.78,0.51,1.8,1.35,1.82,1.31,1.61,0.65,1.15,1.85,0.44,2.86,0.87,1.06,0.85,1.15,0.81,0.44,0.58,2.39,0.89,0.7,0.84,1.57,1,0.71,1.64,1.21,0.8,1.12,1.23,1.81,1.18,0.39,0.88,1.43,0.67,1.33,0.35,0.88,1.73,0.85,1.44,0.97,1.15,0.47,1.16,1.81,1.32,1.44,0.95,2.18,1.13,0.77,2.03,1.35,1.44,1.18,0.62,1.24,0.58,0.24,1.3,1.02,0.94,0.57,1.22,1.75,1.99,0.99,1.21,1.24,1.39,1.84,0.8,1.14,1.69,1.5,1.17,0.92,2.33,0.48,1.15,3.33,1.12,1.24,2.15,0.77,0.95,1.41,2.43,1.23,1.21,2.01,2.12,1.33,1.22,0.8,1.45,0.57,1.36,1.56,1.42,1.29,1.12,0.91,0.67,1.22,0.69,0.67,0.66,1.02,0.4,1.12,1.47,1.65,2.57,1.07,0.98,1.46,1.45,1.5,1.45,0.83,1.4,0.68,1.78,0.24,0.42,2.15,1.23,1.33,0.84,1.11,1.43,0.73,1.15,1.18,2.21,1.22,2.2,0.48,1.46,0.89,1.04,0.52,0.78,2.17,1.79,1.1,1.87,2.23,1.23,1.36,1.06,1.36,1.03,0.81,0.86,1.25,0.86,1.59,0.99,1.23,1.35,1.45,0.88,0.48,1.38,2.23,1.92,1.02,0.56,0.94,1.98,0.22,1.19,2.22,2.18,0.91,2.06,1.92,0.52,0.87,1.73,1.62,0.44,1.51,0.68,0.82,1.44,1.6,0.69,1.44,0.77,1.38,0.78,2.79,1.62,2.06,1.79,1.16,1.89,1.47,2.82,2.01,2.26,2,1.36,1.08,0.93,2.85,0.73,3.45,0.78,2.23,1.15,0.88,0.79,2.21,1.34,1.66,2.59,0.8,1.1,1.72,1.89,1.05,0.99,1.52,0.65,1.49,2.17,0.79,1.09,2.96,1.22,1.7,1.03,0.31,1.41,1.05,1.63,1.94,0.7,1.17,0.83,2.03,1.37,1.63,2.46,1.55,1.09,0.85,1.53,0.57,0.75,1.57,0.93,1.06,1.65,0.89,1.32,1.33,0.25,2.09,1.43,2.1,0.97,1.57,1.03,0.91,1.16,1.52,1.12,2.18,1.24,0.95,1.18,1.14,1.52,1,0.67,1.21,1.34,1.42,1.52,1.35,1.87,1.66,0.87,1.73,2.37,1.65,2.1,1.86,1.71,1.09,1.98,1.25,0.55,1.06,1.53,0.9,0.53,2,1.08,0.58,0.77,1.41,1.05,0.55,1.71,0.53,1.56,0.83,0.76,1.12,0.82,2.04,1.53,1.35,0.57,1.41,1.23,2.03,1.97,0.77,1.72,1.35,0.82,1.5,0.67,0.59,1.19,0.71,1.91,0.61,2.4,1.56,1.02,0.84,1.07,2.78,1.45,1.21,1.4,0.77,1.56,0.74,1.29,1.44,0.95,0.89,0.78,2.26,0.51,0.64,1.29,1.36,1.04,2.71,0.26,0.84,1.28,0.97,1.17,0.52,1.41,0.57,1.12,1.32,0.95,0.71,0.73,0.95,1.98,2.62,0.44,2.05,1.27,0.89,0.86,0.56,1.75,1.12,1.05,1.64,1.2,1.55,1.42,1.27,0.71,1.07,1.43,1.19,1.46,1.72,1.1,2.4,1.53,0.79,1.34,0.41,1.29,0.97,1.74,1.59,2.18,2.01,3.4,1.48,0.33,0.98,1.26,0.89,0.67,2.08,1.4,1.09,0.63,1.88,1.22,1.06,1.04,1.2],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38,0.15,0.53,0.07,0.37,0.03,0.16,-0.41,-0.64,0.18,-0.22,-0.57,-0.07,-0.34,0.11,0.07,0.18,-0.13,-0.51,-0.49,-0.63,-0.8,0.07,-0.18,0.33,0.78,0.21,-0.28,0.4,-0.66,0.59,-0.06,-0.61,0.5,-0.16,0,0.88,-0.53,0.59,-0.4,-0.37,0.6,-0.4,0.85,0.14,-0.45,0.51,-0.03,0.49,-0.22,-0.37,-0.84,0.39,-0.14,0.63,-0.29,-0.31,0.18,0.56,-0.04,-0.53,-0.41,0.13,0.06,0,0.44,-0.73,-0.12,0.17,-0.88,0.07,-0.56,-0.5,0.4,-0.37,0.47,-0.19,0.78,-0.07,0.2,-0.45,0.09,-0.6,0.26,-0.44,0.4,0.05,0.39,0.14,-0.49,-0.22,-0.14,0.41,0.28,-0.35,-0.1,0.07,-0.02,0.5,0.9,0.33,0.87,-0.2,0.19,0.07,-0.15,0.06,-0.13,0.62,0,-0.57,-0.56,-0.02,0.02,-0.7,0.41,0.28,-0.88,-0.18,-0.78,-0.17,0.66,-0.11,-0.07,0.68,-0,-0.27,-0.55,-0.12,0.6,-0.26,-0.42,0.51,0.48,0.48,0.2,0.46,0.24,-0.03,0.2,-0.03,-0.23,-0.34,-0.04,-0.59,-0.5,0.24,0.42,-0.21,-0.41,-0.51,-0.25,0.75,-0.55,0.05,0.44,0.89,0.6,0.23,0.23,-0.22,-0.19,0.56,0.18,-0.01,-0.88,-0.3,-0.53,0.75,0.52,0.28,0.38,0.05,0.02,0.26,-0.39,0.88,-0.41,0.43,0.31,-0.05,0.5,-0.26,0.36,-0.11,-0.2,0.05,0.26,-0.1,-0,-0.78,0.44,0.7,0.52,0.07,0.16,0.23,-0.4,0.12,0.83,-0.58,0.24,-0.02,0.12,0.41,0.43,0.14,0.56,0.28,0.03,-0.11,-0.03,0.41,0.32,0.06,-0.34,-0.24,0.24,0.18,-0.22,-0.15,0.05,-0.86,0.23,-0.83,-0.22,-0.46,0.4,-0.19,0.4,0.22,0.49,-0,-0.42,0.41,0.33,0.26,0.17,0.37,0.4,0.16,-0.61,0.1,-0.03,-0.13,-0.15,0.32,0.46,-0.09,-0.72,-0.18,-0.06,0.02,-0.51,0.75,0.45,0.38,-0.4,0.9,-0.47,-0.78,0.28,-0.7,0.77,0.11,0.43,-0.02,0.72,-0.07,0.82,-0.05,0.06,-0.39,0.03,0.57,-0.46,-0.3,-0.4,-0.63,-0.3,-0.36,-0.37,0.35,0.03,0.24,0.37,0.64,-0.24,-0.18,0.51,-0.56,-0.9,0.12,-0.26,0.18,0.47,0.17,0.38,0.38,-0.78,-0.89],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38,0.15,0.53,0.07,0.37,0.03,0.16,-0.41,-0.64,0.18,-0.22,-0.57,-0.07,-0.34,0.11,0.07,0.18,-0.13,-0.51,-0.49,-0.63,-0.8,0.07,-0.18,0.33,0.78,0.21,-0.28,0.4,-0.66,0.59,-0.06,-0.61,0.5,-0.16,0,0.88,-0.53,0.59,-0.4,-0.37,0.6,-0.4,0.85,0.14,-0.45,0.51,-0.03,0.49,-0.22,-0.37,-0.84,0.39,-0.14,0.63,-0.29,-0.31,0.18,0.56,-0.04,-0.53,-0.41,0.13,0.06,0,0.44,-0.73,-0.12,0.17,-0.88,0.07,-0.56,-0.5,0.4,-0.37,0.47,-0.19,0.78,-0.07,0.2,-0.45,0.09,-0.6,0.26,-0.44,0.4,0.05,0.39,0.14,-0.49,-0.22,-0.14,0.41,0.28,-0.35,-0.1,0.07,-0.02,0.5,0.9,0.33,0.87,-0.2,0.19,0.07,-0.15,0.06,-0.13,0.62,0,-0.57,-0.56,-0.02,0.02,-0.7,0.41,0.28,-0.88,-0.18,-0.78,-0.17,0.66,-0.11,-0.07,0.68,-0,-0.27,-0.55,-0.12,0.6,-0.26,-0.42,0.51,0.48,0.48,0.2,0.46,0.24,-0.03,0.2,-0.03,-0.23,-0.34,-0.04,-0.59,-0.5,0.24,0.42,-0.21,-0.41,-0.51,-0.25,0.75,-0.55,0.05,0.44,0.89,0.6,0.23,0.23,-0.22,-0.19,0.56,0.18,-0.01,-0.88,-0.3,-0.53,0.75,0.52,0.28,0.38,0.05,0.02,0.26,-0.39,0.88,-0.41,0.43,0.31,-0.05,0.5,-0.26,0.36,-0.11,-0.2,0.05,0.26,-0.1,-0,-0.78,0.44,0.7,0.52,0.07,0.16,0.23,-0.4,0.12,0.83,-0.58,0.24,-0.02,0.12,0.41,0.43,0.14,0.56,0.28,0.03,-0.11,-0.03,0.41,0.32,0.06,-0.34,-0.24,0.24,0.18,-0.22,-0.15,0.05,-0.86,0.23,-0.83,-0.22,-0.46,0.4,-0.19,0.4,0.22,0.49,-0,-0.42,0.41,0.33,0.26,0.17,0.37,0.4,0.16,-0.61,0.1,-0.03,-0.13,-0.15,0.32,0.46,-0.09,-0.72,-0.18,-0.06,0.02,-0.51,0.75,0.45,0.38,-0.4,0.9,-0.47,-0.78,0.28,-0.7,0.77,0.11,0.43,-0.02,0.72,-0.07,0.82,-0.05,0.06,-0.39,0.03,0.57,-0.46,-0.3,-0.4,-0.63,-0.3,-0.36,-0.37,0.35,0.03,0.24,0.37,0.64,-0.24,-0.18,0.51,-0.56,-0.9,0.12,-0.26,0.18,0.47,0.17,0.38,0.38,-0.78,-0.89]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\",\"Covariance: 0.17 <br />Pooled SD: 1.39\",\"Covariance: -1.1 <br />Pooled SD: 2.11\",\"Covariance: 0.54 <br />Pooled SD: 0.64\",\"Covariance: 0.96 <br />Pooled SD: 1.87\",\"Covariance: 0.46 <br />Pooled SD: 1.81\",\"Covariance: 0.49 <br />Pooled SD: 2.14\",\"Covariance: 0.1 <br />Pooled SD: 0.73\",\"Covariance: 0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.03 <br />Pooled SD: 0.99\",\"Covariance: 0.45 <br />Pooled SD: 0.98\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.81\",\"Covariance: -0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.66 <br />Pooled SD: 1.01\",\"Covariance: -0.46 <br />Pooled SD: 1.86\",\"Covariance: 0.12 <br />Pooled SD: 1.58\",\"Covariance: -0.16 <br />Pooled SD: 0.7\",\"Covariance: 0.35 <br />Pooled SD: 0.98\",\"Covariance: -0.77 <br />Pooled SD: 1.55\",\"Covariance: 0.2 <br />Pooled SD: 0.98\",\"Covariance: -0.57 <br />Pooled SD: 1.03\",\"Covariance: 0.76 <br />Pooled SD: 1.13\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.02 <br />Pooled SD: 1.17\",\"Covariance: -0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.33\",\"Covariance: -0.65 <br />Pooled SD: 1.35\",\"Covariance: -0.12 <br />Pooled SD: 0.82\",\"Covariance: 0.32 <br />Pooled SD: 2.11\",\"Covariance: -0.48 <br />Pooled SD: 0.87\",\"Covariance: 0.38 <br />Pooled SD: 1.69\",\"Covariance: 0.91 <br />Pooled SD: 1.42\",\"Covariance: -0.69 <br />Pooled SD: 0.97\",\"Covariance: -0.6 <br />Pooled SD: 2.99\",\"Covariance: 0.09 <br />Pooled SD: 2.68\",\"Covariance: 1.15 <br />Pooled SD: 2.32\",\"Covariance: -0.57 <br />Pooled SD: 1.16\",\"Covariance: 0.05 <br />Pooled SD: 0.89\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: -0.07 <br />Pooled SD: 0.46\",\"Covariance: 0.28 <br />Pooled SD: 1.48\",\"Covariance: -0.01 <br />Pooled SD: 1.39\",\"Covariance: -0.03 <br />Pooled SD: 0.39\",\"Covariance: 0.95 <br />Pooled SD: 2.16\",\"Covariance: 0.83 <br />Pooled SD: 1.26\",\"Covariance: -0.97 <br />Pooled SD: 1.14\",\"Covariance: 0.04 <br />Pooled SD: 0.7\",\"Covariance: -0.58 <br />Pooled SD: 2.74\",\"Covariance: -0.96 <br />Pooled SD: 1.49\",\"Covariance: 0.23 <br />Pooled SD: 0.66\",\"Covariance: 0.81 <br />Pooled SD: 1.46\",\"Covariance: -0.11 <br />Pooled SD: 0.56\",\"Covariance: -0.54 <br />Pooled SD: 0.59\",\"Covariance: 0.58 <br />Pooled SD: 0.82\",\"Covariance: -0.39 <br />Pooled SD: 1.39\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 0.4 <br />Pooled SD: 1.33\",\"Covariance: -0.32 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.57 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 1.05\",\"Covariance: -0.08 <br />Pooled SD: 1.51\",\"Covariance: -0.57 <br />Pooled SD: 0.98\",\"Covariance: 0.33 <br />Pooled SD: 1.42\",\"Covariance: -0.33 <br />Pooled SD: 1.14\",\"Covariance: 0.27 <br />Pooled SD: 1.9\",\"Covariance: -1.12 <br />Pooled SD: 1.43\",\"Covariance: 1.37 <br />Pooled SD: 1.65\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: -2.13 <br />Pooled SD: 2.59\",\"Covariance: -0.14 <br />Pooled SD: 0.94\",\"Covariance: -1.43 <br />Pooled SD: 2.3\",\"Covariance: 0.06 <br />Pooled SD: 0.75\",\"Covariance: 0.13 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 1.16\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.12 <br />Pooled SD: 0.86\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.93 <br />Pooled SD: 1.63\",\"Covariance: 0.81 <br />Pooled SD: 1.08\",\"Covariance: 0.46 <br />Pooled SD: 0.67\",\"Covariance: -0.18 <br />Pooled SD: 0.86\",\"Covariance: 0.39 <br />Pooled SD: 0.63\",\"Covariance: -1.82 <br />Pooled SD: 3.11\",\"Covariance: 0.52 <br />Pooled SD: 1.71\",\"Covariance: -0.45 <br />Pooled SD: 1.08\",\"Covariance: 0.1 <br />Pooled SD: 1.13\",\"Covariance: -0.65 <br />Pooled SD: 1.66\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 0.74\",\"Covariance: 0.25 <br />Pooled SD: 1.87\",\"Covariance: -0.22 <br />Pooled SD: 1.19\",\"Covariance: 0.12 <br />Pooled SD: 0.4\",\"Covariance: -0.28 <br />Pooled SD: 1.56\",\"Covariance: 1.16 <br />Pooled SD: 1.48\",\"Covariance: 0.5 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 0.9\",\"Covariance: -1.01 <br />Pooled SD: 1.56\",\"Covariance: 0.38 <br />Pooled SD: 0.74\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.61 <br />Pooled SD: 2.04\",\"Covariance: 0.03 <br />Pooled SD: 0.94\",\"Covariance: 0.75 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 1.44\",\"Covariance: -0.1 <br />Pooled SD: 0.49\",\"Covariance: 0.18 <br />Pooled SD: 0.41\",\"Covariance: 0.41 <br />Pooled SD: 0.95\",\"Covariance: 0.54 <br />Pooled SD: 1.05\",\"Covariance: -0.03 <br />Pooled SD: 0.9\",\"Covariance: 0.61 <br />Pooled SD: 1.02\",\"Covariance: 0.05 <br />Pooled SD: 0.73\",\"Covariance: 0.34 <br />Pooled SD: 0.92\",\"Covariance: -0.18 <br />Pooled SD: 2.43\",\"Covariance: 0.38 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.33\",\"Covariance: 0.41 <br />Pooled SD: 1.64\",\"Covariance: -0.39 <br />Pooled SD: 1.02\",\"Covariance: -0.26 <br />Pooled SD: 0.62\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.17 <br />Pooled SD: 2.41\",\"Covariance: 0.49 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 2.26\",\"Covariance: 0.87 <br />Pooled SD: 2.39\",\"Covariance: 0.13 <br />Pooled SD: 0.25\",\"Covariance: -0.2 <br />Pooled SD: 0.65\",\"Covariance: 0.04 <br />Pooled SD: 0.48\",\"Covariance: -0.09 <br />Pooled SD: 1.5\",\"Covariance: 0.58 <br />Pooled SD: 1.71\",\"Covariance: 0.82 <br />Pooled SD: 1.63\",\"Covariance: -0.05 <br />Pooled SD: 0.75\",\"Covariance: 0.35 <br />Pooled SD: 1.08\",\"Covariance: 0.12 <br />Pooled SD: 0.77\",\"Covariance: -0.02 <br />Pooled SD: 1.06\",\"Covariance: 0.11 <br />Pooled SD: 0.69\",\"Covariance: 0.11 <br />Pooled SD: 0.93\",\"Covariance: 0.2 <br />Pooled SD: 1.41\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.06 <br />Pooled SD: 1.86\",\"Covariance: -0.39 <br />Pooled SD: 1.11\",\"Covariance: 0.58 <br />Pooled SD: 1.12\",\"Covariance: -0.75 <br />Pooled SD: 1.12\",\"Covariance: -0.08 <br />Pooled SD: 1.71\",\"Covariance: 0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.1 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 1.53\",\"Covariance: -0.94 <br />Pooled SD: 1.57\",\"Covariance: -0.19 <br />Pooled SD: 0.4\",\"Covariance: 0.31 <br />Pooled SD: 0.9\",\"Covariance: -0.17 <br />Pooled SD: 0.96\",\"Covariance: 1.21 <br />Pooled SD: 2.18\",\"Covariance: -0.88 <br />Pooled SD: 1.88\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: -1.27 <br />Pooled SD: 2.39\",\"Covariance: 0.75 <br />Pooled SD: 2.15\",\"Covariance: -0.05 <br />Pooled SD: 1.81\",\"Covariance: 0.96 <br />Pooled SD: 1.59\",\"Covariance: -0.39 <br />Pooled SD: 1.71\",\"Covariance: 0.52 <br />Pooled SD: 1.16\",\"Covariance: -0.15 <br />Pooled SD: 0.86\",\"Covariance: 0.08 <br />Pooled SD: 0.95\",\"Covariance: -0.33 <br />Pooled SD: 0.86\",\"Covariance: 0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.16 <br />Pooled SD: 1.03\",\"Covariance: -0.86 <br />Pooled SD: 1.8\",\"Covariance: 0.16 <br />Pooled SD: 1.17\",\"Covariance: -0.55 <br />Pooled SD: 1.9\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.08 <br />Pooled SD: 0.36\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: 1.51 <br />Pooled SD: 1.56\",\"Covariance: 0.48 <br />Pooled SD: 1.18\",\"Covariance: -0.22 <br />Pooled SD: 2.7\",\"Covariance: 0.91 <br />Pooled SD: 1.98\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: 1.31 <br />Pooled SD: 1.86\",\"Covariance: 0.97 <br />Pooled SD: 2.1\",\"Covariance: -0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.21 <br />Pooled SD: 0.89\",\"Covariance: 0.55 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 3.05\",\"Covariance: 0.36 <br />Pooled SD: 0.97\",\"Covariance: -0.23 <br />Pooled SD: 0.85\",\"Covariance: 0 <br />Pooled SD: 0.38\",\"Covariance: -0.28 <br />Pooled SD: 1.18\",\"Covariance: -0.4 <br />Pooled SD: 0.72\",\"Covariance: 0.34 <br />Pooled SD: 0.86\",\"Covariance: -0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.47 <br />Pooled SD: 1.64\",\"Covariance: 0.66 <br />Pooled SD: 2.35\",\"Covariance: 0.63 <br />Pooled SD: 1.4\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.51\",\"Covariance: 0.1 <br />Pooled SD: 0.99\",\"Covariance: 0.23 <br />Pooled SD: 1.61\",\"Covariance: -0.25 <br />Pooled SD: 2.32\",\"Covariance: 0.45 <br />Pooled SD: 0.6\",\"Covariance: 0.18 <br />Pooled SD: 0.72\",\"Covariance: -0.46 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 1.47\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: 0.53 <br />Pooled SD: 0.74\",\"Covariance: -0.18 <br />Pooled SD: 0.4\",\"Covariance: 0.01 <br />Pooled SD: 0.62\",\"Covariance: 0.01 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 0.85\",\"Covariance: -0.44 <br />Pooled SD: 0.68\",\"Covariance: 0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.78 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.65\",\"Covariance: 0.26 <br />Pooled SD: 0.67\",\"Covariance: 0.17 <br />Pooled SD: 1.68\",\"Covariance: 1.1 <br />Pooled SD: 1.67\",\"Covariance: -0.09 <br />Pooled SD: 1.43\",\"Covariance: -0.52 <br />Pooled SD: 0.82\",\"Covariance: -0.12 <br />Pooled SD: 1.01\",\"Covariance: 0.38 <br />Pooled SD: 1.24\",\"Covariance: 0.64 <br />Pooled SD: 1.69\",\"Covariance: 0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.96\",\"Covariance: 0.07 <br />Pooled SD: 0.81\",\"Covariance: -0.66 <br />Pooled SD: 0.91\",\"Covariance: 0.12 <br />Pooled SD: 1.76\",\"Covariance: 1.45 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 0.72\",\"Covariance: 0.06 <br />Pooled SD: 1.04\",\"Covariance: 0.04 <br />Pooled SD: 1.06\",\"Covariance: 0.7 <br />Pooled SD: 1.99\",\"Covariance: 0.66 <br />Pooled SD: 2.49\",\"Covariance: 0.08 <br />Pooled SD: 0.69\",\"Covariance: -1.54 <br />Pooled SD: 2.17\",\"Covariance: 0.45 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.63\",\"Covariance: 0.01 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.49\",\"Covariance: -0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.3 <br />Pooled SD: 1.57\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: -0.44 <br />Pooled SD: 0.53\",\"Covariance: -0.89 <br />Pooled SD: 2.58\",\"Covariance: 0.64 <br />Pooled SD: 0.7\",\"Covariance: 1.1 <br />Pooled SD: 1.49\",\"Covariance: 0.5 <br />Pooled SD: 1.53\",\"Covariance: 0.32 <br />Pooled SD: 0.69\",\"Covariance: -0.48 <br />Pooled SD: 0.49\",\"Covariance: -0.28 <br />Pooled SD: 0.38\",\"Covariance: 0.44 <br />Pooled SD: 1.06\",\"Covariance: 0 <br />Pooled SD: 0.61\",\"Covariance: -0.02 <br />Pooled SD: 0.44\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: -0.45 <br />Pooled SD: 1.25\",\"Covariance: -0.02 <br />Pooled SD: 0.5\",\"Covariance: -0.82 <br />Pooled SD: 1.19\",\"Covariance: -0.26 <br />Pooled SD: 2.28\",\"Covariance: 0.7 <br />Pooled SD: 0.81\",\"Covariance: 0.37 <br />Pooled SD: 1.59\",\"Covariance: 0.2 <br />Pooled SD: 0.41\",\"Covariance: 1.99 <br />Pooled SD: 2.39\",\"Covariance: -0.07 <br />Pooled SD: 0.23\",\"Covariance: 0.29 <br />Pooled SD: 0.57\",\"Covariance: 1.79 <br />Pooled SD: 2.95\",\"Covariance: -1.05 <br />Pooled SD: 1.48\",\"Covariance: 0.39 <br />Pooled SD: 1.6\",\"Covariance: 0.7 <br />Pooled SD: 1\",\"Covariance: 0.07 <br />Pooled SD: 1.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -1.65 <br />Pooled SD: 2.34\",\"Covariance: 0.34 <br />Pooled SD: 0.87\",\"Covariance: 0.23 <br />Pooled SD: 1.27\",\"Covariance: 0 <br />Pooled SD: 1.66\",\"Covariance: -0.86 <br />Pooled SD: 1.4\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -1.43 <br />Pooled SD: 1.62\",\"Covariance: 0.38 <br />Pooled SD: 1.2\",\"Covariance: 0.44 <br />Pooled SD: 0.65\",\"Covariance: 0.45 <br />Pooled SD: 0.85\",\"Covariance: 1.33 <br />Pooled SD: 2.39\",\"Covariance: 0.16 <br />Pooled SD: 1.21\",\"Covariance: -0.26 <br />Pooled SD: 1.18\",\"Covariance: 1.01 <br />Pooled SD: 1.18\",\"Covariance: 0.12 <br />Pooled SD: 0.93\",\"Covariance: -0.56 <br />Pooled SD: 0.9\",\"Covariance: -0.47 <br />Pooled SD: 0.9\",\"Covariance: -0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.21 <br />Pooled SD: 0.77\",\"Covariance: -0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.8 <br />Pooled SD: 1.31\",\"Covariance: -0.09 <br />Pooled SD: 0.49\",\"Covariance: 0.27 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.13\",\"Covariance: 0.06 <br />Pooled SD: 0.93\",\"Covariance: -0.24 <br />Pooled SD: 0.51\",\"Covariance: 0.67 <br />Pooled SD: 1.15\",\"Covariance: -0.19 <br />Pooled SD: 0.93\",\"Covariance: -0.8 <br />Pooled SD: 1.25\",\"Covariance: 0.85 <br />Pooled SD: 1.34\",\"Covariance: -0.19 <br />Pooled SD: 1.94\",\"Covariance: -0.86 <br />Pooled SD: 2.03\",\"Covariance: 0.79 <br />Pooled SD: 1.38\",\"Covariance: -0.76 <br />Pooled SD: 1.97\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: 0.1 <br />Pooled SD: 0.37\",\"Covariance: -0.74 <br />Pooled SD: 1.13\",\"Covariance: 1 <br />Pooled SD: 1.74\",\"Covariance: 0.3 <br />Pooled SD: 1.63\",\"Covariance: -0.98 <br />Pooled SD: 1.54\",\"Covariance: -0.44 <br />Pooled SD: 0.73\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.86 <br />Pooled SD: 1.82\",\"Covariance: -0.13 <br />Pooled SD: 0.74\",\"Covariance: 0.17 <br />Pooled SD: 1.01\",\"Covariance: -0.04 <br />Pooled SD: 0.46\",\"Covariance: 0.37 <br />Pooled SD: 0.56\",\"Covariance: 0.23 <br />Pooled SD: 0.69\",\"Covariance: 0.95 <br />Pooled SD: 1.84\",\"Covariance: -0.88 <br />Pooled SD: 1.32\",\"Covariance: 0.18 <br />Pooled SD: 0.59\",\"Covariance: 0.19 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.27\",\"Covariance: 0.05 <br />Pooled SD: 0.87\",\"Covariance: -0.27 <br />Pooled SD: 0.73\",\"Covariance: 0.43 <br />Pooled SD: 2.73\",\"Covariance: 1.16 <br />Pooled SD: 1.7\",\"Covariance: 0.19 <br />Pooled SD: 0.58\",\"Covariance: 0.51 <br />Pooled SD: 1.72\",\"Covariance: 0.05 <br />Pooled SD: 0.64\",\"Covariance: 0.56 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 2.25\",\"Covariance: -3.39 <br />Pooled SD: 3.65\",\"Covariance: -0.44 <br />Pooled SD: 1.08\",\"Covariance: -0.93 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.46\",\"Covariance: -0.42 <br />Pooled SD: 1.38\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.33 <br />Pooled SD: 0.98\",\"Covariance: -0.31 <br />Pooled SD: 2.19\",\"Covariance: 0.11 <br />Pooled SD: 2.18\",\"Covariance: 0.33 <br />Pooled SD: 1.83\",\"Covariance: 0.39 <br />Pooled SD: 0.99\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.53 <br />Pooled SD: 2.21\",\"Covariance: -0.75 <br />Pooled SD: 0.85\",\"Covariance: 1.18 <br />Pooled SD: 1.55\",\"Covariance: -1.21 <br />Pooled SD: 1.61\",\"Covariance: 0.83 <br />Pooled SD: 0.99\",\"Covariance: -0.25 <br />Pooled SD: 0.49\",\"Covariance: -0.74 <br />Pooled SD: 2.13\",\"Covariance: -0.33 <br />Pooled SD: 1.5\",\"Covariance: -0.46 <br />Pooled SD: 0.99\",\"Covariance: 1.62 <br />Pooled SD: 3.64\",\"Covariance: 0.16 <br />Pooled SD: 0.86\",\"Covariance: -0.55 <br />Pooled SD: 0.93\",\"Covariance: -0.13 <br />Pooled SD: 0.76\",\"Covariance: -0.14 <br />Pooled SD: 1.48\",\"Covariance: -0.21 <br />Pooled SD: 1.22\",\"Covariance: -0.66 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 1.5\",\"Covariance: 1.08 <br />Pooled SD: 2.4\",\"Covariance: 0.59 <br />Pooled SD: 0.96\",\"Covariance: -0.02 <br />Pooled SD: 2.59\",\"Covariance: -1.14 <br />Pooled SD: 2.22\",\"Covariance: 0.54 <br />Pooled SD: 1.16\",\"Covariance: -0.83 <br />Pooled SD: 2.07\",\"Covariance: -0.3 <br />Pooled SD: 1.19\",\"Covariance: 0.54 <br />Pooled SD: 0.88\",\"Covariance: 0.73 <br />Pooled SD: 1.95\",\"Covariance: 0.41 <br />Pooled SD: 0.61\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.14 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 0.51\",\"Covariance: -0.33 <br />Pooled SD: 1.8\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: 0.35 <br />Pooled SD: 1.82\",\"Covariance: -0.41 <br />Pooled SD: 1.31\",\"Covariance: -0.11 <br />Pooled SD: 1.61\",\"Covariance: 0.32 <br />Pooled SD: 0.65\",\"Covariance: -0.77 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 0.44\",\"Covariance: 2.65 <br />Pooled SD: 2.86\",\"Covariance: -0.38 <br />Pooled SD: 0.87\",\"Covariance: 0.15 <br />Pooled SD: 1.06\",\"Covariance: -0.49 <br />Pooled SD: 0.85\",\"Covariance: 0.31 <br />Pooled SD: 1.15\",\"Covariance: 0.18 <br />Pooled SD: 0.81\",\"Covariance: 0.18 <br />Pooled SD: 0.44\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: 0.16 <br />Pooled SD: 2.39\",\"Covariance: 0.23 <br />Pooled SD: 0.89\",\"Covariance: -0.21 <br />Pooled SD: 0.7\",\"Covariance: 0.54 <br />Pooled SD: 0.84\",\"Covariance: -0.37 <br />Pooled SD: 1.57\",\"Covariance: 0.71 <br />Pooled SD: 1\",\"Covariance: 0 <br />Pooled SD: 0.71\",\"Covariance: 0.76 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.28 <br />Pooled SD: 0.8\",\"Covariance: -0.15 <br />Pooled SD: 1.12\",\"Covariance: 0.33 <br />Pooled SD: 1.23\",\"Covariance: -0.49 <br />Pooled SD: 1.81\",\"Covariance: -0.25 <br />Pooled SD: 1.18\",\"Covariance: -0.12 <br />Pooled SD: 0.39\",\"Covariance: -0.66 <br />Pooled SD: 0.88\",\"Covariance: -0.7 <br />Pooled SD: 1.43\",\"Covariance: -0.56 <br />Pooled SD: 0.67\",\"Covariance: -0.12 <br />Pooled SD: 1.33\",\"Covariance: -0.12 <br />Pooled SD: 0.35\",\"Covariance: 0.06 <br />Pooled SD: 0.88\",\"Covariance: 0.78 <br />Pooled SD: 1.73\",\"Covariance: -0.35 <br />Pooled SD: 0.85\",\"Covariance: 0.34 <br />Pooled SD: 1.44\",\"Covariance: 0.19 <br />Pooled SD: 0.97\",\"Covariance: 1 <br />Pooled SD: 1.15\",\"Covariance: -0.17 <br />Pooled SD: 0.47\",\"Covariance: 0.67 <br />Pooled SD: 1.16\",\"Covariance: -1.53 <br />Pooled SD: 1.81\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.8 <br />Pooled SD: 1.44\",\"Covariance: 0.34 <br />Pooled SD: 0.95\",\"Covariance: -1.59 <br />Pooled SD: 2.18\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 0.77\",\"Covariance: 0.42 <br />Pooled SD: 2.03\",\"Covariance: -0.86 <br />Pooled SD: 1.35\",\"Covariance: -0.78 <br />Pooled SD: 1.44\",\"Covariance: -0.18 <br />Pooled SD: 1.18\",\"Covariance: 0.02 <br />Pooled SD: 0.62\",\"Covariance: -0.42 <br />Pooled SD: 1.24\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: -0.11 <br />Pooled SD: 0.24\",\"Covariance: -0.6 <br />Pooled SD: 1.3\",\"Covariance: 0.73 <br />Pooled SD: 1.02\",\"Covariance: 0.48 <br />Pooled SD: 0.94\",\"Covariance: 0.36 <br />Pooled SD: 0.57\",\"Covariance: -0.47 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: 0.28 <br />Pooled SD: 1.99\",\"Covariance: -0.72 <br />Pooled SD: 0.99\",\"Covariance: 0.25 <br />Pooled SD: 1.21\",\"Covariance: -0.66 <br />Pooled SD: 1.24\",\"Covariance: 0.43 <br />Pooled SD: 1.39\",\"Covariance: 0.16 <br />Pooled SD: 1.84\",\"Covariance: -0.31 <br />Pooled SD: 0.8\",\"Covariance: 0.68 <br />Pooled SD: 1.14\",\"Covariance: -0.41 <br />Pooled SD: 1.69\",\"Covariance: 0.77 <br />Pooled SD: 1.5\",\"Covariance: -0.05 <br />Pooled SD: 1.17\",\"Covariance: -0.46 <br />Pooled SD: 0.92\",\"Covariance: 0.61 <br />Pooled SD: 2.33\",\"Covariance: 0.05 <br />Pooled SD: 0.48\",\"Covariance: -0.67 <br />Pooled SD: 1.15\",\"Covariance: -2.07 <br />Pooled SD: 3.33\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: -0.85 <br />Pooled SD: 1.24\",\"Covariance: -0.03 <br />Pooled SD: 2.15\",\"Covariance: 0.76 <br />Pooled SD: 0.77\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: 0.79 <br />Pooled SD: 1.41\",\"Covariance: -0.74 <br />Pooled SD: 2.43\",\"Covariance: -0.17 <br />Pooled SD: 1.23\",\"Covariance: -0.1 <br />Pooled SD: 1.21\",\"Covariance: -0.83 <br />Pooled SD: 2.01\",\"Covariance: -0.22 <br />Pooled SD: 2.12\",\"Covariance: 0.78 <br />Pooled SD: 1.33\",\"Covariance: 0.97 <br />Pooled SD: 1.22\",\"Covariance: -0.1 <br />Pooled SD: 0.8\",\"Covariance: 0 <br />Pooled SD: 1.45\",\"Covariance: -0.16 <br />Pooled SD: 0.57\",\"Covariance: 0.93 <br />Pooled SD: 1.36\",\"Covariance: 0.83 <br />Pooled SD: 1.56\",\"Covariance: 0.77 <br />Pooled SD: 1.42\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.41 <br />Pooled SD: 1.12\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.13 <br />Pooled SD: 0.67\",\"Covariance: 0.07 <br />Pooled SD: 1.22\",\"Covariance: 0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.55 <br />Pooled SD: 0.66\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.12\",\"Covariance: 0.48 <br />Pooled SD: 1.47\",\"Covariance: 0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.4 <br />Pooled SD: 2.57\",\"Covariance: 0.37 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 0.98\",\"Covariance: -0.74 <br />Pooled SD: 1.46\",\"Covariance: -1.09 <br />Pooled SD: 1.45\",\"Covariance: 0.19 <br />Pooled SD: 1.5\",\"Covariance: -0.37 <br />Pooled SD: 1.45\",\"Covariance: 0.3 <br />Pooled SD: 0.83\",\"Covariance: -0.08 <br />Pooled SD: 1.4\",\"Covariance: -0.26 <br />Pooled SD: 0.68\",\"Covariance: 0.27 <br />Pooled SD: 1.78\",\"Covariance: 0.13 <br />Pooled SD: 0.24\",\"Covariance: 0.03 <br />Pooled SD: 0.42\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: 0.04 <br />Pooled SD: 1.23\",\"Covariance: 0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.35 <br />Pooled SD: 0.84\",\"Covariance: -0.71 <br />Pooled SD: 1.11\",\"Covariance: 0.25 <br />Pooled SD: 1.43\",\"Covariance: -0.16 <br />Pooled SD: 0.73\",\"Covariance: -0.66 <br />Pooled SD: 1.15\",\"Covariance: -0.08 <br />Pooled SD: 1.18\",\"Covariance: -0.74 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 1.22\",\"Covariance: 0.15 <br />Pooled SD: 2.2\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -0.18 <br />Pooled SD: 1.46\",\"Covariance: -0.45 <br />Pooled SD: 0.89\",\"Covariance: -0.51 <br />Pooled SD: 1.04\",\"Covariance: -0.32 <br />Pooled SD: 0.52\",\"Covariance: -0.63 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 2.17\",\"Covariance: -0.33 <br />Pooled SD: 1.79\",\"Covariance: 0.37 <br />Pooled SD: 1.1\",\"Covariance: 1.46 <br />Pooled SD: 1.87\",\"Covariance: 0.48 <br />Pooled SD: 2.23\",\"Covariance: -0.35 <br />Pooled SD: 1.23\",\"Covariance: 0.54 <br />Pooled SD: 1.36\",\"Covariance: -0.7 <br />Pooled SD: 1.06\",\"Covariance: 0.8 <br />Pooled SD: 1.36\",\"Covariance: -0.06 <br />Pooled SD: 1.03\",\"Covariance: -0.5 <br />Pooled SD: 0.81\",\"Covariance: 0.43 <br />Pooled SD: 0.86\",\"Covariance: -0.2 <br />Pooled SD: 1.25\",\"Covariance: 0 <br />Pooled SD: 0.86\",\"Covariance: 1.4 <br />Pooled SD: 1.59\",\"Covariance: -0.53 <br />Pooled SD: 0.99\",\"Covariance: 0.72 <br />Pooled SD: 1.23\",\"Covariance: -0.54 <br />Pooled SD: 1.35\",\"Covariance: -0.54 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.88\",\"Covariance: -0.19 <br />Pooled SD: 0.48\",\"Covariance: 1.18 <br />Pooled SD: 1.38\",\"Covariance: 0.32 <br />Pooled SD: 2.23\",\"Covariance: -0.87 <br />Pooled SD: 1.92\",\"Covariance: 0.52 <br />Pooled SD: 1.02\",\"Covariance: -0.02 <br />Pooled SD: 0.56\",\"Covariance: 0.46 <br />Pooled SD: 0.94\",\"Covariance: -0.43 <br />Pooled SD: 1.98\",\"Covariance: -0.08 <br />Pooled SD: 0.22\",\"Covariance: -1 <br />Pooled SD: 1.19\",\"Covariance: 0.87 <br />Pooled SD: 2.22\",\"Covariance: -0.29 <br />Pooled SD: 2.18\",\"Covariance: 0.57 <br />Pooled SD: 0.91\",\"Covariance: -0.6 <br />Pooled SD: 2.06\",\"Covariance: -0.61 <br />Pooled SD: 1.92\",\"Covariance: 0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.49 <br />Pooled SD: 0.87\",\"Covariance: -0.06 <br />Pooled SD: 1.73\",\"Covariance: -0.85 <br />Pooled SD: 1.62\",\"Covariance: -0.18 <br />Pooled SD: 0.44\",\"Covariance: 0.2 <br />Pooled SD: 1.51\",\"Covariance: 0.04 <br />Pooled SD: 0.68\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: 0.64 <br />Pooled SD: 1.44\",\"Covariance: -1.17 <br />Pooled SD: 1.6\",\"Covariance: -0.08 <br />Pooled SD: 0.69\",\"Covariance: 0.25 <br />Pooled SD: 1.44\",\"Covariance: -0.68 <br />Pooled SD: 0.77\",\"Covariance: 0.1 <br />Pooled SD: 1.38\",\"Covariance: -0.44 <br />Pooled SD: 0.78\",\"Covariance: -1.41 <br />Pooled SD: 2.79\",\"Covariance: 0.65 <br />Pooled SD: 1.62\",\"Covariance: -0.76 <br />Pooled SD: 2.06\",\"Covariance: 0.84 <br />Pooled SD: 1.79\",\"Covariance: -0.22 <br />Pooled SD: 1.16\",\"Covariance: 1.48 <br />Pooled SD: 1.89\",\"Covariance: -0.1 <br />Pooled SD: 1.47\",\"Covariance: 0.58 <br />Pooled SD: 2.82\",\"Covariance: -0.9 <br />Pooled SD: 2.01\",\"Covariance: 0.2 <br />Pooled SD: 2.26\",\"Covariance: -1.21 <br />Pooled SD: 2\",\"Covariance: 0.35 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.08\",\"Covariance: 0.37 <br />Pooled SD: 0.93\",\"Covariance: 0.13 <br />Pooled SD: 2.85\",\"Covariance: 0.28 <br />Pooled SD: 0.73\",\"Covariance: 0.49 <br />Pooled SD: 3.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -0.5 <br />Pooled SD: 2.23\",\"Covariance: -0.17 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 0.88\",\"Covariance: 0.22 <br />Pooled SD: 0.79\",\"Covariance: -0.77 <br />Pooled SD: 2.21\",\"Covariance: -0.13 <br />Pooled SD: 1.34\",\"Covariance: 0.11 <br />Pooled SD: 1.66\",\"Covariance: -0.06 <br />Pooled SD: 2.59\",\"Covariance: 0.4 <br />Pooled SD: 0.8\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.57 <br />Pooled SD: 1.72\",\"Covariance: 1.64 <br />Pooled SD: 1.89\",\"Covariance: -0.21 <br />Pooled SD: 1.05\",\"Covariance: 0.18 <br />Pooled SD: 0.99\",\"Covariance: 0.1 <br />Pooled SD: 1.52\",\"Covariance: -0.1 <br />Pooled SD: 0.65\",\"Covariance: 0.1 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 2.17\",\"Covariance: 0.49 <br />Pooled SD: 0.79\",\"Covariance: 0 <br />Pooled SD: 1.09\",\"Covariance: -1.68 <br />Pooled SD: 2.96\",\"Covariance: -0.68 <br />Pooled SD: 1.22\",\"Covariance: -0.04 <br />Pooled SD: 1.7\",\"Covariance: 0.02 <br />Pooled SD: 1.03\",\"Covariance: -0.22 <br />Pooled SD: 0.31\",\"Covariance: 0.58 <br />Pooled SD: 1.41\",\"Covariance: 0.29 <br />Pooled SD: 1.05\",\"Covariance: -1.43 <br />Pooled SD: 1.63\",\"Covariance: -0.35 <br />Pooled SD: 1.94\",\"Covariance: -0.55 <br />Pooled SD: 0.7\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: 0.54 <br />Pooled SD: 0.83\",\"Covariance: -0.22 <br />Pooled SD: 2.03\",\"Covariance: -0.1 <br />Pooled SD: 1.37\",\"Covariance: 1.11 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 2.46\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: -0.6 <br />Pooled SD: 1.09\",\"Covariance: -0.1 <br />Pooled SD: 0.85\",\"Covariance: 0.92 <br />Pooled SD: 1.53\",\"Covariance: -0.15 <br />Pooled SD: 0.57\",\"Covariance: -0.32 <br />Pooled SD: 0.75\",\"Covariance: 0.81 <br />Pooled SD: 1.57\",\"Covariance: 0.45 <br />Pooled SD: 0.93\",\"Covariance: 0.51 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.65\",\"Covariance: 0.41 <br />Pooled SD: 0.89\",\"Covariance: 0.31 <br />Pooled SD: 1.32\",\"Covariance: -0.04 <br />Pooled SD: 1.33\",\"Covariance: 0.05 <br />Pooled SD: 0.25\",\"Covariance: -0.05 <br />Pooled SD: 2.09\",\"Covariance: -0.32 <br />Pooled SD: 1.43\",\"Covariance: -0.71 <br />Pooled SD: 2.1\",\"Covariance: -0.04 <br />Pooled SD: 0.97\",\"Covariance: -0.92 <br />Pooled SD: 1.57\",\"Covariance: -0.52 <br />Pooled SD: 1.03\",\"Covariance: 0.22 <br />Pooled SD: 0.91\",\"Covariance: 0.48 <br />Pooled SD: 1.16\",\"Covariance: -0.32 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: -1.11 <br />Pooled SD: 2.18\",\"Covariance: -0.31 <br />Pooled SD: 1.24\",\"Covariance: 0.71 <br />Pooled SD: 0.95\",\"Covariance: -0.65 <br />Pooled SD: 1.18\",\"Covariance: 0.06 <br />Pooled SD: 1.14\",\"Covariance: 0.67 <br />Pooled SD: 1.52\",\"Covariance: 0.89 <br />Pooled SD: 1\",\"Covariance: 0.4 <br />Pooled SD: 0.67\",\"Covariance: 0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.31 <br />Pooled SD: 1.34\",\"Covariance: -0.32 <br />Pooled SD: 1.42\",\"Covariance: -0.3 <br />Pooled SD: 1.52\",\"Covariance: 0.76 <br />Pooled SD: 1.35\",\"Covariance: 0.34 <br />Pooled SD: 1.87\",\"Covariance: -0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.77 <br />Pooled SD: 0.87\",\"Covariance: -0.52 <br />Pooled SD: 1.73\",\"Covariance: -1.27 <br />Pooled SD: 2.37\",\"Covariance: 1.23 <br />Pooled SD: 1.65\",\"Covariance: 1.09 <br />Pooled SD: 2.1\",\"Covariance: 0.53 <br />Pooled SD: 1.86\",\"Covariance: 0.64 <br />Pooled SD: 1.71\",\"Covariance: 0.06 <br />Pooled SD: 1.09\",\"Covariance: 0.04 <br />Pooled SD: 1.98\",\"Covariance: 0.33 <br />Pooled SD: 1.25\",\"Covariance: -0.21 <br />Pooled SD: 0.55\",\"Covariance: 0.94 <br />Pooled SD: 1.06\",\"Covariance: -0.62 <br />Pooled SD: 1.53\",\"Covariance: 0.39 <br />Pooled SD: 0.9\",\"Covariance: 0.16 <br />Pooled SD: 0.53\",\"Covariance: -0.1 <br />Pooled SD: 2\",\"Covariance: 0.54 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.05\",\"Covariance: 0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.44 <br />Pooled SD: 1.71\",\"Covariance: -0.05 <br />Pooled SD: 0.53\",\"Covariance: 0 <br />Pooled SD: 1.56\",\"Covariance: -0.64 <br />Pooled SD: 0.83\",\"Covariance: 0.33 <br />Pooled SD: 0.76\",\"Covariance: 0.79 <br />Pooled SD: 1.12\",\"Covariance: 0.43 <br />Pooled SD: 0.82\",\"Covariance: 0.14 <br />Pooled SD: 2.04\",\"Covariance: 0.24 <br />Pooled SD: 1.53\",\"Covariance: 0.31 <br />Pooled SD: 1.35\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.17 <br />Pooled SD: 1.41\",\"Covariance: 1.01 <br />Pooled SD: 1.23\",\"Covariance: -1.18 <br />Pooled SD: 2.03\",\"Covariance: 0.48 <br />Pooled SD: 1.97\",\"Covariance: -0.02 <br />Pooled SD: 0.77\",\"Covariance: 0.2 <br />Pooled SD: 1.72\",\"Covariance: 0.55 <br />Pooled SD: 1.35\",\"Covariance: 0.35 <br />Pooled SD: 0.82\",\"Covariance: 0.21 <br />Pooled SD: 1.5\",\"Covariance: 0.38 <br />Pooled SD: 0.67\",\"Covariance: 0.17 <br />Pooled SD: 0.59\",\"Covariance: 0.04 <br />Pooled SD: 1.19\",\"Covariance: -0.08 <br />Pooled SD: 0.71\",\"Covariance: -0.06 <br />Pooled SD: 1.91\",\"Covariance: 0.25 <br />Pooled SD: 0.61\",\"Covariance: 0.78 <br />Pooled SD: 2.4\",\"Covariance: 0.09 <br />Pooled SD: 1.56\",\"Covariance: -0.35 <br />Pooled SD: 1.02\",\"Covariance: -0.2 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 1.07\",\"Covariance: 0.49 <br />Pooled SD: 2.78\",\"Covariance: -0.31 <br />Pooled SD: 1.45\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.66 <br />Pooled SD: 0.77\",\"Covariance: 0.36 <br />Pooled SD: 1.56\",\"Covariance: -0.61 <br />Pooled SD: 0.74\",\"Covariance: -0.29 <br />Pooled SD: 1.29\",\"Covariance: -0.67 <br />Pooled SD: 1.44\",\"Covariance: 0.38 <br />Pooled SD: 0.95\",\"Covariance: -0.17 <br />Pooled SD: 0.89\",\"Covariance: 0.31 <br />Pooled SD: 0.78\",\"Covariance: 0.5 <br />Pooled SD: 2.26\",\"Covariance: 0.25 <br />Pooled SD: 0.51\",\"Covariance: 0 <br />Pooled SD: 0.64\",\"Covariance: -0.54 <br />Pooled SD: 1.29\",\"Covariance: 0.56 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 1.04\",\"Covariance: 0.7 <br />Pooled SD: 2.71\",\"Covariance: 0.04 <br />Pooled SD: 0.26\",\"Covariance: 0.31 <br />Pooled SD: 0.84\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.16 <br />Pooled SD: 0.97\",\"Covariance: -0.71 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 0.52\",\"Covariance: -0.04 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.57\",\"Covariance: -0.17 <br />Pooled SD: 1.12\",\"Covariance: 0.42 <br />Pooled SD: 1.32\",\"Covariance: 0.43 <br />Pooled SD: 0.95\",\"Covariance: -0.07 <br />Pooled SD: 0.71\",\"Covariance: -0.53 <br />Pooled SD: 0.73\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -0.12 <br />Pooled SD: 1.98\",\"Covariance: 0.04 <br />Pooled SD: 2.62\",\"Covariance: -0.22 <br />Pooled SD: 0.44\",\"Covariance: 1.54 <br />Pooled SD: 2.05\",\"Covariance: 0.58 <br />Pooled SD: 1.27\",\"Covariance: 0.34 <br />Pooled SD: 0.89\",\"Covariance: -0.35 <br />Pooled SD: 0.86\",\"Covariance: 0.51 <br />Pooled SD: 0.56\",\"Covariance: -0.82 <br />Pooled SD: 1.75\",\"Covariance: -0.87 <br />Pooled SD: 1.12\",\"Covariance: 0.29 <br />Pooled SD: 1.05\",\"Covariance: -1.15 <br />Pooled SD: 1.64\",\"Covariance: 0.93 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 1.55\",\"Covariance: 0.61 <br />Pooled SD: 1.42\",\"Covariance: -0.03 <br />Pooled SD: 1.27\",\"Covariance: 0.51 <br />Pooled SD: 0.71\",\"Covariance: -0.07 <br />Pooled SD: 1.07\",\"Covariance: 1.18 <br />Pooled SD: 1.43\",\"Covariance: -0.05 <br />Pooled SD: 1.19\",\"Covariance: 0.08 <br />Pooled SD: 1.46\",\"Covariance: -0.67 <br />Pooled SD: 1.72\",\"Covariance: 0.04 <br />Pooled SD: 1.1\",\"Covariance: 1.35 <br />Pooled SD: 2.4\",\"Covariance: -0.71 <br />Pooled SD: 1.53\",\"Covariance: -0.24 <br />Pooled SD: 0.79\",\"Covariance: -0.54 <br />Pooled SD: 1.34\",\"Covariance: -0.26 <br />Pooled SD: 0.41\",\"Covariance: -0.38 <br />Pooled SD: 1.29\",\"Covariance: -0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.74\",\"Covariance: 0.56 <br />Pooled SD: 1.59\",\"Covariance: 0.06 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 2.01\",\"Covariance: 1.27 <br />Pooled SD: 3.4\",\"Covariance: 0.94 <br />Pooled SD: 1.48\",\"Covariance: -0.08 <br />Pooled SD: 0.33\",\"Covariance: -0.17 <br />Pooled SD: 0.98\",\"Covariance: 0.64 <br />Pooled SD: 1.26\",\"Covariance: -0.5 <br />Pooled SD: 0.89\",\"Covariance: -0.61 <br />Pooled SD: 0.67\",\"Covariance: 0.24 <br />Pooled SD: 2.08\",\"Covariance: -0.36 <br />Pooled SD: 1.4\",\"Covariance: 0.2 <br />Pooled SD: 1.09\",\"Covariance: 0.29 <br />Pooled SD: 0.63\",\"Covariance: 0.32 <br />Pooled SD: 1.88\",\"Covariance: 0.46 <br />Pooled SD: 1.22\",\"Covariance: 0.4 <br />Pooled SD: 1.06\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -1.07 <br />Pooled SD: 1.2\"],\"frame\":\"2900\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3000\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7,0.17,-1.1,0.54,0.96,0.46,0.49,0.1,0.2,-0.03,0.45,0.13,0.05,-0.65,-0.3,0.66,-0.46,0.12,-0.16,0.35,-0.77,0.2,-0.57,0.76,0.18,0.11,0.02,-0.28,-0.62,-0.65,-0.12,0.32,-0.48,0.38,0.91,-0.69,-0.6,0.09,1.15,-0.57,0.05,0.3,-0.07,0.28,-0.01,-0.03,0.95,0.83,-0.97,0.04,-0.58,-0.96,0.23,0.81,-0.11,-0.54,0.58,-0.39,0.78,0.4,-0.32,-0.38,-0.57,-0.11,-0.08,-0.08,-0.57,0.33,-0.33,0.27,-1.12,1.37,-1.64,-2.13,-0.14,-1.43,0.06,0.13,0.03,0.08,0.22,-0.4,0.12,0.29,-0.93,0.81,0.46,-0.18,0.39,-1.82,0.52,-0.45,0.1,-0.65,-0.2,-0.42,0.25,-0.22,0.12,-0.28,1.16,0.5,0.28,-1.01,0.38,1.33,0.61,0.03,0.75,0.57,-0.1,0.18,0.41,0.54,-0.03,0.61,0.05,0.34,-0.18,0.38,-0.38,0.41,-0.39,-0.26,1.37,-0.34,0.17,0.49,-0.11,-0.15,0.87,0.13,-0.2,0.04,-0.09,0.58,0.82,-0.05,0.35,0.12,-0.02,0.11,0.11,0.2,-0.16,0.06,-0.39,0.58,-0.75,-0.08,0.22,-0.1,-0.26,-0.94,-0.19,0.31,-0.17,1.21,-0.88,0.22,-1.27,0.75,-0.05,0.96,-0.39,0.52,-0.15,0.08,-0.33,0.26,-0.16,-0.86,0.16,-0.55,0.51,0.08,0.07,1.51,0.48,-0.22,0.91,0.63,1.31,0.97,-0.05,-0.21,0.55,0.57,0.36,-0.23,0,-0.28,-0.4,0.34,-0.23,0.47,0.66,0.63,0.1,-0.07,0.1,0.23,-0.25,0.45,0.18,-0.46,-0.35,-0.38,0.53,-0.18,0.01,0.01,0.57,-0.44,0.13,0.78,-0.15,0.26,0.17,1.1,-0.09,-0.52,-0.12,0.38,0.64,0.18,-0.65,0.07,-0.66,0.12,1.45,0.5,0.06,0.04,0.7,0.66,0.08,-1.54,0.45,0.16,0.01,-0.06,-0.27,0.3,0,-0.44,-0.89,0.64,1.1,0.5,0.32,-0.48,-0.28,0.44,0,-0.02,0.13,-0.45,-0.02,-0.82,-0.26,0.7,0.37,0.2,1.99,-0.07,0.29,1.79,-1.05,0.39,0.7,0.07,-0.39,-1.65,0.34,0.23,-0,-0.86,0.27,-1.43,0.38,0.44,0.45,1.33,0.16,-0.26,1.01,0.12,-0.56,-0.47,-0.18,-0.21,-0.62,-0.8,-0.09,0.27,-0.48,0.06,-0.24,0.67,-0.19,-0.8,0.85,-0.19,-0.86,0.79,-0.76,0.22,0.1,-0.74,1,0.3,-0.98,-0.44,-0.19,-0.86,-0.13,0.17,-0.04,0.37,0.23,0.95,-0.88,0.18,0.19,-0.12,0.05,-0.27,0.43,1.16,0.19,0.51,0.05,0.56,-0.08,-3.39,-0.44,-0.93,0.07,-0.42,0.99,0.33,-0.31,0.11,0.33,0.39,-0.85,-0.53,-0.75,1.18,-1.21,0.83,-0.25,-0.74,-0.33,-0.46,1.62,0.16,-0.55,-0.13,-0.14,-0.21,-0.66,0.04,1.08,0.59,-0.02,-1.14,0.54,-0.83,-0.3,0.54,0.73,0.41,0.07,-0.14,0.16,-0.33,-0.32,0.35,-0.41,-0.11,0.32,-0.77,-0.44,-0.08,2.65,-0.38,0.15,-0.49,0.31,0.18,0.18,-0.01,0.16,0.23,-0.21,0.54,-0.37,0.71,-0,0.76,0.07,-0.28,-0.15,0.33,-0.49,-0.25,-0.12,-0.66,-0.7,-0.56,-0.12,-0.12,0.06,0.78,-0.35,0.34,0.19,1,-0.17,0.67,-1.53,-0.54,0.8,0.34,-1.59,0.52,-0.1,0.42,-0.86,-0.78,-0.18,0.02,-0.42,-0.01,-0.11,-0.6,0.73,0.48,0.36,-0.47,-0.25,0.28,-0.72,0.25,-0.66,0.43,0.16,-0.31,0.68,-0.41,0.77,-0.05,-0.46,0.61,0.05,-0.67,-2.07,-0.82,-0.85,-0.03,0.76,-0.28,0.79,-0.74,-0.17,-0.1,-0.83,-0.22,0.78,0.97,-0.1,0,-0.16,0.93,0.83,0.77,-0.12,-0.41,0.13,-0.13,0.07,0.34,0.02,-0.55,-0.54,0.28,-0.05,0.48,0.42,0.4,0.37,0.14,-0.74,-1.09,0.19,-0.37,0.3,-0.08,-0.26,0.27,0.13,0.03,0.79,0.04,0.21,-0.35,-0.71,0.25,-0.16,-0.66,-0.08,-0.74,0.13,0.15,0.09,-0.18,-0.45,-0.51,-0.32,-0.63,0.16,-0.33,0.37,1.46,0.48,-0.35,0.54,-0.7,0.8,-0.06,-0.5,0.43,-0.2,0,1.4,-0.53,0.72,-0.54,-0.54,0.52,-0.19,1.18,0.32,-0.87,0.52,-0.02,0.46,-0.43,-0.08,-1,0.87,-0.29,0.57,-0.6,-0.61,0.09,0.49,-0.06,-0.85,-0.18,0.2,0.04,0,0.64,-1.17,-0.08,0.25,-0.68,0.1,-0.44,-1.41,0.65,-0.76,0.84,-0.22,1.48,-0.1,0.58,-0.9,0.2,-1.21,0.35,-0.48,0.37,0.13,0.28,0.49,-0.39,-0.5,-0.17,0.36,0.22,-0.77,-0.13,0.11,-0.06,0.4,0.99,0.57,1.64,-0.21,0.18,0.1,-0.1,0.1,-0.28,0.49,0,-1.68,-0.68,-0.04,0.02,-0.22,0.58,0.29,-1.43,-0.35,-0.55,-0.2,0.54,-0.22,-0.1,1.11,-0.01,-0.43,-0.6,-0.1,0.92,-0.15,-0.32,0.81,0.45,0.51,0.33,0.41,0.31,-0.04,0.05,-0.05,-0.32,-0.71,-0.04,-0.92,-0.52,0.22,0.48,-0.32,-0.46,-1.11,-0.31,0.71,-0.65,0.06,0.67,0.89,0.4,0.27,0.31,-0.32,-0.3,0.76,0.34,-0.02,-0.77,-0.52,-1.27,1.23,1.09,0.53,0.64,0.06,0.04,0.33,-0.21,0.94,-0.62,0.39,0.16,-0.1,0.54,-0.15,0.27,-0.16,-0.21,0.03,0.44,-0.05,-0,-0.64,0.33,0.79,0.43,0.14,0.24,0.31,-0.23,0.17,1.01,-1.18,0.48,-0.02,0.2,0.55,0.35,0.21,0.38,0.17,0.04,-0.08,-0.06,0.25,0.78,0.09,-0.35,-0.2,0.26,0.49,-0.31,-0.18,0.06,-0.66,0.36,-0.61,-0.29,-0.67,0.38,-0.17,0.31,0.5,0.25,-0,-0.54,0.56,0.34,0.7,0.04,0.31,0.51,0.16,-0.71,0.05,-0.04,-0.07,-0.17,0.42,0.43,-0.07,-0.53,-0.17,-0.12,0.04,-0.22,1.54,0.58,0.34,-0.35,0.51,-0.82,-0.87,0.29,-1.15,0.93,0.18,0.61,-0.03,0.51,-0.07,1.18,-0.05,0.08,-0.67,0.04,1.35,-0.71,-0.24,-0.54,-0.26,-0.38,-0.35,-0.64,0.56,0.06,0.48,1.27,0.94,-0.08,-0.17,0.64,-0.5,-0.61,0.24,-0.36,0.2,0.29,0.32,0.46,0.4,-0.81,-1.07,-0.15,-0.75,0.34,0.05,-0.2,0.55,0.51,-1.49,0.85,-0.03,-0.59,-0.68,-1.61,-0.39,-0.08,-0.38,-0.13,0.14,1.26,-0.01,0.12,-0.35,0.73,0.87,0.41,0.09,0.27,-0.6,-0.33,0.38,-0.29,-1.19,-0.17,0.03,0.69,-0.61,0.67,0.29,0.53,-0.73,0.16,0.19,0.83,1.34,-0.96,-0.29,-0.09,-0.32,0.33,-1.44,-1.16,0.64,-0.62,-0.63,-0.52,0.16,1.44,-0.17,-0.35,-0.01,0.11,0.63,0.35,-0.75,0.39,0.25,0.17,-0.01,-0.4,0.31,0.47,0.24,0.3,0.03,-0.35,0.19,0.46,-1.53,-0.43,0.04,-1.38,0.79,0.05,0.16,0.2,-0.04,0.23,-0.32,0.24,0.26,-0.31,0.18,-0.88,-1.41,-0.42,-0.87,0.65,-0.08,0.05,0.67],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14,1.39,2.11,0.64,1.87,1.81,2.14,0.73,1.17,0.99,0.98,1.73,0.65,1.81,0.77,1.01,1.86,1.58,0.7,0.98,1.55,0.98,1.03,1.13,0.92,0.96,1.17,1.26,1.33,1.35,0.82,2.11,0.87,1.69,1.42,0.97,2.99,2.68,2.32,1.16,0.89,1.21,0.46,1.48,1.39,0.39,2.16,1.26,1.14,0.7,2.74,1.49,0.66,1.46,0.56,0.59,0.82,1.39,1.14,1.33,0.95,0.62,1.05,1.85,1.05,1.51,0.98,1.42,1.14,1.9,1.43,1.65,2.42,2.59,0.94,2.3,0.75,0.99,1.16,1.12,0.75,0.55,0.86,0.93,1.63,1.08,0.67,0.86,0.63,3.11,1.71,1.08,1.13,1.66,1.17,0.74,1.87,1.19,0.4,1.56,1.48,0.71,0.9,1.56,0.74,1.7,2.04,0.94,1.42,1.44,0.49,0.41,0.95,1.05,0.9,1.02,0.73,0.92,2.43,1.37,1.33,1.64,1.02,0.62,1.88,1.68,2.41,1.6,1.51,2.26,2.39,0.25,0.65,0.48,1.5,1.71,1.63,0.75,1.08,0.77,1.06,0.69,0.93,1.41,0.85,1.86,1.11,1.12,1.12,1.71,0.35,1.05,1.53,1.57,0.4,0.9,0.96,2.18,1.88,0.58,2.39,2.15,1.81,1.59,1.71,1.16,0.86,0.95,0.86,1.31,1.03,1.8,1.17,1.9,1.28,0.36,0.98,1.56,1.18,2.7,1.98,1.3,1.86,2.1,0.6,0.89,1.12,3.05,0.97,0.85,0.38,1.18,0.72,0.86,1.07,1.64,2.35,1.4,1.41,0.51,0.99,1.61,2.32,0.6,0.72,0.8,1.47,0.85,0.74,0.4,0.62,1.42,0.85,0.68,0.72,1.06,0.65,0.67,1.68,1.67,1.43,0.82,1.01,1.24,1.69,0.69,1.96,0.81,0.91,1.76,1.62,0.72,1.04,1.06,1.99,2.49,0.69,2.17,1.46,0.63,0.48,0.49,1.21,1.57,0.82,0.53,2.58,0.7,1.49,1.53,0.69,0.49,0.38,1.06,0.61,0.44,1.73,1.25,0.5,1.19,2.28,0.81,1.59,0.41,2.39,0.23,0.57,2.95,1.48,1.6,1,1.45,0.78,2.34,0.87,1.27,1.66,1.4,0.77,1.62,1.2,0.65,0.85,2.39,1.21,1.18,1.18,0.93,0.9,0.9,0.69,0.77,1.15,1.31,0.49,1.36,1.13,0.93,0.51,1.15,0.93,1.25,1.34,1.94,2.03,1.38,1.97,0.58,0.37,1.13,1.74,1.63,1.54,0.73,0.8,1.82,0.74,1.01,0.46,0.56,0.69,1.84,1.32,0.59,0.91,1.27,0.87,0.73,2.73,1.7,0.58,1.72,0.64,1.14,2.25,3.65,1.08,1.64,1.46,1.38,1.1,0.98,2.19,2.18,1.83,0.99,1.7,2.21,0.85,1.55,1.61,0.99,0.49,2.13,1.5,0.99,3.64,0.86,0.93,0.76,1.48,1.22,1.37,1.5,2.4,0.96,2.59,2.22,1.16,2.07,1.19,0.88,1.95,0.61,1.21,0.78,0.51,1.8,1.35,1.82,1.31,1.61,0.65,1.15,1.85,0.44,2.86,0.87,1.06,0.85,1.15,0.81,0.44,0.58,2.39,0.89,0.7,0.84,1.57,1,0.71,1.64,1.21,0.8,1.12,1.23,1.81,1.18,0.39,0.88,1.43,0.67,1.33,0.35,0.88,1.73,0.85,1.44,0.97,1.15,0.47,1.16,1.81,1.32,1.44,0.95,2.18,1.13,0.77,2.03,1.35,1.44,1.18,0.62,1.24,0.58,0.24,1.3,1.02,0.94,0.57,1.22,1.75,1.99,0.99,1.21,1.24,1.39,1.84,0.8,1.14,1.69,1.5,1.17,0.92,2.33,0.48,1.15,3.33,1.12,1.24,2.15,0.77,0.95,1.41,2.43,1.23,1.21,2.01,2.12,1.33,1.22,0.8,1.45,0.57,1.36,1.56,1.42,1.29,1.12,0.91,0.67,1.22,0.69,0.67,0.66,1.02,0.4,1.12,1.47,1.65,2.57,1.07,0.98,1.46,1.45,1.5,1.45,0.83,1.4,0.68,1.78,0.24,0.42,2.15,1.23,1.33,0.84,1.11,1.43,0.73,1.15,1.18,2.21,1.22,2.2,0.48,1.46,0.89,1.04,0.52,0.78,2.17,1.79,1.1,1.87,2.23,1.23,1.36,1.06,1.36,1.03,0.81,0.86,1.25,0.86,1.59,0.99,1.23,1.35,1.45,0.88,0.48,1.38,2.23,1.92,1.02,0.56,0.94,1.98,0.22,1.19,2.22,2.18,0.91,2.06,1.92,0.52,0.87,1.73,1.62,0.44,1.51,0.68,0.82,1.44,1.6,0.69,1.44,0.77,1.38,0.78,2.79,1.62,2.06,1.79,1.16,1.89,1.47,2.82,2.01,2.26,2,1.36,1.08,0.93,2.85,0.73,3.45,0.78,2.23,1.15,0.88,0.79,2.21,1.34,1.66,2.59,0.8,1.1,1.72,1.89,1.05,0.99,1.52,0.65,1.49,2.17,0.79,1.09,2.96,1.22,1.7,1.03,0.31,1.41,1.05,1.63,1.94,0.7,1.17,0.83,2.03,1.37,1.63,2.46,1.55,1.09,0.85,1.53,0.57,0.75,1.57,0.93,1.06,1.65,0.89,1.32,1.33,0.25,2.09,1.43,2.1,0.97,1.57,1.03,0.91,1.16,1.52,1.12,2.18,1.24,0.95,1.18,1.14,1.52,1,0.67,1.21,1.34,1.42,1.52,1.35,1.87,1.66,0.87,1.73,2.37,1.65,2.1,1.86,1.71,1.09,1.98,1.25,0.55,1.06,1.53,0.9,0.53,2,1.08,0.58,0.77,1.41,1.05,0.55,1.71,0.53,1.56,0.83,0.76,1.12,0.82,2.04,1.53,1.35,0.57,1.41,1.23,2.03,1.97,0.77,1.72,1.35,0.82,1.5,0.67,0.59,1.19,0.71,1.91,0.61,2.4,1.56,1.02,0.84,1.07,2.78,1.45,1.21,1.4,0.77,1.56,0.74,1.29,1.44,0.95,0.89,0.78,2.26,0.51,0.64,1.29,1.36,1.04,2.71,0.26,0.84,1.28,0.97,1.17,0.52,1.41,0.57,1.12,1.32,0.95,0.71,0.73,0.95,1.98,2.62,0.44,2.05,1.27,0.89,0.86,0.56,1.75,1.12,1.05,1.64,1.2,1.55,1.42,1.27,0.71,1.07,1.43,1.19,1.46,1.72,1.1,2.4,1.53,0.79,1.34,0.41,1.29,0.97,1.74,1.59,2.18,2.01,3.4,1.48,0.33,0.98,1.26,0.89,0.67,2.08,1.4,1.09,0.63,1.88,1.22,1.06,1.04,1.2,0.78,1.32,0.48,1.01,0.54,0.95,1.06,3.5,2.39,2.63,1.91,2.18,2.18,1.47,1.06,1.13,2.66,2.01,1.97,0.26,1.21,1.69,2.12,1.34,1.01,0.66,2.22,1.08,1.67,0.62,0.72,2.1,1.37,1.03,1.08,1,1.11,0.94,0.91,1.25,0.71,0.85,1.93,1.57,3.92,2.9,0.29,1.25,0.65,1.67,1.58,1.26,1.78,1.34,1.62,0.42,1.52,1.05,1.14,0.53,2.06,0.94,0.89,1.35,3.64,1.58,1.29,1.8,2.33,0.89,1.49,1.89,0.77,0.39,1.05,1.43,1.1,2.27,0.98,1.76,3.15,1.86,1.06,1.64,0.7,1.67,1.3,1.07,1.5,1.78,1,0.7,3.2,1.81,0.92,2.2,1.24,1.5,0.33,1.53],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38,0.15,0.53,0.07,0.37,0.03,0.16,-0.41,-0.64,0.18,-0.22,-0.57,-0.07,-0.34,0.11,0.07,0.18,-0.13,-0.51,-0.49,-0.63,-0.8,0.07,-0.18,0.33,0.78,0.21,-0.28,0.4,-0.66,0.59,-0.06,-0.61,0.5,-0.16,0,0.88,-0.53,0.59,-0.4,-0.37,0.6,-0.4,0.85,0.14,-0.45,0.51,-0.03,0.49,-0.22,-0.37,-0.84,0.39,-0.14,0.63,-0.29,-0.31,0.18,0.56,-0.04,-0.53,-0.41,0.13,0.06,0,0.44,-0.73,-0.12,0.17,-0.88,0.07,-0.56,-0.5,0.4,-0.37,0.47,-0.19,0.78,-0.07,0.2,-0.45,0.09,-0.6,0.26,-0.44,0.4,0.05,0.39,0.14,-0.49,-0.22,-0.14,0.41,0.28,-0.35,-0.1,0.07,-0.02,0.5,0.9,0.33,0.87,-0.2,0.19,0.07,-0.15,0.06,-0.13,0.62,0,-0.57,-0.56,-0.02,0.02,-0.7,0.41,0.28,-0.88,-0.18,-0.78,-0.17,0.66,-0.11,-0.07,0.68,-0,-0.27,-0.55,-0.12,0.6,-0.26,-0.42,0.51,0.48,0.48,0.2,0.46,0.24,-0.03,0.2,-0.03,-0.23,-0.34,-0.04,-0.59,-0.5,0.24,0.42,-0.21,-0.41,-0.51,-0.25,0.75,-0.55,0.05,0.44,0.89,0.6,0.23,0.23,-0.22,-0.19,0.56,0.18,-0.01,-0.88,-0.3,-0.53,0.75,0.52,0.28,0.38,0.05,0.02,0.26,-0.39,0.88,-0.41,0.43,0.31,-0.05,0.5,-0.26,0.36,-0.11,-0.2,0.05,0.26,-0.1,-0,-0.78,0.44,0.7,0.52,0.07,0.16,0.23,-0.4,0.12,0.83,-0.58,0.24,-0.02,0.12,0.41,0.43,0.14,0.56,0.28,0.03,-0.11,-0.03,0.41,0.32,0.06,-0.34,-0.24,0.24,0.18,-0.22,-0.15,0.05,-0.86,0.23,-0.83,-0.22,-0.46,0.4,-0.19,0.4,0.22,0.49,-0,-0.42,0.41,0.33,0.26,0.17,0.37,0.4,0.16,-0.61,0.1,-0.03,-0.13,-0.15,0.32,0.46,-0.09,-0.72,-0.18,-0.06,0.02,-0.51,0.75,0.45,0.38,-0.4,0.9,-0.47,-0.78,0.28,-0.7,0.77,0.11,0.43,-0.02,0.72,-0.07,0.82,-0.05,0.06,-0.39,0.03,0.57,-0.46,-0.3,-0.4,-0.63,-0.3,-0.36,-0.37,0.35,0.03,0.24,0.37,0.64,-0.24,-0.18,0.51,-0.56,-0.9,0.12,-0.26,0.18,0.47,0.17,0.38,0.38,-0.78,-0.89,-0.19,-0.57,0.7,0.05,-0.37,0.58,0.48,-0.43,0.36,-0.01,-0.31,-0.31,-0.74,-0.27,-0.08,-0.33,-0.05,0.07,0.64,-0.04,0.1,-0.2,0.34,0.65,0.4,0.13,0.12,-0.56,-0.2,0.62,-0.4,-0.57,-0.12,0.03,0.64,-0.6,0.6,0.31,0.58,-0.59,0.22,0.23,0.43,0.85,-0.25,-0.1,-0.33,-0.26,0.5,-0.86,-0.74,0.5,-0.35,-0.47,-0.32,0.37,0.95,-0.16,-0.31,-0.02,0.05,0.67,0.39,-0.56,0.11,0.16,0.14,-0,-0.17,0.35,0.32,0.13,0.39,0.07,-0.33,0.14,0.41,-0.68,-0.43,0.02,-0.44,0.42,0.05,0.1,0.29,-0.03,0.18,-0.3,0.16,0.14,-0.31,0.26,-0.28,-0.78,-0.46,-0.39,0.52,-0.05,0.15,0.44],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38,0.15,0.53,0.07,0.37,0.03,0.16,-0.41,-0.64,0.18,-0.22,-0.57,-0.07,-0.34,0.11,0.07,0.18,-0.13,-0.51,-0.49,-0.63,-0.8,0.07,-0.18,0.33,0.78,0.21,-0.28,0.4,-0.66,0.59,-0.06,-0.61,0.5,-0.16,0,0.88,-0.53,0.59,-0.4,-0.37,0.6,-0.4,0.85,0.14,-0.45,0.51,-0.03,0.49,-0.22,-0.37,-0.84,0.39,-0.14,0.63,-0.29,-0.31,0.18,0.56,-0.04,-0.53,-0.41,0.13,0.06,0,0.44,-0.73,-0.12,0.17,-0.88,0.07,-0.56,-0.5,0.4,-0.37,0.47,-0.19,0.78,-0.07,0.2,-0.45,0.09,-0.6,0.26,-0.44,0.4,0.05,0.39,0.14,-0.49,-0.22,-0.14,0.41,0.28,-0.35,-0.1,0.07,-0.02,0.5,0.9,0.33,0.87,-0.2,0.19,0.07,-0.15,0.06,-0.13,0.62,0,-0.57,-0.56,-0.02,0.02,-0.7,0.41,0.28,-0.88,-0.18,-0.78,-0.17,0.66,-0.11,-0.07,0.68,-0,-0.27,-0.55,-0.12,0.6,-0.26,-0.42,0.51,0.48,0.48,0.2,0.46,0.24,-0.03,0.2,-0.03,-0.23,-0.34,-0.04,-0.59,-0.5,0.24,0.42,-0.21,-0.41,-0.51,-0.25,0.75,-0.55,0.05,0.44,0.89,0.6,0.23,0.23,-0.22,-0.19,0.56,0.18,-0.01,-0.88,-0.3,-0.53,0.75,0.52,0.28,0.38,0.05,0.02,0.26,-0.39,0.88,-0.41,0.43,0.31,-0.05,0.5,-0.26,0.36,-0.11,-0.2,0.05,0.26,-0.1,-0,-0.78,0.44,0.7,0.52,0.07,0.16,0.23,-0.4,0.12,0.83,-0.58,0.24,-0.02,0.12,0.41,0.43,0.14,0.56,0.28,0.03,-0.11,-0.03,0.41,0.32,0.06,-0.34,-0.24,0.24,0.18,-0.22,-0.15,0.05,-0.86,0.23,-0.83,-0.22,-0.46,0.4,-0.19,0.4,0.22,0.49,-0,-0.42,0.41,0.33,0.26,0.17,0.37,0.4,0.16,-0.61,0.1,-0.03,-0.13,-0.15,0.32,0.46,-0.09,-0.72,-0.18,-0.06,0.02,-0.51,0.75,0.45,0.38,-0.4,0.9,-0.47,-0.78,0.28,-0.7,0.77,0.11,0.43,-0.02,0.72,-0.07,0.82,-0.05,0.06,-0.39,0.03,0.57,-0.46,-0.3,-0.4,-0.63,-0.3,-0.36,-0.37,0.35,0.03,0.24,0.37,0.64,-0.24,-0.18,0.51,-0.56,-0.9,0.12,-0.26,0.18,0.47,0.17,0.38,0.38,-0.78,-0.89,-0.19,-0.57,0.7,0.05,-0.37,0.58,0.48,-0.43,0.36,-0.01,-0.31,-0.31,-0.74,-0.27,-0.08,-0.33,-0.05,0.07,0.64,-0.04,0.1,-0.2,0.34,0.65,0.4,0.13,0.12,-0.56,-0.2,0.62,-0.4,-0.57,-0.12,0.03,0.64,-0.6,0.6,0.31,0.58,-0.59,0.22,0.23,0.43,0.85,-0.25,-0.1,-0.33,-0.26,0.5,-0.86,-0.74,0.5,-0.35,-0.47,-0.32,0.37,0.95,-0.16,-0.31,-0.02,0.05,0.67,0.39,-0.56,0.11,0.16,0.14,-0,-0.17,0.35,0.32,0.13,0.39,0.07,-0.33,0.14,0.41,-0.68,-0.43,0.02,-0.44,0.42,0.05,0.1,0.29,-0.03,0.18,-0.3,0.16,0.14,-0.31,0.26,-0.28,-0.78,-0.46,-0.39,0.52,-0.05,0.15,0.44]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\",\"Covariance: 0.17 <br />Pooled SD: 1.39\",\"Covariance: -1.1 <br />Pooled SD: 2.11\",\"Covariance: 0.54 <br />Pooled SD: 0.64\",\"Covariance: 0.96 <br />Pooled SD: 1.87\",\"Covariance: 0.46 <br />Pooled SD: 1.81\",\"Covariance: 0.49 <br />Pooled SD: 2.14\",\"Covariance: 0.1 <br />Pooled SD: 0.73\",\"Covariance: 0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.03 <br />Pooled SD: 0.99\",\"Covariance: 0.45 <br />Pooled SD: 0.98\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.81\",\"Covariance: -0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.66 <br />Pooled SD: 1.01\",\"Covariance: -0.46 <br />Pooled SD: 1.86\",\"Covariance: 0.12 <br />Pooled SD: 1.58\",\"Covariance: -0.16 <br />Pooled SD: 0.7\",\"Covariance: 0.35 <br />Pooled SD: 0.98\",\"Covariance: -0.77 <br />Pooled SD: 1.55\",\"Covariance: 0.2 <br />Pooled SD: 0.98\",\"Covariance: -0.57 <br />Pooled SD: 1.03\",\"Covariance: 0.76 <br />Pooled SD: 1.13\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.02 <br />Pooled SD: 1.17\",\"Covariance: -0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.33\",\"Covariance: -0.65 <br />Pooled SD: 1.35\",\"Covariance: -0.12 <br />Pooled SD: 0.82\",\"Covariance: 0.32 <br />Pooled SD: 2.11\",\"Covariance: -0.48 <br />Pooled SD: 0.87\",\"Covariance: 0.38 <br />Pooled SD: 1.69\",\"Covariance: 0.91 <br />Pooled SD: 1.42\",\"Covariance: -0.69 <br />Pooled SD: 0.97\",\"Covariance: -0.6 <br />Pooled SD: 2.99\",\"Covariance: 0.09 <br />Pooled SD: 2.68\",\"Covariance: 1.15 <br />Pooled SD: 2.32\",\"Covariance: -0.57 <br />Pooled SD: 1.16\",\"Covariance: 0.05 <br />Pooled SD: 0.89\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: -0.07 <br />Pooled SD: 0.46\",\"Covariance: 0.28 <br />Pooled SD: 1.48\",\"Covariance: -0.01 <br />Pooled SD: 1.39\",\"Covariance: -0.03 <br />Pooled SD: 0.39\",\"Covariance: 0.95 <br />Pooled SD: 2.16\",\"Covariance: 0.83 <br />Pooled SD: 1.26\",\"Covariance: -0.97 <br />Pooled SD: 1.14\",\"Covariance: 0.04 <br />Pooled SD: 0.7\",\"Covariance: -0.58 <br />Pooled SD: 2.74\",\"Covariance: -0.96 <br />Pooled SD: 1.49\",\"Covariance: 0.23 <br />Pooled SD: 0.66\",\"Covariance: 0.81 <br />Pooled SD: 1.46\",\"Covariance: -0.11 <br />Pooled SD: 0.56\",\"Covariance: -0.54 <br />Pooled SD: 0.59\",\"Covariance: 0.58 <br />Pooled SD: 0.82\",\"Covariance: -0.39 <br />Pooled SD: 1.39\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 0.4 <br />Pooled SD: 1.33\",\"Covariance: -0.32 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.57 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 1.05\",\"Covariance: -0.08 <br />Pooled SD: 1.51\",\"Covariance: -0.57 <br />Pooled SD: 0.98\",\"Covariance: 0.33 <br />Pooled SD: 1.42\",\"Covariance: -0.33 <br />Pooled SD: 1.14\",\"Covariance: 0.27 <br />Pooled SD: 1.9\",\"Covariance: -1.12 <br />Pooled SD: 1.43\",\"Covariance: 1.37 <br />Pooled SD: 1.65\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: -2.13 <br />Pooled SD: 2.59\",\"Covariance: -0.14 <br />Pooled SD: 0.94\",\"Covariance: -1.43 <br />Pooled SD: 2.3\",\"Covariance: 0.06 <br />Pooled SD: 0.75\",\"Covariance: 0.13 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 1.16\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.12 <br />Pooled SD: 0.86\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.93 <br />Pooled SD: 1.63\",\"Covariance: 0.81 <br />Pooled SD: 1.08\",\"Covariance: 0.46 <br />Pooled SD: 0.67\",\"Covariance: -0.18 <br />Pooled SD: 0.86\",\"Covariance: 0.39 <br />Pooled SD: 0.63\",\"Covariance: -1.82 <br />Pooled SD: 3.11\",\"Covariance: 0.52 <br />Pooled SD: 1.71\",\"Covariance: -0.45 <br />Pooled SD: 1.08\",\"Covariance: 0.1 <br />Pooled SD: 1.13\",\"Covariance: -0.65 <br />Pooled SD: 1.66\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 0.74\",\"Covariance: 0.25 <br />Pooled SD: 1.87\",\"Covariance: -0.22 <br />Pooled SD: 1.19\",\"Covariance: 0.12 <br />Pooled SD: 0.4\",\"Covariance: -0.28 <br />Pooled SD: 1.56\",\"Covariance: 1.16 <br />Pooled SD: 1.48\",\"Covariance: 0.5 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 0.9\",\"Covariance: -1.01 <br />Pooled SD: 1.56\",\"Covariance: 0.38 <br />Pooled SD: 0.74\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.61 <br />Pooled SD: 2.04\",\"Covariance: 0.03 <br />Pooled SD: 0.94\",\"Covariance: 0.75 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 1.44\",\"Covariance: -0.1 <br />Pooled SD: 0.49\",\"Covariance: 0.18 <br />Pooled SD: 0.41\",\"Covariance: 0.41 <br />Pooled SD: 0.95\",\"Covariance: 0.54 <br />Pooled SD: 1.05\",\"Covariance: -0.03 <br />Pooled SD: 0.9\",\"Covariance: 0.61 <br />Pooled SD: 1.02\",\"Covariance: 0.05 <br />Pooled SD: 0.73\",\"Covariance: 0.34 <br />Pooled SD: 0.92\",\"Covariance: -0.18 <br />Pooled SD: 2.43\",\"Covariance: 0.38 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.33\",\"Covariance: 0.41 <br />Pooled SD: 1.64\",\"Covariance: -0.39 <br />Pooled SD: 1.02\",\"Covariance: -0.26 <br />Pooled SD: 0.62\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.17 <br />Pooled SD: 2.41\",\"Covariance: 0.49 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 2.26\",\"Covariance: 0.87 <br />Pooled SD: 2.39\",\"Covariance: 0.13 <br />Pooled SD: 0.25\",\"Covariance: -0.2 <br />Pooled SD: 0.65\",\"Covariance: 0.04 <br />Pooled SD: 0.48\",\"Covariance: -0.09 <br />Pooled SD: 1.5\",\"Covariance: 0.58 <br />Pooled SD: 1.71\",\"Covariance: 0.82 <br />Pooled SD: 1.63\",\"Covariance: -0.05 <br />Pooled SD: 0.75\",\"Covariance: 0.35 <br />Pooled SD: 1.08\",\"Covariance: 0.12 <br />Pooled SD: 0.77\",\"Covariance: -0.02 <br />Pooled SD: 1.06\",\"Covariance: 0.11 <br />Pooled SD: 0.69\",\"Covariance: 0.11 <br />Pooled SD: 0.93\",\"Covariance: 0.2 <br />Pooled SD: 1.41\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.06 <br />Pooled SD: 1.86\",\"Covariance: -0.39 <br />Pooled SD: 1.11\",\"Covariance: 0.58 <br />Pooled SD: 1.12\",\"Covariance: -0.75 <br />Pooled SD: 1.12\",\"Covariance: -0.08 <br />Pooled SD: 1.71\",\"Covariance: 0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.1 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 1.53\",\"Covariance: -0.94 <br />Pooled SD: 1.57\",\"Covariance: -0.19 <br />Pooled SD: 0.4\",\"Covariance: 0.31 <br />Pooled SD: 0.9\",\"Covariance: -0.17 <br />Pooled SD: 0.96\",\"Covariance: 1.21 <br />Pooled SD: 2.18\",\"Covariance: -0.88 <br />Pooled SD: 1.88\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: -1.27 <br />Pooled SD: 2.39\",\"Covariance: 0.75 <br />Pooled SD: 2.15\",\"Covariance: -0.05 <br />Pooled SD: 1.81\",\"Covariance: 0.96 <br />Pooled SD: 1.59\",\"Covariance: -0.39 <br />Pooled SD: 1.71\",\"Covariance: 0.52 <br />Pooled SD: 1.16\",\"Covariance: -0.15 <br />Pooled SD: 0.86\",\"Covariance: 0.08 <br />Pooled SD: 0.95\",\"Covariance: -0.33 <br />Pooled SD: 0.86\",\"Covariance: 0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.16 <br />Pooled SD: 1.03\",\"Covariance: -0.86 <br />Pooled SD: 1.8\",\"Covariance: 0.16 <br />Pooled SD: 1.17\",\"Covariance: -0.55 <br />Pooled SD: 1.9\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.08 <br />Pooled SD: 0.36\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: 1.51 <br />Pooled SD: 1.56\",\"Covariance: 0.48 <br />Pooled SD: 1.18\",\"Covariance: -0.22 <br />Pooled SD: 2.7\",\"Covariance: 0.91 <br />Pooled SD: 1.98\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: 1.31 <br />Pooled SD: 1.86\",\"Covariance: 0.97 <br />Pooled SD: 2.1\",\"Covariance: -0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.21 <br />Pooled SD: 0.89\",\"Covariance: 0.55 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 3.05\",\"Covariance: 0.36 <br />Pooled SD: 0.97\",\"Covariance: -0.23 <br />Pooled SD: 0.85\",\"Covariance: 0 <br />Pooled SD: 0.38\",\"Covariance: -0.28 <br />Pooled SD: 1.18\",\"Covariance: -0.4 <br />Pooled SD: 0.72\",\"Covariance: 0.34 <br />Pooled SD: 0.86\",\"Covariance: -0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.47 <br />Pooled SD: 1.64\",\"Covariance: 0.66 <br />Pooled SD: 2.35\",\"Covariance: 0.63 <br />Pooled SD: 1.4\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.51\",\"Covariance: 0.1 <br />Pooled SD: 0.99\",\"Covariance: 0.23 <br />Pooled SD: 1.61\",\"Covariance: -0.25 <br />Pooled SD: 2.32\",\"Covariance: 0.45 <br />Pooled SD: 0.6\",\"Covariance: 0.18 <br />Pooled SD: 0.72\",\"Covariance: -0.46 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 1.47\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: 0.53 <br />Pooled SD: 0.74\",\"Covariance: -0.18 <br />Pooled SD: 0.4\",\"Covariance: 0.01 <br />Pooled SD: 0.62\",\"Covariance: 0.01 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 0.85\",\"Covariance: -0.44 <br />Pooled SD: 0.68\",\"Covariance: 0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.78 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.65\",\"Covariance: 0.26 <br />Pooled SD: 0.67\",\"Covariance: 0.17 <br />Pooled SD: 1.68\",\"Covariance: 1.1 <br />Pooled SD: 1.67\",\"Covariance: -0.09 <br />Pooled SD: 1.43\",\"Covariance: -0.52 <br />Pooled SD: 0.82\",\"Covariance: -0.12 <br />Pooled SD: 1.01\",\"Covariance: 0.38 <br />Pooled SD: 1.24\",\"Covariance: 0.64 <br />Pooled SD: 1.69\",\"Covariance: 0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.96\",\"Covariance: 0.07 <br />Pooled SD: 0.81\",\"Covariance: -0.66 <br />Pooled SD: 0.91\",\"Covariance: 0.12 <br />Pooled SD: 1.76\",\"Covariance: 1.45 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 0.72\",\"Covariance: 0.06 <br />Pooled SD: 1.04\",\"Covariance: 0.04 <br />Pooled SD: 1.06\",\"Covariance: 0.7 <br />Pooled SD: 1.99\",\"Covariance: 0.66 <br />Pooled SD: 2.49\",\"Covariance: 0.08 <br />Pooled SD: 0.69\",\"Covariance: -1.54 <br />Pooled SD: 2.17\",\"Covariance: 0.45 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.63\",\"Covariance: 0.01 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.49\",\"Covariance: -0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.3 <br />Pooled SD: 1.57\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: -0.44 <br />Pooled SD: 0.53\",\"Covariance: -0.89 <br />Pooled SD: 2.58\",\"Covariance: 0.64 <br />Pooled SD: 0.7\",\"Covariance: 1.1 <br />Pooled SD: 1.49\",\"Covariance: 0.5 <br />Pooled SD: 1.53\",\"Covariance: 0.32 <br />Pooled SD: 0.69\",\"Covariance: -0.48 <br />Pooled SD: 0.49\",\"Covariance: -0.28 <br />Pooled SD: 0.38\",\"Covariance: 0.44 <br />Pooled SD: 1.06\",\"Covariance: 0 <br />Pooled SD: 0.61\",\"Covariance: -0.02 <br />Pooled SD: 0.44\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: -0.45 <br />Pooled SD: 1.25\",\"Covariance: -0.02 <br />Pooled SD: 0.5\",\"Covariance: -0.82 <br />Pooled SD: 1.19\",\"Covariance: -0.26 <br />Pooled SD: 2.28\",\"Covariance: 0.7 <br />Pooled SD: 0.81\",\"Covariance: 0.37 <br />Pooled SD: 1.59\",\"Covariance: 0.2 <br />Pooled SD: 0.41\",\"Covariance: 1.99 <br />Pooled SD: 2.39\",\"Covariance: -0.07 <br />Pooled SD: 0.23\",\"Covariance: 0.29 <br />Pooled SD: 0.57\",\"Covariance: 1.79 <br />Pooled SD: 2.95\",\"Covariance: -1.05 <br />Pooled SD: 1.48\",\"Covariance: 0.39 <br />Pooled SD: 1.6\",\"Covariance: 0.7 <br />Pooled SD: 1\",\"Covariance: 0.07 <br />Pooled SD: 1.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -1.65 <br />Pooled SD: 2.34\",\"Covariance: 0.34 <br />Pooled SD: 0.87\",\"Covariance: 0.23 <br />Pooled SD: 1.27\",\"Covariance: 0 <br />Pooled SD: 1.66\",\"Covariance: -0.86 <br />Pooled SD: 1.4\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -1.43 <br />Pooled SD: 1.62\",\"Covariance: 0.38 <br />Pooled SD: 1.2\",\"Covariance: 0.44 <br />Pooled SD: 0.65\",\"Covariance: 0.45 <br />Pooled SD: 0.85\",\"Covariance: 1.33 <br />Pooled SD: 2.39\",\"Covariance: 0.16 <br />Pooled SD: 1.21\",\"Covariance: -0.26 <br />Pooled SD: 1.18\",\"Covariance: 1.01 <br />Pooled SD: 1.18\",\"Covariance: 0.12 <br />Pooled SD: 0.93\",\"Covariance: -0.56 <br />Pooled SD: 0.9\",\"Covariance: -0.47 <br />Pooled SD: 0.9\",\"Covariance: -0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.21 <br />Pooled SD: 0.77\",\"Covariance: -0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.8 <br />Pooled SD: 1.31\",\"Covariance: -0.09 <br />Pooled SD: 0.49\",\"Covariance: 0.27 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.13\",\"Covariance: 0.06 <br />Pooled SD: 0.93\",\"Covariance: -0.24 <br />Pooled SD: 0.51\",\"Covariance: 0.67 <br />Pooled SD: 1.15\",\"Covariance: -0.19 <br />Pooled SD: 0.93\",\"Covariance: -0.8 <br />Pooled SD: 1.25\",\"Covariance: 0.85 <br />Pooled SD: 1.34\",\"Covariance: -0.19 <br />Pooled SD: 1.94\",\"Covariance: -0.86 <br />Pooled SD: 2.03\",\"Covariance: 0.79 <br />Pooled SD: 1.38\",\"Covariance: -0.76 <br />Pooled SD: 1.97\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: 0.1 <br />Pooled SD: 0.37\",\"Covariance: -0.74 <br />Pooled SD: 1.13\",\"Covariance: 1 <br />Pooled SD: 1.74\",\"Covariance: 0.3 <br />Pooled SD: 1.63\",\"Covariance: -0.98 <br />Pooled SD: 1.54\",\"Covariance: -0.44 <br />Pooled SD: 0.73\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.86 <br />Pooled SD: 1.82\",\"Covariance: -0.13 <br />Pooled SD: 0.74\",\"Covariance: 0.17 <br />Pooled SD: 1.01\",\"Covariance: -0.04 <br />Pooled SD: 0.46\",\"Covariance: 0.37 <br />Pooled SD: 0.56\",\"Covariance: 0.23 <br />Pooled SD: 0.69\",\"Covariance: 0.95 <br />Pooled SD: 1.84\",\"Covariance: -0.88 <br />Pooled SD: 1.32\",\"Covariance: 0.18 <br />Pooled SD: 0.59\",\"Covariance: 0.19 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.27\",\"Covariance: 0.05 <br />Pooled SD: 0.87\",\"Covariance: -0.27 <br />Pooled SD: 0.73\",\"Covariance: 0.43 <br />Pooled SD: 2.73\",\"Covariance: 1.16 <br />Pooled SD: 1.7\",\"Covariance: 0.19 <br />Pooled SD: 0.58\",\"Covariance: 0.51 <br />Pooled SD: 1.72\",\"Covariance: 0.05 <br />Pooled SD: 0.64\",\"Covariance: 0.56 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 2.25\",\"Covariance: -3.39 <br />Pooled SD: 3.65\",\"Covariance: -0.44 <br />Pooled SD: 1.08\",\"Covariance: -0.93 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.46\",\"Covariance: -0.42 <br />Pooled SD: 1.38\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.33 <br />Pooled SD: 0.98\",\"Covariance: -0.31 <br />Pooled SD: 2.19\",\"Covariance: 0.11 <br />Pooled SD: 2.18\",\"Covariance: 0.33 <br />Pooled SD: 1.83\",\"Covariance: 0.39 <br />Pooled SD: 0.99\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.53 <br />Pooled SD: 2.21\",\"Covariance: -0.75 <br />Pooled SD: 0.85\",\"Covariance: 1.18 <br />Pooled SD: 1.55\",\"Covariance: -1.21 <br />Pooled SD: 1.61\",\"Covariance: 0.83 <br />Pooled SD: 0.99\",\"Covariance: -0.25 <br />Pooled SD: 0.49\",\"Covariance: -0.74 <br />Pooled SD: 2.13\",\"Covariance: -0.33 <br />Pooled SD: 1.5\",\"Covariance: -0.46 <br />Pooled SD: 0.99\",\"Covariance: 1.62 <br />Pooled SD: 3.64\",\"Covariance: 0.16 <br />Pooled SD: 0.86\",\"Covariance: -0.55 <br />Pooled SD: 0.93\",\"Covariance: -0.13 <br />Pooled SD: 0.76\",\"Covariance: -0.14 <br />Pooled SD: 1.48\",\"Covariance: -0.21 <br />Pooled SD: 1.22\",\"Covariance: -0.66 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 1.5\",\"Covariance: 1.08 <br />Pooled SD: 2.4\",\"Covariance: 0.59 <br />Pooled SD: 0.96\",\"Covariance: -0.02 <br />Pooled SD: 2.59\",\"Covariance: -1.14 <br />Pooled SD: 2.22\",\"Covariance: 0.54 <br />Pooled SD: 1.16\",\"Covariance: -0.83 <br />Pooled SD: 2.07\",\"Covariance: -0.3 <br />Pooled SD: 1.19\",\"Covariance: 0.54 <br />Pooled SD: 0.88\",\"Covariance: 0.73 <br />Pooled SD: 1.95\",\"Covariance: 0.41 <br />Pooled SD: 0.61\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.14 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 0.51\",\"Covariance: -0.33 <br />Pooled SD: 1.8\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: 0.35 <br />Pooled SD: 1.82\",\"Covariance: -0.41 <br />Pooled SD: 1.31\",\"Covariance: -0.11 <br />Pooled SD: 1.61\",\"Covariance: 0.32 <br />Pooled SD: 0.65\",\"Covariance: -0.77 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 0.44\",\"Covariance: 2.65 <br />Pooled SD: 2.86\",\"Covariance: -0.38 <br />Pooled SD: 0.87\",\"Covariance: 0.15 <br />Pooled SD: 1.06\",\"Covariance: -0.49 <br />Pooled SD: 0.85\",\"Covariance: 0.31 <br />Pooled SD: 1.15\",\"Covariance: 0.18 <br />Pooled SD: 0.81\",\"Covariance: 0.18 <br />Pooled SD: 0.44\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: 0.16 <br />Pooled SD: 2.39\",\"Covariance: 0.23 <br />Pooled SD: 0.89\",\"Covariance: -0.21 <br />Pooled SD: 0.7\",\"Covariance: 0.54 <br />Pooled SD: 0.84\",\"Covariance: -0.37 <br />Pooled SD: 1.57\",\"Covariance: 0.71 <br />Pooled SD: 1\",\"Covariance: 0 <br />Pooled SD: 0.71\",\"Covariance: 0.76 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.28 <br />Pooled SD: 0.8\",\"Covariance: -0.15 <br />Pooled SD: 1.12\",\"Covariance: 0.33 <br />Pooled SD: 1.23\",\"Covariance: -0.49 <br />Pooled SD: 1.81\",\"Covariance: -0.25 <br />Pooled SD: 1.18\",\"Covariance: -0.12 <br />Pooled SD: 0.39\",\"Covariance: -0.66 <br />Pooled SD: 0.88\",\"Covariance: -0.7 <br />Pooled SD: 1.43\",\"Covariance: -0.56 <br />Pooled SD: 0.67\",\"Covariance: -0.12 <br />Pooled SD: 1.33\",\"Covariance: -0.12 <br />Pooled SD: 0.35\",\"Covariance: 0.06 <br />Pooled SD: 0.88\",\"Covariance: 0.78 <br />Pooled SD: 1.73\",\"Covariance: -0.35 <br />Pooled SD: 0.85\",\"Covariance: 0.34 <br />Pooled SD: 1.44\",\"Covariance: 0.19 <br />Pooled SD: 0.97\",\"Covariance: 1 <br />Pooled SD: 1.15\",\"Covariance: -0.17 <br />Pooled SD: 0.47\",\"Covariance: 0.67 <br />Pooled SD: 1.16\",\"Covariance: -1.53 <br />Pooled SD: 1.81\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.8 <br />Pooled SD: 1.44\",\"Covariance: 0.34 <br />Pooled SD: 0.95\",\"Covariance: -1.59 <br />Pooled SD: 2.18\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 0.77\",\"Covariance: 0.42 <br />Pooled SD: 2.03\",\"Covariance: -0.86 <br />Pooled SD: 1.35\",\"Covariance: -0.78 <br />Pooled SD: 1.44\",\"Covariance: -0.18 <br />Pooled SD: 1.18\",\"Covariance: 0.02 <br />Pooled SD: 0.62\",\"Covariance: -0.42 <br />Pooled SD: 1.24\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: -0.11 <br />Pooled SD: 0.24\",\"Covariance: -0.6 <br />Pooled SD: 1.3\",\"Covariance: 0.73 <br />Pooled SD: 1.02\",\"Covariance: 0.48 <br />Pooled SD: 0.94\",\"Covariance: 0.36 <br />Pooled SD: 0.57\",\"Covariance: -0.47 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: 0.28 <br />Pooled SD: 1.99\",\"Covariance: -0.72 <br />Pooled SD: 0.99\",\"Covariance: 0.25 <br />Pooled SD: 1.21\",\"Covariance: -0.66 <br />Pooled SD: 1.24\",\"Covariance: 0.43 <br />Pooled SD: 1.39\",\"Covariance: 0.16 <br />Pooled SD: 1.84\",\"Covariance: -0.31 <br />Pooled SD: 0.8\",\"Covariance: 0.68 <br />Pooled SD: 1.14\",\"Covariance: -0.41 <br />Pooled SD: 1.69\",\"Covariance: 0.77 <br />Pooled SD: 1.5\",\"Covariance: -0.05 <br />Pooled SD: 1.17\",\"Covariance: -0.46 <br />Pooled SD: 0.92\",\"Covariance: 0.61 <br />Pooled SD: 2.33\",\"Covariance: 0.05 <br />Pooled SD: 0.48\",\"Covariance: -0.67 <br />Pooled SD: 1.15\",\"Covariance: -2.07 <br />Pooled SD: 3.33\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: -0.85 <br />Pooled SD: 1.24\",\"Covariance: -0.03 <br />Pooled SD: 2.15\",\"Covariance: 0.76 <br />Pooled SD: 0.77\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: 0.79 <br />Pooled SD: 1.41\",\"Covariance: -0.74 <br />Pooled SD: 2.43\",\"Covariance: -0.17 <br />Pooled SD: 1.23\",\"Covariance: -0.1 <br />Pooled SD: 1.21\",\"Covariance: -0.83 <br />Pooled SD: 2.01\",\"Covariance: -0.22 <br />Pooled SD: 2.12\",\"Covariance: 0.78 <br />Pooled SD: 1.33\",\"Covariance: 0.97 <br />Pooled SD: 1.22\",\"Covariance: -0.1 <br />Pooled SD: 0.8\",\"Covariance: 0 <br />Pooled SD: 1.45\",\"Covariance: -0.16 <br />Pooled SD: 0.57\",\"Covariance: 0.93 <br />Pooled SD: 1.36\",\"Covariance: 0.83 <br />Pooled SD: 1.56\",\"Covariance: 0.77 <br />Pooled SD: 1.42\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.41 <br />Pooled SD: 1.12\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.13 <br />Pooled SD: 0.67\",\"Covariance: 0.07 <br />Pooled SD: 1.22\",\"Covariance: 0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.55 <br />Pooled SD: 0.66\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.12\",\"Covariance: 0.48 <br />Pooled SD: 1.47\",\"Covariance: 0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.4 <br />Pooled SD: 2.57\",\"Covariance: 0.37 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 0.98\",\"Covariance: -0.74 <br />Pooled SD: 1.46\",\"Covariance: -1.09 <br />Pooled SD: 1.45\",\"Covariance: 0.19 <br />Pooled SD: 1.5\",\"Covariance: -0.37 <br />Pooled SD: 1.45\",\"Covariance: 0.3 <br />Pooled SD: 0.83\",\"Covariance: -0.08 <br />Pooled SD: 1.4\",\"Covariance: -0.26 <br />Pooled SD: 0.68\",\"Covariance: 0.27 <br />Pooled SD: 1.78\",\"Covariance: 0.13 <br />Pooled SD: 0.24\",\"Covariance: 0.03 <br />Pooled SD: 0.42\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: 0.04 <br />Pooled SD: 1.23\",\"Covariance: 0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.35 <br />Pooled SD: 0.84\",\"Covariance: -0.71 <br />Pooled SD: 1.11\",\"Covariance: 0.25 <br />Pooled SD: 1.43\",\"Covariance: -0.16 <br />Pooled SD: 0.73\",\"Covariance: -0.66 <br />Pooled SD: 1.15\",\"Covariance: -0.08 <br />Pooled SD: 1.18\",\"Covariance: -0.74 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 1.22\",\"Covariance: 0.15 <br />Pooled SD: 2.2\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -0.18 <br />Pooled SD: 1.46\",\"Covariance: -0.45 <br />Pooled SD: 0.89\",\"Covariance: -0.51 <br />Pooled SD: 1.04\",\"Covariance: -0.32 <br />Pooled SD: 0.52\",\"Covariance: -0.63 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 2.17\",\"Covariance: -0.33 <br />Pooled SD: 1.79\",\"Covariance: 0.37 <br />Pooled SD: 1.1\",\"Covariance: 1.46 <br />Pooled SD: 1.87\",\"Covariance: 0.48 <br />Pooled SD: 2.23\",\"Covariance: -0.35 <br />Pooled SD: 1.23\",\"Covariance: 0.54 <br />Pooled SD: 1.36\",\"Covariance: -0.7 <br />Pooled SD: 1.06\",\"Covariance: 0.8 <br />Pooled SD: 1.36\",\"Covariance: -0.06 <br />Pooled SD: 1.03\",\"Covariance: -0.5 <br />Pooled SD: 0.81\",\"Covariance: 0.43 <br />Pooled SD: 0.86\",\"Covariance: -0.2 <br />Pooled SD: 1.25\",\"Covariance: 0 <br />Pooled SD: 0.86\",\"Covariance: 1.4 <br />Pooled SD: 1.59\",\"Covariance: -0.53 <br />Pooled SD: 0.99\",\"Covariance: 0.72 <br />Pooled SD: 1.23\",\"Covariance: -0.54 <br />Pooled SD: 1.35\",\"Covariance: -0.54 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.88\",\"Covariance: -0.19 <br />Pooled SD: 0.48\",\"Covariance: 1.18 <br />Pooled SD: 1.38\",\"Covariance: 0.32 <br />Pooled SD: 2.23\",\"Covariance: -0.87 <br />Pooled SD: 1.92\",\"Covariance: 0.52 <br />Pooled SD: 1.02\",\"Covariance: -0.02 <br />Pooled SD: 0.56\",\"Covariance: 0.46 <br />Pooled SD: 0.94\",\"Covariance: -0.43 <br />Pooled SD: 1.98\",\"Covariance: -0.08 <br />Pooled SD: 0.22\",\"Covariance: -1 <br />Pooled SD: 1.19\",\"Covariance: 0.87 <br />Pooled SD: 2.22\",\"Covariance: -0.29 <br />Pooled SD: 2.18\",\"Covariance: 0.57 <br />Pooled SD: 0.91\",\"Covariance: -0.6 <br />Pooled SD: 2.06\",\"Covariance: -0.61 <br />Pooled SD: 1.92\",\"Covariance: 0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.49 <br />Pooled SD: 0.87\",\"Covariance: -0.06 <br />Pooled SD: 1.73\",\"Covariance: -0.85 <br />Pooled SD: 1.62\",\"Covariance: -0.18 <br />Pooled SD: 0.44\",\"Covariance: 0.2 <br />Pooled SD: 1.51\",\"Covariance: 0.04 <br />Pooled SD: 0.68\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: 0.64 <br />Pooled SD: 1.44\",\"Covariance: -1.17 <br />Pooled SD: 1.6\",\"Covariance: -0.08 <br />Pooled SD: 0.69\",\"Covariance: 0.25 <br />Pooled SD: 1.44\",\"Covariance: -0.68 <br />Pooled SD: 0.77\",\"Covariance: 0.1 <br />Pooled SD: 1.38\",\"Covariance: -0.44 <br />Pooled SD: 0.78\",\"Covariance: -1.41 <br />Pooled SD: 2.79\",\"Covariance: 0.65 <br />Pooled SD: 1.62\",\"Covariance: -0.76 <br />Pooled SD: 2.06\",\"Covariance: 0.84 <br />Pooled SD: 1.79\",\"Covariance: -0.22 <br />Pooled SD: 1.16\",\"Covariance: 1.48 <br />Pooled SD: 1.89\",\"Covariance: -0.1 <br />Pooled SD: 1.47\",\"Covariance: 0.58 <br />Pooled SD: 2.82\",\"Covariance: -0.9 <br />Pooled SD: 2.01\",\"Covariance: 0.2 <br />Pooled SD: 2.26\",\"Covariance: -1.21 <br />Pooled SD: 2\",\"Covariance: 0.35 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.08\",\"Covariance: 0.37 <br />Pooled SD: 0.93\",\"Covariance: 0.13 <br />Pooled SD: 2.85\",\"Covariance: 0.28 <br />Pooled SD: 0.73\",\"Covariance: 0.49 <br />Pooled SD: 3.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -0.5 <br />Pooled SD: 2.23\",\"Covariance: -0.17 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 0.88\",\"Covariance: 0.22 <br />Pooled SD: 0.79\",\"Covariance: -0.77 <br />Pooled SD: 2.21\",\"Covariance: -0.13 <br />Pooled SD: 1.34\",\"Covariance: 0.11 <br />Pooled SD: 1.66\",\"Covariance: -0.06 <br />Pooled SD: 2.59\",\"Covariance: 0.4 <br />Pooled SD: 0.8\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.57 <br />Pooled SD: 1.72\",\"Covariance: 1.64 <br />Pooled SD: 1.89\",\"Covariance: -0.21 <br />Pooled SD: 1.05\",\"Covariance: 0.18 <br />Pooled SD: 0.99\",\"Covariance: 0.1 <br />Pooled SD: 1.52\",\"Covariance: -0.1 <br />Pooled SD: 0.65\",\"Covariance: 0.1 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 2.17\",\"Covariance: 0.49 <br />Pooled SD: 0.79\",\"Covariance: 0 <br />Pooled SD: 1.09\",\"Covariance: -1.68 <br />Pooled SD: 2.96\",\"Covariance: -0.68 <br />Pooled SD: 1.22\",\"Covariance: -0.04 <br />Pooled SD: 1.7\",\"Covariance: 0.02 <br />Pooled SD: 1.03\",\"Covariance: -0.22 <br />Pooled SD: 0.31\",\"Covariance: 0.58 <br />Pooled SD: 1.41\",\"Covariance: 0.29 <br />Pooled SD: 1.05\",\"Covariance: -1.43 <br />Pooled SD: 1.63\",\"Covariance: -0.35 <br />Pooled SD: 1.94\",\"Covariance: -0.55 <br />Pooled SD: 0.7\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: 0.54 <br />Pooled SD: 0.83\",\"Covariance: -0.22 <br />Pooled SD: 2.03\",\"Covariance: -0.1 <br />Pooled SD: 1.37\",\"Covariance: 1.11 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 2.46\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: -0.6 <br />Pooled SD: 1.09\",\"Covariance: -0.1 <br />Pooled SD: 0.85\",\"Covariance: 0.92 <br />Pooled SD: 1.53\",\"Covariance: -0.15 <br />Pooled SD: 0.57\",\"Covariance: -0.32 <br />Pooled SD: 0.75\",\"Covariance: 0.81 <br />Pooled SD: 1.57\",\"Covariance: 0.45 <br />Pooled SD: 0.93\",\"Covariance: 0.51 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.65\",\"Covariance: 0.41 <br />Pooled SD: 0.89\",\"Covariance: 0.31 <br />Pooled SD: 1.32\",\"Covariance: -0.04 <br />Pooled SD: 1.33\",\"Covariance: 0.05 <br />Pooled SD: 0.25\",\"Covariance: -0.05 <br />Pooled SD: 2.09\",\"Covariance: -0.32 <br />Pooled SD: 1.43\",\"Covariance: -0.71 <br />Pooled SD: 2.1\",\"Covariance: -0.04 <br />Pooled SD: 0.97\",\"Covariance: -0.92 <br />Pooled SD: 1.57\",\"Covariance: -0.52 <br />Pooled SD: 1.03\",\"Covariance: 0.22 <br />Pooled SD: 0.91\",\"Covariance: 0.48 <br />Pooled SD: 1.16\",\"Covariance: -0.32 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: -1.11 <br />Pooled SD: 2.18\",\"Covariance: -0.31 <br />Pooled SD: 1.24\",\"Covariance: 0.71 <br />Pooled SD: 0.95\",\"Covariance: -0.65 <br />Pooled SD: 1.18\",\"Covariance: 0.06 <br />Pooled SD: 1.14\",\"Covariance: 0.67 <br />Pooled SD: 1.52\",\"Covariance: 0.89 <br />Pooled SD: 1\",\"Covariance: 0.4 <br />Pooled SD: 0.67\",\"Covariance: 0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.31 <br />Pooled SD: 1.34\",\"Covariance: -0.32 <br />Pooled SD: 1.42\",\"Covariance: -0.3 <br />Pooled SD: 1.52\",\"Covariance: 0.76 <br />Pooled SD: 1.35\",\"Covariance: 0.34 <br />Pooled SD: 1.87\",\"Covariance: -0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.77 <br />Pooled SD: 0.87\",\"Covariance: -0.52 <br />Pooled SD: 1.73\",\"Covariance: -1.27 <br />Pooled SD: 2.37\",\"Covariance: 1.23 <br />Pooled SD: 1.65\",\"Covariance: 1.09 <br />Pooled SD: 2.1\",\"Covariance: 0.53 <br />Pooled SD: 1.86\",\"Covariance: 0.64 <br />Pooled SD: 1.71\",\"Covariance: 0.06 <br />Pooled SD: 1.09\",\"Covariance: 0.04 <br />Pooled SD: 1.98\",\"Covariance: 0.33 <br />Pooled SD: 1.25\",\"Covariance: -0.21 <br />Pooled SD: 0.55\",\"Covariance: 0.94 <br />Pooled SD: 1.06\",\"Covariance: -0.62 <br />Pooled SD: 1.53\",\"Covariance: 0.39 <br />Pooled SD: 0.9\",\"Covariance: 0.16 <br />Pooled SD: 0.53\",\"Covariance: -0.1 <br />Pooled SD: 2\",\"Covariance: 0.54 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.05\",\"Covariance: 0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.44 <br />Pooled SD: 1.71\",\"Covariance: -0.05 <br />Pooled SD: 0.53\",\"Covariance: 0 <br />Pooled SD: 1.56\",\"Covariance: -0.64 <br />Pooled SD: 0.83\",\"Covariance: 0.33 <br />Pooled SD: 0.76\",\"Covariance: 0.79 <br />Pooled SD: 1.12\",\"Covariance: 0.43 <br />Pooled SD: 0.82\",\"Covariance: 0.14 <br />Pooled SD: 2.04\",\"Covariance: 0.24 <br />Pooled SD: 1.53\",\"Covariance: 0.31 <br />Pooled SD: 1.35\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.17 <br />Pooled SD: 1.41\",\"Covariance: 1.01 <br />Pooled SD: 1.23\",\"Covariance: -1.18 <br />Pooled SD: 2.03\",\"Covariance: 0.48 <br />Pooled SD: 1.97\",\"Covariance: -0.02 <br />Pooled SD: 0.77\",\"Covariance: 0.2 <br />Pooled SD: 1.72\",\"Covariance: 0.55 <br />Pooled SD: 1.35\",\"Covariance: 0.35 <br />Pooled SD: 0.82\",\"Covariance: 0.21 <br />Pooled SD: 1.5\",\"Covariance: 0.38 <br />Pooled SD: 0.67\",\"Covariance: 0.17 <br />Pooled SD: 0.59\",\"Covariance: 0.04 <br />Pooled SD: 1.19\",\"Covariance: -0.08 <br />Pooled SD: 0.71\",\"Covariance: -0.06 <br />Pooled SD: 1.91\",\"Covariance: 0.25 <br />Pooled SD: 0.61\",\"Covariance: 0.78 <br />Pooled SD: 2.4\",\"Covariance: 0.09 <br />Pooled SD: 1.56\",\"Covariance: -0.35 <br />Pooled SD: 1.02\",\"Covariance: -0.2 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 1.07\",\"Covariance: 0.49 <br />Pooled SD: 2.78\",\"Covariance: -0.31 <br />Pooled SD: 1.45\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.66 <br />Pooled SD: 0.77\",\"Covariance: 0.36 <br />Pooled SD: 1.56\",\"Covariance: -0.61 <br />Pooled SD: 0.74\",\"Covariance: -0.29 <br />Pooled SD: 1.29\",\"Covariance: -0.67 <br />Pooled SD: 1.44\",\"Covariance: 0.38 <br />Pooled SD: 0.95\",\"Covariance: -0.17 <br />Pooled SD: 0.89\",\"Covariance: 0.31 <br />Pooled SD: 0.78\",\"Covariance: 0.5 <br />Pooled SD: 2.26\",\"Covariance: 0.25 <br />Pooled SD: 0.51\",\"Covariance: 0 <br />Pooled SD: 0.64\",\"Covariance: -0.54 <br />Pooled SD: 1.29\",\"Covariance: 0.56 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 1.04\",\"Covariance: 0.7 <br />Pooled SD: 2.71\",\"Covariance: 0.04 <br />Pooled SD: 0.26\",\"Covariance: 0.31 <br />Pooled SD: 0.84\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.16 <br />Pooled SD: 0.97\",\"Covariance: -0.71 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 0.52\",\"Covariance: -0.04 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.57\",\"Covariance: -0.17 <br />Pooled SD: 1.12\",\"Covariance: 0.42 <br />Pooled SD: 1.32\",\"Covariance: 0.43 <br />Pooled SD: 0.95\",\"Covariance: -0.07 <br />Pooled SD: 0.71\",\"Covariance: -0.53 <br />Pooled SD: 0.73\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -0.12 <br />Pooled SD: 1.98\",\"Covariance: 0.04 <br />Pooled SD: 2.62\",\"Covariance: -0.22 <br />Pooled SD: 0.44\",\"Covariance: 1.54 <br />Pooled SD: 2.05\",\"Covariance: 0.58 <br />Pooled SD: 1.27\",\"Covariance: 0.34 <br />Pooled SD: 0.89\",\"Covariance: -0.35 <br />Pooled SD: 0.86\",\"Covariance: 0.51 <br />Pooled SD: 0.56\",\"Covariance: -0.82 <br />Pooled SD: 1.75\",\"Covariance: -0.87 <br />Pooled SD: 1.12\",\"Covariance: 0.29 <br />Pooled SD: 1.05\",\"Covariance: -1.15 <br />Pooled SD: 1.64\",\"Covariance: 0.93 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 1.55\",\"Covariance: 0.61 <br />Pooled SD: 1.42\",\"Covariance: -0.03 <br />Pooled SD: 1.27\",\"Covariance: 0.51 <br />Pooled SD: 0.71\",\"Covariance: -0.07 <br />Pooled SD: 1.07\",\"Covariance: 1.18 <br />Pooled SD: 1.43\",\"Covariance: -0.05 <br />Pooled SD: 1.19\",\"Covariance: 0.08 <br />Pooled SD: 1.46\",\"Covariance: -0.67 <br />Pooled SD: 1.72\",\"Covariance: 0.04 <br />Pooled SD: 1.1\",\"Covariance: 1.35 <br />Pooled SD: 2.4\",\"Covariance: -0.71 <br />Pooled SD: 1.53\",\"Covariance: -0.24 <br />Pooled SD: 0.79\",\"Covariance: -0.54 <br />Pooled SD: 1.34\",\"Covariance: -0.26 <br />Pooled SD: 0.41\",\"Covariance: -0.38 <br />Pooled SD: 1.29\",\"Covariance: -0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.74\",\"Covariance: 0.56 <br />Pooled SD: 1.59\",\"Covariance: 0.06 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 2.01\",\"Covariance: 1.27 <br />Pooled SD: 3.4\",\"Covariance: 0.94 <br />Pooled SD: 1.48\",\"Covariance: -0.08 <br />Pooled SD: 0.33\",\"Covariance: -0.17 <br />Pooled SD: 0.98\",\"Covariance: 0.64 <br />Pooled SD: 1.26\",\"Covariance: -0.5 <br />Pooled SD: 0.89\",\"Covariance: -0.61 <br />Pooled SD: 0.67\",\"Covariance: 0.24 <br />Pooled SD: 2.08\",\"Covariance: -0.36 <br />Pooled SD: 1.4\",\"Covariance: 0.2 <br />Pooled SD: 1.09\",\"Covariance: 0.29 <br />Pooled SD: 0.63\",\"Covariance: 0.32 <br />Pooled SD: 1.88\",\"Covariance: 0.46 <br />Pooled SD: 1.22\",\"Covariance: 0.4 <br />Pooled SD: 1.06\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -1.07 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.78\",\"Covariance: -0.75 <br />Pooled SD: 1.32\",\"Covariance: 0.34 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.2 <br />Pooled SD: 0.54\",\"Covariance: 0.55 <br />Pooled SD: 0.95\",\"Covariance: 0.51 <br />Pooled SD: 1.06\",\"Covariance: -1.49 <br />Pooled SD: 3.5\",\"Covariance: 0.85 <br />Pooled SD: 2.39\",\"Covariance: -0.03 <br />Pooled SD: 2.63\",\"Covariance: -0.59 <br />Pooled SD: 1.91\",\"Covariance: -0.68 <br />Pooled SD: 2.18\",\"Covariance: -1.61 <br />Pooled SD: 2.18\",\"Covariance: -0.39 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 1.06\",\"Covariance: -0.38 <br />Pooled SD: 1.13\",\"Covariance: -0.13 <br />Pooled SD: 2.66\",\"Covariance: 0.14 <br />Pooled SD: 2.01\",\"Covariance: 1.26 <br />Pooled SD: 1.97\",\"Covariance: -0.01 <br />Pooled SD: 0.26\",\"Covariance: 0.12 <br />Pooled SD: 1.21\",\"Covariance: -0.35 <br />Pooled SD: 1.69\",\"Covariance: 0.73 <br />Pooled SD: 2.12\",\"Covariance: 0.87 <br />Pooled SD: 1.34\",\"Covariance: 0.41 <br />Pooled SD: 1.01\",\"Covariance: 0.09 <br />Pooled SD: 0.66\",\"Covariance: 0.27 <br />Pooled SD: 2.22\",\"Covariance: -0.6 <br />Pooled SD: 1.08\",\"Covariance: -0.33 <br />Pooled SD: 1.67\",\"Covariance: 0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.29 <br />Pooled SD: 0.72\",\"Covariance: -1.19 <br />Pooled SD: 2.1\",\"Covariance: -0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.03 <br />Pooled SD: 1.03\",\"Covariance: 0.69 <br />Pooled SD: 1.08\",\"Covariance: -0.61 <br />Pooled SD: 1\",\"Covariance: 0.67 <br />Pooled SD: 1.11\",\"Covariance: 0.29 <br />Pooled SD: 0.94\",\"Covariance: 0.53 <br />Pooled SD: 0.91\",\"Covariance: -0.73 <br />Pooled SD: 1.25\",\"Covariance: 0.16 <br />Pooled SD: 0.71\",\"Covariance: 0.19 <br />Pooled SD: 0.85\",\"Covariance: 0.83 <br />Pooled SD: 1.93\",\"Covariance: 1.34 <br />Pooled SD: 1.57\",\"Covariance: -0.96 <br />Pooled SD: 3.92\",\"Covariance: -0.29 <br />Pooled SD: 2.9\",\"Covariance: -0.09 <br />Pooled SD: 0.29\",\"Covariance: -0.32 <br />Pooled SD: 1.25\",\"Covariance: 0.33 <br />Pooled SD: 0.65\",\"Covariance: -1.44 <br />Pooled SD: 1.67\",\"Covariance: -1.16 <br />Pooled SD: 1.58\",\"Covariance: 0.64 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.78\",\"Covariance: -0.63 <br />Pooled SD: 1.34\",\"Covariance: -0.52 <br />Pooled SD: 1.62\",\"Covariance: 0.16 <br />Pooled SD: 0.42\",\"Covariance: 1.44 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.05\",\"Covariance: -0.35 <br />Pooled SD: 1.14\",\"Covariance: -0.01 <br />Pooled SD: 0.53\",\"Covariance: 0.11 <br />Pooled SD: 2.06\",\"Covariance: 0.63 <br />Pooled SD: 0.94\",\"Covariance: 0.35 <br />Pooled SD: 0.89\",\"Covariance: -0.75 <br />Pooled SD: 1.35\",\"Covariance: 0.39 <br />Pooled SD: 3.64\",\"Covariance: 0.25 <br />Pooled SD: 1.58\",\"Covariance: 0.17 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 1.8\",\"Covariance: -0.4 <br />Pooled SD: 2.33\",\"Covariance: 0.31 <br />Pooled SD: 0.89\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: 0.24 <br />Pooled SD: 1.89\",\"Covariance: 0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.03 <br />Pooled SD: 0.39\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: 0.19 <br />Pooled SD: 1.43\",\"Covariance: 0.46 <br />Pooled SD: 1.1\",\"Covariance: -1.53 <br />Pooled SD: 2.27\",\"Covariance: -0.43 <br />Pooled SD: 0.98\",\"Covariance: 0.04 <br />Pooled SD: 1.76\",\"Covariance: -1.38 <br />Pooled SD: 3.15\",\"Covariance: 0.79 <br />Pooled SD: 1.86\",\"Covariance: 0.05 <br />Pooled SD: 1.06\",\"Covariance: 0.16 <br />Pooled SD: 1.64\",\"Covariance: 0.2 <br />Pooled SD: 0.7\",\"Covariance: -0.04 <br />Pooled SD: 1.67\",\"Covariance: 0.23 <br />Pooled SD: 1.3\",\"Covariance: -0.32 <br />Pooled SD: 1.07\",\"Covariance: 0.24 <br />Pooled SD: 1.5\",\"Covariance: 0.26 <br />Pooled SD: 1.78\",\"Covariance: -0.31 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 0.7\",\"Covariance: -0.88 <br />Pooled SD: 3.2\",\"Covariance: -1.41 <br />Pooled SD: 1.81\",\"Covariance: -0.42 <br />Pooled SD: 0.92\",\"Covariance: -0.87 <br />Pooled SD: 2.2\",\"Covariance: 0.65 <br />Pooled SD: 1.24\",\"Covariance: -0.08 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.53\"],\"frame\":\"3000\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]}],\"shinyEvents\":[\"plotly_hover\",\"plotly_click\",\"plotly_selected\",\"plotly_relayout\",\"plotly_brushed\",\"plotly_brushing\",\"plotly_clickannotation\",\"plotly_doubleclick\",\"plotly_deselect\",\"plotly_afterplot\",\"plotly_sunburstclick\"],\"base_url\":\"https://plot.ly\"},\"evals\":[],\"jsHooks\":[]}</script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/images/05_correlation/lib/crosstalk-1.0.0/css/crosstalk.css",
    "content": "/* Adjust margins outwards, so column contents line up with the edges of the\n   parent of container-fluid. */\n.container-fluid.crosstalk-bscols {\n  margin-left: -30px;\n  margin-right: -30px;\n  white-space: normal;\n}\n\n/* But don't adjust the margins outwards if we're directly under the body,\n   i.e. we were the top-level of something at the console. */\nbody > .container-fluid.crosstalk-bscols {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n  display: inline-block;\n  padding-right: 12px;\n  vertical-align: top;\n}\n\n@media only screen and (max-width:480px) {\n  .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n    display: block;\n    padding-right: inherit;\n  }\n}\n"
  },
  {
    "path": "docs/images/05_correlation/lib/crosstalk-1.0.0/js/crosstalk.js",
    "content": "(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Events = function () {\n  function Events() {\n    _classCallCheck(this, Events);\n\n    this._types = {};\n    this._seq = 0;\n  }\n\n  _createClass(Events, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var subs = this._types[eventType];\n      if (!subs) {\n        subs = this._types[eventType] = {};\n      }\n      var sub = \"sub\" + this._seq++;\n      subs[sub] = listener;\n      return sub;\n    }\n\n    // Returns false if no match, or string for sub name if matched\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var subs = this._types[eventType];\n      if (typeof listener === \"function\") {\n        for (var key in subs) {\n          if (subs.hasOwnProperty(key)) {\n            if (subs[key] === listener) {\n              delete subs[key];\n              return key;\n            }\n          }\n        }\n        return false;\n      } else if (typeof listener === \"string\") {\n        if (subs && subs[listener]) {\n          delete subs[listener];\n          return listener;\n        }\n        return false;\n      } else {\n        throw new Error(\"Unexpected type for listener\");\n      }\n    }\n  }, {\n    key: \"trigger\",\n    value: function trigger(eventType, arg, thisObj) {\n      var subs = this._types[eventType];\n      for (var key in subs) {\n        if (subs.hasOwnProperty(key)) {\n          subs[key].call(thisObj, arg);\n        }\n      }\n    }\n  }]);\n\n  return Events;\n}();\n\nexports.default = Events;\n\n},{}],2:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.FilterHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _filterset = require(\"./filterset\");\n\nvar _filterset2 = _interopRequireDefault(_filterset);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction getFilterSet(group) {\n  var fsVar = group.var(\"filterset\");\n  var result = fsVar.get();\n  if (!result) {\n    result = new _filterset2.default();\n    fsVar.set(result);\n  }\n  return result;\n}\n\nvar id = 1;\nfunction nextId() {\n  return id++;\n}\n\nvar FilterHandle = exports.FilterHandle = function () {\n  /**\n   * @classdesc\n   * Use this class to contribute to, and listen for changes to, the filter set\n   * for the given group of widgets. Filter input controls should create one\n   * `FilterHandle` and only call {@link FilterHandle#set}. Output widgets that\n   * wish to displayed filtered data should create one `FilterHandle` and use\n   * the {@link FilterHandle#filteredKeys} property and listen for change\n   * events.\n   *\n   * If two (or more) `FilterHandle` instances in the same webpage share the\n   * same group name, they will contribute to a single \"filter set\". Each\n   * `FilterHandle` starts out with a `null` value, which means they take\n   * nothing away from the set of data that should be shown. To make a\n   * `FilterHandle` actually remove data from the filter set, set its value to\n   * an array of keys which should be displayed. Crosstalk will aggregate the\n   * various key arrays by finding their intersection; only keys that are\n   * present in all non-null filter handles are considered part of the filter\n   * set.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the @{link FilterHandle#setGroup} method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function FilterHandle(group, extraInfo) {\n    _classCallCheck(this, FilterHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The filterSet that we're tracking, if any. Can change over time.\n    this._filterSet = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._filterVar = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this._id = \"filter\" + nextId();\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this FilterHandle. If `set()` was\n   * previously called on this handle, switching groups will clear those keys\n   * from the old group's filter set. These keys will not be applied to the new\n   * group's filter set either. In other words, `setGroup()` effectively calls\n   * `clear()` before switching groups.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(FilterHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._filterVar) {\n        this._filterVar.off(\"change\", this._varOnChangeSub);\n        this.clear();\n        this._varOnChangeSub = null;\n        this._filterVar = null;\n        this._filterSet = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        group = (0, _group2.default)(group);\n        this._filterSet = getFilterSet(group);\n        this._filterVar = (0, _group2.default)(group).var(\"filter\");\n        var sub = this._filterVar.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Combine the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n    value: function _mergeExtraInfo(extraInfo) {\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Close the handle. This clears this handle's contribution to the filter set,\n     * and unsubscribes all event listeners.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.clear();\n      this.setGroup(null);\n    }\n\n    /**\n     * Clear this handle's contribution to the filter set.\n     *\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.clear(this._id);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * Set this handle's contribution to the filter set. This array should consist\n     * of the keys of the rows that _should_ be displayed; any keys that are not\n     * present in the array will be considered _filtered out_. Note that multiple\n     * `FilterHandle` instances in the group may each contribute an array of keys,\n     * and only those keys that appear in _all_ of the arrays make it through the\n     * filter.\n     *\n     * @param {string[]} keys - Empty array, or array of keys. To clear the\n     *   filter, don't pass an empty array; instead, use the\n     *   {@link FilterHandle#clear} method.\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(keys, extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.update(this._id, keys);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * @return {string[]|null} - Either: 1) an array of keys that made it through\n     *   all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n     *   is being applied (all data should be displayed).\n     */\n\n  }, {\n    key: \"on\",\n\n\n    /**\n     * Subscribe to events on this `FilterHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {FilterHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n     *   this subscription.\n     */\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancel event subscriptions created by {@link FilterHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|FilterHandle~listener} listener - Either the callback\n     *   function previously passed into {@link FilterHandle#on}, or the\n     *   string that was returned from {@link FilterHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n  }, {\n    key: \"_onChange\",\n    value: function _onChange(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * @callback FilterHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the filter set, or `null` if no filter set is active),\n     *   `oldValue` (the previous value of the filter set), and `sender` (the\n     *   `FilterHandle` instance that made the change).\n     */\n\n    /**\n     * @event FilterHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the filter set, or `null`\n     *   if no filter set is active.\n     * @property {object} oldValue - The previous value of the filter set.\n     * @property {FilterHandle} sender - The `FilterHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"filteredKeys\",\n    get: function get() {\n      return this._filterSet ? this._filterSet.value : null;\n    }\n  }]);\n\n  return FilterHandle;\n}();\n\n},{\"./events\":1,\"./filterset\":3,\"./group\":4,\"./util\":11}],3:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _util = require(\"./util\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction naturalComparator(a, b) {\n  if (a === b) {\n    return 0;\n  } else if (a < b) {\n    return -1;\n  } else if (a > b) {\n    return 1;\n  }\n}\n\n/**\n * @private\n */\n\nvar FilterSet = function () {\n  function FilterSet() {\n    _classCallCheck(this, FilterSet);\n\n    this.reset();\n  }\n\n  _createClass(FilterSet, [{\n    key: \"reset\",\n    value: function reset() {\n      // Key: handle ID, Value: array of selected keys, or null\n      this._handles = {};\n      // Key: key string, Value: count of handles that include it\n      this._keys = {};\n      this._value = null;\n      this._activeHandles = 0;\n    }\n  }, {\n    key: \"update\",\n    value: function update(handleId, keys) {\n      if (keys !== null) {\n        keys = keys.slice(0); // clone before sorting\n        keys.sort(naturalComparator);\n      }\n\n      var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys),\n          added = _diffSortedLists.added,\n          removed = _diffSortedLists.removed;\n\n      this._handles[handleId] = keys;\n\n      for (var i = 0; i < added.length; i++) {\n        this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n      }\n      for (var _i = 0; _i < removed.length; _i++) {\n        this._keys[removed[_i]]--;\n      }\n\n      this._updateValue(keys);\n    }\n\n    /**\n     * @param {string[]} keys Sorted array of strings that indicate\n     * a superset of possible keys.\n     * @private\n     */\n\n  }, {\n    key: \"_updateValue\",\n    value: function _updateValue() {\n      var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys;\n\n      var handleCount = Object.keys(this._handles).length;\n      if (handleCount === 0) {\n        this._value = null;\n      } else {\n        this._value = [];\n        for (var i = 0; i < keys.length; i++) {\n          var count = this._keys[keys[i]];\n          if (count === handleCount) {\n            this._value.push(keys[i]);\n          }\n        }\n      }\n    }\n  }, {\n    key: \"clear\",\n    value: function clear(handleId) {\n      if (typeof this._handles[handleId] === \"undefined\") {\n        return;\n      }\n\n      var keys = this._handles[handleId];\n      if (!keys) {\n        keys = [];\n      }\n\n      for (var i = 0; i < keys.length; i++) {\n        this._keys[keys[i]]--;\n      }\n      delete this._handles[handleId];\n\n      this._updateValue();\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"_allKeys\",\n    get: function get() {\n      var allKeys = Object.keys(this._keys);\n      allKeys.sort(naturalComparator);\n      return allKeys;\n    }\n  }]);\n\n  return FilterSet;\n}();\n\nexports.default = FilterSet;\n\n},{\"./util\":11}],4:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.default = group;\n\nvar _var2 = require(\"./var\");\n\nvar _var3 = _interopRequireDefault(_var2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nvar groups = global.__crosstalk_groups;\n\nfunction group(groupName) {\n  if (groupName && typeof groupName === \"string\") {\n    if (!groups.hasOwnProperty(groupName)) {\n      groups[groupName] = new Group(groupName);\n    }\n    return groups[groupName];\n  } else if ((typeof groupName === \"undefined\" ? \"undefined\" : _typeof(groupName)) === \"object\" && groupName._vars && groupName.var) {\n    // Appears to already be a group object\n    return groupName;\n  } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === \"string\") {\n    return group(groupName[0]);\n  } else {\n    throw new Error(\"Invalid groupName argument\");\n  }\n}\n\nvar Group = function () {\n  function Group(name) {\n    _classCallCheck(this, Group);\n\n    this.name = name;\n    this._vars = {};\n  }\n\n  _createClass(Group, [{\n    key: \"var\",\n    value: function _var(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name);\n      return this._vars[name];\n    }\n  }, {\n    key: \"has\",\n    value: function has(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      return this._vars.hasOwnProperty(name);\n    }\n  }]);\n\n  return Group;\n}();\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./var\":12}],5:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _selection = require(\"./selection\");\n\nvar _filter = require(\"./filter\");\n\nrequire(\"./input\");\n\nrequire(\"./input_selectize\");\n\nrequire(\"./input_checkboxgroup\");\n\nrequire(\"./input_slider\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar defaultGroup = (0, _group2.default)(\"default\");\n\nfunction var_(name) {\n  return defaultGroup.var(name);\n}\n\nfunction has(name) {\n  return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n  global.Shiny.addCustomMessageHandler(\"update-client-value\", function (message) {\n    if (typeof message.group === \"string\") {\n      (0, _group2.default)(message.group).var(message.name).set(message.value);\n    } else {\n      var_(message.name).set(message.value);\n    }\n  });\n}\n\nvar crosstalk = {\n  group: _group2.default,\n  var: var_,\n  has: has,\n  SelectionHandle: _selection.SelectionHandle,\n  FilterHandle: _filter.FilterHandle\n};\n\n/**\n * @namespace crosstalk\n */\nexports.default = crosstalk;\n\nglobal.crosstalk = crosstalk;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./group\":4,\"./input\":6,\"./input_checkboxgroup\":7,\"./input_selectize\":8,\"./input_slider\":9,\"./selection\":10}],6:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.register = register;\nvar $ = global.jQuery;\n\nvar bindings = {};\n\nfunction register(reg) {\n  bindings[reg.className] = reg;\n  if (global.document && global.document.readyState !== \"complete\") {\n    $(function () {\n      bind();\n    });\n  } else if (global.document) {\n    setTimeout(bind, 100);\n  }\n}\n\nfunction bind() {\n  Object.keys(bindings).forEach(function (className) {\n    var binding = bindings[className];\n    $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function (i, el) {\n      bindInstance(binding, el);\n    });\n  });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n  return val.replace(/([!\"#$%&'()*+,.\\/:;<=>?@\\[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n  var $el = $(el);\n  Object.keys(bindings).forEach(function (className) {\n    if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n      var binding = bindings[className];\n      bindInstance(binding, el);\n    }\n  });\n}\n\nfunction bindInstance(binding, el) {\n  var jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n  var data = JSON.parse(jsonEl[0].innerText);\n\n  var instance = binding.factory(el, data);\n  $(el).data(\"crosstalk-instance\", instance);\n  $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n  (function () {\n    var inputBinding = new global.Shiny.InputBinding();\n    var $ = global.jQuery;\n    $.extend(inputBinding, {\n      find: function find(scope) {\n        return $(scope).find(\".crosstalk-input\");\n      },\n      initialize: function initialize(el) {\n        if (!$(el).hasClass(\"crosstalk-input-bound\")) {\n          bindEl(el);\n        }\n      },\n      getId: function getId(el) {\n        return el.id;\n      },\n      getValue: function getValue(el) {},\n      setValue: function setValue(el, value) {},\n      receiveMessage: function receiveMessage(el, data) {},\n      subscribe: function subscribe(el, callback) {\n        $(el).data(\"crosstalk-instance\").resume();\n      },\n      unsubscribe: function unsubscribe(el) {\n        $(el).data(\"crosstalk-instance\").suspend();\n      }\n    });\n    global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n  })();\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{}],7:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-checkboxgroup\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    var $el = $(el);\n    $el.on(\"change\", \"input[type='checkbox']\", function () {\n      var checked = $el.find(\"input[type='checkbox']:checked\");\n      if (checked.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          checked.each(function () {\n            data.map[this.value].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],8:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-select\",\n\n  factory: function factory(el, data) {\n    /*\n     * items: {value: [...], label: [...]}\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n\n    var first = [{ value: \"\", label: \"(All)\" }];\n    var items = util.dataframeToD3(data.items);\n    var opts = {\n      options: first.concat(items),\n      valueField: \"value\",\n      labelField: \"label\",\n      searchField: \"label\"\n    };\n\n    var select = $(el).find(\"select\")[0];\n\n    var selectize = $(select).selectize(opts)[0].selectize;\n\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    selectize.on(\"change\", function () {\n      if (selectize.items.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          selectize.items.forEach(function (group) {\n            data.map[group].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6,\"./util\":11}],9:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\nvar strftime = global.strftime;\n\ninput.register({\n  className: \"crosstalk-input-slider\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var opts = {};\n    var $el = $(el).find(\"input\");\n    var dataType = $el.data(\"data-type\");\n    var timeFormat = $el.data(\"time-format\");\n    var timeFormatter = void 0;\n\n    // Set up formatting functions\n    if (dataType === \"date\") {\n      timeFormatter = strftime.utc();\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"datetime\") {\n      var timezone = $el.data(\"timezone\");\n      if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime;\n\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    }\n\n    $el.ionRangeSlider(opts);\n\n    function getValue() {\n      var result = $el.data(\"ionRangeSlider\").result;\n\n      // Function for converting numeric value from slider to appropriate type.\n      var convert = void 0;\n      var dataType = $el.data(\"data-type\");\n      if (dataType === \"date\") {\n        convert = function convert(val) {\n          return formatDateUTC(new Date(+val));\n        };\n      } else if (dataType === \"datetime\") {\n        convert = function convert(val) {\n          // Convert ms to s\n          return +val / 1000;\n        };\n      } else {\n        convert = function convert(val) {\n          return +val;\n        };\n      }\n\n      if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n        return [convert(result.from), convert(result.to)];\n      } else {\n        return convert(result.from);\n      }\n    }\n\n    var lastKnownKeys = null;\n\n    $el.on(\"change.crosstalkSliderInput\", function (event) {\n      if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n        var _getValue = getValue(),\n            _getValue2 = _slicedToArray(_getValue, 2),\n            from = _getValue2[0],\n            to = _getValue2[1];\n\n        var keys = [];\n        for (var i = 0; i < data.values.length; i++) {\n          var val = data.values[i];\n          if (val >= from && val <= to) {\n            keys.push(data.keys[i]);\n          }\n        }\n        keys.sort();\n        ctHandle.set(keys);\n        lastKnownKeys = keys;\n      }\n    });\n\n    // let $el = $(el);\n    // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n    //   let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n    //   if (checked.length === 0) {\n    //     ctHandle.clear();\n    //   } else {\n    //     let keys = {};\n    //     checked.each(function() {\n    //       data.map[this.value].forEach(function(key) {\n    //         keys[key] = true;\n    //       });\n    //     });\n    //     let keyArray = Object.keys(keys);\n    //     keyArray.sort();\n    //     ctHandle.set(keyArray);\n    //   }\n    // });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n  var str = n.toString();\n  while (str.length < digits) {\n    str = \"0\" + str;\n  }return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n  if (date instanceof Date) {\n    return date.getUTCFullYear() + \"-\" + padZeros(date.getUTCMonth() + 1, 2) + \"-\" + padZeros(date.getUTCDate(), 2);\n  } else {\n    return null;\n  }\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],10:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.SelectionHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar SelectionHandle = exports.SelectionHandle = function () {\n\n  /**\n   * @classdesc\n   * Use this class to read and write (and listen for changes to) the selection\n   * for a Crosstalk group. This is intended to be used for linked brushing.\n   *\n   * If two (or more) `SelectionHandle` instances in the same webpage share the\n   * same group name, they will share the same state. Setting the selection using\n   * one `SelectionHandle` instance will result in the `value` property instantly\n   * changing across the others, and `\"change\"` event listeners on all instances\n   * (including the one that initiated the sending) will fire.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the [SelectionHandle#setGroup](#setGroup) method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function SelectionHandle() {\n    var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n    var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n\n    _classCallCheck(this, SelectionHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._var = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this SelectionHandle. The group\n   * being switched away from (if any) will not have its selection value\n   * modified as a result of calling `setGroup`, even if this handle was the\n   * most recent handle to set the selection of the group.\n   *\n   * The group being switched to (if any) will also not have its selection value\n   * modified as a result of calling `setGroup`. If you want to set the\n   * selection value of the new group, call `set` explicitly.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(SelectionHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._var) {\n        this._var.off(\"change\", this._varOnChangeSub);\n        this._var = null;\n        this._varOnChangeSub = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        this._var = (0, _group2.default)(group).var(\"selection\");\n        var sub = this._var.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Retrieves the current selection for the group represented by this\n     * `SelectionHandle`.\n     *\n     * - If no selection is active, then this value will be falsy.\n     * - If a selection is active, but no data points are selected, then this\n     *   value will be an empty array.\n     * - If a selection is active, and data points are selected, then the keys\n     *   of the selected data points will be present in the array.\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n\n\n    /**\n     * Combines the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n    value: function _mergeExtraInfo(extraInfo) {\n      // Important incidental effect: shallow clone is returned\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n     *   {@link SelectionHandle#value}).\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(selectedKeys, extraInfo) {\n      if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any that were passed\n     *   into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Subscribes to events on this `SelectionHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {SelectionHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n     *   this subscription.\n     */\n\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancels event subscriptions created by {@link SelectionHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|SelectionHandle~listener} listener - Either the callback\n     *   function previously passed into {@link SelectionHandle#on}, or the\n     *   string that was returned from {@link SelectionHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n\n    /**\n     * Shuts down the `SelectionHandle` object.\n     *\n     * Removes all event listeners that were added through this handle.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.setGroup(null);\n    }\n\n    /**\n     * @callback SelectionHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the selection, or `undefined` if no selection is active),\n     *   `oldValue` (the previous value of the selection), and `sender` (the\n     *   `SelectionHandle` instance that made the change).\n     */\n\n    /**\n     * @event SelectionHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the selection, or `undefined`\n     *   if no selection is active.\n     * @property {object} oldValue - The previous value of the selection.\n     * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._var ? this._var.get() : null;\n    }\n  }]);\n\n  return SelectionHandle;\n}();\n\n},{\"./events\":1,\"./group\":4,\"./util\":11}],11:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.extend = extend;\nexports.checkSorted = checkSorted;\nexports.diffSortedLists = diffSortedLists;\nexports.dataframeToD3 = dataframeToD3;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction extend(target) {\n  for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n    sources[_key - 1] = arguments[_key];\n  }\n\n  for (var i = 0; i < sources.length; i++) {\n    var src = sources[i];\n    if (typeof src === \"undefined\" || src === null) continue;\n\n    for (var key in src) {\n      if (src.hasOwnProperty(key)) {\n        target[key] = src[key];\n      }\n    }\n  }\n  return target;\n}\n\nfunction checkSorted(list) {\n  for (var i = 1; i < list.length; i++) {\n    if (list[i] <= list[i - 1]) {\n      throw new Error(\"List is not sorted or contains duplicate\");\n    }\n  }\n}\n\nfunction diffSortedLists(a, b) {\n  var i_a = 0;\n  var i_b = 0;\n\n  if (!a) a = [];\n  if (!b) b = [];\n\n  var a_only = [];\n  var b_only = [];\n\n  checkSorted(a);\n  checkSorted(b);\n\n  while (i_a < a.length && i_b < b.length) {\n    if (a[i_a] === b[i_b]) {\n      i_a++;\n      i_b++;\n    } else if (a[i_a] < b[i_b]) {\n      a_only.push(a[i_a++]);\n    } else {\n      b_only.push(b[i_b++]);\n    }\n  }\n\n  if (i_a < a.length) a_only = a_only.concat(a.slice(i_a));\n  if (i_b < b.length) b_only = b_only.concat(b.slice(i_b));\n  return {\n    removed: a_only,\n    added: b_only\n  };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nfunction dataframeToD3(df) {\n  var names = [];\n  var length = void 0;\n  for (var name in df) {\n    if (df.hasOwnProperty(name)) names.push(name);\n    if (_typeof(df[name]) !== \"object\" || typeof df[name].length === \"undefined\") {\n      throw new Error(\"All fields must be arrays\");\n    } else if (typeof length !== \"undefined\" && length !== df[name].length) {\n      throw new Error(\"All fields must be arrays of the same length\");\n    }\n    length = df[name].length;\n  }\n  var results = [];\n  var item = void 0;\n  for (var row = 0; row < length; row++) {\n    item = {};\n    for (var col = 0; col < names.length; col++) {\n      item[names[col]] = df[names[col]][row];\n    }\n    results.push(item);\n  }\n  return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\n\nvar SubscriptionTracker = exports.SubscriptionTracker = function () {\n  function SubscriptionTracker(emitter) {\n    _classCallCheck(this, SubscriptionTracker);\n\n    this._emitter = emitter;\n    this._subs = {};\n  }\n\n  _createClass(SubscriptionTracker, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var sub = this._emitter.on(eventType, listener);\n      this._subs[sub] = eventType;\n      return sub;\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var sub = this._emitter.off(eventType, listener);\n      if (sub) {\n        delete this._subs[sub];\n      }\n      return sub;\n    }\n  }, {\n    key: \"removeAllListeners\",\n    value: function removeAllListeners() {\n      var _this = this;\n\n      var current_subs = this._subs;\n      this._subs = {};\n      Object.keys(current_subs).forEach(function (sub) {\n        _this._emitter.off(current_subs[sub], sub);\n      });\n    }\n  }]);\n\n  return SubscriptionTracker;\n}();\n\n},{}],12:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Var = function () {\n  function Var(group, name, /*optional*/value) {\n    _classCallCheck(this, Var);\n\n    this._group = group;\n    this._name = name;\n    this._value = value;\n    this._events = new _events2.default();\n  }\n\n  _createClass(Var, [{\n    key: \"get\",\n    value: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"set\",\n    value: function set(value, /*optional*/event) {\n      if (this._value === value) {\n        // Do nothing; the value hasn't changed\n        return;\n      }\n      var oldValue = this._value;\n      this._value = value;\n      // Alert JavaScript listeners that the value has changed\n      var evt = {};\n      if (event && (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\") {\n        for (var k in event) {\n          if (event.hasOwnProperty(k)) evt[k] = event[k];\n        }\n      }\n      evt.oldValue = oldValue;\n      evt.value = value;\n      this._events.trigger(\"change\", evt, this);\n\n      // TODO: Make this extensible, to let arbitrary back-ends know that\n      // something has changed\n      if (global.Shiny && global.Shiny.onInputChange) {\n        global.Shiny.onInputChange(\".clientValue-\" + (this._group.name !== null ? this._group.name + \"-\" : \"\") + this._name, typeof value === \"undefined\" ? null : value);\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._events.on(eventType, listener);\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._events.off(eventType, listener);\n    }\n  }]);\n\n  return Var;\n}();\n\nexports.default = Var;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./events\":1}]},{},[5])\n//# sourceMappingURL=crosstalk.js.map\n"
  },
  {
    "path": "docs/images/05_correlation/lib/crosstalk-1.2.0/js/crosstalk.js",
    "content": "(function(){function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s}return e})()({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Events = function () {\n  function Events() {\n    _classCallCheck(this, Events);\n\n    this._types = {};\n    this._seq = 0;\n  }\n\n  _createClass(Events, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var subs = this._types[eventType];\n      if (!subs) {\n        subs = this._types[eventType] = {};\n      }\n      var sub = \"sub\" + this._seq++;\n      subs[sub] = listener;\n      return sub;\n    }\n\n    // Returns false if no match, or string for sub name if matched\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var subs = this._types[eventType];\n      if (typeof listener === \"function\") {\n        for (var key in subs) {\n          if (subs.hasOwnProperty(key)) {\n            if (subs[key] === listener) {\n              delete subs[key];\n              return key;\n            }\n          }\n        }\n        return false;\n      } else if (typeof listener === \"string\") {\n        if (subs && subs[listener]) {\n          delete subs[listener];\n          return listener;\n        }\n        return false;\n      } else {\n        throw new Error(\"Unexpected type for listener\");\n      }\n    }\n  }, {\n    key: \"trigger\",\n    value: function trigger(eventType, arg, thisObj) {\n      var subs = this._types[eventType];\n      for (var key in subs) {\n        if (subs.hasOwnProperty(key)) {\n          subs[key].call(thisObj, arg);\n        }\n      }\n    }\n  }]);\n\n  return Events;\n}();\n\nexports.default = Events;\n\n},{}],2:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.FilterHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _filterset = require(\"./filterset\");\n\nvar _filterset2 = _interopRequireDefault(_filterset);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction getFilterSet(group) {\n  var fsVar = group.var(\"filterset\");\n  var result = fsVar.get();\n  if (!result) {\n    result = new _filterset2.default();\n    fsVar.set(result);\n  }\n  return result;\n}\n\nvar id = 1;\nfunction nextId() {\n  return id++;\n}\n\n/**\n * Use this class to contribute to, and listen for changes to, the filter set\n * for the given group of widgets. Filter input controls should create one\n * `FilterHandle` and only call {@link FilterHandle#set}. Output widgets that\n * wish to displayed filtered data should create one `FilterHandle` and use\n * the {@link FilterHandle#filteredKeys} property and listen for change\n * events.\n *\n * If two (or more) `FilterHandle` instances in the same webpage share the\n * same group name, they will contribute to a single \"filter set\". Each\n * `FilterHandle` starts out with a `null` value, which means they take\n * nothing away from the set of data that should be shown. To make a\n * `FilterHandle` actually remove data from the filter set, set its value to\n * an array of keys which should be displayed. Crosstalk will aggregate the\n * various key arrays by finding their intersection; only keys that are\n * present in all non-null filter handles are considered part of the filter\n * set.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n *   null or undefined (or any other falsy value). This can be changed later\n *   via the {@link FilterHandle#setGroup} method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n *   the event object whenever an event is emitted.\n */\n\nvar FilterHandle = exports.FilterHandle = function () {\n  function FilterHandle(group, extraInfo) {\n    _classCallCheck(this, FilterHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The filterSet that we're tracking, if any. Can change over time.\n    this._filterSet = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._filterVar = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this._id = \"filter\" + nextId();\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this FilterHandle. If `set()` was\n   * previously called on this handle, switching groups will clear those keys\n   * from the old group's filter set. These keys will not be applied to the new\n   * group's filter set either. In other words, `setGroup()` effectively calls\n   * `clear()` before switching groups.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(FilterHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._filterVar) {\n        this._filterVar.off(\"change\", this._varOnChangeSub);\n        this.clear();\n        this._varOnChangeSub = null;\n        this._filterVar = null;\n        this._filterSet = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        group = (0, _group2.default)(group);\n        this._filterSet = getFilterSet(group);\n        this._filterVar = (0, _group2.default)(group).var(\"filter\");\n        var sub = this._filterVar.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Combine the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n    value: function _mergeExtraInfo(extraInfo) {\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Close the handle. This clears this handle's contribution to the filter set,\n     * and unsubscribes all event listeners.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.clear();\n      this.setGroup(null);\n    }\n\n    /**\n     * Clear this handle's contribution to the filter set.\n     *\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     * \n     * @fires FilterHandle#change\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.clear(this._id);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * Set this handle's contribution to the filter set. This array should consist\n     * of the keys of the rows that _should_ be displayed; any keys that are not\n     * present in the array will be considered _filtered out_. Note that multiple\n     * `FilterHandle` instances in the group may each contribute an array of keys,\n     * and only those keys that appear in _all_ of the arrays make it through the\n     * filter.\n     *\n     * @param {string[]} keys - Empty array, or array of keys. To clear the\n     *   filter, don't pass an empty array; instead, use the\n     *   {@link FilterHandle#clear} method.\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     * \n     * @fires FilterHandle#change\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(keys, extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.update(this._id, keys);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * @return {string[]|null} - Either: 1) an array of keys that made it through\n     *   all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n     *   is being applied (all data should be displayed).\n     */\n\n  }, {\n    key: \"on\",\n\n\n    /**\n     * Subscribe to events on this `FilterHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {FilterHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n     *   this subscription.\n     */\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancel event subscriptions created by {@link FilterHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|FilterHandle~listener} listener - Either the callback\n     *   function previously passed into {@link FilterHandle#on}, or the\n     *   string that was returned from {@link FilterHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n  }, {\n    key: \"_onChange\",\n    value: function _onChange(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * @callback FilterHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the filter set, or `null` if no filter set is active),\n     *   `oldValue` (the previous value of the filter set), and `sender` (the\n     *   `FilterHandle` instance that made the change).\n     */\n\n  }, {\n    key: \"filteredKeys\",\n    get: function get() {\n      return this._filterSet ? this._filterSet.value : null;\n    }\n  }]);\n\n  return FilterHandle;\n}();\n\n/**\n * @event FilterHandle#change\n * @type {object}\n * @property {object} value - The new value of the filter set, or `null`\n *   if no filter set is active.\n * @property {object} oldValue - The previous value of the filter set.\n * @property {FilterHandle} sender - The `FilterHandle` instance that\n *   changed the value.\n */\n\n},{\"./events\":1,\"./filterset\":3,\"./group\":4,\"./util\":11}],3:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _util = require(\"./util\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction naturalComparator(a, b) {\n  if (a === b) {\n    return 0;\n  } else if (a < b) {\n    return -1;\n  } else if (a > b) {\n    return 1;\n  }\n}\n\n/**\n * @private\n */\n\nvar FilterSet = function () {\n  function FilterSet() {\n    _classCallCheck(this, FilterSet);\n\n    this.reset();\n  }\n\n  _createClass(FilterSet, [{\n    key: \"reset\",\n    value: function reset() {\n      // Key: handle ID, Value: array of selected keys, or null\n      this._handles = {};\n      // Key: key string, Value: count of handles that include it\n      this._keys = {};\n      this._value = null;\n      this._activeHandles = 0;\n    }\n  }, {\n    key: \"update\",\n    value: function update(handleId, keys) {\n      if (keys !== null) {\n        keys = keys.slice(0); // clone before sorting\n        keys.sort(naturalComparator);\n      }\n\n      var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys),\n          added = _diffSortedLists.added,\n          removed = _diffSortedLists.removed;\n\n      this._handles[handleId] = keys;\n\n      for (var i = 0; i < added.length; i++) {\n        this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n      }\n      for (var _i = 0; _i < removed.length; _i++) {\n        this._keys[removed[_i]]--;\n      }\n\n      this._updateValue(keys);\n    }\n\n    /**\n     * @param {string[]} keys Sorted array of strings that indicate\n     * a superset of possible keys.\n     * @private\n     */\n\n  }, {\n    key: \"_updateValue\",\n    value: function _updateValue() {\n      var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys;\n\n      var handleCount = Object.keys(this._handles).length;\n      if (handleCount === 0) {\n        this._value = null;\n      } else {\n        this._value = [];\n        for (var i = 0; i < keys.length; i++) {\n          var count = this._keys[keys[i]];\n          if (count === handleCount) {\n            this._value.push(keys[i]);\n          }\n        }\n      }\n    }\n  }, {\n    key: \"clear\",\n    value: function clear(handleId) {\n      if (typeof this._handles[handleId] === \"undefined\") {\n        return;\n      }\n\n      var keys = this._handles[handleId];\n      if (!keys) {\n        keys = [];\n      }\n\n      for (var i = 0; i < keys.length; i++) {\n        this._keys[keys[i]]--;\n      }\n      delete this._handles[handleId];\n\n      this._updateValue();\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"_allKeys\",\n    get: function get() {\n      var allKeys = Object.keys(this._keys);\n      allKeys.sort(naturalComparator);\n      return allKeys;\n    }\n  }]);\n\n  return FilterSet;\n}();\n\nexports.default = FilterSet;\n\n},{\"./util\":11}],4:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.default = group;\n\nvar _var2 = require(\"./var\");\n\nvar _var3 = _interopRequireDefault(_var2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nvar groups = global.__crosstalk_groups;\n\nfunction group(groupName) {\n  if (groupName && typeof groupName === \"string\") {\n    if (!groups.hasOwnProperty(groupName)) {\n      groups[groupName] = new Group(groupName);\n    }\n    return groups[groupName];\n  } else if ((typeof groupName === \"undefined\" ? \"undefined\" : _typeof(groupName)) === \"object\" && groupName._vars && groupName.var) {\n    // Appears to already be a group object\n    return groupName;\n  } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === \"string\") {\n    return group(groupName[0]);\n  } else {\n    throw new Error(\"Invalid groupName argument\");\n  }\n}\n\nvar Group = function () {\n  function Group(name) {\n    _classCallCheck(this, Group);\n\n    this.name = name;\n    this._vars = {};\n  }\n\n  _createClass(Group, [{\n    key: \"var\",\n    value: function _var(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name);\n      return this._vars[name];\n    }\n  }, {\n    key: \"has\",\n    value: function has(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      return this._vars.hasOwnProperty(name);\n    }\n  }]);\n\n  return Group;\n}();\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./var\":12}],5:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _selection = require(\"./selection\");\n\nvar _filter = require(\"./filter\");\n\nvar _input = require(\"./input\");\n\nrequire(\"./input_selectize\");\n\nrequire(\"./input_checkboxgroup\");\n\nrequire(\"./input_slider\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar defaultGroup = (0, _group2.default)(\"default\");\n\nfunction var_(name) {\n  return defaultGroup.var(name);\n}\n\nfunction has(name) {\n  return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n  global.Shiny.addCustomMessageHandler(\"update-client-value\", function (message) {\n    if (typeof message.group === \"string\") {\n      (0, _group2.default)(message.group).var(message.name).set(message.value);\n    } else {\n      var_(message.name).set(message.value);\n    }\n  });\n}\n\nvar crosstalk = {\n  group: _group2.default,\n  var: var_,\n  has: has,\n  SelectionHandle: _selection.SelectionHandle,\n  FilterHandle: _filter.FilterHandle,\n  bind: _input.bind\n};\n\n/**\n * @namespace crosstalk\n */\nexports.default = crosstalk;\n\nglobal.crosstalk = crosstalk;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./group\":4,\"./input\":6,\"./input_checkboxgroup\":7,\"./input_selectize\":8,\"./input_slider\":9,\"./selection\":10}],6:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.register = register;\nexports.bind = bind;\nvar $ = global.jQuery;\n\nvar bindings = {};\n\nfunction register(reg) {\n  bindings[reg.className] = reg;\n  if (global.document && global.document.readyState !== \"complete\") {\n    $(function () {\n      bind();\n    });\n  } else if (global.document) {\n    setTimeout(bind, 100);\n  }\n}\n\nfunction bind() {\n  Object.keys(bindings).forEach(function (className) {\n    var binding = bindings[className];\n    $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function (i, el) {\n      bindInstance(binding, el);\n    });\n  });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n  return val.replace(/([!\"#$%&'()*+,./:;<=>?@[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n  var $el = $(el);\n  Object.keys(bindings).forEach(function (className) {\n    if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n      var binding = bindings[className];\n      bindInstance(binding, el);\n    }\n  });\n}\n\nfunction bindInstance(binding, el) {\n  var jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n  var data = JSON.parse(jsonEl[0].innerText);\n\n  var instance = binding.factory(el, data);\n  $(el).data(\"crosstalk-instance\", instance);\n  $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n  var inputBinding = new global.Shiny.InputBinding();\n  var _$ = global.jQuery;\n  _$.extend(inputBinding, {\n    find: function find(scope) {\n      return _$(scope).find(\".crosstalk-input\");\n    },\n    initialize: function initialize(el) {\n      if (!_$(el).hasClass(\"crosstalk-input-bound\")) {\n        bindEl(el);\n      }\n    },\n    getId: function getId(el) {\n      return el.id;\n    },\n    getValue: function getValue(el) {},\n    setValue: function setValue(el, value) {},\n    receiveMessage: function receiveMessage(el, data) {},\n    subscribe: function subscribe(el, callback) {\n      _$(el).data(\"crosstalk-instance\").resume();\n    },\n    unsubscribe: function unsubscribe(el) {\n      _$(el).data(\"crosstalk-instance\").suspend();\n    }\n  });\n  global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{}],7:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-checkboxgroup\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    var $el = $(el);\n    $el.on(\"change\", \"input[type='checkbox']\", function () {\n      var checked = $el.find(\"input[type='checkbox']:checked\");\n      if (checked.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        var keys = {};\n        checked.each(function () {\n          data.map[this.value].forEach(function (key) {\n            keys[key] = true;\n          });\n        });\n        var keyArray = Object.keys(keys);\n        keyArray.sort();\n        lastKnownKeys = keyArray;\n        ctHandle.set(keyArray);\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],8:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-select\",\n\n  factory: function factory(el, data) {\n    /*\n     * items: {value: [...], label: [...]}\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n\n    var first = [{ value: \"\", label: \"(All)\" }];\n    var items = util.dataframeToD3(data.items);\n    var opts = {\n      options: first.concat(items),\n      valueField: \"value\",\n      labelField: \"label\",\n      searchField: \"label\"\n    };\n\n    var select = $(el).find(\"select\")[0];\n\n    var selectize = $(select).selectize(opts)[0].selectize;\n\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    selectize.on(\"change\", function () {\n      if (selectize.items.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        var keys = {};\n        selectize.items.forEach(function (group) {\n          data.map[group].forEach(function (key) {\n            keys[key] = true;\n          });\n        });\n        var keyArray = Object.keys(keys);\n        keyArray.sort();\n        lastKnownKeys = keyArray;\n        ctHandle.set(keyArray);\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6,\"./util\":11}],9:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\nvar strftime = global.strftime;\n\ninput.register({\n  className: \"crosstalk-input-slider\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var opts = {};\n    var $el = $(el).find(\"input\");\n    var dataType = $el.data(\"data-type\");\n    var timeFormat = $el.data(\"time-format\");\n    var round = $el.data(\"round\");\n    var timeFormatter = void 0;\n\n    // Set up formatting functions\n    if (dataType === \"date\") {\n      timeFormatter = strftime.utc();\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"datetime\") {\n      var timezone = $el.data(\"timezone\");\n      if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime;\n\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"number\") {\n      if (typeof round !== \"undefined\") opts.prettify = function (num) {\n        var factor = Math.pow(10, round);\n        return Math.round(num * factor) / factor;\n      };\n    }\n\n    $el.ionRangeSlider(opts);\n\n    function getValue() {\n      var result = $el.data(\"ionRangeSlider\").result;\n\n      // Function for converting numeric value from slider to appropriate type.\n      var convert = void 0;\n      var dataType = $el.data(\"data-type\");\n      if (dataType === \"date\") {\n        convert = function convert(val) {\n          return formatDateUTC(new Date(+val));\n        };\n      } else if (dataType === \"datetime\") {\n        convert = function convert(val) {\n          // Convert ms to s\n          return +val / 1000;\n        };\n      } else {\n        convert = function convert(val) {\n          return +val;\n        };\n      }\n\n      if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n        return [convert(result.from), convert(result.to)];\n      } else {\n        return convert(result.from);\n      }\n    }\n\n    var lastKnownKeys = null;\n\n    $el.on(\"change.crosstalkSliderInput\", function (event) {\n      if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n        var _getValue = getValue(),\n            _getValue2 = _slicedToArray(_getValue, 2),\n            from = _getValue2[0],\n            to = _getValue2[1];\n\n        var keys = [];\n        for (var i = 0; i < data.values.length; i++) {\n          var val = data.values[i];\n          if (val >= from && val <= to) {\n            keys.push(data.keys[i]);\n          }\n        }\n        keys.sort();\n        ctHandle.set(keys);\n        lastKnownKeys = keys;\n      }\n    });\n\n    // let $el = $(el);\n    // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n    //   let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n    //   if (checked.length === 0) {\n    //     ctHandle.clear();\n    //   } else {\n    //     let keys = {};\n    //     checked.each(function() {\n    //       data.map[this.value].forEach(function(key) {\n    //         keys[key] = true;\n    //       });\n    //     });\n    //     let keyArray = Object.keys(keys);\n    //     keyArray.sort();\n    //     ctHandle.set(keyArray);\n    //   }\n    // });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n  var str = n.toString();\n  while (str.length < digits) {\n    str = \"0\" + str;\n  }return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n  if (date instanceof Date) {\n    return date.getUTCFullYear() + \"-\" + padZeros(date.getUTCMonth() + 1, 2) + \"-\" + padZeros(date.getUTCDate(), 2);\n  } else {\n    return null;\n  }\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],10:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.SelectionHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n/**\n * Use this class to read and write (and listen for changes to) the selection\n * for a Crosstalk group. This is intended to be used for linked brushing.\n *\n * If two (or more) `SelectionHandle` instances in the same webpage share the\n * same group name, they will share the same state. Setting the selection using\n * one `SelectionHandle` instance will result in the `value` property instantly\n * changing across the others, and `\"change\"` event listeners on all instances\n * (including the one that initiated the sending) will fire.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n *   null or undefined (or any other falsy value). This can be changed later\n *   via the [SelectionHandle#setGroup](#setGroup) method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n *   the event object whenever an event is emitted.\n */\nvar SelectionHandle = exports.SelectionHandle = function () {\n  function SelectionHandle() {\n    var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n    var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n\n    _classCallCheck(this, SelectionHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._var = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this SelectionHandle. The group\n   * being switched away from (if any) will not have its selection value\n   * modified as a result of calling `setGroup`, even if this handle was the\n   * most recent handle to set the selection of the group.\n   *\n   * The group being switched to (if any) will also not have its selection value\n   * modified as a result of calling `setGroup`. If you want to set the\n   * selection value of the new group, call `set` explicitly.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(SelectionHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._var) {\n        this._var.off(\"change\", this._varOnChangeSub);\n        this._var = null;\n        this._varOnChangeSub = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        this._var = (0, _group2.default)(group).var(\"selection\");\n        var sub = this._var.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Retrieves the current selection for the group represented by this\n     * `SelectionHandle`.\n     *\n     * - If no selection is active, then this value will be falsy.\n     * - If a selection is active, but no data points are selected, then this\n     *   value will be an empty array.\n     * - If a selection is active, and data points are selected, then the keys\n     *   of the selected data points will be present in the array.\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n\n\n    /**\n     * Combines the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n    value: function _mergeExtraInfo(extraInfo) {\n      // Important incidental effect: shallow clone is returned\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n     *   {@link SelectionHandle#value}).\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(selectedKeys, extraInfo) {\n      if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any that were passed\n     *   into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Subscribes to events on this `SelectionHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {SelectionHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n     *   this subscription.\n     */\n\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancels event subscriptions created by {@link SelectionHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|SelectionHandle~listener} listener - Either the callback\n     *   function previously passed into {@link SelectionHandle#on}, or the\n     *   string that was returned from {@link SelectionHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n\n    /**\n     * Shuts down the `SelectionHandle` object.\n     *\n     * Removes all event listeners that were added through this handle.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.setGroup(null);\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._var ? this._var.get() : null;\n    }\n  }]);\n\n  return SelectionHandle;\n}();\n\n/**\n * @callback SelectionHandle~listener\n * @param {Object} event - An object containing details of the event. For\n *   `\"change\"` events, this includes the properties `value` (the new\n *   value of the selection, or `undefined` if no selection is active),\n *   `oldValue` (the previous value of the selection), and `sender` (the\n *   `SelectionHandle` instance that made the change).\n */\n\n/**\n * @event SelectionHandle#change\n * @type {object}\n * @property {object} value - The new value of the selection, or `undefined`\n *   if no selection is active.\n * @property {object} oldValue - The previous value of the selection.\n * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n *   changed the value.\n */\n\n},{\"./events\":1,\"./group\":4,\"./util\":11}],11:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.extend = extend;\nexports.checkSorted = checkSorted;\nexports.diffSortedLists = diffSortedLists;\nexports.dataframeToD3 = dataframeToD3;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction extend(target) {\n  for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n    sources[_key - 1] = arguments[_key];\n  }\n\n  for (var i = 0; i < sources.length; i++) {\n    var src = sources[i];\n    if (typeof src === \"undefined\" || src === null) continue;\n\n    for (var key in src) {\n      if (src.hasOwnProperty(key)) {\n        target[key] = src[key];\n      }\n    }\n  }\n  return target;\n}\n\nfunction checkSorted(list) {\n  for (var i = 1; i < list.length; i++) {\n    if (list[i] <= list[i - 1]) {\n      throw new Error(\"List is not sorted or contains duplicate\");\n    }\n  }\n}\n\nfunction diffSortedLists(a, b) {\n  var i_a = 0;\n  var i_b = 0;\n\n  if (!a) a = [];\n  if (!b) b = [];\n\n  var a_only = [];\n  var b_only = [];\n\n  checkSorted(a);\n  checkSorted(b);\n\n  while (i_a < a.length && i_b < b.length) {\n    if (a[i_a] === b[i_b]) {\n      i_a++;\n      i_b++;\n    } else if (a[i_a] < b[i_b]) {\n      a_only.push(a[i_a++]);\n    } else {\n      b_only.push(b[i_b++]);\n    }\n  }\n\n  if (i_a < a.length) a_only = a_only.concat(a.slice(i_a));\n  if (i_b < b.length) b_only = b_only.concat(b.slice(i_b));\n  return {\n    removed: a_only,\n    added: b_only\n  };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nfunction dataframeToD3(df) {\n  var names = [];\n  var length = void 0;\n  for (var name in df) {\n    if (df.hasOwnProperty(name)) names.push(name);\n    if (_typeof(df[name]) !== \"object\" || typeof df[name].length === \"undefined\") {\n      throw new Error(\"All fields must be arrays\");\n    } else if (typeof length !== \"undefined\" && length !== df[name].length) {\n      throw new Error(\"All fields must be arrays of the same length\");\n    }\n    length = df[name].length;\n  }\n  var results = [];\n  var item = void 0;\n  for (var row = 0; row < length; row++) {\n    item = {};\n    for (var col = 0; col < names.length; col++) {\n      item[names[col]] = df[names[col]][row];\n    }\n    results.push(item);\n  }\n  return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\n\nvar SubscriptionTracker = exports.SubscriptionTracker = function () {\n  function SubscriptionTracker(emitter) {\n    _classCallCheck(this, SubscriptionTracker);\n\n    this._emitter = emitter;\n    this._subs = {};\n  }\n\n  _createClass(SubscriptionTracker, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var sub = this._emitter.on(eventType, listener);\n      this._subs[sub] = eventType;\n      return sub;\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var sub = this._emitter.off(eventType, listener);\n      if (sub) {\n        delete this._subs[sub];\n      }\n      return sub;\n    }\n  }, {\n    key: \"removeAllListeners\",\n    value: function removeAllListeners() {\n      var _this = this;\n\n      var current_subs = this._subs;\n      this._subs = {};\n      Object.keys(current_subs).forEach(function (sub) {\n        _this._emitter.off(current_subs[sub], sub);\n      });\n    }\n  }]);\n\n  return SubscriptionTracker;\n}();\n\n},{}],12:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Var = function () {\n  function Var(group, name, /*optional*/value) {\n    _classCallCheck(this, Var);\n\n    this._group = group;\n    this._name = name;\n    this._value = value;\n    this._events = new _events2.default();\n  }\n\n  _createClass(Var, [{\n    key: \"get\",\n    value: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"set\",\n    value: function set(value, /*optional*/event) {\n      if (this._value === value) {\n        // Do nothing; the value hasn't changed\n        return;\n      }\n      var oldValue = this._value;\n      this._value = value;\n      // Alert JavaScript listeners that the value has changed\n      var evt = {};\n      if (event && (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\") {\n        for (var k in event) {\n          if (event.hasOwnProperty(k)) evt[k] = event[k];\n        }\n      }\n      evt.oldValue = oldValue;\n      evt.value = value;\n      this._events.trigger(\"change\", evt, this);\n\n      // TODO: Make this extensible, to let arbitrary back-ends know that\n      // something has changed\n      if (global.Shiny && global.Shiny.onInputChange) {\n        global.Shiny.onInputChange(\".clientValue-\" + (this._group.name !== null ? this._group.name + \"-\" : \"\") + this._name, typeof value === \"undefined\" ? null : value);\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._events.on(eventType, listener);\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._events.off(eventType, listener);\n    }\n  }]);\n\n  return Var;\n}();\n\nexports.default = Var;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./events\":1}]},{},[5])\n//# sourceMappingURL=crosstalk.js.map\n"
  },
  {
    "path": "docs/images/05_correlation/lib/crosstalk-1.2.0/scss/crosstalk.scss",
    "content": "/* Adjust margins outwards, so column contents line up with the edges of the\n   parent of container-fluid. */\n.container-fluid.crosstalk-bscols {\n  margin-left: -30px;\n  margin-right: -30px;\n  white-space: normal;\n}\n\n/* But don't adjust the margins outwards if we're directly under the body,\n   i.e. we were the top-level of something at the console. */\nbody > .container-fluid.crosstalk-bscols {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n  display: inline-block;\n  padding-right: 12px;\n  vertical-align: top;\n}\n\n@media only screen and (max-width:480px) {\n  .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n    display: block;\n    padding-right: inherit;\n  }\n}\n\n/* Relevant BS3 styles to make filter_checkbox() look reasonable without Bootstrap */\n.crosstalk-input {\n  margin-bottom: 15px; /* a la .form-group */\n  .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  input[type=\"checkbox\"] {\n    margin: 4px 0 0;\n    margin-top: 1px;\n    line-height: normal;\n  }\n  .checkbox {\n    position: relative;\n    display: block;\n    margin-top: 10px;\n    margin-bottom: 10px;\n  }\n  .checkbox > label{\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: 400;\n    cursor: pointer;\n  }\n  .checkbox input[type=\"checkbox\"],\n  .checkbox-inline input[type=\"checkbox\"] {\n    position: absolute;\n    margin-top: 2px;\n    margin-left: -20px;\n  }\n  .checkbox + .checkbox {\n    margin-top: -5px;\n  }\n  .checkbox-inline {\n    position: relative;\n    display: inline-block;\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: 400;\n    vertical-align: middle;\n    cursor: pointer;\n  }\n  .checkbox-inline + .checkbox-inline {\n    margin-top: 0;\n    margin-left: 10px;\n  }\n}\n"
  },
  {
    "path": "docs/images/05_correlation/lib/htmlwidgets-1.3/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = eval(\"(\" + task + \")\");\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n  // Wait until after the document has loaded to render the widgets.\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      window.HTMLWidgets.staticRender();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        window.HTMLWidgets.staticRender();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = eval(\"(\" + o[part] + \")\");\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "docs/images/05_correlation/lib/htmlwidgets-1.5.4/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = tryEval(task);\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  // Attempt eval() both with and without enclosing in parentheses.\n  // Note that enclosing coerces a function declaration into\n  // an expression that eval() can parse\n  // (otherwise, a SyntaxError is thrown)\n  function tryEval(code) {\n    var result = null;\n    try {\n      result = eval(\"(\" + code + \")\");\n    } catch(error) {\n      if (!(error instanceof SyntaxError)) {\n        throw error;\n      }\n      try {\n        result = eval(code);\n      } catch(e) {\n        if (e instanceof SyntaxError) {\n          throw error;\n        } else {\n          throw e;\n        }\n      }\n    }\n    return result;\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n\n  function has_jQuery3() {\n    if (!window.jQuery) {\n      return false;\n    }\n    var $version = window.jQuery.fn.jquery;\n    var $major_version = parseInt($version.split(\".\")[0]);\n    return $major_version >= 3;\n  }\n\n  /*\n  / Shiny 1.4 bumped jQuery from 1.x to 3.x which means jQuery's\n  / on-ready handler (i.e., $(fn)) is now asyncronous (i.e., it now\n  / really means $(setTimeout(fn)).\n  / https://jquery.com/upgrade-guide/3.0/#breaking-change-document-ready-handlers-are-now-asynchronous\n  /\n  / Since Shiny uses $() to schedule initShiny, shiny>=1.4 calls initShiny\n  / one tick later than it did before, which means staticRender() is\n  / called renderValue() earlier than (advanced) widget authors might be expecting.\n  / https://github.com/rstudio/shiny/issues/2630\n  /\n  / For a concrete example, leaflet has some methods (e.g., updateBounds)\n  / which reference Shiny methods registered in initShiny (e.g., setInputValue).\n  / Since leaflet is privy to this life-cycle, it knows to use setTimeout() to\n  / delay execution of those methods (until Shiny methods are ready)\n  / https://github.com/rstudio/leaflet/blob/18ec981/javascript/src/index.js#L266-L268\n  /\n  / Ideally widget authors wouldn't need to use this setTimeout() hack that\n  / leaflet uses to call Shiny methods on a staticRender(). In the long run,\n  / the logic initShiny should be broken up so that method registration happens\n  / right away, but binding happens later.\n  */\n  function maybeStaticRenderLater() {\n    if (shinyMode && has_jQuery3()) {\n      window.jQuery(window.HTMLWidgets.staticRender);\n    } else {\n      window.HTMLWidgets.staticRender();\n    }\n  }\n\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      maybeStaticRenderLater();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        maybeStaticRenderLater();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = tryEval(o[part]);\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "docs/images/05_correlation/lib/jquery-1.11.3/jquery-AUTHORS.txt",
    "content": "Authors ordered by first contribution.\n\nJohn Resig <jeresig@gmail.com>\nGilles van den Hoven <gilles0181@gmail.com>\nMichael Geary <mike@geary.com>\nStefan Petre <stefan.petre@gmail.com>\nYehuda Katz <wycats@gmail.com>\nCorey Jewett <cj@syntheticplayground.com>\nKlaus Hartl <klaus.hartl@googlemail.com>\nFranck Marcia <franck.marcia@gmail.com>\nJörn Zaefferer <joern.zaefferer@gmail.com>\nPaul Bakaus <paul.bakaus@googlemail.com>\nBrandon Aaron <brandon.aaron@gmail.com>\nMike Alsup <malsup@gmail.com>\nDave Methvin <dave.methvin@gmail.com>\nEd Engelhardt <edengelhardt@gmail.com>\nSean Catchpole <littlecooldude@gmail.com>\nPaul Mclanahan <pmclanahan@gmail.com>\nDavid Serduke <davidserduke@gmail.com>\nRichard D. Worth <rdworth@gmail.com>\nScott González <scott.gonzalez@gmail.com>\nAriel Flesler <aflesler@gmail.com>\nJon Evans <jon@springyweb.com>\nTJ Holowaychuk <tj@vision-media.ca>\nMichael Bensoussan <mickey@seesmic.com>\nRobert Katić <robert.katic@gmail.com>\nLouis-Rémi Babé <lrbabe@gmail.com>\nEarle Castledine <mrspeaker@gmail.com>\nDamian Janowski <damian.janowski@gmail.com>\nRich Dougherty <rich@rd.gen.nz>\nKim Dalsgaard <kim@kimdalsgaard.com>\nAndrea Giammarchi <andrea.giammarchi@gmail.com>\nMark Gibson <jollytoad@gmail.com>\nKarl Swedberg <kswedberg@gmail.com>\nJustin Meyer <justinbmeyer@gmail.com>\nBen Alman <cowboy@rj3.net>\nJames Padolsey <cla@padolsey.net>\nDavid Petersen <public@petersendidit.com>\nBatiste Bieler <batiste@gmail.com>\nAlexander Farkas <info@corrupt-system.de>\nRick Waldron <waldron.rick@gmail.com>\nFilipe Fortes <filipe@fortes.com>\nNeeraj Singh <neerajdotname@gmail.com>\nPaul Irish <paul.irish@gmail.com>\nIraê Carvalho <irae@irae.pro.br>\nMatt Curry <matt@pseudocoder.com>\nMichael Monteleone <michael@michaelmonteleone.net>\nNoah Sloan <noah.sloan@gmail.com>\nTom Viner <github@viner.tv>\nDouglas Neiner <doug@pixelgraphics.us>\nAdam J. Sontag <ajpiano@ajpiano.com>\nDave Reed <dareed@microsoft.com>\nRalph Whitbeck <ralph.whitbeck@gmail.com>\nCarl Fürstenberg <azatoth@gmail.com>\nJacob Wright <jacwright@gmail.com>\nJ. Ryan Stinnett <jryans@gmail.com>\nunknown <Igen005@.upcorp.ad.uprr.com>\ntemp01 <temp01irc@gmail.com>\nHeungsub Lee <h@subl.ee>\nColin Snover <colin@alpha.zetafleet.com>\nRyan W Tenney <ryan@10e.us>\nPinhook <contact@pinhooklabs.com>\nRon Otten <r.j.g.otten@gmail.com>\nJephte Clain <Jephte.Clain@univ-reunion.fr>\nAnton Matzneller <obhvsbypqghgc@gmail.com>\nAlex Sexton <AlexSexton@gmail.com>\nDan Heberden <danheberden@gmail.com>\nHenri Wiechers <hwiechers@gmail.com>\nRussell Holbrook <russell.holbrook@patch.com>\nJulian Aubourg <aubourg.julian@gmail.com>\nGianni Alessandro Chiappetta <gianni@runlevel6.org>\nScott Jehl <scott@scottjehl.com>\nJames Burke <jrburke@gmail.com>\nJonas Pfenniger <jonas@pfenniger.name>\nXavi Ramirez <xavi.rmz@gmail.com>\nJared Grippe <jared@deadlyicon.com>\nSylvester Keil <sylvester@keil.or.at>\nBrandon Sterne <bsterne@mozilla.com>\nMathias Bynens <mathias@qiwi.be>\nTimmy Willison <timmywillisn@gmail.com>\nCorey Frang <gnarf@gnarf.net>\nDigitalxero <digitalxero>\nAnton Kovalyov <anton@kovalyov.net>\nDavid Murdoch <musicisair@yahoo.com>\nJosh Varner <josh.varner@gmail.com>\nCharles McNulty <cmcnulty@kznf.com>\nJordan Boesch <jboesch26@gmail.com>\nJess Thrysoee <jess@thrysoee.dk>\nMichael Murray <m@murz.net>\nLee Carpenter <elcarpie@gmail.com>\nAlexis Abril <me@alexisabril.com>\nRob Morgan <robbym@gmail.com>\nJohn Firebaugh <john_firebaugh@bigfix.com>\nSam Bisbee <sam@sbisbee.com>\nGilmore Davidson <gilmoreorless@gmail.com>\nBrian Brennan <me@brianlovesthings.com>\nXavier Montillet <xavierm02.net@gmail.com>\nDaniel Pihlstrom <sciolist.se@gmail.com>\nSahab Yazdani <sahab.yazdani+github@gmail.com>\navaly <github-com@agachi.name>\nScott Hughes <hi@scott-hughes.me>\nMike Sherov <mike.sherov@gmail.com>\nGreg Hazel <ghazel@gmail.com>\nSchalk Neethling <schalk@ossreleasefeed.com>\nDenis Knauf <Denis.Knauf@gmail.com>\nTimo Tijhof <krinklemail@gmail.com>\nSteen Nielsen <swinedk@gmail.com>\nAnton Ryzhov <anton@ryzhov.me>\nShi Chuan <shichuanr@gmail.com>\nBerker Peksag <berker.peksag@gmail.com>\nToby Brain <tobyb@freshview.com>\nMatt Mueller <mattmuelle@gmail.com>\nJustin <drakefjustin@gmail.com>\nDaniel Herman <daniel.c.herman@gmail.com>\nOleg Gaidarenko <markelog@gmail.com>\nRichard Gibson <richard.gibson@gmail.com>\nRafaël Blais Masson <rafbmasson@gmail.com>\ncmc3cn <59194618@qq.com>\nJoe Presbrey <presbrey@gmail.com>\nSindre Sorhus <sindresorhus@gmail.com>\nArne de Bree <arne@bukkie.nl>\nVladislav Zarakovsky <vlad.zar@gmail.com>\nAndrew E Monat <amonat@gmail.com>\nOskari <admin@o-programs.com>\nJoao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>\ntsinha <tsinha@Anthonys-MacBook-Pro.local>\nMatt Farmer <matt@frmr.me>\nTrey Hunner <treyhunner@gmail.com>\nJason Moon <jmoon@socialcast.com>\nJeffery To <jeffery.to@gmail.com>\nKris Borchers <kris.borchers@gmail.com>\nVladimir Zhuravlev <private.face@gmail.com>\nJacob Thornton <jacobthornton@gmail.com>\nChad Killingsworth <chadkillingsworth@missouristate.edu>\nNowres Rafid <nowres.rafed@gmail.com>\nDavid Benjamin <davidben@mit.edu>\nUri Gilad <antishok@gmail.com>\nChris Faulkner <thefaulkner@gmail.com>\nElijah Manor <elijah.manor@gmail.com>\nDaniel Chatfield <chatfielddaniel@gmail.com>\nNikita Govorov <nikita.govorov@gmail.com>\nWesley Walser <wwalser@atlassian.com>\nMike Pennisi <mike@mikepennisi.com>\nMarkus Staab <markus.staab@redaxo.de>\nDave Riddle <david@joyvuu.com>\nCallum Macrae <callum@lynxphp.com>\nBenjamin Truyman <bentruyman@gmail.com>\nJames Huston <james@jameshuston.net>\nErick Ruiz de Chávez <erickrdch@gmail.com>\nDavid Bonner <dbonner@cogolabs.com>\nAkintayo Akinwunmi <aakinwunmi@judge.com>\nMORGAN <morgan@morgangraphics.com>\nIsmail Khair <ismail.khair@gmail.com>\nCarl Danley <carldanley@gmail.com>\nMike Petrovich <michael.c.petrovich@gmail.com>\nGreg Lavallee <greglavallee@wapolabs.com>\nDaniel Gálvez <dgalvez@editablething.com>\nSai Lung Wong <sai.wong@huffingtonpost.com>\nTom H Fuertes <TomFuertes@gmail.com>\nRoland Eckl <eckl.roland@googlemail.com>\nJay Merrifield <fracmak@gmail.com>\nAllen J Schmidt Jr <cobrasoft@gmail.com>\nJonathan Sampson <jjdsampson@gmail.com>\nMarcel Greter <marcel.greter@ocbnet.ch>\nMatthias Jäggli <matthias.jaeggli@gmail.com>\nDavid Fox <dfoxinator@gmail.com>\nYiming He <yiminghe@gmail.com>\nDevin Cooper <cooper.semantics@gmail.com>\nPaul Ramos <paul.b.ramos@gmail.com>\nRod Vagg <rod@vagg.org>\nBennett Sorbo <bsorbo@gmail.com>\nSebastian Burkhard <sebi.burkhard@gmail.com>\nnanto <nanto@moon.email.ne.jp>\nDanil Somsikov <danilasomsikov@gmail.com>\nRyunosuke SATO <tricknotes.rs@gmail.com>\nJean Boussier <jean.boussier@gmail.com>\nAdam Coulombe <me@adam.co>\nAndrew Plummer <plummer.andrew@gmail.com>\nMark Raddatz <mraddatz@gmail.com>\nDmitry Gusev <dmitry.gusev@gmail.com>\nMichał Gołębiowski <m.goleb@gmail.com>\nNguyen Phuc Lam <ruado1987@gmail.com>\nTom H Fuertes <tomfuertes@gmail.com>\nBrandon Johnson <bjohn465+github@gmail.com>\nJason Bedard <jason+jquery@jbedard.ca>\nKyle Robinson Young <kyle@dontkry.com>\nRenato Oliveira dos Santos <ros3@cin.ufpe.br>\nChris Talkington <chris@talkingtontech.com>\nEddie Monge <eddie@eddiemonge.com>\nTerry Jones <terry@jon.es>\nJason Merino <jasonmerino@gmail.com>\nJeremy Dunck <jdunck@gmail.com>\nChris Price <price.c@gmail.com>\nAmey Sakhadeo <me@ameyms.com>\nAnthony Ryan <anthonyryan1@gmail.com>\nDominik D. Geyer <dominik.geyer@gmail.com>\nGeorge Kats <katsgeorgeek@gmail.com>\nLihan Li <frankieteardrop@gmail.com>\nRonny Springer <springer.ronny@gmail.com>\nMarian Sollmann <marian.sollmann@cargomedia.ch>\nCorey Frang <gnarf37@gmail.com>\nChris Antaki <ChrisAntaki@gmail.com>\nNoah Hamann <njhamann@gmail.com>\nDavid Hong <d.hong@me.com>\nJakob Stoeck <jakob@pokermania.de>\nChristopher Jones <christopherjonesqed@gmail.com>\nForbes Lindesay <forbes@lindesay.co.uk>\nJohn Paul <john@johnkpaul.com>\nS. Andrew Sheppard <andrew@wq.io>\nLeonardo Balter <leonardo.balter@gmail.com>\nRoman Reiß <me@silverwind.io>\nBenjy Cui <benjytrys@gmail.com>\nRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>\nJohn Hoven <hovenj@gmail.com>\nChristian Kosmowski <ksmwsk@gmail.com>\nLiang Peng <poppinlp@gmail.com>\nTJ VanToll <tj.vantoll@gmail.com>\n"
  },
  {
    "path": "docs/images/05_correlation/lib/jquery-1.11.3/jquery.js",
    "content": "/*!\n * jQuery JavaScript Library v1.11.3\n * http://jquery.com/\n *\n * Includes Sizzle.js\n * http://sizzlejs.com/\n *\n * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2015-04-28T16:19Z\n */\n\n(function( global, factory ) {\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\t\t// For CommonJS and CommonJS-like environments where a proper window is present,\n\t\t// execute the factory and get jQuery\n\t\t// For environments that do not inherently posses a window with a document\n\t\t// (such as Node.js), expose a jQuery-making factory as module.exports\n\t\t// This accentuates the need for the creation of a real window\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n}(typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Can't do this because several apps including ASP.NET trace\n// the stack via arguments.caller.callee and Firefox dies if\n// you try to trace through \"use strict\" call chains. (#13335)\n// Support: Firefox 18+\n//\n\nvar deletedIds = [];\n\nvar slice = deletedIds.slice;\n\nvar concat = deletedIds.concat;\n\nvar push = deletedIds.push;\n\nvar indexOf = deletedIds.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar support = {};\n\n\n\nvar\n\tversion = \"1.11.3\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t},\n\n\t// Support: Android<4.1, IE<9\n\t// Make sure we trim BOM and NBSP\n\trtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g,\n\n\t// Matches dashed string for camelizing\n\trmsPrefix = /^-ms-/,\n\trdashAlpha = /-([\\da-z])/gi,\n\n\t// Used by jQuery.camelCase as callback to replace()\n\tfcamelCase = function( all, letter ) {\n\t\treturn letter.toUpperCase();\n\t};\n\njQuery.fn = jQuery.prototype = {\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// Start with an empty selector\n\tselector: \"\",\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\t\treturn num != null ?\n\n\t\t\t// Return just the one element from the set\n\t\t\t( num < 0 ? this[ num + this.length ] : this[ num ] ) :\n\n\t\t\t// Return all the elements in a clean array\n\t\t\tslice.call( this );\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\t\tret.context = this.context;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\t// (You can seed the arguments with an array of args, but this is\n\t// only used internally.)\n\teach: function( callback, args ) {\n\t\treturn jQuery.each( this, callback, args );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map(this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t}));\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor(null);\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: deletedIds.sort,\n\tsplice: deletedIds.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar src, copyIsArray, copy, name, options, clone,\n\t\ttarget = arguments[0] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !jQuery.isFunction(target) ) {\n\t\ttarget = {};\n\t}\n\n\t// extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\t\t// Only deal with non-null/undefined values\n\t\tif ( (options = arguments[ i ]) != null ) {\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tsrc = target[ name ];\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {\n\t\t\t\t\tif ( copyIsArray ) {\n\t\t\t\t\t\tcopyIsArray = false;\n\t\t\t\t\t\tclone = src && jQuery.isArray(src) ? src : [];\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src && jQuery.isPlainObject(src) ? src : {};\n\t\t\t\t\t}\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend({\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\t// See test/unit/core.js for details concerning isFunction.\n\t// Since version 1.3, DOM methods and functions like alert\n\t// aren't supported. They return false on IE (#2968).\n\tisFunction: function( obj ) {\n\t\treturn jQuery.type(obj) === \"function\";\n\t},\n\n\tisArray: Array.isArray || function( obj ) {\n\t\treturn jQuery.type(obj) === \"array\";\n\t},\n\n\tisWindow: function( obj ) {\n\t\t/* jshint eqeqeq: false */\n\t\treturn obj != null && obj == obj.window;\n\t},\n\n\tisNumeric: function( obj ) {\n\t\t// parseFloat NaNs numeric-cast false positives (null|true|false|\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t// adding 1 corrects loss of precision from parseFloat (#15100)\n\t\treturn !jQuery.isArray( obj ) && (obj - parseFloat( obj ) + 1) >= 0;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\tisPlainObject: function( obj ) {\n\t\tvar key;\n\n\t\t// Must be an Object.\n\t\t// Because of IE, we also have to check the presence of the constructor property.\n\t\t// Make sure that DOM nodes and window objects don't pass through, as well\n\t\tif ( !obj || jQuery.type(obj) !== \"object\" || obj.nodeType || jQuery.isWindow( obj ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\ttry {\n\t\t\t// Not own constructor property must be Object\n\t\t\tif ( obj.constructor &&\n\t\t\t\t!hasOwn.call(obj, \"constructor\") &&\n\t\t\t\t!hasOwn.call(obj.constructor.prototype, \"isPrototypeOf\") ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\t// IE8,9 Will throw exceptions on certain host objects #9897\n\t\t\treturn false;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Handle iteration over inherited properties before own properties.\n\t\tif ( support.ownLast ) {\n\t\t\tfor ( key in obj ) {\n\t\t\t\treturn hasOwn.call( obj, key );\n\t\t\t}\n\t\t}\n\n\t\t// Own properties are enumerated firstly, so to speed up,\n\t\t// if last one is own, then all properties are own.\n\t\tfor ( key in obj ) {}\n\n\t\treturn key === undefined || hasOwn.call( obj, key );\n\t},\n\n\ttype: function( obj ) {\n\t\tif ( obj == null ) {\n\t\t\treturn obj + \"\";\n\t\t}\n\t\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\t\tclass2type[ toString.call(obj) ] || \"object\" :\n\t\t\ttypeof obj;\n\t},\n\n\t// Evaluates a script in a global context\n\t// Workarounds based on findings by Jim Driscoll\n\t// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context\n\tglobalEval: function( data ) {\n\t\tif ( data && jQuery.trim( data ) ) {\n\t\t\t// We use execScript on Internet Explorer\n\t\t\t// We use an anonymous function so that context is window\n\t\t\t// rather than jQuery in Firefox\n\t\t\t( window.execScript || function( data ) {\n\t\t\t\twindow[ \"eval\" ].call( window, data );\n\t\t\t} )( data );\n\t\t}\n\t},\n\n\t// Convert dashed to camelCase; used by the css and data modules\n\t// Microsoft forgot to hump their vendor prefix (#9572)\n\tcamelCase: function( string ) {\n\t\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n\t},\n\n\tnodeName: function( elem, name ) {\n\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\t},\n\n\t// args is for internal usage only\n\teach: function( obj, callback, args ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = obj.length,\n\t\t\tisArray = isArraylike( obj );\n\n\t\tif ( args ) {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// A special, fast, case for the most common use of each\n\t\t} else {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// Support: Android<4.1, IE<9\n\ttrim: function( text ) {\n\t\treturn text == null ?\n\t\t\t\"\" :\n\t\t\t( text + \"\" ).replace( rtrim, \"\" );\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArraylike( Object(arr) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\tvar len;\n\n\t\tif ( arr ) {\n\t\t\tif ( indexOf ) {\n\t\t\t\treturn indexOf.call( arr, elem, i );\n\t\t\t}\n\n\t\t\tlen = arr.length;\n\t\t\ti = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t// Skip accessing in sparse arrays\n\t\t\t\tif ( i in arr && arr[ i ] === elem ) {\n\t\t\t\t\treturn i;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn -1;\n\t},\n\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\twhile ( j < len ) {\n\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Workaround casting of .length to NaN on otherwise arraylike objects (e.g., NodeLists)\n\t\tif ( len !== len ) {\n\t\t\twhile ( second[j] !== undefined ) {\n\t\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t\t}\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tisArray = isArraylike( elems ),\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArray ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn concat.apply( [], ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// Bind a function to a context, optionally partially applying any\n\t// arguments.\n\tproxy: function( fn, context ) {\n\t\tvar args, proxy, tmp;\n\n\t\tif ( typeof context === \"string\" ) {\n\t\t\ttmp = fn[ context ];\n\t\t\tcontext = fn;\n\t\t\tfn = tmp;\n\t\t}\n\n\t\t// Quick check to determine if target is callable, in the spec\n\t\t// this throws a TypeError, but we will just return undefined.\n\t\tif ( !jQuery.isFunction( fn ) ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\t// Simulated bind\n\t\targs = slice.call( arguments, 2 );\n\t\tproxy = function() {\n\t\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t\t};\n\n\t\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\t\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\t\treturn proxy;\n\t},\n\n\tnow: function() {\n\t\treturn +( new Date() );\n\t},\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n});\n\n// Populate the class2type map\njQuery.each(\"Boolean Number String Function Array Date RegExp Object Error\".split(\" \"), function(i, name) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n});\n\nfunction isArraylike( obj ) {\n\n\t// Support: iOS 8.2 (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = \"length\" in obj && obj.length,\n\t\ttype = jQuery.type( obj );\n\n\tif ( type === \"function\" || jQuery.isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\tif ( obj.nodeType === 1 && length ) {\n\t\treturn true;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.2.0-pre\n * http://sizzlejs.com/\n *\n * Copyright 2008, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2014-12-16\n */\n(function( window ) {\n\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// General-purpose constants\n\tMAX_NEGATIVE = 1 << 31,\n\n\t// Instance methods\n\thasOwn = ({}).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpush_native = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\t// Use a stripped-down indexOf as it's faster than native\n\t// http://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[i] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\t// http://www.w3.org/TR/css3-syntax/#characters\n\tcharacterEncoding = \"(?:\\\\\\\\.|[\\\\w-]|[^\\\\x00-\\\\xa0])+\",\n\n\t// Loosely modeled on CSS identifier characters\n\t// An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors\n\t// Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier\n\tidentifier = characterEncoding.replace( \"w\", \"w#\" ),\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + characterEncoding + \")(?:\" + whitespace +\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\t\t// \"Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" + whitespace +\n\t\t\"*\\\\]\",\n\n\tpseudos = \":(\" + characterEncoding + \")(?:\\\\((\" +\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" + whitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace + \"*\" ),\n\n\trattributeQuotes = new RegExp( \"=\" + whitespace + \"*([^\\\\]'\\\"]*?)\" + whitespace + \"*\\\\]\", \"g\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + characterEncoding + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + characterEncoding + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + characterEncoding.replace( \"w\", \"w*\" ) + \")\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" + whitespace +\n\t\t\t\"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" + whitespace +\n\t\t\t\"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace + \"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" +\n\t\t\twhitespace + \"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\trescape = /'|\\\\/g,\n\n\t// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\([\\\\da-f]{1,6}\" + whitespace + \"?|(\" + whitespace + \")|.)\", \"ig\" ),\n\tfunescape = function( _, escaped, escapedWhitespace ) {\n\t\tvar high = \"0x\" + escaped - 0x10000;\n\t\t// NaN means non-codepoint\n\t\t// Support: Firefox<24\n\t\t// Workaround erroneous numeric interpretation of +\"0x\"\n\t\treturn high !== high || escapedWhitespace ?\n\t\t\tescaped :\n\t\t\thigh < 0 ?\n\t\t\t\t// BMP codepoint\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\t// Supplemental Plane codepoint (surrogate pair)\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t};\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t(arr = slice.call( preferredDoc.childNodes )),\n\t\tpreferredDoc.childNodes\n\t);\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpush_native.apply( target, slice.call(els) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( (target[j++] = els[i++]) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar match, elem, m, nodeType,\n\t\t// QSA vars\n\t\ti, groups, old, nid, newContext, newSelector;\n\n\tif ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\n\tcontext = context || document;\n\tresults = results || [];\n\tnodeType = context.nodeType;\n\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\tif ( !seed && documentIsHTML ) {\n\n\t\t// Try to shortcut find operations when possible (e.g., not under DocumentFragment)\n\t\tif ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {\n\t\t\t// Speed-up: Sizzle(\"#ID\")\n\t\t\tif ( (m = match[1]) ) {\n\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\telem = context.getElementById( m );\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document (jQuery #6963)\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE, Opera, and Webkit return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t// Context is not a document\n\t\t\t\t\tif ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&\n\t\t\t\t\t\tcontains( context, elem ) && elem.id === m ) {\n\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Speed-up: Sizzle(\"TAG\")\n\t\t\t} else if ( match[2] ) {\n\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\treturn results;\n\n\t\t\t// Speed-up: Sizzle(\".CLASS\")\n\t\t\t} else if ( (m = match[3]) && support.getElementsByClassName ) {\n\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\treturn results;\n\t\t\t}\n\t\t}\n\n\t\t// QSA path\n\t\tif ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {\n\t\t\tnid = old = expando;\n\t\t\tnewContext = context;\n\t\t\tnewSelector = nodeType !== 1 && selector;\n\n\t\t\t// qSA works strangely on Element-rooted queries\n\t\t\t// We can work around this by specifying an extra ID on the root\n\t\t\t// and working up from there (Thanks to Andrew Dupont for the technique)\n\t\t\t// IE 8 doesn't work on object elements\n\t\t\tif ( nodeType === 1 && context.nodeName.toLowerCase() !== \"object\" ) {\n\t\t\t\tgroups = tokenize( selector );\n\n\t\t\t\tif ( (old = context.getAttribute(\"id\")) ) {\n\t\t\t\t\tnid = old.replace( rescape, \"\\\\$&\" );\n\t\t\t\t} else {\n\t\t\t\t\tcontext.setAttribute( \"id\", nid );\n\t\t\t\t}\n\t\t\t\tnid = \"[id='\" + nid + \"'] \";\n\n\t\t\t\ti = groups.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tgroups[i] = nid + toSelector( groups[i] );\n\t\t\t\t}\n\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) || context;\n\t\t\t\tnewSelector = groups.join(\",\");\n\t\t\t}\n\n\t\t\tif ( newSelector ) {\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch(qsaError) {\n\t\t\t\t} finally {\n\t\t\t\t\tif ( !old ) {\n\t\t\t\t\t\tcontext.removeAttribute(\"id\");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {Function(string, Object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn (cache[ key + \" \" ] = value);\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created div and expects a boolean result\n */\nfunction assert( fn ) {\n\tvar div = document.createElement(\"div\");\n\n\ttry {\n\t\treturn !!fn( div );\n\t} catch (e) {\n\t\treturn false;\n\t} finally {\n\t\t// Remove from its parent by default\n\t\tif ( div.parentNode ) {\n\t\t\tdiv.parentNode.removeChild( div );\n\t\t}\n\t\t// release memory in IE\n\t\tdiv = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split(\"|\"),\n\t\ti = attrs.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[i] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\t( ~b.sourceIndex || MAX_NEGATIVE ) -\n\t\t\t( ~a.sourceIndex || MAX_NEGATIVE );\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( (cur = cur.nextSibling) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn (name === \"input\" || name === \"button\") && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction(function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction(function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ (j = matchIndexes[i]) ] ) {\n\t\t\t\t\tseed[j] = !(matches[j] = seed[j]);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t});\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\t// documentElement is verified for cases where it doesn't yet exist\n\t// (such as loading iframes in IE - #4833)\n\tvar documentElement = elem && (elem.ownerDocument || elem).documentElement;\n\treturn documentElement ? documentElement.nodeName !== \"HTML\" : false;\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, parent,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// If no document and documentElement is available, return\n\tif ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Set our document\n\tdocument = doc;\n\tdocElem = doc.documentElement;\n\tparent = doc.defaultView;\n\n\t// Support: IE>8\n\t// If iframe document is assigned to \"document\" variable and if iframe has been reloaded,\n\t// IE will throw \"permission denied\" error when accessing \"document\" variable, see jQuery #13936\n\t// IE6-8 do not support the defaultView property so parent will be undefined\n\tif ( parent && parent !== parent.top ) {\n\t\t// IE11 does not have attachEvent, so all must suffer\n\t\tif ( parent.addEventListener ) {\n\t\t\tparent.addEventListener( \"unload\", unloadHandler, false );\n\t\t} else if ( parent.attachEvent ) {\n\t\t\tparent.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t/* Support tests\n\t---------------------------------------------------------------------- */\n\tdocumentIsHTML = !isXML( doc );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert(function( div ) {\n\t\tdiv.className = \"i\";\n\t\treturn !div.getAttribute(\"className\");\n\t});\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert(function( div ) {\n\t\tdiv.appendChild( doc.createComment(\"\") );\n\t\treturn !div.getElementsByTagName(\"*\").length;\n\t});\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( doc.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert(function( div ) {\n\t\tdocElem.appendChild( div ).id = expando;\n\t\treturn !doc.getElementsByName || !doc.getElementsByName( expando ).length;\n\t});\n\n\t// ID find and filter\n\tif ( support.getById ) {\n\t\tExpr.find[\"ID\"] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar m = context.getElementById( id );\n\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\treturn m && m.parentNode ? [ m ] : [];\n\t\t\t}\n\t\t};\n\t\tExpr.filter[\"ID\"] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute(\"id\") === attrId;\n\t\t\t};\n\t\t};\n\t} else {\n\t\t// Support: IE6/7\n\t\t// getElementById is not reliable as a find shortcut\n\t\tdelete Expr.find[\"ID\"];\n\n\t\tExpr.filter[\"ID\"] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" && elem.getAttributeNode(\"id\");\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[\"TAG\"] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( (elem = results[i++]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[\"CLASS\"] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See http://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert(function( div ) {\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// http://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( div ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\f]' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( div.querySelectorAll(\"[msallowcapture^='']\").length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !div.querySelectorAll(\"[selected]\").length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.2+, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.7+\n\t\t\tif ( !div.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push(\"~=\");\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":checked\").length ) {\n\t\t\t\trbuggyQSA.push(\":checked\");\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibing-combinator selector` fails\n\t\t\tif ( !div.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push(\".#.+[+~]\");\n\t\t\t}\n\t\t});\n\n\t\tassert(function( div ) {\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = doc.createElement(\"input\");\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tdiv.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( div.querySelectorAll(\"[name=d]\").length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":enabled\").length ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tdiv.querySelectorAll(\"*,:x\");\n\t\t\trbuggyQSA.push(\",.*:\");\n\t\t});\n\t}\n\n\tif ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector) )) ) {\n\n\t\tassert(function( div ) {\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( div, \"div\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( div, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t});\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join(\"|\") );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join(\"|\") );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully does not implement inclusive descendent\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t));\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( (b = b.parentNode) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\tcompare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\tif ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t\tif ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\t\t\treturn a === doc ? -1 :\n\t\t\t\tb === doc ? 1 :\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[i] === bp[i] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[i], bp[i] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\tap[i] === preferredDoc ? -1 :\n\t\t\tbp[i] === preferredDoc ? 1 :\n\t\t\t0;\n\t};\n\n\treturn doc;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\t// Make sure that attribute selectors are quoted\n\texpr = expr.replace( rattributeQuotes, \"='$1']\" );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t// fragment in IE 9\n\t\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch (e) {}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\t// Set document vars if needed\n\tif ( ( context.ownerDocument || context ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t(val = elem.getAttributeNode(name)) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( (elem = results[i++]) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( (node = elem[i++]) ) {\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[1] = match[1].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[3] = ( match[3] || match[4] || match[5] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[2] === \"~=\" ) {\n\t\t\t\tmatch[3] = \" \" + match[3] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[1] = match[1].toLowerCase();\n\n\t\t\tif ( match[1].slice( 0, 3 ) === \"nth\" ) {\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[3] ) {\n\t\t\t\t\tSizzle.error( match[0] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === \"even\" || match[3] === \"odd\" ) );\n\t\t\t\tmatch[5] = +( ( match[7] + match[8] ) || match[3] === \"odd\" );\n\n\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[3] ) {\n\t\t\t\tSizzle.error( match[0] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[6] && match[2];\n\n\t\t\tif ( matchExpr[\"CHILD\"].test( match[0] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[3] ) {\n\t\t\t\tmatch[2] = match[4] || match[5] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t(excess = tokenize( unquoted, true )) &&\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t(excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[0] = match[0].slice( 0, excess );\n\t\t\t\tmatch[2] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() { return true; } :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t(pattern = new RegExp( \"(^|\" + whitespace + \")\" + className + \"(\" + whitespace + \"|$)\" )) &&\n\t\t\t\tclassCache( className, function( elem ) {\n\t\t\t\t\treturn pattern.test( typeof elem.className === \"string\" && elem.className || typeof elem.getAttribute !== \"undefined\" && elem.getAttribute(\"class\") || \"\" );\n\t\t\t\t});\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tvar cache, outerCache, node, diff, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( (node = node[ dir ]) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\t\t\t\t\t\t\touterCache = parent[ expando ] || (parent[ expando ] = {});\n\t\t\t\t\t\t\tcache = outerCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[0] === dirruns && cache[1];\n\t\t\t\t\t\t\tdiff = cache[0] === dirruns && cache[2];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\touterCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t} else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {\n\t\t\t\t\t\t\tdiff = cache[1];\n\n\t\t\t\t\t\t// xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\tif ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {\n\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t(node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction(function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[i] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[i] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction(function( selector ) {\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction(function( seed, matches, context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = unmatched[i]) ) {\n\t\t\t\t\t\t\tseed[i] = !(matches[i] = elem);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}) :\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tinput[0] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[0] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t}),\n\n\t\t\"has\": markFunction(function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t}),\n\n\t\t\"contains\": markFunction(function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t}),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test(lang || \"\") ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( (elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute(\"xml:lang\") || elem.getAttribute(\"lang\")) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( (elem = elem.parentNode) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t}),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": function( elem ) {\n\t\t\treturn elem.disabled === false;\n\t\t},\n\n\t\t\"disabled\": function( elem ) {\n\t\t\treturn elem.disabled === true;\n\t\t},\n\n\t\t\"checked\": function( elem ) {\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn (nodeName === \"input\" && !!elem.checked) || (nodeName === \"option\" && !!elem.selected);\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[\"empty\"]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( (attr = elem.getAttribute(\"type\")) == null || attr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo(function() {\n\t\t\treturn [ 0 ];\n\t\t}),\n\n\t\t\"last\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t}),\n\n\t\t\"eq\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t}),\n\n\t\t\"even\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"odd\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"lt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"gt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t})\n\t}\n};\n\nExpr.pseudos[\"nth\"] = Expr.pseudos[\"eq\"];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || (match = rcomma.exec( soFar )) ) {\n\t\t\tif ( match ) {\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[0].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( (tokens = []) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( (match = rcombinators.exec( soFar )) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push({\n\t\t\t\tvalue: matched,\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[0].replace( rtrim, \" \" )\n\t\t\t});\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||\n\t\t\t\t(match = preFilters[ type ]( match ))) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push({\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t});\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[i].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tcheckNonElements = base && dir === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from dir caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || (elem[ expando ] = {});\n\t\t\t\t\t\tif ( (oldCache = outerCache[ dir ]) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn (newCache[ 2 ] = oldCache[ 2 ]);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\touterCache[ dir ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[i]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[0];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[i], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (elem = unmatched[i]) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction(function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts( selector || \"*\", context.nodeType ? [ context ] : context, [] ),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( (elem = temp[i]) ) {\n\t\t\t\t\tmatcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = matcherOut[i]) ) {\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( (matcherIn[i] = elem) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, (matcherOut = []), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( (elem = matcherOut[i]) &&\n\t\t\t\t\t\t(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {\n\n\t\t\t\t\t\tseed[temp] = !(results[temp] = elem);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t});\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[0].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[\" \"],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t(checkContext = context).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (matcher = Expr.relative[ tokens[i].type ]) ) {\n\t\t\tmatchers = [ addCombinator(elementMatcher( matchers ), matcher) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[j].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\t\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\t\ttokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" })\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( (tokens = tokens.slice( j )) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[\"TAG\"]( \"*\", outermost ),\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\t\t\t\toutermostContext = context !== document && context;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Keep `i` a string if there are no elements so `matchedCount` will be \"00\" below\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && (elem = elems[i]) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (matcher = elementMatchers[j++]) ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( (elem = !matcher && elem) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\tmatchedCount += i;\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (matcher = setMatchers[j++]) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !(unmatched[i] || setMatched[i]) ) {\n\t\t\t\t\t\t\t\tsetMatched[i] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[i] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( (selector = compiled.selector || selector) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is no seed and only one group\n\tif ( match.length === 1 ) {\n\n\t\t// Take a shortcut and set the context if the root selector is an ID\n\t\ttokens = match[0] = match[0].slice( 0 );\n\t\tif ( tokens.length > 2 && (token = tokens[0]).type === \"ID\" &&\n\t\t\t\tsupport.getById && context.nodeType === 9 && documentIsHTML &&\n\t\t\t\tExpr.relative[ tokens[1].type ] ) {\n\n\t\t\tcontext = ( Expr.find[\"ID\"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[\"needsContext\"].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[i];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ (type = token.type) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( (find = Expr.find[ type ]) ) {\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( (seed = find(\n\t\t\t\t\ttoken.matches[0].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context\n\t\t\t\t)) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\trsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split(\"\").sort( sortOrder ).join(\"\") === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert(function( div1 ) {\n\t// Should return 1, but returns 4 (following)\n\treturn div1.compareDocumentPosition( document.createElement(\"div\") ) & 1;\n});\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert(function( div ) {\n\tdiv.innerHTML = \"<a href='#'></a>\";\n\treturn div.firstChild.getAttribute(\"href\") === \"#\" ;\n}) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert(function( div ) {\n\tdiv.innerHTML = \"<input/>\";\n\tdiv.firstChild.setAttribute( \"value\", \"\" );\n\treturn div.firstChild.getAttribute( \"value\" ) === \"\";\n}) ) {\n\taddHandle( \"value\", function( elem, name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert(function( div ) {\n\treturn div.getAttribute(\"disabled\") == null;\n}) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t\t(val = elem.getAttributeNode( name )) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\tnull;\n\t\t}\n\t});\n}\n\nreturn Sizzle;\n\n})( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\njQuery.expr[\":\"] = jQuery.expr.pseudos;\njQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\n\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\nvar rsingleTag = (/^<(\\w+)\\s*\\/?>(?:<\\/\\1>|)$/);\n\n\n\nvar risSimple = /^.[^:#\\[\\.,]*$/;\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( jQuery.isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\t/* jshint -W018 */\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t});\n\n\t}\n\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t});\n\n\t}\n\n\tif ( typeof qualifier === \"string\" ) {\n\t\tif ( risSimple.test( qualifier ) ) {\n\t\t\treturn jQuery.filter( qualifier, elements, not );\n\t\t}\n\n\t\tqualifier = jQuery.filter( qualifier, elements );\n\t}\n\n\treturn jQuery.grep( elements, function( elem ) {\n\t\treturn ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not;\n\t});\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\treturn elems.length === 1 && elem.nodeType === 1 ?\n\t\tjQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :\n\t\tjQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\t\treturn elem.nodeType === 1;\n\t\t}));\n};\n\njQuery.fn.extend({\n\tfind: function( selector ) {\n\t\tvar i,\n\t\t\tret = [],\n\t\t\tself = this,\n\t\t\tlen = self.length;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter(function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}) );\n\t\t}\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\t// Needed because $( selector, context ) becomes $( context ).find( selector )\n\t\tret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );\n\t\tret.selector = this.selector ? this.selector + \" \" + selector : selector;\n\t\treturn ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], false) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], true) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n});\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// Use the correct document accordingly with window argument (sandbox)\n\tdocument = window.document,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]*))$/,\n\n\tinit = jQuery.fn.init = function( selector, context ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector.charAt(0) === \"<\" && selector.charAt( selector.length - 1 ) === \">\" && selector.length >= 3 ) {\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && (match[1] || !context) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[1] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[0] : context;\n\n\t\t\t\t\t// scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[1],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( jQuery.isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[2] );\n\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE and Opera return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id !== match[2] ) {\n\t\t\t\t\t\t\treturn rootjQuery.find( selector );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Otherwise, we inject the element directly into the jQuery object\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t\tthis[0] = elem;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.context = document;\n\t\t\t\t\tthis.selector = selector;\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || rootjQuery ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis.context = this[0] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( jQuery.isFunction( selector ) ) {\n\t\t\treturn typeof rootjQuery.ready !== \"undefined\" ?\n\t\t\t\trootjQuery.ready( selector ) :\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\tif ( selector.selector !== undefined ) {\n\t\t\tthis.selector = selector.selector;\n\t\t\tthis.context = selector.context;\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\t// methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.extend({\n\tdir: function( elem, dir, until ) {\n\t\tvar matched = [],\n\t\t\tcur = elem[ dir ];\n\n\t\twhile ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {\n\t\t\tif ( cur.nodeType === 1 ) {\n\t\t\t\tmatched.push( cur );\n\t\t\t}\n\t\t\tcur = cur[dir];\n\t\t}\n\t\treturn matched;\n\t},\n\n\tsibling: function( n, elem ) {\n\t\tvar r = [];\n\n\t\tfor ( ; n; n = n.nextSibling ) {\n\t\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\t\tr.push( n );\n\t\t\t}\n\t\t}\n\n\t\treturn r;\n\t}\n});\n\njQuery.fn.extend({\n\thas: function( target ) {\n\t\tvar i,\n\t\t\ttargets = jQuery( target, this ),\n\t\t\tlen = targets.length;\n\n\t\treturn this.filter(function() {\n\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[i] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\tpos = rneedsContext.test( selectors ) || typeof selectors !== \"string\" ?\n\t\t\t\tjQuery( selectors, context || this.context ) :\n\t\t\t\t0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tfor ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) {\n\t\t\t\t// Always skip document fragments\n\t\t\t\tif ( cur.nodeType < 11 && (pos ?\n\t\t\t\t\tpos.index(cur) > -1 :\n\n\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\tjQuery.find.matchesSelector(cur, selectors)) ) {\n\n\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within\n\t// the matched set of elements\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn jQuery.inArray( this[0], jQuery( elem ) );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn jQuery.inArray(\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[0] : elem, this );\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.unique(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter(selector)\n\t\t);\n\t}\n});\n\nfunction sibling( cur, dir ) {\n\tdo {\n\t\tcur = cur[ dir ];\n\t} while ( cur && cur.nodeType !== 1 );\n\n\treturn cur;\n}\n\njQuery.each({\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn jQuery.dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn jQuery.sibling( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\treturn jQuery.nodeName( elem, \"iframe\" ) ?\n\t\t\telem.contentDocument || elem.contentWindow.document :\n\t\t\tjQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar ret = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tret = jQuery.filter( selector, ret );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tret = jQuery.unique( ret );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tret = ret.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\nvar rnotwhite = (/\\S+/g);\n\n\n\n// String to Object options format cache\nvar optionsCache = {};\n\n// Convert String-formatted options into Object-formatted ones and store in cache\nfunction createOptions( options ) {\n\tvar object = optionsCache[ options ] = {};\n\tjQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t});\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\t( optionsCache[ options ] || createOptions( options ) ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\t\t// Last fire value (for non-forgettable lists)\n\t\tmemory,\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\t\t// End of the loop when firing\n\t\tfiringLength,\n\t\t// Index of currently firing callback (modified by remove if needed)\n\t\tfiringIndex,\n\t\t// First callback to fire (used internally by add and fireWith)\n\t\tfiringStart,\n\t\t// Actual callback list\n\t\tlist = [],\n\t\t// Stack of fire calls for repeatable lists\n\t\tstack = !options.once && [],\n\t\t// Fire callbacks\n\t\tfire = function( data ) {\n\t\t\tmemory = options.memory && data;\n\t\t\tfired = true;\n\t\t\tfiringIndex = firingStart || 0;\n\t\t\tfiringStart = 0;\n\t\t\tfiringLength = list.length;\n\t\t\tfiring = true;\n\t\t\tfor ( ; list && firingIndex < firingLength; firingIndex++ ) {\n\t\t\t\tif ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {\n\t\t\t\t\tmemory = false; // To prevent further calls using add\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tfiring = false;\n\t\t\tif ( list ) {\n\t\t\t\tif ( stack ) {\n\t\t\t\t\tif ( stack.length ) {\n\t\t\t\t\t\tfire( stack.shift() );\n\t\t\t\t\t}\n\t\t\t\t} else if ( memory ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t} else {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t// Actual Callbacks object\n\t\tself = {\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\t// First, we save the current length\n\t\t\t\t\tvar start = list.length;\n\t\t\t\t\t(function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tvar type = jQuery.type( arg );\n\t\t\t\t\t\t\tif ( type === \"function\" ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && type !== \"string\" ) {\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t})( arguments );\n\t\t\t\t\t// Do we need to add the callbacks to the\n\t\t\t\t\t// current firing batch?\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tfiringLength = list.length;\n\t\t\t\t\t// With memory, if we're not firing then\n\t\t\t\t\t// we should call right away\n\t\t\t\t\t} else if ( memory ) {\n\t\t\t\t\t\tfiringStart = start;\n\t\t\t\t\t\tfire( memory );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\t\tvar index;\n\t\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\t\tlist.splice( index, 1 );\n\t\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\t\t\tif ( index <= firingLength ) {\n\t\t\t\t\t\t\t\t\tfiringLength--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );\n\t\t\t},\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tlist = [];\n\t\t\t\tfiringLength = 0;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Have the list do nothing anymore\n\t\t\tdisable: function() {\n\t\t\t\tlist = stack = memory = undefined;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it disabled?\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\t\t\t// Lock the list in its current state\n\t\t\tlock: function() {\n\t\t\t\tstack = undefined;\n\t\t\t\tif ( !memory ) {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it locked?\n\t\t\tlocked: function() {\n\t\t\t\treturn !stack;\n\t\t\t},\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( list && ( !fired || stack ) ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tstack.push( args );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tfire( args );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\njQuery.extend({\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\t\t\t\t// action, add listener, listener list, final state\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks(\"once memory\"), \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks(\"once memory\"), \"rejected\" ],\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks(\"memory\") ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\tthen: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\t\t\t\t\treturn jQuery.Deferred(function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\t\t\t\t\tvar fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];\n\t\t\t\t\t\t\t// deferred[ done | fail | progress ] for forwarding actions to newDefer\n\t\t\t\t\t\t\tdeferred[ tuple[1] ](function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && jQuery.isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject )\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t});\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t}).promise();\n\t\t\t\t},\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Keep pipe for back-compat\n\t\tpromise.pipe = promise.then;\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 3 ];\n\n\t\t\t// promise[ done | fail | progress ] = list.add\n\t\t\tpromise[ tuple[1] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(function() {\n\t\t\t\t\t// state = [ resolved | rejected ]\n\t\t\t\t\tstate = stateString;\n\n\t\t\t\t// [ reject_list | resolve_list ].disable; progress_list.lock\n\t\t\t\t}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );\n\t\t\t}\n\n\t\t\t// deferred[ resolve | reject | notify ]\n\t\t\tdeferred[ tuple[0] ] = function() {\n\t\t\t\tdeferred[ tuple[0] + \"With\" ]( this === deferred ? promise : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\t\t\tdeferred[ tuple[0] + \"With\" ] = list.fireWith;\n\t\t});\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( subordinate /* , ..., subordinateN */ ) {\n\t\tvar i = 0,\n\t\t\tresolveValues = slice.call( arguments ),\n\t\t\tlength = resolveValues.length,\n\n\t\t\t// the count of uncompleted subordinates\n\t\t\tremaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,\n\n\t\t\t// the master Deferred. If resolveValues consist of only a single Deferred, just use that.\n\t\t\tdeferred = remaining === 1 ? subordinate : jQuery.Deferred(),\n\n\t\t\t// Update function for both resolve and progress values\n\t\t\tupdateFunc = function( i, contexts, values ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tcontexts[ i ] = this;\n\t\t\t\t\tvalues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( values === progressValues ) {\n\t\t\t\t\t\tdeferred.notifyWith( contexts, values );\n\n\t\t\t\t\t} else if ( !(--remaining) ) {\n\t\t\t\t\t\tdeferred.resolveWith( contexts, values );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t},\n\n\t\t\tprogressValues, progressContexts, resolveContexts;\n\n\t\t// add listeners to Deferred subordinates; treat others as resolved\n\t\tif ( length > 1 ) {\n\t\t\tprogressValues = new Array( length );\n\t\t\tprogressContexts = new Array( length );\n\t\t\tresolveContexts = new Array( length );\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {\n\t\t\t\t\tresolveValues[ i ].promise()\n\t\t\t\t\t\t.done( updateFunc( i, resolveContexts, resolveValues ) )\n\t\t\t\t\t\t.fail( deferred.reject )\n\t\t\t\t\t\t.progress( updateFunc( i, progressContexts, progressValues ) );\n\t\t\t\t} else {\n\t\t\t\t\t--remaining;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// if we're not waiting on anything, resolve the master\n\t\tif ( !remaining ) {\n\t\t\tdeferred.resolveWith( resolveContexts, resolveValues );\n\t\t}\n\n\t\treturn deferred.promise();\n\t}\n});\n\n\n// The deferred used on DOM ready\nvar readyList;\n\njQuery.fn.ready = function( fn ) {\n\t// Add the callback\n\tjQuery.ready.promise().done( fn );\n\n\treturn this;\n};\n\njQuery.extend({\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Hold (or release) the ready event\n\tholdReady: function( hold ) {\n\t\tif ( hold ) {\n\t\t\tjQuery.readyWait++;\n\t\t} else {\n\t\t\tjQuery.ready( true );\n\t\t}\n\t},\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).\n\t\tif ( !document.body ) {\n\t\t\treturn setTimeout( jQuery.ready );\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\n\t\t// Trigger any bound ready events\n\t\tif ( jQuery.fn.triggerHandler ) {\n\t\t\tjQuery( document ).triggerHandler( \"ready\" );\n\t\t\tjQuery( document ).off( \"ready\" );\n\t\t}\n\t}\n});\n\n/**\n * Clean-up method for dom ready events\n */\nfunction detach() {\n\tif ( document.addEventListener ) {\n\t\tdocument.removeEventListener( \"DOMContentLoaded\", completed, false );\n\t\twindow.removeEventListener( \"load\", completed, false );\n\n\t} else {\n\t\tdocument.detachEvent( \"onreadystatechange\", completed );\n\t\twindow.detachEvent( \"onload\", completed );\n\t}\n}\n\n/**\n * The ready event handler and self cleanup method\n */\nfunction completed() {\n\t// readyState === \"complete\" is good enough for us to call the dom ready in oldIE\n\tif ( document.addEventListener || event.type === \"load\" || document.readyState === \"complete\" ) {\n\t\tdetach();\n\t\tjQuery.ready();\n\t}\n}\n\njQuery.ready.promise = function( obj ) {\n\tif ( !readyList ) {\n\n\t\treadyList = jQuery.Deferred();\n\n\t\t// Catch cases where $(document).ready() is called after the browser event has already occurred.\n\t\t// we once tried to use readyState \"interactive\" here, but it caused issues like the one\n\t\t// discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15\n\t\tif ( document.readyState === \"complete\" ) {\n\t\t\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\t\t\tsetTimeout( jQuery.ready );\n\n\t\t// Standards-based browsers support DOMContentLoaded\n\t\t} else if ( document.addEventListener ) {\n\t\t\t// Use the handy event callback\n\t\t\tdocument.addEventListener( \"DOMContentLoaded\", completed, false );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.addEventListener( \"load\", completed, false );\n\n\t\t// If IE event model is used\n\t\t} else {\n\t\t\t// Ensure firing before onload, maybe late but safe also for iframes\n\t\t\tdocument.attachEvent( \"onreadystatechange\", completed );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.attachEvent( \"onload\", completed );\n\n\t\t\t// If IE and not a frame\n\t\t\t// continually check to see if the document is ready\n\t\t\tvar top = false;\n\n\t\t\ttry {\n\t\t\t\ttop = window.frameElement == null && document.documentElement;\n\t\t\t} catch(e) {}\n\n\t\t\tif ( top && top.doScroll ) {\n\t\t\t\t(function doScrollCheck() {\n\t\t\t\t\tif ( !jQuery.isReady ) {\n\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t// Use the trick by Diego Perini\n\t\t\t\t\t\t\t// http://javascript.nwbox.com/IEContentLoaded/\n\t\t\t\t\t\t\ttop.doScroll(\"left\");\n\t\t\t\t\t\t} catch(e) {\n\t\t\t\t\t\t\treturn setTimeout( doScrollCheck, 50 );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// detach all dom ready events\n\t\t\t\t\t\tdetach();\n\n\t\t\t\t\t\t// and execute any waiting functions\n\t\t\t\t\t\tjQuery.ready();\n\t\t\t\t\t}\n\t\t\t\t})();\n\t\t\t}\n\t\t}\n\t}\n\treturn readyList.promise( obj );\n};\n\n\nvar strundefined = typeof undefined;\n\n\n\n// Support: IE<9\n// Iteration over object's inherited properties before its own\nvar i;\nfor ( i in jQuery( support ) ) {\n\tbreak;\n}\nsupport.ownLast = i !== \"0\";\n\n// Note: most support tests are defined in their respective modules.\n// false until the test is run\nsupport.inlineBlockNeedsLayout = false;\n\n// Execute ASAP in case we need to set body.style.zoom\njQuery(function() {\n\t// Minified: var a,b,c,d\n\tvar val, div, body, container;\n\n\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\tif ( !body || !body.style ) {\n\t\t// Return for frameset docs that don't have a body\n\t\treturn;\n\t}\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tcontainer = document.createElement( \"div\" );\n\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\tbody.appendChild( container ).appendChild( div );\n\n\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t// Support: IE<8\n\t\t// Check if natively block-level elements act like inline-block\n\t\t// elements when setting their display to 'inline' and giving\n\t\t// them layout\n\t\tdiv.style.cssText = \"display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1\";\n\n\t\tsupport.inlineBlockNeedsLayout = val = div.offsetWidth === 3;\n\t\tif ( val ) {\n\t\t\t// Prevent IE 6 from affecting layout for positioned elements #11048\n\t\t\t// Prevent IE from shrinking the body in IE 7 mode #12869\n\t\t\t// Support: IE<8\n\t\t\tbody.style.zoom = 1;\n\t\t}\n\t}\n\n\tbody.removeChild( container );\n});\n\n\n\n\n(function() {\n\tvar div = document.createElement( \"div\" );\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\n/**\n * Determines whether an object can have data\n */\njQuery.acceptData = function( elem ) {\n\tvar noData = jQuery.noData[ (elem.nodeName + \" \").toLowerCase() ],\n\t\tnodeType = +elem.nodeType || 1;\n\n\t// Do not set data on non-element DOM nodes because it will not be cleared (#8335).\n\treturn nodeType !== 1 && nodeType !== 9 ?\n\t\tfalse :\n\n\t\t// Nodes accept data unless otherwise specified; rejection can be conditional\n\t\t!noData || noData !== true && elem.getAttribute(\"classid\") === noData;\n};\n\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /([A-Z])/g;\n\nfunction dataAttr( elem, key, data ) {\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\n\t\tvar name = \"data-\" + key.replace( rmultiDash, \"-$1\" ).toLowerCase();\n\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = data === \"true\" ? true :\n\t\t\t\t\tdata === \"false\" ? false :\n\t\t\t\t\tdata === \"null\" ? null :\n\t\t\t\t\t// Only convert to a number if it doesn't change the string\n\t\t\t\t\t+data + \"\" === data ? +data :\n\t\t\t\t\trbrace.test( data ) ? jQuery.parseJSON( data ) :\n\t\t\t\t\tdata;\n\t\t\t} catch( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tjQuery.data( elem, key, data );\n\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\n\treturn data;\n}\n\n// checks a cache object for emptiness\nfunction isEmptyDataObject( obj ) {\n\tvar name;\n\tfor ( name in obj ) {\n\n\t\t// if the public data object is empty, the private is still empty\n\t\tif ( name === \"data\" && jQuery.isEmptyObject( obj[name] ) ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( name !== \"toJSON\" ) {\n\t\t\treturn false;\n\t\t}\n\t}\n\n\treturn true;\n}\n\nfunction internalData( elem, name, data, pvt /* Internal Use Only */ ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar ret, thisCache,\n\t\tinternalKey = jQuery.expando,\n\n\t\t// We have to handle DOM nodes and JS objects differently because IE6-7\n\t\t// can't GC object references properly across the DOM-JS boundary\n\t\tisNode = elem.nodeType,\n\n\t\t// Only DOM nodes need the global jQuery cache; JS object data is\n\t\t// attached directly to the object so GC can occur automatically\n\t\tcache = isNode ? jQuery.cache : elem,\n\n\t\t// Only defining an ID for JS objects if its cache already exists allows\n\t\t// the code to shortcut on the same path as a DOM node with no cache\n\t\tid = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;\n\n\t// Avoid doing any more work than we need to when trying to get data on an\n\t// object that has no data at all\n\tif ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === \"string\" ) {\n\t\treturn;\n\t}\n\n\tif ( !id ) {\n\t\t// Only DOM nodes need a new unique ID for each element since their data\n\t\t// ends up in the global cache\n\t\tif ( isNode ) {\n\t\t\tid = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++;\n\t\t} else {\n\t\t\tid = internalKey;\n\t\t}\n\t}\n\n\tif ( !cache[ id ] ) {\n\t\t// Avoid exposing jQuery metadata on plain JS objects when the object\n\t\t// is serialized using JSON.stringify\n\t\tcache[ id ] = isNode ? {} : { toJSON: jQuery.noop };\n\t}\n\n\t// An object can be passed to jQuery.data instead of a key/value pair; this gets\n\t// shallow copied over onto the existing cache\n\tif ( typeof name === \"object\" || typeof name === \"function\" ) {\n\t\tif ( pvt ) {\n\t\t\tcache[ id ] = jQuery.extend( cache[ id ], name );\n\t\t} else {\n\t\t\tcache[ id ].data = jQuery.extend( cache[ id ].data, name );\n\t\t}\n\t}\n\n\tthisCache = cache[ id ];\n\n\t// jQuery data() is stored in a separate object inside the object's internal data\n\t// cache in order to avoid key collisions between internal data and user-defined\n\t// data.\n\tif ( !pvt ) {\n\t\tif ( !thisCache.data ) {\n\t\t\tthisCache.data = {};\n\t\t}\n\n\t\tthisCache = thisCache.data;\n\t}\n\n\tif ( data !== undefined ) {\n\t\tthisCache[ jQuery.camelCase( name ) ] = data;\n\t}\n\n\t// Check for both converted-to-camel and non-converted data property names\n\t// If a data property was specified\n\tif ( typeof name === \"string\" ) {\n\n\t\t// First Try to find as-is property data\n\t\tret = thisCache[ name ];\n\n\t\t// Test for null|undefined property data\n\t\tif ( ret == null ) {\n\n\t\t\t// Try to find the camelCased property\n\t\t\tret = thisCache[ jQuery.camelCase( name ) ];\n\t\t}\n\t} else {\n\t\tret = thisCache;\n\t}\n\n\treturn ret;\n}\n\nfunction internalRemoveData( elem, name, pvt ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar thisCache, i,\n\t\tisNode = elem.nodeType,\n\n\t\t// See jQuery.data for more information\n\t\tcache = isNode ? jQuery.cache : elem,\n\t\tid = isNode ? elem[ jQuery.expando ] : jQuery.expando;\n\n\t// If there is already no cache entry for this object, there is no\n\t// purpose in continuing\n\tif ( !cache[ id ] ) {\n\t\treturn;\n\t}\n\n\tif ( name ) {\n\n\t\tthisCache = pvt ? cache[ id ] : cache[ id ].data;\n\n\t\tif ( thisCache ) {\n\n\t\t\t// Support array or space separated string names for data keys\n\t\t\tif ( !jQuery.isArray( name ) ) {\n\n\t\t\t\t// try the string as a key before any manipulation\n\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\tname = [ name ];\n\t\t\t\t} else {\n\n\t\t\t\t\t// split the camel cased version by spaces unless a key with the spaces exists\n\t\t\t\t\tname = jQuery.camelCase( name );\n\t\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\t\tname = [ name ];\n\t\t\t\t\t} else {\n\t\t\t\t\t\tname = name.split(\" \");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// If \"name\" is an array of keys...\n\t\t\t\t// When data is initially created, via (\"key\", \"val\") signature,\n\t\t\t\t// keys will be converted to camelCase.\n\t\t\t\t// Since there is no way to tell _how_ a key was added, remove\n\t\t\t\t// both plain key and camelCase key. #12786\n\t\t\t\t// This will only penalize the array argument path.\n\t\t\t\tname = name.concat( jQuery.map( name, jQuery.camelCase ) );\n\t\t\t}\n\n\t\t\ti = name.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete thisCache[ name[i] ];\n\t\t\t}\n\n\t\t\t// If there is no data left in the cache, we want to continue\n\t\t\t// and let the cache object itself get destroyed\n\t\t\tif ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t}\n\n\t// See jQuery.data for more information\n\tif ( !pvt ) {\n\t\tdelete cache[ id ].data;\n\n\t\t// Don't destroy the parent cache unless the internal data object\n\t\t// had been the only thing left in it\n\t\tif ( !isEmptyDataObject( cache[ id ] ) ) {\n\t\t\treturn;\n\t\t}\n\t}\n\n\t// Destroy the cache\n\tif ( isNode ) {\n\t\tjQuery.cleanData( [ elem ], true );\n\n\t// Use delete when supported for expandos or `cache` is not a window per isWindow (#10080)\n\t/* jshint eqeqeq: false */\n\t} else if ( support.deleteExpando || cache != cache.window ) {\n\t\t/* jshint eqeqeq: true */\n\t\tdelete cache[ id ];\n\n\t// When all else fails, null\n\t} else {\n\t\tcache[ id ] = null;\n\t}\n}\n\njQuery.extend({\n\tcache: {},\n\n\t// The following elements (space-suffixed to avoid Object.prototype collisions)\n\t// throw uncatchable exceptions if you attempt to set expando properties\n\tnoData: {\n\t\t\"applet \": true,\n\t\t\"embed \": true,\n\t\t// ...but Flash objects (which have this classid) *can* handle expandos\n\t\t\"object \": \"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"\n\t},\n\n\thasData: function( elem ) {\n\t\telem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];\n\t\treturn !!elem && !isEmptyDataObject( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name );\n\t},\n\n\t// For internal use only.\n\t_data: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data, true );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name, true );\n\t}\n});\n\njQuery.fn.extend({\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[0],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Special expections of .data basically thwart jQuery.access,\n\t\t// so implement the relevant behavior ourselves\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = jQuery.data( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !jQuery._data( elem, \"parsedAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE11+\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = jQuery.camelCase( name.slice(5) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tjQuery._data( elem, \"parsedAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each(function() {\n\t\t\t\tjQuery.data( this, key );\n\t\t\t});\n\t\t}\n\n\t\treturn arguments.length > 1 ?\n\n\t\t\t// Sets one value\n\t\t\tthis.each(function() {\n\t\t\t\tjQuery.data( this, key, value );\n\t\t\t}) :\n\n\t\t\t// Gets one value\n\t\t\t// Try to fetch any internally stored data first\n\t\t\telem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined;\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeData( this, key );\n\t\t});\n\t}\n});\n\n\njQuery.extend({\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = jQuery._data( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || jQuery.isArray(data) ) {\n\t\t\t\t\tqueue = jQuery._data( elem, type, jQuery.makeArray(data) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// not intended for public consumption - generates a queueHooks object, or returns the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn jQuery._data( elem, key ) || jQuery._data( elem, key, {\n\t\t\tempty: jQuery.Callbacks(\"once memory\").add(function() {\n\t\t\t\tjQuery._removeData( elem, type + \"queue\" );\n\t\t\t\tjQuery._removeData( elem, key );\n\t\t\t})\n\t\t});\n\t}\n});\n\njQuery.fn.extend({\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[0], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each(function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[0] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t});\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t});\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = jQuery._data( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n});\nvar pnum = (/[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/).source;\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar isHidden = function( elem, el ) {\n\t\t// isHidden might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\t\treturn jQuery.css( elem, \"display\" ) === \"none\" || !jQuery.contains( elem.ownerDocument, elem );\n\t};\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlength = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( jQuery.type( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\tjQuery.access( elems, fn, i, key[i], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !jQuery.isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tfn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn chainable ?\n\t\telems :\n\n\t\t// Gets\n\t\tbulk ?\n\t\t\tfn.call( elems ) :\n\t\t\tlength ? fn( elems[0], key ) : emptyGet;\n};\nvar rcheckableType = (/^(?:checkbox|radio)$/i);\n\n\n\n(function() {\n\t// Minified: var a,b,c\n\tvar input = document.createElement( \"input\" ),\n\t\tdiv = document.createElement( \"div\" ),\n\t\tfragment = document.createDocumentFragment();\n\n\t// Setup\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\n\t// IE strips leading whitespace when .innerHTML is used\n\tsupport.leadingWhitespace = div.firstChild.nodeType === 3;\n\n\t// Make sure that tbody elements aren't automatically inserted\n\t// IE will insert them into empty tables\n\tsupport.tbody = !div.getElementsByTagName( \"tbody\" ).length;\n\n\t// Make sure that link elements get serialized correctly by innerHTML\n\t// This requires a wrapper element in IE\n\tsupport.htmlSerialize = !!div.getElementsByTagName( \"link\" ).length;\n\n\t// Makes sure cloning an html5 element does not cause problems\n\t// Where outerHTML is undefined, this still works\n\tsupport.html5Clone =\n\t\tdocument.createElement( \"nav\" ).cloneNode( true ).outerHTML !== \"<:nav></:nav>\";\n\n\t// Check if a disconnected checkbox will retain its checked\n\t// value of true after appended to the DOM (IE6/7)\n\tinput.type = \"checkbox\";\n\tinput.checked = true;\n\tfragment.appendChild( input );\n\tsupport.appendChecked = input.checked;\n\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\t// Support: IE6-IE11+\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// #11217 - WebKit loses check when the name is after the checked attribute\n\tfragment.appendChild( div );\n\tdiv.innerHTML = \"<input type='radio' checked='checked' name='t'/>\";\n\n\t// Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3\n\t// old WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE<9\n\t// Opera does not clone events (and typeof div.attachEvent === undefined).\n\t// IE9-10 clones events bound via attachEvent, but they don't trigger with .click()\n\tsupport.noCloneEvent = true;\n\tif ( div.attachEvent ) {\n\t\tdiv.attachEvent( \"onclick\", function() {\n\t\t\tsupport.noCloneEvent = false;\n\t\t});\n\n\t\tdiv.cloneNode( true ).click();\n\t}\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n})();\n\n\n(function() {\n\tvar i, eventName,\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Support: IE<9 (lack submit/change bubble), Firefox 23+ (lack focusin event)\n\tfor ( i in { submit: true, change: true, focusin: true }) {\n\t\teventName = \"on\" + i;\n\n\t\tif ( !(support[ i + \"Bubbles\" ] = eventName in window) ) {\n\t\t\t// Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP)\n\t\t\tdiv.setAttribute( eventName, \"t\" );\n\t\t\tsupport[ i + \"Bubbles\" ] = div.attributes[ eventName ].expando === false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\nvar rformElems = /^(?:input|select|textarea)$/i,\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu)|click/,\n\trfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)$/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\t\tvar tmp, events, t, handleObjIn,\n\t\t\tspecial, eventHandle, handleObj,\n\t\t\thandlers, type, namespaces, origType,\n\t\t\telemData = jQuery._data( elem );\n\n\t\t// Don't attach events to noData or text/comment nodes (but allow plain objects)\n\t\tif ( !elemData ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !(events = elemData.events) ) {\n\t\t\tevents = elemData.events = {};\n\t\t}\n\t\tif ( !(eventHandle = elemData.handle) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== strundefined && (!e || jQuery.event.triggered !== e.type) ?\n\t\t\t\t\tjQuery.event.dispatch.apply( eventHandle.elem, arguments ) :\n\t\t\t\t\tundefined;\n\t\t\t};\n\t\t\t// Add elem as a property of the handle fn to prevent a memory leak with IE non-native events\n\t\t\teventHandle.elem = elem;\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend({\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join(\".\")\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !(handlers = events[ type ]) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener/attachEvent if the special events handler returns false\n\t\t\t\tif ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\t\t\t\t\t// Bind the global event handler to the element\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle, false );\n\n\t\t\t\t\t} else if ( elem.attachEvent ) {\n\t\t\t\t\t\telem.attachEvent( \"on\" + type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t\t// Nullify elem to prevent memory leaks in IE\n\t\telem = null;\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\t\tvar j, handleObj, tmp,\n\t\t\torigCount, t, events,\n\t\t\tspecial, handlers, type,\n\t\t\tnamespaces, origType,\n\t\t\telemData = jQuery.hasData( elem ) && jQuery._data( elem );\n\n\t\tif ( !elemData || !(events = elemData.events) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[2] && new RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector || selector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdelete elemData.handle;\n\n\t\t\t// removeData also checks for emptiness and clears the expando if empty\n\t\t\t// so use it instead of delete\n\t\t\tjQuery._removeData( elem, \"events\" );\n\t\t}\n\t},\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\t\tvar handle, ontype, cur,\n\t\t\tbubbleType, special, tmp, i,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split(\".\") : [];\n\n\t\tcur = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf(\".\") >= 0 ) {\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split(\".\");\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf(\":\") < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join(\".\");\n\t\tevent.namespace_re = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === (elem.ownerDocument || document) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {\n\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = ( jQuery._data( cur, \"events\" ) || {} )[ event.type ] && jQuery._data( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && jQuery.acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) &&\n\t\t\t\tjQuery.acceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name name as the event.\n\t\t\t\t// Can't use an .isFunction() check here because IE6/7 fails that test.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\t\t\t\t\ttry {\n\t\t\t\t\t\telem[ type ]();\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// IE<9 dies on focus/blur to hidden element (#1486,#12518)\n\t\t\t\t\t\t// only reproducible on winXP IE8 native, not IE9 in IE8 mode\n\t\t\t\t\t}\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\tdispatch: function( event ) {\n\n\t\t// Make a writable jQuery.Event from the native event object\n\t\tevent = jQuery.event.fix( event );\n\n\t\tvar i, ret, handleObj, matched, j,\n\t\t\thandlerQueue = [],\n\t\t\targs = slice.call( arguments ),\n\t\t\thandlers = ( jQuery._data( this, \"events\" ) || {} )[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[0] = event;\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// Triggered event must either 1) have no namespace, or\n\t\t\t\t// 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).\n\t\t\t\tif ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )\n\t\t\t\t\t\t\t.apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( (event.result = ret) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar sel, handleObj, matches, i,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\t// Black-hole SVG <use> instance trees (#13180)\n\t\t// Avoid non-left-click bubbling in Firefox (#3861)\n\t\tif ( delegateCount && cur.nodeType && (!event.button || event.type !== \"click\") ) {\n\n\t\t\t/* jshint eqeqeq: false */\n\t\t\tfor ( ; cur != this; cur = cur.parentNode || this ) {\n\t\t\t\t/* jshint eqeqeq: true */\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== \"click\") ) {\n\t\t\t\t\tmatches = [];\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matches[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatches[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) >= 0 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matches[ sel ] ) {\n\t\t\t\t\t\t\tmatches.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matches.length ) {\n\t\t\t\t\t\thandlerQueue.push({ elem: cur, handlers: matches });\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\tfix: function( event ) {\n\t\tif ( event[ jQuery.expando ] ) {\n\t\t\treturn event;\n\t\t}\n\n\t\t// Create a writable copy of the event object and normalize some properties\n\t\tvar i, prop, copy,\n\t\t\ttype = event.type,\n\t\t\toriginalEvent = event,\n\t\t\tfixHook = this.fixHooks[ type ];\n\n\t\tif ( !fixHook ) {\n\t\t\tthis.fixHooks[ type ] = fixHook =\n\t\t\t\trmouseEvent.test( type ) ? this.mouseHooks :\n\t\t\t\trkeyEvent.test( type ) ? this.keyHooks :\n\t\t\t\t{};\n\t\t}\n\t\tcopy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;\n\n\t\tevent = new jQuery.Event( originalEvent );\n\n\t\ti = copy.length;\n\t\twhile ( i-- ) {\n\t\t\tprop = copy[ i ];\n\t\t\tevent[ prop ] = originalEvent[ prop ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Fix target property (#1925)\n\t\tif ( !event.target ) {\n\t\t\tevent.target = originalEvent.srcElement || document;\n\t\t}\n\n\t\t// Support: Chrome 23+, Safari?\n\t\t// Target should not be a text node (#504, #13143)\n\t\tif ( event.target.nodeType === 3 ) {\n\t\t\tevent.target = event.target.parentNode;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// For mouse/key events, metaKey==false if it's undefined (#3368, #11328)\n\t\tevent.metaKey = !!event.metaKey;\n\n\t\treturn fixHook.filter ? fixHook.filter( event, originalEvent ) : event;\n\t},\n\n\t// Includes some event props shared by KeyEvent and MouseEvent\n\tprops: \"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which\".split(\" \"),\n\n\tfixHooks: {},\n\n\tkeyHooks: {\n\t\tprops: \"char charCode key keyCode\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\n\t\t\t// Add which for key events\n\t\t\tif ( event.which == null ) {\n\t\t\t\tevent.which = original.charCode != null ? original.charCode : original.keyCode;\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tmouseHooks: {\n\t\tprops: \"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\t\t\tvar body, eventDoc, doc,\n\t\t\t\tbutton = original.button,\n\t\t\t\tfromElement = original.fromElement;\n\n\t\t\t// Calculate pageX/Y if missing and clientX/Y available\n\t\t\tif ( event.pageX == null && original.clientX != null ) {\n\t\t\t\teventDoc = event.target.ownerDocument || document;\n\t\t\t\tdoc = eventDoc.documentElement;\n\t\t\t\tbody = eventDoc.body;\n\n\t\t\t\tevent.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );\n\t\t\t\tevent.pageY = original.clientY + ( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) - ( doc && doc.clientTop  || body && body.clientTop  || 0 );\n\t\t\t}\n\n\t\t\t// Add relatedTarget, if necessary\n\t\t\tif ( !event.relatedTarget && fromElement ) {\n\t\t\t\tevent.relatedTarget = fromElement === event.target ? original.toElement : fromElement;\n\t\t\t}\n\n\t\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\t\t// Note: button is not normalized, so don't use it\n\t\t\tif ( !event.which && button !== undefined ) {\n\t\t\t\tevent.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tspecial: {\n\t\tload: {\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tfocus: {\n\t\t\t// Fire native event if possible so blur/focus sequence is correct\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this !== safeActiveElement() && this.focus ) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tthis.focus();\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// If we error on focus to hidden element (#1486, #12518),\n\t\t\t\t\t\t// let .trigger() run the handlers\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusin\"\n\t\t},\n\t\tblur: {\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this === safeActiveElement() && this.blur ) {\n\t\t\t\t\tthis.blur();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusout\"\n\t\t},\n\t\tclick: {\n\t\t\t// For checkbox, fire native event so checked state will be right\n\t\t\ttrigger: function() {\n\t\t\t\tif ( jQuery.nodeName( this, \"input\" ) && this.type === \"checkbox\" && this.click ) {\n\t\t\t\t\tthis.click();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, don't fire native .click() on links\n\t\t\t_default: function( event ) {\n\t\t\t\treturn jQuery.nodeName( event.target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tsimulate: function( type, elem, event, bubble ) {\n\t\t// Piggyback on a donor event to simulate a different one.\n\t\t// Fake originalEvent to avoid donor's stopPropagation, but if the\n\t\t// simulated event prevents default then we do the same on the donor.\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true,\n\t\t\t\toriginalEvent: {}\n\t\t\t}\n\t\t);\n\t\tif ( bubble ) {\n\t\t\tjQuery.event.trigger( e, null, elem );\n\t\t} else {\n\t\t\tjQuery.event.dispatch.call( elem, e );\n\t\t}\n\t\tif ( e.isDefaultPrevented() ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\t}\n};\n\njQuery.removeEvent = document.removeEventListener ?\n\tfunction( elem, type, handle ) {\n\t\tif ( elem.removeEventListener ) {\n\t\t\telem.removeEventListener( type, handle, false );\n\t\t}\n\t} :\n\tfunction( elem, type, handle ) {\n\t\tvar name = \"on\" + type;\n\n\t\tif ( elem.detachEvent ) {\n\n\t\t\t// #8545, #7054, preventing memory leaks for custom events in IE6-8\n\t\t\t// detachEvent needed property on element, by name of that event, to properly expose it to GC\n\t\t\tif ( typeof elem[ name ] === strundefined ) {\n\t\t\t\telem[ name ] = null;\n\t\t\t}\n\n\t\t\telem.detachEvent( name, handle );\n\t\t}\n\t};\n\njQuery.Event = function( src, props ) {\n\t// Allow instantiation without the 'new' keyword\n\tif ( !(this instanceof jQuery.Event) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\t\t\t\t// Support: IE < 9, Android < 4.0\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || jQuery.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If preventDefault exists, run it on the original event\n\t\tif ( e.preventDefault ) {\n\t\t\te.preventDefault();\n\n\t\t// Support: IE\n\t\t// Otherwise set the returnValue property of the original event to false\n\t\t} else {\n\t\t\te.returnValue = false;\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\t\t// If stopPropagation exists, run it on the original event\n\t\tif ( e.stopPropagation ) {\n\t\t\te.stopPropagation();\n\t\t}\n\n\t\t// Support: IE\n\t\t// Set the cancelBubble property of the original event to true\n\t\te.cancelBubble = true;\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && e.stopImmediatePropagation ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\njQuery.each({\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mousenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || (related !== target && !jQuery.contains( target, related )) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n});\n\n// IE submit delegation\nif ( !support.submitBubbles ) {\n\n\tjQuery.event.special.submit = {\n\t\tsetup: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Lazy-add a submit handler when a descendant form may potentially be submitted\n\t\t\tjQuery.event.add( this, \"click._submit keypress._submit\", function( e ) {\n\t\t\t\t// Node name check avoids a VML-related crash in IE (#9807)\n\t\t\t\tvar elem = e.target,\n\t\t\t\t\tform = jQuery.nodeName( elem, \"input\" ) || jQuery.nodeName( elem, \"button\" ) ? elem.form : undefined;\n\t\t\t\tif ( form && !jQuery._data( form, \"submitBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( form, \"submit._submit\", function( event ) {\n\t\t\t\t\t\tevent._submit_bubble = true;\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( form, \"submitBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t\t// return undefined since we don't need an event listener\n\t\t},\n\n\t\tpostDispatch: function( event ) {\n\t\t\t// If form was submitted by the user, bubble the event up the tree\n\t\t\tif ( event._submit_bubble ) {\n\t\t\t\tdelete event._submit_bubble;\n\t\t\t\tif ( this.parentNode && !event.isTrigger ) {\n\t\t\t\t\tjQuery.event.simulate( \"submit\", this.parentNode, event, true );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Remove delegated handlers; cleanData eventually reaps submit handlers attached above\n\t\t\tjQuery.event.remove( this, \"._submit\" );\n\t\t}\n\t};\n}\n\n// IE change delegation and checkbox/radio fix\nif ( !support.changeBubbles ) {\n\n\tjQuery.event.special.change = {\n\n\t\tsetup: function() {\n\n\t\t\tif ( rformElems.test( this.nodeName ) ) {\n\t\t\t\t// IE doesn't fire change on a check/radio until blur; trigger it on click\n\t\t\t\t// after a propertychange. Eat the blur-change in special.change.handle.\n\t\t\t\t// This still fires onchange a second time for check/radio after blur.\n\t\t\t\tif ( this.type === \"checkbox\" || this.type === \"radio\" ) {\n\t\t\t\t\tjQuery.event.add( this, \"propertychange._change\", function( event ) {\n\t\t\t\t\t\tif ( event.originalEvent.propertyName === \"checked\" ) {\n\t\t\t\t\t\t\tthis._just_changed = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery.event.add( this, \"click._change\", function( event ) {\n\t\t\t\t\t\tif ( this._just_changed && !event.isTrigger ) {\n\t\t\t\t\t\t\tthis._just_changed = false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// Allow triggered, simulated change events (#11500)\n\t\t\t\t\t\tjQuery.event.simulate( \"change\", this, event, true );\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t// Delegated event; lazy-add a change handler on descendant inputs\n\t\t\tjQuery.event.add( this, \"beforeactivate._change\", function( e ) {\n\t\t\t\tvar elem = e.target;\n\n\t\t\t\tif ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, \"changeBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( elem, \"change._change\", function( event ) {\n\t\t\t\t\t\tif ( this.parentNode && !event.isSimulated && !event.isTrigger ) {\n\t\t\t\t\t\t\tjQuery.event.simulate( \"change\", this.parentNode, event, true );\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( elem, \"changeBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t},\n\n\t\thandle: function( event ) {\n\t\t\tvar elem = event.target;\n\n\t\t\t// Swallow native change events from checkbox/radio, we already triggered them above\n\t\t\tif ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== \"radio\" && elem.type !== \"checkbox\") ) {\n\t\t\t\treturn event.handleObj.handler.apply( this, arguments );\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\tjQuery.event.remove( this, \"._change\" );\n\n\t\t\treturn !rformElems.test( this.nodeName );\n\t\t}\n\t};\n}\n\n// Create \"bubbling\" focus and blur events\nif ( !support.focusinBubbles ) {\n\tjQuery.each({ focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );\n\t\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tjQuery._data( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tjQuery._removeData( doc, fix );\n\t\t\t\t} else {\n\t\t\t\t\tjQuery._data( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\njQuery.fn.extend({\n\n\ton: function( types, selector, data, fn, /*INTERNAL*/ one ) {\n\t\tvar type, origFn;\n\n\t\t// Types can be a map of types/handlers\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-Object, selector, data )\n\t\t\tif ( typeof selector !== \"string\" ) {\n\t\t\t\t// ( types-Object, data )\n\t\t\t\tdata = data || selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.on( type, selector, data, types[ type ], one );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( data == null && fn == null ) {\n\t\t\t// ( types, fn )\n\t\t\tfn = selector;\n\t\t\tdata = selector = undefined;\n\t\t} else if ( fn == null ) {\n\t\t\tif ( typeof selector === \"string\" ) {\n\t\t\t\t// ( types, selector, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = undefined;\n\t\t\t} else {\n\t\t\t\t// ( types, data, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t} else if ( !fn ) {\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( one === 1 ) {\n\t\t\torigFn = fn;\n\t\t\tfn = function( event ) {\n\t\t\t\t// Can use an empty set, since event contains the info\n\t\t\t\tjQuery().off( event );\n\t\t\t\treturn origFn.apply( this, arguments );\n\t\t\t};\n\t\t\t// Use same guid so caller can remove using origFn\n\t\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.add( this, types, fn, data, selector );\n\t\t});\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn this.on( types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ? handleObj.origType + \".\" + handleObj.namespace : handleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t});\n\t},\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t});\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[0];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n});\n\n\nfunction createSafeFragment( document ) {\n\tvar list = nodeNames.split( \"|\" ),\n\t\tsafeFrag = document.createDocumentFragment();\n\n\tif ( safeFrag.createElement ) {\n\t\twhile ( list.length ) {\n\t\t\tsafeFrag.createElement(\n\t\t\t\tlist.pop()\n\t\t\t);\n\t\t}\n\t}\n\treturn safeFrag;\n}\n\nvar nodeNames = \"abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|\" +\n\t\t\"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video\",\n\trinlinejQuery = / jQuery\\d+=\"(?:null|\\d+)\"/g,\n\trnoshimcache = new RegExp(\"<(?:\" + nodeNames + \")[\\\\s/>]\", \"i\"),\n\trleadingWhitespace = /^\\s+/,\n\trxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>]*)\\/>/gi,\n\trtagName = /<([\\w:]+)/,\n\trtbody = /<tbody/i,\n\trhtml = /<|&#?\\w+;/,\n\trnoInnerhtml = /<(?:script|style|link)/i,\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trscriptType = /^$|\\/(?:java|ecma)script/i,\n\trscriptTypeMasked = /^true\\/(.*)/,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g,\n\n\t// We have to close these tags to support XHTML (#13200)\n\twrapMap = {\n\t\toption: [ 1, \"<select multiple='multiple'>\", \"</select>\" ],\n\t\tlegend: [ 1, \"<fieldset>\", \"</fieldset>\" ],\n\t\tarea: [ 1, \"<map>\", \"</map>\" ],\n\t\tparam: [ 1, \"<object>\", \"</object>\" ],\n\t\tthead: [ 1, \"<table>\", \"</table>\" ],\n\t\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\t\tcol: [ 2, \"<table><tbody></tbody><colgroup>\", \"</colgroup></table>\" ],\n\t\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t\t// IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags,\n\t\t// unless wrapped in a div with non-breaking characters in front of it.\n\t\t_default: support.htmlSerialize ? [ 0, \"\", \"\" ] : [ 1, \"X<div>\", \"</div>\"  ]\n\t},\n\tsafeFragment = createSafeFragment( document ),\n\tfragmentDiv = safeFragment.appendChild( document.createElement(\"div\") );\n\nwrapMap.optgroup = wrapMap.option;\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\nfunction getAll( context, tag ) {\n\tvar elems, elem,\n\t\ti = 0,\n\t\tfound = typeof context.getElementsByTagName !== strundefined ? context.getElementsByTagName( tag || \"*\" ) :\n\t\t\ttypeof context.querySelectorAll !== strundefined ? context.querySelectorAll( tag || \"*\" ) :\n\t\t\tundefined;\n\n\tif ( !found ) {\n\t\tfor ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( !tag || jQuery.nodeName( elem, tag ) ) {\n\t\t\t\tfound.push( elem );\n\t\t\t} else {\n\t\t\t\tjQuery.merge( found, getAll( elem, tag ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn tag === undefined || tag && jQuery.nodeName( context, tag ) ?\n\t\tjQuery.merge( [ context ], found ) :\n\t\tfound;\n}\n\n// Used in buildFragment, fixes the defaultChecked property\nfunction fixDefaultChecked( elem ) {\n\tif ( rcheckableType.test( elem.type ) ) {\n\t\telem.defaultChecked = elem.checked;\n\t}\n}\n\n// Support: IE<8\n// Manipulating tables requires a tbody\nfunction manipulationTarget( elem, content ) {\n\treturn jQuery.nodeName( elem, \"table\" ) &&\n\t\tjQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ?\n\n\t\telem.getElementsByTagName(\"tbody\")[0] ||\n\t\t\telem.appendChild( elem.ownerDocument.createElement(\"tbody\") ) :\n\t\telem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = (jQuery.find.attr( elem, \"type\" ) !== null) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tvar match = rscriptTypeMasked.exec( elem.type );\n\tif ( match ) {\n\t\telem.type = match[1];\n\t} else {\n\t\telem.removeAttribute(\"type\");\n\t}\n\treturn elem;\n}\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar elem,\n\t\ti = 0;\n\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\tjQuery._data( elem, \"globalEval\", !refElements || jQuery._data( refElements[i], \"globalEval\" ) );\n\t}\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\n\tif ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {\n\t\treturn;\n\t}\n\n\tvar type, i, l,\n\t\toldData = jQuery._data( src ),\n\t\tcurData = jQuery._data( dest, oldData ),\n\t\tevents = oldData.events;\n\n\tif ( events ) {\n\t\tdelete curData.handle;\n\t\tcurData.events = {};\n\n\t\tfor ( type in events ) {\n\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t}\n\t\t}\n\t}\n\n\t// make the cloned public data object a copy from the original\n\tif ( curData.data ) {\n\t\tcurData.data = jQuery.extend( {}, curData.data );\n\t}\n}\n\nfunction fixCloneNodeIssues( src, dest ) {\n\tvar nodeName, e, data;\n\n\t// We do not need to do anything for non-Elements\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\tnodeName = dest.nodeName.toLowerCase();\n\n\t// IE6-8 copies events bound via attachEvent when using cloneNode.\n\tif ( !support.noCloneEvent && dest[ jQuery.expando ] ) {\n\t\tdata = jQuery._data( dest );\n\n\t\tfor ( e in data.events ) {\n\t\t\tjQuery.removeEvent( dest, e, data.handle );\n\t\t}\n\n\t\t// Event data gets referenced instead of copied if the expando gets copied too\n\t\tdest.removeAttribute( jQuery.expando );\n\t}\n\n\t// IE blanks contents when cloning scripts, and tries to evaluate newly-set text\n\tif ( nodeName === \"script\" && dest.text !== src.text ) {\n\t\tdisableScript( dest ).text = src.text;\n\t\trestoreScript( dest );\n\n\t// IE6-10 improperly clones children of object elements using classid.\n\t// IE10 throws NoModificationAllowedError if parent is null, #12132.\n\t} else if ( nodeName === \"object\" ) {\n\t\tif ( dest.parentNode ) {\n\t\t\tdest.outerHTML = src.outerHTML;\n\t\t}\n\n\t\t// This path appears unavoidable for IE9. When cloning an object\n\t\t// element in IE9, the outerHTML strategy above is not sufficient.\n\t\t// If the src has innerHTML and the destination does not,\n\t\t// copy the src.innerHTML into the dest.innerHTML. #10324\n\t\tif ( support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) {\n\t\t\tdest.innerHTML = src.innerHTML;\n\t\t}\n\n\t} else if ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\t// IE6-8 fails to persist the checked state of a cloned checkbox\n\t\t// or radio button. Worse, IE6-7 fail to give the cloned element\n\t\t// a checked appearance if the defaultChecked value isn't also set\n\n\t\tdest.defaultChecked = dest.checked = src.checked;\n\n\t\t// IE6-7 get confused and end up setting the value of a cloned\n\t\t// checkbox/radio button to an empty string instead of \"on\"\n\t\tif ( dest.value !== src.value ) {\n\t\t\tdest.value = src.value;\n\t\t}\n\n\t// IE6-8 fails to return the selected option to the default selected\n\t// state when cloning options\n\t} else if ( nodeName === \"option\" ) {\n\t\tdest.defaultSelected = dest.selected = src.defaultSelected;\n\n\t// IE6-8 fails to set the defaultValue to the correct value when\n\t// cloning other types of input fields\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\njQuery.extend({\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar destElements, node, clone, i, srcElements,\n\t\t\tinPage = jQuery.contains( elem.ownerDocument, elem );\n\n\t\tif ( support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( \"<\" + elem.nodeName + \">\" ) ) {\n\t\t\tclone = elem.cloneNode( true );\n\n\t\t// IE<=8 does not properly clone detached, unknown element nodes\n\t\t} else {\n\t\t\tfragmentDiv.innerHTML = elem.outerHTML;\n\t\t\tfragmentDiv.removeChild( clone = fragmentDiv.firstChild );\n\t\t}\n\n\t\tif ( (!support.noCloneEvent || !support.noCloneChecked) &&\n\t\t\t\t(elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\t// Fix all IE cloning issues\n\t\t\tfor ( i = 0; (node = srcElements[i]) != null; ++i ) {\n\t\t\t\t// Ensure that the destination node is not null; Fixes #9587\n\t\t\t\tif ( destElements[i] ) {\n\t\t\t\t\tfixCloneNodeIssues( node, destElements[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0; (node = srcElements[i]) != null; i++ ) {\n\t\t\t\t\tcloneCopyEvent( node, destElements[i] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\tdestElements = srcElements = node = null;\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tbuildFragment: function( elems, context, scripts, selection ) {\n\t\tvar j, elem, contains,\n\t\t\ttmp, tag, tbody, wrap,\n\t\t\tl = elems.length,\n\n\t\t\t// Ensure a safe fragment\n\t\t\tsafe = createSafeFragment( context ),\n\n\t\t\tnodes = [],\n\t\t\ti = 0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\telem = elems[ i ];\n\n\t\t\tif ( elem || elem === 0 ) {\n\n\t\t\t\t// Add nodes directly\n\t\t\t\tif ( jQuery.type( elem ) === \"object\" ) {\n\t\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t\t// Convert non-html into a text node\n\t\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t\t// Convert html into DOM nodes\n\t\t\t\t} else {\n\t\t\t\t\ttmp = tmp || safe.appendChild( context.createElement(\"div\") );\n\n\t\t\t\t\t// Deserialize a standard representation\n\t\t\t\t\ttag = (rtagName.exec( elem ) || [ \"\", \"\" ])[ 1 ].toLowerCase();\n\t\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\n\t\t\t\t\ttmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, \"<$1></$2>\" ) + wrap[2];\n\n\t\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\t\tj = wrap[0];\n\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Manually add leading whitespace removed by IE\n\t\t\t\t\tif ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {\n\t\t\t\t\t\tnodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove IE's autoinserted <tbody> from table fragments\n\t\t\t\t\tif ( !support.tbody ) {\n\n\t\t\t\t\t\t// String was a <table>, *may* have spurious <tbody>\n\t\t\t\t\t\telem = tag === \"table\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\ttmp.firstChild :\n\n\t\t\t\t\t\t\t// String was a bare <thead> or <tfoot>\n\t\t\t\t\t\t\twrap[1] === \"<table>\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\t\ttmp :\n\t\t\t\t\t\t\t\t0;\n\n\t\t\t\t\t\tj = elem && elem.childNodes.length;\n\t\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\t\tif ( jQuery.nodeName( (tbody = elem.childNodes[j]), \"tbody\" ) && !tbody.childNodes.length ) {\n\t\t\t\t\t\t\t\telem.removeChild( tbody );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t\t// Fix #12392 for WebKit and IE > 9\n\t\t\t\t\ttmp.textContent = \"\";\n\n\t\t\t\t\t// Fix #12392 for oldIE\n\t\t\t\t\twhile ( tmp.firstChild ) {\n\t\t\t\t\t\ttmp.removeChild( tmp.firstChild );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remember the top-level container for proper cleanup\n\t\t\t\t\ttmp = safe.lastChild;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Fix #11356: Clear elements from fragment\n\t\tif ( tmp ) {\n\t\t\tsafe.removeChild( tmp );\n\t\t}\n\n\t\t// Reset defaultChecked for any radios and checkboxes\n\t\t// about to be appended to the DOM in IE 6/7 (#8060)\n\t\tif ( !support.appendChecked ) {\n\t\t\tjQuery.grep( getAll( nodes, \"input\" ), fixDefaultChecked );\n\t\t}\n\n\t\ti = 0;\n\t\twhile ( (elem = nodes[ i++ ]) ) {\n\n\t\t\t// #4087 - If origin and destination elements are the same, and this is\n\t\t\t// that element, do not do anything\n\t\t\tif ( selection && jQuery.inArray( elem, selection ) !== -1 ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tcontains = jQuery.contains( elem.ownerDocument, elem );\n\n\t\t\t// Append to fragment\n\t\t\ttmp = getAll( safe.appendChild( elem ), \"script\" );\n\n\t\t\t// Preserve script evaluation history\n\t\t\tif ( contains ) {\n\t\t\t\tsetGlobalEval( tmp );\n\t\t\t}\n\n\t\t\t// Capture executables\n\t\t\tif ( scripts ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (elem = tmp[ j++ ]) ) {\n\t\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\t\tscripts.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\ttmp = null;\n\n\t\treturn safe;\n\t},\n\n\tcleanData: function( elems, /* internal */ acceptData ) {\n\t\tvar elem, type, id, data,\n\t\t\ti = 0,\n\t\t\tinternalKey = jQuery.expando,\n\t\t\tcache = jQuery.cache,\n\t\t\tdeleteExpando = support.deleteExpando,\n\t\t\tspecial = jQuery.event.special;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( acceptData || jQuery.acceptData( elem ) ) {\n\n\t\t\t\tid = elem[ internalKey ];\n\t\t\t\tdata = id && cache[ id ];\n\n\t\t\t\tif ( data ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove cache only if it was not already removed by jQuery.event.remove\n\t\t\t\t\tif ( cache[ id ] ) {\n\n\t\t\t\t\t\tdelete cache[ id ];\n\n\t\t\t\t\t\t// IE does not allow us to delete expando properties from nodes,\n\t\t\t\t\t\t// nor does it have a removeAttribute function on Document nodes;\n\t\t\t\t\t\t// we must handle all of these cases\n\t\t\t\t\t\tif ( deleteExpando ) {\n\t\t\t\t\t\t\tdelete elem[ internalKey ];\n\n\t\t\t\t\t\t} else if ( typeof elem.removeAttribute !== strundefined ) {\n\t\t\t\t\t\t\telem.removeAttribute( internalKey );\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\telem[ internalKey ] = null;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tdeletedIds.push( id );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\njQuery.fn.extend({\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t});\n\t},\n\n\tprepend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t});\n\t},\n\n\tbefore: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t});\n\t},\n\n\tafter: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t});\n\t},\n\n\tremove: function( selector, keepData /* Internal Use Only */ ) {\n\t\tvar elem,\n\t\t\telems = selector ? jQuery.filter( selector, this ) : this,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\n\t\t\tif ( !keepData && elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem ) );\n\t\t\t}\n\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\tif ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\t\tsetGlobalEval( getAll( elem, \"script\" ) );\n\t\t\t\t}\n\t\t\t\telem.parentNode.removeChild( elem );\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = this[i]) != null; i++ ) {\n\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t}\n\n\t\t\t// Remove any remaining nodes\n\t\t\twhile ( elem.firstChild ) {\n\t\t\t\telem.removeChild( elem.firstChild );\n\t\t\t}\n\n\t\t\t// If this is a select, ensure that it displays empty (#12336)\n\t\t\t// Support: IE<9\n\t\t\tif ( elem.options && jQuery.nodeName( elem, \"select\" ) ) {\n\t\t\t\telem.options.length = 0;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map(function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t});\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined ) {\n\t\t\t\treturn elem.nodeType === 1 ?\n\t\t\t\t\telem.innerHTML.replace( rinlinejQuery, \"\" ) :\n\t\t\t\t\tundefined;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t( support.htmlSerialize || !rnoshimcache.test( value )  ) &&\n\t\t\t\t( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&\n\t\t\t\t!wrapMap[ (rtagName.exec( value ) || [ \"\", \"\" ])[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = value.replace( rxhtmlTag, \"<$1></$2>\" );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor (; i < l; i++ ) {\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\telem = this[i] || {};\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar arg = arguments[ 0 ];\n\n\t\t// Make the changes, replacing each context element with the new content\n\t\tthis.domManip( arguments, function( elem ) {\n\t\t\targ = this.parentNode;\n\n\t\t\tjQuery.cleanData( getAll( this ) );\n\n\t\t\tif ( arg ) {\n\t\t\t\targ.replaceChild( elem, this );\n\t\t\t}\n\t\t});\n\n\t\t// Force removal if there was no new content (e.g., from empty arguments)\n\t\treturn arg && (arg.length || arg.nodeType) ? this : this.remove();\n\t},\n\n\tdetach: function( selector ) {\n\t\treturn this.remove( selector, true );\n\t},\n\n\tdomManip: function( args, callback ) {\n\n\t\t// Flatten any nested arrays\n\t\targs = concat.apply( [], args );\n\n\t\tvar first, node, hasScripts,\n\t\t\tscripts, doc, fragment,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tset = this,\n\t\t\tiNoClone = l - 1,\n\t\t\tvalue = args[0],\n\t\t\tisFunction = jQuery.isFunction( value );\n\n\t\t// We can't cloneNode fragments that contain checked, in WebKit\n\t\tif ( isFunction ||\n\t\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\t\treturn this.each(function( index ) {\n\t\t\t\tvar self = set.eq( index );\n\t\t\t\tif ( isFunction ) {\n\t\t\t\t\targs[0] = value.call( this, index, self.html() );\n\t\t\t\t}\n\t\t\t\tself.domManip( args, callback );\n\t\t\t});\n\t\t}\n\n\t\tif ( l ) {\n\t\t\tfragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );\n\t\t\tfirst = fragment.firstChild;\n\n\t\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\t\tfragment = first;\n\t\t\t}\n\n\t\t\tif ( first ) {\n\t\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\t\thasScripts = scripts.length;\n\n\t\t\t\t// Use the original fragment for the last item instead of the first because it can end up\n\t\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\tnode = fragment;\n\n\t\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tcallback.call( this[i], node, i );\n\t\t\t\t}\n\n\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t\t// Reenable scripts\n\t\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t\t!jQuery._data( node, \"globalEval\" ) && jQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\t\tif ( node.src ) {\n\t\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\t\tif ( jQuery._evalUrl ) {\n\t\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.globalEval( ( node.text || node.textContent || node.innerHTML || \"\" ).replace( rcleanScript, \"\" ) );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Fix #11809: Avoid leaking memory\n\t\t\t\tfragment = first = null;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t}\n});\n\njQuery.each({\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\ti = 0,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone(true);\n\t\t\tjQuery( insert[i] )[ original ]( elems );\n\n\t\t\t// Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get()\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\n\n\nvar iframe,\n\telemdisplay = {};\n\n/**\n * Retrieve the actual display of a element\n * @param {String} name nodeName of the element\n * @param {Object} doc Document object\n */\n// Called only from within defaultDisplay\nfunction actualDisplay( name, doc ) {\n\tvar style,\n\t\telem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),\n\n\t\t// getDefaultComputedStyle might be reliably used only on attached element\n\t\tdisplay = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ?\n\n\t\t\t// Use of this method is a temporary fix (more like optmization) until something better comes along,\n\t\t\t// since it was removed from specification and supported only in FF\n\t\t\tstyle.display : jQuery.css( elem[ 0 ], \"display\" );\n\n\t// We don't have any data stored on the element,\n\t// so use \"detach\" method as fast way to get rid of the element\n\telem.detach();\n\n\treturn display;\n}\n\n/**\n * Try to determine the default display value of an element\n * @param {String} nodeName\n */\nfunction defaultDisplay( nodeName ) {\n\tvar doc = document,\n\t\tdisplay = elemdisplay[ nodeName ];\n\n\tif ( !display ) {\n\t\tdisplay = actualDisplay( nodeName, doc );\n\n\t\t// If the simple way fails, read from inside an iframe\n\t\tif ( display === \"none\" || !display ) {\n\n\t\t\t// Use the already-created iframe if possible\n\t\t\tiframe = (iframe || jQuery( \"<iframe frameborder='0' width='0' height='0'/>\" )).appendTo( doc.documentElement );\n\n\t\t\t// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse\n\t\t\tdoc = ( iframe[ 0 ].contentWindow || iframe[ 0 ].contentDocument ).document;\n\n\t\t\t// Support: IE\n\t\t\tdoc.write();\n\t\t\tdoc.close();\n\n\t\t\tdisplay = actualDisplay( nodeName, doc );\n\t\t\tiframe.detach();\n\t\t}\n\n\t\t// Store the correct default display\n\t\telemdisplay[ nodeName ] = display;\n\t}\n\n\treturn display;\n}\n\n\n(function() {\n\tvar shrinkWrapBlocksVal;\n\n\tsupport.shrinkWrapBlocks = function() {\n\t\tif ( shrinkWrapBlocksVal != null ) {\n\t\t\treturn shrinkWrapBlocksVal;\n\t\t}\n\n\t\t// Will be changed later if needed.\n\t\tshrinkWrapBlocksVal = false;\n\n\t\t// Minified: var b,c,d\n\t\tvar div, body, container;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\t// Support: IE6\n\t\t// Check if elements with layout shrink-wrap their children\n\t\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t\t// Reset CSS: box-sizing; display; margin; border\n\t\t\tdiv.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;\" +\n\t\t\t\t\"padding:1px;width:1px;zoom:1\";\n\t\t\tdiv.appendChild( document.createElement( \"div\" ) ).style.width = \"5px\";\n\t\t\tshrinkWrapBlocksVal = div.offsetWidth !== 3;\n\t\t}\n\n\t\tbody.removeChild( container );\n\n\t\treturn shrinkWrapBlocksVal;\n\t};\n\n})();\nvar rmargin = (/^margin/);\n\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\n\n\nvar getStyles, curCSS,\n\trposition = /^(top|right|bottom|left)$/;\n\nif ( window.getComputedStyle ) {\n\tgetStyles = function( elem ) {\n\t\t// Support: IE<=11+, Firefox<=30+ (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tif ( elem.ownerDocument.defaultView.opener ) {\n\t\t\treturn elem.ownerDocument.defaultView.getComputedStyle( elem, null );\n\t\t}\n\n\t\treturn window.getComputedStyle( elem, null );\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar width, minWidth, maxWidth, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\n\t\t// getPropertyValue is only needed for .css('filter') in IE9, see #12537\n\t\tret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;\n\n\t\tif ( computed ) {\n\n\t\t\tif ( ret === \"\" && !jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\tret = jQuery.style( elem, name );\n\t\t\t}\n\n\t\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t\t// Chrome < 17 and Safari 5.0 uses \"computed value\" instead of \"used value\" for margin-right\n\t\t\t// Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels\n\t\t\t// this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values\n\t\t\tif ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {\n\n\t\t\t\t// Remember the original values\n\t\t\t\twidth = style.width;\n\t\t\t\tminWidth = style.minWidth;\n\t\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t\t// Put in the new values to get a computed value out\n\t\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\t\tret = computed.width;\n\n\t\t\t\t// Revert the changed values\n\t\t\t\tstyle.width = width;\n\t\t\t\tstyle.minWidth = minWidth;\n\t\t\t\tstyle.maxWidth = maxWidth;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\";\n\t};\n} else if ( document.documentElement.currentStyle ) {\n\tgetStyles = function( elem ) {\n\t\treturn elem.currentStyle;\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar left, rs, rsLeft, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\t\tret = computed ? computed[ name ] : undefined;\n\n\t\t// Avoid setting ret to empty string here\n\t\t// so we don't default to auto\n\t\tif ( ret == null && style && style[ name ] ) {\n\t\t\tret = style[ name ];\n\t\t}\n\n\t\t// From the awesome hack by Dean Edwards\n\t\t// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291\n\n\t\t// If we're not dealing with a regular pixel number\n\t\t// but a number that has a weird ending, we need to convert it to pixels\n\t\t// but not position css attributes, as those are proportional to the parent element instead\n\t\t// and we can't measure the parent instead because it might trigger a \"stacking dolls\" problem\n\t\tif ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\tleft = style.left;\n\t\t\trs = elem.runtimeStyle;\n\t\t\trsLeft = rs && rs.left;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = elem.currentStyle.left;\n\t\t\t}\n\t\t\tstyle.left = name === \"fontSize\" ? \"1em\" : ret;\n\t\t\tret = style.pixelLeft + \"px\";\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.left = left;\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = rsLeft;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\" || \"auto\";\n\t};\n}\n\n\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tvar condition = conditionFn();\n\n\t\t\tif ( condition == null ) {\n\t\t\t\t// The test was not ready at this point; screw the hook this time\n\t\t\t\t// but check again when needed next time.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( condition ) {\n\t\t\t\t// Hook not needed (or it's not possible to use it due to missing dependency),\n\t\t\t\t// remove it.\n\t\t\t\t// Since there are no other hooks for marginRight, remove the whole object.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\n\t\t\treturn (this.get = hookFn).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\n(function() {\n\t// Minified: var b,c,d,e,f,g, h,i\n\tvar div, style, a, pixelPositionVal, boxSizingReliableVal,\n\t\treliableHiddenOffsetsVal, reliableMarginRightVal;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName( \"a\" )[ 0 ];\n\tstyle = a && a.style;\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !style ) {\n\t\treturn;\n\t}\n\n\tstyle.cssText = \"float:left;opacity:.5\";\n\n\t// Support: IE<9\n\t// Make sure that element opacity exists (as opposed to filter)\n\tsupport.opacity = style.opacity === \"0.5\";\n\n\t// Verify style float existence\n\t// (IE uses styleFloat instead of cssFloat)\n\tsupport.cssFloat = !!style.cssFloat;\n\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\t// Support: Firefox<29, Android 2.3\n\t// Vendor-prefix box-sizing\n\tsupport.boxSizing = style.boxSizing === \"\" || style.MozBoxSizing === \"\" ||\n\t\tstyle.WebkitBoxSizing === \"\";\n\n\tjQuery.extend(support, {\n\t\treliableHiddenOffsets: function() {\n\t\t\tif ( reliableHiddenOffsetsVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableHiddenOffsetsVal;\n\t\t},\n\n\t\tboxSizingReliable: function() {\n\t\t\tif ( boxSizingReliableVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\n\t\tpixelPosition: function() {\n\t\t\tif ( pixelPositionVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn pixelPositionVal;\n\t\t},\n\n\t\t// Support: Android 2.3\n\t\treliableMarginRight: function() {\n\t\t\tif ( reliableMarginRightVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableMarginRightVal;\n\t\t}\n\t});\n\n\tfunction computeStyleTests() {\n\t\t// Minified: var b,c,d,j\n\t\tvar div, body, container, contents;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\tdiv.style.cssText =\n\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t// Vendor-prefix box-sizing\n\t\t\t\"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;\" +\n\t\t\t\"box-sizing:border-box;display:block;margin-top:1%;top:1%;\" +\n\t\t\t\"border:1px;padding:1px;width:4px;position:absolute\";\n\n\t\t// Support: IE<9\n\t\t// Assume reasonable values in the absence of getComputedStyle\n\t\tpixelPositionVal = boxSizingReliableVal = false;\n\t\treliableMarginRightVal = true;\n\n\t\t// Check for getComputedStyle so that this code is not run in IE<9.\n\t\tif ( window.getComputedStyle ) {\n\t\t\tpixelPositionVal = ( window.getComputedStyle( div, null ) || {} ).top !== \"1%\";\n\t\t\tboxSizingReliableVal =\n\t\t\t\t( window.getComputedStyle( div, null ) || { width: \"4px\" } ).width === \"4px\";\n\n\t\t\t// Support: Android 2.3\n\t\t\t// Div with explicit width and no margin-right incorrectly\n\t\t\t// gets computed margin-right based on width of container (#3333)\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\tcontents = div.appendChild( document.createElement( \"div\" ) );\n\n\t\t\t// Reset CSS: box-sizing; display; margin; border; padding\n\t\t\tcontents.style.cssText = div.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;padding:0\";\n\t\t\tcontents.style.marginRight = contents.style.width = \"0\";\n\t\t\tdiv.style.width = \"1px\";\n\n\t\t\treliableMarginRightVal =\n\t\t\t\t!parseFloat( ( window.getComputedStyle( contents, null ) || {} ).marginRight );\n\n\t\t\tdiv.removeChild( contents );\n\t\t}\n\n\t\t// Support: IE8\n\t\t// Check if table cells still have offsetWidth/Height when they are set\n\t\t// to display:none and there are still other visible table cells in a\n\t\t// table row; if so, offsetWidth/Height are not reliable for use when\n\t\t// determining if an element has been hidden directly using\n\t\t// display:none (it is still safe to use offsets if a parent element is\n\t\t// hidden; don safety goggles and see bug #4512 for more information).\n\t\tdiv.innerHTML = \"<table><tr><td></td><td>t</td></tr></table>\";\n\t\tcontents = div.getElementsByTagName( \"td\" );\n\t\tcontents[ 0 ].style.cssText = \"margin:0;border:0;padding:0;display:none\";\n\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\tif ( reliableHiddenOffsetsVal ) {\n\t\t\tcontents[ 0 ].style.display = \"\";\n\t\t\tcontents[ 1 ].style.display = \"none\";\n\t\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\t}\n\n\t\tbody.removeChild( container );\n\t}\n\n})();\n\n\n// A method for quickly swapping in/out CSS properties to get correct calculations.\njQuery.swap = function( elem, options, callback, args ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.apply( elem, args || [] );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar\n\t\tralpha = /alpha\\([^)]*\\)/i,\n\tropacity = /opacity\\s*=\\s*([^)]*)/,\n\n\t// swappable if display is none or starts with table except \"table\", \"table-cell\", or \"table-caption\"\n\t// see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trnumsplit = new RegExp( \"^(\" + pnum + \")(.*)$\", \"i\" ),\n\trrelNum = new RegExp( \"^([+-])=(\" + pnum + \")\", \"i\" ),\n\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t},\n\n\tcssPrefixes = [ \"Webkit\", \"O\", \"Moz\", \"ms\" ];\n\n\n// return a css property mapped to a potentially vendor prefixed property\nfunction vendorPropName( style, name ) {\n\n\t// shortcut for names that are not vendor prefixed\n\tif ( name in style ) {\n\t\treturn name;\n\t}\n\n\t// check for vendor prefixed names\n\tvar capName = name.charAt(0).toUpperCase() + name.slice(1),\n\t\torigName = name,\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in style ) {\n\t\t\treturn name;\n\t\t}\n\t}\n\n\treturn origName;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem, hidden,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\" );\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\t\t\t// Reset the inline display of this element to learn if it is\n\t\t\t// being hidden by cascaded rules or not\n\t\t\tif ( !values[ index ] && display === \"none\" ) {\n\t\t\t\telem.style.display = \"\";\n\t\t\t}\n\n\t\t\t// Set elements which have been overridden with display: none\n\t\t\t// in a stylesheet to whatever the default browser style is\n\t\t\t// for such an element\n\t\t\tif ( elem.style.display === \"\" && isHidden( elem ) ) {\n\t\t\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\", defaultDisplay(elem.nodeName) );\n\t\t\t}\n\t\t} else {\n\t\t\thidden = isHidden( elem );\n\n\t\t\tif ( display && display !== \"none\" || !hidden ) {\n\t\t\t\tjQuery._data( elem, \"olddisplay\", hidden ? display : jQuery.css( elem, \"display\" ) );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of most of the elements in a second loop\n\t// to avoid the constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( !show || elem.style.display === \"none\" || elem.style.display === \"\" ) {\n\t\t\telem.style.display = show ? values[ index ] || \"\" : \"none\";\n\t\t}\n\t}\n\n\treturn elements;\n}\n\nfunction setPositiveNumber( elem, value, subtract ) {\n\tvar matches = rnumsplit.exec( value );\n\treturn matches ?\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {\n\tvar i = extra === ( isBorderBox ? \"border\" : \"content\" ) ?\n\t\t// If we already have the right measurement, avoid augmentation\n\t\t4 :\n\t\t// Otherwise initialize for horizontal or vertical properties\n\t\tname === \"width\" ? 1 : 0,\n\n\t\tval = 0;\n\n\tfor ( ; i < 4; i += 2 ) {\n\t\t// both box models exclude margin, so add it if we want it\n\t\tif ( extra === \"margin\" ) {\n\t\t\tval += jQuery.css( elem, extra + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\tif ( isBorderBox ) {\n\t\t\t// border-box includes padding, so remove it if we want content\n\t\t\tif ( extra === \"content\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// at this point, extra isn't border nor margin, so remove border\n\t\t\tif ( extra !== \"margin\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t} else {\n\t\t\t// at this point, extra isn't content, so add padding\n\t\t\tval += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// at this point, extra isn't content nor padding, so add border\n\t\t\tif ( extra !== \"padding\" ) {\n\t\t\t\tval += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn val;\n}\n\nfunction getWidthOrHeight( elem, name, extra ) {\n\n\t// Start with offset property, which is equivalent to the border-box value\n\tvar valueIsBorderBox = true,\n\t\tval = name === \"width\" ? elem.offsetWidth : elem.offsetHeight,\n\t\tstyles = getStyles( elem ),\n\t\tisBorderBox = support.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t// some non-html elements return undefined for offsetWidth, so check for null/undefined\n\t// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285\n\t// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668\n\tif ( val <= 0 || val == null ) {\n\t\t// Fall back to computed then uncomputed css if necessary\n\t\tval = curCSS( elem, name, styles );\n\t\tif ( val < 0 || val == null ) {\n\t\t\tval = elem.style[ name ];\n\t\t}\n\n\t\t// Computed unit is not pixels. Stop here and return.\n\t\tif ( rnumnonpx.test(val) ) {\n\t\t\treturn val;\n\t\t}\n\n\t\t// we need the check for style in case a browser which returns unreliable values\n\t\t// for getComputedStyle silently falls back to the reliable elem.style\n\t\tvalueIsBorderBox = isBorderBox && ( support.boxSizingReliable() || val === elem.style[ name ] );\n\n\t\t// Normalize \"\", auto, and prepare for extra\n\t\tval = parseFloat( val ) || 0;\n\t}\n\n\t// use the active box-sizing model to add/subtract irrelevant styles\n\treturn ( val +\n\t\taugmentWidthOrHeight(\n\t\t\telem,\n\t\t\tname,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend({\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {\n\t\t// normalize float css property\n\t\t\"float\": support.cssFloat ? \"cssFloat\" : \"styleFloat\"\n\t},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = jQuery.camelCase( name ),\n\t\t\tstyle = elem.style;\n\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// convert relative number strings (+= or -=) to relative numbers. #7345\n\t\t\tif ( type === \"string\" && (ret = rrelNum.exec( value )) ) {\n\t\t\t\tvalue = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set. See: #7116\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add 'px' to the (except for certain CSS properties)\n\t\t\tif ( type === \"number\" && !jQuery.cssNumber[ origName ] ) {\n\t\t\t\tvalue += \"px\";\n\t\t\t}\n\n\t\t\t// Fixes #8908, it can be done more correctly by specifing setters in cssHooks,\n\t\t\t// but it would mean to define eight (for every problematic property) identical functions\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf(\"background\") === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !(\"set\" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {\n\n\t\t\t\t// Support: IE\n\t\t\t\t// Swallow errors from 'invalid' CSS values (#5509)\n\t\t\t\ttry {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t} else {\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar num, val, hooks,\n\t\t\torigName = jQuery.camelCase( name );\n\n\t\t// Make sure that we're working with the right name\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t//convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Return, converting to number if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || jQuery.isNumeric( num ) ? num || 0 : val;\n\t\t}\n\t\treturn val;\n\t}\n});\n\njQuery.each([ \"height\", \"width\" ], function( i, name ) {\n\tjQuery.cssHooks[ name ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\t\t\t\t// certain elements can have dimension info if we invisibly show them\n\t\t\t\t// however, it must have a current display style that would benefit from this\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) && elem.offsetWidth === 0 ?\n\t\t\t\t\tjQuery.swap( elem, cssShow, function() {\n\t\t\t\t\t\treturn getWidthOrHeight( elem, name, extra );\n\t\t\t\t\t}) :\n\t\t\t\t\tgetWidthOrHeight( elem, name, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar styles = extra && getStyles( elem );\n\t\t\treturn setPositiveNumber( elem, value, extra ?\n\t\t\t\taugmentWidthOrHeight(\n\t\t\t\t\telem,\n\t\t\t\t\tname,\n\t\t\t\t\textra,\n\t\t\t\t\tsupport.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\t\tstyles\n\t\t\t\t) : 0\n\t\t\t);\n\t\t}\n\t};\n});\n\nif ( !support.opacity ) {\n\tjQuery.cssHooks.opacity = {\n\t\tget: function( elem, computed ) {\n\t\t\t// IE uses filters for opacity\n\t\t\treturn ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || \"\" ) ?\n\t\t\t\t( 0.01 * parseFloat( RegExp.$1 ) ) + \"\" :\n\t\t\t\tcomputed ? \"1\" : \"\";\n\t\t},\n\n\t\tset: function( elem, value ) {\n\t\t\tvar style = elem.style,\n\t\t\t\tcurrentStyle = elem.currentStyle,\n\t\t\t\topacity = jQuery.isNumeric( value ) ? \"alpha(opacity=\" + value * 100 + \")\" : \"\",\n\t\t\t\tfilter = currentStyle && currentStyle.filter || style.filter || \"\";\n\n\t\t\t// IE has trouble with opacity if it does not have layout\n\t\t\t// Force it by setting the zoom level\n\t\t\tstyle.zoom = 1;\n\n\t\t\t// if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652\n\t\t\t// if value === \"\", then remove inline opacity #12685\n\t\t\tif ( ( value >= 1 || value === \"\" ) &&\n\t\t\t\t\tjQuery.trim( filter.replace( ralpha, \"\" ) ) === \"\" &&\n\t\t\t\t\tstyle.removeAttribute ) {\n\n\t\t\t\t// Setting style.filter to null, \"\" & \" \" still leave \"filter:\" in the cssText\n\t\t\t\t// if \"filter:\" is present at all, clearType is disabled, we want to avoid this\n\t\t\t\t// style.removeAttribute is IE Only, but so apparently is this code path...\n\t\t\t\tstyle.removeAttribute( \"filter\" );\n\n\t\t\t\t// if there is no filter style applied in a css rule or unset inline opacity, we are done\n\t\t\t\tif ( value === \"\" || currentStyle && !currentStyle.filter ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// otherwise, set new filter values\n\t\t\tstyle.filter = ralpha.test( filter ) ?\n\t\t\t\tfilter.replace( ralpha, opacity ) :\n\t\t\t\tfilter + \" \" + opacity;\n\t\t}\n\t};\n}\n\njQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\t// Work around by temporarily setting element display to inline-block\n\t\t\treturn jQuery.swap( elem, { \"display\": \"inline-block\" },\n\t\t\t\tcurCSS, [ elem, \"marginRight\" ] );\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each({\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split(\" \") : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( !rmargin.test( prefix ) ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n});\n\njQuery.fn.extend({\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( jQuery.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t},\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( isHidden( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t});\n\t}\n});\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || \"swing\";\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\tif ( tween.elem[ tween.prop ] != null &&\n\t\t\t\t(!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails\n\t\t\t// so, simple values such as \"10px\" are parsed to Float.\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\t\t\t// use step hook for back compat - use cssHook if its there - use .style if its\n\t\t\t// available and use plain properties where available\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9\n// Panic based approach to setting things on disconnected nodes\n\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t}\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back Compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, timerId,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trfxnum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" ),\n\trrun = /queueHooks$/,\n\tanimationPrefilters = [ defaultPrefilter ],\n\ttweeners = {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value ),\n\t\t\t\ttarget = tween.cur(),\n\t\t\t\tparts = rfxnum.exec( value ),\n\t\t\t\tunit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t\t\t// Starting value computation is required for potential unit mismatches\n\t\t\t\tstart = ( jQuery.cssNumber[ prop ] || unit !== \"px\" && +target ) &&\n\t\t\t\t\trfxnum.exec( jQuery.css( tween.elem, prop ) ),\n\t\t\t\tscale = 1,\n\t\t\t\tmaxIterations = 20;\n\n\t\t\tif ( start && start[ 3 ] !== unit ) {\n\t\t\t\t// Trust units reported by jQuery.css\n\t\t\t\tunit = unit || start[ 3 ];\n\n\t\t\t\t// Make sure we update the tween properties later on\n\t\t\t\tparts = parts || [];\n\n\t\t\t\t// Iteratively approximate from a nonzero starting point\n\t\t\t\tstart = +target || 1;\n\n\t\t\t\tdo {\n\t\t\t\t\t// If previous iteration zeroed out, double until we get *something*\n\t\t\t\t\t// Use a string for doubling factor so we don't accidentally see scale as unchanged below\n\t\t\t\t\tscale = scale || \".5\";\n\n\t\t\t\t\t// Adjust and apply\n\t\t\t\t\tstart = start / scale;\n\t\t\t\t\tjQuery.style( tween.elem, prop, start + unit );\n\n\t\t\t\t// Update scale, tolerating zero or NaN from tween.cur()\n\t\t\t\t// And breaking the loop if scale is unchanged or perfect, or if we've just had enough\n\t\t\t\t} while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );\n\t\t\t}\n\n\t\t\t// Update tween properties\n\t\t\tif ( parts ) {\n\t\t\t\tstart = tween.start = +start || +target || 0;\n\t\t\t\ttween.unit = unit;\n\t\t\t\t// If a +=/-= token was provided, we're doing a relative animation\n\t\t\t\ttween.end = parts[ 1 ] ?\n\t\t\t\t\tstart + ( parts[ 1 ] + 1 ) * parts[ 2 ] :\n\t\t\t\t\t+parts[ 2 ];\n\t\t\t}\n\n\t\t\treturn tween;\n\t\t} ]\n\t};\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\tsetTimeout(function() {\n\t\tfxNow = undefined;\n\t});\n\treturn ( fxNow = jQuery.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\tattrs = { height: type },\n\t\ti = 0;\n\n\t// if we include width, step value is 1 to do all cssExpand values,\n\t// if we don't include width, step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4 ; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( tweeners[ prop ] || [] ).concat( tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( (tween = collection[ index ].call( animation, prop, value )) ) {\n\n\t\t\t// we're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\t/* jshint validthis: true */\n\tvar prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHidden( elem ),\n\t\tdataShow = jQuery._data( elem, \"fxshow\" );\n\n\t// handle queue: false promises\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always(function() {\n\t\t\t// doing this makes sure that the complete handler will be called\n\t\t\t// before this completes\n\t\t\tanim.always(function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t}\n\n\t// height/width overflow pass\n\tif ( elem.nodeType === 1 && ( \"height\" in props || \"width\" in props ) ) {\n\t\t// Make sure that nothing sneaks out\n\t\t// Record all 3 overflow attributes because IE does not\n\t\t// change the overflow attribute when overflowX and\n\t\t// overflowY are set to the same value\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Set display property to inline-block for height/width\n\t\t// animations on inline elements that are having width/height animated\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\n\t\t// Test default display if display is currently \"none\"\n\t\tcheckDisplay = display === \"none\" ?\n\t\t\tjQuery._data( elem, \"olddisplay\" ) || defaultDisplay( elem.nodeName ) : display;\n\n\t\tif ( checkDisplay === \"inline\" && jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t// inline-level elements accept inline-block;\n\t\t\t// block-level elements need to be inline with layout\n\t\t\tif ( !support.inlineBlockNeedsLayout || defaultDisplay( elem.nodeName ) === \"inline\" ) {\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t} else {\n\t\t\t\tstyle.zoom = 1;\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tif ( !support.shrinkWrapBlocks() ) {\n\t\t\tanim.always(function() {\n\t\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t\t});\n\t\t}\n\t}\n\n\t// show/hide pass\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.exec( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\n\t\t// Any non-fx value stops us from restoring the original display value\n\t\t} else {\n\t\t\tdisplay = undefined;\n\t\t}\n\t}\n\n\tif ( !jQuery.isEmptyObject( orig ) ) {\n\t\tif ( dataShow ) {\n\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\thidden = dataShow.hidden;\n\t\t\t}\n\t\t} else {\n\t\t\tdataShow = jQuery._data( elem, \"fxshow\", {} );\n\t\t}\n\n\t\t// store state if its toggle - enables .stop().toggle() to \"reverse\"\n\t\tif ( toggle ) {\n\t\t\tdataShow.hidden = !hidden;\n\t\t}\n\t\tif ( hidden ) {\n\t\t\tjQuery( elem ).show();\n\t\t} else {\n\t\t\tanim.done(function() {\n\t\t\t\tjQuery( elem ).hide();\n\t\t\t});\n\t\t}\n\t\tanim.done(function() {\n\t\t\tvar prop;\n\t\t\tjQuery._removeData( elem, \"fxshow\" );\n\t\t\tfor ( prop in orig ) {\n\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t}\n\t\t});\n\t\tfor ( prop in orig ) {\n\t\t\ttween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\n\t\t\tif ( !( prop in dataShow ) ) {\n\t\t\t\tdataShow[ prop ] = tween.start;\n\t\t\t\tif ( hidden ) {\n\t\t\t\t\ttween.end = tween.start;\n\t\t\t\t\ttween.start = prop === \"width\" || prop === \"height\" ? 1 : 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t// If this is a noop like .hide().hide(), restore an overwritten display value\n\t} else if ( (display === \"none\" ? defaultDisplay( elem.nodeName ) : display) === \"inline\" ) {\n\t\tstyle.display = display;\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = jQuery.camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( jQuery.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// not quite $.extend, this wont overwrite keys already present.\n\t\t\t// also - reusing 'index' from above because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = animationPrefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\t\t\t// don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t}),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\t\t\t\t// archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ]);\n\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t} else {\n\t\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\t\tanimation = deferred.promise({\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, { specialEasing: {} }, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\t\t\t\t\t// if we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// resolve when we played the last frame\n\t\t\t\t// otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t}),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length ; index++ ) {\n\t\tresult = animationPrefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( jQuery.isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t})\n\t);\n\n\t// attach callbacks from options\n\treturn animation.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\ttweener: function( props, callback ) {\n\t\tif ( jQuery.isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.split(\" \");\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length ; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\ttweeners[ prop ] = tweeners[ prop ] || [];\n\t\t\ttweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tanimationPrefilters.unshift( callback );\n\t\t} else {\n\t\t\tanimationPrefilters.push( callback );\n\t\t}\n\t}\n});\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tjQuery.isFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !jQuery.isFunction( easing ) && easing\n\t};\n\n\topt.duration = jQuery.fx.off ? 0 : typeof opt.duration === \"number\" ? opt.duration :\n\t\topt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;\n\n\t// normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( jQuery.isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend({\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHidden ).css( \"opacity\", 0 ).show()\n\n\t\t\t// animate to the value specified\n\t\t\t.end().animate({ opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || jQuery._data( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue && type !== false ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = jQuery._data( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// start the next in the queue if the last step wasn't forced\n\t\t\t// timers currently will call their complete callbacks, which will dequeue\n\t\t\t// but only if they were gotoEnd\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t});\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tvar index,\n\t\t\t\tdata = jQuery._data( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t});\n\t}\n});\n\njQuery.each([ \"toggle\", \"show\", \"hide\" ], function( i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n});\n\n// Generate shortcuts for custom animations\njQuery.each({\n\tslideDown: genFx(\"show\"),\n\tslideUp: genFx(\"hide\"),\n\tslideToggle: genFx(\"toggle\"),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n});\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ttimers = jQuery.timers,\n\t\ti = 0;\n\n\tfxNow = jQuery.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\t\t// Checks the timer has not already been removed\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tif ( timer() ) {\n\t\tjQuery.fx.start();\n\t} else {\n\t\tjQuery.timers.pop();\n\t}\n};\n\njQuery.fx.interval = 13;\n\njQuery.fx.start = function() {\n\tif ( !timerId ) {\n\t\ttimerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );\n\t}\n};\n\njQuery.fx.stop = function() {\n\tclearInterval( timerId );\n\ttimerId = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\tclearTimeout( timeout );\n\t\t};\n\t});\n};\n\n\n(function() {\n\t// Minified: var a,b,c,d,e\n\tvar input, div, select, a, opt;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.setAttribute( \"className\", \"t\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName(\"a\")[ 0 ];\n\n\t// First batch of tests.\n\tselect = document.createElement(\"select\");\n\topt = select.appendChild( document.createElement(\"option\") );\n\tinput = div.getElementsByTagName(\"input\")[ 0 ];\n\n\ta.style.cssText = \"top:1px\";\n\n\t// Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)\n\tsupport.getSetAttribute = div.className !== \"t\";\n\n\t// Get the style information from getAttribute\n\t// (IE uses .cssText instead)\n\tsupport.style = /top/.test( a.getAttribute(\"style\") );\n\n\t// Make sure that URLs aren't manipulated\n\t// (IE normalizes it by default)\n\tsupport.hrefNormalized = a.getAttribute(\"href\") === \"/a\";\n\n\t// Check the default checkbox/radio value (\"\" on WebKit; \"on\" elsewhere)\n\tsupport.checkOn = !!input.value;\n\n\t// Make sure that a selected-by-default option has a working selected property.\n\t// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)\n\tsupport.optSelected = opt.selected;\n\n\t// Tests for enctype support on a form (#6743)\n\tsupport.enctype = !!document.createElement(\"form\").enctype;\n\n\t// Make sure that the options inside disabled selects aren't marked as disabled\n\t// (WebKit marks them as disabled)\n\tselect.disabled = true;\n\tsupport.optDisabled = !opt.disabled;\n\n\t// Support: IE8 only\n\t// Check if we can trust getAttribute(\"value\")\n\tinput = document.createElement( \"input\" );\n\tinput.setAttribute( \"value\", \"\" );\n\tsupport.input = input.getAttribute( \"value\" ) === \"\";\n\n\t// Check if an input maintains its value after becoming a radio\n\tinput.value = \"t\";\n\tinput.setAttribute( \"type\", \"radio\" );\n\tsupport.radioValue = input.value === \"t\";\n})();\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend({\n\tval: function( value ) {\n\t\tvar hooks, ret, isFunction,\n\t\t\telem = this[0];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, \"value\" )) !== undefined ) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\treturn typeof ret === \"string\" ?\n\t\t\t\t\t// handle most common string cases\n\t\t\t\t\tret.replace(rreturn, \"\") :\n\t\t\t\t\t// handle cases where value is null/undef or number\n\t\t\t\t\tret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tisFunction = jQuery.isFunction( value );\n\n\t\treturn this.each(function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( isFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\t\t\t} else if ( jQuery.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t});\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !(\"set\" in hooks) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\t\t\t\t\t// Support: IE10-11+\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\tjQuery.trim( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\" || index < 0,\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length,\n\t\t\t\t\ti = index < 0 ?\n\t\t\t\t\t\tmax :\n\t\t\t\t\t\tone ? index : 0;\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// oldIE doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t( support.optDisabled ? !option.disabled : option.getAttribute(\"disabled\") === null ) &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\tif ( jQuery.inArray( jQuery.valHooks.option.get( option ), values ) >= 0 ) {\n\n\t\t\t\t\t\t// Support: IE6\n\t\t\t\t\t\t// When new option element is added to select box we need to\n\t\t\t\t\t\t// force reflow of newly added node in order to workaround delay\n\t\t\t\t\t\t// of initialization properties\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\toption.selected = optionSet = true;\n\n\t\t\t\t\t\t} catch ( _ ) {\n\n\t\t\t\t\t\t\t// Will be executed only in IE6\n\t\t\t\t\t\t\toption.scrollHeight;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\toption.selected = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\n\t\t\t\treturn options;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Radios and checkboxes getter/setter\njQuery.each([ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( jQuery.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\t// Support: Webkit\n\t\t\t// \"\" is returned instead of \"on\" if a value isn't specified\n\t\t\treturn elem.getAttribute(\"value\") === null ? \"on\" : elem.value;\n\t\t};\n\t}\n});\n\n\n\n\nvar nodeHook, boolHook,\n\tattrHandle = jQuery.expr.attrHandle,\n\truseDefault = /^(?:checked|selected)$/i,\n\tgetSetAttribute = support.getSetAttribute,\n\tgetSetInput = support.input;\n\njQuery.fn.extend({\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tattr: function( elem, name, value ) {\n\t\tvar hooks, ret,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set attributes on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === strundefined ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// All attributes are lowercase\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\tname = name.toLowerCase();\n\t\t\thooks = jQuery.attrHooks[ name ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\n\t\t\t} else if ( hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {\n\t\t\t\treturn ret;\n\n\t\t\t} else {\n\t\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\t\treturn value;\n\t\t\t}\n\n\t\t} else if ( hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ) {\n\t\t\treturn ret;\n\n\t\t} else {\n\t\t\tret = jQuery.find.attr( elem, name );\n\n\t\t\t// Non-existent attributes return null, we normalize to undefined\n\t\t\treturn ret == null ?\n\t\t\t\tundefined :\n\t\t\t\tret;\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name, propName,\n\t\t\ti = 0,\n\t\t\tattrNames = value && value.match( rnotwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( (name = attrNames[i++]) ) {\n\t\t\t\tpropName = jQuery.propFix[ name ] || name;\n\n\t\t\t\t// Boolean attributes get special treatment (#10870)\n\t\t\t\tif ( jQuery.expr.match.bool.test( name ) ) {\n\t\t\t\t\t// Set corresponding property to false\n\t\t\t\t\tif ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t// Also clear defaultChecked/defaultSelected (if appropriate)\n\t\t\t\t\t} else {\n\t\t\t\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] =\n\t\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t}\n\n\t\t\t\t// See #9699 for explanation of this approach (setting first, then removal)\n\t\t\t\t} else {\n\t\t\t\t\tjQuery.attr( elem, name, \"\" );\n\t\t\t\t}\n\n\t\t\t\telem.removeAttribute( getSetAttribute ? name : propName );\n\t\t\t}\n\t\t}\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" && jQuery.nodeName(elem, \"input\") ) {\n\t\t\t\t\t// Setting the type on a radio button after the value resets the value in IE6-9\n\t\t\t\t\t// Reset value to default in case type is set after value during creation\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Hook for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t// IE<8 needs the *property* name\n\t\t\telem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name );\n\n\t\t// Use defaultChecked and defaultSelected for oldIE\n\t\t} else {\n\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] = elem[ name ] = true;\n\t\t}\n\n\t\treturn name;\n\t}\n};\n\n// Retrieve booleans specially\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( i, name ) {\n\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ?\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret, handle;\n\t\t\tif ( !isXML ) {\n\t\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\t\thandle = attrHandle[ name ];\n\t\t\t\tattrHandle[ name ] = ret;\n\t\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t\tattrHandle[ name ] = handle;\n\t\t\t}\n\t\t\treturn ret;\n\t\t} :\n\t\tfunction( elem, name, isXML ) {\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn elem[ jQuery.camelCase( \"default-\" + name ) ] ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n});\n\n// fix oldIE attroperties\nif ( !getSetInput || !getSetAttribute ) {\n\tjQuery.attrHooks.value = {\n\t\tset: function( elem, value, name ) {\n\t\t\tif ( jQuery.nodeName( elem, \"input\" ) ) {\n\t\t\t\t// Does not return so that setAttribute is also used\n\t\t\t\telem.defaultValue = value;\n\t\t\t} else {\n\t\t\t\t// Use nodeHook if defined (#1954); otherwise setAttribute is fine\n\t\t\t\treturn nodeHook && nodeHook.set( elem, value, name );\n\t\t\t}\n\t\t}\n\t};\n}\n\n// IE6/7 do not support getting/setting some attributes with get/setAttribute\nif ( !getSetAttribute ) {\n\n\t// Use this for any attribute in IE6/7\n\t// This fixes almost every IE6/7 issue\n\tnodeHook = {\n\t\tset: function( elem, value, name ) {\n\t\t\t// Set the existing or create a new attribute node\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( !ret ) {\n\t\t\t\telem.setAttributeNode(\n\t\t\t\t\t(ret = elem.ownerDocument.createAttribute( name ))\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tret.value = value += \"\";\n\n\t\t\t// Break association with cloned elements by also using setAttribute (#9646)\n\t\t\tif ( name === \"value\" || value === elem.getAttribute( name ) ) {\n\t\t\t\treturn value;\n\t\t\t}\n\t\t}\n\t};\n\n\t// Some attributes are constructed with empty-string values when not defined\n\tattrHandle.id = attrHandle.name = attrHandle.coords =\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret;\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn (ret = elem.getAttributeNode( name )) && ret.value !== \"\" ?\n\t\t\t\t\tret.value :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n\n\t// Fixing value retrieval on a button requires this module\n\tjQuery.valHooks.button = {\n\t\tget: function( elem, name ) {\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( ret && ret.specified ) {\n\t\t\t\treturn ret.value;\n\t\t\t}\n\t\t},\n\t\tset: nodeHook.set\n\t};\n\n\t// Set contenteditable to false on removals(#10429)\n\t// Setting to empty string throws an error as an invalid value\n\tjQuery.attrHooks.contenteditable = {\n\t\tset: function( elem, value, name ) {\n\t\t\tnodeHook.set( elem, value === \"\" ? false : value, name );\n\t\t}\n\t};\n\n\t// Set width and height to auto instead of 0 on empty string( Bug #8150 )\n\t// This is for removals\n\tjQuery.each([ \"width\", \"height\" ], function( i, name ) {\n\t\tjQuery.attrHooks[ name ] = {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( value === \"\" ) {\n\t\t\t\t\telem.setAttribute( name, \"auto\" );\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\nif ( !support.style ) {\n\tjQuery.attrHooks.style = {\n\t\tget: function( elem ) {\n\t\t\t// Return undefined in the case of empty string\n\t\t\t// Note: IE uppercases css property names, but if we were to .toLowerCase()\n\t\t\t// .cssText, that would destroy case senstitivity in URL's, like in \"background\"\n\t\t\treturn elem.style.cssText || undefined;\n\t\t},\n\t\tset: function( elem, value ) {\n\t\t\treturn ( elem.style.cssText = value + \"\" );\n\t\t}\n\t};\n}\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button|object)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend({\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\tname = jQuery.propFix[ name ] || name;\n\t\treturn this.each(function() {\n\t\t\t// try/catch handles cases where IE balks (such as removing a property on window)\n\t\t\ttry {\n\t\t\t\tthis[ name ] = undefined;\n\t\t\t\tdelete this[ name ];\n\t\t\t} catch( e ) {}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t},\n\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks, notxml,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set properties on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tnotxml = nType !== 1 || !jQuery.isXMLDoc( elem );\n\n\t\tif ( notxml ) {\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\treturn hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?\n\t\t\t\tret :\n\t\t\t\t( elem[ name ] = value );\n\n\t\t} else {\n\t\t\treturn hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ?\n\t\t\t\tret :\n\t\t\t\telem[ name ];\n\t\t}\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\t\t\t\t// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set\n\t\t\t\t// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\treturn tabindex ?\n\t\t\t\t\tparseInt( tabindex, 10 ) :\n\t\t\t\t\trfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?\n\t\t\t\t\t\t0 :\n\t\t\t\t\t\t-1;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Some attributes require a special call on IE\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !support.hrefNormalized ) {\n\t// href/src property should get the full normalized URL (#10299/#12915)\n\tjQuery.each([ \"href\", \"src\" ], function( i, name ) {\n\t\tjQuery.propHooks[ name ] = {\n\t\t\tget: function( elem ) {\n\t\t\t\treturn elem.getAttribute( name, 4 );\n\t\t\t}\n\t\t};\n\t});\n}\n\n// Support: Safari, IE9+\n// mis-reports the default selected property of an option\n// Accessing the parent's selectedIndex property fixes it\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\t// Make sure that it also works with optgroups, see #5701\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\t};\n}\n\njQuery.each([\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n});\n\n// IE6/7 call enctype encoding\nif ( !support.enctype ) {\n\tjQuery.propFix.enctype = \"encoding\";\n}\n\n\n\n\nvar rclass = /[\\t\\r\\n\\f]/g;\n\njQuery.fn.extend({\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\n\t\tif ( proceed ) {\n\t\t\t// The disjunction here is for better compressibility (see removeClass)\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\" \"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = jQuery.trim( cur );\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = arguments.length === 0 || typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\t\tif ( proceed ) {\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\"\"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) >= 0 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = value ? jQuery.trim( cur ) : \"\";\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value;\n\n\t\tif ( typeof stateVal === \"boolean\" && type === \"string\" ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tjQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( type === \"string\" ) {\n\t\t\t\t// toggle individual class names\n\t\t\t\tvar className,\n\t\t\t\t\ti = 0,\n\t\t\t\t\tself = jQuery( this ),\n\t\t\t\t\tclassNames = value.match( rnotwhite ) || [];\n\n\t\t\t\twhile ( (className = classNames[ i++ ]) ) {\n\t\t\t\t\t// check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( type === strundefined || type === \"boolean\" ) {\n\t\t\t\tif ( this.className ) {\n\t\t\t\t\t// store className if set\n\t\t\t\t\tjQuery._data( this, \"__className__\", this.className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed \"false\",\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tthis.className = this.className || value === false ? \"\" : jQuery._data( this, \"__className__\" ) || \"\";\n\t\t\t}\n\t\t});\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className = \" \" + selector + \" \",\n\t\t\ti = 0,\n\t\t\tl = this.length;\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tif ( this[i].nodeType === 1 && (\" \" + this[i].className + \" \").replace(rclass, \" \").indexOf( className ) >= 0 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n});\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\njQuery.each( (\"blur focus focusin focusout load resize scroll unload click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup error contextmenu\").split(\" \"), function( i, name ) {\n\n\t// Handle event binding\n\tjQuery.fn[ name ] = function( data, fn ) {\n\t\treturn arguments.length > 0 ?\n\t\t\tthis.on( name, null, data, fn ) :\n\t\t\tthis.trigger( name );\n\t};\n});\n\njQuery.fn.extend({\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t},\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ? this.off( selector, \"**\" ) : this.off( types, selector || \"**\", fn );\n\t}\n});\n\n\nvar nonce = jQuery.now();\n\nvar rquery = (/\\?/);\n\n\n\nvar rvalidtokens = /(,)|(\\[|{)|(}|])|\"(?:[^\"\\\\\\r\\n]|\\\\[\"\\\\\\/bfnrt]|\\\\u[\\da-fA-F]{4})*\"\\s*:?|true|false|null|-?(?!0\\d)\\d+(?:\\.\\d+|)(?:[eE][+-]?\\d+|)/g;\n\njQuery.parseJSON = function( data ) {\n\t// Attempt to parse using the native JSON parser first\n\tif ( window.JSON && window.JSON.parse ) {\n\t\t// Support: Android 2.3\n\t\t// Workaround failure to string-cast null input\n\t\treturn window.JSON.parse( data + \"\" );\n\t}\n\n\tvar requireNonComma,\n\t\tdepth = null,\n\t\tstr = jQuery.trim( data + \"\" );\n\n\t// Guard against invalid (and possibly dangerous) input by ensuring that nothing remains\n\t// after removing valid tokens\n\treturn str && !jQuery.trim( str.replace( rvalidtokens, function( token, comma, open, close ) {\n\n\t\t// Force termination if we see a misplaced comma\n\t\tif ( requireNonComma && comma ) {\n\t\t\tdepth = 0;\n\t\t}\n\n\t\t// Perform no more replacements after returning to outermost depth\n\t\tif ( depth === 0 ) {\n\t\t\treturn token;\n\t\t}\n\n\t\t// Commas must not follow \"[\", \"{\", or \",\"\n\t\trequireNonComma = open || comma;\n\n\t\t// Determine new depth\n\t\t// array/object open (\"[\" or \"{\"): depth += true - false (increment)\n\t\t// array/object close (\"]\" or \"}\"): depth += false - true (decrement)\n\t\t// other cases (\",\" or primitive): depth += true - true (numeric cast)\n\t\tdepth += !close - !open;\n\n\t\t// Remove this token\n\t\treturn \"\";\n\t}) ) ?\n\t\t( Function( \"return \" + str ) )() :\n\t\tjQuery.error( \"Invalid JSON: \" + data );\n};\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml, tmp;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\ttry {\n\t\tif ( window.DOMParser ) { // Standard\n\t\t\ttmp = new DOMParser();\n\t\t\txml = tmp.parseFromString( data, \"text/xml\" );\n\t\t} else { // IE\n\t\t\txml = new ActiveXObject( \"Microsoft.XMLDOM\" );\n\t\t\txml.async = \"false\";\n\t\t\txml.loadXML( data );\n\t\t}\n\t} catch( e ) {\n\t\txml = undefined;\n\t}\n\tif ( !xml || !xml.documentElement || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\t// Document location\n\tajaxLocParts,\n\tajaxLocation,\n\n\trhash = /#.*$/,\n\trts = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)\\r?$/mg, // IE leaves an \\r character at EOL\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\trurl = /^([\\w.+-]+:)(?:\\/\\/(?:[^\\/?#]*@|)([^\\/?#:]*)(?::(\\d+)|)|)/,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat(\"*\");\n\n// #8138, IE may throw an exception when accessing\n// a field from window.location if document.domain has been set\ntry {\n\tajaxLocation = location.href;\n} catch( e ) {\n\t// Use the href attribute of an A element\n\t// since IE will modify it given document.location\n\tajaxLocation = document.createElement( \"a\" );\n\tajaxLocation.href = \"\";\n\tajaxLocation = ajaxLocation.href;\n}\n\n// Segment location into parts\najaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];\n\n\t\tif ( jQuery.isFunction( func ) ) {\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( (dataType = dataTypes[i++]) ) {\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType.charAt( 0 ) === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t});\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar deep, key,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\tvar firstDataType, ct, finalDataType, type,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader(\"Content-Type\");\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[0] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s[ \"throws\" ] ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn { state: \"parsererror\", error: conv ? e : \"No conversion from \" + prev + \" to \" + current };\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend({\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: ajaxLocation,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /xml/,\n\t\t\thtml: /html/,\n\t\t\tjson: /json/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": jQuery.parseJSON,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar // Cross-domain detection vars\n\t\t\tparts,\n\t\t\t// Loop variable\n\t\t\ti,\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\t\t\t// Response headers as string\n\t\t\tresponseHeadersString,\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\ttransport,\n\t\t\t// Response headers\n\t\t\tresponseHeaders,\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\tjQuery.event,\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks(\"once memory\"),\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\t\t\t// The jqXHR state\n\t\t\tstate = 0,\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( state === 2 ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( (match = rheaders.exec( responseHeadersString )) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[1].toLowerCase() ] = match[ 2 ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match;\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn state === 2 ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tvar lname = name.toLowerCase();\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\tname = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\t// Lazy-add the new callback in a way that preserves old ones\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR ).complete = completeDeferred.add;\n\t\tjqXHR.success = jqXHR.done;\n\t\tjqXHR.error = jqXHR.fail;\n\n\t\t// Remove hash character (#7531: and string promotion)\n\t\t// Add protocol if not provided (#5866: IE7 issue with protocol-less urls)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || ajaxLocation ) + \"\" ).replace( rhash, \"\" ).replace( rprotocol, ajaxLocParts[ 1 ] + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = jQuery.trim( s.dataType || \"*\" ).toLowerCase().match( rnotwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when we have a protocol:host:port mismatch\n\t\tif ( s.crossDomain == null ) {\n\t\t\tparts = rurl.exec( s.url.toLowerCase() );\n\t\t\ts.crossDomain = !!( parts &&\n\t\t\t\t( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||\n\t\t\t\t\t( parts[ 3 ] || ( parts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) !==\n\t\t\t\t\t\t( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) )\n\t\t\t);\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( state === 2 ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger(\"ajaxStart\");\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\tcacheURL = s.url;\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// If data is available, append data to url\n\t\t\tif ( s.data ) {\n\t\t\t\tcacheURL = ( s.url += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data );\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add anti-cache in url if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\ts.url = rts.test( cacheURL ) ?\n\n\t\t\t\t\t// If there is already a '_' parameter, set its value\n\t\t\t\t\tcacheURL.replace( rts, \"$1_=\" + nonce++ ) :\n\n\t\t\t\t\t// Otherwise add one to the end\n\t\t\t\t\tcacheURL + ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + nonce++;\n\t\t\t}\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tfor ( i in { success: 1, error: 1, complete: 1 } ) {\n\t\t\tjqXHR[ i ]( s[ i ] );\n\t\t}\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = setTimeout(function() {\n\t\t\t\t\tjqXHR.abort(\"timeout\");\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tstate = 1;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\t\t\t\t// Propagate exception as error if not done\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tdone( -1, e );\n\t\t\t\t// Simply rethrow otherwise\n\t\t\t\t} else {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Called once\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// State is \"done\" now\n\t\t\tstate = 2;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\tclearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"Last-Modified\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"etag\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// We extract error from statusText\n\t\t\t\t// then normalize statusText and status for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger(\"ajaxStop\");\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n});\n\njQuery.each( [ \"get\", \"post\" ], function( i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\t\t// shift arguments if data argument was omitted\n\t\tif ( jQuery.isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\treturn jQuery.ajax({\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t});\n\t};\n});\n\n\njQuery._evalUrl = function( url ) {\n\treturn jQuery.ajax({\n\t\turl: url,\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tasync: false,\n\t\tglobal: false,\n\t\t\"throws\": true\n\t});\n};\n\n\njQuery.fn.extend({\n\twrapAll: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapAll( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\tif ( this[0] ) {\n\t\t\t// The elements to wrap the target around\n\t\t\tvar wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);\n\n\t\t\tif ( this[0].parentNode ) {\n\t\t\t\twrap.insertBefore( this[0] );\n\t\t\t}\n\n\t\t\twrap.map(function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstChild && elem.firstChild.nodeType === 1 ) {\n\t\t\t\t\telem = elem.firstChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t}).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapInner( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t});\n\t},\n\n\twrap: function( html ) {\n\t\tvar isFunction = jQuery.isFunction( html );\n\n\t\treturn this.each(function(i) {\n\t\t\tjQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );\n\t\t});\n\t},\n\n\tunwrap: function() {\n\t\treturn this.parent().each(function() {\n\t\t\tif ( !jQuery.nodeName( this, \"body\" ) ) {\n\t\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t\t}\n\t\t}).end();\n\t}\n});\n\n\njQuery.expr.filters.hidden = function( elem ) {\n\t// Support: Opera <= 12.12\n\t// Opera reports offsetWidths and offsetHeights less than zero on some elements\n\treturn elem.offsetWidth <= 0 && elem.offsetHeight <= 0 ||\n\t\t(!support.reliableHiddenOffsets() &&\n\t\t\t((elem.style && elem.style.display) || jQuery.css( elem, \"display\" )) === \"none\");\n};\n\njQuery.expr.filters.visible = function( elem ) {\n\treturn !jQuery.expr.filters.hidden( elem );\n};\n\n\n\n\nvar r20 = /%20/g,\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( jQuery.isArray( obj ) ) {\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams( prefix + \"[\" + ( typeof v === \"object\" ? i : \"\" ) + \"]\", v, traditional, add );\n\t\t\t}\n\t\t});\n\n\t} else if ( !traditional && jQuery.type( obj ) === \"object\" ) {\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, value ) {\n\t\t\t// If value is a function, invoke it and return its value\n\t\t\tvalue = jQuery.isFunction( value ) ? value() : ( value == null ? \"\" : value );\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" + encodeURIComponent( value );\n\t\t};\n\n\t// Set traditional to true for jQuery <= 1.3.2 behavior.\n\tif ( traditional === undefined ) {\n\t\ttraditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t});\n\n\t} else {\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" ).replace( r20, \"+\" );\n};\n\njQuery.fn.extend({\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map(function() {\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t})\n\t\t.filter(function() {\n\t\t\tvar type = this.type;\n\t\t\t// Use .is(\":disabled\") so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t})\n\t\t.map(function( i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\treturn val == null ?\n\t\t\t\tnull :\n\t\t\t\tjQuery.isArray( val ) ?\n\t\t\t\t\tjQuery.map( val, function( val ) {\n\t\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t\t}) :\n\t\t\t\t\t{ name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t}).get();\n\t}\n});\n\n\n// Create the request object\n// (This is still attached to ajaxSettings for backward compatibility)\njQuery.ajaxSettings.xhr = window.ActiveXObject !== undefined ?\n\t// Support: IE6+\n\tfunction() {\n\n\t\t// XHR cannot access local files, always use ActiveX for that case\n\t\treturn !this.isLocal &&\n\n\t\t\t// Support: IE7-8\n\t\t\t// oldIE XHR does not support non-RFC2616 methods (#13240)\n\t\t\t// See http://msdn.microsoft.com/en-us/library/ie/ms536648(v=vs.85).aspx\n\t\t\t// and http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9\n\t\t\t// Although this check for six methods instead of eight\n\t\t\t// since IE also does not support \"trace\" and \"connect\"\n\t\t\t/^(get|post|head|put|delete|options)$/i.test( this.type ) &&\n\n\t\t\tcreateStandardXHR() || createActiveXHR();\n\t} :\n\t// For all other browsers, use the standard XMLHttpRequest object\n\tcreateStandardXHR;\n\nvar xhrId = 0,\n\txhrCallbacks = {},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\n// Support: IE<10\n// Open requests must be manually aborted on unload (#5280)\n// See https://support.microsoft.com/kb/2856746 for more info\nif ( window.attachEvent ) {\n\twindow.attachEvent( \"onunload\", function() {\n\t\tfor ( var key in xhrCallbacks ) {\n\t\t\txhrCallbacks[ key ]( undefined, true );\n\t\t}\n\t});\n}\n\n// Determine support properties\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nxhrSupported = support.ajax = !!xhrSupported;\n\n// Create transport if the browser can provide an xhr\nif ( xhrSupported ) {\n\n\tjQuery.ajaxTransport(function( options ) {\n\t\t// Cross domain only allowed if supported through XMLHttpRequest\n\t\tif ( !options.crossDomain || support.cors ) {\n\n\t\t\tvar callback;\n\n\t\t\treturn {\n\t\t\t\tsend: function( headers, complete ) {\n\t\t\t\t\tvar i,\n\t\t\t\t\t\txhr = options.xhr(),\n\t\t\t\t\t\tid = ++xhrId;\n\n\t\t\t\t\t// Open the socket\n\t\t\t\t\txhr.open( options.type, options.url, options.async, options.username, options.password );\n\n\t\t\t\t\t// Apply custom fields if provided\n\t\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Override mime type if needed\n\t\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t\t}\n\n\t\t\t\t\t// X-Requested-With header\n\t\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\t\tif ( !options.crossDomain && !headers[\"X-Requested-With\"] ) {\n\t\t\t\t\t\theaders[\"X-Requested-With\"] = \"XMLHttpRequest\";\n\t\t\t\t\t}\n\n\t\t\t\t\t// Set headers\n\t\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// IE's ActiveXObject throws a 'Type Mismatch' exception when setting\n\t\t\t\t\t\t// request header to a null-value.\n\t\t\t\t\t\t//\n\t\t\t\t\t\t// To keep consistent with other XHR implementations, cast the value\n\t\t\t\t\t\t// to string and ignore `undefined`.\n\t\t\t\t\t\tif ( headers[ i ] !== undefined ) {\n\t\t\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] + \"\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Do send the request\n\t\t\t\t\t// This may raise an exception which is actually\n\t\t\t\t\t// handled in jQuery.ajax (so no try/catch here)\n\t\t\t\t\txhr.send( ( options.hasContent && options.data ) || null );\n\n\t\t\t\t\t// Listener\n\t\t\t\t\tcallback = function( _, isAbort ) {\n\t\t\t\t\t\tvar status, statusText, responses;\n\n\t\t\t\t\t\t// Was never called and is aborted or complete\n\t\t\t\t\t\tif ( callback && ( isAbort || xhr.readyState === 4 ) ) {\n\t\t\t\t\t\t\t// Clean up\n\t\t\t\t\t\t\tdelete xhrCallbacks[ id ];\n\t\t\t\t\t\t\tcallback = undefined;\n\t\t\t\t\t\t\txhr.onreadystatechange = jQuery.noop;\n\n\t\t\t\t\t\t\t// Abort manually if needed\n\t\t\t\t\t\t\tif ( isAbort ) {\n\t\t\t\t\t\t\t\tif ( xhr.readyState !== 4 ) {\n\t\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tresponses = {};\n\t\t\t\t\t\t\t\tstatus = xhr.status;\n\n\t\t\t\t\t\t\t\t// Support: IE<10\n\t\t\t\t\t\t\t\t// Accessing binary-data responseText throws an exception\n\t\t\t\t\t\t\t\t// (#11426)\n\t\t\t\t\t\t\t\tif ( typeof xhr.responseText === \"string\" ) {\n\t\t\t\t\t\t\t\t\tresponses.text = xhr.responseText;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Firefox throws an exception when accessing\n\t\t\t\t\t\t\t\t// statusText for faulty cross-domain requests\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tstatusText = xhr.statusText;\n\t\t\t\t\t\t\t\t} catch( e ) {\n\t\t\t\t\t\t\t\t\t// We normalize with Webkit giving an empty statusText\n\t\t\t\t\t\t\t\t\tstatusText = \"\";\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Filter status for non standard behaviors\n\n\t\t\t\t\t\t\t\t// If the request is local and we have data: assume a success\n\t\t\t\t\t\t\t\t// (success with no data won't get notified, that's the best we\n\t\t\t\t\t\t\t\t// can do given current implementations)\n\t\t\t\t\t\t\t\tif ( !status && options.isLocal && !options.crossDomain ) {\n\t\t\t\t\t\t\t\t\tstatus = responses.text ? 200 : 404;\n\t\t\t\t\t\t\t\t// IE - #1450: sometimes returns 1223 when it should be 204\n\t\t\t\t\t\t\t\t} else if ( status === 1223 ) {\n\t\t\t\t\t\t\t\t\tstatus = 204;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Call complete if needed\n\t\t\t\t\t\tif ( responses ) {\n\t\t\t\t\t\t\tcomplete( status, statusText, responses, xhr.getAllResponseHeaders() );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\tif ( !options.async ) {\n\t\t\t\t\t\t// if we're in sync mode we fire the callback\n\t\t\t\t\t\tcallback();\n\t\t\t\t\t} else if ( xhr.readyState === 4 ) {\n\t\t\t\t\t\t// (IE6 & IE7) if it's in cache and has been\n\t\t\t\t\t\t// retrieved directly we need to fire the callback\n\t\t\t\t\t\tsetTimeout( callback );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// Add to the list of active xhr callbacks\n\t\t\t\t\t\txhr.onreadystatechange = xhrCallbacks[ id ] = callback;\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tabort: function() {\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tcallback( undefined, true );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t});\n}\n\n// Functions to create xhrs\nfunction createStandardXHR() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch( e ) {}\n}\n\nfunction createActiveXHR() {\n\ttry {\n\t\treturn new window.ActiveXObject( \"Microsoft.XMLHTTP\" );\n\t} catch( e ) {}\n}\n\n\n\n\n// Install script dataType\njQuery.ajaxSetup({\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /(?:java|ecma)script/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n});\n\n// Handle cache's special case and global\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t\ts.global = false;\n\t}\n});\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function(s) {\n\n\t// This transport only deals with cross domain requests\n\tif ( s.crossDomain ) {\n\n\t\tvar script,\n\t\t\thead = document.head || jQuery(\"head\")[0] || document.documentElement;\n\n\t\treturn {\n\n\t\t\tsend: function( _, callback ) {\n\n\t\t\t\tscript = document.createElement(\"script\");\n\n\t\t\t\tscript.async = true;\n\n\t\t\t\tif ( s.scriptCharset ) {\n\t\t\t\t\tscript.charset = s.scriptCharset;\n\t\t\t\t}\n\n\t\t\t\tscript.src = s.url;\n\n\t\t\t\t// Attach handlers for all browsers\n\t\t\t\tscript.onload = script.onreadystatechange = function( _, isAbort ) {\n\n\t\t\t\t\tif ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {\n\n\t\t\t\t\t\t// Handle memory leak in IE\n\t\t\t\t\t\tscript.onload = script.onreadystatechange = null;\n\n\t\t\t\t\t\t// Remove the script\n\t\t\t\t\t\tif ( script.parentNode ) {\n\t\t\t\t\t\t\tscript.parentNode.removeChild( script );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Dereference the script\n\t\t\t\t\t\tscript = null;\n\n\t\t\t\t\t\t// Callback if not abort\n\t\t\t\t\t\tif ( !isAbort ) {\n\t\t\t\t\t\t\tcallback( 200, \"success\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\t// Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\thead.insertBefore( script, head.firstChild );\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( script ) {\n\t\t\t\t\tscript.onload( undefined, true );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n});\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup({\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n});\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" && !( s.contentType || \"\" ).indexOf(\"application/x-www-form-urlencoded\") && rjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[\"script json\"] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always(function() {\n\t\t\t// Restore preexisting value\n\t\t\twindow[ callbackName ] = overwritten;\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\t\t\t\t// make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && jQuery.isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t});\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n});\n\n\n\n\n// data: string of html\n// context (optional): If specified, the fragment will be created in this context, defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\tcontext = context || document;\n\n\tvar parsed = rsingleTag.exec( data ),\n\t\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[1] ) ];\n\t}\n\n\tparsed = jQuery.buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n// Keep a copy of the old load method\nvar _load = jQuery.fn.load;\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tif ( typeof url !== \"string\" && _load ) {\n\t\treturn _load.apply( this, arguments );\n\t}\n\n\tvar selector, response, type,\n\t\tself = this,\n\t\toff = url.indexOf(\" \");\n\n\tif ( off >= 0 ) {\n\t\tselector = jQuery.trim( url.slice( off, url.length ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( jQuery.isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax({\n\t\t\turl: url,\n\n\t\t\t// if \"type\" variable is undefined, then \"GET\" method will be used\n\t\t\ttype: type,\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t}).done(function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery(\"<div>\").append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t}).complete( callback && function( jqXHR, status ) {\n\t\t\tself.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t});\n\t}\n\n\treturn this;\n};\n\n\n\n\n// Attach a bunch of functions for handling common AJAX events\njQuery.each( [ \"ajaxStart\", \"ajaxStop\", \"ajaxComplete\", \"ajaxError\", \"ajaxSuccess\", \"ajaxSend\" ], function( i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n});\n\n\n\n\njQuery.expr.filters.animated = function( elem ) {\n\treturn jQuery.grep(jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t}).length;\n};\n\n\n\n\n\nvar docElem = window.document.documentElement;\n\n/**\n * Gets a window from an element\n */\nfunction getWindow( elem ) {\n\treturn jQuery.isWindow( elem ) ?\n\t\telem :\n\t\telem.nodeType === 9 ?\n\t\t\telem.defaultView || elem.parentWindow :\n\t\t\tfalse;\n}\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\tjQuery.inArray(\"auto\", [ curCSSTop, curCSSLeft ] ) > -1;\n\n\t\t// need to be able to calculate position if either top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( jQuery.isFunction( options ) ) {\n\t\t\toptions = options.call( elem, i, curOffset );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend({\n\toffset: function( options ) {\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each(function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t});\n\t\t}\n\n\t\tvar docElem, win,\n\t\t\tbox = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ],\n\t\t\tdoc = elem && elem.ownerDocument;\n\n\t\tif ( !doc ) {\n\t\t\treturn;\n\t\t}\n\n\t\tdocElem = doc.documentElement;\n\n\t\t// Make sure it's not a disconnected DOM node\n\t\tif ( !jQuery.contains( docElem, elem ) ) {\n\t\t\treturn box;\n\t\t}\n\n\t\t// If we don't have gBCR, just use 0,0 rather than error\n\t\t// BlackBerry 5, iOS 3 (original iPhone)\n\t\tif ( typeof elem.getBoundingClientRect !== strundefined ) {\n\t\t\tbox = elem.getBoundingClientRect();\n\t\t}\n\t\twin = getWindow( doc );\n\t\treturn {\n\t\t\ttop: box.top  + ( win.pageYOffset || docElem.scrollTop )  - ( docElem.clientTop  || 0 ),\n\t\t\tleft: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 )\n\t\t};\n\t},\n\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset,\n\t\t\tparentOffset = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ];\n\n\t\t// fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is its only offset parent\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\t\t\t// we assume that getBoundingClientRect is available when computed position is fixed\n\t\t\toffset = elem.getBoundingClientRect();\n\t\t} else {\n\t\t\t// Get *real* offsetParent\n\t\t\toffsetParent = this.offsetParent();\n\n\t\t\t// Get correct offsets\n\t\t\toffset = this.offset();\n\t\t\tif ( !jQuery.nodeName( offsetParent[ 0 ], \"html\" ) ) {\n\t\t\t\tparentOffset = offsetParent.offset();\n\t\t\t}\n\n\t\t\t// Add offsetParent borders\n\t\t\tparentOffset.top  += jQuery.css( offsetParent[ 0 ], \"borderTopWidth\", true );\n\t\t\tparentOffset.left += jQuery.css( offsetParent[ 0 ], \"borderLeftWidth\", true );\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\t// note: when an element has margin: auto the offsetLeft and marginLeft\n\t\t// are the same in Safari causing offset.left to incorrectly be 0\n\t\treturn {\n\t\t\ttop:  offset.top  - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true)\n\t\t};\n\t},\n\n\toffsetParent: function() {\n\t\treturn this.map(function() {\n\t\t\tvar offsetParent = this.offsetParent || docElem;\n\n\t\t\twhile ( offsetParent && ( !jQuery.nodeName( offsetParent, \"html\" ) && jQuery.css( offsetParent, \"position\" ) === \"static\" ) ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\t\t\treturn offsetParent || docElem;\n\t\t});\n\t}\n});\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = /Y/.test( prop );\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\t\t\tvar win = getWindow( elem );\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? (prop in win) ? win[ prop ] :\n\t\t\t\t\twin.document.documentElement[ method ] :\n\t\t\t\t\telem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : jQuery( win ).scrollLeft(),\n\t\t\t\t\ttop ? val : jQuery( win ).scrollTop()\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length, null );\n\t};\n});\n\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// getComputedStyle returns percent when specified for top/left/bottom/right\n// rather than make the css module depend on the offset module, we just check for it here\njQuery.each( [ \"top\", \"left\" ], function( i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\t\t\t\t// if curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n});\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name }, function( defaultExtra, funcName ) {\n\t\t// margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( jQuery.isWindow( elem ) ) {\n\t\t\t\t\t// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there\n\t\t\t\t\t// isn't a whole lot we can do. See pull request at this URL for discussion:\n\t\t\t\t\t// https://github.com/jquery/jquery/pull/764\n\t\t\t\t\treturn elem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest\n\t\t\t\t\t// unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it.\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable, null );\n\t\t};\n\t});\n});\n\n\n// The number of elements contained in the matched element set\njQuery.fn.size = function() {\n\treturn this.length;\n};\n\njQuery.fn.andSelf = jQuery.fn.addBack;\n\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t});\n}\n\n\n\n\nvar\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in\n// AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === strundefined ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n\n}));\n"
  },
  {
    "path": "docs/images/05_correlation/lib/jquery-3.5.1/jquery-AUTHORS.txt",
    "content": "Authors ordered by first contribution.\n\nJohn Resig <jeresig@gmail.com>\nGilles van den Hoven <gilles0181@gmail.com>\nMichael Geary <mike@geary.com>\nStefan Petre <stefan.petre@gmail.com>\nYehuda Katz <wycats@gmail.com>\nCorey Jewett <cj@syntheticplayground.com>\nKlaus Hartl <klaus.hartl@gmail.com>\nFranck Marcia <franck.marcia@gmail.com>\nJörn Zaefferer <joern.zaefferer@gmail.com>\nPaul Bakaus <paul.bakaus@gmail.com>\nBrandon Aaron <brandon.aaron@gmail.com>\nMike Alsup <malsup@gmail.com>\nDave Methvin <dave.methvin@gmail.com>\nEd Engelhardt <edengelhardt@gmail.com>\nSean Catchpole <littlecooldude@gmail.com>\nPaul Mclanahan <pmclanahan@gmail.com>\nDavid Serduke <davidserduke@gmail.com>\nRichard D. Worth <rdworth@gmail.com>\nScott González <scott.gonzalez@gmail.com>\nAriel Flesler <aflesler@gmail.com>\nCheah Chu Yeow <chuyeow@gmail.com>\nAndrew Chalkley <andrew@chalkley.org>\nFabio Buffoni <fabio.buffoni@bitmaster.it>\nStefan Bauckmeier  <stefan@bauckmeier.de>\nJon Evans <jon@springyweb.com>\nTJ Holowaychuk <tj@vision-media.ca>\nRiccardo De Agostini <rdeago@gmail.com>\nMichael Bensoussan <mickey@seesmic.com>\nLouis-Rémi Babé <lrbabe@gmail.com>\nRobert Katić <robert.katic@gmail.com>\nDamian Janowski <damian.janowski@gmail.com>\nAnton Kovalyov <anton@kovalyov.net>\nDušan B. Jovanovic <dbjdbj@gmail.com>\nEarle Castledine <mrspeaker@gmail.com>\nRich Dougherty <rich@rd.gen.nz>\nKim Dalsgaard <kim@kimdalsgaard.com>\nAndrea Giammarchi <andrea.giammarchi@gmail.com>\nFabian Jakobs <fabian.jakobs@web.de>\nMark Gibson <jollytoad@gmail.com>\nKarl Swedberg <kswedberg@gmail.com>\nJustin Meyer <justinbmeyer@gmail.com>\nBen Alman <cowboy@rj3.net>\nJames Padolsey <cla@padolsey.net>\nDavid Petersen <public@petersendidit.com>\nBatiste Bieler <batiste.bieler@gmail.com>\nJake Archibald <jake.archibald@bbc.co.uk>\nAlexander Farkas <info@corrupt-system.de>\nFilipe Fortes <filipe@fortes.com>\nRick Waldron <waldron.rick@gmail.com>\nNeeraj Singh <neerajdotname@gmail.com>\nPaul Irish <paul.irish@gmail.com>\nIraê Carvalho <irae@irae.pro.br>\nMatt Curry <matt@pseudocoder.com>\nMichael Monteleone <michael@michaelmonteleone.net>\nNoah Sloan <noah.sloan@gmail.com>\nTom Viner <github@viner.tv>\nJ. Ryan Stinnett <jryans@gmail.com>\nDouglas Neiner <doug@dougneiner.com>\nAdam J. Sontag <ajpiano@ajpiano.com>\nHeungsub Lee <h@subl.ee>\nDave Reed <dareed@microsoft.com>\nCarl Fürstenberg <azatoth@gmail.com>\nJacob Wright <jacwright@gmail.com>\nRalph Whitbeck <ralph.whitbeck@gmail.com>\nunknown <Igen005@.upcorp.ad.uprr.com>\ntemp01 <temp01irc@gmail.com>\nColin Snover <github.com@zetafleet.com>\nJared Grippe <jared@deadlyicon.com>\nRyan W Tenney <ryan@10e.us>\nAlex Sexton <AlexSexton@gmail.com>\nPinhook <contact@pinhooklabs.com>\nRon Otten <r.j.g.otten@gmail.com>\nJephte Clain <Jephte.Clain@univ-reunion.fr>\nAnton Matzneller <obhvsbypqghgc@gmail.com>\nDan Heberden <danheberden@gmail.com>\nHenri Wiechers <hwiechers@gmail.com>\nRussell Holbrook <russell.holbrook@patch.com>\nJulian Aubourg <aubourg.julian@gmail.com>\nGianni Alessandro Chiappetta <gianni@runlevel6.org>\nScott Jehl <scottjehl@gmail.com>\nJames Burke <jrburke@gmail.com>\nJonas Pfenniger <jonas@pfenniger.name>\nXavi Ramirez <xavi.rmz@gmail.com>\nSylvester Keil <sylvester@keil.or.at>\nBrandon Sterne <bsterne@mozilla.com>\nMathias Bynens <mathias@qiwi.be>\nLee Carpenter <elcarpie@gmail.com>\nTimmy Willison <4timmywil@gmail.com>\nCorey Frang <gnarf37@gmail.com>\nDigitalxero <digitalxero>\nDavid Murdoch <david@davidmurdoch.com>\nJosh Varner <josh.varner@gmail.com>\nCharles McNulty <cmcnulty@kznf.com>\nJordan Boesch <jboesch26@gmail.com>\nJess Thrysoee <jess@thrysoee.dk>\nMichael Murray <m@murz.net>\nAlexis Abril <me@alexisabril.com>\nRob Morgan <robbym@gmail.com>\nJohn Firebaugh <john_firebaugh@bigfix.com>\nSam Bisbee <sam@sbisbee.com>\nGilmore Davidson <gilmoreorless@gmail.com>\nBrian Brennan <me@brianlovesthings.com>\nXavier Montillet <xavierm02.net@gmail.com>\nDaniel Pihlstrom <sciolist.se@gmail.com>\nSahab Yazdani <sahab.yazdani+github@gmail.com>\navaly <github-com@agachi.name>\nScott Hughes <hi@scott-hughes.me>\nMike Sherov <mike.sherov@gmail.com>\nGreg Hazel <ghazel@gmail.com>\nSchalk Neethling <schalk@ossreleasefeed.com>\nDenis Knauf <Denis.Knauf@gmail.com>\nTimo Tijhof <krinklemail@gmail.com>\nSteen Nielsen <swinedk@gmail.com>\nAnton Ryzhov <anton@ryzhov.me>\nShi Chuan <shichuanr@gmail.com>\nMatt Mueller <mattmuelle@gmail.com>\nBerker Peksag <berker.peksag@gmail.com>\nToby Brain <tobyb@freshview.com>\nJustin <drakefjustin@gmail.com>\nDaniel Herman <daniel.c.herman@gmail.com>\nOleg Gaidarenko <markelog@gmail.com>\nRock Hymas <rock@fogcreek.com>\nRichard Gibson <richard.gibson@gmail.com>\nRafaël Blais Masson <rafbmasson@gmail.com>\ncmc3cn <59194618@qq.com>\nJoe Presbrey <presbrey@gmail.com>\nSindre Sorhus <sindresorhus@gmail.com>\nArne de Bree <arne@bukkie.nl>\nVladislav Zarakovsky <vlad.zar@gmail.com>\nAndrew E Monat <amonat@gmail.com>\nOskari <admin@o-programs.com>\nJoao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>\ntsinha <tsinha@Anthonys-MacBook-Pro.local>\nDominik D. Geyer <dominik.geyer@gmail.com>\nMatt Farmer <matt@frmr.me>\nTrey Hunner <treyhunner@gmail.com>\nJason Moon <jmoon@socialcast.com>\nJeffery To <jeffery.to@gmail.com>\nKris Borchers <kris.borchers@gmail.com>\nVladimir Zhuravlev <private.face@gmail.com>\nJacob Thornton <jacobthornton@gmail.com>\nChad Killingsworth <chadkillingsworth@missouristate.edu>\nVitya Muhachev <vic99999@yandex.ru>\nNowres Rafid <nowres.rafed@gmail.com>\nDavid Benjamin <davidben@mit.edu>\nAlan Plum <github@ap.apsq.de>\nUri Gilad <antishok@gmail.com>\nChris Faulkner <thefaulkner@gmail.com>\nMarcel Greter <marcel.greter@ocbnet.ch>\nElijah Manor <elijah.manor@gmail.com>\nDaniel Chatfield <chatfielddaniel@gmail.com>\nDaniel Gálvez <dgalvez@editablething.com>\nNikita Govorov <nikita.govorov@gmail.com>\nWesley Walser <waw325@gmail.com>\nMike Pennisi <mike@mikepennisi.com>\nMatthias Jäggli <matthias.jaeggli@gmail.com>\nDevin Cooper <cooper.semantics@gmail.com>\nMarkus Staab <markus.staab@redaxo.de>\nDave Riddle <david@joyvuu.com>\nCallum Macrae <callum@lynxphp.com>\nJonathan Sampson <jjdsampson@gmail.com>\nBenjamin Truyman <bentruyman@gmail.com>\nJay Merrifield <fracmak@gmail.com>\nJames Huston <james@jameshuston.net>\nSai Lung Wong <sai.wong@huffingtonpost.com>\nErick Ruiz de Chávez <erickrdch@gmail.com>\nDavid Bonner <dbonner@cogolabs.com>\nAllen J Schmidt Jr <cobrasoft@gmail.com>\nAkintayo Akinwunmi <aakinwunmi@judge.com>\nMORGAN <morgan@morgangraphics.com>\nIsmail Khair <ismail.khair@gmail.com>\nCarl Danley <carldanley@gmail.com>\nMike Petrovich <michael.c.petrovich@gmail.com>\nGreg Lavallee <greglavallee@wapolabs.com>\nTom H Fuertes <TomFuertes@gmail.com>\nRoland Eckl <eckl.roland@googlemail.com>\nYiming He <yiminghe@gmail.com>\nDavid Fox <dfoxinator@gmail.com>\nBennett Sorbo <bsorbo@gmail.com>\nPaul Ramos <paul.b.ramos@gmail.com>\nRod Vagg <rod@vagg.org>\nSebastian Burkhard <sebi.burkhard@gmail.com>\nZachary Adam Kaplan <razic@viralkitty.com>\nAdam Coulombe <me@adam.co>\nnanto_vi <nanto@moon.email.ne.jp>\nnanto <nanto@moon.email.ne.jp>\nDanil Somsikov <danilasomsikov@gmail.com>\nRyunosuke SATO <tricknotes.rs@gmail.com>\nDiego Tres <diegotres@gmail.com>\nJean Boussier <jean.boussier@gmail.com>\nAndrew Plummer <plummer.andrew@gmail.com>\nMark Raddatz <mraddatz@gmail.com>\nPascal Borreli <pascal@borreli.com>\nIsaac Z. Schlueter <i@izs.me>\nKarl Sieburg <ksieburg@yahoo.com>\nNguyen Phuc Lam <ruado1987@gmail.com>\nDmitry Gusev <dmitry.gusev@gmail.com>\nSteven Benner <admin@stevenbenner.com>\nLi Xudong <istonelee@gmail.com>\nMichał Gołębiowski-Owczarek <m.goleb@gmail.com>\nRenato Oliveira dos Santos <ros3@cin.ufpe.br>\nFrederic Junod <frederic.junod@camptocamp.com>\nTom H Fuertes <tomfuertes@gmail.com>\nMitch Foley <mitch@thefoley.net>\nros3cin <ros3@cin.ufpe.br>\nKyle Robinson Young <kyle@dontkry.com>\nJohn Paul <john@johnkpaul.com>\nJason Bedard <jason+jquery@jbedard.ca>\nChris Talkington <chris@talkingtontech.com>\nEddie Monge <eddie@eddiemonge.com>\nTerry Jones <terry@jon.es>\nJason Merino <jasonmerino@gmail.com>\nDan Burzo <danburzo@gmail.com>\nJeremy Dunck <jdunck@gmail.com>\nChris Price <price.c@gmail.com>\nGuy Bedford <guybedford@gmail.com>\nnjhamann <njhamann@gmail.com>\nGoare Mao <mygoare@gmail.com>\nAmey Sakhadeo <me@ameyms.com>\nMike Sidorov <mikes.ekb@gmail.com>\nAnthony Ryan <anthonyryan1@gmail.com>\nLihan Li <frankieteardrop@gmail.com>\nGeorge Kats <katsgeorgeek@gmail.com>\nDongseok Paeng <dongseok83.paeng@lge.com>\nRonny Springer <springer.ronny@gmail.com>\nIlya Kantor <iliakan@gmail.com>\nMarian Sollmann <marian.sollmann@cargomedia.ch>\nChris Antaki <ChrisAntaki@gmail.com>\nDavid Hong <d.hong@me.com>\nJakob Stoeck <jakob@pokermania.de>\nChristopher Jones <chris@cjqed.com>\nForbes Lindesay <forbes@lindesay.co.uk>\nS. Andrew Sheppard <andrew@wq.io>\nLeonardo Balter <leonardo.balter@gmail.com>\nRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>\nDaniel Husar <dano.husar@gmail.com>\nPhilip Jägenstedt <philip@foolip.org>\nJohn Hoven <hovenj@gmail.com>\nRoman Reiß <me@silverwind.io>\nBenjy Cui <benjytrys@gmail.com>\nChristian Kosmowski <ksmwsk@gmail.com>\nDavid Corbacho <davidcorbacho@gmail.com>\nLiang Peng <poppinlp@gmail.com>\nTJ VanToll <tj.vantoll@gmail.com>\nAurelio De Rosa <aurelioderosa@gmail.com>\nSenya Pugach <upisfree@outlook.com>\nDan Hart <danhart@notonthehighstreet.com>\nNazar Mokrynskyi <nazar@mokrynskyi.com>\nBenjamin Tan <demoneaux@gmail.com>\nAmit Merchant <bullredeyes@gmail.com>\nJason Bedard <jason+github@jbedard.ca>\nVeaceslav Grimalschi <grimalschi@yandex.ru>\nRichard McDaniel <rm0026@uah.edu>\nArthur Verschaeve <contact@arthurverschaeve.be>\nShivaji Varma <contact@shivajivarma.com>\nBen Toews <mastahyeti@gmail.com>\nBin Xin <rhyzix@gmail.com>\nNeftaly Hernandez <neftaly.hernandez@gmail.com>\nT.J. Crowder <tj.crowder@farsightsoftware.com>\nNicolas HENRY <icewil@gmail.com>\nFrederic Hemberger <mail@frederic-hemberger.de>\nVictor Homyakov <vkhomyackov@gmail.com>\nAditya Raghavan <araghavan3@gmail.com>\nAnne-Gaelle Colom <coloma@westminster.ac.uk>\nLeonardo Braga <leonardo.braga@gmail.com>\nGeorge Mauer <gmauer@gmail.com>\nStephen Edgar <stephen@netweb.com.au>\nThomas Tortorini <thomastortorini@gmail.com>\nJörn Wagner <joern.wagner@explicatis.com>\nJon Hester <jon.d.hester@gmail.com>\nColin Frick <colin@bash.li>\nWinston Howes <winstonhowes@gmail.com>\nAlexander O'Mara <me@alexomara.com>\nChris Rebert <github@rebertia.com>\nBastian Buchholz <buchholz.bastian@googlemail.com>\nMu Haibao <mhbseal@163.com>\nCalvin Metcalf <calvin.metcalf@gmail.com>\nArthur Stolyar <nekr.fabula@gmail.com>\nGabriel Schulhof <gabriel.schulhof@intel.com>\nGilad Peleg <giladp007@gmail.com>\nJulian Alexander Murillo <julian.alexander.murillo@gmail.com>\nKevin Kirsche <Kev.Kirsche+GitHub@gmail.com>\nMartin Naumann <martin@geekonaut.de>\nYongwoo Jeon <yongwoo.jeon@navercorp.com>\nJohn-David Dalton <john.david.dalton@gmail.com>\nMarek Lewandowski <m.lewandowski@cksource.com>\nBruno Pérel <brunoperel@gmail.com>\nDaniel Nill <daniellnill@gmail.com>\nReed Loden <reed@reedloden.com>\nSean Henderson <seanh.za@gmail.com>\nGary Ye <garysye@gmail.com>\nRichard Kraaijenhagen <stdin+git@riichard.com>\nConnor Atherton <c.liam.atherton@gmail.com>\nChristian Grete <webmaster@christiangrete.com>\nTom von Clef <thomas.vonclef@gmail.com>\nLiza Ramo <liza.h.ramo@gmail.com>\nJoelle Fleurantin <joasqueeniebee@gmail.com>\nSteve Mao <maochenyan@gmail.com>\nJon Dufresne <jon.dufresne@gmail.com>\nJae Sung Park <alberto.park@gmail.com>\nJosh Soref <apache@soref.com>\nSaptak Sengupta <saptak013@gmail.com>\nHenry Wong <henryw4k@gmail.com>\nJun Sun <klsforever@gmail.com>\nMartijn W. van der Lee <martijn@vanderlee.com>\nDevin Wilson <dwilson6.github@gmail.com>\nDamian Senn <jquery@topaxi.codes>\nZack Hall <zackhall@outlook.com>\nVitaliy Terziev <vitaliyterziev@gmail.com>\nTodor Prikumov <tono_pr@abv.bg>\nBernhard M. Wiedemann <jquerybmw@lsmod.de>\nJha Naman <createnaman@gmail.com>\nAlexander Lisianoi <all3fox@gmail.com>\nWilliam Robinet <william.robinet@conostix.com>\nJoe Trumbull <trumbull.j@gmail.com>\nAlexander K <xpyro@ya.ru>\nRalin Chimev <ralin.chimev@gmail.com>\nFelipe Sateler <fsateler@gmail.com>\nChristophe Tafani-Dereeper <christophetd@hotmail.fr>\nManoj Kumar <nithmanoj@gmail.com>\nDavid Broder-Rodgers <broder93@gmail.com>\nAlex Louden <alex@louden.com>\nAlex Padilla <alexonezero@outlook.com>\nkaran-96 <karanbatra96@gmail.com>\n南漂一卒 <shiy007@qq.com>\nErik Lax <erik@datahack.se>\nBoom Lee <teabyii@gmail.com>\nAndreas Solleder <asol@num42.de>\nPierre Spring <pierre@nelm.io>\nShashanka Nataraj <shashankan.10@gmail.com>\nCDAGaming <cstack2011@yahoo.com>\nMatan Kotler-Berkowitz <205matan@gmail.com>\nJordan Beland <jordan.beland@gmail.com>\nHenry Zhu <hi@henryzoo.com>\nNilton Cesar <niltoncms@gmail.com>\nbasil.belokon <basil.belokon@gmail.com>\nAndrey Meshkov <ay.meshkov@gmail.com>\ntmybr11 <tomas.perone@gmail.com>\nLuis Emilio Velasco Sanchez <emibloque@gmail.com>\nEd S <ejsanders@gmail.com>\nBert Zhang <enbo@users.noreply.github.com>\nSébastien Règne <regseb@users.noreply.github.com>\nwartmanm <3869625+wartmanm@users.noreply.github.com>\nSiddharth Dungarwal <sd5869@gmail.com>\nabnud1 <ahmad13932013@hotmail.com>\nAndrei Fangli <andrei_fangli@outlook.com>\nMarja Hölttä <marja.holtta@gmail.com>\nbuddh4 <mail@jharrer.de>\nHoang <dangkyokhoang@gmail.com>\nWonseop Kim <wonseop.kim@samsung.com>\nPat O'Callaghan <patocallaghan@gmail.com>\nJuanMa Ruiz <ruizjuanma@gmail.com>\nAhmed.S.ElAfifi <ahmed.s.elafifi@gmail.com>\nSean Robinson <sean.robinson@scottsdalecc.edu>\nChristian Oliff <christianoliff@pm.me>\n"
  },
  {
    "path": "docs/images/05_correlation/lib/jquery-3.5.1/jquery.js",
    "content": "/*!\n * jQuery JavaScript Library v3.5.1\n * https://jquery.com/\n *\n * Includes Sizzle.js\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://jquery.org/license\n *\n * Date: 2020-05-04T22:49Z\n */\n( function( global, factory ) {\n\n\t\"use strict\";\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\n\t\t// For CommonJS and CommonJS-like environments where a proper `window`\n\t\t// is present, execute the factory and get jQuery.\n\t\t// For environments that do not have a `window` with a `document`\n\t\t// (such as Node.js), expose a factory as module.exports.\n\t\t// This accentuates the need for the creation of a real `window`.\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info.\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n} )( typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1\n// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode\n// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common\n// enough that all such attempts are guarded in a try block.\n\"use strict\";\n\nvar arr = [];\n\nvar getProto = Object.getPrototypeOf;\n\nvar slice = arr.slice;\n\nvar flat = arr.flat ? function( array ) {\n\treturn arr.flat.call( array );\n} : function( array ) {\n\treturn arr.concat.apply( [], array );\n};\n\n\nvar push = arr.push;\n\nvar indexOf = arr.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar fnToString = hasOwn.toString;\n\nvar ObjectFunctionString = fnToString.call( Object );\n\nvar support = {};\n\nvar isFunction = function isFunction( obj ) {\n\n      // Support: Chrome <=57, Firefox <=52\n      // In some browsers, typeof returns \"function\" for HTML <object> elements\n      // (i.e., `typeof document.createElement( \"object\" ) === \"function\"`).\n      // We don't want to classify *any* DOM node as a function.\n      return typeof obj === \"function\" && typeof obj.nodeType !== \"number\";\n  };\n\n\nvar isWindow = function isWindow( obj ) {\n\t\treturn obj != null && obj === obj.window;\n\t};\n\n\nvar document = window.document;\n\n\n\n\tvar preservedScriptAttributes = {\n\t\ttype: true,\n\t\tsrc: true,\n\t\tnonce: true,\n\t\tnoModule: true\n\t};\n\n\tfunction DOMEval( code, node, doc ) {\n\t\tdoc = doc || document;\n\n\t\tvar i, val,\n\t\t\tscript = doc.createElement( \"script\" );\n\n\t\tscript.text = code;\n\t\tif ( node ) {\n\t\t\tfor ( i in preservedScriptAttributes ) {\n\n\t\t\t\t// Support: Firefox 64+, Edge 18+\n\t\t\t\t// Some browsers don't support the \"nonce\" property on scripts.\n\t\t\t\t// On the other hand, just using `getAttribute` is not enough as\n\t\t\t\t// the `nonce` attribute is reset to an empty string whenever it\n\t\t\t\t// becomes browsing-context connected.\n\t\t\t\t// See https://github.com/whatwg/html/issues/2369\n\t\t\t\t// See https://html.spec.whatwg.org/#nonce-attributes\n\t\t\t\t// The `node.getAttribute` check was added for the sake of\n\t\t\t\t// `jQuery.globalEval` so that it can fake a nonce-containing node\n\t\t\t\t// via an object.\n\t\t\t\tval = node[ i ] || node.getAttribute && node.getAttribute( i );\n\t\t\t\tif ( val ) {\n\t\t\t\t\tscript.setAttribute( i, val );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tdoc.head.appendChild( script ).parentNode.removeChild( script );\n\t}\n\n\nfunction toType( obj ) {\n\tif ( obj == null ) {\n\t\treturn obj + \"\";\n\t}\n\n\t// Support: Android <=2.3 only (functionish RegExp)\n\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\tclass2type[ toString.call( obj ) ] || \"object\" :\n\t\ttypeof obj;\n}\n/* global Symbol */\n// Defining this global in .eslintrc.json would create a danger of using the global\n// unguarded in another place, it seems safer to define global only for this module\n\n\n\nvar\n\tversion = \"3.5.1\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t};\n\njQuery.fn = jQuery.prototype = {\n\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\n\t\t// Return all the elements in a clean array\n\t\tif ( num == null ) {\n\t\t\treturn slice.call( this );\n\t\t}\n\n\t\t// Return just the one element from the set\n\t\treturn num < 0 ? this[ num + this.length ] : this[ num ];\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\teach: function( callback ) {\n\t\treturn jQuery.each( this, callback );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map( this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t} ) );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teven: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn ( i + 1 ) % 2;\n\t\t} ) );\n\t},\n\n\todd: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn i % 2;\n\t\t} ) );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor();\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: arr.sort,\n\tsplice: arr.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[ 0 ] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// Skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !isFunction( target ) ) {\n\t\ttarget = {};\n\t}\n\n\t// Extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\n\t\t// Only deal with non-null/undefined values\n\t\tif ( ( options = arguments[ i ] ) != null ) {\n\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent Object.prototype pollution\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( name === \"__proto__\" || target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject( copy ) ||\n\t\t\t\t\t( copyIsArray = Array.isArray( copy ) ) ) ) {\n\t\t\t\t\tsrc = target[ name ];\n\n\t\t\t\t\t// Ensure proper type for the source value\n\t\t\t\t\tif ( copyIsArray && !Array.isArray( src ) ) {\n\t\t\t\t\t\tclone = [];\n\t\t\t\t\t} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {\n\t\t\t\t\t\tclone = {};\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src;\n\t\t\t\t\t}\n\t\t\t\t\tcopyIsArray = false;\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend( {\n\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\tisPlainObject: function( obj ) {\n\t\tvar proto, Ctor;\n\n\t\t// Detect obvious negatives\n\t\t// Use toString instead of jQuery.type to catch host objects\n\t\tif ( !obj || toString.call( obj ) !== \"[object Object]\" ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tproto = getProto( obj );\n\n\t\t// Objects with no prototype (e.g., `Object.create( null )`) are plain\n\t\tif ( !proto ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Objects with prototype are plain iff they were constructed by a global Object function\n\t\tCtor = hasOwn.call( proto, \"constructor\" ) && proto.constructor;\n\t\treturn typeof Ctor === \"function\" && fnToString.call( Ctor ) === ObjectFunctionString;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\t// Evaluates a script in a provided context; falls back to the global one\n\t// if not specified.\n\tglobalEval: function( code, options, doc ) {\n\t\tDOMEval( code, { nonce: options && options.nonce }, doc );\n\t},\n\n\teach: function( obj, callback ) {\n\t\tvar length, i = 0;\n\n\t\tif ( isArrayLike( obj ) ) {\n\t\t\tlength = obj.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tfor ( i in obj ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArrayLike( Object( arr ) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\treturn arr == null ? -1 : indexOf.call( arr, elem, i );\n\t},\n\n\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t// push.apply(_, arraylike) throws on ancient WebKit\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\tfor ( ; j < len; j++ ) {\n\t\t\tfirst[ i++ ] = second[ j ];\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar length, value,\n\t\t\ti = 0,\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArrayLike( elems ) ) {\n\t\t\tlength = elems.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn flat( ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n} );\n\nif ( typeof Symbol === \"function\" ) {\n\tjQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];\n}\n\n// Populate the class2type map\njQuery.each( \"Boolean Number String Function Array Date RegExp Object Error Symbol\".split( \" \" ),\nfunction( _i, name ) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n} );\n\nfunction isArrayLike( obj ) {\n\n\t// Support: real iOS 8.2 only (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = !!obj && \"length\" in obj && obj.length,\n\t\ttype = toType( obj );\n\n\tif ( isFunction( obj ) || isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.3.5\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://js.foundation/\n *\n * Date: 2020-03-14\n */\n( function( window ) {\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tnonnativeSelectorCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// Instance methods\n\thasOwn = ( {} ).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpushNative = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\n\t// Use a stripped-down indexOf as it's faster than native\n\t// https://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[ i ] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|\" +\n\t\t\"ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\n\t// https://www.w3.org/TR/css-syntax-3/#ident-token-diagram\n\tidentifier = \"(?:\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace +\n\t\t\"?|\\\\\\\\[^\\\\r\\\\n\\\\f]|[\\\\w-]|[^\\0-\\\\x7f])+\",\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + identifier + \")(?:\" + whitespace +\n\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\n\t\t// \"Attribute values must be CSS identifiers [capture 5]\n\t\t// or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" +\n\t\twhitespace + \"*\\\\]\",\n\n\tpseudos = \":(\" + identifier + \")(?:\\\\((\" +\n\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" +\n\t\twhitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace +\n\t\t\"*\" ),\n\trdescend = new RegExp( whitespace + \"|>\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + identifier + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + identifier + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + identifier + \"|[*])\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" +\n\t\t\twhitespace + \"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" +\n\t\t\twhitespace + \"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace +\n\t\t\t\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" + whitespace +\n\t\t\t\"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trhtml = /HTML$/i,\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\n\t// CSS escapes\n\t// http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace + \"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\", \"g\" ),\n\tfunescape = function( escape, nonHex ) {\n\t\tvar high = \"0x\" + escape.slice( 1 ) - 0x10000;\n\n\t\treturn nonHex ?\n\n\t\t\t// Strip the backslash prefix from a non-hex escape sequence\n\t\t\tnonHex :\n\n\t\t\t// Replace a hexadecimal escape sequence with the encoded Unicode code point\n\t\t\t// Support: IE <=11+\n\t\t\t// For values outside the Basic Multilingual Plane (BMP), manually construct a\n\t\t\t// surrogate pair\n\t\t\thigh < 0 ?\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// CSS string/identifier serialization\n\t// https://drafts.csswg.org/cssom/#common-serializing-idioms\n\trcssescape = /([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,\n\tfcssescape = function( ch, asCodePoint ) {\n\t\tif ( asCodePoint ) {\n\n\t\t\t// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER\n\t\t\tif ( ch === \"\\0\" ) {\n\t\t\t\treturn \"\\uFFFD\";\n\t\t\t}\n\n\t\t\t// Control characters and (dependent upon position) numbers get escaped as code points\n\t\t\treturn ch.slice( 0, -1 ) + \"\\\\\" +\n\t\t\t\tch.charCodeAt( ch.length - 1 ).toString( 16 ) + \" \";\n\t\t}\n\n\t\t// Other potentially-special ASCII characters get backslash-escaped\n\t\treturn \"\\\\\" + ch;\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t},\n\n\tinDisabledFieldset = addCombinator(\n\t\tfunction( elem ) {\n\t\t\treturn elem.disabled === true && elem.nodeName.toLowerCase() === \"fieldset\";\n\t\t},\n\t\t{ dir: \"parentNode\", next: \"legend\" }\n\t);\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t( arr = slice.call( preferredDoc.childNodes ) ),\n\t\tpreferredDoc.childNodes\n\t);\n\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\t// eslint-disable-next-line no-unused-expressions\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpushNative.apply( target, slice.call( els ) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( ( target[ j++ ] = els[ i++ ] ) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar m, i, elem, nid, match, groups, newSelector,\n\t\tnewContext = context && context.ownerDocument,\n\n\t\t// nodeType defaults to 9, since context defaults to document\n\t\tnodeType = context ? context.nodeType : 9;\n\n\tresults = results || [];\n\n\t// Return early from calls with invalid selector or context\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\t// Try to shortcut find operations (as opposed to filters) in HTML documents\n\tif ( !seed ) {\n\t\tsetDocument( context );\n\t\tcontext = context || document;\n\n\t\tif ( documentIsHTML ) {\n\n\t\t\t// If the selector is sufficiently simple, try using a \"get*By*\" DOM method\n\t\t\t// (excepting DocumentFragment context, where the methods don't exist)\n\t\t\tif ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) {\n\n\t\t\t\t// ID selector\n\t\t\t\tif ( ( m = match[ 1 ] ) ) {\n\n\t\t\t\t\t// Document context\n\t\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\t\tif ( ( elem = context.getElementById( m ) ) ) {\n\n\t\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// Element context\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\tif ( newContext && ( elem = newContext.getElementById( m ) ) &&\n\t\t\t\t\t\t\tcontains( context, elem ) &&\n\t\t\t\t\t\t\telem.id === m ) {\n\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t// Type selector\n\t\t\t\t} else if ( match[ 2 ] ) {\n\t\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\t\treturn results;\n\n\t\t\t\t// Class selector\n\t\t\t\t} else if ( ( m = match[ 3 ] ) && support.getElementsByClassName &&\n\t\t\t\t\tcontext.getElementsByClassName ) {\n\n\t\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\t\treturn results;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Take advantage of querySelectorAll\n\t\t\tif ( support.qsa &&\n\t\t\t\t!nonnativeSelectorCache[ selector + \" \" ] &&\n\t\t\t\t( !rbuggyQSA || !rbuggyQSA.test( selector ) ) &&\n\n\t\t\t\t// Support: IE 8 only\n\t\t\t\t// Exclude object elements\n\t\t\t\t( nodeType !== 1 || context.nodeName.toLowerCase() !== \"object\" ) ) {\n\n\t\t\t\tnewSelector = selector;\n\t\t\t\tnewContext = context;\n\n\t\t\t\t// qSA considers elements outside a scoping root when evaluating child or\n\t\t\t\t// descendant combinators, which is not what we want.\n\t\t\t\t// In such cases, we work around the behavior by prefixing every selector in the\n\t\t\t\t// list with an ID selector referencing the scope context.\n\t\t\t\t// The technique has to be used as well when a leading combinator is used\n\t\t\t\t// as such selectors are not recognized by querySelectorAll.\n\t\t\t\t// Thanks to Andrew Dupont for this technique.\n\t\t\t\tif ( nodeType === 1 &&\n\t\t\t\t\t( rdescend.test( selector ) || rcombinators.test( selector ) ) ) {\n\n\t\t\t\t\t// Expand context for sibling selectors\n\t\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext;\n\n\t\t\t\t\t// We can use :scope instead of the ID hack if the browser\n\t\t\t\t\t// supports it & if we're not changing the context.\n\t\t\t\t\tif ( newContext !== context || !support.scope ) {\n\n\t\t\t\t\t\t// Capture the context ID, setting it first if necessary\n\t\t\t\t\t\tif ( ( nid = context.getAttribute( \"id\" ) ) ) {\n\t\t\t\t\t\t\tnid = nid.replace( rcssescape, fcssescape );\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tcontext.setAttribute( \"id\", ( nid = expando ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prefix every selector in the list\n\t\t\t\t\tgroups = tokenize( selector );\n\t\t\t\t\ti = groups.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tgroups[ i ] = ( nid ? \"#\" + nid : \":scope\" ) + \" \" +\n\t\t\t\t\t\t\ttoSelector( groups[ i ] );\n\t\t\t\t\t}\n\t\t\t\t\tnewSelector = groups.join( \",\" );\n\t\t\t\t}\n\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch ( qsaError ) {\n\t\t\t\t\tnonnativeSelectorCache( selector, true );\n\t\t\t\t} finally {\n\t\t\t\t\tif ( nid === expando ) {\n\t\t\t\t\t\tcontext.removeAttribute( \"id\" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {function(string, object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn ( cache[ key + \" \" ] = value );\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created element and returns a boolean result\n */\nfunction assert( fn ) {\n\tvar el = document.createElement( \"fieldset\" );\n\n\ttry {\n\t\treturn !!fn( el );\n\t} catch ( e ) {\n\t\treturn false;\n\t} finally {\n\n\t\t// Remove from its parent by default\n\t\tif ( el.parentNode ) {\n\t\t\tel.parentNode.removeChild( el );\n\t\t}\n\n\t\t// release memory in IE\n\t\tel = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split( \"|\" ),\n\t\ti = arr.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[ i ] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\ta.sourceIndex - b.sourceIndex;\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( ( cur = cur.nextSibling ) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn ( name === \"input\" || name === \"button\" ) && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for :enabled/:disabled\n * @param {Boolean} disabled true for :disabled; false for :enabled\n */\nfunction createDisabledPseudo( disabled ) {\n\n\t// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable\n\treturn function( elem ) {\n\n\t\t// Only certain elements can match :enabled or :disabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled\n\t\tif ( \"form\" in elem ) {\n\n\t\t\t// Check for inherited disabledness on relevant non-disabled elements:\n\t\t\t// * listed form-associated elements in a disabled fieldset\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#category-listed\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled\n\t\t\t// * option elements in a disabled optgroup\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled\n\t\t\t// All such elements have a \"form\" property.\n\t\t\tif ( elem.parentNode && elem.disabled === false ) {\n\n\t\t\t\t// Option elements defer to a parent optgroup if present\n\t\t\t\tif ( \"label\" in elem ) {\n\t\t\t\t\tif ( \"label\" in elem.parentNode ) {\n\t\t\t\t\t\treturn elem.parentNode.disabled === disabled;\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn elem.disabled === disabled;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Support: IE 6 - 11\n\t\t\t\t// Use the isDisabled shortcut property to check for disabled fieldset ancestors\n\t\t\t\treturn elem.isDisabled === disabled ||\n\n\t\t\t\t\t// Where there is no isDisabled, check manually\n\t\t\t\t\t/* jshint -W018 */\n\t\t\t\t\telem.isDisabled !== !disabled &&\n\t\t\t\t\tinDisabledFieldset( elem ) === disabled;\n\t\t\t}\n\n\t\t\treturn elem.disabled === disabled;\n\n\t\t// Try to winnow out elements that can't be disabled before trusting the disabled property.\n\t\t// Some victims get caught in our net (label, legend, menu, track), but it shouldn't\n\t\t// even exist on them, let alone have a boolean value.\n\t\t} else if ( \"label\" in elem ) {\n\t\t\treturn elem.disabled === disabled;\n\t\t}\n\n\t\t// Remaining elements are neither :enabled nor :disabled\n\t\treturn false;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction( function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction( function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ ( j = matchIndexes[ i ] ) ] ) {\n\t\t\t\t\tseed[ j ] = !( matches[ j ] = seed[ j ] );\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t} );\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\tvar namespace = elem.namespaceURI,\n\t\tdocElem = ( elem.ownerDocument || elem ).documentElement;\n\n\t// Support: IE <=8\n\t// Assume HTML when documentElement doesn't yet exist, such as inside loading iframes\n\t// https://bugs.jquery.com/ticket/4833\n\treturn !rhtml.test( namespace || docElem && docElem.nodeName || \"HTML\" );\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, subWindow,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// Return early if doc is invalid or already selected\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Update global variables\n\tdocument = doc;\n\tdocElem = document.documentElement;\n\tdocumentIsHTML = !isXML( document );\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t// Accessing iframe documents after unload throws \"permission denied\" errors (jQuery #13936)\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( preferredDoc != document &&\n\t\t( subWindow = document.defaultView ) && subWindow.top !== subWindow ) {\n\n\t\t// Support: IE 11, Edge\n\t\tif ( subWindow.addEventListener ) {\n\t\t\tsubWindow.addEventListener( \"unload\", unloadHandler, false );\n\n\t\t// Support: IE 9 - 10 only\n\t\t} else if ( subWindow.attachEvent ) {\n\t\t\tsubWindow.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t// Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only,\n\t// Safari 4 - 5 only, Opera <=11.6 - 12.x only\n\t// IE/Edge & older browsers don't support the :scope pseudo-class.\n\t// Support: Safari 6.0 only\n\t// Safari 6.0 supports :scope but it's an alias of :root there.\n\tsupport.scope = assert( function( el ) {\n\t\tdocElem.appendChild( el ).appendChild( document.createElement( \"div\" ) );\n\t\treturn typeof el.querySelectorAll !== \"undefined\" &&\n\t\t\t!el.querySelectorAll( \":scope fieldset div\" ).length;\n\t} );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert( function( el ) {\n\t\tel.className = \"i\";\n\t\treturn !el.getAttribute( \"className\" );\n\t} );\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert( function( el ) {\n\t\tel.appendChild( document.createComment( \"\" ) );\n\t\treturn !el.getElementsByTagName( \"*\" ).length;\n\t} );\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( document.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programmatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert( function( el ) {\n\t\tdocElem.appendChild( el ).id = expando;\n\t\treturn !document.getElementsByName || !document.getElementsByName( expando ).length;\n\t} );\n\n\t// ID filter and find\n\tif ( support.getById ) {\n\t\tExpr.filter[ \"ID\" ] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute( \"id\" ) === attrId;\n\t\t\t};\n\t\t};\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar elem = context.getElementById( id );\n\t\t\t\treturn elem ? [ elem ] : [];\n\t\t\t}\n\t\t};\n\t} else {\n\t\tExpr.filter[ \"ID\" ] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" &&\n\t\t\t\t\telem.getAttributeNode( \"id\" );\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\n\t\t// Support: IE 6 - 7 only\n\t\t// getElementById is not reliable as a find shortcut\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar node, i, elems,\n\t\t\t\t\telem = context.getElementById( id );\n\n\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t// Verify the id attribute\n\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t}\n\n\t\t\t\t\t// Fall back on getElementsByName\n\t\t\t\t\telems = context.getElementsByName( id );\n\t\t\t\t\ti = 0;\n\t\t\t\t\twhile ( ( elem = elems[ i++ ] ) ) {\n\t\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn [];\n\t\t\t}\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[ \"TAG\" ] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[ \"CLASS\" ] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See https://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) {\n\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert( function( el ) {\n\n\t\t\tvar input;\n\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// https://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( el ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\r\\\\' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( el.querySelectorAll( \"[msallowcapture^='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !el.querySelectorAll( \"[selected]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+\n\t\t\tif ( !el.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"~=\" );\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 15 - 18+\n\t\t\t// IE 11/Edge don't find elements on a `[name='']` query in some cases.\n\t\t\t// Adding a temporary attribute to the document before the selection works\n\t\t\t// around the issue.\n\t\t\t// Interestingly, IE 10 & older don't seem to have the issue.\n\t\t\tinput = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"name\", \"\" );\n\t\t\tel.appendChild( input );\n\t\t\tif ( !el.querySelectorAll( \"[name='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*name\" + whitespace + \"*=\" +\n\t\t\t\t\twhitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !el.querySelectorAll( \":checked\" ).length ) {\n\t\t\t\trbuggyQSA.push( \":checked\" );\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibling-combinator selector` fails\n\t\t\tif ( !el.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push( \".#.+[+~]\" );\n\t\t\t}\n\n\t\t\t// Support: Firefox <=3.6 - 5 only\n\t\t\t// Old Firefox doesn't throw on a badly-escaped identifier.\n\t\t\tel.querySelectorAll( \"\\\\\\f\" );\n\t\t\trbuggyQSA.push( \"[\\\\r\\\\n\\\\f]\" );\n\t\t} );\n\n\t\tassert( function( el ) {\n\t\t\tel.innerHTML = \"<a href='' disabled='disabled'></a>\" +\n\t\t\t\t\"<select disabled='disabled'><option/></select>\";\n\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tel.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( el.querySelectorAll( \"[name=d]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( el.querySelectorAll( \":enabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: IE9-11+\n\t\t\t// IE's :disabled selector does not pick up the children of disabled fieldsets\n\t\t\tdocElem.appendChild( el ).disabled = true;\n\t\t\tif ( el.querySelectorAll( \":disabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: Opera 10 - 11 only\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tel.querySelectorAll( \"*,:x\" );\n\t\t\trbuggyQSA.push( \",.*:\" );\n\t\t} );\n\t}\n\n\tif ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector ) ) ) ) {\n\n\t\tassert( function( el ) {\n\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( el, \"*\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( el, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t} );\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( \"|\" ) );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( \"|\" ) );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully self-exclusive\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t) );\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( ( b = b.parentNode ) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t// two documents; shallow comparisons work.\n\t\t// eslint-disable-next-line eqeqeq\n\t\tcompare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( a == document || a.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, a ) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( b == document || b.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, b ) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\treturn a == document ? -1 :\n\t\t\t\tb == document ? 1 :\n\t\t\t\t/* eslint-enable eqeqeq */\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[ i ] === bp[ i ] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[ i ], bp[ i ] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\tap[ i ] == preferredDoc ? -1 :\n\t\t\tbp[ i ] == preferredDoc ? 1 :\n\t\t\t/* eslint-enable eqeqeq */\n\t\t\t0;\n\t};\n\n\treturn document;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\tsetDocument( elem );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t!nonnativeSelectorCache[ expr + \" \" ] &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\n\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t// fragment in IE 9\n\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\tnonnativeSelectorCache( expr, true );\n\t\t}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( context.ownerDocument || context ) != document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( elem.ownerDocument || elem ) != document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.escape = function( sel ) {\n\treturn ( sel + \"\" ).replace( rcssescape, fcssescape );\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( ( node = elem[ i++ ] ) ) {\n\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[ 1 ] = match[ 1 ].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[ 3 ] = ( match[ 3 ] || match[ 4 ] ||\n\t\t\t\tmatch[ 5 ] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[ 2 ] === \"~=\" ) {\n\t\t\t\tmatch[ 3 ] = \" \" + match[ 3 ] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[ 1 ] = match[ 1 ].toLowerCase();\n\n\t\t\tif ( match[ 1 ].slice( 0, 3 ) === \"nth\" ) {\n\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[ 3 ] ) {\n\t\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[ 4 ] = +( match[ 4 ] ?\n\t\t\t\t\tmatch[ 5 ] + ( match[ 6 ] || 1 ) :\n\t\t\t\t\t2 * ( match[ 3 ] === \"even\" || match[ 3 ] === \"odd\" ) );\n\t\t\t\tmatch[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === \"odd\" );\n\n\t\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[ 3 ] ) {\n\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[ 6 ] && match[ 2 ];\n\n\t\t\tif ( matchExpr[ \"CHILD\" ].test( match[ 0 ] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[ 3 ] ) {\n\t\t\t\tmatch[ 2 ] = match[ 4 ] || match[ 5 ] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t( excess = tokenize( unquoted, true ) ) &&\n\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t( excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length ) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[ 0 ] = match[ 0 ].slice( 0, excess );\n\t\t\t\tmatch[ 2 ] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() {\n\t\t\t\t\treturn true;\n\t\t\t\t} :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t( pattern = new RegExp( \"(^|\" + whitespace +\n\t\t\t\t\t\")\" + className + \"(\" + whitespace + \"|$)\" ) ) && classCache(\n\t\t\t\t\t\tclassName, function( elem ) {\n\t\t\t\t\t\t\treturn pattern.test(\n\t\t\t\t\t\t\t\ttypeof elem.className === \"string\" && elem.className ||\n\t\t\t\t\t\t\t\ttypeof elem.getAttribute !== \"undefined\" &&\n\t\t\t\t\t\t\t\t\telem.getAttribute( \"class\" ) ||\n\t\t\t\t\t\t\t\t\"\"\n\t\t\t\t\t\t\t);\n\t\t\t\t} );\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\t/* eslint-disable max-len */\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t\t/* eslint-enable max-len */\n\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, _argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tvar cache, uniqueCache, outerCache, node, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType,\n\t\t\t\t\t\tdiff = false;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( ( node = node[ dir ] ) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) {\n\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\n\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\tnode = parent;\n\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\tdiff = nodeIndex && cache[ 2 ];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t\tif ( useCache ) {\n\n\t\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\t\tdiff = nodeIndex;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// xml :nth-child(...)\n\t\t\t\t\t\t\t// or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t\tif ( diff === false ) {\n\n\t\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t\tif ( ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) &&\n\t\t\t\t\t\t\t\t\t\t++diff ) {\n\n\t\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t\touterCache = node[ expando ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction( function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[ i ] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[ i ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t} ) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction( function( selector ) {\n\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction( function( seed, matches, _context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\t\t\t\t\tseed[ i ] = !( matches[ i ] = elem );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} ) :\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tinput[ 0 ] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[ 0 ] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t} ),\n\n\t\t\"has\": markFunction( function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t} ),\n\n\t\t\"contains\": markFunction( function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t} ),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test( lang || \"\" ) ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( ( elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute( \"xml:lang\" ) || elem.getAttribute( \"lang\" ) ) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( ( elem = elem.parentNode ) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t} ),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement &&\n\t\t\t\t( !document.hasFocus || document.hasFocus() ) &&\n\t\t\t\t!!( elem.type || elem.href || ~elem.tabIndex );\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": createDisabledPseudo( false ),\n\t\t\"disabled\": createDisabledPseudo( true ),\n\n\t\t\"checked\": function( elem ) {\n\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn ( nodeName === \"input\" && !!elem.checked ) ||\n\t\t\t\t( nodeName === \"option\" && !!elem.selected );\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\t// eslint-disable-next-line no-unused-expressions\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[ \"empty\" ]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( ( attr = elem.getAttribute( \"type\" ) ) == null ||\n\t\t\t\t\tattr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo( function() {\n\t\t\treturn [ 0 ];\n\t\t} ),\n\n\t\t\"last\": createPositionalPseudo( function( _matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t} ),\n\n\t\t\"eq\": createPositionalPseudo( function( _matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t} ),\n\n\t\t\"even\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"odd\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"lt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ?\n\t\t\t\targument + length :\n\t\t\t\targument > length ?\n\t\t\t\t\tlength :\n\t\t\t\t\targument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"gt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} )\n\t}\n};\n\nExpr.pseudos[ \"nth\" ] = Expr.pseudos[ \"eq\" ];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || ( match = rcomma.exec( soFar ) ) ) {\n\t\t\tif ( match ) {\n\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[ 0 ].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( ( tokens = [] ) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( ( match = rcombinators.exec( soFar ) ) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push( {\n\t\t\t\tvalue: matched,\n\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[ 0 ].replace( rtrim, \" \" )\n\t\t\t} );\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] ||\n\t\t\t\t( match = preFilters[ type ]( match ) ) ) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push( {\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t} );\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[ i ].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tskip = combinator.next,\n\t\tkey = skip || dir,\n\t\tcheckNonElements = base && key === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, uniqueCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || ( elem[ expando ] = {} );\n\n\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\tuniqueCache = outerCache[ elem.uniqueID ] ||\n\t\t\t\t\t\t\t( outerCache[ elem.uniqueID ] = {} );\n\n\t\t\t\t\t\tif ( skip && skip === elem.nodeName.toLowerCase() ) {\n\t\t\t\t\t\t\telem = elem[ dir ] || elem;\n\t\t\t\t\t\t} else if ( ( oldCache = uniqueCache[ key ] ) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn ( newCache[ 2 ] = oldCache[ 2 ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\tuniqueCache[ key ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[ i ]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[ 0 ];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[ i ], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction( function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts(\n\t\t\t\tselector || \"*\",\n\t\t\t\tcontext.nodeType ? [ context ] : context,\n\t\t\t\t[]\n\t\t\t),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( ( elem = temp[ i ] ) ) {\n\t\t\t\t\tmatcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) ) {\n\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( ( matcherIn[ i ] = elem ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, ( matcherOut = [] ), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) &&\n\t\t\t\t\t\t( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) {\n\n\t\t\t\t\t\tseed[ temp ] = !( results[ temp ] = elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t} );\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[ 0 ].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[ \" \" ],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t( checkContext = context ).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) {\n\t\t\tmatchers = [ addCombinator( elementMatcher( matchers ), matcher ) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[ j ].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\n\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\ttokens\n\t\t\t\t\t\t.slice( 0, i - 1 )\n\t\t\t\t\t\t.concat( { value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" } )\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[ \"TAG\" ]( \"*\", outermost ),\n\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\n\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\toutermostContext = context == document || context || outermost;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\n\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\tif ( !context && elem.ownerDocument != document ) {\n\t\t\t\t\t\tsetDocument( elem );\n\t\t\t\t\t\txml = !documentIsHTML;\n\t\t\t\t\t}\n\t\t\t\t\twhile ( ( matcher = elementMatchers[ j++ ] ) ) {\n\t\t\t\t\t\tif ( matcher( elem, context || document, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( ( elem = !matcher && elem ) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// `i` is now the count of elements visited above, and adding it to `matchedCount`\n\t\t\t// makes the latter nonnegative.\n\t\t\tmatchedCount += i;\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\t// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n\t\t\t// equals `i`), unless we didn't visit _any_ elements in the above loop because we have\n\t\t\t// no element matchers and no seed.\n\t\t\t// Incrementing an initially-string \"0\" `i` allows `i` to remain a string only in that\n\t\t\t// case, which will result in a \"00\" `matchedCount` that differs from `i` but is also\n\t\t\t// numerically zero.\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( ( matcher = setMatchers[ j++ ] ) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !( unmatched[ i ] || setMatched[ i ] ) ) {\n\t\t\t\t\t\t\t\tsetMatched[ i ] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[ i ] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache(\n\t\t\tselector,\n\t\t\tmatcherFromGroupMatchers( elementMatchers, setMatchers )\n\t\t);\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( ( selector = compiled.selector || selector ) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is only one selector in the list and no seed\n\t// (the latter of which guarantees us context)\n\tif ( match.length === 1 ) {\n\n\t\t// Reduce context if the leading compound selector is an ID\n\t\ttokens = match[ 0 ] = match[ 0 ].slice( 0 );\n\t\tif ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === \"ID\" &&\n\t\t\tcontext.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) {\n\n\t\t\tcontext = ( Expr.find[ \"ID\" ]( token.matches[ 0 ]\n\t\t\t\t.replace( runescape, funescape ), context ) || [] )[ 0 ];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[ \"needsContext\" ].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[ i ];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ ( type = token.type ) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( ( find = Expr.find[ type ] ) ) {\n\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( ( seed = find(\n\t\t\t\t\ttoken.matches[ 0 ].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext\n\t\t\t\t) ) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\t!context || rsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split( \"\" ).sort( sortOrder ).join( \"\" ) === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert( function( el ) {\n\n\t// Should return 1, but returns 4 (following)\n\treturn el.compareDocumentPosition( document.createElement( \"fieldset\" ) ) & 1;\n} );\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert( function( el ) {\n\tel.innerHTML = \"<a href='#'></a>\";\n\treturn el.firstChild.getAttribute( \"href\" ) === \"#\";\n} ) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert( function( el ) {\n\tel.innerHTML = \"<input/>\";\n\tel.firstChild.setAttribute( \"value\", \"\" );\n\treturn el.firstChild.getAttribute( \"value\" ) === \"\";\n} ) ) {\n\taddHandle( \"value\", function( elem, _name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert( function( el ) {\n\treturn el.getAttribute( \"disabled\" ) == null;\n} ) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\t\tnull;\n\t\t}\n\t} );\n}\n\nreturn Sizzle;\n\n} )( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\n\n// Deprecated\njQuery.expr[ \":\" ] = jQuery.expr.pseudos;\njQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\njQuery.escapeSelector = Sizzle.escape;\n\n\n\n\nvar dir = function( elem, dir, until ) {\n\tvar matched = [],\n\t\ttruncate = until !== undefined;\n\n\twhile ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {\n\t\tif ( elem.nodeType === 1 ) {\n\t\t\tif ( truncate && jQuery( elem ).is( until ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tmatched.push( elem );\n\t\t}\n\t}\n\treturn matched;\n};\n\n\nvar siblings = function( n, elem ) {\n\tvar matched = [];\n\n\tfor ( ; n; n = n.nextSibling ) {\n\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\tmatched.push( n );\n\t\t}\n\t}\n\n\treturn matched;\n};\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\n\n\nfunction nodeName( elem, name ) {\n\n  return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\n};\nvar rsingleTag = ( /^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i );\n\n\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t} );\n\t}\n\n\t// Single element\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t} );\n\t}\n\n\t// Arraylike of elements (jQuery, arguments, Array)\n\tif ( typeof qualifier !== \"string\" ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( indexOf.call( qualifier, elem ) > -1 ) !== not;\n\t\t} );\n\t}\n\n\t// Filtered directly for both simple and complex selectors\n\treturn jQuery.filter( qualifier, elements, not );\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\tif ( elems.length === 1 && elem.nodeType === 1 ) {\n\t\treturn jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];\n\t}\n\n\treturn jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\treturn elem.nodeType === 1;\n\t} ) );\n};\n\njQuery.fn.extend( {\n\tfind: function( selector ) {\n\t\tvar i, ret,\n\t\t\tlen = this.length,\n\t\t\tself = this;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter( function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} ) );\n\t\t}\n\n\t\tret = this.pushStack( [] );\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\treturn len > 1 ? jQuery.uniqueSort( ret ) : ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], false ) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], true ) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n} );\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\t// Shortcut simple #id case for speed\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/,\n\n\tinit = jQuery.fn.init = function( selector, context, root ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Method init() accepts an alternate rootjQuery\n\t\t// so migrate can support jQuery.sub (gh-2101)\n\t\troot = root || rootjQuery;\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector[ 0 ] === \"<\" &&\n\t\t\t\tselector[ selector.length - 1 ] === \">\" &&\n\t\t\t\tselector.length >= 3 ) {\n\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && ( match[ 1 ] || !context ) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[ 1 ] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[ 0 ] : context;\n\n\t\t\t\t\t// Option to run scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[ 1 ],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[ 2 ] );\n\n\t\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t\t// Inject the element directly into the jQuery object\n\t\t\t\t\t\tthis[ 0 ] = elem;\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || root ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis[ 0 ] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( isFunction( selector ) ) {\n\t\t\treturn root.ready !== undefined ?\n\t\t\t\troot.ready( selector ) :\n\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\n\t// Methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend( {\n\thas: function( target ) {\n\t\tvar targets = jQuery( target, this ),\n\t\t\tl = targets.length;\n\n\t\treturn this.filter( function() {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[ i ] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\ttargets = typeof selectors !== \"string\" && jQuery( selectors );\n\n\t\t// Positional selectors never match, since there's no _selection_ context\n\t\tif ( !rneedsContext.test( selectors ) ) {\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tfor ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {\n\n\t\t\t\t\t// Always skip document fragments\n\t\t\t\t\tif ( cur.nodeType < 11 && ( targets ?\n\t\t\t\t\t\ttargets.index( cur ) > -1 :\n\n\t\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\t\tjQuery.find.matchesSelector( cur, selectors ) ) ) {\n\n\t\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within the set\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// Index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn indexOf.call( jQuery( elem ), this[ 0 ] );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn indexOf.call( this,\n\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[ 0 ] : elem\n\t\t);\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.uniqueSort(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t}\n} );\n\nfunction sibling( cur, dir ) {\n\twhile ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}\n\treturn cur;\n}\n\njQuery.each( {\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn siblings( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn siblings( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\tif ( elem.contentDocument != null &&\n\n\t\t\t// Support: IE 11+\n\t\t\t// <object> elements with no `data` attribute has an object\n\t\t\t// `contentDocument` with a `null` prototype.\n\t\t\tgetProto( elem.contentDocument ) ) {\n\n\t\t\treturn elem.contentDocument;\n\t\t}\n\n\t\t// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only\n\t\t// Treat the template element as a regular one in browsers that\n\t\t// don't support it.\n\t\tif ( nodeName( elem, \"template\" ) ) {\n\t\t\telem = elem.content || elem;\n\t\t}\n\n\t\treturn jQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar matched = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tmatched = jQuery.filter( selector, matched );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tjQuery.uniqueSort( matched );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tmatched.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched );\n\t};\n} );\nvar rnothtmlwhite = ( /[^\\x20\\t\\r\\n\\f]+/g );\n\n\n\n// Convert String-formatted options into Object-formatted ones\nfunction createOptions( options ) {\n\tvar object = {};\n\tjQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t} );\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\tcreateOptions( options ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\n\t\t// Last fire value for non-forgettable lists\n\t\tmemory,\n\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\n\t\t// Flag to prevent firing\n\t\tlocked,\n\n\t\t// Actual callback list\n\t\tlist = [],\n\n\t\t// Queue of execution data for repeatable lists\n\t\tqueue = [],\n\n\t\t// Index of currently firing callback (modified by add/remove as needed)\n\t\tfiringIndex = -1,\n\n\t\t// Fire callbacks\n\t\tfire = function() {\n\n\t\t\t// Enforce single-firing\n\t\t\tlocked = locked || options.once;\n\n\t\t\t// Execute callbacks for all pending executions,\n\t\t\t// respecting firingIndex overrides and runtime changes\n\t\t\tfired = firing = true;\n\t\t\tfor ( ; queue.length; firingIndex = -1 ) {\n\t\t\t\tmemory = queue.shift();\n\t\t\t\twhile ( ++firingIndex < list.length ) {\n\n\t\t\t\t\t// Run callback and check for early termination\n\t\t\t\t\tif ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&\n\t\t\t\t\t\toptions.stopOnFalse ) {\n\n\t\t\t\t\t\t// Jump to end and forget the data so .add doesn't re-fire\n\t\t\t\t\t\tfiringIndex = list.length;\n\t\t\t\t\t\tmemory = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Forget the data if we're done with it\n\t\t\tif ( !options.memory ) {\n\t\t\t\tmemory = false;\n\t\t\t}\n\n\t\t\tfiring = false;\n\n\t\t\t// Clean up if we're done firing for good\n\t\t\tif ( locked ) {\n\n\t\t\t\t// Keep an empty list if we have data for future add calls\n\t\t\t\tif ( memory ) {\n\t\t\t\t\tlist = [];\n\n\t\t\t\t// Otherwise, this object is spent\n\t\t\t\t} else {\n\t\t\t\t\tlist = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t// Actual Callbacks object\n\t\tself = {\n\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\n\t\t\t\t\t// If we have memory from a past run, we should fire after adding\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfiringIndex = list.length - 1;\n\t\t\t\t\t\tqueue.push( memory );\n\t\t\t\t\t}\n\n\t\t\t\t\t( function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tif ( isFunction( arg ) ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && toType( arg ) !== \"string\" ) {\n\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t} )( arguments );\n\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\tvar index;\n\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\tlist.splice( index, 1 );\n\n\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ?\n\t\t\t\t\tjQuery.inArray( fn, list ) > -1 :\n\t\t\t\t\tlist.length > 0;\n\t\t\t},\n\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Disable .fire and .add\n\t\t\t// Abort any current/pending executions\n\t\t\t// Clear all callbacks and values\n\t\t\tdisable: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tlist = memory = \"\";\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\n\t\t\t// Disable .fire\n\t\t\t// Also disable .add unless we have memory (since it would have no effect)\n\t\t\t// Abort any pending executions\n\t\t\tlock: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tif ( !memory && !firing ) {\n\t\t\t\t\tlist = memory = \"\";\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tlocked: function() {\n\t\t\t\treturn !!locked;\n\t\t\t},\n\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( !locked ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tqueue.push( args );\n\t\t\t\t\tif ( !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\nfunction Identity( v ) {\n\treturn v;\n}\nfunction Thrower( ex ) {\n\tthrow ex;\n}\n\nfunction adoptValue( value, resolve, reject, noValue ) {\n\tvar method;\n\n\ttry {\n\n\t\t// Check for promise aspect first to privilege synchronous behavior\n\t\tif ( value && isFunction( ( method = value.promise ) ) ) {\n\t\t\tmethod.call( value ).done( resolve ).fail( reject );\n\n\t\t// Other thenables\n\t\t} else if ( value && isFunction( ( method = value.then ) ) ) {\n\t\t\tmethod.call( value, resolve, reject );\n\n\t\t// Other non-thenables\n\t\t} else {\n\n\t\t\t// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:\n\t\t\t// * false: [ value ].slice( 0 ) => resolve( value )\n\t\t\t// * true: [ value ].slice( 1 ) => resolve()\n\t\t\tresolve.apply( undefined, [ value ].slice( noValue ) );\n\t\t}\n\n\t// For Promises/A+, convert exceptions into rejections\n\t// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in\n\t// Deferred#then to conditionally suppress rejection.\n\t} catch ( value ) {\n\n\t\t// Support: Android 4.0 only\n\t\t// Strict mode functions invoked without .call/.apply get global-object context\n\t\treject.apply( undefined, [ value ] );\n\t}\n}\n\njQuery.extend( {\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\n\t\t\t\t// action, add listener, callbacks,\n\t\t\t\t// ... .then handlers, argument index, [final state]\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks( \"memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"memory\" ), 2 ],\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 0, \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 1, \"rejected\" ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\t\"catch\": function( fn ) {\n\t\t\t\t\treturn promise.then( null, fn );\n\t\t\t\t},\n\n\t\t\t\t// Keep pipe for back-compat\n\t\t\t\tpipe: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( _i, tuple ) {\n\n\t\t\t\t\t\t\t// Map tuples (progress, done, fail) to arguments (done, fail, progress)\n\t\t\t\t\t\t\tvar fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];\n\n\t\t\t\t\t\t\t// deferred.progress(function() { bind to newDefer or newDefer.notify })\n\t\t\t\t\t\t\t// deferred.done(function() { bind to newDefer or newDefer.resolve })\n\t\t\t\t\t\t\t// deferred.fail(function() { bind to newDefer or newDefer.reject })\n\t\t\t\t\t\t\tdeferred[ tuple[ 1 ] ]( function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify )\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ](\n\t\t\t\t\t\t\t\t\t\tthis,\n\t\t\t\t\t\t\t\t\t\tfn ? [ returned ] : arguments\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t} );\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\t\t\t\tthen: function( onFulfilled, onRejected, onProgress ) {\n\t\t\t\t\tvar maxDepth = 0;\n\t\t\t\t\tfunction resolve( depth, deferred, handler, special ) {\n\t\t\t\t\t\treturn function() {\n\t\t\t\t\t\t\tvar that = this,\n\t\t\t\t\t\t\t\targs = arguments,\n\t\t\t\t\t\t\t\tmightThrow = function() {\n\t\t\t\t\t\t\t\t\tvar returned, then;\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.3\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-59\n\t\t\t\t\t\t\t\t\t// Ignore double-resolution attempts\n\t\t\t\t\t\t\t\t\tif ( depth < maxDepth ) {\n\t\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\treturned = handler.apply( that, args );\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.1\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-48\n\t\t\t\t\t\t\t\t\tif ( returned === deferred.promise() ) {\n\t\t\t\t\t\t\t\t\t\tthrow new TypeError( \"Thenable self-resolution\" );\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ sections 2.3.3.1, 3.5\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-54\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-75\n\t\t\t\t\t\t\t\t\t// Retrieve `then` only once\n\t\t\t\t\t\t\t\t\tthen = returned &&\n\n\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.4\n\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-64\n\t\t\t\t\t\t\t\t\t\t// Only check objects and functions for thenability\n\t\t\t\t\t\t\t\t\t\t( typeof returned === \"object\" ||\n\t\t\t\t\t\t\t\t\t\t\ttypeof returned === \"function\" ) &&\n\t\t\t\t\t\t\t\t\t\treturned.then;\n\n\t\t\t\t\t\t\t\t\t// Handle a returned thenable\n\t\t\t\t\t\t\t\t\tif ( isFunction( then ) ) {\n\n\t\t\t\t\t\t\t\t\t\t// Special processors (notify) just wait for resolution\n\t\t\t\t\t\t\t\t\t\tif ( special ) {\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special )\n\t\t\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\t\t// Normal processors (resolve) also hook into progress\n\t\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t\t// ...and disregard older resolution values\n\t\t\t\t\t\t\t\t\t\t\tmaxDepth++;\n\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdeferred.notifyWith )\n\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Handle all other returned values\n\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\tif ( handler !== Identity ) {\n\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\targs = [ returned ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t// Process the value(s)\n\t\t\t\t\t\t\t\t\t\t// Default process is resolve\n\t\t\t\t\t\t\t\t\t\t( special || deferred.resolveWith )( that, args );\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},\n\n\t\t\t\t\t\t\t\t// Only normal processors (resolve) catch and reject exceptions\n\t\t\t\t\t\t\t\tprocess = special ?\n\t\t\t\t\t\t\t\t\tmightThrow :\n\t\t\t\t\t\t\t\t\tfunction() {\n\t\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\t\tmightThrow();\n\t\t\t\t\t\t\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t\t\t\t\t\t\tif ( jQuery.Deferred.exceptionHook ) {\n\t\t\t\t\t\t\t\t\t\t\t\tjQuery.Deferred.exceptionHook( e,\n\t\t\t\t\t\t\t\t\t\t\t\t\tprocess.stackTrace );\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.4.1\n\t\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-61\n\t\t\t\t\t\t\t\t\t\t\t// Ignore post-resolution exceptions\n\t\t\t\t\t\t\t\t\t\t\tif ( depth + 1 >= maxDepth ) {\n\n\t\t\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\t\t\tif ( handler !== Thrower ) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\t\t\targs = [ e ];\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tdeferred.rejectWith( that, args );\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t};\n\n\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.1\n\t\t\t\t\t\t\t// https://promisesaplus.com/#point-57\n\t\t\t\t\t\t\t// Re-resolve promises immediately to dodge false rejection from\n\t\t\t\t\t\t\t// subsequent errors\n\t\t\t\t\t\t\tif ( depth ) {\n\t\t\t\t\t\t\t\tprocess();\n\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t// Call an optional hook to record the stack, in case of exception\n\t\t\t\t\t\t\t\t// since it's otherwise lost when execution goes async\n\t\t\t\t\t\t\t\tif ( jQuery.Deferred.getStackHook ) {\n\t\t\t\t\t\t\t\t\tprocess.stackTrace = jQuery.Deferred.getStackHook();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\twindow.setTimeout( process );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\n\t\t\t\t\t\t// progress_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 0 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onProgress ) ?\n\t\t\t\t\t\t\t\t\tonProgress :\n\t\t\t\t\t\t\t\t\tIdentity,\n\t\t\t\t\t\t\t\tnewDefer.notifyWith\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// fulfilled_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 1 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onFulfilled ) ?\n\t\t\t\t\t\t\t\t\tonFulfilled :\n\t\t\t\t\t\t\t\t\tIdentity\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// rejected_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 2 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onRejected ) ?\n\t\t\t\t\t\t\t\t\tonRejected :\n\t\t\t\t\t\t\t\t\tThrower\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 5 ];\n\n\t\t\t// promise.progress = list.add\n\t\t\t// promise.done = list.add\n\t\t\t// promise.fail = list.add\n\t\t\tpromise[ tuple[ 1 ] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(\n\t\t\t\t\tfunction() {\n\n\t\t\t\t\t\t// state = \"resolved\" (i.e., fulfilled)\n\t\t\t\t\t\t// state = \"rejected\"\n\t\t\t\t\t\tstate = stateString;\n\t\t\t\t\t},\n\n\t\t\t\t\t// rejected_callbacks.disable\n\t\t\t\t\t// fulfilled_callbacks.disable\n\t\t\t\t\ttuples[ 3 - i ][ 2 ].disable,\n\n\t\t\t\t\t// rejected_handlers.disable\n\t\t\t\t\t// fulfilled_handlers.disable\n\t\t\t\t\ttuples[ 3 - i ][ 3 ].disable,\n\n\t\t\t\t\t// progress_callbacks.lock\n\t\t\t\t\ttuples[ 0 ][ 2 ].lock,\n\n\t\t\t\t\t// progress_handlers.lock\n\t\t\t\t\ttuples[ 0 ][ 3 ].lock\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// progress_handlers.fire\n\t\t\t// fulfilled_handlers.fire\n\t\t\t// rejected_handlers.fire\n\t\t\tlist.add( tuple[ 3 ].fire );\n\n\t\t\t// deferred.notify = function() { deferred.notifyWith(...) }\n\t\t\t// deferred.resolve = function() { deferred.resolveWith(...) }\n\t\t\t// deferred.reject = function() { deferred.rejectWith(...) }\n\t\t\tdeferred[ tuple[ 0 ] ] = function() {\n\t\t\t\tdeferred[ tuple[ 0 ] + \"With\" ]( this === deferred ? undefined : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\n\t\t\t// deferred.notifyWith = list.fireWith\n\t\t\t// deferred.resolveWith = list.fireWith\n\t\t\t// deferred.rejectWith = list.fireWith\n\t\t\tdeferred[ tuple[ 0 ] + \"With\" ] = list.fireWith;\n\t\t} );\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( singleValue ) {\n\t\tvar\n\n\t\t\t// count of uncompleted subordinates\n\t\t\tremaining = arguments.length,\n\n\t\t\t// count of unprocessed arguments\n\t\t\ti = remaining,\n\n\t\t\t// subordinate fulfillment data\n\t\t\tresolveContexts = Array( i ),\n\t\t\tresolveValues = slice.call( arguments ),\n\n\t\t\t// the master Deferred\n\t\t\tmaster = jQuery.Deferred(),\n\n\t\t\t// subordinate callback factory\n\t\t\tupdateFunc = function( i ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tresolveContexts[ i ] = this;\n\t\t\t\t\tresolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( !( --remaining ) ) {\n\t\t\t\t\t\tmaster.resolveWith( resolveContexts, resolveValues );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t};\n\n\t\t// Single- and empty arguments are adopted like Promise.resolve\n\t\tif ( remaining <= 1 ) {\n\t\t\tadoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject,\n\t\t\t\t!remaining );\n\n\t\t\t// Use .then() to unwrap secondary thenables (cf. gh-3000)\n\t\t\tif ( master.state() === \"pending\" ||\n\t\t\t\tisFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {\n\n\t\t\t\treturn master.then();\n\t\t\t}\n\t\t}\n\n\t\t// Multiple arguments are aggregated like Promise.all array elements\n\t\twhile ( i-- ) {\n\t\t\tadoptValue( resolveValues[ i ], updateFunc( i ), master.reject );\n\t\t}\n\n\t\treturn master.promise();\n\t}\n} );\n\n\n// These usually indicate a programmer mistake during development,\n// warn about them ASAP rather than swallowing them by default.\nvar rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;\n\njQuery.Deferred.exceptionHook = function( error, stack ) {\n\n\t// Support: IE 8 - 9 only\n\t// Console exists when dev tools are open, which can happen at any time\n\tif ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {\n\t\twindow.console.warn( \"jQuery.Deferred exception: \" + error.message, error.stack, stack );\n\t}\n};\n\n\n\n\njQuery.readyException = function( error ) {\n\twindow.setTimeout( function() {\n\t\tthrow error;\n\t} );\n};\n\n\n\n\n// The deferred used on DOM ready\nvar readyList = jQuery.Deferred();\n\njQuery.fn.ready = function( fn ) {\n\n\treadyList\n\t\t.then( fn )\n\n\t\t// Wrap jQuery.readyException in a function so that the lookup\n\t\t// happens at the time of error handling instead of callback\n\t\t// registration.\n\t\t.catch( function( error ) {\n\t\t\tjQuery.readyException( error );\n\t\t} );\n\n\treturn this;\n};\n\njQuery.extend( {\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\t}\n} );\n\njQuery.ready.then = readyList.then;\n\n// The ready event handler and self cleanup method\nfunction completed() {\n\tdocument.removeEventListener( \"DOMContentLoaded\", completed );\n\twindow.removeEventListener( \"load\", completed );\n\tjQuery.ready();\n}\n\n// Catch cases where $(document).ready() is called\n// after the browser event has already occurred.\n// Support: IE <=9 - 10 only\n// Older IE sometimes signals \"interactive\" too soon\nif ( document.readyState === \"complete\" ||\n\t( document.readyState !== \"loading\" && !document.documentElement.doScroll ) ) {\n\n\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\twindow.setTimeout( jQuery.ready );\n\n} else {\n\n\t// Use the handy event callback\n\tdocument.addEventListener( \"DOMContentLoaded\", completed );\n\n\t// A fallback to window.onload, that will always work\n\twindow.addEventListener( \"load\", completed );\n}\n\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlen = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( toType( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\taccess( elems, fn, i, key[ i ], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, _key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\tfn(\n\t\t\t\t\telems[ i ], key, raw ?\n\t\t\t\t\tvalue :\n\t\t\t\t\tvalue.call( elems[ i ], i, fn( elems[ i ], key ) )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( chainable ) {\n\t\treturn elems;\n\t}\n\n\t// Gets\n\tif ( bulk ) {\n\t\treturn fn.call( elems );\n\t}\n\n\treturn len ? fn( elems[ 0 ], key ) : emptyGet;\n};\n\n\n// Matches dashed string for camelizing\nvar rmsPrefix = /^-ms-/,\n\trdashAlpha = /-([a-z])/g;\n\n// Used by camelCase as callback to replace()\nfunction fcamelCase( _all, letter ) {\n\treturn letter.toUpperCase();\n}\n\n// Convert dashed to camelCase; used by the css and data modules\n// Support: IE <=9 - 11, Edge 12 - 15\n// Microsoft forgot to hump their vendor prefix (#9572)\nfunction camelCase( string ) {\n\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n}\nvar acceptData = function( owner ) {\n\n\t// Accepts only:\n\t//  - Node\n\t//    - Node.ELEMENT_NODE\n\t//    - Node.DOCUMENT_NODE\n\t//  - Object\n\t//    - Any\n\treturn owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );\n};\n\n\n\n\nfunction Data() {\n\tthis.expando = jQuery.expando + Data.uid++;\n}\n\nData.uid = 1;\n\nData.prototype = {\n\n\tcache: function( owner ) {\n\n\t\t// Check if the owner object already has a cache\n\t\tvar value = owner[ this.expando ];\n\n\t\t// If not, create one\n\t\tif ( !value ) {\n\t\t\tvalue = {};\n\n\t\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t\t// but we should not, see #8335.\n\t\t\t// Always return an empty object.\n\t\t\tif ( acceptData( owner ) ) {\n\n\t\t\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t\t\t// use plain assignment\n\t\t\t\tif ( owner.nodeType ) {\n\t\t\t\t\towner[ this.expando ] = value;\n\n\t\t\t\t// Otherwise secure it in a non-enumerable property\n\t\t\t\t// configurable must be true to allow the property to be\n\t\t\t\t// deleted when data is removed\n\t\t\t\t} else {\n\t\t\t\t\tObject.defineProperty( owner, this.expando, {\n\t\t\t\t\t\tvalue: value,\n\t\t\t\t\t\tconfigurable: true\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn value;\n\t},\n\tset: function( owner, data, value ) {\n\t\tvar prop,\n\t\t\tcache = this.cache( owner );\n\n\t\t// Handle: [ owner, key, value ] args\n\t\t// Always use camelCase key (gh-2257)\n\t\tif ( typeof data === \"string\" ) {\n\t\t\tcache[ camelCase( data ) ] = value;\n\n\t\t// Handle: [ owner, { properties } ] args\n\t\t} else {\n\n\t\t\t// Copy the properties one-by-one to the cache object\n\t\t\tfor ( prop in data ) {\n\t\t\t\tcache[ camelCase( prop ) ] = data[ prop ];\n\t\t\t}\n\t\t}\n\t\treturn cache;\n\t},\n\tget: function( owner, key ) {\n\t\treturn key === undefined ?\n\t\t\tthis.cache( owner ) :\n\n\t\t\t// Always use camelCase key (gh-2257)\n\t\t\towner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];\n\t},\n\taccess: function( owner, key, value ) {\n\n\t\t// In cases where either:\n\t\t//\n\t\t//   1. No key was specified\n\t\t//   2. A string key was specified, but no value provided\n\t\t//\n\t\t// Take the \"read\" path and allow the get method to determine\n\t\t// which value to return, respectively either:\n\t\t//\n\t\t//   1. The entire cache object\n\t\t//   2. The data stored at the key\n\t\t//\n\t\tif ( key === undefined ||\n\t\t\t\t( ( key && typeof key === \"string\" ) && value === undefined ) ) {\n\n\t\t\treturn this.get( owner, key );\n\t\t}\n\n\t\t// When the key is not a string, or both a key and value\n\t\t// are specified, set or extend (existing objects) with either:\n\t\t//\n\t\t//   1. An object of properties\n\t\t//   2. A key and value\n\t\t//\n\t\tthis.set( owner, key, value );\n\n\t\t// Since the \"set\" path can have two possible entry points\n\t\t// return the expected data based on which path was taken[*]\n\t\treturn value !== undefined ? value : key;\n\t},\n\tremove: function( owner, key ) {\n\t\tvar i,\n\t\t\tcache = owner[ this.expando ];\n\n\t\tif ( cache === undefined ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key !== undefined ) {\n\n\t\t\t// Support array or space separated string of keys\n\t\t\tif ( Array.isArray( key ) ) {\n\n\t\t\t\t// If key is an array of keys...\n\t\t\t\t// We always set camelCase keys, so remove that.\n\t\t\t\tkey = key.map( camelCase );\n\t\t\t} else {\n\t\t\t\tkey = camelCase( key );\n\n\t\t\t\t// If a key with the spaces exists, use it.\n\t\t\t\t// Otherwise, create an array by matching non-whitespace\n\t\t\t\tkey = key in cache ?\n\t\t\t\t\t[ key ] :\n\t\t\t\t\t( key.match( rnothtmlwhite ) || [] );\n\t\t\t}\n\n\t\t\ti = key.length;\n\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete cache[ key[ i ] ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if there's no more data\n\t\tif ( key === undefined || jQuery.isEmptyObject( cache ) ) {\n\n\t\t\t// Support: Chrome <=35 - 45\n\t\t\t// Webkit & Blink performance suffers when deleting properties\n\t\t\t// from DOM nodes, so set to undefined instead\n\t\t\t// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)\n\t\t\tif ( owner.nodeType ) {\n\t\t\t\towner[ this.expando ] = undefined;\n\t\t\t} else {\n\t\t\t\tdelete owner[ this.expando ];\n\t\t\t}\n\t\t}\n\t},\n\thasData: function( owner ) {\n\t\tvar cache = owner[ this.expando ];\n\t\treturn cache !== undefined && !jQuery.isEmptyObject( cache );\n\t}\n};\nvar dataPriv = new Data();\n\nvar dataUser = new Data();\n\n\n\n//\tImplementation Summary\n//\n//\t1. Enforce API surface and semantic compatibility with 1.9.x branch\n//\t2. Improve the module's maintainability by reducing the storage\n//\t\tpaths to a single mechanism.\n//\t3. Use the same single mechanism to support \"private\" and \"user\" data.\n//\t4. _Never_ expose \"private\" data to user code (TODO: Drop _data, _removeData)\n//\t5. Avoid exposing implementation details on user objects (eg. expando properties)\n//\t6. Provide a clear path for implementation upgrade to WeakMap in 2014\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /[A-Z]/g;\n\nfunction getData( data ) {\n\tif ( data === \"true\" ) {\n\t\treturn true;\n\t}\n\n\tif ( data === \"false\" ) {\n\t\treturn false;\n\t}\n\n\tif ( data === \"null\" ) {\n\t\treturn null;\n\t}\n\n\t// Only convert to a number if it doesn't change the string\n\tif ( data === +data + \"\" ) {\n\t\treturn +data;\n\t}\n\n\tif ( rbrace.test( data ) ) {\n\t\treturn JSON.parse( data );\n\t}\n\n\treturn data;\n}\n\nfunction dataAttr( elem, key, data ) {\n\tvar name;\n\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\t\tname = \"data-\" + key.replace( rmultiDash, \"-$&\" ).toLowerCase();\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = getData( data );\n\t\t\t} catch ( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tdataUser.set( elem, key, data );\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\treturn data;\n}\n\njQuery.extend( {\n\thasData: function( elem ) {\n\t\treturn dataUser.hasData( elem ) || dataPriv.hasData( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn dataUser.access( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\tdataUser.remove( elem, name );\n\t},\n\n\t// TODO: Now that all calls to _data and _removeData have been replaced\n\t// with direct calls to dataPriv methods, these can be deprecated.\n\t_data: function( elem, name, data ) {\n\t\treturn dataPriv.access( elem, name, data );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\tdataPriv.remove( elem, name );\n\t}\n} );\n\njQuery.fn.extend( {\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[ 0 ],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = dataUser.get( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !dataPriv.get( elem, \"hasDataAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE 11 only\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = camelCase( name.slice( 5 ) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tdataPriv.set( elem, \"hasDataAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tdataUser.set( this, key );\n\t\t\t} );\n\t\t}\n\n\t\treturn access( this, function( value ) {\n\t\t\tvar data;\n\n\t\t\t// The calling jQuery object (element matches) is not empty\n\t\t\t// (and therefore has an element appears at this[ 0 ]) and the\n\t\t\t// `value` parameter was not undefined. An empty jQuery object\n\t\t\t// will result in `undefined` for elem = this[ 0 ] which will\n\t\t\t// throw an exception if an attempt to read a data cache is made.\n\t\t\tif ( elem && value === undefined ) {\n\n\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t// The key will always be camelCased in Data\n\t\t\t\tdata = dataUser.get( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Attempt to \"discover\" the data in\n\t\t\t\t// HTML5 custom data-* attrs\n\t\t\t\tdata = dataAttr( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// We tried really hard, but the data doesn't exist.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Set the data...\n\t\t\tthis.each( function() {\n\n\t\t\t\t// We always store the camelCased key\n\t\t\t\tdataUser.set( this, key, value );\n\t\t\t} );\n\t\t}, null, value, arguments.length > 1, null, true );\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each( function() {\n\t\t\tdataUser.remove( this, key );\n\t\t} );\n\t}\n} );\n\n\njQuery.extend( {\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = dataPriv.get( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || Array.isArray( data ) ) {\n\t\t\t\t\tqueue = dataPriv.access( elem, type, jQuery.makeArray( data ) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// Clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// Not public - generate a queueHooks object, or return the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn dataPriv.get( elem, key ) || dataPriv.access( elem, key, {\n\t\t\tempty: jQuery.Callbacks( \"once memory\" ).add( function() {\n\t\t\t\tdataPriv.remove( elem, [ type + \"queue\", key ] );\n\t\t\t} )\n\t\t} );\n\t}\n} );\n\njQuery.fn.extend( {\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[ 0 ], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each( function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// Ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[ 0 ] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t} );\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t} );\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = dataPriv.get( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n} );\nvar pnum = ( /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/ ).source;\n\nvar rcssNum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" );\n\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar documentElement = document.documentElement;\n\n\n\n\tvar isAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem );\n\t\t},\n\t\tcomposed = { composed: true };\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only\n\t// Check attachment across shadow DOM boundaries when possible (gh-3504)\n\t// Support: iOS 10.0-10.2 only\n\t// Early iOS 10 versions support `attachShadow` but not `getRootNode`,\n\t// leading to errors. We need to check for `getRootNode`.\n\tif ( documentElement.getRootNode ) {\n\t\tisAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem ) ||\n\t\t\t\telem.getRootNode( composed ) === elem.ownerDocument;\n\t\t};\n\t}\nvar isHiddenWithinTree = function( elem, el ) {\n\n\t\t// isHiddenWithinTree might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\n\t\t// Inline style trumps all\n\t\treturn elem.style.display === \"none\" ||\n\t\t\telem.style.display === \"\" &&\n\n\t\t\t// Otherwise, check computed style\n\t\t\t// Support: Firefox <=43 - 45\n\t\t\t// Disconnected elements can have computed display: none, so first confirm that elem is\n\t\t\t// in the document.\n\t\t\tisAttached( elem ) &&\n\n\t\t\tjQuery.css( elem, \"display\" ) === \"none\";\n\t};\n\n\n\nfunction adjustCSS( elem, prop, valueParts, tween ) {\n\tvar adjusted, scale,\n\t\tmaxIterations = 20,\n\t\tcurrentValue = tween ?\n\t\t\tfunction() {\n\t\t\t\treturn tween.cur();\n\t\t\t} :\n\t\t\tfunction() {\n\t\t\t\treturn jQuery.css( elem, prop, \"\" );\n\t\t\t},\n\t\tinitial = currentValue(),\n\t\tunit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t// Starting value computation is required for potential unit mismatches\n\t\tinitialInUnit = elem.nodeType &&\n\t\t\t( jQuery.cssNumber[ prop ] || unit !== \"px\" && +initial ) &&\n\t\t\trcssNum.exec( jQuery.css( elem, prop ) );\n\n\tif ( initialInUnit && initialInUnit[ 3 ] !== unit ) {\n\n\t\t// Support: Firefox <=54\n\t\t// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)\n\t\tinitial = initial / 2;\n\n\t\t// Trust units reported by jQuery.css\n\t\tunit = unit || initialInUnit[ 3 ];\n\n\t\t// Iteratively approximate from a nonzero starting point\n\t\tinitialInUnit = +initial || 1;\n\n\t\twhile ( maxIterations-- ) {\n\n\t\t\t// Evaluate and update our best guess (doubling guesses that zero out).\n\t\t\t// Finish if the scale equals or crosses 1 (making the old*new product non-positive).\n\t\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\t\t\tif ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {\n\t\t\t\tmaxIterations = 0;\n\t\t\t}\n\t\t\tinitialInUnit = initialInUnit / scale;\n\n\t\t}\n\n\t\tinitialInUnit = initialInUnit * 2;\n\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\n\t\t// Make sure we update the tween properties later on\n\t\tvalueParts = valueParts || [];\n\t}\n\n\tif ( valueParts ) {\n\t\tinitialInUnit = +initialInUnit || +initial || 0;\n\n\t\t// Apply relative offset (+=/-=) if specified\n\t\tadjusted = valueParts[ 1 ] ?\n\t\t\tinitialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :\n\t\t\t+valueParts[ 2 ];\n\t\tif ( tween ) {\n\t\t\ttween.unit = unit;\n\t\t\ttween.start = initialInUnit;\n\t\t\ttween.end = adjusted;\n\t\t}\n\t}\n\treturn adjusted;\n}\n\n\nvar defaultDisplayMap = {};\n\nfunction getDefaultDisplay( elem ) {\n\tvar temp,\n\t\tdoc = elem.ownerDocument,\n\t\tnodeName = elem.nodeName,\n\t\tdisplay = defaultDisplayMap[ nodeName ];\n\n\tif ( display ) {\n\t\treturn display;\n\t}\n\n\ttemp = doc.body.appendChild( doc.createElement( nodeName ) );\n\tdisplay = jQuery.css( temp, \"display\" );\n\n\ttemp.parentNode.removeChild( temp );\n\n\tif ( display === \"none\" ) {\n\t\tdisplay = \"block\";\n\t}\n\tdefaultDisplayMap[ nodeName ] = display;\n\n\treturn display;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\t// Determine new display value for elements that need to change\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\n\t\t\t// Since we force visibility upon cascade-hidden elements, an immediate (and slow)\n\t\t\t// check is required in this first loop unless we have a nonempty display value (either\n\t\t\t// inline or about-to-be-restored)\n\t\t\tif ( display === \"none\" ) {\n\t\t\t\tvalues[ index ] = dataPriv.get( elem, \"display\" ) || null;\n\t\t\t\tif ( !values[ index ] ) {\n\t\t\t\t\telem.style.display = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( elem.style.display === \"\" && isHiddenWithinTree( elem ) ) {\n\t\t\t\tvalues[ index ] = getDefaultDisplay( elem );\n\t\t\t}\n\t\t} else {\n\t\t\tif ( display !== \"none\" ) {\n\t\t\t\tvalues[ index ] = \"none\";\n\n\t\t\t\t// Remember what we're overwriting\n\t\t\t\tdataPriv.set( elem, \"display\", display );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of the elements in a second loop to avoid constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\tif ( values[ index ] != null ) {\n\t\t\telements[ index ].style.display = values[ index ];\n\t\t}\n\t}\n\n\treturn elements;\n}\n\njQuery.fn.extend( {\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tif ( isHiddenWithinTree( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t} );\n\t}\n} );\nvar rcheckableType = ( /^(?:checkbox|radio)$/i );\n\nvar rtagName = ( /<([a-z][^\\/\\0>\\x20\\t\\r\\n\\f]*)/i );\n\nvar rscriptType = ( /^$|^module$|\\/(?:java|ecma)script/i );\n\n\n\n( function() {\n\tvar fragment = document.createDocumentFragment(),\n\t\tdiv = fragment.appendChild( document.createElement( \"div\" ) ),\n\t\tinput = document.createElement( \"input\" );\n\n\t// Support: Android 4.0 - 4.3 only\n\t// Check state lost if the name is set (#11217)\n\t// Support: Windows Web Apps (WWA)\n\t// `name` and `type` must use .setAttribute for WWA (#14901)\n\tinput.setAttribute( \"type\", \"radio\" );\n\tinput.setAttribute( \"checked\", \"checked\" );\n\tinput.setAttribute( \"name\", \"t\" );\n\n\tdiv.appendChild( input );\n\n\t// Support: Android <=4.1 only\n\t// Older WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE <=11 only\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// Support: IE <=9 only\n\t// IE <=9 replaces <option> tags with their contents when inserted outside of\n\t// the select element.\n\tdiv.innerHTML = \"<option></option>\";\n\tsupport.option = !!div.lastChild;\n} )();\n\n\n// We have to close these tags to support XHTML (#13200)\nvar wrapMap = {\n\n\t// XHTML parsers do not magically insert elements in the\n\t// same way that tag soup parsers do. So we cannot shorten\n\t// this by omitting <tbody> or other required elements.\n\tthead: [ 1, \"<table>\", \"</table>\" ],\n\tcol: [ 2, \"<table><colgroup>\", \"</colgroup></table>\" ],\n\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t_default: [ 0, \"\", \"\" ]\n};\n\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n// Support: IE <=9 only\nif ( !support.option ) {\n\twrapMap.optgroup = wrapMap.option = [ 1, \"<select multiple='multiple'>\", \"</select>\" ];\n}\n\n\nfunction getAll( context, tag ) {\n\n\t// Support: IE <=9 - 11 only\n\t// Use typeof to avoid zero-argument method invocation on host objects (#15151)\n\tvar ret;\n\n\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\tret = context.getElementsByTagName( tag || \"*\" );\n\n\t} else if ( typeof context.querySelectorAll !== \"undefined\" ) {\n\t\tret = context.querySelectorAll( tag || \"*\" );\n\n\t} else {\n\t\tret = [];\n\t}\n\n\tif ( tag === undefined || tag && nodeName( context, tag ) ) {\n\t\treturn jQuery.merge( [ context ], ret );\n\t}\n\n\treturn ret;\n}\n\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar i = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\tdataPriv.set(\n\t\t\telems[ i ],\n\t\t\t\"globalEval\",\n\t\t\t!refElements || dataPriv.get( refElements[ i ], \"globalEval\" )\n\t\t);\n\t}\n}\n\n\nvar rhtml = /<|&#?\\w+;/;\n\nfunction buildFragment( elems, context, scripts, selection, ignored ) {\n\tvar elem, tmp, tag, wrap, attached, j,\n\t\tfragment = context.createDocumentFragment(),\n\t\tnodes = [],\n\t\ti = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\telem = elems[ i ];\n\n\t\tif ( elem || elem === 0 ) {\n\n\t\t\t// Add nodes directly\n\t\t\tif ( toType( elem ) === \"object\" ) {\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t// Convert non-html into a text node\n\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t// Convert html into DOM nodes\n\t\t\t} else {\n\t\t\t\ttmp = tmp || fragment.appendChild( context.createElement( \"div\" ) );\n\n\t\t\t\t// Deserialize a standard representation\n\t\t\t\ttag = ( rtagName.exec( elem ) || [ \"\", \"\" ] )[ 1 ].toLowerCase();\n\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\t\t\t\ttmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];\n\n\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\tj = wrap[ 0 ];\n\t\t\t\twhile ( j-- ) {\n\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t}\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t// Remember the top-level container\n\t\t\t\ttmp = fragment.firstChild;\n\n\t\t\t\t// Ensure the created nodes are orphaned (#12392)\n\t\t\t\ttmp.textContent = \"\";\n\t\t\t}\n\t\t}\n\t}\n\n\t// Remove wrapper from fragment\n\tfragment.textContent = \"\";\n\n\ti = 0;\n\twhile ( ( elem = nodes[ i++ ] ) ) {\n\n\t\t// Skip elements already in the context collection (trac-4087)\n\t\tif ( selection && jQuery.inArray( elem, selection ) > -1 ) {\n\t\t\tif ( ignored ) {\n\t\t\t\tignored.push( elem );\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tattached = isAttached( elem );\n\n\t\t// Append to fragment\n\t\ttmp = getAll( fragment.appendChild( elem ), \"script\" );\n\n\t\t// Preserve script evaluation history\n\t\tif ( attached ) {\n\t\t\tsetGlobalEval( tmp );\n\t\t}\n\n\t\t// Capture executables\n\t\tif ( scripts ) {\n\t\t\tj = 0;\n\t\t\twhile ( ( elem = tmp[ j++ ] ) ) {\n\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\tscripts.push( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn fragment;\n}\n\n\nvar\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\n// Support: IE <=9 - 11+\n// focus() and blur() are asynchronous, except when they are no-op.\n// So expect focus to be synchronous when the element is already active,\n// and blur to be synchronous when the element is not already active.\n// (focus and blur are always synchronous in other supported browsers,\n// this just defines when we can count on it).\nfunction expectSync( elem, type ) {\n\treturn ( elem === safeActiveElement() ) === ( type === \"focus\" );\n}\n\n// Support: IE <=9 only\n// Accessing document.activeElement can throw unexpectedly\n// https://bugs.jquery.com/ticket/13393\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\nfunction on( elem, types, selector, data, fn, one ) {\n\tvar origFn, type;\n\n\t// Types can be a map of types/handlers\n\tif ( typeof types === \"object\" ) {\n\n\t\t// ( types-Object, selector, data )\n\t\tif ( typeof selector !== \"string\" ) {\n\n\t\t\t// ( types-Object, data )\n\t\t\tdata = data || selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tfor ( type in types ) {\n\t\t\ton( elem, type, selector, data, types[ type ], one );\n\t\t}\n\t\treturn elem;\n\t}\n\n\tif ( data == null && fn == null ) {\n\n\t\t// ( types, fn )\n\t\tfn = selector;\n\t\tdata = selector = undefined;\n\t} else if ( fn == null ) {\n\t\tif ( typeof selector === \"string\" ) {\n\n\t\t\t// ( types, selector, fn )\n\t\t\tfn = data;\n\t\t\tdata = undefined;\n\t\t} else {\n\n\t\t\t// ( types, data, fn )\n\t\t\tfn = data;\n\t\t\tdata = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t}\n\tif ( fn === false ) {\n\t\tfn = returnFalse;\n\t} else if ( !fn ) {\n\t\treturn elem;\n\t}\n\n\tif ( one === 1 ) {\n\t\torigFn = fn;\n\t\tfn = function( event ) {\n\n\t\t\t// Can use an empty set, since event contains the info\n\t\t\tjQuery().off( event );\n\t\t\treturn origFn.apply( this, arguments );\n\t\t};\n\n\t\t// Use same guid so caller can remove using origFn\n\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t}\n\treturn elem.each( function() {\n\t\tjQuery.event.add( this, types, fn, data, selector );\n\t} );\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\n\t\tvar handleObjIn, eventHandle, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.get( elem );\n\n\t\t// Only attach events to objects that accept data\n\t\tif ( !acceptData( elem ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Ensure that invalid selectors throw exceptions at attach time\n\t\t// Evaluate against documentElement in case elem is a non-element node (e.g., document)\n\t\tif ( selector ) {\n\t\t\tjQuery.find.matchesSelector( documentElement, selector );\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !( events = elemData.events ) ) {\n\t\t\tevents = elemData.events = Object.create( null );\n\t\t}\n\t\tif ( !( eventHandle = elemData.handle ) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" && jQuery.event.triggered !== e.type ?\n\t\t\t\t\tjQuery.event.dispatch.apply( elem, arguments ) : undefined;\n\t\t\t};\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend( {\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join( \".\" )\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !( handlers = events[ type ] ) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener if the special events handler returns false\n\t\t\t\tif ( !special.setup ||\n\t\t\t\t\tspecial.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\n\t\tvar j, origCount, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.hasData( elem ) && dataPriv.get( elem );\n\n\t\tif ( !elemData || !( events = elemData.events ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[ 2 ] &&\n\t\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector ||\n\t\t\t\t\t\tselector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown ||\n\t\t\t\t\tspecial.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove data and the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdataPriv.remove( elem, \"handle events\" );\n\t\t}\n\t},\n\n\tdispatch: function( nativeEvent ) {\n\n\t\tvar i, j, ret, matched, handleObj, handlerQueue,\n\t\t\targs = new Array( arguments.length ),\n\n\t\t\t// Make a writable jQuery.Event from the native event object\n\t\t\tevent = jQuery.event.fix( nativeEvent ),\n\n\t\t\thandlers = (\n\t\t\t\t\tdataPriv.get( this, \"events\" ) || Object.create( null )\n\t\t\t\t)[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[ 0 ] = event;\n\n\t\tfor ( i = 1; i < arguments.length; i++ ) {\n\t\t\targs[ i ] = arguments[ i ];\n\t\t}\n\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( ( handleObj = matched.handlers[ j++ ] ) &&\n\t\t\t\t!event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// If the event is namespaced, then each handler is only invoked if it is\n\t\t\t\t// specially universal or its namespaces are a superset of the event's.\n\t\t\t\tif ( !event.rnamespace || handleObj.namespace === false ||\n\t\t\t\t\tevent.rnamespace.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||\n\t\t\t\t\t\thandleObj.handler ).apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( ( event.result = ret ) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar i, handleObj, sel, matchedHandlers, matchedSelectors,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\tif ( delegateCount &&\n\n\t\t\t// Support: IE <=9\n\t\t\t// Black-hole SVG <use> instance trees (trac-13180)\n\t\t\tcur.nodeType &&\n\n\t\t\t// Support: Firefox <=42\n\t\t\t// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)\n\t\t\t// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click\n\t\t\t// Support: IE 11 only\n\t\t\t// ...but not arrow key \"clicks\" of radio inputs, which can have `button` -1 (gh-2343)\n\t\t\t!( event.type === \"click\" && event.button >= 1 ) ) {\n\n\t\t\tfor ( ; cur !== this; cur = cur.parentNode || this ) {\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && !( event.type === \"click\" && cur.disabled === true ) ) {\n\t\t\t\t\tmatchedHandlers = [];\n\t\t\t\t\tmatchedSelectors = {};\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatchedSelectors[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) > -1 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] ) {\n\t\t\t\t\t\t\tmatchedHandlers.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matchedHandlers.length ) {\n\t\t\t\t\t\thandlerQueue.push( { elem: cur, handlers: matchedHandlers } );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tcur = this;\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\taddProp: function( name, hook ) {\n\t\tObject.defineProperty( jQuery.Event.prototype, name, {\n\t\t\tenumerable: true,\n\t\t\tconfigurable: true,\n\n\t\t\tget: isFunction( hook ) ?\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\t\treturn hook( this.originalEvent );\n\t\t\t\t\t}\n\t\t\t\t} :\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\t\treturn this.originalEvent[ name ];\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\tset: function( value ) {\n\t\t\t\tObject.defineProperty( this, name, {\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tconfigurable: true,\n\t\t\t\t\twritable: true,\n\t\t\t\t\tvalue: value\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\t},\n\n\tfix: function( originalEvent ) {\n\t\treturn originalEvent[ jQuery.expando ] ?\n\t\t\toriginalEvent :\n\t\t\tnew jQuery.Event( originalEvent );\n\t},\n\n\tspecial: {\n\t\tload: {\n\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tclick: {\n\n\t\t\t// Utilize native event to ensure correct state for checkable inputs\n\t\t\tsetup: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Claim the first handler\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\t// dataPriv.set( el, \"click\", ... )\n\t\t\t\t\tleverageNative( el, \"click\", returnTrue );\n\t\t\t\t}\n\n\t\t\t\t// Return false to allow normal processing in the caller\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\ttrigger: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Force setup before triggering a click\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\tleverageNative( el, \"click\" );\n\t\t\t\t}\n\n\t\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\t\treturn true;\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, suppress native .click() on links\n\t\t\t// Also prevent it if we're currently inside a leveraged native-event stack\n\t\t\t_default: function( event ) {\n\t\t\t\tvar target = event.target;\n\t\t\t\treturn rcheckableType.test( target.type ) &&\n\t\t\t\t\ttarget.click && nodeName( target, \"input\" ) &&\n\t\t\t\t\tdataPriv.get( target, \"click\" ) ||\n\t\t\t\t\tnodeName( target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Ensure the presence of an event listener that handles manually-triggered\n// synthetic events by interrupting progress until reinvoked in response to\n// *native* events that it fires directly, ensuring that state changes have\n// already occurred before other listeners are invoked.\nfunction leverageNative( el, type, expectSync ) {\n\n\t// Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add\n\tif ( !expectSync ) {\n\t\tif ( dataPriv.get( el, type ) === undefined ) {\n\t\t\tjQuery.event.add( el, type, returnTrue );\n\t\t}\n\t\treturn;\n\t}\n\n\t// Register the controller as a special universal handler for all event namespaces\n\tdataPriv.set( el, type, false );\n\tjQuery.event.add( el, type, {\n\t\tnamespace: false,\n\t\thandler: function( event ) {\n\t\t\tvar notAsync, result,\n\t\t\t\tsaved = dataPriv.get( this, type );\n\n\t\t\tif ( ( event.isTrigger & 1 ) && this[ type ] ) {\n\n\t\t\t\t// Interrupt processing of the outer synthetic .trigger()ed event\n\t\t\t\t// Saved data should be false in such cases, but might be a leftover capture object\n\t\t\t\t// from an async native handler (gh-4350)\n\t\t\t\tif ( !saved.length ) {\n\n\t\t\t\t\t// Store arguments for use when handling the inner native event\n\t\t\t\t\t// There will always be at least one argument (an event object), so this array\n\t\t\t\t\t// will not be confused with a leftover capture object.\n\t\t\t\t\tsaved = slice.call( arguments );\n\t\t\t\t\tdataPriv.set( this, type, saved );\n\n\t\t\t\t\t// Trigger the native event and capture its result\n\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t// focus() and blur() are asynchronous\n\t\t\t\t\tnotAsync = expectSync( this, type );\n\t\t\t\t\tthis[ type ]();\n\t\t\t\t\tresult = dataPriv.get( this, type );\n\t\t\t\t\tif ( saved !== result || notAsync ) {\n\t\t\t\t\t\tdataPriv.set( this, type, false );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = {};\n\t\t\t\t\t}\n\t\t\t\t\tif ( saved !== result ) {\n\n\t\t\t\t\t\t// Cancel the outer synthetic event\n\t\t\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\treturn result.value;\n\t\t\t\t\t}\n\n\t\t\t\t// If this is an inner synthetic event for an event with a bubbling surrogate\n\t\t\t\t// (focus or blur), assume that the surrogate already propagated from triggering the\n\t\t\t\t// native event and prevent that from happening again here.\n\t\t\t\t// This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the\n\t\t\t\t// bubbling surrogate propagates *after* the non-bubbling base), but that seems\n\t\t\t\t// less bad than duplication.\n\t\t\t\t} else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {\n\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t}\n\n\t\t\t// If this is a native event triggered above, everything is now in order\n\t\t\t// Fire an inner synthetic event with the original arguments\n\t\t\t} else if ( saved.length ) {\n\n\t\t\t\t// ...and capture the result\n\t\t\t\tdataPriv.set( this, type, {\n\t\t\t\t\tvalue: jQuery.event.trigger(\n\n\t\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t\t// Extend with the prototype to reset the above stopImmediatePropagation()\n\t\t\t\t\t\tjQuery.extend( saved[ 0 ], jQuery.Event.prototype ),\n\t\t\t\t\t\tsaved.slice( 1 ),\n\t\t\t\t\t\tthis\n\t\t\t\t\t)\n\t\t\t\t} );\n\n\t\t\t\t// Abort handling of the native event\n\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t}\n\t\t}\n\t} );\n}\n\njQuery.removeEvent = function( elem, type, handle ) {\n\n\t// This \"if\" is needed for plain objects\n\tif ( elem.removeEventListener ) {\n\t\telem.removeEventListener( type, handle );\n\t}\n};\n\njQuery.Event = function( src, props ) {\n\n\t// Allow instantiation without the 'new' keyword\n\tif ( !( this instanceof jQuery.Event ) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\n\t\t\t\t// Support: Android <=2.3 only\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t\t// Create target properties\n\t\t// Support: Safari <=6 - 7 only\n\t\t// Target should not be a text node (#504, #13143)\n\t\tthis.target = ( src.target && src.target.nodeType === 3 ) ?\n\t\t\tsrc.target.parentNode :\n\t\t\tsrc.target;\n\n\t\tthis.currentTarget = src.currentTarget;\n\t\tthis.relatedTarget = src.relatedTarget;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || Date.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tconstructor: jQuery.Event,\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\tisSimulated: false,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.preventDefault();\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopPropagation();\n\t\t}\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Includes all common event props including KeyEvent and MouseEvent specific props\njQuery.each( {\n\taltKey: true,\n\tbubbles: true,\n\tcancelable: true,\n\tchangedTouches: true,\n\tctrlKey: true,\n\tdetail: true,\n\teventPhase: true,\n\tmetaKey: true,\n\tpageX: true,\n\tpageY: true,\n\tshiftKey: true,\n\tview: true,\n\t\"char\": true,\n\tcode: true,\n\tcharCode: true,\n\tkey: true,\n\tkeyCode: true,\n\tbutton: true,\n\tbuttons: true,\n\tclientX: true,\n\tclientY: true,\n\toffsetX: true,\n\toffsetY: true,\n\tpointerId: true,\n\tpointerType: true,\n\tscreenX: true,\n\tscreenY: true,\n\ttargetTouches: true,\n\ttoElement: true,\n\ttouches: true,\n\n\twhich: function( event ) {\n\t\tvar button = event.button;\n\n\t\t// Add which for key events\n\t\tif ( event.which == null && rkeyEvent.test( event.type ) ) {\n\t\t\treturn event.charCode != null ? event.charCode : event.keyCode;\n\t\t}\n\n\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\tif ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) {\n\t\t\tif ( button & 1 ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\tif ( button & 2 ) {\n\t\t\t\treturn 3;\n\t\t\t}\n\n\t\t\tif ( button & 4 ) {\n\t\t\t\treturn 2;\n\t\t\t}\n\n\t\t\treturn 0;\n\t\t}\n\n\t\treturn event.which;\n\t}\n}, jQuery.event.addProp );\n\njQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( type, delegateType ) {\n\tjQuery.event.special[ type ] = {\n\n\t\t// Utilize native event if possible so blur/focus sequence is correct\n\t\tsetup: function() {\n\n\t\t\t// Claim the first handler\n\t\t\t// dataPriv.set( this, \"focus\", ... )\n\t\t\t// dataPriv.set( this, \"blur\", ... )\n\t\t\tleverageNative( this, type, expectSync );\n\n\t\t\t// Return false to allow normal processing in the caller\n\t\t\treturn false;\n\t\t},\n\t\ttrigger: function() {\n\n\t\t\t// Force setup before trigger\n\t\t\tleverageNative( this, type );\n\n\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\treturn true;\n\t\t},\n\n\t\tdelegateType: delegateType\n\t};\n} );\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\n// so that event delegation works in jQuery.\n// Do the same for pointerenter/pointerleave and pointerover/pointerout\n//\n// Support: Safari 7 only\n// Safari sends mouseenter too often; see:\n// https://bugs.chromium.org/p/chromium/issues/detail?id=470258\n// for the description of the bug (it existed in older Chrome versions as well).\njQuery.each( {\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mouseenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n} );\n\njQuery.fn.extend( {\n\n\ton: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn );\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ?\n\t\t\t\t\thandleObj.origType + \".\" + handleObj.namespace :\n\t\t\t\t\thandleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t} );\n\t}\n} );\n\n\nvar\n\n\t// Support: IE <=10 - 11, Edge 12 - 13 only\n\t// In IE/Edge using regex groups here causes severe slowdowns.\n\t// See https://connect.microsoft.com/IE/feedback/details/1736512/\n\trnoInnerhtml = /<script|<style|<link/i,\n\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g;\n\n// Prefer a tbody over its parent table for containing new rows\nfunction manipulationTarget( elem, content ) {\n\tif ( nodeName( elem, \"table\" ) &&\n\t\tnodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ) {\n\n\t\treturn jQuery( elem ).children( \"tbody\" )[ 0 ] || elem;\n\t}\n\n\treturn elem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = ( elem.getAttribute( \"type\" ) !== null ) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tif ( ( elem.type || \"\" ).slice( 0, 5 ) === \"true/\" ) {\n\t\telem.type = elem.type.slice( 5 );\n\t} else {\n\t\telem.removeAttribute( \"type\" );\n\t}\n\n\treturn elem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\tvar i, l, type, pdataOld, udataOld, udataCur, events;\n\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\t// 1. Copy private data: events, handlers, etc.\n\tif ( dataPriv.hasData( src ) ) {\n\t\tpdataOld = dataPriv.get( src );\n\t\tevents = pdataOld.events;\n\n\t\tif ( events ) {\n\t\t\tdataPriv.remove( dest, \"handle events\" );\n\n\t\t\tfor ( type in events ) {\n\t\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// 2. Copy user data\n\tif ( dataUser.hasData( src ) ) {\n\t\tudataOld = dataUser.access( src );\n\t\tudataCur = jQuery.extend( {}, udataOld );\n\n\t\tdataUser.set( dest, udataCur );\n\t}\n}\n\n// Fix IE bugs, see support tests\nfunction fixInput( src, dest ) {\n\tvar nodeName = dest.nodeName.toLowerCase();\n\n\t// Fails to persist the checked state of a cloned checkbox or radio button.\n\tif ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\tdest.checked = src.checked;\n\n\t// Fails to return the selected option to the default selected state when cloning options\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\nfunction domManip( collection, args, callback, ignored ) {\n\n\t// Flatten any nested arrays\n\targs = flat( args );\n\n\tvar fragment, first, scripts, hasScripts, node, doc,\n\t\ti = 0,\n\t\tl = collection.length,\n\t\tiNoClone = l - 1,\n\t\tvalue = args[ 0 ],\n\t\tvalueIsFunction = isFunction( value );\n\n\t// We can't cloneNode fragments that contain checked, in WebKit\n\tif ( valueIsFunction ||\n\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\treturn collection.each( function( index ) {\n\t\t\tvar self = collection.eq( index );\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\targs[ 0 ] = value.call( this, index, self.html() );\n\t\t\t}\n\t\t\tdomManip( self, args, callback, ignored );\n\t\t} );\n\t}\n\n\tif ( l ) {\n\t\tfragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );\n\t\tfirst = fragment.firstChild;\n\n\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\tfragment = first;\n\t\t}\n\n\t\t// Require either new content or an interest in ignored elements to invoke the callback\n\t\tif ( first || ignored ) {\n\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\thasScripts = scripts.length;\n\n\t\t\t// Use the original fragment for the last item\n\t\t\t// instead of the first because it can end up\n\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tnode = fragment;\n\n\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\tif ( hasScripts ) {\n\n\t\t\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcallback.call( collection[ i ], node, i );\n\t\t\t}\n\n\t\t\tif ( hasScripts ) {\n\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t// Reenable scripts\n\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t!dataPriv.access( node, \"globalEval\" ) &&\n\t\t\t\t\t\tjQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\tif ( node.src && ( node.type || \"\" ).toLowerCase()  !== \"module\" ) {\n\n\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\tif ( jQuery._evalUrl && !node.noModule ) {\n\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src, {\n\t\t\t\t\t\t\t\t\tnonce: node.nonce || node.getAttribute( \"nonce\" )\n\t\t\t\t\t\t\t\t}, doc );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tDOMEval( node.textContent.replace( rcleanScript, \"\" ), node, doc );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn collection;\n}\n\nfunction remove( elem, selector, keepData ) {\n\tvar node,\n\t\tnodes = selector ? jQuery.filter( selector, elem ) : elem,\n\t\ti = 0;\n\n\tfor ( ; ( node = nodes[ i ] ) != null; i++ ) {\n\t\tif ( !keepData && node.nodeType === 1 ) {\n\t\t\tjQuery.cleanData( getAll( node ) );\n\t\t}\n\n\t\tif ( node.parentNode ) {\n\t\t\tif ( keepData && isAttached( node ) ) {\n\t\t\t\tsetGlobalEval( getAll( node, \"script\" ) );\n\t\t\t}\n\t\t\tnode.parentNode.removeChild( node );\n\t\t}\n\t}\n\n\treturn elem;\n}\n\njQuery.extend( {\n\thtmlPrefilter: function( html ) {\n\t\treturn html;\n\t},\n\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar i, l, srcElements, destElements,\n\t\t\tclone = elem.cloneNode( true ),\n\t\t\tinPage = isAttached( elem );\n\n\t\t// Fix IE cloning issues\n\t\tif ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&\n\t\t\t\t!jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\tfixInput( srcElements[ i ], destElements[ i ] );\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\t\tcloneCopyEvent( srcElements[ i ], destElements[ i ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tcleanData: function( elems ) {\n\t\tvar data, elem, type,\n\t\t\tspecial = jQuery.event.special,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {\n\t\t\tif ( acceptData( elem ) ) {\n\t\t\t\tif ( ( data = elem[ dataPriv.expando ] ) ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataPriv.expando ] = undefined;\n\t\t\t\t}\n\t\t\t\tif ( elem[ dataUser.expando ] ) {\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataUser.expando ] = undefined;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n} );\n\njQuery.fn.extend( {\n\tdetach: function( selector ) {\n\t\treturn remove( this, selector, true );\n\t},\n\n\tremove: function( selector ) {\n\t\treturn remove( this, selector );\n\t},\n\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().each( function() {\n\t\t\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\t\t\tthis.textContent = value;\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t} );\n\t},\n\n\tprepend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t} );\n\t},\n\n\tbefore: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t} );\n\t},\n\n\tafter: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t} );\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = this[ i ] ) != null; i++ ) {\n\t\t\tif ( elem.nodeType === 1 ) {\n\n\t\t\t\t// Prevent memory leaks\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\n\t\t\t\t// Remove any remaining nodes\n\t\t\t\telem.textContent = \"\";\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t} );\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined && elem.nodeType === 1 ) {\n\t\t\t\treturn elem.innerHTML;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t!wrapMap[ ( rtagName.exec( value ) || [ \"\", \"\" ] )[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = jQuery.htmlPrefilter( value );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\t\telem = this[ i ] || {};\n\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch ( e ) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar ignored = [];\n\n\t\t// Make the changes, replacing each non-ignored context element with the new content\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tvar parent = this.parentNode;\n\n\t\t\tif ( jQuery.inArray( this, ignored ) < 0 ) {\n\t\t\t\tjQuery.cleanData( getAll( this ) );\n\t\t\t\tif ( parent ) {\n\t\t\t\t\tparent.replaceChild( elem, this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Force callback invocation\n\t\t}, ignored );\n\t}\n} );\n\njQuery.each( {\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1,\n\t\t\ti = 0;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone( true );\n\t\t\tjQuery( insert[ i ] )[ original ]( elems );\n\n\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t// .get() because push.apply(_, arraylike) throws on ancient WebKit\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n} );\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\nvar getStyles = function( elem ) {\n\n\t\t// Support: IE <=11 only, Firefox <=30 (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tvar view = elem.ownerDocument.defaultView;\n\n\t\tif ( !view || !view.opener ) {\n\t\t\tview = window;\n\t\t}\n\n\t\treturn view.getComputedStyle( elem );\n\t};\n\nvar swap = function( elem, options, callback ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.call( elem );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar rboxStyle = new RegExp( cssExpand.join( \"|\" ), \"i\" );\n\n\n\n( function() {\n\n\t// Executing both pixelPosition & boxSizingReliable tests require only one layout\n\t// so they're executed at the same time to save the second computation.\n\tfunction computeStyleTests() {\n\n\t\t// This is a singleton, we need to execute it only once\n\t\tif ( !div ) {\n\t\t\treturn;\n\t\t}\n\n\t\tcontainer.style.cssText = \"position:absolute;left:-11111px;width:60px;\" +\n\t\t\t\"margin-top:1px;padding:0;border:0\";\n\t\tdiv.style.cssText =\n\t\t\t\"position:relative;display:block;box-sizing:border-box;overflow:scroll;\" +\n\t\t\t\"margin:auto;border:1px;padding:1px;\" +\n\t\t\t\"width:60%;top:1%\";\n\t\tdocumentElement.appendChild( container ).appendChild( div );\n\n\t\tvar divStyle = window.getComputedStyle( div );\n\t\tpixelPositionVal = divStyle.top !== \"1%\";\n\n\t\t// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44\n\t\treliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;\n\n\t\t// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3\n\t\t// Some styles come back with percentage values, even though they shouldn't\n\t\tdiv.style.right = \"60%\";\n\t\tpixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;\n\n\t\t// Support: IE 9 - 11 only\n\t\t// Detect misreporting of content dimensions for box-sizing:border-box elements\n\t\tboxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;\n\n\t\t// Support: IE 9 only\n\t\t// Detect overflow:scroll screwiness (gh-3699)\n\t\t// Support: Chrome <=64\n\t\t// Don't get tricked when zoom affects offsetWidth (gh-4029)\n\t\tdiv.style.position = \"absolute\";\n\t\tscrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12;\n\n\t\tdocumentElement.removeChild( container );\n\n\t\t// Nullify the div so it wouldn't be stored in the memory and\n\t\t// it will also be a sign that checks already performed\n\t\tdiv = null;\n\t}\n\n\tfunction roundPixelMeasures( measure ) {\n\t\treturn Math.round( parseFloat( measure ) );\n\t}\n\n\tvar pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,\n\t\treliableTrDimensionsVal, reliableMarginLeftVal,\n\t\tcontainer = document.createElement( \"div\" ),\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !div.style ) {\n\t\treturn;\n\t}\n\n\t// Support: IE <=9 - 11 only\n\t// Style of cloned element affects source element cloned (#8908)\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\tjQuery.extend( support, {\n\t\tboxSizingReliable: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\t\tpixelBoxStyles: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelBoxStylesVal;\n\t\t},\n\t\tpixelPosition: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelPositionVal;\n\t\t},\n\t\treliableMarginLeft: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn reliableMarginLeftVal;\n\t\t},\n\t\tscrollboxSize: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn scrollboxSizeVal;\n\t\t},\n\n\t\t// Support: IE 9 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Behavior in IE 9 is more subtle than in newer versions & it passes\n\t\t// some versions of this test; make sure not to make it pass there!\n\t\treliableTrDimensions: function() {\n\t\t\tvar table, tr, trChild, trStyle;\n\t\t\tif ( reliableTrDimensionsVal == null ) {\n\t\t\t\ttable = document.createElement( \"table\" );\n\t\t\t\ttr = document.createElement( \"tr\" );\n\t\t\t\ttrChild = document.createElement( \"div\" );\n\n\t\t\t\ttable.style.cssText = \"position:absolute;left:-11111px\";\n\t\t\t\ttr.style.height = \"1px\";\n\t\t\t\ttrChild.style.height = \"9px\";\n\n\t\t\t\tdocumentElement\n\t\t\t\t\t.appendChild( table )\n\t\t\t\t\t.appendChild( tr )\n\t\t\t\t\t.appendChild( trChild );\n\n\t\t\t\ttrStyle = window.getComputedStyle( tr );\n\t\t\t\treliableTrDimensionsVal = parseInt( trStyle.height ) > 3;\n\n\t\t\t\tdocumentElement.removeChild( table );\n\t\t\t}\n\t\t\treturn reliableTrDimensionsVal;\n\t\t}\n\t} );\n} )();\n\n\nfunction curCSS( elem, name, computed ) {\n\tvar width, minWidth, maxWidth, ret,\n\n\t\t// Support: Firefox 51+\n\t\t// Retrieving style before computed somehow\n\t\t// fixes an issue with getting wrong values\n\t\t// on detached elements\n\t\tstyle = elem.style;\n\n\tcomputed = computed || getStyles( elem );\n\n\t// getPropertyValue is needed for:\n\t//   .css('filter') (IE 9 only, #12537)\n\t//   .css('--customProperty) (#3144)\n\tif ( computed ) {\n\t\tret = computed.getPropertyValue( name ) || computed[ name ];\n\n\t\tif ( ret === \"\" && !isAttached( elem ) ) {\n\t\t\tret = jQuery.style( elem, name );\n\t\t}\n\n\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t// Android Browser returns percentage for some values,\n\t\t// but width seems to be reliably pixels.\n\t\t// This is against the CSSOM draft spec:\n\t\t// https://drafts.csswg.org/cssom/#resolved-values\n\t\tif ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\twidth = style.width;\n\t\t\tminWidth = style.minWidth;\n\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\tret = computed.width;\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.width = width;\n\t\t\tstyle.minWidth = minWidth;\n\t\t\tstyle.maxWidth = maxWidth;\n\t\t}\n\t}\n\n\treturn ret !== undefined ?\n\n\t\t// Support: IE <=9 - 11 only\n\t\t// IE returns zIndex value as an integer.\n\t\tret + \"\" :\n\t\tret;\n}\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tif ( conditionFn() ) {\n\n\t\t\t\t// Hook not needed (or it's not possible to use it due\n\t\t\t\t// to missing dependency), remove it.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\t\t\treturn ( this.get = hookFn ).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\nvar cssPrefixes = [ \"Webkit\", \"Moz\", \"ms\" ],\n\temptyStyle = document.createElement( \"div\" ).style,\n\tvendorProps = {};\n\n// Return a vendor-prefixed property or undefined\nfunction vendorPropName( name ) {\n\n\t// Check for vendor prefixed names\n\tvar capName = name[ 0 ].toUpperCase() + name.slice( 1 ),\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in emptyStyle ) {\n\t\t\treturn name;\n\t\t}\n\t}\n}\n\n// Return a potentially-mapped jQuery.cssProps or vendor prefixed property\nfunction finalPropName( name ) {\n\tvar final = jQuery.cssProps[ name ] || vendorProps[ name ];\n\n\tif ( final ) {\n\t\treturn final;\n\t}\n\tif ( name in emptyStyle ) {\n\t\treturn name;\n\t}\n\treturn vendorProps[ name ] = vendorPropName( name ) || name;\n}\n\n\nvar\n\n\t// Swappable if display is none or starts with table\n\t// except \"table\", \"table-cell\", or \"table-caption\"\n\t// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trcustomProp = /^--/,\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t};\n\nfunction setPositiveNumber( _elem, value, subtract ) {\n\n\t// Any relative (+/-) values have already been\n\t// normalized at this point\n\tvar matches = rcssNum.exec( value );\n\treturn matches ?\n\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {\n\tvar i = dimension === \"width\" ? 1 : 0,\n\t\textra = 0,\n\t\tdelta = 0;\n\n\t// Adjustment may not be necessary\n\tif ( box === ( isBorderBox ? \"border\" : \"content\" ) ) {\n\t\treturn 0;\n\t}\n\n\tfor ( ; i < 4; i += 2 ) {\n\n\t\t// Both box models exclude margin\n\t\tif ( box === \"margin\" ) {\n\t\t\tdelta += jQuery.css( elem, box + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\t// If we get here with a content-box, we're seeking \"padding\" or \"border\" or \"margin\"\n\t\tif ( !isBorderBox ) {\n\n\t\t\t// Add padding\n\t\t\tdelta += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// For \"border\" or \"margin\", add border\n\t\t\tif ( box !== \"padding\" ) {\n\t\t\t\tdelta += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\n\t\t\t// But still keep track of it otherwise\n\t\t\t} else {\n\t\t\t\textra += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\n\t\t// If we get here with a border-box (content + padding + border), we're seeking \"content\" or\n\t\t// \"padding\" or \"margin\"\n\t\t} else {\n\n\t\t\t// For \"content\", subtract padding\n\t\t\tif ( box === \"content\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// For \"content\" or \"padding\", subtract border\n\t\t\tif ( box !== \"margin\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Account for positive content-box scroll gutter when requested by providing computedVal\n\tif ( !isBorderBox && computedVal >= 0 ) {\n\n\t\t// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border\n\t\t// Assuming integer scroll gutter, subtract the rest and round down\n\t\tdelta += Math.max( 0, Math.ceil(\n\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\tcomputedVal -\n\t\t\tdelta -\n\t\t\textra -\n\t\t\t0.5\n\n\t\t// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter\n\t\t// Use an explicit zero to avoid NaN (gh-3964)\n\t\t) ) || 0;\n\t}\n\n\treturn delta;\n}\n\nfunction getWidthOrHeight( elem, dimension, extra ) {\n\n\t// Start with computed style\n\tvar styles = getStyles( elem ),\n\n\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).\n\t\t// Fake content-box until we know it's needed to know the true value.\n\t\tboxSizingNeeded = !support.boxSizingReliable() || extra,\n\t\tisBorderBox = boxSizingNeeded &&\n\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\tvalueIsBorderBox = isBorderBox,\n\n\t\tval = curCSS( elem, dimension, styles ),\n\t\toffsetProp = \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 );\n\n\t// Support: Firefox <=54\n\t// Return a confounding non-pixel value or feign ignorance, as appropriate.\n\tif ( rnumnonpx.test( val ) ) {\n\t\tif ( !extra ) {\n\t\t\treturn val;\n\t\t}\n\t\tval = \"auto\";\n\t}\n\n\n\t// Support: IE 9 - 11 only\n\t// Use offsetWidth/offsetHeight for when box sizing is unreliable.\n\t// In those cases, the computed value can be trusted to be border-box.\n\tif ( ( !support.boxSizingReliable() && isBorderBox ||\n\n\t\t// Support: IE 10 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Interestingly, in some cases IE 9 doesn't suffer from this issue.\n\t\t!support.reliableTrDimensions() && nodeName( elem, \"tr\" ) ||\n\n\t\t// Fall back to offsetWidth/offsetHeight when value is \"auto\"\n\t\t// This happens for inline elements with no explicit setting (gh-3571)\n\t\tval === \"auto\" ||\n\n\t\t// Support: Android <=4.1 - 4.3 only\n\t\t// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)\n\t\t!parseFloat( val ) && jQuery.css( elem, \"display\", false, styles ) === \"inline\" ) &&\n\n\t\t// Make sure the element is visible & connected\n\t\telem.getClientRects().length ) {\n\n\t\tisBorderBox = jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t\t// Where available, offsetWidth/offsetHeight approximate border box dimensions.\n\t\t// Where not available (e.g., SVG), assume unreliable box-sizing and interpret the\n\t\t// retrieved value as a content box dimension.\n\t\tvalueIsBorderBox = offsetProp in elem;\n\t\tif ( valueIsBorderBox ) {\n\t\t\tval = elem[ offsetProp ];\n\t\t}\n\t}\n\n\t// Normalize \"\" and auto\n\tval = parseFloat( val ) || 0;\n\n\t// Adjust for the element's box model\n\treturn ( val +\n\t\tboxModelAdjustment(\n\t\t\telem,\n\t\t\tdimension,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles,\n\n\t\t\t// Provide the current computed size to request scroll gutter calculation (gh-3589)\n\t\t\tval\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend( {\n\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"animationIterationCount\": true,\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"gridArea\": true,\n\t\t\"gridColumn\": true,\n\t\t\"gridColumnEnd\": true,\n\t\t\"gridColumnStart\": true,\n\t\t\"gridRow\": true,\n\t\t\"gridRowEnd\": true,\n\t\t\"gridRowStart\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name ),\n\t\t\tstyle = elem.style;\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to query the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Gets hook for the prefixed version, then unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// Convert \"+=\" or \"-=\" to relative numbers (#7345)\n\t\t\tif ( type === \"string\" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {\n\t\t\t\tvalue = adjustCSS( elem, name, ret );\n\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set (#7116)\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add the unit (except for certain CSS properties)\n\t\t\t// The isCustomProp check can be removed in jQuery 4.0 when we only auto-append\n\t\t\t// \"px\" to a few hardcoded values.\n\t\t\tif ( type === \"number\" && !isCustomProp ) {\n\t\t\t\tvalue += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? \"\" : \"px\" );\n\t\t\t}\n\n\t\t\t// background-* props affect original clone's values\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf( \"background\" ) === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !( \"set\" in hooks ) ||\n\t\t\t\t( value = hooks.set( elem, value, extra ) ) !== undefined ) {\n\n\t\t\t\tif ( isCustomProp ) {\n\t\t\t\t\tstyle.setProperty( name, value );\n\t\t\t\t} else {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else {\n\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks &&\n\t\t\t\t( ret = hooks.get( elem, false, extra ) ) !== undefined ) {\n\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar val, num, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name );\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to modify the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Try prefixed name followed by the unprefixed name\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t// Convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Make numeric if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || isFinite( num ) ? num || 0 : val;\n\t\t}\n\n\t\treturn val;\n\t}\n} );\n\njQuery.each( [ \"height\", \"width\" ], function( _i, dimension ) {\n\tjQuery.cssHooks[ dimension ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\n\t\t\t\t// Certain elements can have dimension info if we invisibly show them\n\t\t\t\t// but it must have a current display style that would benefit\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) &&\n\n\t\t\t\t\t// Support: Safari 8+\n\t\t\t\t\t// Table columns in Safari have non-zero offsetWidth & zero\n\t\t\t\t\t// getBoundingClientRect().width unless display is changed.\n\t\t\t\t\t// Support: IE <=11 only\n\t\t\t\t\t// Running getBoundingClientRect on a disconnected node\n\t\t\t\t\t// in IE throws an error.\n\t\t\t\t\t( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?\n\t\t\t\t\t\tswap( elem, cssShow, function() {\n\t\t\t\t\t\t\treturn getWidthOrHeight( elem, dimension, extra );\n\t\t\t\t\t\t} ) :\n\t\t\t\t\t\tgetWidthOrHeight( elem, dimension, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar matches,\n\t\t\t\tstyles = getStyles( elem ),\n\n\t\t\t\t// Only read styles.position if the test has a chance to fail\n\t\t\t\t// to avoid forcing a reflow.\n\t\t\t\tscrollboxSizeBuggy = !support.scrollboxSize() &&\n\t\t\t\t\tstyles.position === \"absolute\",\n\n\t\t\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)\n\t\t\t\tboxSizingNeeded = scrollboxSizeBuggy || extra,\n\t\t\t\tisBorderBox = boxSizingNeeded &&\n\t\t\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\tsubtract = extra ?\n\t\t\t\t\tboxModelAdjustment(\n\t\t\t\t\t\telem,\n\t\t\t\t\t\tdimension,\n\t\t\t\t\t\textra,\n\t\t\t\t\t\tisBorderBox,\n\t\t\t\t\t\tstyles\n\t\t\t\t\t) :\n\t\t\t\t\t0;\n\n\t\t\t// Account for unreliable border-box dimensions by comparing offset* to computed and\n\t\t\t// faking a content-box to get border and padding (gh-3699)\n\t\t\tif ( isBorderBox && scrollboxSizeBuggy ) {\n\t\t\t\tsubtract -= Math.ceil(\n\t\t\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\t\t\tparseFloat( styles[ dimension ] ) -\n\t\t\t\t\tboxModelAdjustment( elem, dimension, \"border\", false, styles ) -\n\t\t\t\t\t0.5\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Convert to pixels if value adjustment is needed\n\t\t\tif ( subtract && ( matches = rcssNum.exec( value ) ) &&\n\t\t\t\t( matches[ 3 ] || \"px\" ) !== \"px\" ) {\n\n\t\t\t\telem.style[ dimension ] = value;\n\t\t\t\tvalue = jQuery.css( elem, dimension );\n\t\t\t}\n\n\t\t\treturn setPositiveNumber( elem, value, subtract );\n\t\t}\n\t};\n} );\n\njQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn ( parseFloat( curCSS( elem, \"marginLeft\" ) ) ||\n\t\t\t\telem.getBoundingClientRect().left -\n\t\t\t\t\tswap( elem, { marginLeft: 0 }, function() {\n\t\t\t\t\t\treturn elem.getBoundingClientRect().left;\n\t\t\t\t\t} )\n\t\t\t\t) + \"px\";\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each( {\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// Assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split( \" \" ) : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( prefix !== \"margin\" ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n} );\n\njQuery.fn.extend( {\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( Array.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t}\n} );\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || jQuery.easing._default;\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\t// Use a property on the element directly when it is not a DOM element,\n\t\t\t// or when there is no matching style property that exists.\n\t\t\tif ( tween.elem.nodeType !== 1 ||\n\t\t\t\ttween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// Passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails.\n\t\t\t// Simple values such as \"10px\" are parsed to Float;\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as-is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\n\t\t\t// Use step hook for back compat.\n\t\t\t// Use cssHook if its there.\n\t\t\t// Use .style if available and use plain properties where available.\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.nodeType === 1 && (\n\t\t\t\t\tjQuery.cssHooks[ tween.prop ] ||\n\t\t\t\t\ttween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9 only\n// Panic based approach to setting things on disconnected nodes\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t},\n\t_default: \"swing\"\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, inProgress,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trrun = /queueHooks$/;\n\nfunction schedule() {\n\tif ( inProgress ) {\n\t\tif ( document.hidden === false && window.requestAnimationFrame ) {\n\t\t\twindow.requestAnimationFrame( schedule );\n\t\t} else {\n\t\t\twindow.setTimeout( schedule, jQuery.fx.interval );\n\t\t}\n\n\t\tjQuery.fx.tick();\n\t}\n}\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\twindow.setTimeout( function() {\n\t\tfxNow = undefined;\n\t} );\n\treturn ( fxNow = Date.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\ti = 0,\n\t\tattrs = { height: type };\n\n\t// If we include width, step value is 1 to do all cssExpand values,\n\t// otherwise step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {\n\n\t\t\t// We're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\tvar prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,\n\t\tisBox = \"width\" in props || \"height\" in props,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHiddenWithinTree( elem ),\n\t\tdataShow = dataPriv.get( elem, \"fxshow\" );\n\n\t// Queue-skipping animations hijack the fx hooks\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always( function() {\n\n\t\t\t// Ensure the complete handler is called before this completes\n\t\t\tanim.always( function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\t}\n\n\t// Detect show/hide animations\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.test( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// Pretend to be hidden if this is a \"show\" and\n\t\t\t\t// there is still data from a stopped show/hide\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\n\t\t\t\t// Ignore all other no-op show/hide data\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\t\t}\n\t}\n\n\t// Bail out if this is a no-op like .hide().hide()\n\tpropTween = !jQuery.isEmptyObject( props );\n\tif ( !propTween && jQuery.isEmptyObject( orig ) ) {\n\t\treturn;\n\t}\n\n\t// Restrict \"overflow\" and \"display\" styles during box animations\n\tif ( isBox && elem.nodeType === 1 ) {\n\n\t\t// Support: IE <=9 - 11, Edge 12 - 15\n\t\t// Record all 3 overflow attributes because IE does not infer the shorthand\n\t\t// from identically-valued overflowX and overflowY and Edge just mirrors\n\t\t// the overflowX value there.\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Identify a display type, preferring old show/hide data over the CSS cascade\n\t\trestoreDisplay = dataShow && dataShow.display;\n\t\tif ( restoreDisplay == null ) {\n\t\t\trestoreDisplay = dataPriv.get( elem, \"display\" );\n\t\t}\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\tif ( display === \"none\" ) {\n\t\t\tif ( restoreDisplay ) {\n\t\t\t\tdisplay = restoreDisplay;\n\t\t\t} else {\n\n\t\t\t\t// Get nonempty value(s) by temporarily forcing visibility\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t\trestoreDisplay = elem.style.display || restoreDisplay;\n\t\t\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\t\t\tshowHide( [ elem ] );\n\t\t\t}\n\t\t}\n\n\t\t// Animate inline elements as inline-block\n\t\tif ( display === \"inline\" || display === \"inline-block\" && restoreDisplay != null ) {\n\t\t\tif ( jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t\t// Restore the original display value at the end of pure show/hide animations\n\t\t\t\tif ( !propTween ) {\n\t\t\t\t\tanim.done( function() {\n\t\t\t\t\t\tstyle.display = restoreDisplay;\n\t\t\t\t\t} );\n\t\t\t\t\tif ( restoreDisplay == null ) {\n\t\t\t\t\t\tdisplay = style.display;\n\t\t\t\t\t\trestoreDisplay = display === \"none\" ? \"\" : display;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tanim.always( function() {\n\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t} );\n\t}\n\n\t// Implement show/hide animations\n\tpropTween = false;\n\tfor ( prop in orig ) {\n\n\t\t// General show/hide setup for this element animation\n\t\tif ( !propTween ) {\n\t\t\tif ( dataShow ) {\n\t\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\t\thidden = dataShow.hidden;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdataShow = dataPriv.access( elem, \"fxshow\", { display: restoreDisplay } );\n\t\t\t}\n\n\t\t\t// Store hidden/visible for toggle so `.stop().toggle()` \"reverses\"\n\t\t\tif ( toggle ) {\n\t\t\t\tdataShow.hidden = !hidden;\n\t\t\t}\n\n\t\t\t// Show elements before animating them\n\t\t\tif ( hidden ) {\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t}\n\n\t\t\t/* eslint-disable no-loop-func */\n\n\t\t\tanim.done( function() {\n\n\t\t\t/* eslint-enable no-loop-func */\n\n\t\t\t\t// The final step of a \"hide\" animation is actually hiding the element\n\t\t\t\tif ( !hidden ) {\n\t\t\t\t\tshowHide( [ elem ] );\n\t\t\t\t}\n\t\t\t\tdataPriv.remove( elem, \"fxshow\" );\n\t\t\t\tfor ( prop in orig ) {\n\t\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Per-property setup\n\t\tpropTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\t\tif ( !( prop in dataShow ) ) {\n\t\t\tdataShow[ prop ] = propTween.start;\n\t\t\tif ( hidden ) {\n\t\t\t\tpropTween.end = propTween.start;\n\t\t\t\tpropTween.start = 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( Array.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// Not quite $.extend, this won't overwrite existing keys.\n\t\t\t// Reusing 'index' because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = Animation.prefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\n\t\t\t// Don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t} ),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\n\t\t\t\t// Support: Android 2.3 only\n\t\t\t\t// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ] );\n\n\t\t\t// If there's more to do, yield\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t}\n\n\t\t\t// If this was an empty animation, synthesize a final progress notification\n\t\t\tif ( !length ) {\n\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t}\n\n\t\t\t// Resolve the animation and report its conclusion\n\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\treturn false;\n\t\t},\n\t\tanimation = deferred.promise( {\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, {\n\t\t\t\tspecialEasing: {},\n\t\t\t\teasing: jQuery.easing._default\n\t\t\t}, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\n\t\t\t\t\t// If we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// Resolve when we played the last frame; otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t} ),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length; index++ ) {\n\t\tresult = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\tif ( isFunction( result.stop ) ) {\n\t\t\t\tjQuery._queueHooks( animation.elem, animation.opts.queue ).stop =\n\t\t\t\t\tresult.stop.bind( result );\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\t// Attach callbacks from options\n\tanimation\n\t\t.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t} )\n\t);\n\n\treturn animation;\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\n\ttweeners: {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value );\n\t\t\tadjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );\n\t\t\treturn tween;\n\t\t} ]\n\t},\n\n\ttweener: function( props, callback ) {\n\t\tif ( isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.match( rnothtmlwhite );\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\tAnimation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];\n\t\t\tAnimation.tweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilters: [ defaultPrefilter ],\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tAnimation.prefilters.unshift( callback );\n\t\t} else {\n\t\t\tAnimation.prefilters.push( callback );\n\t\t}\n\t}\n} );\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tisFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !isFunction( easing ) && easing\n\t};\n\n\t// Go to the end state if fx are off\n\tif ( jQuery.fx.off ) {\n\t\topt.duration = 0;\n\n\t} else {\n\t\tif ( typeof opt.duration !== \"number\" ) {\n\t\t\tif ( opt.duration in jQuery.fx.speeds ) {\n\t\t\t\topt.duration = jQuery.fx.speeds[ opt.duration ];\n\n\t\t\t} else {\n\t\t\t\topt.duration = jQuery.fx.speeds._default;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend( {\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// Show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHiddenWithinTree ).css( \"opacity\", 0 ).show()\n\n\t\t\t// Animate to the value specified\n\t\t\t.end().animate( { opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || dataPriv.get( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = dataPriv.get( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this &&\n\t\t\t\t\t( type == null || timers[ index ].queue === type ) ) {\n\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Start the next in the queue if the last step wasn't forced.\n\t\t\t// Timers currently will call their complete callbacks, which\n\t\t\t// will dequeue but only if they were gotoEnd.\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t} );\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tvar index,\n\t\t\t\tdata = dataPriv.get( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// Enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// Empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// Look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t} );\n\t}\n} );\n\njQuery.each( [ \"toggle\", \"show\", \"hide\" ], function( _i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n} );\n\n// Generate shortcuts for custom animations\njQuery.each( {\n\tslideDown: genFx( \"show\" ),\n\tslideUp: genFx( \"hide\" ),\n\tslideToggle: genFx( \"toggle\" ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n} );\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ti = 0,\n\t\ttimers = jQuery.timers;\n\n\tfxNow = Date.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\n\t\t// Run the timer and safely remove it when done (allowing for external removal)\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tjQuery.fx.start();\n};\n\njQuery.fx.interval = 13;\njQuery.fx.start = function() {\n\tif ( inProgress ) {\n\t\treturn;\n\t}\n\n\tinProgress = true;\n\tschedule();\n};\n\njQuery.fx.stop = function() {\n\tinProgress = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = window.setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\twindow.clearTimeout( timeout );\n\t\t};\n\t} );\n};\n\n\n( function() {\n\tvar input = document.createElement( \"input\" ),\n\t\tselect = document.createElement( \"select\" ),\n\t\topt = select.appendChild( document.createElement( \"option\" ) );\n\n\tinput.type = \"checkbox\";\n\n\t// Support: Android <=4.3 only\n\t// Default value for a checkbox should be \"on\"\n\tsupport.checkOn = input.value !== \"\";\n\n\t// Support: IE <=11 only\n\t// Must access selectedIndex to make default options select\n\tsupport.optSelected = opt.selected;\n\n\t// Support: IE <=11 only\n\t// An input loses its value after becoming a radio\n\tinput = document.createElement( \"input\" );\n\tinput.value = \"t\";\n\tinput.type = \"radio\";\n\tsupport.radioValue = input.value === \"t\";\n} )();\n\n\nvar boolHook,\n\tattrHandle = jQuery.expr.attrHandle;\n\njQuery.fn.extend( {\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tattr: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set attributes on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// Attribute hooks are determined by the lowercase version\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\thooks = jQuery.attrHooks[ name.toLowerCase() ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\treturn value;\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tret = jQuery.find.attr( elem, name );\n\n\t\t// Non-existent attributes return null, we normalize to undefined\n\t\treturn ret == null ? undefined : ret;\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" &&\n\t\t\t\t\tnodeName( elem, \"input\" ) ) {\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name,\n\t\t\ti = 0,\n\n\t\t\t// Attribute names can contain non-HTML whitespace characters\n\t\t\t// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n\t\t\tattrNames = value && value.match( rnothtmlwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( ( name = attrNames[ i++ ] ) ) {\n\t\t\t\telem.removeAttribute( name );\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Hooks for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else {\n\t\t\telem.setAttribute( name, name );\n\t\t}\n\t\treturn name;\n\t}\n};\n\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( _i, name ) {\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = function( elem, name, isXML ) {\n\t\tvar ret, handle,\n\t\t\tlowercaseName = name.toLowerCase();\n\n\t\tif ( !isXML ) {\n\n\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\thandle = attrHandle[ lowercaseName ];\n\t\t\tattrHandle[ lowercaseName ] = ret;\n\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\tlowercaseName :\n\t\t\t\tnull;\n\t\t\tattrHandle[ lowercaseName ] = handle;\n\t\t}\n\t\treturn ret;\n\t};\n} );\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend( {\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tdelete this[ jQuery.propFix[ name ] || name ];\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set properties on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\treturn ( elem[ name ] = value );\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\treturn elem[ name ];\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\t// Support: IE <=9 - 11 only\n\t\t\t\t// elem.tabIndex doesn't always return the\n\t\t\t\t// correct value when it hasn't been explicitly set\n\t\t\t\t// https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\tif ( tabindex ) {\n\t\t\t\t\treturn parseInt( tabindex, 10 );\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\trfocusable.test( elem.nodeName ) ||\n\t\t\t\t\trclickable.test( elem.nodeName ) &&\n\t\t\t\t\telem.href\n\t\t\t\t) {\n\t\t\t\t\treturn 0;\n\t\t\t\t}\n\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t}\n} );\n\n// Support: IE <=11 only\n// Accessing the selectedIndex property\n// forces the browser to respect setting selected\n// on the option\n// The getter ensures a default option is selected\n// when in an optgroup\n// eslint rule \"no-unused-expressions\" is disabled for this code\n// since it considers such accessions noop\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent && parent.parentNode ) {\n\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\t\tset: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\njQuery.each( [\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n} );\n\n\n\n\n\t// Strip and collapse whitespace according to HTML spec\n\t// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace\n\tfunction stripAndCollapse( value ) {\n\t\tvar tokens = value.match( rnothtmlwhite ) || [];\n\t\treturn tokens.join( \" \" );\n\t}\n\n\nfunction getClass( elem ) {\n\treturn elem.getAttribute && elem.getAttribute( \"class\" ) || \"\";\n}\n\nfunction classesToArray( value ) {\n\tif ( Array.isArray( value ) ) {\n\t\treturn value;\n\t}\n\tif ( typeof value === \"string\" ) {\n\t\treturn value.match( rnothtmlwhite ) || [];\n\t}\n\treturn [];\n}\n\njQuery.fn.extend( {\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( !arguments.length ) {\n\t\t\treturn this.attr( \"class\", \"\" );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) > -1 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value,\n\t\t\tisValidValue = type === \"string\" || Array.isArray( value );\n\n\t\tif ( typeof stateVal === \"boolean\" && isValidValue ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).toggleClass(\n\t\t\t\t\tvalue.call( this, i, getClass( this ), stateVal ),\n\t\t\t\t\tstateVal\n\t\t\t\t);\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar className, i, self, classNames;\n\n\t\t\tif ( isValidValue ) {\n\n\t\t\t\t// Toggle individual class names\n\t\t\t\ti = 0;\n\t\t\t\tself = jQuery( this );\n\t\t\t\tclassNames = classesToArray( value );\n\n\t\t\t\twhile ( ( className = classNames[ i++ ] ) ) {\n\n\t\t\t\t\t// Check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( value === undefined || type === \"boolean\" ) {\n\t\t\t\tclassName = getClass( this );\n\t\t\t\tif ( className ) {\n\n\t\t\t\t\t// Store className if set\n\t\t\t\t\tdataPriv.set( this, \"__className__\", className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed `false`,\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tif ( this.setAttribute ) {\n\t\t\t\t\tthis.setAttribute( \"class\",\n\t\t\t\t\t\tclassName || value === false ?\n\t\t\t\t\t\t\"\" :\n\t\t\t\t\t\tdataPriv.get( this, \"__className__\" ) || \"\"\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className, elem,\n\t\t\ti = 0;\n\n\t\tclassName = \" \" + selector + \" \";\n\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\tif ( elem.nodeType === 1 &&\n\t\t\t\t( \" \" + stripAndCollapse( getClass( elem ) ) + \" \" ).indexOf( className ) > -1 ) {\n\t\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n} );\n\n\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend( {\n\tval: function( value ) {\n\t\tvar hooks, ret, valueIsFunction,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] ||\n\t\t\t\t\tjQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks &&\n\t\t\t\t\t\"get\" in hooks &&\n\t\t\t\t\t( ret = hooks.get( elem, \"value\" ) ) !== undefined\n\t\t\t\t) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\t// Handle most common string cases\n\t\t\t\tif ( typeof ret === \"string\" ) {\n\t\t\t\t\treturn ret.replace( rreturn, \"\" );\n\t\t\t\t}\n\n\t\t\t\t// Handle cases where value is null/undef or number\n\t\t\t\treturn ret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tvalueIsFunction = isFunction( value );\n\n\t\treturn this.each( function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\n\t\t\t} else if ( Array.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !( \"set\" in hooks ) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\n\t\t\t\t\t// Support: IE <=10 - 11 only\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\t// Strip and collapse whitespace\n\t\t\t\t\t// https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n\t\t\t\t\tstripAndCollapse( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option, i,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\",\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length;\n\n\t\t\t\tif ( index < 0 ) {\n\t\t\t\t\ti = max;\n\n\t\t\t\t} else {\n\t\t\t\t\ti = one ? index : 0;\n\t\t\t\t}\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t// IE8-9 doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t!option.disabled &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled ||\n\t\t\t\t\t\t\t\t!nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t/* eslint-disable no-cond-assign */\n\n\t\t\t\t\tif ( option.selected =\n\t\t\t\t\t\tjQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1\n\t\t\t\t\t) {\n\t\t\t\t\t\toptionSet = true;\n\t\t\t\t\t}\n\n\t\t\t\t\t/* eslint-enable no-cond-assign */\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\t\t\t\treturn values;\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Radios and checkboxes getter/setter\njQuery.each( [ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( Array.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\treturn elem.getAttribute( \"value\" ) === null ? \"on\" : elem.value;\n\t\t};\n\t}\n} );\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\nsupport.focusin = \"onfocusin\" in window;\n\n\nvar rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\tstopPropagationCallback = function( e ) {\n\t\te.stopPropagation();\n\t};\n\njQuery.extend( jQuery.event, {\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\n\t\tvar i, cur, tmp, bubbleType, ontype, handle, special, lastElement,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split( \".\" ) : [];\n\n\t\tcur = lastElement = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) > -1 ) {\n\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split( \".\" );\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf( \":\" ) < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.rnamespace = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === ( elem.ownerDocument || document ) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tlastElement = cur;\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = (\n\t\t\t\t\tdataPriv.get( cur, \"events\" ) || Object.create( null )\n\t\t\t\t)[ event.type ] &&\n\t\t\t\tdataPriv.get( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( ( !special._default ||\n\t\t\t\tspecial._default.apply( eventPath.pop(), data ) === false ) &&\n\t\t\t\tacceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name as the event.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.addEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\telem[ type ]();\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.removeEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\t// Piggyback on a donor event to simulate a different one\n\t// Used only for `focus(in | out)` events\n\tsimulate: function( type, elem, event ) {\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true\n\t\t\t}\n\t\t);\n\n\t\tjQuery.event.trigger( e, null, elem );\n\t}\n\n} );\n\njQuery.fn.extend( {\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t} );\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[ 0 ];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n} );\n\n\n// Support: Firefox <=44\n// Firefox doesn't have focus(in | out) events\n// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n//\n// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1\n// focus(in | out) events fire after focus & blur events,\n// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857\nif ( !support.focusin ) {\n\tjQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );\n\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\n\t\t\t\t// Handle: regular nodes (via `this.ownerDocument`), window\n\t\t\t\t// (via `this.document`) & document (via `this`).\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tdataPriv.access( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tdataPriv.remove( doc, fix );\n\n\t\t\t\t} else {\n\t\t\t\t\tdataPriv.access( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t} );\n}\nvar location = window.location;\n\nvar nonce = { guid: Date.now() };\n\nvar rquery = ( /\\?/ );\n\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\n\t// Support: IE 9 - 11 only\n\t// IE throws on parseFromString with invalid input.\n\ttry {\n\t\txml = ( new window.DOMParser() ).parseFromString( data, \"text/xml\" );\n\t} catch ( e ) {\n\t\txml = undefined;\n\t}\n\n\tif ( !xml || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( Array.isArray( obj ) ) {\n\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams(\n\t\t\t\t\tprefix + \"[\" + ( typeof v === \"object\" && v != null ? i : \"\" ) + \"]\",\n\t\t\t\t\tv,\n\t\t\t\t\ttraditional,\n\t\t\t\t\tadd\n\t\t\t\t);\n\t\t\t}\n\t\t} );\n\n\t} else if ( !traditional && toType( obj ) === \"object\" ) {\n\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, valueOrFunction ) {\n\n\t\t\t// If value is a function, invoke it and use its return value\n\t\t\tvar value = isFunction( valueOrFunction ) ?\n\t\t\t\tvalueOrFunction() :\n\t\t\t\tvalueOrFunction;\n\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" +\n\t\t\t\tencodeURIComponent( value == null ? \"\" : value );\n\t\t};\n\n\tif ( a == null ) {\n\t\treturn \"\";\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t} );\n\n\t} else {\n\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" );\n};\n\njQuery.fn.extend( {\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map( function() {\n\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t} )\n\t\t.filter( function() {\n\t\t\tvar type = this.type;\n\n\t\t\t// Use .is( \":disabled\" ) so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t} )\n\t\t.map( function( _i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\tif ( val == null ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tif ( Array.isArray( val ) ) {\n\t\t\t\treturn jQuery.map( val, function( val ) {\n\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t} ).get();\n\t}\n} );\n\n\nvar\n\tr20 = /%20/g,\n\trhash = /#.*$/,\n\trantiCache = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)$/mg,\n\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat( \"*\" ),\n\n\t// Anchor tag for parsing the document origin\n\toriginAnchor = document.createElement( \"a\" );\n\toriginAnchor.href = location.href;\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];\n\n\t\tif ( isFunction( func ) ) {\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( ( dataType = dataTypes[ i++ ] ) ) {\n\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType[ 0 ] === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" &&\n\t\t\t\t!seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t} );\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar key, deep,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\n\tvar ct, type, finalDataType, firstDataType,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"Content-Type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[ 0 ] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s.throws ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tstate: \"parsererror\",\n\t\t\t\t\t\t\t\terror: conv ? e : \"No conversion from \" + prev + \" to \" + current\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend( {\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: location.href,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( location.protocol ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /\\bxml\\b/,\n\t\t\thtml: /\\bhtml/,\n\t\t\tjson: /\\bjson\\b/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": JSON.parse,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar transport,\n\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\n\t\t\t// Response headers\n\t\t\tresponseHeadersString,\n\t\t\tresponseHeaders,\n\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// Url cleanup var\n\t\t\turlAnchor,\n\n\t\t\t// Request state (becomes false upon send and true upon completion)\n\t\t\tcompleted,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\t// Loop variable\n\t\t\ti,\n\n\t\t\t// uncached part of the url\n\t\t\tuncached,\n\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context &&\n\t\t\t\t( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\t\tjQuery.event,\n\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( completed ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[ 1 ].toLowerCase() + \" \" ] =\n\t\t\t\t\t\t\t\t\t( responseHeaders[ match[ 1 ].toLowerCase() + \" \" ] || [] )\n\t\t\t\t\t\t\t\t\t\t.concat( match[ 2 ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() + \" \" ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match.join( \", \" );\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn completed ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\tname = requestHeadersNames[ name.toLowerCase() ] =\n\t\t\t\t\t\t\trequestHeadersNames[ name.toLowerCase() ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( completed ) {\n\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Lazy-add the new callbacks in a way that preserves old ones\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR );\n\n\t\t// Add protocol if not provided (prefilters might expect it)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || location.href ) + \"\" )\n\t\t\t.replace( rprotocol, location.protocol + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = ( s.dataType || \"*\" ).toLowerCase().match( rnothtmlwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when the origin doesn't match the current origin.\n\t\tif ( s.crossDomain == null ) {\n\t\t\turlAnchor = document.createElement( \"a\" );\n\n\t\t\t// Support: IE <=8 - 11, Edge 12 - 15\n\t\t\t// IE throws exception on accessing the href property if url is malformed,\n\t\t\t// e.g. http://example.com:80x/\n\t\t\ttry {\n\t\t\t\turlAnchor.href = s.url;\n\n\t\t\t\t// Support: IE <=8 - 11 only\n\t\t\t\t// Anchor's host property isn't correctly set when s.url is relative\n\t\t\t\turlAnchor.href = urlAnchor.href;\n\t\t\t\ts.crossDomain = originAnchor.protocol + \"//\" + originAnchor.host !==\n\t\t\t\t\turlAnchor.protocol + \"//\" + urlAnchor.host;\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// If there is an error parsing the URL, assume it is crossDomain,\n\t\t\t\t// it can be rejected by the transport if it is invalid\n\t\t\t\ts.crossDomain = true;\n\t\t\t}\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( completed ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\t// Remove hash to simplify url manipulation\n\t\tcacheURL = s.url.replace( rhash, \"\" );\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// Remember the hash so we can put it back\n\t\t\tuncached = s.url.slice( cacheURL.length );\n\n\t\t\t// If data is available and should be processed, append data to url\n\t\t\tif ( s.data && ( s.processData || typeof s.data === \"string\" ) ) {\n\t\t\t\tcacheURL += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data;\n\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add or update anti-cache param if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\tcacheURL = cacheURL.replace( rantiCache, \"$1\" );\n\t\t\t\tuncached = ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + ( nonce.guid++ ) +\n\t\t\t\t\tuncached;\n\t\t\t}\n\n\t\t\t// Put hash and anti-cache on the URL that will be requested (gh-1732)\n\t\t\ts.url = cacheURL + uncached;\n\n\t\t// Change '%20' to '+' if this is encoded form body content (gh-2658)\n\t\t} else if ( s.data && s.processData &&\n\t\t\t( s.contentType || \"\" ).indexOf( \"application/x-www-form-urlencoded\" ) === 0 ) {\n\t\t\ts.data = s.data.replace( r20, \"+\" );\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[ 0 ] ] +\n\t\t\t\t\t( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend &&\n\t\t\t( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {\n\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// Aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tcompleteDeferred.add( s.complete );\n\t\tjqXHR.done( s.success );\n\t\tjqXHR.fail( s.error );\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\n\t\t\t// If request was aborted inside ajaxSend, stop there\n\t\t\tif ( completed ) {\n\t\t\t\treturn jqXHR;\n\t\t\t}\n\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = window.setTimeout( function() {\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tcompleted = false;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// Rethrow post-completion exceptions\n\t\t\t\tif ( completed ) {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\n\t\t\t\t// Propagate others as results\n\t\t\t\tdone( -1, e );\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Ignore repeat invocations\n\t\t\tif ( completed ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tcompleted = true;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\twindow.clearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Use a noop converter for missing script\n\t\t\tif ( !isSuccess && jQuery.inArray( \"script\", s.dataTypes ) > -1 ) {\n\t\t\t\ts.converters[ \"text script\" ] = function() {};\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"Last-Modified\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"etag\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Extract error from statusText and normalize for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n} );\n\njQuery.each( [ \"get\", \"post\" ], function( _i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\n\t\t// Shift arguments if data argument was omitted\n\t\tif ( isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\t// The url can be an options object (which then must have .url)\n\t\treturn jQuery.ajax( jQuery.extend( {\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t}, jQuery.isPlainObject( url ) && url ) );\n\t};\n} );\n\njQuery.ajaxPrefilter( function( s ) {\n\tvar i;\n\tfor ( i in s.headers ) {\n\t\tif ( i.toLowerCase() === \"content-type\" ) {\n\t\t\ts.contentType = s.headers[ i ] || \"\";\n\t\t}\n\t}\n} );\n\n\njQuery._evalUrl = function( url, options, doc ) {\n\treturn jQuery.ajax( {\n\t\turl: url,\n\n\t\t// Make this explicit, since user can override this through ajaxSetup (#11264)\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tcache: true,\n\t\tasync: false,\n\t\tglobal: false,\n\n\t\t// Only evaluate the response if it is successful (gh-4126)\n\t\t// dataFilter is not invoked for failure responses, so using it instead\n\t\t// of the default converter is kludgy but it works.\n\t\tconverters: {\n\t\t\t\"text script\": function() {}\n\t\t},\n\t\tdataFilter: function( response ) {\n\t\t\tjQuery.globalEval( response, options, doc );\n\t\t}\n\t} );\n};\n\n\njQuery.fn.extend( {\n\twrapAll: function( html ) {\n\t\tvar wrap;\n\n\t\tif ( this[ 0 ] ) {\n\t\t\tif ( isFunction( html ) ) {\n\t\t\t\thtml = html.call( this[ 0 ] );\n\t\t\t}\n\n\t\t\t// The elements to wrap the target around\n\t\t\twrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );\n\n\t\t\tif ( this[ 0 ].parentNode ) {\n\t\t\t\twrap.insertBefore( this[ 0 ] );\n\t\t\t}\n\n\t\t\twrap.map( function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstElementChild ) {\n\t\t\t\t\telem = elem.firstElementChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t} ).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapInner( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t} );\n\t},\n\n\twrap: function( html ) {\n\t\tvar htmlIsFunction = isFunction( html );\n\n\t\treturn this.each( function( i ) {\n\t\t\tjQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );\n\t\t} );\n\t},\n\n\tunwrap: function( selector ) {\n\t\tthis.parent( selector ).not( \"body\" ).each( function() {\n\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t} );\n\t\treturn this;\n\t}\n} );\n\n\njQuery.expr.pseudos.hidden = function( elem ) {\n\treturn !jQuery.expr.pseudos.visible( elem );\n};\njQuery.expr.pseudos.visible = function( elem ) {\n\treturn !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );\n};\n\n\n\n\njQuery.ajaxSettings.xhr = function() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch ( e ) {}\n};\n\nvar xhrSuccessStatus = {\n\n\t\t// File protocol always yields status code 0, assume 200\n\t\t0: 200,\n\n\t\t// Support: IE <=9 only\n\t\t// #1450: sometimes IE returns 1223 when it should be 204\n\t\t1223: 204\n\t},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nsupport.ajax = xhrSupported = !!xhrSupported;\n\njQuery.ajaxTransport( function( options ) {\n\tvar callback, errorCallback;\n\n\t// Cross domain only allowed if supported through XMLHttpRequest\n\tif ( support.cors || xhrSupported && !options.crossDomain ) {\n\t\treturn {\n\t\t\tsend: function( headers, complete ) {\n\t\t\t\tvar i,\n\t\t\t\t\txhr = options.xhr();\n\n\t\t\t\txhr.open(\n\t\t\t\t\toptions.type,\n\t\t\t\t\toptions.url,\n\t\t\t\t\toptions.async,\n\t\t\t\t\toptions.username,\n\t\t\t\t\toptions.password\n\t\t\t\t);\n\n\t\t\t\t// Apply custom fields if provided\n\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Override mime type if needed\n\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t}\n\n\t\t\t\t// X-Requested-With header\n\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\tif ( !options.crossDomain && !headers[ \"X-Requested-With\" ] ) {\n\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t}\n\n\t\t\t\t// Set headers\n\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] );\n\t\t\t\t}\n\n\t\t\t\t// Callback\n\t\t\t\tcallback = function( type ) {\n\t\t\t\t\treturn function() {\n\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\tcallback = errorCallback = xhr.onload =\n\t\t\t\t\t\t\t\txhr.onerror = xhr.onabort = xhr.ontimeout =\n\t\t\t\t\t\t\t\t\txhr.onreadystatechange = null;\n\n\t\t\t\t\t\t\tif ( type === \"abort\" ) {\n\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t} else if ( type === \"error\" ) {\n\n\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t// On a manual native abort, IE9 throws\n\t\t\t\t\t\t\t\t// errors on any property access that is not readyState\n\t\t\t\t\t\t\t\tif ( typeof xhr.status !== \"number\" ) {\n\t\t\t\t\t\t\t\t\tcomplete( 0, \"error\" );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcomplete(\n\n\t\t\t\t\t\t\t\t\t\t// File: protocol always yields status 0; see #8605, #14207\n\t\t\t\t\t\t\t\t\t\txhr.status,\n\t\t\t\t\t\t\t\t\t\txhr.statusText\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tcomplete(\n\t\t\t\t\t\t\t\t\txhrSuccessStatus[ xhr.status ] || xhr.status,\n\t\t\t\t\t\t\t\t\txhr.statusText,\n\n\t\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t\t// IE9 has no XHR2 but throws on binary (trac-11426)\n\t\t\t\t\t\t\t\t\t// For XHR2 non-text, let the caller handle it (gh-2498)\n\t\t\t\t\t\t\t\t\t( xhr.responseType || \"text\" ) !== \"text\"  ||\n\t\t\t\t\t\t\t\t\ttypeof xhr.responseText !== \"string\" ?\n\t\t\t\t\t\t\t\t\t\t{ binary: xhr.response } :\n\t\t\t\t\t\t\t\t\t\t{ text: xhr.responseText },\n\t\t\t\t\t\t\t\t\txhr.getAllResponseHeaders()\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t};\n\n\t\t\t\t// Listen to events\n\t\t\t\txhr.onload = callback();\n\t\t\t\terrorCallback = xhr.onerror = xhr.ontimeout = callback( \"error\" );\n\n\t\t\t\t// Support: IE 9 only\n\t\t\t\t// Use onreadystatechange to replace onabort\n\t\t\t\t// to handle uncaught aborts\n\t\t\t\tif ( xhr.onabort !== undefined ) {\n\t\t\t\t\txhr.onabort = errorCallback;\n\t\t\t\t} else {\n\t\t\t\t\txhr.onreadystatechange = function() {\n\n\t\t\t\t\t\t// Check readyState before timeout as it changes\n\t\t\t\t\t\tif ( xhr.readyState === 4 ) {\n\n\t\t\t\t\t\t\t// Allow onerror to be called first,\n\t\t\t\t\t\t\t// but that will not handle a native abort\n\t\t\t\t\t\t\t// Also, save errorCallback to a variable\n\t\t\t\t\t\t\t// as xhr.onerror cannot be accessed\n\t\t\t\t\t\t\twindow.setTimeout( function() {\n\t\t\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\t\t\terrorCallback();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\t// Create the abort callback\n\t\t\t\tcallback = callback( \"abort\" );\n\n\t\t\t\ttry {\n\n\t\t\t\t\t// Do send the request (this may raise an exception)\n\t\t\t\t\txhr.send( options.hasContent && options.data || null );\n\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t// #14683: Only rethrow if this hasn't been notified as an error yet\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tthrow e;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\n// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)\njQuery.ajaxPrefilter( function( s ) {\n\tif ( s.crossDomain ) {\n\t\ts.contents.script = false;\n\t}\n} );\n\n// Install script dataType\njQuery.ajaxSetup( {\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, \" +\n\t\t\t\"application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /\\b(?:java|ecma)script\\b/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n} );\n\n// Handle cache's special case and crossDomain\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t}\n} );\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function( s ) {\n\n\t// This transport only deals with cross domain or forced-by-attrs requests\n\tif ( s.crossDomain || s.scriptAttrs ) {\n\t\tvar script, callback;\n\t\treturn {\n\t\t\tsend: function( _, complete ) {\n\t\t\t\tscript = jQuery( \"<script>\" )\n\t\t\t\t\t.attr( s.scriptAttrs || {} )\n\t\t\t\t\t.prop( { charset: s.scriptCharset, src: s.url } )\n\t\t\t\t\t.on( \"load error\", callback = function( evt ) {\n\t\t\t\t\t\tscript.remove();\n\t\t\t\t\t\tcallback = null;\n\t\t\t\t\t\tif ( evt ) {\n\t\t\t\t\t\t\tcomplete( evt.type === \"error\" ? 404 : 200, evt.type );\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\tdocument.head.appendChild( script[ 0 ] );\n\t\t\t},\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup( {\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce.guid++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n} );\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" &&\n\t\t\t\t( s.contentType || \"\" )\n\t\t\t\t\t.indexOf( \"application/x-www-form-urlencoded\" ) === 0 &&\n\t\t\t\trjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[ \"script json\" ] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// Force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always( function() {\n\n\t\t\t// If previous value didn't exist - remove it\n\t\t\tif ( overwritten === undefined ) {\n\t\t\t\tjQuery( window ).removeProp( callbackName );\n\n\t\t\t// Otherwise restore preexisting value\n\t\t\t} else {\n\t\t\t\twindow[ callbackName ] = overwritten;\n\t\t\t}\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\n\t\t\t\t// Make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// Save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t} );\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n} );\n\n\n\n\n// Support: Safari 8 only\n// In Safari 8 documents created via document.implementation.createHTMLDocument\n// collapse sibling forms: the second one becomes a child of the first one.\n// Because of that, this security measure has to be disabled in Safari 8.\n// https://bugs.webkit.org/show_bug.cgi?id=137337\nsupport.createHTMLDocument = ( function() {\n\tvar body = document.implementation.createHTMLDocument( \"\" ).body;\n\tbody.innerHTML = \"<form></form><form></form>\";\n\treturn body.childNodes.length === 2;\n} )();\n\n\n// Argument \"data\" should be string of html\n// context (optional): If specified, the fragment will be created in this context,\n// defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( typeof data !== \"string\" ) {\n\t\treturn [];\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\n\tvar base, parsed, scripts;\n\n\tif ( !context ) {\n\n\t\t// Stop scripts or inline event handlers from being executed immediately\n\t\t// by using document.implementation\n\t\tif ( support.createHTMLDocument ) {\n\t\t\tcontext = document.implementation.createHTMLDocument( \"\" );\n\n\t\t\t// Set the base href for the created document\n\t\t\t// so any parsed elements with URLs\n\t\t\t// are based on the document's URL (gh-2965)\n\t\t\tbase = context.createElement( \"base\" );\n\t\t\tbase.href = document.location.href;\n\t\t\tcontext.head.appendChild( base );\n\t\t} else {\n\t\t\tcontext = document;\n\t\t}\n\t}\n\n\tparsed = rsingleTag.exec( data );\n\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[ 1 ] ) ];\n\t}\n\n\tparsed = buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tvar selector, type, response,\n\t\tself = this,\n\t\toff = url.indexOf( \" \" );\n\n\tif ( off > -1 ) {\n\t\tselector = stripAndCollapse( url.slice( off ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax( {\n\t\t\turl: url,\n\n\t\t\t// If \"type\" variable is undefined, then \"GET\" method will be used.\n\t\t\t// Make value of this field explicit since\n\t\t\t// user can override it through ajaxSetup method\n\t\t\ttype: type || \"GET\",\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t} ).done( function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery( \"<div>\" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t// If the request succeeds, this function gets \"data\", \"status\", \"jqXHR\"\n\t\t// but they are ignored because response was set above.\n\t\t// If it fails, this function gets \"jqXHR\", \"status\", \"error\"\n\t\t} ).always( callback && function( jqXHR, status ) {\n\t\t\tself.each( function() {\n\t\t\t\tcallback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t\t} );\n\t\t} );\n\t}\n\n\treturn this;\n};\n\n\n\n\njQuery.expr.pseudos.animated = function( elem ) {\n\treturn jQuery.grep( jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t} ).length;\n};\n\n\n\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// Set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\t( curCSSTop + curCSSLeft ).indexOf( \"auto\" ) > -1;\n\n\t\t// Need to be able to calculate position if either\n\t\t// top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( isFunction( options ) ) {\n\n\t\t\t// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)\n\t\t\toptions = options.call( elem, i, jQuery.extend( {}, curOffset ) );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\n\t\t} else {\n\t\t\tif ( typeof props.top === \"number\" ) {\n\t\t\t\tprops.top += \"px\";\n\t\t\t}\n\t\t\tif ( typeof props.left === \"number\" ) {\n\t\t\t\tprops.left += \"px\";\n\t\t\t}\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend( {\n\n\t// offset() relates an element's border box to the document origin\n\toffset: function( options ) {\n\n\t\t// Preserve chaining for setter\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each( function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t} );\n\t\t}\n\n\t\tvar rect, win,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !elem ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Return zeros for disconnected and hidden (display: none) elements (gh-2310)\n\t\t// Support: IE <=11 only\n\t\t// Running getBoundingClientRect on a\n\t\t// disconnected node in IE throws an error\n\t\tif ( !elem.getClientRects().length ) {\n\t\t\treturn { top: 0, left: 0 };\n\t\t}\n\n\t\t// Get document-relative position by adding viewport scroll to viewport-relative gBCR\n\t\trect = elem.getBoundingClientRect();\n\t\twin = elem.ownerDocument.defaultView;\n\t\treturn {\n\t\t\ttop: rect.top + win.pageYOffset,\n\t\t\tleft: rect.left + win.pageXOffset\n\t\t};\n\t},\n\n\t// position() relates an element's margin box to its offset parent's padding box\n\t// This corresponds to the behavior of CSS absolute positioning\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset, doc,\n\t\t\telem = this[ 0 ],\n\t\t\tparentOffset = { top: 0, left: 0 };\n\n\t\t// position:fixed elements are offset from the viewport, which itself always has zero offset\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\n\t\t\t// Assume position:fixed implies availability of getBoundingClientRect\n\t\t\toffset = elem.getBoundingClientRect();\n\n\t\t} else {\n\t\t\toffset = this.offset();\n\n\t\t\t// Account for the *real* offset parent, which can be the document or its root element\n\t\t\t// when a statically positioned element is identified\n\t\t\tdoc = elem.ownerDocument;\n\t\t\toffsetParent = elem.offsetParent || doc.documentElement;\n\t\t\twhile ( offsetParent &&\n\t\t\t\t( offsetParent === doc.body || offsetParent === doc.documentElement ) &&\n\t\t\t\tjQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\n\t\t\t\toffsetParent = offsetParent.parentNode;\n\t\t\t}\n\t\t\tif ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {\n\n\t\t\t\t// Incorporate borders into its offset, since they are outside its content origin\n\t\t\t\tparentOffset = jQuery( offsetParent ).offset();\n\t\t\t\tparentOffset.top += jQuery.css( offsetParent, \"borderTopWidth\", true );\n\t\t\t\tparentOffset.left += jQuery.css( offsetParent, \"borderLeftWidth\", true );\n\t\t\t}\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\treturn {\n\t\t\ttop: offset.top - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true )\n\t\t};\n\t},\n\n\t// This method will return documentElement in the following cases:\n\t// 1) For the element inside the iframe without offsetParent, this method will return\n\t//    documentElement of the parent window\n\t// 2) For the hidden or detached element\n\t// 3) For body or html element, i.e. in case of the html node - it will return itself\n\t//\n\t// but those exceptions were never presented as a real life use-cases\n\t// and might be considered as more preferable results.\n\t//\n\t// This logic, however, is not guaranteed and can change at any point in the future\n\toffsetParent: function() {\n\t\treturn this.map( function() {\n\t\t\tvar offsetParent = this.offsetParent;\n\n\t\t\twhile ( offsetParent && jQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\n\t\t\treturn offsetParent || documentElement;\n\t\t} );\n\t}\n} );\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = \"pageYOffset\" === prop;\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\n\t\t\t// Coalesce documents and windows\n\t\t\tvar win;\n\t\t\tif ( isWindow( elem ) ) {\n\t\t\t\twin = elem;\n\t\t\t} else if ( elem.nodeType === 9 ) {\n\t\t\t\twin = elem.defaultView;\n\t\t\t}\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? win[ prop ] : elem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : win.pageXOffset,\n\t\t\t\t\ttop ? val : win.pageYOffset\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length );\n\t};\n} );\n\n// Support: Safari <=7 - 9.1, Chrome <=37 - 49\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347\n// getComputedStyle returns percent when specified for top/left/bottom/right;\n// rather than make the css module depend on the offset module, just check for it here\njQuery.each( [ \"top\", \"left\" ], function( _i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\n\t\t\t\t// If curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n} );\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name },\n\t\tfunction( defaultExtra, funcName ) {\n\n\t\t// Margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( isWindow( elem ) ) {\n\n\t\t\t\t\t// $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)\n\t\t\t\t\treturn funcName.indexOf( \"outer\" ) === 0 ?\n\t\t\t\t\t\telem[ \"inner\" + name ] :\n\t\t\t\t\t\telem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],\n\t\t\t\t\t// whichever is greatest\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable );\n\t\t};\n\t} );\n} );\n\n\njQuery.each( [\n\t\"ajaxStart\",\n\t\"ajaxStop\",\n\t\"ajaxComplete\",\n\t\"ajaxError\",\n\t\"ajaxSuccess\",\n\t\"ajaxSend\"\n], function( _i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n} );\n\n\n\n\njQuery.fn.extend( {\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ?\n\t\t\tthis.off( selector, \"**\" ) :\n\t\t\tthis.off( types, selector || \"**\", fn );\n\t},\n\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t}\n} );\n\njQuery.each( ( \"blur focus focusin focusout resize scroll click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup contextmenu\" ).split( \" \" ),\n\tfunction( _i, name ) {\n\n\t\t// Handle event binding\n\t\tjQuery.fn[ name ] = function( data, fn ) {\n\t\t\treturn arguments.length > 0 ?\n\t\t\t\tthis.on( name, null, data, fn ) :\n\t\t\t\tthis.trigger( name );\n\t\t};\n\t} );\n\n\n\n\n// Support: Android <=4.0 only\n// Make sure we trim BOM and NBSP\nvar rtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g;\n\n// Bind a function to a context, optionally partially applying any\n// arguments.\n// jQuery.proxy is deprecated to promote standards (specifically Function#bind)\n// However, it is not slated for removal any time soon\njQuery.proxy = function( fn, context ) {\n\tvar tmp, args, proxy;\n\n\tif ( typeof context === \"string\" ) {\n\t\ttmp = fn[ context ];\n\t\tcontext = fn;\n\t\tfn = tmp;\n\t}\n\n\t// Quick check to determine if target is callable, in the spec\n\t// this throws a TypeError, but we will just return undefined.\n\tif ( !isFunction( fn ) ) {\n\t\treturn undefined;\n\t}\n\n\t// Simulated bind\n\targs = slice.call( arguments, 2 );\n\tproxy = function() {\n\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t};\n\n\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\treturn proxy;\n};\n\njQuery.holdReady = function( hold ) {\n\tif ( hold ) {\n\t\tjQuery.readyWait++;\n\t} else {\n\t\tjQuery.ready( true );\n\t}\n};\njQuery.isArray = Array.isArray;\njQuery.parseJSON = JSON.parse;\njQuery.nodeName = nodeName;\njQuery.isFunction = isFunction;\njQuery.isWindow = isWindow;\njQuery.camelCase = camelCase;\njQuery.type = toType;\n\njQuery.now = Date.now;\n\njQuery.isNumeric = function( obj ) {\n\n\t// As of jQuery 3.0, isNumeric is limited to\n\t// strings and numbers (primitives or objects)\n\t// that can be coerced to finite numbers (gh-2662)\n\tvar type = jQuery.type( obj );\n\treturn ( type === \"number\" || type === \"string\" ) &&\n\n\t\t// parseFloat NaNs numeric-cast false positives (\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t!isNaN( obj - parseFloat( obj ) );\n};\n\njQuery.trim = function( text ) {\n\treturn text == null ?\n\t\t\"\" :\n\t\t( text + \"\" ).replace( rtrim, \"\" );\n};\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t} );\n}\n\n\n\n\nvar\n\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in AMD\n// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === \"undefined\" ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n} );\n"
  },
  {
    "path": "docs/images/05_correlation/lib/plotly-binding-4.10.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    // Plotly.relayout() mutates the plot input object, so make sure to \n    // keep a reference to the user-supplied width/height *before*\n    // we call Plotly.plot();\n    var lay = x.layout || {};\n    instance.width = lay.width;\n    instance.height = lay.height;\n    instance.autosize = lay.autosize || true;\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if ((x.selectize || x.highlight.dynamic) && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.newPlot(graphDiv, x);\n      instance.plotly = true;\n      \n    } else if (x.layout.transition) {\n      \n      var plot = Plotly.react(graphDiv, x);\n    \n    } else {\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.newPlot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n            if (typeof pt.pointNumber === \"number\") {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber];\n            } else if (Array.isArray(pt.pointNumber)) {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber[0]][pt.pointNumber[1]];\n            } else if (Array.isArray(pt.pointNumbers)) {\n              obj[attrsToAttach[i]] = pt.pointNumbers.map(function(idx) { return attr[idx]; });\n            }\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode && Shiny.setInputValue) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_sunburstclick: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "docs/images/05_correlation/lib/plotly-binding-4.9.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if (x.selectize || x.highlight.dynamic && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.plot(graphDiv, x);\n      instance.plotly = true;\n      instance.autosize = x.layout.autosize || true;\n      instance.width = x.layout.width;\n      instance.height = x.layout.height;\n      \n    } else {\n      \n      // new x data could contain a new height/width...\n      // attach to instance so that resize logic knows about the new size\n      instance.width = x.layout.width || instance.width;\n      instance.height = x.layout.height || instance.height;\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.plot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n              // pointNumber can be an array (e.g., heatmaps)\n              // TODO: can pointNumber be 3D?\n              obj[attrsToAttach[i]] = typeof pt.pointNumber === \"number\" ? \n                attr[pt.pointNumber] : attr[pt.pointNumber[0]][pt.pointNumber[1]];\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "docs/images/05_correlation/lib/plotly-htmlwidgets-css-1.46.1/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "docs/images/05_correlation/lib/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "docs/index.html",
    "content": "<!DOCTYPE html>\n\n<html>\n\n<head>\n\n<meta charset=\"utf-8\" />\n<meta name=\"generator\" content=\"pandoc\" />\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=EDGE\" />\n\n\n\n\n<title>Index</title>\n\n<script src=\"site_libs/jquery-3.6.0/jquery-3.6.0.min.js\"></script>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n<link href=\"site_libs/bootstrap-3.3.5/css/cosmo.min.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/bootstrap-3.3.5/js/bootstrap.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/html5shiv.min.js\"></script>\n<script src=\"site_libs/bootstrap-3.3.5/shim/respond.min.js\"></script>\n<style>h1 {font-size: 34px;}\n       h1.title {font-size: 38px;}\n       h2 {font-size: 30px;}\n       h3 {font-size: 24px;}\n       h4 {font-size: 18px;}\n       h5 {font-size: 16px;}\n       h6 {font-size: 12px;}\n       code {color: inherit; background-color: rgba(0, 0, 0, 0.04);}\n       pre:not([class]) { background-color: white }</style>\n<script src=\"site_libs/navigation-1.1/tabsets.js\"></script>\n<link href=\"site_libs/highlightjs-9.12.0/default.css\" rel=\"stylesheet\" />\n<script src=\"site_libs/highlightjs-9.12.0/highlight.js\"></script>\n<link href=\"site_libs/font-awesome-5.1.0/css/all.css\" rel=\"stylesheet\" />\n<link href=\"site_libs/font-awesome-5.1.0/css/v4-shims.css\" rel=\"stylesheet\" />\n<head>\n\t<meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=10.0,initial-scale=1.0\">\n\t<!-- Global site tag (gtag.js) - Google Analytics -->\n\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-135221736-1\"></script>\n\t<script>\n\t  window.dataLayer = window.dataLayer || [];\n\t  function gtag(){dataLayer.push(arguments);}\n\t  gtag('js', new Date());\n\t  gtag('config', 'UA-135221736-1');\n\t</script>\n\t\n\t<!-- Clickable Giraffe -->\n  <script>\n    $(document).ready(function() {\n      $('.giraffe-container').click(function() {\n        $('body').addClass('expanded');\n      });\n    });\n  </script>\n\t\n\t<!-- CSS -->\n\t<link href=\"assets/landing.css\" rel=\"stylesheet\">\n  <link href=\"assets/button.css\" rel=\"stylesheet\">\n  <link href=\"assets/mobile_landing.css\" rel=\"stylesheet\">\n\n</head>\n\n<body>\n  <div id=\"preload\">\n    <img src=\"images/Landing_page/g1_1200px.jpg\">\n  </div>\n  <section class=\"landing container\">\n    <section class=\"giraffe-container\" >\n      <div class=\"singleGiraffe-clickme\"></div>\n      <div class=\"singleGiraffe-clickme-hover\"></div>\n      <div class=\"giraffeForest\">\n        <div class=\"g1 opacity-after-click\"></div>\n      </div>\n      <div class=\"singleGiraffe\"></div>\n      <section class=\"image-descript\"> \n      \t<div class=\"image-text\">\n      \t\t<div class=\"landing small-text\">Welcome to the Wonderful World of</div>\n      \t\t<div class=\"landing big-text\"><strong>TEACUPS, GIRAFFES, & STATISTICS</strong></div>\n      \t</div>\n      </section>\n    </section>\n    \n    <div class=\"appears-after-click\">\n      <div class=\"about\">A delightful series of modules to learn statistics and R coding for students, scientists, and stats-enthusiasts.</div>\n      <div class=\"landing-buttons\"> \n        <a id=\"container\" href=\"00_narrative.html\">\n          <button class=\"learn-more\">\n            <span class=\"circle\">\n              <span class=\"icon arrow\"></span>\n            </span>\n            <span class=\"button-text\">Read the History of Teacup Giraffes</span>\n          </button>\n        </a>\n        <a id=\"container\" href=\"01_introToR.html\">\n          <button class=\"learn-more deemphasized\">\n            <span class=\"circle\">\n              <span class=\"icon arrow\"></span>\n            </span>\n            <span class=\"button-text\">Skip Straight to the Stats</span>\n          </button>\n        </a>\n      </div>\n      \n      \n    </div>\n  </section>\n</body>\n\n\n<style type=\"text/css\">\n  code{white-space: pre-wrap;}\n  span.smallcaps{font-variant: small-caps;}\n  span.underline{text-decoration: underline;}\n  div.column{display: inline-block; vertical-align: top; width: 50%;}\n  div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}\n  ul.task-list{list-style: none;}\n    </style>\n\n<style type=\"text/css\">code{white-space: pre;}</style>\n<script type=\"text/javascript\">\nif (window.hljs) {\n  hljs.configure({languages: []});\n  hljs.initHighlightingOnLoad();\n  if (document.readyState && document.readyState === \"complete\") {\n    window.setTimeout(function() { hljs.initHighlighting(); }, 0);\n  }\n}\n</script>\n\n\n\n\n\n\n\n\n\n<style type = \"text/css\">\n.main-container {\n  max-width: 940px;\n  margin-left: auto;\n  margin-right: auto;\n}\nimg {\n  max-width:100%;\n}\n.tabbed-pane {\n  padding-top: 12px;\n}\n.html-widget {\n  margin-bottom: 20px;\n}\nbutton.code-folding-btn:focus {\n  outline: none;\n}\nsummary {\n  display: list-item;\n}\ndetails > summary > p:only-child {\n  display: inline;\n}\npre code {\n  padding: 0;\n}\n</style>\n\n\n<style type=\"text/css\">\n.dropdown-submenu {\n  position: relative;\n}\n.dropdown-submenu>.dropdown-menu {\n  top: 0;\n  left: 100%;\n  margin-top: -6px;\n  margin-left: -1px;\n  border-radius: 0 6px 6px 6px;\n}\n.dropdown-submenu:hover>.dropdown-menu {\n  display: block;\n}\n.dropdown-submenu>a:after {\n  display: block;\n  content: \" \";\n  float: right;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n  border-width: 5px 0 5px 5px;\n  border-left-color: #cccccc;\n  margin-top: 5px;\n  margin-right: -10px;\n}\n.dropdown-submenu:hover>a:after {\n  border-left-color: #adb5bd;\n}\n.dropdown-submenu.pull-left {\n  float: none;\n}\n.dropdown-submenu.pull-left>.dropdown-menu {\n  left: -100%;\n  margin-left: 10px;\n  border-radius: 6px 0 6px 6px;\n}\n</style>\n\n<script type=\"text/javascript\">\n// manage active state of menu based on current page\n$(document).ready(function () {\n  // active menu anchor\n  href = window.location.pathname\n  href = href.substr(href.lastIndexOf('/') + 1)\n  if (href === \"\")\n    href = \"index.html\";\n  var menuAnchor = $('a[href=\"' + href + '\"]');\n\n  // mark it active\n  menuAnchor.tab('show');\n\n  // if it's got a parent navbar menu mark it active as well\n  menuAnchor.closest('li.dropdown').addClass('active');\n\n  // Navbar adjustments\n  var navHeight = $(\".navbar\").first().height() + 15;\n  var style = document.createElement('style');\n  var pt = \"padding-top: \" + navHeight + \"px; \";\n  var mt = \"margin-top: -\" + navHeight + \"px; \";\n  var css = \"\";\n  // offset scroll position for anchor links (for fixed navbar)\n  for (var i = 1; i <= 6; i++) {\n    css += \".section h\" + i + \"{ \" + pt + mt + \"}\\n\";\n  }\n  style.innerHTML = \"body {\" + pt + \"padding-bottom: 40px; }\\n\" + css;\n  document.head.appendChild(style);\n});\n</script>\n\n<!-- tabsets -->\n\n<style type=\"text/css\">\n.tabset-dropdown > .nav-tabs {\n  display: inline-table;\n  max-height: 500px;\n  min-height: 44px;\n  overflow-y: auto;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n}\n\n.tabset-dropdown > .nav-tabs > li.active:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {\n  content: \"&#xe258;\";\n  border: none;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open:before {\n  content: \"\";\n  font-family: 'Glyphicons Halflings';\n  display: inline-block;\n  padding: 10px;\n  border-right: 1px solid #ddd;\n}\n\n.tabset-dropdown > .nav-tabs > li.active {\n  display: block;\n}\n\n.tabset-dropdown > .nav-tabs > li > a,\n.tabset-dropdown > .nav-tabs > li > a:focus,\n.tabset-dropdown > .nav-tabs > li > a:hover {\n  border: none;\n  display: inline-block;\n  border-radius: 4px;\n  background-color: transparent;\n}\n\n.tabset-dropdown > .nav-tabs.nav-tabs-open > li {\n  display: block;\n  float: none;\n}\n\n.tabset-dropdown > .nav-tabs > li {\n  display: none;\n}\n</style>\n\n<!-- code folding -->\n\n\n\n\n</head>\n\n<body>\n\n\n<div class=\"container-fluid main-container\">\n\n\n\n\n<div class=\"navbar navbar-default  navbar-fixed-top\" role=\"navigation\">\n  <div class=\"container\">\n    <div class=\"navbar-header\">\n      <button type=\"button\" class=\"navbar-toggle collapsed\" data-toggle=\"collapse\" data-bs-toggle=\"collapse\" data-target=\"#navbar\" data-bs-target=\"#navbar\">\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n        <span class=\"icon-bar\"></span>\n      </button>\n      <a class=\"navbar-brand\" href=\"index.html\"> </a>\n    </div>\n    <div id=\"navbar\" class=\"navbar-collapse collapse\">\n      <ul class=\"nav navbar-nav\">\n        <li>\n  <a href=\"index.html\">\n    <span class=\"fa fa-home\"></span>\n     \n  </a>\n</li>\n<li>\n  <a href=\"00_narrative.html\">History of Teacup Giraffes</a>\n</li>\n<li class=\"dropdown\">\n  <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\" role=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\">\n    Modules\n     \n    <span class=\"caret\"></span>\n  </a>\n  <ul class=\"dropdown-menu\" role=\"menu\">\n    <li>\n      <a href=\"01_introToR.html\">Intro to R</a>\n    </li>\n    <li>\n      <a href=\"02_bellCurve.html\">Intro to the Normal Distribution</a>\n    </li>\n    <li>\n      <a href=\"03_mean.html\">Mean, Median, Mode</a>\n    </li>\n    <li>\n      <a href=\"04_variance.html\">Spread of the Data</a>\n    </li>\n    <li>\n      <a href=\"05_correlation.html\">Covariance and Correlation</a>\n    </li>\n    <li>\n      <a href=\"06_standardError.html\">Standard Error</a>\n    </li>\n  </ul>\n</li>\n<li>\n  <a href=\"aboutTheAuthors.html\">About the Authors</a>\n</li>\n      </ul>\n      <ul class=\"nav navbar-nav navbar-right\">\n        <li>\n  <a href=\"https://github.com/tinystats/teacups-giraffes-and-statistics\">\n    <span class=\"fa fa-github\"></span>\n     \n  </a>\n</li>\n      </ul>\n    </div><!--/.nav-collapse -->\n  </div><!--/.container -->\n</div><!--/.navbar -->\n\n<div id=\"header\">\n\n\n\n<h1 class=\"title toc-ignore\">Index</h1>\n\n</div>\n\n\n\n\n\n\n\n</div>\n\n<script>\n\n// add bootstrap table styles to pandoc tables\nfunction bootstrapStylePandocTables() {\n  $('tr.odd').parent('tbody').parent('table').addClass('table table-condensed');\n}\n$(document).ready(function () {\n  bootstrapStylePandocTables();\n});\n\n\n</script>\n\n<!-- tabsets -->\n\n<script>\n$(document).ready(function () {\n  window.buildTabsets(\"TOC\");\n});\n\n$(document).ready(function () {\n  $('.tabset-dropdown > .nav-tabs > li').click(function () {\n    $(this).parent().toggleClass('nav-tabs-open');\n  });\n});\n</script>\n\n<!-- code folding -->\n\n\n<!-- dynamically load mathjax for compatibility with self-contained -->\n<script>\n  (function () {\n    var script = document.createElement(\"script\");\n    script.type = \"text/javascript\";\n    script.src  = \"https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML\";\n    document.getElementsByTagName(\"head\")[0].appendChild(script);\n  })();\n</script>\n\n</body>\n</html>\n"
  },
  {
    "path": "docs/lib/crosstalk-1.0.0/css/crosstalk.css",
    "content": "/* Adjust margins outwards, so column contents line up with the edges of the\n   parent of container-fluid. */\n.container-fluid.crosstalk-bscols {\n  margin-left: -30px;\n  margin-right: -30px;\n  white-space: normal;\n}\n\n/* But don't adjust the margins outwards if we're directly under the body,\n   i.e. we were the top-level of something at the console. */\nbody > .container-fluid.crosstalk-bscols {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n  display: inline-block;\n  padding-right: 12px;\n  vertical-align: top;\n}\n\n@media only screen and (max-width:480px) {\n  .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n    display: block;\n    padding-right: inherit;\n  }\n}\n"
  },
  {
    "path": "docs/lib/crosstalk-1.0.0/js/crosstalk.js",
    "content": "(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Events = function () {\n  function Events() {\n    _classCallCheck(this, Events);\n\n    this._types = {};\n    this._seq = 0;\n  }\n\n  _createClass(Events, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var subs = this._types[eventType];\n      if (!subs) {\n        subs = this._types[eventType] = {};\n      }\n      var sub = \"sub\" + this._seq++;\n      subs[sub] = listener;\n      return sub;\n    }\n\n    // Returns false if no match, or string for sub name if matched\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var subs = this._types[eventType];\n      if (typeof listener === \"function\") {\n        for (var key in subs) {\n          if (subs.hasOwnProperty(key)) {\n            if (subs[key] === listener) {\n              delete subs[key];\n              return key;\n            }\n          }\n        }\n        return false;\n      } else if (typeof listener === \"string\") {\n        if (subs && subs[listener]) {\n          delete subs[listener];\n          return listener;\n        }\n        return false;\n      } else {\n        throw new Error(\"Unexpected type for listener\");\n      }\n    }\n  }, {\n    key: \"trigger\",\n    value: function trigger(eventType, arg, thisObj) {\n      var subs = this._types[eventType];\n      for (var key in subs) {\n        if (subs.hasOwnProperty(key)) {\n          subs[key].call(thisObj, arg);\n        }\n      }\n    }\n  }]);\n\n  return Events;\n}();\n\nexports.default = Events;\n\n},{}],2:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.FilterHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _filterset = require(\"./filterset\");\n\nvar _filterset2 = _interopRequireDefault(_filterset);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction getFilterSet(group) {\n  var fsVar = group.var(\"filterset\");\n  var result = fsVar.get();\n  if (!result) {\n    result = new _filterset2.default();\n    fsVar.set(result);\n  }\n  return result;\n}\n\nvar id = 1;\nfunction nextId() {\n  return id++;\n}\n\nvar FilterHandle = exports.FilterHandle = function () {\n  /**\n   * @classdesc\n   * Use this class to contribute to, and listen for changes to, the filter set\n   * for the given group of widgets. Filter input controls should create one\n   * `FilterHandle` and only call {@link FilterHandle#set}. Output widgets that\n   * wish to displayed filtered data should create one `FilterHandle` and use\n   * the {@link FilterHandle#filteredKeys} property and listen for change\n   * events.\n   *\n   * If two (or more) `FilterHandle` instances in the same webpage share the\n   * same group name, they will contribute to a single \"filter set\". Each\n   * `FilterHandle` starts out with a `null` value, which means they take\n   * nothing away from the set of data that should be shown. To make a\n   * `FilterHandle` actually remove data from the filter set, set its value to\n   * an array of keys which should be displayed. Crosstalk will aggregate the\n   * various key arrays by finding their intersection; only keys that are\n   * present in all non-null filter handles are considered part of the filter\n   * set.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the @{link FilterHandle#setGroup} method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function FilterHandle(group, extraInfo) {\n    _classCallCheck(this, FilterHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The filterSet that we're tracking, if any. Can change over time.\n    this._filterSet = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._filterVar = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this._id = \"filter\" + nextId();\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this FilterHandle. If `set()` was\n   * previously called on this handle, switching groups will clear those keys\n   * from the old group's filter set. These keys will not be applied to the new\n   * group's filter set either. In other words, `setGroup()` effectively calls\n   * `clear()` before switching groups.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(FilterHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._filterVar) {\n        this._filterVar.off(\"change\", this._varOnChangeSub);\n        this.clear();\n        this._varOnChangeSub = null;\n        this._filterVar = null;\n        this._filterSet = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        group = (0, _group2.default)(group);\n        this._filterSet = getFilterSet(group);\n        this._filterVar = (0, _group2.default)(group).var(\"filter\");\n        var sub = this._filterVar.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Combine the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n    value: function _mergeExtraInfo(extraInfo) {\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Close the handle. This clears this handle's contribution to the filter set,\n     * and unsubscribes all event listeners.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.clear();\n      this.setGroup(null);\n    }\n\n    /**\n     * Clear this handle's contribution to the filter set.\n     *\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.clear(this._id);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * Set this handle's contribution to the filter set. This array should consist\n     * of the keys of the rows that _should_ be displayed; any keys that are not\n     * present in the array will be considered _filtered out_. Note that multiple\n     * `FilterHandle` instances in the group may each contribute an array of keys,\n     * and only those keys that appear in _all_ of the arrays make it through the\n     * filter.\n     *\n     * @param {string[]} keys - Empty array, or array of keys. To clear the\n     *   filter, don't pass an empty array; instead, use the\n     *   {@link FilterHandle#clear} method.\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(keys, extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.update(this._id, keys);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * @return {string[]|null} - Either: 1) an array of keys that made it through\n     *   all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n     *   is being applied (all data should be displayed).\n     */\n\n  }, {\n    key: \"on\",\n\n\n    /**\n     * Subscribe to events on this `FilterHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {FilterHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n     *   this subscription.\n     */\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancel event subscriptions created by {@link FilterHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|FilterHandle~listener} listener - Either the callback\n     *   function previously passed into {@link FilterHandle#on}, or the\n     *   string that was returned from {@link FilterHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n  }, {\n    key: \"_onChange\",\n    value: function _onChange(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * @callback FilterHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the filter set, or `null` if no filter set is active),\n     *   `oldValue` (the previous value of the filter set), and `sender` (the\n     *   `FilterHandle` instance that made the change).\n     */\n\n    /**\n     * @event FilterHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the filter set, or `null`\n     *   if no filter set is active.\n     * @property {object} oldValue - The previous value of the filter set.\n     * @property {FilterHandle} sender - The `FilterHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"filteredKeys\",\n    get: function get() {\n      return this._filterSet ? this._filterSet.value : null;\n    }\n  }]);\n\n  return FilterHandle;\n}();\n\n},{\"./events\":1,\"./filterset\":3,\"./group\":4,\"./util\":11}],3:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _util = require(\"./util\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction naturalComparator(a, b) {\n  if (a === b) {\n    return 0;\n  } else if (a < b) {\n    return -1;\n  } else if (a > b) {\n    return 1;\n  }\n}\n\n/**\n * @private\n */\n\nvar FilterSet = function () {\n  function FilterSet() {\n    _classCallCheck(this, FilterSet);\n\n    this.reset();\n  }\n\n  _createClass(FilterSet, [{\n    key: \"reset\",\n    value: function reset() {\n      // Key: handle ID, Value: array of selected keys, or null\n      this._handles = {};\n      // Key: key string, Value: count of handles that include it\n      this._keys = {};\n      this._value = null;\n      this._activeHandles = 0;\n    }\n  }, {\n    key: \"update\",\n    value: function update(handleId, keys) {\n      if (keys !== null) {\n        keys = keys.slice(0); // clone before sorting\n        keys.sort(naturalComparator);\n      }\n\n      var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys),\n          added = _diffSortedLists.added,\n          removed = _diffSortedLists.removed;\n\n      this._handles[handleId] = keys;\n\n      for (var i = 0; i < added.length; i++) {\n        this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n      }\n      for (var _i = 0; _i < removed.length; _i++) {\n        this._keys[removed[_i]]--;\n      }\n\n      this._updateValue(keys);\n    }\n\n    /**\n     * @param {string[]} keys Sorted array of strings that indicate\n     * a superset of possible keys.\n     * @private\n     */\n\n  }, {\n    key: \"_updateValue\",\n    value: function _updateValue() {\n      var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys;\n\n      var handleCount = Object.keys(this._handles).length;\n      if (handleCount === 0) {\n        this._value = null;\n      } else {\n        this._value = [];\n        for (var i = 0; i < keys.length; i++) {\n          var count = this._keys[keys[i]];\n          if (count === handleCount) {\n            this._value.push(keys[i]);\n          }\n        }\n      }\n    }\n  }, {\n    key: \"clear\",\n    value: function clear(handleId) {\n      if (typeof this._handles[handleId] === \"undefined\") {\n        return;\n      }\n\n      var keys = this._handles[handleId];\n      if (!keys) {\n        keys = [];\n      }\n\n      for (var i = 0; i < keys.length; i++) {\n        this._keys[keys[i]]--;\n      }\n      delete this._handles[handleId];\n\n      this._updateValue();\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"_allKeys\",\n    get: function get() {\n      var allKeys = Object.keys(this._keys);\n      allKeys.sort(naturalComparator);\n      return allKeys;\n    }\n  }]);\n\n  return FilterSet;\n}();\n\nexports.default = FilterSet;\n\n},{\"./util\":11}],4:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.default = group;\n\nvar _var2 = require(\"./var\");\n\nvar _var3 = _interopRequireDefault(_var2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nvar groups = global.__crosstalk_groups;\n\nfunction group(groupName) {\n  if (groupName && typeof groupName === \"string\") {\n    if (!groups.hasOwnProperty(groupName)) {\n      groups[groupName] = new Group(groupName);\n    }\n    return groups[groupName];\n  } else if ((typeof groupName === \"undefined\" ? \"undefined\" : _typeof(groupName)) === \"object\" && groupName._vars && groupName.var) {\n    // Appears to already be a group object\n    return groupName;\n  } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === \"string\") {\n    return group(groupName[0]);\n  } else {\n    throw new Error(\"Invalid groupName argument\");\n  }\n}\n\nvar Group = function () {\n  function Group(name) {\n    _classCallCheck(this, Group);\n\n    this.name = name;\n    this._vars = {};\n  }\n\n  _createClass(Group, [{\n    key: \"var\",\n    value: function _var(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name);\n      return this._vars[name];\n    }\n  }, {\n    key: \"has\",\n    value: function has(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      return this._vars.hasOwnProperty(name);\n    }\n  }]);\n\n  return Group;\n}();\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./var\":12}],5:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _selection = require(\"./selection\");\n\nvar _filter = require(\"./filter\");\n\nrequire(\"./input\");\n\nrequire(\"./input_selectize\");\n\nrequire(\"./input_checkboxgroup\");\n\nrequire(\"./input_slider\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar defaultGroup = (0, _group2.default)(\"default\");\n\nfunction var_(name) {\n  return defaultGroup.var(name);\n}\n\nfunction has(name) {\n  return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n  global.Shiny.addCustomMessageHandler(\"update-client-value\", function (message) {\n    if (typeof message.group === \"string\") {\n      (0, _group2.default)(message.group).var(message.name).set(message.value);\n    } else {\n      var_(message.name).set(message.value);\n    }\n  });\n}\n\nvar crosstalk = {\n  group: _group2.default,\n  var: var_,\n  has: has,\n  SelectionHandle: _selection.SelectionHandle,\n  FilterHandle: _filter.FilterHandle\n};\n\n/**\n * @namespace crosstalk\n */\nexports.default = crosstalk;\n\nglobal.crosstalk = crosstalk;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./group\":4,\"./input\":6,\"./input_checkboxgroup\":7,\"./input_selectize\":8,\"./input_slider\":9,\"./selection\":10}],6:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.register = register;\nvar $ = global.jQuery;\n\nvar bindings = {};\n\nfunction register(reg) {\n  bindings[reg.className] = reg;\n  if (global.document && global.document.readyState !== \"complete\") {\n    $(function () {\n      bind();\n    });\n  } else if (global.document) {\n    setTimeout(bind, 100);\n  }\n}\n\nfunction bind() {\n  Object.keys(bindings).forEach(function (className) {\n    var binding = bindings[className];\n    $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function (i, el) {\n      bindInstance(binding, el);\n    });\n  });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n  return val.replace(/([!\"#$%&'()*+,.\\/:;<=>?@\\[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n  var $el = $(el);\n  Object.keys(bindings).forEach(function (className) {\n    if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n      var binding = bindings[className];\n      bindInstance(binding, el);\n    }\n  });\n}\n\nfunction bindInstance(binding, el) {\n  var jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n  var data = JSON.parse(jsonEl[0].innerText);\n\n  var instance = binding.factory(el, data);\n  $(el).data(\"crosstalk-instance\", instance);\n  $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n  (function () {\n    var inputBinding = new global.Shiny.InputBinding();\n    var $ = global.jQuery;\n    $.extend(inputBinding, {\n      find: function find(scope) {\n        return $(scope).find(\".crosstalk-input\");\n      },\n      initialize: function initialize(el) {\n        if (!$(el).hasClass(\"crosstalk-input-bound\")) {\n          bindEl(el);\n        }\n      },\n      getId: function getId(el) {\n        return el.id;\n      },\n      getValue: function getValue(el) {},\n      setValue: function setValue(el, value) {},\n      receiveMessage: function receiveMessage(el, data) {},\n      subscribe: function subscribe(el, callback) {\n        $(el).data(\"crosstalk-instance\").resume();\n      },\n      unsubscribe: function unsubscribe(el) {\n        $(el).data(\"crosstalk-instance\").suspend();\n      }\n    });\n    global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n  })();\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{}],7:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-checkboxgroup\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    var $el = $(el);\n    $el.on(\"change\", \"input[type='checkbox']\", function () {\n      var checked = $el.find(\"input[type='checkbox']:checked\");\n      if (checked.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          checked.each(function () {\n            data.map[this.value].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],8:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-select\",\n\n  factory: function factory(el, data) {\n    /*\n     * items: {value: [...], label: [...]}\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n\n    var first = [{ value: \"\", label: \"(All)\" }];\n    var items = util.dataframeToD3(data.items);\n    var opts = {\n      options: first.concat(items),\n      valueField: \"value\",\n      labelField: \"label\",\n      searchField: \"label\"\n    };\n\n    var select = $(el).find(\"select\")[0];\n\n    var selectize = $(select).selectize(opts)[0].selectize;\n\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    selectize.on(\"change\", function () {\n      if (selectize.items.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          selectize.items.forEach(function (group) {\n            data.map[group].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6,\"./util\":11}],9:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\nvar strftime = global.strftime;\n\ninput.register({\n  className: \"crosstalk-input-slider\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var opts = {};\n    var $el = $(el).find(\"input\");\n    var dataType = $el.data(\"data-type\");\n    var timeFormat = $el.data(\"time-format\");\n    var timeFormatter = void 0;\n\n    // Set up formatting functions\n    if (dataType === \"date\") {\n      timeFormatter = strftime.utc();\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"datetime\") {\n      var timezone = $el.data(\"timezone\");\n      if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime;\n\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    }\n\n    $el.ionRangeSlider(opts);\n\n    function getValue() {\n      var result = $el.data(\"ionRangeSlider\").result;\n\n      // Function for converting numeric value from slider to appropriate type.\n      var convert = void 0;\n      var dataType = $el.data(\"data-type\");\n      if (dataType === \"date\") {\n        convert = function convert(val) {\n          return formatDateUTC(new Date(+val));\n        };\n      } else if (dataType === \"datetime\") {\n        convert = function convert(val) {\n          // Convert ms to s\n          return +val / 1000;\n        };\n      } else {\n        convert = function convert(val) {\n          return +val;\n        };\n      }\n\n      if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n        return [convert(result.from), convert(result.to)];\n      } else {\n        return convert(result.from);\n      }\n    }\n\n    var lastKnownKeys = null;\n\n    $el.on(\"change.crosstalkSliderInput\", function (event) {\n      if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n        var _getValue = getValue(),\n            _getValue2 = _slicedToArray(_getValue, 2),\n            from = _getValue2[0],\n            to = _getValue2[1];\n\n        var keys = [];\n        for (var i = 0; i < data.values.length; i++) {\n          var val = data.values[i];\n          if (val >= from && val <= to) {\n            keys.push(data.keys[i]);\n          }\n        }\n        keys.sort();\n        ctHandle.set(keys);\n        lastKnownKeys = keys;\n      }\n    });\n\n    // let $el = $(el);\n    // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n    //   let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n    //   if (checked.length === 0) {\n    //     ctHandle.clear();\n    //   } else {\n    //     let keys = {};\n    //     checked.each(function() {\n    //       data.map[this.value].forEach(function(key) {\n    //         keys[key] = true;\n    //       });\n    //     });\n    //     let keyArray = Object.keys(keys);\n    //     keyArray.sort();\n    //     ctHandle.set(keyArray);\n    //   }\n    // });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n  var str = n.toString();\n  while (str.length < digits) {\n    str = \"0\" + str;\n  }return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n  if (date instanceof Date) {\n    return date.getUTCFullYear() + \"-\" + padZeros(date.getUTCMonth() + 1, 2) + \"-\" + padZeros(date.getUTCDate(), 2);\n  } else {\n    return null;\n  }\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],10:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.SelectionHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar SelectionHandle = exports.SelectionHandle = function () {\n\n  /**\n   * @classdesc\n   * Use this class to read and write (and listen for changes to) the selection\n   * for a Crosstalk group. This is intended to be used for linked brushing.\n   *\n   * If two (or more) `SelectionHandle` instances in the same webpage share the\n   * same group name, they will share the same state. Setting the selection using\n   * one `SelectionHandle` instance will result in the `value` property instantly\n   * changing across the others, and `\"change\"` event listeners on all instances\n   * (including the one that initiated the sending) will fire.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the [SelectionHandle#setGroup](#setGroup) method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function SelectionHandle() {\n    var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n    var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n\n    _classCallCheck(this, SelectionHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._var = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this SelectionHandle. The group\n   * being switched away from (if any) will not have its selection value\n   * modified as a result of calling `setGroup`, even if this handle was the\n   * most recent handle to set the selection of the group.\n   *\n   * The group being switched to (if any) will also not have its selection value\n   * modified as a result of calling `setGroup`. If you want to set the\n   * selection value of the new group, call `set` explicitly.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(SelectionHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._var) {\n        this._var.off(\"change\", this._varOnChangeSub);\n        this._var = null;\n        this._varOnChangeSub = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        this._var = (0, _group2.default)(group).var(\"selection\");\n        var sub = this._var.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Retrieves the current selection for the group represented by this\n     * `SelectionHandle`.\n     *\n     * - If no selection is active, then this value will be falsy.\n     * - If a selection is active, but no data points are selected, then this\n     *   value will be an empty array.\n     * - If a selection is active, and data points are selected, then the keys\n     *   of the selected data points will be present in the array.\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n\n\n    /**\n     * Combines the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n    value: function _mergeExtraInfo(extraInfo) {\n      // Important incidental effect: shallow clone is returned\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n     *   {@link SelectionHandle#value}).\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(selectedKeys, extraInfo) {\n      if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any that were passed\n     *   into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Subscribes to events on this `SelectionHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {SelectionHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n     *   this subscription.\n     */\n\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancels event subscriptions created by {@link SelectionHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|SelectionHandle~listener} listener - Either the callback\n     *   function previously passed into {@link SelectionHandle#on}, or the\n     *   string that was returned from {@link SelectionHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n\n    /**\n     * Shuts down the `SelectionHandle` object.\n     *\n     * Removes all event listeners that were added through this handle.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.setGroup(null);\n    }\n\n    /**\n     * @callback SelectionHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the selection, or `undefined` if no selection is active),\n     *   `oldValue` (the previous value of the selection), and `sender` (the\n     *   `SelectionHandle` instance that made the change).\n     */\n\n    /**\n     * @event SelectionHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the selection, or `undefined`\n     *   if no selection is active.\n     * @property {object} oldValue - The previous value of the selection.\n     * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._var ? this._var.get() : null;\n    }\n  }]);\n\n  return SelectionHandle;\n}();\n\n},{\"./events\":1,\"./group\":4,\"./util\":11}],11:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.extend = extend;\nexports.checkSorted = checkSorted;\nexports.diffSortedLists = diffSortedLists;\nexports.dataframeToD3 = dataframeToD3;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction extend(target) {\n  for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n    sources[_key - 1] = arguments[_key];\n  }\n\n  for (var i = 0; i < sources.length; i++) {\n    var src = sources[i];\n    if (typeof src === \"undefined\" || src === null) continue;\n\n    for (var key in src) {\n      if (src.hasOwnProperty(key)) {\n        target[key] = src[key];\n      }\n    }\n  }\n  return target;\n}\n\nfunction checkSorted(list) {\n  for (var i = 1; i < list.length; i++) {\n    if (list[i] <= list[i - 1]) {\n      throw new Error(\"List is not sorted or contains duplicate\");\n    }\n  }\n}\n\nfunction diffSortedLists(a, b) {\n  var i_a = 0;\n  var i_b = 0;\n\n  if (!a) a = [];\n  if (!b) b = [];\n\n  var a_only = [];\n  var b_only = [];\n\n  checkSorted(a);\n  checkSorted(b);\n\n  while (i_a < a.length && i_b < b.length) {\n    if (a[i_a] === b[i_b]) {\n      i_a++;\n      i_b++;\n    } else if (a[i_a] < b[i_b]) {\n      a_only.push(a[i_a++]);\n    } else {\n      b_only.push(b[i_b++]);\n    }\n  }\n\n  if (i_a < a.length) a_only = a_only.concat(a.slice(i_a));\n  if (i_b < b.length) b_only = b_only.concat(b.slice(i_b));\n  return {\n    removed: a_only,\n    added: b_only\n  };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nfunction dataframeToD3(df) {\n  var names = [];\n  var length = void 0;\n  for (var name in df) {\n    if (df.hasOwnProperty(name)) names.push(name);\n    if (_typeof(df[name]) !== \"object\" || typeof df[name].length === \"undefined\") {\n      throw new Error(\"All fields must be arrays\");\n    } else if (typeof length !== \"undefined\" && length !== df[name].length) {\n      throw new Error(\"All fields must be arrays of the same length\");\n    }\n    length = df[name].length;\n  }\n  var results = [];\n  var item = void 0;\n  for (var row = 0; row < length; row++) {\n    item = {};\n    for (var col = 0; col < names.length; col++) {\n      item[names[col]] = df[names[col]][row];\n    }\n    results.push(item);\n  }\n  return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\n\nvar SubscriptionTracker = exports.SubscriptionTracker = function () {\n  function SubscriptionTracker(emitter) {\n    _classCallCheck(this, SubscriptionTracker);\n\n    this._emitter = emitter;\n    this._subs = {};\n  }\n\n  _createClass(SubscriptionTracker, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var sub = this._emitter.on(eventType, listener);\n      this._subs[sub] = eventType;\n      return sub;\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var sub = this._emitter.off(eventType, listener);\n      if (sub) {\n        delete this._subs[sub];\n      }\n      return sub;\n    }\n  }, {\n    key: \"removeAllListeners\",\n    value: function removeAllListeners() {\n      var _this = this;\n\n      var current_subs = this._subs;\n      this._subs = {};\n      Object.keys(current_subs).forEach(function (sub) {\n        _this._emitter.off(current_subs[sub], sub);\n      });\n    }\n  }]);\n\n  return SubscriptionTracker;\n}();\n\n},{}],12:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Var = function () {\n  function Var(group, name, /*optional*/value) {\n    _classCallCheck(this, Var);\n\n    this._group = group;\n    this._name = name;\n    this._value = value;\n    this._events = new _events2.default();\n  }\n\n  _createClass(Var, [{\n    key: \"get\",\n    value: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"set\",\n    value: function set(value, /*optional*/event) {\n      if (this._value === value) {\n        // Do nothing; the value hasn't changed\n        return;\n      }\n      var oldValue = this._value;\n      this._value = value;\n      // Alert JavaScript listeners that the value has changed\n      var evt = {};\n      if (event && (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\") {\n        for (var k in event) {\n          if (event.hasOwnProperty(k)) evt[k] = event[k];\n        }\n      }\n      evt.oldValue = oldValue;\n      evt.value = value;\n      this._events.trigger(\"change\", evt, this);\n\n      // TODO: Make this extensible, to let arbitrary back-ends know that\n      // something has changed\n      if (global.Shiny && global.Shiny.onInputChange) {\n        global.Shiny.onInputChange(\".clientValue-\" + (this._group.name !== null ? this._group.name + \"-\" : \"\") + this._name, typeof value === \"undefined\" ? null : value);\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._events.on(eventType, listener);\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._events.off(eventType, listener);\n    }\n  }]);\n\n  return Var;\n}();\n\nexports.default = Var;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./events\":1}]},{},[5])\n//# sourceMappingURL=crosstalk.js.map\n"
  },
  {
    "path": "docs/lib/htmlwidgets-1.2/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = eval(\"(\" + task + \")\");\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {};\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n  // Wait until after the document has loaded to render the widgets.\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      window.HTMLWidgets.staticRender();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        window.HTMLWidgets.staticRender();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = eval(\"(\" + o[part] + \")\");\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "docs/lib/htmlwidgets-1.3/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = eval(\"(\" + task + \")\");\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n  // Wait until after the document has loaded to render the widgets.\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      window.HTMLWidgets.staticRender();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        window.HTMLWidgets.staticRender();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = eval(\"(\" + o[part] + \")\");\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "docs/lib/jquery-1.11.3/jquery-AUTHORS.txt",
    "content": "Authors ordered by first contribution.\n\nJohn Resig <jeresig@gmail.com>\nGilles van den Hoven <gilles0181@gmail.com>\nMichael Geary <mike@geary.com>\nStefan Petre <stefan.petre@gmail.com>\nYehuda Katz <wycats@gmail.com>\nCorey Jewett <cj@syntheticplayground.com>\nKlaus Hartl <klaus.hartl@googlemail.com>\nFranck Marcia <franck.marcia@gmail.com>\nJörn Zaefferer <joern.zaefferer@gmail.com>\nPaul Bakaus <paul.bakaus@googlemail.com>\nBrandon Aaron <brandon.aaron@gmail.com>\nMike Alsup <malsup@gmail.com>\nDave Methvin <dave.methvin@gmail.com>\nEd Engelhardt <edengelhardt@gmail.com>\nSean Catchpole <littlecooldude@gmail.com>\nPaul Mclanahan <pmclanahan@gmail.com>\nDavid Serduke <davidserduke@gmail.com>\nRichard D. Worth <rdworth@gmail.com>\nScott González <scott.gonzalez@gmail.com>\nAriel Flesler <aflesler@gmail.com>\nJon Evans <jon@springyweb.com>\nTJ Holowaychuk <tj@vision-media.ca>\nMichael Bensoussan <mickey@seesmic.com>\nRobert Katić <robert.katic@gmail.com>\nLouis-Rémi Babé <lrbabe@gmail.com>\nEarle Castledine <mrspeaker@gmail.com>\nDamian Janowski <damian.janowski@gmail.com>\nRich Dougherty <rich@rd.gen.nz>\nKim Dalsgaard <kim@kimdalsgaard.com>\nAndrea Giammarchi <andrea.giammarchi@gmail.com>\nMark Gibson <jollytoad@gmail.com>\nKarl Swedberg <kswedberg@gmail.com>\nJustin Meyer <justinbmeyer@gmail.com>\nBen Alman <cowboy@rj3.net>\nJames Padolsey <cla@padolsey.net>\nDavid Petersen <public@petersendidit.com>\nBatiste Bieler <batiste@gmail.com>\nAlexander Farkas <info@corrupt-system.de>\nRick Waldron <waldron.rick@gmail.com>\nFilipe Fortes <filipe@fortes.com>\nNeeraj Singh <neerajdotname@gmail.com>\nPaul Irish <paul.irish@gmail.com>\nIraê Carvalho <irae@irae.pro.br>\nMatt Curry <matt@pseudocoder.com>\nMichael Monteleone <michael@michaelmonteleone.net>\nNoah Sloan <noah.sloan@gmail.com>\nTom Viner <github@viner.tv>\nDouglas Neiner <doug@pixelgraphics.us>\nAdam J. Sontag <ajpiano@ajpiano.com>\nDave Reed <dareed@microsoft.com>\nRalph Whitbeck <ralph.whitbeck@gmail.com>\nCarl Fürstenberg <azatoth@gmail.com>\nJacob Wright <jacwright@gmail.com>\nJ. Ryan Stinnett <jryans@gmail.com>\nunknown <Igen005@.upcorp.ad.uprr.com>\ntemp01 <temp01irc@gmail.com>\nHeungsub Lee <h@subl.ee>\nColin Snover <colin@alpha.zetafleet.com>\nRyan W Tenney <ryan@10e.us>\nPinhook <contact@pinhooklabs.com>\nRon Otten <r.j.g.otten@gmail.com>\nJephte Clain <Jephte.Clain@univ-reunion.fr>\nAnton Matzneller <obhvsbypqghgc@gmail.com>\nAlex Sexton <AlexSexton@gmail.com>\nDan Heberden <danheberden@gmail.com>\nHenri Wiechers <hwiechers@gmail.com>\nRussell Holbrook <russell.holbrook@patch.com>\nJulian Aubourg <aubourg.julian@gmail.com>\nGianni Alessandro Chiappetta <gianni@runlevel6.org>\nScott Jehl <scott@scottjehl.com>\nJames Burke <jrburke@gmail.com>\nJonas Pfenniger <jonas@pfenniger.name>\nXavi Ramirez <xavi.rmz@gmail.com>\nJared Grippe <jared@deadlyicon.com>\nSylvester Keil <sylvester@keil.or.at>\nBrandon Sterne <bsterne@mozilla.com>\nMathias Bynens <mathias@qiwi.be>\nTimmy Willison <timmywillisn@gmail.com>\nCorey Frang <gnarf@gnarf.net>\nDigitalxero <digitalxero>\nAnton Kovalyov <anton@kovalyov.net>\nDavid Murdoch <musicisair@yahoo.com>\nJosh Varner <josh.varner@gmail.com>\nCharles McNulty <cmcnulty@kznf.com>\nJordan Boesch <jboesch26@gmail.com>\nJess Thrysoee <jess@thrysoee.dk>\nMichael Murray <m@murz.net>\nLee Carpenter <elcarpie@gmail.com>\nAlexis Abril <me@alexisabril.com>\nRob Morgan <robbym@gmail.com>\nJohn Firebaugh <john_firebaugh@bigfix.com>\nSam Bisbee <sam@sbisbee.com>\nGilmore Davidson <gilmoreorless@gmail.com>\nBrian Brennan <me@brianlovesthings.com>\nXavier Montillet <xavierm02.net@gmail.com>\nDaniel Pihlstrom <sciolist.se@gmail.com>\nSahab Yazdani <sahab.yazdani+github@gmail.com>\navaly <github-com@agachi.name>\nScott Hughes <hi@scott-hughes.me>\nMike Sherov <mike.sherov@gmail.com>\nGreg Hazel <ghazel@gmail.com>\nSchalk Neethling <schalk@ossreleasefeed.com>\nDenis Knauf <Denis.Knauf@gmail.com>\nTimo Tijhof <krinklemail@gmail.com>\nSteen Nielsen <swinedk@gmail.com>\nAnton Ryzhov <anton@ryzhov.me>\nShi Chuan <shichuanr@gmail.com>\nBerker Peksag <berker.peksag@gmail.com>\nToby Brain <tobyb@freshview.com>\nMatt Mueller <mattmuelle@gmail.com>\nJustin <drakefjustin@gmail.com>\nDaniel Herman <daniel.c.herman@gmail.com>\nOleg Gaidarenko <markelog@gmail.com>\nRichard Gibson <richard.gibson@gmail.com>\nRafaël Blais Masson <rafbmasson@gmail.com>\ncmc3cn <59194618@qq.com>\nJoe Presbrey <presbrey@gmail.com>\nSindre Sorhus <sindresorhus@gmail.com>\nArne de Bree <arne@bukkie.nl>\nVladislav Zarakovsky <vlad.zar@gmail.com>\nAndrew E Monat <amonat@gmail.com>\nOskari <admin@o-programs.com>\nJoao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>\ntsinha <tsinha@Anthonys-MacBook-Pro.local>\nMatt Farmer <matt@frmr.me>\nTrey Hunner <treyhunner@gmail.com>\nJason Moon <jmoon@socialcast.com>\nJeffery To <jeffery.to@gmail.com>\nKris Borchers <kris.borchers@gmail.com>\nVladimir Zhuravlev <private.face@gmail.com>\nJacob Thornton <jacobthornton@gmail.com>\nChad Killingsworth <chadkillingsworth@missouristate.edu>\nNowres Rafid <nowres.rafed@gmail.com>\nDavid Benjamin <davidben@mit.edu>\nUri Gilad <antishok@gmail.com>\nChris Faulkner <thefaulkner@gmail.com>\nElijah Manor <elijah.manor@gmail.com>\nDaniel Chatfield <chatfielddaniel@gmail.com>\nNikita Govorov <nikita.govorov@gmail.com>\nWesley Walser <wwalser@atlassian.com>\nMike Pennisi <mike@mikepennisi.com>\nMarkus Staab <markus.staab@redaxo.de>\nDave Riddle <david@joyvuu.com>\nCallum Macrae <callum@lynxphp.com>\nBenjamin Truyman <bentruyman@gmail.com>\nJames Huston <james@jameshuston.net>\nErick Ruiz de Chávez <erickrdch@gmail.com>\nDavid Bonner <dbonner@cogolabs.com>\nAkintayo Akinwunmi <aakinwunmi@judge.com>\nMORGAN <morgan@morgangraphics.com>\nIsmail Khair <ismail.khair@gmail.com>\nCarl Danley <carldanley@gmail.com>\nMike Petrovich <michael.c.petrovich@gmail.com>\nGreg Lavallee <greglavallee@wapolabs.com>\nDaniel Gálvez <dgalvez@editablething.com>\nSai Lung Wong <sai.wong@huffingtonpost.com>\nTom H Fuertes <TomFuertes@gmail.com>\nRoland Eckl <eckl.roland@googlemail.com>\nJay Merrifield <fracmak@gmail.com>\nAllen J Schmidt Jr <cobrasoft@gmail.com>\nJonathan Sampson <jjdsampson@gmail.com>\nMarcel Greter <marcel.greter@ocbnet.ch>\nMatthias Jäggli <matthias.jaeggli@gmail.com>\nDavid Fox <dfoxinator@gmail.com>\nYiming He <yiminghe@gmail.com>\nDevin Cooper <cooper.semantics@gmail.com>\nPaul Ramos <paul.b.ramos@gmail.com>\nRod Vagg <rod@vagg.org>\nBennett Sorbo <bsorbo@gmail.com>\nSebastian Burkhard <sebi.burkhard@gmail.com>\nnanto <nanto@moon.email.ne.jp>\nDanil Somsikov <danilasomsikov@gmail.com>\nRyunosuke SATO <tricknotes.rs@gmail.com>\nJean Boussier <jean.boussier@gmail.com>\nAdam Coulombe <me@adam.co>\nAndrew Plummer <plummer.andrew@gmail.com>\nMark Raddatz <mraddatz@gmail.com>\nDmitry Gusev <dmitry.gusev@gmail.com>\nMichał Gołębiowski <m.goleb@gmail.com>\nNguyen Phuc Lam <ruado1987@gmail.com>\nTom H Fuertes <tomfuertes@gmail.com>\nBrandon Johnson <bjohn465+github@gmail.com>\nJason Bedard <jason+jquery@jbedard.ca>\nKyle Robinson Young <kyle@dontkry.com>\nRenato Oliveira dos Santos <ros3@cin.ufpe.br>\nChris Talkington <chris@talkingtontech.com>\nEddie Monge <eddie@eddiemonge.com>\nTerry Jones <terry@jon.es>\nJason Merino <jasonmerino@gmail.com>\nJeremy Dunck <jdunck@gmail.com>\nChris Price <price.c@gmail.com>\nAmey Sakhadeo <me@ameyms.com>\nAnthony Ryan <anthonyryan1@gmail.com>\nDominik D. Geyer <dominik.geyer@gmail.com>\nGeorge Kats <katsgeorgeek@gmail.com>\nLihan Li <frankieteardrop@gmail.com>\nRonny Springer <springer.ronny@gmail.com>\nMarian Sollmann <marian.sollmann@cargomedia.ch>\nCorey Frang <gnarf37@gmail.com>\nChris Antaki <ChrisAntaki@gmail.com>\nNoah Hamann <njhamann@gmail.com>\nDavid Hong <d.hong@me.com>\nJakob Stoeck <jakob@pokermania.de>\nChristopher Jones <christopherjonesqed@gmail.com>\nForbes Lindesay <forbes@lindesay.co.uk>\nJohn Paul <john@johnkpaul.com>\nS. Andrew Sheppard <andrew@wq.io>\nLeonardo Balter <leonardo.balter@gmail.com>\nRoman Reiß <me@silverwind.io>\nBenjy Cui <benjytrys@gmail.com>\nRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>\nJohn Hoven <hovenj@gmail.com>\nChristian Kosmowski <ksmwsk@gmail.com>\nLiang Peng <poppinlp@gmail.com>\nTJ VanToll <tj.vantoll@gmail.com>\n"
  },
  {
    "path": "docs/lib/jquery-1.11.3/jquery.js",
    "content": "/*!\n * jQuery JavaScript Library v1.11.3\n * http://jquery.com/\n *\n * Includes Sizzle.js\n * http://sizzlejs.com/\n *\n * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2015-04-28T16:19Z\n */\n\n(function( global, factory ) {\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\t\t// For CommonJS and CommonJS-like environments where a proper window is present,\n\t\t// execute the factory and get jQuery\n\t\t// For environments that do not inherently posses a window with a document\n\t\t// (such as Node.js), expose a jQuery-making factory as module.exports\n\t\t// This accentuates the need for the creation of a real window\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n}(typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Can't do this because several apps including ASP.NET trace\n// the stack via arguments.caller.callee and Firefox dies if\n// you try to trace through \"use strict\" call chains. (#13335)\n// Support: Firefox 18+\n//\n\nvar deletedIds = [];\n\nvar slice = deletedIds.slice;\n\nvar concat = deletedIds.concat;\n\nvar push = deletedIds.push;\n\nvar indexOf = deletedIds.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar support = {};\n\n\n\nvar\n\tversion = \"1.11.3\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t},\n\n\t// Support: Android<4.1, IE<9\n\t// Make sure we trim BOM and NBSP\n\trtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g,\n\n\t// Matches dashed string for camelizing\n\trmsPrefix = /^-ms-/,\n\trdashAlpha = /-([\\da-z])/gi,\n\n\t// Used by jQuery.camelCase as callback to replace()\n\tfcamelCase = function( all, letter ) {\n\t\treturn letter.toUpperCase();\n\t};\n\njQuery.fn = jQuery.prototype = {\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// Start with an empty selector\n\tselector: \"\",\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\t\treturn num != null ?\n\n\t\t\t// Return just the one element from the set\n\t\t\t( num < 0 ? this[ num + this.length ] : this[ num ] ) :\n\n\t\t\t// Return all the elements in a clean array\n\t\t\tslice.call( this );\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\t\tret.context = this.context;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\t// (You can seed the arguments with an array of args, but this is\n\t// only used internally.)\n\teach: function( callback, args ) {\n\t\treturn jQuery.each( this, callback, args );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map(this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t}));\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor(null);\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: deletedIds.sort,\n\tsplice: deletedIds.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar src, copyIsArray, copy, name, options, clone,\n\t\ttarget = arguments[0] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !jQuery.isFunction(target) ) {\n\t\ttarget = {};\n\t}\n\n\t// extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\t\t// Only deal with non-null/undefined values\n\t\tif ( (options = arguments[ i ]) != null ) {\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tsrc = target[ name ];\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {\n\t\t\t\t\tif ( copyIsArray ) {\n\t\t\t\t\t\tcopyIsArray = false;\n\t\t\t\t\t\tclone = src && jQuery.isArray(src) ? src : [];\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src && jQuery.isPlainObject(src) ? src : {};\n\t\t\t\t\t}\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend({\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\t// See test/unit/core.js for details concerning isFunction.\n\t// Since version 1.3, DOM methods and functions like alert\n\t// aren't supported. They return false on IE (#2968).\n\tisFunction: function( obj ) {\n\t\treturn jQuery.type(obj) === \"function\";\n\t},\n\n\tisArray: Array.isArray || function( obj ) {\n\t\treturn jQuery.type(obj) === \"array\";\n\t},\n\n\tisWindow: function( obj ) {\n\t\t/* jshint eqeqeq: false */\n\t\treturn obj != null && obj == obj.window;\n\t},\n\n\tisNumeric: function( obj ) {\n\t\t// parseFloat NaNs numeric-cast false positives (null|true|false|\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t// adding 1 corrects loss of precision from parseFloat (#15100)\n\t\treturn !jQuery.isArray( obj ) && (obj - parseFloat( obj ) + 1) >= 0;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\tisPlainObject: function( obj ) {\n\t\tvar key;\n\n\t\t// Must be an Object.\n\t\t// Because of IE, we also have to check the presence of the constructor property.\n\t\t// Make sure that DOM nodes and window objects don't pass through, as well\n\t\tif ( !obj || jQuery.type(obj) !== \"object\" || obj.nodeType || jQuery.isWindow( obj ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\ttry {\n\t\t\t// Not own constructor property must be Object\n\t\t\tif ( obj.constructor &&\n\t\t\t\t!hasOwn.call(obj, \"constructor\") &&\n\t\t\t\t!hasOwn.call(obj.constructor.prototype, \"isPrototypeOf\") ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\t// IE8,9 Will throw exceptions on certain host objects #9897\n\t\t\treturn false;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Handle iteration over inherited properties before own properties.\n\t\tif ( support.ownLast ) {\n\t\t\tfor ( key in obj ) {\n\t\t\t\treturn hasOwn.call( obj, key );\n\t\t\t}\n\t\t}\n\n\t\t// Own properties are enumerated firstly, so to speed up,\n\t\t// if last one is own, then all properties are own.\n\t\tfor ( key in obj ) {}\n\n\t\treturn key === undefined || hasOwn.call( obj, key );\n\t},\n\n\ttype: function( obj ) {\n\t\tif ( obj == null ) {\n\t\t\treturn obj + \"\";\n\t\t}\n\t\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\t\tclass2type[ toString.call(obj) ] || \"object\" :\n\t\t\ttypeof obj;\n\t},\n\n\t// Evaluates a script in a global context\n\t// Workarounds based on findings by Jim Driscoll\n\t// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context\n\tglobalEval: function( data ) {\n\t\tif ( data && jQuery.trim( data ) ) {\n\t\t\t// We use execScript on Internet Explorer\n\t\t\t// We use an anonymous function so that context is window\n\t\t\t// rather than jQuery in Firefox\n\t\t\t( window.execScript || function( data ) {\n\t\t\t\twindow[ \"eval\" ].call( window, data );\n\t\t\t} )( data );\n\t\t}\n\t},\n\n\t// Convert dashed to camelCase; used by the css and data modules\n\t// Microsoft forgot to hump their vendor prefix (#9572)\n\tcamelCase: function( string ) {\n\t\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n\t},\n\n\tnodeName: function( elem, name ) {\n\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\t},\n\n\t// args is for internal usage only\n\teach: function( obj, callback, args ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = obj.length,\n\t\t\tisArray = isArraylike( obj );\n\n\t\tif ( args ) {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// A special, fast, case for the most common use of each\n\t\t} else {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// Support: Android<4.1, IE<9\n\ttrim: function( text ) {\n\t\treturn text == null ?\n\t\t\t\"\" :\n\t\t\t( text + \"\" ).replace( rtrim, \"\" );\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArraylike( Object(arr) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\tvar len;\n\n\t\tif ( arr ) {\n\t\t\tif ( indexOf ) {\n\t\t\t\treturn indexOf.call( arr, elem, i );\n\t\t\t}\n\n\t\t\tlen = arr.length;\n\t\t\ti = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t// Skip accessing in sparse arrays\n\t\t\t\tif ( i in arr && arr[ i ] === elem ) {\n\t\t\t\t\treturn i;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn -1;\n\t},\n\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\twhile ( j < len ) {\n\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Workaround casting of .length to NaN on otherwise arraylike objects (e.g., NodeLists)\n\t\tif ( len !== len ) {\n\t\t\twhile ( second[j] !== undefined ) {\n\t\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t\t}\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tisArray = isArraylike( elems ),\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArray ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn concat.apply( [], ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// Bind a function to a context, optionally partially applying any\n\t// arguments.\n\tproxy: function( fn, context ) {\n\t\tvar args, proxy, tmp;\n\n\t\tif ( typeof context === \"string\" ) {\n\t\t\ttmp = fn[ context ];\n\t\t\tcontext = fn;\n\t\t\tfn = tmp;\n\t\t}\n\n\t\t// Quick check to determine if target is callable, in the spec\n\t\t// this throws a TypeError, but we will just return undefined.\n\t\tif ( !jQuery.isFunction( fn ) ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\t// Simulated bind\n\t\targs = slice.call( arguments, 2 );\n\t\tproxy = function() {\n\t\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t\t};\n\n\t\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\t\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\t\treturn proxy;\n\t},\n\n\tnow: function() {\n\t\treturn +( new Date() );\n\t},\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n});\n\n// Populate the class2type map\njQuery.each(\"Boolean Number String Function Array Date RegExp Object Error\".split(\" \"), function(i, name) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n});\n\nfunction isArraylike( obj ) {\n\n\t// Support: iOS 8.2 (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = \"length\" in obj && obj.length,\n\t\ttype = jQuery.type( obj );\n\n\tif ( type === \"function\" || jQuery.isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\tif ( obj.nodeType === 1 && length ) {\n\t\treturn true;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.2.0-pre\n * http://sizzlejs.com/\n *\n * Copyright 2008, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2014-12-16\n */\n(function( window ) {\n\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// General-purpose constants\n\tMAX_NEGATIVE = 1 << 31,\n\n\t// Instance methods\n\thasOwn = ({}).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpush_native = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\t// Use a stripped-down indexOf as it's faster than native\n\t// http://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[i] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\t// http://www.w3.org/TR/css3-syntax/#characters\n\tcharacterEncoding = \"(?:\\\\\\\\.|[\\\\w-]|[^\\\\x00-\\\\xa0])+\",\n\n\t// Loosely modeled on CSS identifier characters\n\t// An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors\n\t// Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier\n\tidentifier = characterEncoding.replace( \"w\", \"w#\" ),\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + characterEncoding + \")(?:\" + whitespace +\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\t\t// \"Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" + whitespace +\n\t\t\"*\\\\]\",\n\n\tpseudos = \":(\" + characterEncoding + \")(?:\\\\((\" +\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" + whitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace + \"*\" ),\n\n\trattributeQuotes = new RegExp( \"=\" + whitespace + \"*([^\\\\]'\\\"]*?)\" + whitespace + \"*\\\\]\", \"g\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + characterEncoding + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + characterEncoding + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + characterEncoding.replace( \"w\", \"w*\" ) + \")\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" + whitespace +\n\t\t\t\"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" + whitespace +\n\t\t\t\"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace + \"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" +\n\t\t\twhitespace + \"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\trescape = /'|\\\\/g,\n\n\t// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\([\\\\da-f]{1,6}\" + whitespace + \"?|(\" + whitespace + \")|.)\", \"ig\" ),\n\tfunescape = function( _, escaped, escapedWhitespace ) {\n\t\tvar high = \"0x\" + escaped - 0x10000;\n\t\t// NaN means non-codepoint\n\t\t// Support: Firefox<24\n\t\t// Workaround erroneous numeric interpretation of +\"0x\"\n\t\treturn high !== high || escapedWhitespace ?\n\t\t\tescaped :\n\t\t\thigh < 0 ?\n\t\t\t\t// BMP codepoint\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\t// Supplemental Plane codepoint (surrogate pair)\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t};\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t(arr = slice.call( preferredDoc.childNodes )),\n\t\tpreferredDoc.childNodes\n\t);\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpush_native.apply( target, slice.call(els) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( (target[j++] = els[i++]) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar match, elem, m, nodeType,\n\t\t// QSA vars\n\t\ti, groups, old, nid, newContext, newSelector;\n\n\tif ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\n\tcontext = context || document;\n\tresults = results || [];\n\tnodeType = context.nodeType;\n\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\tif ( !seed && documentIsHTML ) {\n\n\t\t// Try to shortcut find operations when possible (e.g., not under DocumentFragment)\n\t\tif ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {\n\t\t\t// Speed-up: Sizzle(\"#ID\")\n\t\t\tif ( (m = match[1]) ) {\n\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\telem = context.getElementById( m );\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document (jQuery #6963)\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE, Opera, and Webkit return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t// Context is not a document\n\t\t\t\t\tif ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&\n\t\t\t\t\t\tcontains( context, elem ) && elem.id === m ) {\n\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Speed-up: Sizzle(\"TAG\")\n\t\t\t} else if ( match[2] ) {\n\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\treturn results;\n\n\t\t\t// Speed-up: Sizzle(\".CLASS\")\n\t\t\t} else if ( (m = match[3]) && support.getElementsByClassName ) {\n\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\treturn results;\n\t\t\t}\n\t\t}\n\n\t\t// QSA path\n\t\tif ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {\n\t\t\tnid = old = expando;\n\t\t\tnewContext = context;\n\t\t\tnewSelector = nodeType !== 1 && selector;\n\n\t\t\t// qSA works strangely on Element-rooted queries\n\t\t\t// We can work around this by specifying an extra ID on the root\n\t\t\t// and working up from there (Thanks to Andrew Dupont for the technique)\n\t\t\t// IE 8 doesn't work on object elements\n\t\t\tif ( nodeType === 1 && context.nodeName.toLowerCase() !== \"object\" ) {\n\t\t\t\tgroups = tokenize( selector );\n\n\t\t\t\tif ( (old = context.getAttribute(\"id\")) ) {\n\t\t\t\t\tnid = old.replace( rescape, \"\\\\$&\" );\n\t\t\t\t} else {\n\t\t\t\t\tcontext.setAttribute( \"id\", nid );\n\t\t\t\t}\n\t\t\t\tnid = \"[id='\" + nid + \"'] \";\n\n\t\t\t\ti = groups.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tgroups[i] = nid + toSelector( groups[i] );\n\t\t\t\t}\n\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) || context;\n\t\t\t\tnewSelector = groups.join(\",\");\n\t\t\t}\n\n\t\t\tif ( newSelector ) {\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch(qsaError) {\n\t\t\t\t} finally {\n\t\t\t\t\tif ( !old ) {\n\t\t\t\t\t\tcontext.removeAttribute(\"id\");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {Function(string, Object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn (cache[ key + \" \" ] = value);\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created div and expects a boolean result\n */\nfunction assert( fn ) {\n\tvar div = document.createElement(\"div\");\n\n\ttry {\n\t\treturn !!fn( div );\n\t} catch (e) {\n\t\treturn false;\n\t} finally {\n\t\t// Remove from its parent by default\n\t\tif ( div.parentNode ) {\n\t\t\tdiv.parentNode.removeChild( div );\n\t\t}\n\t\t// release memory in IE\n\t\tdiv = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split(\"|\"),\n\t\ti = attrs.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[i] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\t( ~b.sourceIndex || MAX_NEGATIVE ) -\n\t\t\t( ~a.sourceIndex || MAX_NEGATIVE );\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( (cur = cur.nextSibling) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn (name === \"input\" || name === \"button\") && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction(function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction(function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ (j = matchIndexes[i]) ] ) {\n\t\t\t\t\tseed[j] = !(matches[j] = seed[j]);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t});\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\t// documentElement is verified for cases where it doesn't yet exist\n\t// (such as loading iframes in IE - #4833)\n\tvar documentElement = elem && (elem.ownerDocument || elem).documentElement;\n\treturn documentElement ? documentElement.nodeName !== \"HTML\" : false;\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, parent,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// If no document and documentElement is available, return\n\tif ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Set our document\n\tdocument = doc;\n\tdocElem = doc.documentElement;\n\tparent = doc.defaultView;\n\n\t// Support: IE>8\n\t// If iframe document is assigned to \"document\" variable and if iframe has been reloaded,\n\t// IE will throw \"permission denied\" error when accessing \"document\" variable, see jQuery #13936\n\t// IE6-8 do not support the defaultView property so parent will be undefined\n\tif ( parent && parent !== parent.top ) {\n\t\t// IE11 does not have attachEvent, so all must suffer\n\t\tif ( parent.addEventListener ) {\n\t\t\tparent.addEventListener( \"unload\", unloadHandler, false );\n\t\t} else if ( parent.attachEvent ) {\n\t\t\tparent.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t/* Support tests\n\t---------------------------------------------------------------------- */\n\tdocumentIsHTML = !isXML( doc );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert(function( div ) {\n\t\tdiv.className = \"i\";\n\t\treturn !div.getAttribute(\"className\");\n\t});\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert(function( div ) {\n\t\tdiv.appendChild( doc.createComment(\"\") );\n\t\treturn !div.getElementsByTagName(\"*\").length;\n\t});\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( doc.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert(function( div ) {\n\t\tdocElem.appendChild( div ).id = expando;\n\t\treturn !doc.getElementsByName || !doc.getElementsByName( expando ).length;\n\t});\n\n\t// ID find and filter\n\tif ( support.getById ) {\n\t\tExpr.find[\"ID\"] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar m = context.getElementById( id );\n\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\treturn m && m.parentNode ? [ m ] : [];\n\t\t\t}\n\t\t};\n\t\tExpr.filter[\"ID\"] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute(\"id\") === attrId;\n\t\t\t};\n\t\t};\n\t} else {\n\t\t// Support: IE6/7\n\t\t// getElementById is not reliable as a find shortcut\n\t\tdelete Expr.find[\"ID\"];\n\n\t\tExpr.filter[\"ID\"] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" && elem.getAttributeNode(\"id\");\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[\"TAG\"] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( (elem = results[i++]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[\"CLASS\"] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See http://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert(function( div ) {\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// http://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( div ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\f]' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( div.querySelectorAll(\"[msallowcapture^='']\").length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !div.querySelectorAll(\"[selected]\").length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.2+, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.7+\n\t\t\tif ( !div.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push(\"~=\");\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":checked\").length ) {\n\t\t\t\trbuggyQSA.push(\":checked\");\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibing-combinator selector` fails\n\t\t\tif ( !div.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push(\".#.+[+~]\");\n\t\t\t}\n\t\t});\n\n\t\tassert(function( div ) {\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = doc.createElement(\"input\");\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tdiv.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( div.querySelectorAll(\"[name=d]\").length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":enabled\").length ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tdiv.querySelectorAll(\"*,:x\");\n\t\t\trbuggyQSA.push(\",.*:\");\n\t\t});\n\t}\n\n\tif ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector) )) ) {\n\n\t\tassert(function( div ) {\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( div, \"div\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( div, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t});\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join(\"|\") );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join(\"|\") );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully does not implement inclusive descendent\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t));\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( (b = b.parentNode) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\tcompare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\tif ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t\tif ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\t\t\treturn a === doc ? -1 :\n\t\t\t\tb === doc ? 1 :\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[i] === bp[i] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[i], bp[i] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\tap[i] === preferredDoc ? -1 :\n\t\t\tbp[i] === preferredDoc ? 1 :\n\t\t\t0;\n\t};\n\n\treturn doc;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\t// Make sure that attribute selectors are quoted\n\texpr = expr.replace( rattributeQuotes, \"='$1']\" );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t// fragment in IE 9\n\t\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch (e) {}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\t// Set document vars if needed\n\tif ( ( context.ownerDocument || context ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t(val = elem.getAttributeNode(name)) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( (elem = results[i++]) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( (node = elem[i++]) ) {\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[1] = match[1].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[3] = ( match[3] || match[4] || match[5] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[2] === \"~=\" ) {\n\t\t\t\tmatch[3] = \" \" + match[3] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[1] = match[1].toLowerCase();\n\n\t\t\tif ( match[1].slice( 0, 3 ) === \"nth\" ) {\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[3] ) {\n\t\t\t\t\tSizzle.error( match[0] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === \"even\" || match[3] === \"odd\" ) );\n\t\t\t\tmatch[5] = +( ( match[7] + match[8] ) || match[3] === \"odd\" );\n\n\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[3] ) {\n\t\t\t\tSizzle.error( match[0] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[6] && match[2];\n\n\t\t\tif ( matchExpr[\"CHILD\"].test( match[0] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[3] ) {\n\t\t\t\tmatch[2] = match[4] || match[5] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t(excess = tokenize( unquoted, true )) &&\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t(excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[0] = match[0].slice( 0, excess );\n\t\t\t\tmatch[2] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() { return true; } :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t(pattern = new RegExp( \"(^|\" + whitespace + \")\" + className + \"(\" + whitespace + \"|$)\" )) &&\n\t\t\t\tclassCache( className, function( elem ) {\n\t\t\t\t\treturn pattern.test( typeof elem.className === \"string\" && elem.className || typeof elem.getAttribute !== \"undefined\" && elem.getAttribute(\"class\") || \"\" );\n\t\t\t\t});\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tvar cache, outerCache, node, diff, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( (node = node[ dir ]) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\t\t\t\t\t\t\touterCache = parent[ expando ] || (parent[ expando ] = {});\n\t\t\t\t\t\t\tcache = outerCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[0] === dirruns && cache[1];\n\t\t\t\t\t\t\tdiff = cache[0] === dirruns && cache[2];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\touterCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t} else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {\n\t\t\t\t\t\t\tdiff = cache[1];\n\n\t\t\t\t\t\t// xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\tif ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {\n\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t(node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction(function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[i] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[i] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction(function( selector ) {\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction(function( seed, matches, context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = unmatched[i]) ) {\n\t\t\t\t\t\t\tseed[i] = !(matches[i] = elem);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}) :\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tinput[0] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[0] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t}),\n\n\t\t\"has\": markFunction(function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t}),\n\n\t\t\"contains\": markFunction(function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t}),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test(lang || \"\") ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( (elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute(\"xml:lang\") || elem.getAttribute(\"lang\")) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( (elem = elem.parentNode) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t}),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": function( elem ) {\n\t\t\treturn elem.disabled === false;\n\t\t},\n\n\t\t\"disabled\": function( elem ) {\n\t\t\treturn elem.disabled === true;\n\t\t},\n\n\t\t\"checked\": function( elem ) {\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn (nodeName === \"input\" && !!elem.checked) || (nodeName === \"option\" && !!elem.selected);\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[\"empty\"]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( (attr = elem.getAttribute(\"type\")) == null || attr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo(function() {\n\t\t\treturn [ 0 ];\n\t\t}),\n\n\t\t\"last\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t}),\n\n\t\t\"eq\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t}),\n\n\t\t\"even\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"odd\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"lt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"gt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t})\n\t}\n};\n\nExpr.pseudos[\"nth\"] = Expr.pseudos[\"eq\"];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || (match = rcomma.exec( soFar )) ) {\n\t\t\tif ( match ) {\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[0].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( (tokens = []) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( (match = rcombinators.exec( soFar )) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push({\n\t\t\t\tvalue: matched,\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[0].replace( rtrim, \" \" )\n\t\t\t});\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||\n\t\t\t\t(match = preFilters[ type ]( match ))) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push({\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t});\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[i].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tcheckNonElements = base && dir === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from dir caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || (elem[ expando ] = {});\n\t\t\t\t\t\tif ( (oldCache = outerCache[ dir ]) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn (newCache[ 2 ] = oldCache[ 2 ]);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\touterCache[ dir ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[i]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[0];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[i], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (elem = unmatched[i]) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction(function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts( selector || \"*\", context.nodeType ? [ context ] : context, [] ),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( (elem = temp[i]) ) {\n\t\t\t\t\tmatcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = matcherOut[i]) ) {\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( (matcherIn[i] = elem) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, (matcherOut = []), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( (elem = matcherOut[i]) &&\n\t\t\t\t\t\t(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {\n\n\t\t\t\t\t\tseed[temp] = !(results[temp] = elem);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t});\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[0].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[\" \"],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t(checkContext = context).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (matcher = Expr.relative[ tokens[i].type ]) ) {\n\t\t\tmatchers = [ addCombinator(elementMatcher( matchers ), matcher) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[j].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\t\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\t\ttokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" })\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( (tokens = tokens.slice( j )) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[\"TAG\"]( \"*\", outermost ),\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\t\t\t\toutermostContext = context !== document && context;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Keep `i` a string if there are no elements so `matchedCount` will be \"00\" below\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && (elem = elems[i]) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (matcher = elementMatchers[j++]) ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( (elem = !matcher && elem) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\tmatchedCount += i;\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (matcher = setMatchers[j++]) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !(unmatched[i] || setMatched[i]) ) {\n\t\t\t\t\t\t\t\tsetMatched[i] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[i] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( (selector = compiled.selector || selector) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is no seed and only one group\n\tif ( match.length === 1 ) {\n\n\t\t// Take a shortcut and set the context if the root selector is an ID\n\t\ttokens = match[0] = match[0].slice( 0 );\n\t\tif ( tokens.length > 2 && (token = tokens[0]).type === \"ID\" &&\n\t\t\t\tsupport.getById && context.nodeType === 9 && documentIsHTML &&\n\t\t\t\tExpr.relative[ tokens[1].type ] ) {\n\n\t\t\tcontext = ( Expr.find[\"ID\"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[\"needsContext\"].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[i];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ (type = token.type) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( (find = Expr.find[ type ]) ) {\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( (seed = find(\n\t\t\t\t\ttoken.matches[0].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context\n\t\t\t\t)) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\trsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split(\"\").sort( sortOrder ).join(\"\") === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert(function( div1 ) {\n\t// Should return 1, but returns 4 (following)\n\treturn div1.compareDocumentPosition( document.createElement(\"div\") ) & 1;\n});\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert(function( div ) {\n\tdiv.innerHTML = \"<a href='#'></a>\";\n\treturn div.firstChild.getAttribute(\"href\") === \"#\" ;\n}) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert(function( div ) {\n\tdiv.innerHTML = \"<input/>\";\n\tdiv.firstChild.setAttribute( \"value\", \"\" );\n\treturn div.firstChild.getAttribute( \"value\" ) === \"\";\n}) ) {\n\taddHandle( \"value\", function( elem, name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert(function( div ) {\n\treturn div.getAttribute(\"disabled\") == null;\n}) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t\t(val = elem.getAttributeNode( name )) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\tnull;\n\t\t}\n\t});\n}\n\nreturn Sizzle;\n\n})( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\njQuery.expr[\":\"] = jQuery.expr.pseudos;\njQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\n\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\nvar rsingleTag = (/^<(\\w+)\\s*\\/?>(?:<\\/\\1>|)$/);\n\n\n\nvar risSimple = /^.[^:#\\[\\.,]*$/;\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( jQuery.isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\t/* jshint -W018 */\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t});\n\n\t}\n\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t});\n\n\t}\n\n\tif ( typeof qualifier === \"string\" ) {\n\t\tif ( risSimple.test( qualifier ) ) {\n\t\t\treturn jQuery.filter( qualifier, elements, not );\n\t\t}\n\n\t\tqualifier = jQuery.filter( qualifier, elements );\n\t}\n\n\treturn jQuery.grep( elements, function( elem ) {\n\t\treturn ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not;\n\t});\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\treturn elems.length === 1 && elem.nodeType === 1 ?\n\t\tjQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :\n\t\tjQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\t\treturn elem.nodeType === 1;\n\t\t}));\n};\n\njQuery.fn.extend({\n\tfind: function( selector ) {\n\t\tvar i,\n\t\t\tret = [],\n\t\t\tself = this,\n\t\t\tlen = self.length;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter(function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}) );\n\t\t}\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\t// Needed because $( selector, context ) becomes $( context ).find( selector )\n\t\tret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );\n\t\tret.selector = this.selector ? this.selector + \" \" + selector : selector;\n\t\treturn ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], false) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], true) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n});\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// Use the correct document accordingly with window argument (sandbox)\n\tdocument = window.document,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]*))$/,\n\n\tinit = jQuery.fn.init = function( selector, context ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector.charAt(0) === \"<\" && selector.charAt( selector.length - 1 ) === \">\" && selector.length >= 3 ) {\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && (match[1] || !context) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[1] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[0] : context;\n\n\t\t\t\t\t// scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[1],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( jQuery.isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[2] );\n\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE and Opera return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id !== match[2] ) {\n\t\t\t\t\t\t\treturn rootjQuery.find( selector );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Otherwise, we inject the element directly into the jQuery object\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t\tthis[0] = elem;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.context = document;\n\t\t\t\t\tthis.selector = selector;\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || rootjQuery ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis.context = this[0] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( jQuery.isFunction( selector ) ) {\n\t\t\treturn typeof rootjQuery.ready !== \"undefined\" ?\n\t\t\t\trootjQuery.ready( selector ) :\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\tif ( selector.selector !== undefined ) {\n\t\t\tthis.selector = selector.selector;\n\t\t\tthis.context = selector.context;\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\t// methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.extend({\n\tdir: function( elem, dir, until ) {\n\t\tvar matched = [],\n\t\t\tcur = elem[ dir ];\n\n\t\twhile ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {\n\t\t\tif ( cur.nodeType === 1 ) {\n\t\t\t\tmatched.push( cur );\n\t\t\t}\n\t\t\tcur = cur[dir];\n\t\t}\n\t\treturn matched;\n\t},\n\n\tsibling: function( n, elem ) {\n\t\tvar r = [];\n\n\t\tfor ( ; n; n = n.nextSibling ) {\n\t\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\t\tr.push( n );\n\t\t\t}\n\t\t}\n\n\t\treturn r;\n\t}\n});\n\njQuery.fn.extend({\n\thas: function( target ) {\n\t\tvar i,\n\t\t\ttargets = jQuery( target, this ),\n\t\t\tlen = targets.length;\n\n\t\treturn this.filter(function() {\n\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[i] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\tpos = rneedsContext.test( selectors ) || typeof selectors !== \"string\" ?\n\t\t\t\tjQuery( selectors, context || this.context ) :\n\t\t\t\t0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tfor ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) {\n\t\t\t\t// Always skip document fragments\n\t\t\t\tif ( cur.nodeType < 11 && (pos ?\n\t\t\t\t\tpos.index(cur) > -1 :\n\n\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\tjQuery.find.matchesSelector(cur, selectors)) ) {\n\n\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within\n\t// the matched set of elements\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn jQuery.inArray( this[0], jQuery( elem ) );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn jQuery.inArray(\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[0] : elem, this );\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.unique(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter(selector)\n\t\t);\n\t}\n});\n\nfunction sibling( cur, dir ) {\n\tdo {\n\t\tcur = cur[ dir ];\n\t} while ( cur && cur.nodeType !== 1 );\n\n\treturn cur;\n}\n\njQuery.each({\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn jQuery.dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn jQuery.sibling( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\treturn jQuery.nodeName( elem, \"iframe\" ) ?\n\t\t\telem.contentDocument || elem.contentWindow.document :\n\t\t\tjQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar ret = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tret = jQuery.filter( selector, ret );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tret = jQuery.unique( ret );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tret = ret.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\nvar rnotwhite = (/\\S+/g);\n\n\n\n// String to Object options format cache\nvar optionsCache = {};\n\n// Convert String-formatted options into Object-formatted ones and store in cache\nfunction createOptions( options ) {\n\tvar object = optionsCache[ options ] = {};\n\tjQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t});\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\t( optionsCache[ options ] || createOptions( options ) ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\t\t// Last fire value (for non-forgettable lists)\n\t\tmemory,\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\t\t// End of the loop when firing\n\t\tfiringLength,\n\t\t// Index of currently firing callback (modified by remove if needed)\n\t\tfiringIndex,\n\t\t// First callback to fire (used internally by add and fireWith)\n\t\tfiringStart,\n\t\t// Actual callback list\n\t\tlist = [],\n\t\t// Stack of fire calls for repeatable lists\n\t\tstack = !options.once && [],\n\t\t// Fire callbacks\n\t\tfire = function( data ) {\n\t\t\tmemory = options.memory && data;\n\t\t\tfired = true;\n\t\t\tfiringIndex = firingStart || 0;\n\t\t\tfiringStart = 0;\n\t\t\tfiringLength = list.length;\n\t\t\tfiring = true;\n\t\t\tfor ( ; list && firingIndex < firingLength; firingIndex++ ) {\n\t\t\t\tif ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {\n\t\t\t\t\tmemory = false; // To prevent further calls using add\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tfiring = false;\n\t\t\tif ( list ) {\n\t\t\t\tif ( stack ) {\n\t\t\t\t\tif ( stack.length ) {\n\t\t\t\t\t\tfire( stack.shift() );\n\t\t\t\t\t}\n\t\t\t\t} else if ( memory ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t} else {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t// Actual Callbacks object\n\t\tself = {\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\t// First, we save the current length\n\t\t\t\t\tvar start = list.length;\n\t\t\t\t\t(function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tvar type = jQuery.type( arg );\n\t\t\t\t\t\t\tif ( type === \"function\" ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && type !== \"string\" ) {\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t})( arguments );\n\t\t\t\t\t// Do we need to add the callbacks to the\n\t\t\t\t\t// current firing batch?\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tfiringLength = list.length;\n\t\t\t\t\t// With memory, if we're not firing then\n\t\t\t\t\t// we should call right away\n\t\t\t\t\t} else if ( memory ) {\n\t\t\t\t\t\tfiringStart = start;\n\t\t\t\t\t\tfire( memory );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\t\tvar index;\n\t\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\t\tlist.splice( index, 1 );\n\t\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\t\t\tif ( index <= firingLength ) {\n\t\t\t\t\t\t\t\t\tfiringLength--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );\n\t\t\t},\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tlist = [];\n\t\t\t\tfiringLength = 0;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Have the list do nothing anymore\n\t\t\tdisable: function() {\n\t\t\t\tlist = stack = memory = undefined;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it disabled?\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\t\t\t// Lock the list in its current state\n\t\t\tlock: function() {\n\t\t\t\tstack = undefined;\n\t\t\t\tif ( !memory ) {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it locked?\n\t\t\tlocked: function() {\n\t\t\t\treturn !stack;\n\t\t\t},\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( list && ( !fired || stack ) ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tstack.push( args );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tfire( args );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\njQuery.extend({\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\t\t\t\t// action, add listener, listener list, final state\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks(\"once memory\"), \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks(\"once memory\"), \"rejected\" ],\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks(\"memory\") ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\tthen: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\t\t\t\t\treturn jQuery.Deferred(function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\t\t\t\t\tvar fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];\n\t\t\t\t\t\t\t// deferred[ done | fail | progress ] for forwarding actions to newDefer\n\t\t\t\t\t\t\tdeferred[ tuple[1] ](function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && jQuery.isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject )\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t});\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t}).promise();\n\t\t\t\t},\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Keep pipe for back-compat\n\t\tpromise.pipe = promise.then;\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 3 ];\n\n\t\t\t// promise[ done | fail | progress ] = list.add\n\t\t\tpromise[ tuple[1] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(function() {\n\t\t\t\t\t// state = [ resolved | rejected ]\n\t\t\t\t\tstate = stateString;\n\n\t\t\t\t// [ reject_list | resolve_list ].disable; progress_list.lock\n\t\t\t\t}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );\n\t\t\t}\n\n\t\t\t// deferred[ resolve | reject | notify ]\n\t\t\tdeferred[ tuple[0] ] = function() {\n\t\t\t\tdeferred[ tuple[0] + \"With\" ]( this === deferred ? promise : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\t\t\tdeferred[ tuple[0] + \"With\" ] = list.fireWith;\n\t\t});\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( subordinate /* , ..., subordinateN */ ) {\n\t\tvar i = 0,\n\t\t\tresolveValues = slice.call( arguments ),\n\t\t\tlength = resolveValues.length,\n\n\t\t\t// the count of uncompleted subordinates\n\t\t\tremaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,\n\n\t\t\t// the master Deferred. If resolveValues consist of only a single Deferred, just use that.\n\t\t\tdeferred = remaining === 1 ? subordinate : jQuery.Deferred(),\n\n\t\t\t// Update function for both resolve and progress values\n\t\t\tupdateFunc = function( i, contexts, values ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tcontexts[ i ] = this;\n\t\t\t\t\tvalues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( values === progressValues ) {\n\t\t\t\t\t\tdeferred.notifyWith( contexts, values );\n\n\t\t\t\t\t} else if ( !(--remaining) ) {\n\t\t\t\t\t\tdeferred.resolveWith( contexts, values );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t},\n\n\t\t\tprogressValues, progressContexts, resolveContexts;\n\n\t\t// add listeners to Deferred subordinates; treat others as resolved\n\t\tif ( length > 1 ) {\n\t\t\tprogressValues = new Array( length );\n\t\t\tprogressContexts = new Array( length );\n\t\t\tresolveContexts = new Array( length );\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {\n\t\t\t\t\tresolveValues[ i ].promise()\n\t\t\t\t\t\t.done( updateFunc( i, resolveContexts, resolveValues ) )\n\t\t\t\t\t\t.fail( deferred.reject )\n\t\t\t\t\t\t.progress( updateFunc( i, progressContexts, progressValues ) );\n\t\t\t\t} else {\n\t\t\t\t\t--remaining;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// if we're not waiting on anything, resolve the master\n\t\tif ( !remaining ) {\n\t\t\tdeferred.resolveWith( resolveContexts, resolveValues );\n\t\t}\n\n\t\treturn deferred.promise();\n\t}\n});\n\n\n// The deferred used on DOM ready\nvar readyList;\n\njQuery.fn.ready = function( fn ) {\n\t// Add the callback\n\tjQuery.ready.promise().done( fn );\n\n\treturn this;\n};\n\njQuery.extend({\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Hold (or release) the ready event\n\tholdReady: function( hold ) {\n\t\tif ( hold ) {\n\t\t\tjQuery.readyWait++;\n\t\t} else {\n\t\t\tjQuery.ready( true );\n\t\t}\n\t},\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).\n\t\tif ( !document.body ) {\n\t\t\treturn setTimeout( jQuery.ready );\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\n\t\t// Trigger any bound ready events\n\t\tif ( jQuery.fn.triggerHandler ) {\n\t\t\tjQuery( document ).triggerHandler( \"ready\" );\n\t\t\tjQuery( document ).off( \"ready\" );\n\t\t}\n\t}\n});\n\n/**\n * Clean-up method for dom ready events\n */\nfunction detach() {\n\tif ( document.addEventListener ) {\n\t\tdocument.removeEventListener( \"DOMContentLoaded\", completed, false );\n\t\twindow.removeEventListener( \"load\", completed, false );\n\n\t} else {\n\t\tdocument.detachEvent( \"onreadystatechange\", completed );\n\t\twindow.detachEvent( \"onload\", completed );\n\t}\n}\n\n/**\n * The ready event handler and self cleanup method\n */\nfunction completed() {\n\t// readyState === \"complete\" is good enough for us to call the dom ready in oldIE\n\tif ( document.addEventListener || event.type === \"load\" || document.readyState === \"complete\" ) {\n\t\tdetach();\n\t\tjQuery.ready();\n\t}\n}\n\njQuery.ready.promise = function( obj ) {\n\tif ( !readyList ) {\n\n\t\treadyList = jQuery.Deferred();\n\n\t\t// Catch cases where $(document).ready() is called after the browser event has already occurred.\n\t\t// we once tried to use readyState \"interactive\" here, but it caused issues like the one\n\t\t// discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15\n\t\tif ( document.readyState === \"complete\" ) {\n\t\t\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\t\t\tsetTimeout( jQuery.ready );\n\n\t\t// Standards-based browsers support DOMContentLoaded\n\t\t} else if ( document.addEventListener ) {\n\t\t\t// Use the handy event callback\n\t\t\tdocument.addEventListener( \"DOMContentLoaded\", completed, false );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.addEventListener( \"load\", completed, false );\n\n\t\t// If IE event model is used\n\t\t} else {\n\t\t\t// Ensure firing before onload, maybe late but safe also for iframes\n\t\t\tdocument.attachEvent( \"onreadystatechange\", completed );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.attachEvent( \"onload\", completed );\n\n\t\t\t// If IE and not a frame\n\t\t\t// continually check to see if the document is ready\n\t\t\tvar top = false;\n\n\t\t\ttry {\n\t\t\t\ttop = window.frameElement == null && document.documentElement;\n\t\t\t} catch(e) {}\n\n\t\t\tif ( top && top.doScroll ) {\n\t\t\t\t(function doScrollCheck() {\n\t\t\t\t\tif ( !jQuery.isReady ) {\n\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t// Use the trick by Diego Perini\n\t\t\t\t\t\t\t// http://javascript.nwbox.com/IEContentLoaded/\n\t\t\t\t\t\t\ttop.doScroll(\"left\");\n\t\t\t\t\t\t} catch(e) {\n\t\t\t\t\t\t\treturn setTimeout( doScrollCheck, 50 );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// detach all dom ready events\n\t\t\t\t\t\tdetach();\n\n\t\t\t\t\t\t// and execute any waiting functions\n\t\t\t\t\t\tjQuery.ready();\n\t\t\t\t\t}\n\t\t\t\t})();\n\t\t\t}\n\t\t}\n\t}\n\treturn readyList.promise( obj );\n};\n\n\nvar strundefined = typeof undefined;\n\n\n\n// Support: IE<9\n// Iteration over object's inherited properties before its own\nvar i;\nfor ( i in jQuery( support ) ) {\n\tbreak;\n}\nsupport.ownLast = i !== \"0\";\n\n// Note: most support tests are defined in their respective modules.\n// false until the test is run\nsupport.inlineBlockNeedsLayout = false;\n\n// Execute ASAP in case we need to set body.style.zoom\njQuery(function() {\n\t// Minified: var a,b,c,d\n\tvar val, div, body, container;\n\n\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\tif ( !body || !body.style ) {\n\t\t// Return for frameset docs that don't have a body\n\t\treturn;\n\t}\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tcontainer = document.createElement( \"div\" );\n\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\tbody.appendChild( container ).appendChild( div );\n\n\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t// Support: IE<8\n\t\t// Check if natively block-level elements act like inline-block\n\t\t// elements when setting their display to 'inline' and giving\n\t\t// them layout\n\t\tdiv.style.cssText = \"display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1\";\n\n\t\tsupport.inlineBlockNeedsLayout = val = div.offsetWidth === 3;\n\t\tif ( val ) {\n\t\t\t// Prevent IE 6 from affecting layout for positioned elements #11048\n\t\t\t// Prevent IE from shrinking the body in IE 7 mode #12869\n\t\t\t// Support: IE<8\n\t\t\tbody.style.zoom = 1;\n\t\t}\n\t}\n\n\tbody.removeChild( container );\n});\n\n\n\n\n(function() {\n\tvar div = document.createElement( \"div\" );\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\n/**\n * Determines whether an object can have data\n */\njQuery.acceptData = function( elem ) {\n\tvar noData = jQuery.noData[ (elem.nodeName + \" \").toLowerCase() ],\n\t\tnodeType = +elem.nodeType || 1;\n\n\t// Do not set data on non-element DOM nodes because it will not be cleared (#8335).\n\treturn nodeType !== 1 && nodeType !== 9 ?\n\t\tfalse :\n\n\t\t// Nodes accept data unless otherwise specified; rejection can be conditional\n\t\t!noData || noData !== true && elem.getAttribute(\"classid\") === noData;\n};\n\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /([A-Z])/g;\n\nfunction dataAttr( elem, key, data ) {\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\n\t\tvar name = \"data-\" + key.replace( rmultiDash, \"-$1\" ).toLowerCase();\n\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = data === \"true\" ? true :\n\t\t\t\t\tdata === \"false\" ? false :\n\t\t\t\t\tdata === \"null\" ? null :\n\t\t\t\t\t// Only convert to a number if it doesn't change the string\n\t\t\t\t\t+data + \"\" === data ? +data :\n\t\t\t\t\trbrace.test( data ) ? jQuery.parseJSON( data ) :\n\t\t\t\t\tdata;\n\t\t\t} catch( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tjQuery.data( elem, key, data );\n\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\n\treturn data;\n}\n\n// checks a cache object for emptiness\nfunction isEmptyDataObject( obj ) {\n\tvar name;\n\tfor ( name in obj ) {\n\n\t\t// if the public data object is empty, the private is still empty\n\t\tif ( name === \"data\" && jQuery.isEmptyObject( obj[name] ) ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( name !== \"toJSON\" ) {\n\t\t\treturn false;\n\t\t}\n\t}\n\n\treturn true;\n}\n\nfunction internalData( elem, name, data, pvt /* Internal Use Only */ ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar ret, thisCache,\n\t\tinternalKey = jQuery.expando,\n\n\t\t// We have to handle DOM nodes and JS objects differently because IE6-7\n\t\t// can't GC object references properly across the DOM-JS boundary\n\t\tisNode = elem.nodeType,\n\n\t\t// Only DOM nodes need the global jQuery cache; JS object data is\n\t\t// attached directly to the object so GC can occur automatically\n\t\tcache = isNode ? jQuery.cache : elem,\n\n\t\t// Only defining an ID for JS objects if its cache already exists allows\n\t\t// the code to shortcut on the same path as a DOM node with no cache\n\t\tid = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;\n\n\t// Avoid doing any more work than we need to when trying to get data on an\n\t// object that has no data at all\n\tif ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === \"string\" ) {\n\t\treturn;\n\t}\n\n\tif ( !id ) {\n\t\t// Only DOM nodes need a new unique ID for each element since their data\n\t\t// ends up in the global cache\n\t\tif ( isNode ) {\n\t\t\tid = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++;\n\t\t} else {\n\t\t\tid = internalKey;\n\t\t}\n\t}\n\n\tif ( !cache[ id ] ) {\n\t\t// Avoid exposing jQuery metadata on plain JS objects when the object\n\t\t// is serialized using JSON.stringify\n\t\tcache[ id ] = isNode ? {} : { toJSON: jQuery.noop };\n\t}\n\n\t// An object can be passed to jQuery.data instead of a key/value pair; this gets\n\t// shallow copied over onto the existing cache\n\tif ( typeof name === \"object\" || typeof name === \"function\" ) {\n\t\tif ( pvt ) {\n\t\t\tcache[ id ] = jQuery.extend( cache[ id ], name );\n\t\t} else {\n\t\t\tcache[ id ].data = jQuery.extend( cache[ id ].data, name );\n\t\t}\n\t}\n\n\tthisCache = cache[ id ];\n\n\t// jQuery data() is stored in a separate object inside the object's internal data\n\t// cache in order to avoid key collisions between internal data and user-defined\n\t// data.\n\tif ( !pvt ) {\n\t\tif ( !thisCache.data ) {\n\t\t\tthisCache.data = {};\n\t\t}\n\n\t\tthisCache = thisCache.data;\n\t}\n\n\tif ( data !== undefined ) {\n\t\tthisCache[ jQuery.camelCase( name ) ] = data;\n\t}\n\n\t// Check for both converted-to-camel and non-converted data property names\n\t// If a data property was specified\n\tif ( typeof name === \"string\" ) {\n\n\t\t// First Try to find as-is property data\n\t\tret = thisCache[ name ];\n\n\t\t// Test for null|undefined property data\n\t\tif ( ret == null ) {\n\n\t\t\t// Try to find the camelCased property\n\t\t\tret = thisCache[ jQuery.camelCase( name ) ];\n\t\t}\n\t} else {\n\t\tret = thisCache;\n\t}\n\n\treturn ret;\n}\n\nfunction internalRemoveData( elem, name, pvt ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar thisCache, i,\n\t\tisNode = elem.nodeType,\n\n\t\t// See jQuery.data for more information\n\t\tcache = isNode ? jQuery.cache : elem,\n\t\tid = isNode ? elem[ jQuery.expando ] : jQuery.expando;\n\n\t// If there is already no cache entry for this object, there is no\n\t// purpose in continuing\n\tif ( !cache[ id ] ) {\n\t\treturn;\n\t}\n\n\tif ( name ) {\n\n\t\tthisCache = pvt ? cache[ id ] : cache[ id ].data;\n\n\t\tif ( thisCache ) {\n\n\t\t\t// Support array or space separated string names for data keys\n\t\t\tif ( !jQuery.isArray( name ) ) {\n\n\t\t\t\t// try the string as a key before any manipulation\n\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\tname = [ name ];\n\t\t\t\t} else {\n\n\t\t\t\t\t// split the camel cased version by spaces unless a key with the spaces exists\n\t\t\t\t\tname = jQuery.camelCase( name );\n\t\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\t\tname = [ name ];\n\t\t\t\t\t} else {\n\t\t\t\t\t\tname = name.split(\" \");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// If \"name\" is an array of keys...\n\t\t\t\t// When data is initially created, via (\"key\", \"val\") signature,\n\t\t\t\t// keys will be converted to camelCase.\n\t\t\t\t// Since there is no way to tell _how_ a key was added, remove\n\t\t\t\t// both plain key and camelCase key. #12786\n\t\t\t\t// This will only penalize the array argument path.\n\t\t\t\tname = name.concat( jQuery.map( name, jQuery.camelCase ) );\n\t\t\t}\n\n\t\t\ti = name.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete thisCache[ name[i] ];\n\t\t\t}\n\n\t\t\t// If there is no data left in the cache, we want to continue\n\t\t\t// and let the cache object itself get destroyed\n\t\t\tif ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t}\n\n\t// See jQuery.data for more information\n\tif ( !pvt ) {\n\t\tdelete cache[ id ].data;\n\n\t\t// Don't destroy the parent cache unless the internal data object\n\t\t// had been the only thing left in it\n\t\tif ( !isEmptyDataObject( cache[ id ] ) ) {\n\t\t\treturn;\n\t\t}\n\t}\n\n\t// Destroy the cache\n\tif ( isNode ) {\n\t\tjQuery.cleanData( [ elem ], true );\n\n\t// Use delete when supported for expandos or `cache` is not a window per isWindow (#10080)\n\t/* jshint eqeqeq: false */\n\t} else if ( support.deleteExpando || cache != cache.window ) {\n\t\t/* jshint eqeqeq: true */\n\t\tdelete cache[ id ];\n\n\t// When all else fails, null\n\t} else {\n\t\tcache[ id ] = null;\n\t}\n}\n\njQuery.extend({\n\tcache: {},\n\n\t// The following elements (space-suffixed to avoid Object.prototype collisions)\n\t// throw uncatchable exceptions if you attempt to set expando properties\n\tnoData: {\n\t\t\"applet \": true,\n\t\t\"embed \": true,\n\t\t// ...but Flash objects (which have this classid) *can* handle expandos\n\t\t\"object \": \"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"\n\t},\n\n\thasData: function( elem ) {\n\t\telem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];\n\t\treturn !!elem && !isEmptyDataObject( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name );\n\t},\n\n\t// For internal use only.\n\t_data: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data, true );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name, true );\n\t}\n});\n\njQuery.fn.extend({\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[0],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Special expections of .data basically thwart jQuery.access,\n\t\t// so implement the relevant behavior ourselves\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = jQuery.data( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !jQuery._data( elem, \"parsedAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE11+\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = jQuery.camelCase( name.slice(5) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tjQuery._data( elem, \"parsedAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each(function() {\n\t\t\t\tjQuery.data( this, key );\n\t\t\t});\n\t\t}\n\n\t\treturn arguments.length > 1 ?\n\n\t\t\t// Sets one value\n\t\t\tthis.each(function() {\n\t\t\t\tjQuery.data( this, key, value );\n\t\t\t}) :\n\n\t\t\t// Gets one value\n\t\t\t// Try to fetch any internally stored data first\n\t\t\telem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined;\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeData( this, key );\n\t\t});\n\t}\n});\n\n\njQuery.extend({\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = jQuery._data( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || jQuery.isArray(data) ) {\n\t\t\t\t\tqueue = jQuery._data( elem, type, jQuery.makeArray(data) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// not intended for public consumption - generates a queueHooks object, or returns the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn jQuery._data( elem, key ) || jQuery._data( elem, key, {\n\t\t\tempty: jQuery.Callbacks(\"once memory\").add(function() {\n\t\t\t\tjQuery._removeData( elem, type + \"queue\" );\n\t\t\t\tjQuery._removeData( elem, key );\n\t\t\t})\n\t\t});\n\t}\n});\n\njQuery.fn.extend({\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[0], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each(function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[0] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t});\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t});\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = jQuery._data( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n});\nvar pnum = (/[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/).source;\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar isHidden = function( elem, el ) {\n\t\t// isHidden might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\t\treturn jQuery.css( elem, \"display\" ) === \"none\" || !jQuery.contains( elem.ownerDocument, elem );\n\t};\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlength = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( jQuery.type( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\tjQuery.access( elems, fn, i, key[i], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !jQuery.isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tfn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn chainable ?\n\t\telems :\n\n\t\t// Gets\n\t\tbulk ?\n\t\t\tfn.call( elems ) :\n\t\t\tlength ? fn( elems[0], key ) : emptyGet;\n};\nvar rcheckableType = (/^(?:checkbox|radio)$/i);\n\n\n\n(function() {\n\t// Minified: var a,b,c\n\tvar input = document.createElement( \"input\" ),\n\t\tdiv = document.createElement( \"div\" ),\n\t\tfragment = document.createDocumentFragment();\n\n\t// Setup\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\n\t// IE strips leading whitespace when .innerHTML is used\n\tsupport.leadingWhitespace = div.firstChild.nodeType === 3;\n\n\t// Make sure that tbody elements aren't automatically inserted\n\t// IE will insert them into empty tables\n\tsupport.tbody = !div.getElementsByTagName( \"tbody\" ).length;\n\n\t// Make sure that link elements get serialized correctly by innerHTML\n\t// This requires a wrapper element in IE\n\tsupport.htmlSerialize = !!div.getElementsByTagName( \"link\" ).length;\n\n\t// Makes sure cloning an html5 element does not cause problems\n\t// Where outerHTML is undefined, this still works\n\tsupport.html5Clone =\n\t\tdocument.createElement( \"nav\" ).cloneNode( true ).outerHTML !== \"<:nav></:nav>\";\n\n\t// Check if a disconnected checkbox will retain its checked\n\t// value of true after appended to the DOM (IE6/7)\n\tinput.type = \"checkbox\";\n\tinput.checked = true;\n\tfragment.appendChild( input );\n\tsupport.appendChecked = input.checked;\n\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\t// Support: IE6-IE11+\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// #11217 - WebKit loses check when the name is after the checked attribute\n\tfragment.appendChild( div );\n\tdiv.innerHTML = \"<input type='radio' checked='checked' name='t'/>\";\n\n\t// Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3\n\t// old WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE<9\n\t// Opera does not clone events (and typeof div.attachEvent === undefined).\n\t// IE9-10 clones events bound via attachEvent, but they don't trigger with .click()\n\tsupport.noCloneEvent = true;\n\tif ( div.attachEvent ) {\n\t\tdiv.attachEvent( \"onclick\", function() {\n\t\t\tsupport.noCloneEvent = false;\n\t\t});\n\n\t\tdiv.cloneNode( true ).click();\n\t}\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n})();\n\n\n(function() {\n\tvar i, eventName,\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Support: IE<9 (lack submit/change bubble), Firefox 23+ (lack focusin event)\n\tfor ( i in { submit: true, change: true, focusin: true }) {\n\t\teventName = \"on\" + i;\n\n\t\tif ( !(support[ i + \"Bubbles\" ] = eventName in window) ) {\n\t\t\t// Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP)\n\t\t\tdiv.setAttribute( eventName, \"t\" );\n\t\t\tsupport[ i + \"Bubbles\" ] = div.attributes[ eventName ].expando === false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\nvar rformElems = /^(?:input|select|textarea)$/i,\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu)|click/,\n\trfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)$/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\t\tvar tmp, events, t, handleObjIn,\n\t\t\tspecial, eventHandle, handleObj,\n\t\t\thandlers, type, namespaces, origType,\n\t\t\telemData = jQuery._data( elem );\n\n\t\t// Don't attach events to noData or text/comment nodes (but allow plain objects)\n\t\tif ( !elemData ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !(events = elemData.events) ) {\n\t\t\tevents = elemData.events = {};\n\t\t}\n\t\tif ( !(eventHandle = elemData.handle) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== strundefined && (!e || jQuery.event.triggered !== e.type) ?\n\t\t\t\t\tjQuery.event.dispatch.apply( eventHandle.elem, arguments ) :\n\t\t\t\t\tundefined;\n\t\t\t};\n\t\t\t// Add elem as a property of the handle fn to prevent a memory leak with IE non-native events\n\t\t\teventHandle.elem = elem;\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend({\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join(\".\")\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !(handlers = events[ type ]) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener/attachEvent if the special events handler returns false\n\t\t\t\tif ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\t\t\t\t\t// Bind the global event handler to the element\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle, false );\n\n\t\t\t\t\t} else if ( elem.attachEvent ) {\n\t\t\t\t\t\telem.attachEvent( \"on\" + type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t\t// Nullify elem to prevent memory leaks in IE\n\t\telem = null;\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\t\tvar j, handleObj, tmp,\n\t\t\torigCount, t, events,\n\t\t\tspecial, handlers, type,\n\t\t\tnamespaces, origType,\n\t\t\telemData = jQuery.hasData( elem ) && jQuery._data( elem );\n\n\t\tif ( !elemData || !(events = elemData.events) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[2] && new RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector || selector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdelete elemData.handle;\n\n\t\t\t// removeData also checks for emptiness and clears the expando if empty\n\t\t\t// so use it instead of delete\n\t\t\tjQuery._removeData( elem, \"events\" );\n\t\t}\n\t},\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\t\tvar handle, ontype, cur,\n\t\t\tbubbleType, special, tmp, i,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split(\".\") : [];\n\n\t\tcur = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf(\".\") >= 0 ) {\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split(\".\");\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf(\":\") < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join(\".\");\n\t\tevent.namespace_re = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === (elem.ownerDocument || document) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {\n\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = ( jQuery._data( cur, \"events\" ) || {} )[ event.type ] && jQuery._data( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && jQuery.acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) &&\n\t\t\t\tjQuery.acceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name name as the event.\n\t\t\t\t// Can't use an .isFunction() check here because IE6/7 fails that test.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\t\t\t\t\ttry {\n\t\t\t\t\t\telem[ type ]();\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// IE<9 dies on focus/blur to hidden element (#1486,#12518)\n\t\t\t\t\t\t// only reproducible on winXP IE8 native, not IE9 in IE8 mode\n\t\t\t\t\t}\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\tdispatch: function( event ) {\n\n\t\t// Make a writable jQuery.Event from the native event object\n\t\tevent = jQuery.event.fix( event );\n\n\t\tvar i, ret, handleObj, matched, j,\n\t\t\thandlerQueue = [],\n\t\t\targs = slice.call( arguments ),\n\t\t\thandlers = ( jQuery._data( this, \"events\" ) || {} )[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[0] = event;\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// Triggered event must either 1) have no namespace, or\n\t\t\t\t// 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).\n\t\t\t\tif ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )\n\t\t\t\t\t\t\t.apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( (event.result = ret) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar sel, handleObj, matches, i,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\t// Black-hole SVG <use> instance trees (#13180)\n\t\t// Avoid non-left-click bubbling in Firefox (#3861)\n\t\tif ( delegateCount && cur.nodeType && (!event.button || event.type !== \"click\") ) {\n\n\t\t\t/* jshint eqeqeq: false */\n\t\t\tfor ( ; cur != this; cur = cur.parentNode || this ) {\n\t\t\t\t/* jshint eqeqeq: true */\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== \"click\") ) {\n\t\t\t\t\tmatches = [];\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matches[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatches[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) >= 0 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matches[ sel ] ) {\n\t\t\t\t\t\t\tmatches.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matches.length ) {\n\t\t\t\t\t\thandlerQueue.push({ elem: cur, handlers: matches });\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\tfix: function( event ) {\n\t\tif ( event[ jQuery.expando ] ) {\n\t\t\treturn event;\n\t\t}\n\n\t\t// Create a writable copy of the event object and normalize some properties\n\t\tvar i, prop, copy,\n\t\t\ttype = event.type,\n\t\t\toriginalEvent = event,\n\t\t\tfixHook = this.fixHooks[ type ];\n\n\t\tif ( !fixHook ) {\n\t\t\tthis.fixHooks[ type ] = fixHook =\n\t\t\t\trmouseEvent.test( type ) ? this.mouseHooks :\n\t\t\t\trkeyEvent.test( type ) ? this.keyHooks :\n\t\t\t\t{};\n\t\t}\n\t\tcopy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;\n\n\t\tevent = new jQuery.Event( originalEvent );\n\n\t\ti = copy.length;\n\t\twhile ( i-- ) {\n\t\t\tprop = copy[ i ];\n\t\t\tevent[ prop ] = originalEvent[ prop ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Fix target property (#1925)\n\t\tif ( !event.target ) {\n\t\t\tevent.target = originalEvent.srcElement || document;\n\t\t}\n\n\t\t// Support: Chrome 23+, Safari?\n\t\t// Target should not be a text node (#504, #13143)\n\t\tif ( event.target.nodeType === 3 ) {\n\t\t\tevent.target = event.target.parentNode;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// For mouse/key events, metaKey==false if it's undefined (#3368, #11328)\n\t\tevent.metaKey = !!event.metaKey;\n\n\t\treturn fixHook.filter ? fixHook.filter( event, originalEvent ) : event;\n\t},\n\n\t// Includes some event props shared by KeyEvent and MouseEvent\n\tprops: \"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which\".split(\" \"),\n\n\tfixHooks: {},\n\n\tkeyHooks: {\n\t\tprops: \"char charCode key keyCode\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\n\t\t\t// Add which for key events\n\t\t\tif ( event.which == null ) {\n\t\t\t\tevent.which = original.charCode != null ? original.charCode : original.keyCode;\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tmouseHooks: {\n\t\tprops: \"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\t\t\tvar body, eventDoc, doc,\n\t\t\t\tbutton = original.button,\n\t\t\t\tfromElement = original.fromElement;\n\n\t\t\t// Calculate pageX/Y if missing and clientX/Y available\n\t\t\tif ( event.pageX == null && original.clientX != null ) {\n\t\t\t\teventDoc = event.target.ownerDocument || document;\n\t\t\t\tdoc = eventDoc.documentElement;\n\t\t\t\tbody = eventDoc.body;\n\n\t\t\t\tevent.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );\n\t\t\t\tevent.pageY = original.clientY + ( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) - ( doc && doc.clientTop  || body && body.clientTop  || 0 );\n\t\t\t}\n\n\t\t\t// Add relatedTarget, if necessary\n\t\t\tif ( !event.relatedTarget && fromElement ) {\n\t\t\t\tevent.relatedTarget = fromElement === event.target ? original.toElement : fromElement;\n\t\t\t}\n\n\t\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\t\t// Note: button is not normalized, so don't use it\n\t\t\tif ( !event.which && button !== undefined ) {\n\t\t\t\tevent.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tspecial: {\n\t\tload: {\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tfocus: {\n\t\t\t// Fire native event if possible so blur/focus sequence is correct\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this !== safeActiveElement() && this.focus ) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tthis.focus();\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// If we error on focus to hidden element (#1486, #12518),\n\t\t\t\t\t\t// let .trigger() run the handlers\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusin\"\n\t\t},\n\t\tblur: {\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this === safeActiveElement() && this.blur ) {\n\t\t\t\t\tthis.blur();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusout\"\n\t\t},\n\t\tclick: {\n\t\t\t// For checkbox, fire native event so checked state will be right\n\t\t\ttrigger: function() {\n\t\t\t\tif ( jQuery.nodeName( this, \"input\" ) && this.type === \"checkbox\" && this.click ) {\n\t\t\t\t\tthis.click();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, don't fire native .click() on links\n\t\t\t_default: function( event ) {\n\t\t\t\treturn jQuery.nodeName( event.target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tsimulate: function( type, elem, event, bubble ) {\n\t\t// Piggyback on a donor event to simulate a different one.\n\t\t// Fake originalEvent to avoid donor's stopPropagation, but if the\n\t\t// simulated event prevents default then we do the same on the donor.\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true,\n\t\t\t\toriginalEvent: {}\n\t\t\t}\n\t\t);\n\t\tif ( bubble ) {\n\t\t\tjQuery.event.trigger( e, null, elem );\n\t\t} else {\n\t\t\tjQuery.event.dispatch.call( elem, e );\n\t\t}\n\t\tif ( e.isDefaultPrevented() ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\t}\n};\n\njQuery.removeEvent = document.removeEventListener ?\n\tfunction( elem, type, handle ) {\n\t\tif ( elem.removeEventListener ) {\n\t\t\telem.removeEventListener( type, handle, false );\n\t\t}\n\t} :\n\tfunction( elem, type, handle ) {\n\t\tvar name = \"on\" + type;\n\n\t\tif ( elem.detachEvent ) {\n\n\t\t\t// #8545, #7054, preventing memory leaks for custom events in IE6-8\n\t\t\t// detachEvent needed property on element, by name of that event, to properly expose it to GC\n\t\t\tif ( typeof elem[ name ] === strundefined ) {\n\t\t\t\telem[ name ] = null;\n\t\t\t}\n\n\t\t\telem.detachEvent( name, handle );\n\t\t}\n\t};\n\njQuery.Event = function( src, props ) {\n\t// Allow instantiation without the 'new' keyword\n\tif ( !(this instanceof jQuery.Event) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\t\t\t\t// Support: IE < 9, Android < 4.0\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || jQuery.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If preventDefault exists, run it on the original event\n\t\tif ( e.preventDefault ) {\n\t\t\te.preventDefault();\n\n\t\t// Support: IE\n\t\t// Otherwise set the returnValue property of the original event to false\n\t\t} else {\n\t\t\te.returnValue = false;\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\t\t// If stopPropagation exists, run it on the original event\n\t\tif ( e.stopPropagation ) {\n\t\t\te.stopPropagation();\n\t\t}\n\n\t\t// Support: IE\n\t\t// Set the cancelBubble property of the original event to true\n\t\te.cancelBubble = true;\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && e.stopImmediatePropagation ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\njQuery.each({\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mousenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || (related !== target && !jQuery.contains( target, related )) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n});\n\n// IE submit delegation\nif ( !support.submitBubbles ) {\n\n\tjQuery.event.special.submit = {\n\t\tsetup: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Lazy-add a submit handler when a descendant form may potentially be submitted\n\t\t\tjQuery.event.add( this, \"click._submit keypress._submit\", function( e ) {\n\t\t\t\t// Node name check avoids a VML-related crash in IE (#9807)\n\t\t\t\tvar elem = e.target,\n\t\t\t\t\tform = jQuery.nodeName( elem, \"input\" ) || jQuery.nodeName( elem, \"button\" ) ? elem.form : undefined;\n\t\t\t\tif ( form && !jQuery._data( form, \"submitBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( form, \"submit._submit\", function( event ) {\n\t\t\t\t\t\tevent._submit_bubble = true;\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( form, \"submitBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t\t// return undefined since we don't need an event listener\n\t\t},\n\n\t\tpostDispatch: function( event ) {\n\t\t\t// If form was submitted by the user, bubble the event up the tree\n\t\t\tif ( event._submit_bubble ) {\n\t\t\t\tdelete event._submit_bubble;\n\t\t\t\tif ( this.parentNode && !event.isTrigger ) {\n\t\t\t\t\tjQuery.event.simulate( \"submit\", this.parentNode, event, true );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Remove delegated handlers; cleanData eventually reaps submit handlers attached above\n\t\t\tjQuery.event.remove( this, \"._submit\" );\n\t\t}\n\t};\n}\n\n// IE change delegation and checkbox/radio fix\nif ( !support.changeBubbles ) {\n\n\tjQuery.event.special.change = {\n\n\t\tsetup: function() {\n\n\t\t\tif ( rformElems.test( this.nodeName ) ) {\n\t\t\t\t// IE doesn't fire change on a check/radio until blur; trigger it on click\n\t\t\t\t// after a propertychange. Eat the blur-change in special.change.handle.\n\t\t\t\t// This still fires onchange a second time for check/radio after blur.\n\t\t\t\tif ( this.type === \"checkbox\" || this.type === \"radio\" ) {\n\t\t\t\t\tjQuery.event.add( this, \"propertychange._change\", function( event ) {\n\t\t\t\t\t\tif ( event.originalEvent.propertyName === \"checked\" ) {\n\t\t\t\t\t\t\tthis._just_changed = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery.event.add( this, \"click._change\", function( event ) {\n\t\t\t\t\t\tif ( this._just_changed && !event.isTrigger ) {\n\t\t\t\t\t\t\tthis._just_changed = false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// Allow triggered, simulated change events (#11500)\n\t\t\t\t\t\tjQuery.event.simulate( \"change\", this, event, true );\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t// Delegated event; lazy-add a change handler on descendant inputs\n\t\t\tjQuery.event.add( this, \"beforeactivate._change\", function( e ) {\n\t\t\t\tvar elem = e.target;\n\n\t\t\t\tif ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, \"changeBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( elem, \"change._change\", function( event ) {\n\t\t\t\t\t\tif ( this.parentNode && !event.isSimulated && !event.isTrigger ) {\n\t\t\t\t\t\t\tjQuery.event.simulate( \"change\", this.parentNode, event, true );\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( elem, \"changeBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t},\n\n\t\thandle: function( event ) {\n\t\t\tvar elem = event.target;\n\n\t\t\t// Swallow native change events from checkbox/radio, we already triggered them above\n\t\t\tif ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== \"radio\" && elem.type !== \"checkbox\") ) {\n\t\t\t\treturn event.handleObj.handler.apply( this, arguments );\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\tjQuery.event.remove( this, \"._change\" );\n\n\t\t\treturn !rformElems.test( this.nodeName );\n\t\t}\n\t};\n}\n\n// Create \"bubbling\" focus and blur events\nif ( !support.focusinBubbles ) {\n\tjQuery.each({ focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );\n\t\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tjQuery._data( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tjQuery._removeData( doc, fix );\n\t\t\t\t} else {\n\t\t\t\t\tjQuery._data( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\njQuery.fn.extend({\n\n\ton: function( types, selector, data, fn, /*INTERNAL*/ one ) {\n\t\tvar type, origFn;\n\n\t\t// Types can be a map of types/handlers\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-Object, selector, data )\n\t\t\tif ( typeof selector !== \"string\" ) {\n\t\t\t\t// ( types-Object, data )\n\t\t\t\tdata = data || selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.on( type, selector, data, types[ type ], one );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( data == null && fn == null ) {\n\t\t\t// ( types, fn )\n\t\t\tfn = selector;\n\t\t\tdata = selector = undefined;\n\t\t} else if ( fn == null ) {\n\t\t\tif ( typeof selector === \"string\" ) {\n\t\t\t\t// ( types, selector, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = undefined;\n\t\t\t} else {\n\t\t\t\t// ( types, data, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t} else if ( !fn ) {\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( one === 1 ) {\n\t\t\torigFn = fn;\n\t\t\tfn = function( event ) {\n\t\t\t\t// Can use an empty set, since event contains the info\n\t\t\t\tjQuery().off( event );\n\t\t\t\treturn origFn.apply( this, arguments );\n\t\t\t};\n\t\t\t// Use same guid so caller can remove using origFn\n\t\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.add( this, types, fn, data, selector );\n\t\t});\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn this.on( types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ? handleObj.origType + \".\" + handleObj.namespace : handleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t});\n\t},\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t});\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[0];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n});\n\n\nfunction createSafeFragment( document ) {\n\tvar list = nodeNames.split( \"|\" ),\n\t\tsafeFrag = document.createDocumentFragment();\n\n\tif ( safeFrag.createElement ) {\n\t\twhile ( list.length ) {\n\t\t\tsafeFrag.createElement(\n\t\t\t\tlist.pop()\n\t\t\t);\n\t\t}\n\t}\n\treturn safeFrag;\n}\n\nvar nodeNames = \"abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|\" +\n\t\t\"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video\",\n\trinlinejQuery = / jQuery\\d+=\"(?:null|\\d+)\"/g,\n\trnoshimcache = new RegExp(\"<(?:\" + nodeNames + \")[\\\\s/>]\", \"i\"),\n\trleadingWhitespace = /^\\s+/,\n\trxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>]*)\\/>/gi,\n\trtagName = /<([\\w:]+)/,\n\trtbody = /<tbody/i,\n\trhtml = /<|&#?\\w+;/,\n\trnoInnerhtml = /<(?:script|style|link)/i,\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trscriptType = /^$|\\/(?:java|ecma)script/i,\n\trscriptTypeMasked = /^true\\/(.*)/,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g,\n\n\t// We have to close these tags to support XHTML (#13200)\n\twrapMap = {\n\t\toption: [ 1, \"<select multiple='multiple'>\", \"</select>\" ],\n\t\tlegend: [ 1, \"<fieldset>\", \"</fieldset>\" ],\n\t\tarea: [ 1, \"<map>\", \"</map>\" ],\n\t\tparam: [ 1, \"<object>\", \"</object>\" ],\n\t\tthead: [ 1, \"<table>\", \"</table>\" ],\n\t\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\t\tcol: [ 2, \"<table><tbody></tbody><colgroup>\", \"</colgroup></table>\" ],\n\t\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t\t// IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags,\n\t\t// unless wrapped in a div with non-breaking characters in front of it.\n\t\t_default: support.htmlSerialize ? [ 0, \"\", \"\" ] : [ 1, \"X<div>\", \"</div>\"  ]\n\t},\n\tsafeFragment = createSafeFragment( document ),\n\tfragmentDiv = safeFragment.appendChild( document.createElement(\"div\") );\n\nwrapMap.optgroup = wrapMap.option;\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\nfunction getAll( context, tag ) {\n\tvar elems, elem,\n\t\ti = 0,\n\t\tfound = typeof context.getElementsByTagName !== strundefined ? context.getElementsByTagName( tag || \"*\" ) :\n\t\t\ttypeof context.querySelectorAll !== strundefined ? context.querySelectorAll( tag || \"*\" ) :\n\t\t\tundefined;\n\n\tif ( !found ) {\n\t\tfor ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( !tag || jQuery.nodeName( elem, tag ) ) {\n\t\t\t\tfound.push( elem );\n\t\t\t} else {\n\t\t\t\tjQuery.merge( found, getAll( elem, tag ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn tag === undefined || tag && jQuery.nodeName( context, tag ) ?\n\t\tjQuery.merge( [ context ], found ) :\n\t\tfound;\n}\n\n// Used in buildFragment, fixes the defaultChecked property\nfunction fixDefaultChecked( elem ) {\n\tif ( rcheckableType.test( elem.type ) ) {\n\t\telem.defaultChecked = elem.checked;\n\t}\n}\n\n// Support: IE<8\n// Manipulating tables requires a tbody\nfunction manipulationTarget( elem, content ) {\n\treturn jQuery.nodeName( elem, \"table\" ) &&\n\t\tjQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ?\n\n\t\telem.getElementsByTagName(\"tbody\")[0] ||\n\t\t\telem.appendChild( elem.ownerDocument.createElement(\"tbody\") ) :\n\t\telem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = (jQuery.find.attr( elem, \"type\" ) !== null) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tvar match = rscriptTypeMasked.exec( elem.type );\n\tif ( match ) {\n\t\telem.type = match[1];\n\t} else {\n\t\telem.removeAttribute(\"type\");\n\t}\n\treturn elem;\n}\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar elem,\n\t\ti = 0;\n\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\tjQuery._data( elem, \"globalEval\", !refElements || jQuery._data( refElements[i], \"globalEval\" ) );\n\t}\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\n\tif ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {\n\t\treturn;\n\t}\n\n\tvar type, i, l,\n\t\toldData = jQuery._data( src ),\n\t\tcurData = jQuery._data( dest, oldData ),\n\t\tevents = oldData.events;\n\n\tif ( events ) {\n\t\tdelete curData.handle;\n\t\tcurData.events = {};\n\n\t\tfor ( type in events ) {\n\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t}\n\t\t}\n\t}\n\n\t// make the cloned public data object a copy from the original\n\tif ( curData.data ) {\n\t\tcurData.data = jQuery.extend( {}, curData.data );\n\t}\n}\n\nfunction fixCloneNodeIssues( src, dest ) {\n\tvar nodeName, e, data;\n\n\t// We do not need to do anything for non-Elements\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\tnodeName = dest.nodeName.toLowerCase();\n\n\t// IE6-8 copies events bound via attachEvent when using cloneNode.\n\tif ( !support.noCloneEvent && dest[ jQuery.expando ] ) {\n\t\tdata = jQuery._data( dest );\n\n\t\tfor ( e in data.events ) {\n\t\t\tjQuery.removeEvent( dest, e, data.handle );\n\t\t}\n\n\t\t// Event data gets referenced instead of copied if the expando gets copied too\n\t\tdest.removeAttribute( jQuery.expando );\n\t}\n\n\t// IE blanks contents when cloning scripts, and tries to evaluate newly-set text\n\tif ( nodeName === \"script\" && dest.text !== src.text ) {\n\t\tdisableScript( dest ).text = src.text;\n\t\trestoreScript( dest );\n\n\t// IE6-10 improperly clones children of object elements using classid.\n\t// IE10 throws NoModificationAllowedError if parent is null, #12132.\n\t} else if ( nodeName === \"object\" ) {\n\t\tif ( dest.parentNode ) {\n\t\t\tdest.outerHTML = src.outerHTML;\n\t\t}\n\n\t\t// This path appears unavoidable for IE9. When cloning an object\n\t\t// element in IE9, the outerHTML strategy above is not sufficient.\n\t\t// If the src has innerHTML and the destination does not,\n\t\t// copy the src.innerHTML into the dest.innerHTML. #10324\n\t\tif ( support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) {\n\t\t\tdest.innerHTML = src.innerHTML;\n\t\t}\n\n\t} else if ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\t// IE6-8 fails to persist the checked state of a cloned checkbox\n\t\t// or radio button. Worse, IE6-7 fail to give the cloned element\n\t\t// a checked appearance if the defaultChecked value isn't also set\n\n\t\tdest.defaultChecked = dest.checked = src.checked;\n\n\t\t// IE6-7 get confused and end up setting the value of a cloned\n\t\t// checkbox/radio button to an empty string instead of \"on\"\n\t\tif ( dest.value !== src.value ) {\n\t\t\tdest.value = src.value;\n\t\t}\n\n\t// IE6-8 fails to return the selected option to the default selected\n\t// state when cloning options\n\t} else if ( nodeName === \"option\" ) {\n\t\tdest.defaultSelected = dest.selected = src.defaultSelected;\n\n\t// IE6-8 fails to set the defaultValue to the correct value when\n\t// cloning other types of input fields\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\njQuery.extend({\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar destElements, node, clone, i, srcElements,\n\t\t\tinPage = jQuery.contains( elem.ownerDocument, elem );\n\n\t\tif ( support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( \"<\" + elem.nodeName + \">\" ) ) {\n\t\t\tclone = elem.cloneNode( true );\n\n\t\t// IE<=8 does not properly clone detached, unknown element nodes\n\t\t} else {\n\t\t\tfragmentDiv.innerHTML = elem.outerHTML;\n\t\t\tfragmentDiv.removeChild( clone = fragmentDiv.firstChild );\n\t\t}\n\n\t\tif ( (!support.noCloneEvent || !support.noCloneChecked) &&\n\t\t\t\t(elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\t// Fix all IE cloning issues\n\t\t\tfor ( i = 0; (node = srcElements[i]) != null; ++i ) {\n\t\t\t\t// Ensure that the destination node is not null; Fixes #9587\n\t\t\t\tif ( destElements[i] ) {\n\t\t\t\t\tfixCloneNodeIssues( node, destElements[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0; (node = srcElements[i]) != null; i++ ) {\n\t\t\t\t\tcloneCopyEvent( node, destElements[i] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\tdestElements = srcElements = node = null;\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tbuildFragment: function( elems, context, scripts, selection ) {\n\t\tvar j, elem, contains,\n\t\t\ttmp, tag, tbody, wrap,\n\t\t\tl = elems.length,\n\n\t\t\t// Ensure a safe fragment\n\t\t\tsafe = createSafeFragment( context ),\n\n\t\t\tnodes = [],\n\t\t\ti = 0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\telem = elems[ i ];\n\n\t\t\tif ( elem || elem === 0 ) {\n\n\t\t\t\t// Add nodes directly\n\t\t\t\tif ( jQuery.type( elem ) === \"object\" ) {\n\t\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t\t// Convert non-html into a text node\n\t\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t\t// Convert html into DOM nodes\n\t\t\t\t} else {\n\t\t\t\t\ttmp = tmp || safe.appendChild( context.createElement(\"div\") );\n\n\t\t\t\t\t// Deserialize a standard representation\n\t\t\t\t\ttag = (rtagName.exec( elem ) || [ \"\", \"\" ])[ 1 ].toLowerCase();\n\t\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\n\t\t\t\t\ttmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, \"<$1></$2>\" ) + wrap[2];\n\n\t\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\t\tj = wrap[0];\n\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Manually add leading whitespace removed by IE\n\t\t\t\t\tif ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {\n\t\t\t\t\t\tnodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove IE's autoinserted <tbody> from table fragments\n\t\t\t\t\tif ( !support.tbody ) {\n\n\t\t\t\t\t\t// String was a <table>, *may* have spurious <tbody>\n\t\t\t\t\t\telem = tag === \"table\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\ttmp.firstChild :\n\n\t\t\t\t\t\t\t// String was a bare <thead> or <tfoot>\n\t\t\t\t\t\t\twrap[1] === \"<table>\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\t\ttmp :\n\t\t\t\t\t\t\t\t0;\n\n\t\t\t\t\t\tj = elem && elem.childNodes.length;\n\t\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\t\tif ( jQuery.nodeName( (tbody = elem.childNodes[j]), \"tbody\" ) && !tbody.childNodes.length ) {\n\t\t\t\t\t\t\t\telem.removeChild( tbody );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t\t// Fix #12392 for WebKit and IE > 9\n\t\t\t\t\ttmp.textContent = \"\";\n\n\t\t\t\t\t// Fix #12392 for oldIE\n\t\t\t\t\twhile ( tmp.firstChild ) {\n\t\t\t\t\t\ttmp.removeChild( tmp.firstChild );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remember the top-level container for proper cleanup\n\t\t\t\t\ttmp = safe.lastChild;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Fix #11356: Clear elements from fragment\n\t\tif ( tmp ) {\n\t\t\tsafe.removeChild( tmp );\n\t\t}\n\n\t\t// Reset defaultChecked for any radios and checkboxes\n\t\t// about to be appended to the DOM in IE 6/7 (#8060)\n\t\tif ( !support.appendChecked ) {\n\t\t\tjQuery.grep( getAll( nodes, \"input\" ), fixDefaultChecked );\n\t\t}\n\n\t\ti = 0;\n\t\twhile ( (elem = nodes[ i++ ]) ) {\n\n\t\t\t// #4087 - If origin and destination elements are the same, and this is\n\t\t\t// that element, do not do anything\n\t\t\tif ( selection && jQuery.inArray( elem, selection ) !== -1 ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tcontains = jQuery.contains( elem.ownerDocument, elem );\n\n\t\t\t// Append to fragment\n\t\t\ttmp = getAll( safe.appendChild( elem ), \"script\" );\n\n\t\t\t// Preserve script evaluation history\n\t\t\tif ( contains ) {\n\t\t\t\tsetGlobalEval( tmp );\n\t\t\t}\n\n\t\t\t// Capture executables\n\t\t\tif ( scripts ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (elem = tmp[ j++ ]) ) {\n\t\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\t\tscripts.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\ttmp = null;\n\n\t\treturn safe;\n\t},\n\n\tcleanData: function( elems, /* internal */ acceptData ) {\n\t\tvar elem, type, id, data,\n\t\t\ti = 0,\n\t\t\tinternalKey = jQuery.expando,\n\t\t\tcache = jQuery.cache,\n\t\t\tdeleteExpando = support.deleteExpando,\n\t\t\tspecial = jQuery.event.special;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( acceptData || jQuery.acceptData( elem ) ) {\n\n\t\t\t\tid = elem[ internalKey ];\n\t\t\t\tdata = id && cache[ id ];\n\n\t\t\t\tif ( data ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove cache only if it was not already removed by jQuery.event.remove\n\t\t\t\t\tif ( cache[ id ] ) {\n\n\t\t\t\t\t\tdelete cache[ id ];\n\n\t\t\t\t\t\t// IE does not allow us to delete expando properties from nodes,\n\t\t\t\t\t\t// nor does it have a removeAttribute function on Document nodes;\n\t\t\t\t\t\t// we must handle all of these cases\n\t\t\t\t\t\tif ( deleteExpando ) {\n\t\t\t\t\t\t\tdelete elem[ internalKey ];\n\n\t\t\t\t\t\t} else if ( typeof elem.removeAttribute !== strundefined ) {\n\t\t\t\t\t\t\telem.removeAttribute( internalKey );\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\telem[ internalKey ] = null;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tdeletedIds.push( id );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\njQuery.fn.extend({\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t});\n\t},\n\n\tprepend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t});\n\t},\n\n\tbefore: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t});\n\t},\n\n\tafter: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t});\n\t},\n\n\tremove: function( selector, keepData /* Internal Use Only */ ) {\n\t\tvar elem,\n\t\t\telems = selector ? jQuery.filter( selector, this ) : this,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\n\t\t\tif ( !keepData && elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem ) );\n\t\t\t}\n\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\tif ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\t\tsetGlobalEval( getAll( elem, \"script\" ) );\n\t\t\t\t}\n\t\t\t\telem.parentNode.removeChild( elem );\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = this[i]) != null; i++ ) {\n\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t}\n\n\t\t\t// Remove any remaining nodes\n\t\t\twhile ( elem.firstChild ) {\n\t\t\t\telem.removeChild( elem.firstChild );\n\t\t\t}\n\n\t\t\t// If this is a select, ensure that it displays empty (#12336)\n\t\t\t// Support: IE<9\n\t\t\tif ( elem.options && jQuery.nodeName( elem, \"select\" ) ) {\n\t\t\t\telem.options.length = 0;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map(function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t});\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined ) {\n\t\t\t\treturn elem.nodeType === 1 ?\n\t\t\t\t\telem.innerHTML.replace( rinlinejQuery, \"\" ) :\n\t\t\t\t\tundefined;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t( support.htmlSerialize || !rnoshimcache.test( value )  ) &&\n\t\t\t\t( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&\n\t\t\t\t!wrapMap[ (rtagName.exec( value ) || [ \"\", \"\" ])[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = value.replace( rxhtmlTag, \"<$1></$2>\" );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor (; i < l; i++ ) {\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\telem = this[i] || {};\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar arg = arguments[ 0 ];\n\n\t\t// Make the changes, replacing each context element with the new content\n\t\tthis.domManip( arguments, function( elem ) {\n\t\t\targ = this.parentNode;\n\n\t\t\tjQuery.cleanData( getAll( this ) );\n\n\t\t\tif ( arg ) {\n\t\t\t\targ.replaceChild( elem, this );\n\t\t\t}\n\t\t});\n\n\t\t// Force removal if there was no new content (e.g., from empty arguments)\n\t\treturn arg && (arg.length || arg.nodeType) ? this : this.remove();\n\t},\n\n\tdetach: function( selector ) {\n\t\treturn this.remove( selector, true );\n\t},\n\n\tdomManip: function( args, callback ) {\n\n\t\t// Flatten any nested arrays\n\t\targs = concat.apply( [], args );\n\n\t\tvar first, node, hasScripts,\n\t\t\tscripts, doc, fragment,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tset = this,\n\t\t\tiNoClone = l - 1,\n\t\t\tvalue = args[0],\n\t\t\tisFunction = jQuery.isFunction( value );\n\n\t\t// We can't cloneNode fragments that contain checked, in WebKit\n\t\tif ( isFunction ||\n\t\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\t\treturn this.each(function( index ) {\n\t\t\t\tvar self = set.eq( index );\n\t\t\t\tif ( isFunction ) {\n\t\t\t\t\targs[0] = value.call( this, index, self.html() );\n\t\t\t\t}\n\t\t\t\tself.domManip( args, callback );\n\t\t\t});\n\t\t}\n\n\t\tif ( l ) {\n\t\t\tfragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );\n\t\t\tfirst = fragment.firstChild;\n\n\t\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\t\tfragment = first;\n\t\t\t}\n\n\t\t\tif ( first ) {\n\t\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\t\thasScripts = scripts.length;\n\n\t\t\t\t// Use the original fragment for the last item instead of the first because it can end up\n\t\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\tnode = fragment;\n\n\t\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tcallback.call( this[i], node, i );\n\t\t\t\t}\n\n\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t\t// Reenable scripts\n\t\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t\t!jQuery._data( node, \"globalEval\" ) && jQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\t\tif ( node.src ) {\n\t\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\t\tif ( jQuery._evalUrl ) {\n\t\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.globalEval( ( node.text || node.textContent || node.innerHTML || \"\" ).replace( rcleanScript, \"\" ) );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Fix #11809: Avoid leaking memory\n\t\t\t\tfragment = first = null;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t}\n});\n\njQuery.each({\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\ti = 0,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone(true);\n\t\t\tjQuery( insert[i] )[ original ]( elems );\n\n\t\t\t// Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get()\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\n\n\nvar iframe,\n\telemdisplay = {};\n\n/**\n * Retrieve the actual display of a element\n * @param {String} name nodeName of the element\n * @param {Object} doc Document object\n */\n// Called only from within defaultDisplay\nfunction actualDisplay( name, doc ) {\n\tvar style,\n\t\telem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),\n\n\t\t// getDefaultComputedStyle might be reliably used only on attached element\n\t\tdisplay = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ?\n\n\t\t\t// Use of this method is a temporary fix (more like optmization) until something better comes along,\n\t\t\t// since it was removed from specification and supported only in FF\n\t\t\tstyle.display : jQuery.css( elem[ 0 ], \"display\" );\n\n\t// We don't have any data stored on the element,\n\t// so use \"detach\" method as fast way to get rid of the element\n\telem.detach();\n\n\treturn display;\n}\n\n/**\n * Try to determine the default display value of an element\n * @param {String} nodeName\n */\nfunction defaultDisplay( nodeName ) {\n\tvar doc = document,\n\t\tdisplay = elemdisplay[ nodeName ];\n\n\tif ( !display ) {\n\t\tdisplay = actualDisplay( nodeName, doc );\n\n\t\t// If the simple way fails, read from inside an iframe\n\t\tif ( display === \"none\" || !display ) {\n\n\t\t\t// Use the already-created iframe if possible\n\t\t\tiframe = (iframe || jQuery( \"<iframe frameborder='0' width='0' height='0'/>\" )).appendTo( doc.documentElement );\n\n\t\t\t// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse\n\t\t\tdoc = ( iframe[ 0 ].contentWindow || iframe[ 0 ].contentDocument ).document;\n\n\t\t\t// Support: IE\n\t\t\tdoc.write();\n\t\t\tdoc.close();\n\n\t\t\tdisplay = actualDisplay( nodeName, doc );\n\t\t\tiframe.detach();\n\t\t}\n\n\t\t// Store the correct default display\n\t\telemdisplay[ nodeName ] = display;\n\t}\n\n\treturn display;\n}\n\n\n(function() {\n\tvar shrinkWrapBlocksVal;\n\n\tsupport.shrinkWrapBlocks = function() {\n\t\tif ( shrinkWrapBlocksVal != null ) {\n\t\t\treturn shrinkWrapBlocksVal;\n\t\t}\n\n\t\t// Will be changed later if needed.\n\t\tshrinkWrapBlocksVal = false;\n\n\t\t// Minified: var b,c,d\n\t\tvar div, body, container;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\t// Support: IE6\n\t\t// Check if elements with layout shrink-wrap their children\n\t\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t\t// Reset CSS: box-sizing; display; margin; border\n\t\t\tdiv.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;\" +\n\t\t\t\t\"padding:1px;width:1px;zoom:1\";\n\t\t\tdiv.appendChild( document.createElement( \"div\" ) ).style.width = \"5px\";\n\t\t\tshrinkWrapBlocksVal = div.offsetWidth !== 3;\n\t\t}\n\n\t\tbody.removeChild( container );\n\n\t\treturn shrinkWrapBlocksVal;\n\t};\n\n})();\nvar rmargin = (/^margin/);\n\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\n\n\nvar getStyles, curCSS,\n\trposition = /^(top|right|bottom|left)$/;\n\nif ( window.getComputedStyle ) {\n\tgetStyles = function( elem ) {\n\t\t// Support: IE<=11+, Firefox<=30+ (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tif ( elem.ownerDocument.defaultView.opener ) {\n\t\t\treturn elem.ownerDocument.defaultView.getComputedStyle( elem, null );\n\t\t}\n\n\t\treturn window.getComputedStyle( elem, null );\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar width, minWidth, maxWidth, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\n\t\t// getPropertyValue is only needed for .css('filter') in IE9, see #12537\n\t\tret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;\n\n\t\tif ( computed ) {\n\n\t\t\tif ( ret === \"\" && !jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\tret = jQuery.style( elem, name );\n\t\t\t}\n\n\t\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t\t// Chrome < 17 and Safari 5.0 uses \"computed value\" instead of \"used value\" for margin-right\n\t\t\t// Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels\n\t\t\t// this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values\n\t\t\tif ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {\n\n\t\t\t\t// Remember the original values\n\t\t\t\twidth = style.width;\n\t\t\t\tminWidth = style.minWidth;\n\t\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t\t// Put in the new values to get a computed value out\n\t\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\t\tret = computed.width;\n\n\t\t\t\t// Revert the changed values\n\t\t\t\tstyle.width = width;\n\t\t\t\tstyle.minWidth = minWidth;\n\t\t\t\tstyle.maxWidth = maxWidth;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\";\n\t};\n} else if ( document.documentElement.currentStyle ) {\n\tgetStyles = function( elem ) {\n\t\treturn elem.currentStyle;\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar left, rs, rsLeft, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\t\tret = computed ? computed[ name ] : undefined;\n\n\t\t// Avoid setting ret to empty string here\n\t\t// so we don't default to auto\n\t\tif ( ret == null && style && style[ name ] ) {\n\t\t\tret = style[ name ];\n\t\t}\n\n\t\t// From the awesome hack by Dean Edwards\n\t\t// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291\n\n\t\t// If we're not dealing with a regular pixel number\n\t\t// but a number that has a weird ending, we need to convert it to pixels\n\t\t// but not position css attributes, as those are proportional to the parent element instead\n\t\t// and we can't measure the parent instead because it might trigger a \"stacking dolls\" problem\n\t\tif ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\tleft = style.left;\n\t\t\trs = elem.runtimeStyle;\n\t\t\trsLeft = rs && rs.left;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = elem.currentStyle.left;\n\t\t\t}\n\t\t\tstyle.left = name === \"fontSize\" ? \"1em\" : ret;\n\t\t\tret = style.pixelLeft + \"px\";\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.left = left;\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = rsLeft;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\" || \"auto\";\n\t};\n}\n\n\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tvar condition = conditionFn();\n\n\t\t\tif ( condition == null ) {\n\t\t\t\t// The test was not ready at this point; screw the hook this time\n\t\t\t\t// but check again when needed next time.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( condition ) {\n\t\t\t\t// Hook not needed (or it's not possible to use it due to missing dependency),\n\t\t\t\t// remove it.\n\t\t\t\t// Since there are no other hooks for marginRight, remove the whole object.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\n\t\t\treturn (this.get = hookFn).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\n(function() {\n\t// Minified: var b,c,d,e,f,g, h,i\n\tvar div, style, a, pixelPositionVal, boxSizingReliableVal,\n\t\treliableHiddenOffsetsVal, reliableMarginRightVal;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName( \"a\" )[ 0 ];\n\tstyle = a && a.style;\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !style ) {\n\t\treturn;\n\t}\n\n\tstyle.cssText = \"float:left;opacity:.5\";\n\n\t// Support: IE<9\n\t// Make sure that element opacity exists (as opposed to filter)\n\tsupport.opacity = style.opacity === \"0.5\";\n\n\t// Verify style float existence\n\t// (IE uses styleFloat instead of cssFloat)\n\tsupport.cssFloat = !!style.cssFloat;\n\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\t// Support: Firefox<29, Android 2.3\n\t// Vendor-prefix box-sizing\n\tsupport.boxSizing = style.boxSizing === \"\" || style.MozBoxSizing === \"\" ||\n\t\tstyle.WebkitBoxSizing === \"\";\n\n\tjQuery.extend(support, {\n\t\treliableHiddenOffsets: function() {\n\t\t\tif ( reliableHiddenOffsetsVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableHiddenOffsetsVal;\n\t\t},\n\n\t\tboxSizingReliable: function() {\n\t\t\tif ( boxSizingReliableVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\n\t\tpixelPosition: function() {\n\t\t\tif ( pixelPositionVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn pixelPositionVal;\n\t\t},\n\n\t\t// Support: Android 2.3\n\t\treliableMarginRight: function() {\n\t\t\tif ( reliableMarginRightVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableMarginRightVal;\n\t\t}\n\t});\n\n\tfunction computeStyleTests() {\n\t\t// Minified: var b,c,d,j\n\t\tvar div, body, container, contents;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\tdiv.style.cssText =\n\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t// Vendor-prefix box-sizing\n\t\t\t\"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;\" +\n\t\t\t\"box-sizing:border-box;display:block;margin-top:1%;top:1%;\" +\n\t\t\t\"border:1px;padding:1px;width:4px;position:absolute\";\n\n\t\t// Support: IE<9\n\t\t// Assume reasonable values in the absence of getComputedStyle\n\t\tpixelPositionVal = boxSizingReliableVal = false;\n\t\treliableMarginRightVal = true;\n\n\t\t// Check for getComputedStyle so that this code is not run in IE<9.\n\t\tif ( window.getComputedStyle ) {\n\t\t\tpixelPositionVal = ( window.getComputedStyle( div, null ) || {} ).top !== \"1%\";\n\t\t\tboxSizingReliableVal =\n\t\t\t\t( window.getComputedStyle( div, null ) || { width: \"4px\" } ).width === \"4px\";\n\n\t\t\t// Support: Android 2.3\n\t\t\t// Div with explicit width and no margin-right incorrectly\n\t\t\t// gets computed margin-right based on width of container (#3333)\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\tcontents = div.appendChild( document.createElement( \"div\" ) );\n\n\t\t\t// Reset CSS: box-sizing; display; margin; border; padding\n\t\t\tcontents.style.cssText = div.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;padding:0\";\n\t\t\tcontents.style.marginRight = contents.style.width = \"0\";\n\t\t\tdiv.style.width = \"1px\";\n\n\t\t\treliableMarginRightVal =\n\t\t\t\t!parseFloat( ( window.getComputedStyle( contents, null ) || {} ).marginRight );\n\n\t\t\tdiv.removeChild( contents );\n\t\t}\n\n\t\t// Support: IE8\n\t\t// Check if table cells still have offsetWidth/Height when they are set\n\t\t// to display:none and there are still other visible table cells in a\n\t\t// table row; if so, offsetWidth/Height are not reliable for use when\n\t\t// determining if an element has been hidden directly using\n\t\t// display:none (it is still safe to use offsets if a parent element is\n\t\t// hidden; don safety goggles and see bug #4512 for more information).\n\t\tdiv.innerHTML = \"<table><tr><td></td><td>t</td></tr></table>\";\n\t\tcontents = div.getElementsByTagName( \"td\" );\n\t\tcontents[ 0 ].style.cssText = \"margin:0;border:0;padding:0;display:none\";\n\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\tif ( reliableHiddenOffsetsVal ) {\n\t\t\tcontents[ 0 ].style.display = \"\";\n\t\t\tcontents[ 1 ].style.display = \"none\";\n\t\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\t}\n\n\t\tbody.removeChild( container );\n\t}\n\n})();\n\n\n// A method for quickly swapping in/out CSS properties to get correct calculations.\njQuery.swap = function( elem, options, callback, args ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.apply( elem, args || [] );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar\n\t\tralpha = /alpha\\([^)]*\\)/i,\n\tropacity = /opacity\\s*=\\s*([^)]*)/,\n\n\t// swappable if display is none or starts with table except \"table\", \"table-cell\", or \"table-caption\"\n\t// see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trnumsplit = new RegExp( \"^(\" + pnum + \")(.*)$\", \"i\" ),\n\trrelNum = new RegExp( \"^([+-])=(\" + pnum + \")\", \"i\" ),\n\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t},\n\n\tcssPrefixes = [ \"Webkit\", \"O\", \"Moz\", \"ms\" ];\n\n\n// return a css property mapped to a potentially vendor prefixed property\nfunction vendorPropName( style, name ) {\n\n\t// shortcut for names that are not vendor prefixed\n\tif ( name in style ) {\n\t\treturn name;\n\t}\n\n\t// check for vendor prefixed names\n\tvar capName = name.charAt(0).toUpperCase() + name.slice(1),\n\t\torigName = name,\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in style ) {\n\t\t\treturn name;\n\t\t}\n\t}\n\n\treturn origName;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem, hidden,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\" );\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\t\t\t// Reset the inline display of this element to learn if it is\n\t\t\t// being hidden by cascaded rules or not\n\t\t\tif ( !values[ index ] && display === \"none\" ) {\n\t\t\t\telem.style.display = \"\";\n\t\t\t}\n\n\t\t\t// Set elements which have been overridden with display: none\n\t\t\t// in a stylesheet to whatever the default browser style is\n\t\t\t// for such an element\n\t\t\tif ( elem.style.display === \"\" && isHidden( elem ) ) {\n\t\t\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\", defaultDisplay(elem.nodeName) );\n\t\t\t}\n\t\t} else {\n\t\t\thidden = isHidden( elem );\n\n\t\t\tif ( display && display !== \"none\" || !hidden ) {\n\t\t\t\tjQuery._data( elem, \"olddisplay\", hidden ? display : jQuery.css( elem, \"display\" ) );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of most of the elements in a second loop\n\t// to avoid the constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( !show || elem.style.display === \"none\" || elem.style.display === \"\" ) {\n\t\t\telem.style.display = show ? values[ index ] || \"\" : \"none\";\n\t\t}\n\t}\n\n\treturn elements;\n}\n\nfunction setPositiveNumber( elem, value, subtract ) {\n\tvar matches = rnumsplit.exec( value );\n\treturn matches ?\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {\n\tvar i = extra === ( isBorderBox ? \"border\" : \"content\" ) ?\n\t\t// If we already have the right measurement, avoid augmentation\n\t\t4 :\n\t\t// Otherwise initialize for horizontal or vertical properties\n\t\tname === \"width\" ? 1 : 0,\n\n\t\tval = 0;\n\n\tfor ( ; i < 4; i += 2 ) {\n\t\t// both box models exclude margin, so add it if we want it\n\t\tif ( extra === \"margin\" ) {\n\t\t\tval += jQuery.css( elem, extra + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\tif ( isBorderBox ) {\n\t\t\t// border-box includes padding, so remove it if we want content\n\t\t\tif ( extra === \"content\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// at this point, extra isn't border nor margin, so remove border\n\t\t\tif ( extra !== \"margin\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t} else {\n\t\t\t// at this point, extra isn't content, so add padding\n\t\t\tval += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// at this point, extra isn't content nor padding, so add border\n\t\t\tif ( extra !== \"padding\" ) {\n\t\t\t\tval += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn val;\n}\n\nfunction getWidthOrHeight( elem, name, extra ) {\n\n\t// Start with offset property, which is equivalent to the border-box value\n\tvar valueIsBorderBox = true,\n\t\tval = name === \"width\" ? elem.offsetWidth : elem.offsetHeight,\n\t\tstyles = getStyles( elem ),\n\t\tisBorderBox = support.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t// some non-html elements return undefined for offsetWidth, so check for null/undefined\n\t// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285\n\t// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668\n\tif ( val <= 0 || val == null ) {\n\t\t// Fall back to computed then uncomputed css if necessary\n\t\tval = curCSS( elem, name, styles );\n\t\tif ( val < 0 || val == null ) {\n\t\t\tval = elem.style[ name ];\n\t\t}\n\n\t\t// Computed unit is not pixels. Stop here and return.\n\t\tif ( rnumnonpx.test(val) ) {\n\t\t\treturn val;\n\t\t}\n\n\t\t// we need the check for style in case a browser which returns unreliable values\n\t\t// for getComputedStyle silently falls back to the reliable elem.style\n\t\tvalueIsBorderBox = isBorderBox && ( support.boxSizingReliable() || val === elem.style[ name ] );\n\n\t\t// Normalize \"\", auto, and prepare for extra\n\t\tval = parseFloat( val ) || 0;\n\t}\n\n\t// use the active box-sizing model to add/subtract irrelevant styles\n\treturn ( val +\n\t\taugmentWidthOrHeight(\n\t\t\telem,\n\t\t\tname,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend({\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {\n\t\t// normalize float css property\n\t\t\"float\": support.cssFloat ? \"cssFloat\" : \"styleFloat\"\n\t},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = jQuery.camelCase( name ),\n\t\t\tstyle = elem.style;\n\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// convert relative number strings (+= or -=) to relative numbers. #7345\n\t\t\tif ( type === \"string\" && (ret = rrelNum.exec( value )) ) {\n\t\t\t\tvalue = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set. See: #7116\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add 'px' to the (except for certain CSS properties)\n\t\t\tif ( type === \"number\" && !jQuery.cssNumber[ origName ] ) {\n\t\t\t\tvalue += \"px\";\n\t\t\t}\n\n\t\t\t// Fixes #8908, it can be done more correctly by specifing setters in cssHooks,\n\t\t\t// but it would mean to define eight (for every problematic property) identical functions\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf(\"background\") === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !(\"set\" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {\n\n\t\t\t\t// Support: IE\n\t\t\t\t// Swallow errors from 'invalid' CSS values (#5509)\n\t\t\t\ttry {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t} else {\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar num, val, hooks,\n\t\t\torigName = jQuery.camelCase( name );\n\n\t\t// Make sure that we're working with the right name\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t//convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Return, converting to number if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || jQuery.isNumeric( num ) ? num || 0 : val;\n\t\t}\n\t\treturn val;\n\t}\n});\n\njQuery.each([ \"height\", \"width\" ], function( i, name ) {\n\tjQuery.cssHooks[ name ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\t\t\t\t// certain elements can have dimension info if we invisibly show them\n\t\t\t\t// however, it must have a current display style that would benefit from this\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) && elem.offsetWidth === 0 ?\n\t\t\t\t\tjQuery.swap( elem, cssShow, function() {\n\t\t\t\t\t\treturn getWidthOrHeight( elem, name, extra );\n\t\t\t\t\t}) :\n\t\t\t\t\tgetWidthOrHeight( elem, name, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar styles = extra && getStyles( elem );\n\t\t\treturn setPositiveNumber( elem, value, extra ?\n\t\t\t\taugmentWidthOrHeight(\n\t\t\t\t\telem,\n\t\t\t\t\tname,\n\t\t\t\t\textra,\n\t\t\t\t\tsupport.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\t\tstyles\n\t\t\t\t) : 0\n\t\t\t);\n\t\t}\n\t};\n});\n\nif ( !support.opacity ) {\n\tjQuery.cssHooks.opacity = {\n\t\tget: function( elem, computed ) {\n\t\t\t// IE uses filters for opacity\n\t\t\treturn ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || \"\" ) ?\n\t\t\t\t( 0.01 * parseFloat( RegExp.$1 ) ) + \"\" :\n\t\t\t\tcomputed ? \"1\" : \"\";\n\t\t},\n\n\t\tset: function( elem, value ) {\n\t\t\tvar style = elem.style,\n\t\t\t\tcurrentStyle = elem.currentStyle,\n\t\t\t\topacity = jQuery.isNumeric( value ) ? \"alpha(opacity=\" + value * 100 + \")\" : \"\",\n\t\t\t\tfilter = currentStyle && currentStyle.filter || style.filter || \"\";\n\n\t\t\t// IE has trouble with opacity if it does not have layout\n\t\t\t// Force it by setting the zoom level\n\t\t\tstyle.zoom = 1;\n\n\t\t\t// if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652\n\t\t\t// if value === \"\", then remove inline opacity #12685\n\t\t\tif ( ( value >= 1 || value === \"\" ) &&\n\t\t\t\t\tjQuery.trim( filter.replace( ralpha, \"\" ) ) === \"\" &&\n\t\t\t\t\tstyle.removeAttribute ) {\n\n\t\t\t\t// Setting style.filter to null, \"\" & \" \" still leave \"filter:\" in the cssText\n\t\t\t\t// if \"filter:\" is present at all, clearType is disabled, we want to avoid this\n\t\t\t\t// style.removeAttribute is IE Only, but so apparently is this code path...\n\t\t\t\tstyle.removeAttribute( \"filter\" );\n\n\t\t\t\t// if there is no filter style applied in a css rule or unset inline opacity, we are done\n\t\t\t\tif ( value === \"\" || currentStyle && !currentStyle.filter ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// otherwise, set new filter values\n\t\t\tstyle.filter = ralpha.test( filter ) ?\n\t\t\t\tfilter.replace( ralpha, opacity ) :\n\t\t\t\tfilter + \" \" + opacity;\n\t\t}\n\t};\n}\n\njQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\t// Work around by temporarily setting element display to inline-block\n\t\t\treturn jQuery.swap( elem, { \"display\": \"inline-block\" },\n\t\t\t\tcurCSS, [ elem, \"marginRight\" ] );\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each({\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split(\" \") : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( !rmargin.test( prefix ) ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n});\n\njQuery.fn.extend({\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( jQuery.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t},\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( isHidden( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t});\n\t}\n});\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || \"swing\";\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\tif ( tween.elem[ tween.prop ] != null &&\n\t\t\t\t(!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails\n\t\t\t// so, simple values such as \"10px\" are parsed to Float.\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\t\t\t// use step hook for back compat - use cssHook if its there - use .style if its\n\t\t\t// available and use plain properties where available\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9\n// Panic based approach to setting things on disconnected nodes\n\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t}\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back Compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, timerId,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trfxnum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" ),\n\trrun = /queueHooks$/,\n\tanimationPrefilters = [ defaultPrefilter ],\n\ttweeners = {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value ),\n\t\t\t\ttarget = tween.cur(),\n\t\t\t\tparts = rfxnum.exec( value ),\n\t\t\t\tunit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t\t\t// Starting value computation is required for potential unit mismatches\n\t\t\t\tstart = ( jQuery.cssNumber[ prop ] || unit !== \"px\" && +target ) &&\n\t\t\t\t\trfxnum.exec( jQuery.css( tween.elem, prop ) ),\n\t\t\t\tscale = 1,\n\t\t\t\tmaxIterations = 20;\n\n\t\t\tif ( start && start[ 3 ] !== unit ) {\n\t\t\t\t// Trust units reported by jQuery.css\n\t\t\t\tunit = unit || start[ 3 ];\n\n\t\t\t\t// Make sure we update the tween properties later on\n\t\t\t\tparts = parts || [];\n\n\t\t\t\t// Iteratively approximate from a nonzero starting point\n\t\t\t\tstart = +target || 1;\n\n\t\t\t\tdo {\n\t\t\t\t\t// If previous iteration zeroed out, double until we get *something*\n\t\t\t\t\t// Use a string for doubling factor so we don't accidentally see scale as unchanged below\n\t\t\t\t\tscale = scale || \".5\";\n\n\t\t\t\t\t// Adjust and apply\n\t\t\t\t\tstart = start / scale;\n\t\t\t\t\tjQuery.style( tween.elem, prop, start + unit );\n\n\t\t\t\t// Update scale, tolerating zero or NaN from tween.cur()\n\t\t\t\t// And breaking the loop if scale is unchanged or perfect, or if we've just had enough\n\t\t\t\t} while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );\n\t\t\t}\n\n\t\t\t// Update tween properties\n\t\t\tif ( parts ) {\n\t\t\t\tstart = tween.start = +start || +target || 0;\n\t\t\t\ttween.unit = unit;\n\t\t\t\t// If a +=/-= token was provided, we're doing a relative animation\n\t\t\t\ttween.end = parts[ 1 ] ?\n\t\t\t\t\tstart + ( parts[ 1 ] + 1 ) * parts[ 2 ] :\n\t\t\t\t\t+parts[ 2 ];\n\t\t\t}\n\n\t\t\treturn tween;\n\t\t} ]\n\t};\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\tsetTimeout(function() {\n\t\tfxNow = undefined;\n\t});\n\treturn ( fxNow = jQuery.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\tattrs = { height: type },\n\t\ti = 0;\n\n\t// if we include width, step value is 1 to do all cssExpand values,\n\t// if we don't include width, step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4 ; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( tweeners[ prop ] || [] ).concat( tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( (tween = collection[ index ].call( animation, prop, value )) ) {\n\n\t\t\t// we're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\t/* jshint validthis: true */\n\tvar prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHidden( elem ),\n\t\tdataShow = jQuery._data( elem, \"fxshow\" );\n\n\t// handle queue: false promises\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always(function() {\n\t\t\t// doing this makes sure that the complete handler will be called\n\t\t\t// before this completes\n\t\t\tanim.always(function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t}\n\n\t// height/width overflow pass\n\tif ( elem.nodeType === 1 && ( \"height\" in props || \"width\" in props ) ) {\n\t\t// Make sure that nothing sneaks out\n\t\t// Record all 3 overflow attributes because IE does not\n\t\t// change the overflow attribute when overflowX and\n\t\t// overflowY are set to the same value\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Set display property to inline-block for height/width\n\t\t// animations on inline elements that are having width/height animated\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\n\t\t// Test default display if display is currently \"none\"\n\t\tcheckDisplay = display === \"none\" ?\n\t\t\tjQuery._data( elem, \"olddisplay\" ) || defaultDisplay( elem.nodeName ) : display;\n\n\t\tif ( checkDisplay === \"inline\" && jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t// inline-level elements accept inline-block;\n\t\t\t// block-level elements need to be inline with layout\n\t\t\tif ( !support.inlineBlockNeedsLayout || defaultDisplay( elem.nodeName ) === \"inline\" ) {\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t} else {\n\t\t\t\tstyle.zoom = 1;\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tif ( !support.shrinkWrapBlocks() ) {\n\t\t\tanim.always(function() {\n\t\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t\t});\n\t\t}\n\t}\n\n\t// show/hide pass\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.exec( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\n\t\t// Any non-fx value stops us from restoring the original display value\n\t\t} else {\n\t\t\tdisplay = undefined;\n\t\t}\n\t}\n\n\tif ( !jQuery.isEmptyObject( orig ) ) {\n\t\tif ( dataShow ) {\n\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\thidden = dataShow.hidden;\n\t\t\t}\n\t\t} else {\n\t\t\tdataShow = jQuery._data( elem, \"fxshow\", {} );\n\t\t}\n\n\t\t// store state if its toggle - enables .stop().toggle() to \"reverse\"\n\t\tif ( toggle ) {\n\t\t\tdataShow.hidden = !hidden;\n\t\t}\n\t\tif ( hidden ) {\n\t\t\tjQuery( elem ).show();\n\t\t} else {\n\t\t\tanim.done(function() {\n\t\t\t\tjQuery( elem ).hide();\n\t\t\t});\n\t\t}\n\t\tanim.done(function() {\n\t\t\tvar prop;\n\t\t\tjQuery._removeData( elem, \"fxshow\" );\n\t\t\tfor ( prop in orig ) {\n\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t}\n\t\t});\n\t\tfor ( prop in orig ) {\n\t\t\ttween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\n\t\t\tif ( !( prop in dataShow ) ) {\n\t\t\t\tdataShow[ prop ] = tween.start;\n\t\t\t\tif ( hidden ) {\n\t\t\t\t\ttween.end = tween.start;\n\t\t\t\t\ttween.start = prop === \"width\" || prop === \"height\" ? 1 : 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t// If this is a noop like .hide().hide(), restore an overwritten display value\n\t} else if ( (display === \"none\" ? defaultDisplay( elem.nodeName ) : display) === \"inline\" ) {\n\t\tstyle.display = display;\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = jQuery.camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( jQuery.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// not quite $.extend, this wont overwrite keys already present.\n\t\t\t// also - reusing 'index' from above because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = animationPrefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\t\t\t// don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t}),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\t\t\t\t// archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ]);\n\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t} else {\n\t\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\t\tanimation = deferred.promise({\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, { specialEasing: {} }, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\t\t\t\t\t// if we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// resolve when we played the last frame\n\t\t\t\t// otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t}),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length ; index++ ) {\n\t\tresult = animationPrefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( jQuery.isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t})\n\t);\n\n\t// attach callbacks from options\n\treturn animation.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\ttweener: function( props, callback ) {\n\t\tif ( jQuery.isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.split(\" \");\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length ; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\ttweeners[ prop ] = tweeners[ prop ] || [];\n\t\t\ttweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tanimationPrefilters.unshift( callback );\n\t\t} else {\n\t\t\tanimationPrefilters.push( callback );\n\t\t}\n\t}\n});\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tjQuery.isFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !jQuery.isFunction( easing ) && easing\n\t};\n\n\topt.duration = jQuery.fx.off ? 0 : typeof opt.duration === \"number\" ? opt.duration :\n\t\topt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;\n\n\t// normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( jQuery.isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend({\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHidden ).css( \"opacity\", 0 ).show()\n\n\t\t\t// animate to the value specified\n\t\t\t.end().animate({ opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || jQuery._data( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue && type !== false ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = jQuery._data( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// start the next in the queue if the last step wasn't forced\n\t\t\t// timers currently will call their complete callbacks, which will dequeue\n\t\t\t// but only if they were gotoEnd\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t});\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tvar index,\n\t\t\t\tdata = jQuery._data( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t});\n\t}\n});\n\njQuery.each([ \"toggle\", \"show\", \"hide\" ], function( i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n});\n\n// Generate shortcuts for custom animations\njQuery.each({\n\tslideDown: genFx(\"show\"),\n\tslideUp: genFx(\"hide\"),\n\tslideToggle: genFx(\"toggle\"),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n});\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ttimers = jQuery.timers,\n\t\ti = 0;\n\n\tfxNow = jQuery.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\t\t// Checks the timer has not already been removed\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tif ( timer() ) {\n\t\tjQuery.fx.start();\n\t} else {\n\t\tjQuery.timers.pop();\n\t}\n};\n\njQuery.fx.interval = 13;\n\njQuery.fx.start = function() {\n\tif ( !timerId ) {\n\t\ttimerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );\n\t}\n};\n\njQuery.fx.stop = function() {\n\tclearInterval( timerId );\n\ttimerId = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\tclearTimeout( timeout );\n\t\t};\n\t});\n};\n\n\n(function() {\n\t// Minified: var a,b,c,d,e\n\tvar input, div, select, a, opt;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.setAttribute( \"className\", \"t\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName(\"a\")[ 0 ];\n\n\t// First batch of tests.\n\tselect = document.createElement(\"select\");\n\topt = select.appendChild( document.createElement(\"option\") );\n\tinput = div.getElementsByTagName(\"input\")[ 0 ];\n\n\ta.style.cssText = \"top:1px\";\n\n\t// Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)\n\tsupport.getSetAttribute = div.className !== \"t\";\n\n\t// Get the style information from getAttribute\n\t// (IE uses .cssText instead)\n\tsupport.style = /top/.test( a.getAttribute(\"style\") );\n\n\t// Make sure that URLs aren't manipulated\n\t// (IE normalizes it by default)\n\tsupport.hrefNormalized = a.getAttribute(\"href\") === \"/a\";\n\n\t// Check the default checkbox/radio value (\"\" on WebKit; \"on\" elsewhere)\n\tsupport.checkOn = !!input.value;\n\n\t// Make sure that a selected-by-default option has a working selected property.\n\t// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)\n\tsupport.optSelected = opt.selected;\n\n\t// Tests for enctype support on a form (#6743)\n\tsupport.enctype = !!document.createElement(\"form\").enctype;\n\n\t// Make sure that the options inside disabled selects aren't marked as disabled\n\t// (WebKit marks them as disabled)\n\tselect.disabled = true;\n\tsupport.optDisabled = !opt.disabled;\n\n\t// Support: IE8 only\n\t// Check if we can trust getAttribute(\"value\")\n\tinput = document.createElement( \"input\" );\n\tinput.setAttribute( \"value\", \"\" );\n\tsupport.input = input.getAttribute( \"value\" ) === \"\";\n\n\t// Check if an input maintains its value after becoming a radio\n\tinput.value = \"t\";\n\tinput.setAttribute( \"type\", \"radio\" );\n\tsupport.radioValue = input.value === \"t\";\n})();\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend({\n\tval: function( value ) {\n\t\tvar hooks, ret, isFunction,\n\t\t\telem = this[0];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, \"value\" )) !== undefined ) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\treturn typeof ret === \"string\" ?\n\t\t\t\t\t// handle most common string cases\n\t\t\t\t\tret.replace(rreturn, \"\") :\n\t\t\t\t\t// handle cases where value is null/undef or number\n\t\t\t\t\tret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tisFunction = jQuery.isFunction( value );\n\n\t\treturn this.each(function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( isFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\t\t\t} else if ( jQuery.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t});\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !(\"set\" in hooks) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\t\t\t\t\t// Support: IE10-11+\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\tjQuery.trim( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\" || index < 0,\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length,\n\t\t\t\t\ti = index < 0 ?\n\t\t\t\t\t\tmax :\n\t\t\t\t\t\tone ? index : 0;\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// oldIE doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t( support.optDisabled ? !option.disabled : option.getAttribute(\"disabled\") === null ) &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\tif ( jQuery.inArray( jQuery.valHooks.option.get( option ), values ) >= 0 ) {\n\n\t\t\t\t\t\t// Support: IE6\n\t\t\t\t\t\t// When new option element is added to select box we need to\n\t\t\t\t\t\t// force reflow of newly added node in order to workaround delay\n\t\t\t\t\t\t// of initialization properties\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\toption.selected = optionSet = true;\n\n\t\t\t\t\t\t} catch ( _ ) {\n\n\t\t\t\t\t\t\t// Will be executed only in IE6\n\t\t\t\t\t\t\toption.scrollHeight;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\toption.selected = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\n\t\t\t\treturn options;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Radios and checkboxes getter/setter\njQuery.each([ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( jQuery.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\t// Support: Webkit\n\t\t\t// \"\" is returned instead of \"on\" if a value isn't specified\n\t\t\treturn elem.getAttribute(\"value\") === null ? \"on\" : elem.value;\n\t\t};\n\t}\n});\n\n\n\n\nvar nodeHook, boolHook,\n\tattrHandle = jQuery.expr.attrHandle,\n\truseDefault = /^(?:checked|selected)$/i,\n\tgetSetAttribute = support.getSetAttribute,\n\tgetSetInput = support.input;\n\njQuery.fn.extend({\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tattr: function( elem, name, value ) {\n\t\tvar hooks, ret,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set attributes on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === strundefined ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// All attributes are lowercase\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\tname = name.toLowerCase();\n\t\t\thooks = jQuery.attrHooks[ name ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\n\t\t\t} else if ( hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {\n\t\t\t\treturn ret;\n\n\t\t\t} else {\n\t\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\t\treturn value;\n\t\t\t}\n\n\t\t} else if ( hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ) {\n\t\t\treturn ret;\n\n\t\t} else {\n\t\t\tret = jQuery.find.attr( elem, name );\n\n\t\t\t// Non-existent attributes return null, we normalize to undefined\n\t\t\treturn ret == null ?\n\t\t\t\tundefined :\n\t\t\t\tret;\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name, propName,\n\t\t\ti = 0,\n\t\t\tattrNames = value && value.match( rnotwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( (name = attrNames[i++]) ) {\n\t\t\t\tpropName = jQuery.propFix[ name ] || name;\n\n\t\t\t\t// Boolean attributes get special treatment (#10870)\n\t\t\t\tif ( jQuery.expr.match.bool.test( name ) ) {\n\t\t\t\t\t// Set corresponding property to false\n\t\t\t\t\tif ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t// Also clear defaultChecked/defaultSelected (if appropriate)\n\t\t\t\t\t} else {\n\t\t\t\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] =\n\t\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t}\n\n\t\t\t\t// See #9699 for explanation of this approach (setting first, then removal)\n\t\t\t\t} else {\n\t\t\t\t\tjQuery.attr( elem, name, \"\" );\n\t\t\t\t}\n\n\t\t\t\telem.removeAttribute( getSetAttribute ? name : propName );\n\t\t\t}\n\t\t}\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" && jQuery.nodeName(elem, \"input\") ) {\n\t\t\t\t\t// Setting the type on a radio button after the value resets the value in IE6-9\n\t\t\t\t\t// Reset value to default in case type is set after value during creation\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Hook for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t// IE<8 needs the *property* name\n\t\t\telem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name );\n\n\t\t// Use defaultChecked and defaultSelected for oldIE\n\t\t} else {\n\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] = elem[ name ] = true;\n\t\t}\n\n\t\treturn name;\n\t}\n};\n\n// Retrieve booleans specially\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( i, name ) {\n\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ?\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret, handle;\n\t\t\tif ( !isXML ) {\n\t\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\t\thandle = attrHandle[ name ];\n\t\t\t\tattrHandle[ name ] = ret;\n\t\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t\tattrHandle[ name ] = handle;\n\t\t\t}\n\t\t\treturn ret;\n\t\t} :\n\t\tfunction( elem, name, isXML ) {\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn elem[ jQuery.camelCase( \"default-\" + name ) ] ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n});\n\n// fix oldIE attroperties\nif ( !getSetInput || !getSetAttribute ) {\n\tjQuery.attrHooks.value = {\n\t\tset: function( elem, value, name ) {\n\t\t\tif ( jQuery.nodeName( elem, \"input\" ) ) {\n\t\t\t\t// Does not return so that setAttribute is also used\n\t\t\t\telem.defaultValue = value;\n\t\t\t} else {\n\t\t\t\t// Use nodeHook if defined (#1954); otherwise setAttribute is fine\n\t\t\t\treturn nodeHook && nodeHook.set( elem, value, name );\n\t\t\t}\n\t\t}\n\t};\n}\n\n// IE6/7 do not support getting/setting some attributes with get/setAttribute\nif ( !getSetAttribute ) {\n\n\t// Use this for any attribute in IE6/7\n\t// This fixes almost every IE6/7 issue\n\tnodeHook = {\n\t\tset: function( elem, value, name ) {\n\t\t\t// Set the existing or create a new attribute node\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( !ret ) {\n\t\t\t\telem.setAttributeNode(\n\t\t\t\t\t(ret = elem.ownerDocument.createAttribute( name ))\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tret.value = value += \"\";\n\n\t\t\t// Break association with cloned elements by also using setAttribute (#9646)\n\t\t\tif ( name === \"value\" || value === elem.getAttribute( name ) ) {\n\t\t\t\treturn value;\n\t\t\t}\n\t\t}\n\t};\n\n\t// Some attributes are constructed with empty-string values when not defined\n\tattrHandle.id = attrHandle.name = attrHandle.coords =\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret;\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn (ret = elem.getAttributeNode( name )) && ret.value !== \"\" ?\n\t\t\t\t\tret.value :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n\n\t// Fixing value retrieval on a button requires this module\n\tjQuery.valHooks.button = {\n\t\tget: function( elem, name ) {\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( ret && ret.specified ) {\n\t\t\t\treturn ret.value;\n\t\t\t}\n\t\t},\n\t\tset: nodeHook.set\n\t};\n\n\t// Set contenteditable to false on removals(#10429)\n\t// Setting to empty string throws an error as an invalid value\n\tjQuery.attrHooks.contenteditable = {\n\t\tset: function( elem, value, name ) {\n\t\t\tnodeHook.set( elem, value === \"\" ? false : value, name );\n\t\t}\n\t};\n\n\t// Set width and height to auto instead of 0 on empty string( Bug #8150 )\n\t// This is for removals\n\tjQuery.each([ \"width\", \"height\" ], function( i, name ) {\n\t\tjQuery.attrHooks[ name ] = {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( value === \"\" ) {\n\t\t\t\t\telem.setAttribute( name, \"auto\" );\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\nif ( !support.style ) {\n\tjQuery.attrHooks.style = {\n\t\tget: function( elem ) {\n\t\t\t// Return undefined in the case of empty string\n\t\t\t// Note: IE uppercases css property names, but if we were to .toLowerCase()\n\t\t\t// .cssText, that would destroy case senstitivity in URL's, like in \"background\"\n\t\t\treturn elem.style.cssText || undefined;\n\t\t},\n\t\tset: function( elem, value ) {\n\t\t\treturn ( elem.style.cssText = value + \"\" );\n\t\t}\n\t};\n}\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button|object)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend({\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\tname = jQuery.propFix[ name ] || name;\n\t\treturn this.each(function() {\n\t\t\t// try/catch handles cases where IE balks (such as removing a property on window)\n\t\t\ttry {\n\t\t\t\tthis[ name ] = undefined;\n\t\t\t\tdelete this[ name ];\n\t\t\t} catch( e ) {}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t},\n\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks, notxml,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set properties on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tnotxml = nType !== 1 || !jQuery.isXMLDoc( elem );\n\n\t\tif ( notxml ) {\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\treturn hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?\n\t\t\t\tret :\n\t\t\t\t( elem[ name ] = value );\n\n\t\t} else {\n\t\t\treturn hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ?\n\t\t\t\tret :\n\t\t\t\telem[ name ];\n\t\t}\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\t\t\t\t// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set\n\t\t\t\t// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\treturn tabindex ?\n\t\t\t\t\tparseInt( tabindex, 10 ) :\n\t\t\t\t\trfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?\n\t\t\t\t\t\t0 :\n\t\t\t\t\t\t-1;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Some attributes require a special call on IE\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !support.hrefNormalized ) {\n\t// href/src property should get the full normalized URL (#10299/#12915)\n\tjQuery.each([ \"href\", \"src\" ], function( i, name ) {\n\t\tjQuery.propHooks[ name ] = {\n\t\t\tget: function( elem ) {\n\t\t\t\treturn elem.getAttribute( name, 4 );\n\t\t\t}\n\t\t};\n\t});\n}\n\n// Support: Safari, IE9+\n// mis-reports the default selected property of an option\n// Accessing the parent's selectedIndex property fixes it\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\t// Make sure that it also works with optgroups, see #5701\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\t};\n}\n\njQuery.each([\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n});\n\n// IE6/7 call enctype encoding\nif ( !support.enctype ) {\n\tjQuery.propFix.enctype = \"encoding\";\n}\n\n\n\n\nvar rclass = /[\\t\\r\\n\\f]/g;\n\njQuery.fn.extend({\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\n\t\tif ( proceed ) {\n\t\t\t// The disjunction here is for better compressibility (see removeClass)\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\" \"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = jQuery.trim( cur );\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = arguments.length === 0 || typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\t\tif ( proceed ) {\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\"\"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) >= 0 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = value ? jQuery.trim( cur ) : \"\";\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value;\n\n\t\tif ( typeof stateVal === \"boolean\" && type === \"string\" ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tjQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( type === \"string\" ) {\n\t\t\t\t// toggle individual class names\n\t\t\t\tvar className,\n\t\t\t\t\ti = 0,\n\t\t\t\t\tself = jQuery( this ),\n\t\t\t\t\tclassNames = value.match( rnotwhite ) || [];\n\n\t\t\t\twhile ( (className = classNames[ i++ ]) ) {\n\t\t\t\t\t// check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( type === strundefined || type === \"boolean\" ) {\n\t\t\t\tif ( this.className ) {\n\t\t\t\t\t// store className if set\n\t\t\t\t\tjQuery._data( this, \"__className__\", this.className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed \"false\",\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tthis.className = this.className || value === false ? \"\" : jQuery._data( this, \"__className__\" ) || \"\";\n\t\t\t}\n\t\t});\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className = \" \" + selector + \" \",\n\t\t\ti = 0,\n\t\t\tl = this.length;\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tif ( this[i].nodeType === 1 && (\" \" + this[i].className + \" \").replace(rclass, \" \").indexOf( className ) >= 0 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n});\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\njQuery.each( (\"blur focus focusin focusout load resize scroll unload click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup error contextmenu\").split(\" \"), function( i, name ) {\n\n\t// Handle event binding\n\tjQuery.fn[ name ] = function( data, fn ) {\n\t\treturn arguments.length > 0 ?\n\t\t\tthis.on( name, null, data, fn ) :\n\t\t\tthis.trigger( name );\n\t};\n});\n\njQuery.fn.extend({\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t},\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ? this.off( selector, \"**\" ) : this.off( types, selector || \"**\", fn );\n\t}\n});\n\n\nvar nonce = jQuery.now();\n\nvar rquery = (/\\?/);\n\n\n\nvar rvalidtokens = /(,)|(\\[|{)|(}|])|\"(?:[^\"\\\\\\r\\n]|\\\\[\"\\\\\\/bfnrt]|\\\\u[\\da-fA-F]{4})*\"\\s*:?|true|false|null|-?(?!0\\d)\\d+(?:\\.\\d+|)(?:[eE][+-]?\\d+|)/g;\n\njQuery.parseJSON = function( data ) {\n\t// Attempt to parse using the native JSON parser first\n\tif ( window.JSON && window.JSON.parse ) {\n\t\t// Support: Android 2.3\n\t\t// Workaround failure to string-cast null input\n\t\treturn window.JSON.parse( data + \"\" );\n\t}\n\n\tvar requireNonComma,\n\t\tdepth = null,\n\t\tstr = jQuery.trim( data + \"\" );\n\n\t// Guard against invalid (and possibly dangerous) input by ensuring that nothing remains\n\t// after removing valid tokens\n\treturn str && !jQuery.trim( str.replace( rvalidtokens, function( token, comma, open, close ) {\n\n\t\t// Force termination if we see a misplaced comma\n\t\tif ( requireNonComma && comma ) {\n\t\t\tdepth = 0;\n\t\t}\n\n\t\t// Perform no more replacements after returning to outermost depth\n\t\tif ( depth === 0 ) {\n\t\t\treturn token;\n\t\t}\n\n\t\t// Commas must not follow \"[\", \"{\", or \",\"\n\t\trequireNonComma = open || comma;\n\n\t\t// Determine new depth\n\t\t// array/object open (\"[\" or \"{\"): depth += true - false (increment)\n\t\t// array/object close (\"]\" or \"}\"): depth += false - true (decrement)\n\t\t// other cases (\",\" or primitive): depth += true - true (numeric cast)\n\t\tdepth += !close - !open;\n\n\t\t// Remove this token\n\t\treturn \"\";\n\t}) ) ?\n\t\t( Function( \"return \" + str ) )() :\n\t\tjQuery.error( \"Invalid JSON: \" + data );\n};\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml, tmp;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\ttry {\n\t\tif ( window.DOMParser ) { // Standard\n\t\t\ttmp = new DOMParser();\n\t\t\txml = tmp.parseFromString( data, \"text/xml\" );\n\t\t} else { // IE\n\t\t\txml = new ActiveXObject( \"Microsoft.XMLDOM\" );\n\t\t\txml.async = \"false\";\n\t\t\txml.loadXML( data );\n\t\t}\n\t} catch( e ) {\n\t\txml = undefined;\n\t}\n\tif ( !xml || !xml.documentElement || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\t// Document location\n\tajaxLocParts,\n\tajaxLocation,\n\n\trhash = /#.*$/,\n\trts = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)\\r?$/mg, // IE leaves an \\r character at EOL\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\trurl = /^([\\w.+-]+:)(?:\\/\\/(?:[^\\/?#]*@|)([^\\/?#:]*)(?::(\\d+)|)|)/,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat(\"*\");\n\n// #8138, IE may throw an exception when accessing\n// a field from window.location if document.domain has been set\ntry {\n\tajaxLocation = location.href;\n} catch( e ) {\n\t// Use the href attribute of an A element\n\t// since IE will modify it given document.location\n\tajaxLocation = document.createElement( \"a\" );\n\tajaxLocation.href = \"\";\n\tajaxLocation = ajaxLocation.href;\n}\n\n// Segment location into parts\najaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];\n\n\t\tif ( jQuery.isFunction( func ) ) {\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( (dataType = dataTypes[i++]) ) {\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType.charAt( 0 ) === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t});\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar deep, key,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\tvar firstDataType, ct, finalDataType, type,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader(\"Content-Type\");\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[0] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s[ \"throws\" ] ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn { state: \"parsererror\", error: conv ? e : \"No conversion from \" + prev + \" to \" + current };\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend({\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: ajaxLocation,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /xml/,\n\t\t\thtml: /html/,\n\t\t\tjson: /json/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": jQuery.parseJSON,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar // Cross-domain detection vars\n\t\t\tparts,\n\t\t\t// Loop variable\n\t\t\ti,\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\t\t\t// Response headers as string\n\t\t\tresponseHeadersString,\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\ttransport,\n\t\t\t// Response headers\n\t\t\tresponseHeaders,\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\tjQuery.event,\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks(\"once memory\"),\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\t\t\t// The jqXHR state\n\t\t\tstate = 0,\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( state === 2 ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( (match = rheaders.exec( responseHeadersString )) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[1].toLowerCase() ] = match[ 2 ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match;\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn state === 2 ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tvar lname = name.toLowerCase();\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\tname = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\t// Lazy-add the new callback in a way that preserves old ones\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR ).complete = completeDeferred.add;\n\t\tjqXHR.success = jqXHR.done;\n\t\tjqXHR.error = jqXHR.fail;\n\n\t\t// Remove hash character (#7531: and string promotion)\n\t\t// Add protocol if not provided (#5866: IE7 issue with protocol-less urls)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || ajaxLocation ) + \"\" ).replace( rhash, \"\" ).replace( rprotocol, ajaxLocParts[ 1 ] + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = jQuery.trim( s.dataType || \"*\" ).toLowerCase().match( rnotwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when we have a protocol:host:port mismatch\n\t\tif ( s.crossDomain == null ) {\n\t\t\tparts = rurl.exec( s.url.toLowerCase() );\n\t\t\ts.crossDomain = !!( parts &&\n\t\t\t\t( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||\n\t\t\t\t\t( parts[ 3 ] || ( parts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) !==\n\t\t\t\t\t\t( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) )\n\t\t\t);\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( state === 2 ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger(\"ajaxStart\");\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\tcacheURL = s.url;\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// If data is available, append data to url\n\t\t\tif ( s.data ) {\n\t\t\t\tcacheURL = ( s.url += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data );\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add anti-cache in url if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\ts.url = rts.test( cacheURL ) ?\n\n\t\t\t\t\t// If there is already a '_' parameter, set its value\n\t\t\t\t\tcacheURL.replace( rts, \"$1_=\" + nonce++ ) :\n\n\t\t\t\t\t// Otherwise add one to the end\n\t\t\t\t\tcacheURL + ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + nonce++;\n\t\t\t}\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tfor ( i in { success: 1, error: 1, complete: 1 } ) {\n\t\t\tjqXHR[ i ]( s[ i ] );\n\t\t}\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = setTimeout(function() {\n\t\t\t\t\tjqXHR.abort(\"timeout\");\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tstate = 1;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\t\t\t\t// Propagate exception as error if not done\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tdone( -1, e );\n\t\t\t\t// Simply rethrow otherwise\n\t\t\t\t} else {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Called once\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// State is \"done\" now\n\t\t\tstate = 2;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\tclearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"Last-Modified\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"etag\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// We extract error from statusText\n\t\t\t\t// then normalize statusText and status for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger(\"ajaxStop\");\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n});\n\njQuery.each( [ \"get\", \"post\" ], function( i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\t\t// shift arguments if data argument was omitted\n\t\tif ( jQuery.isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\treturn jQuery.ajax({\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t});\n\t};\n});\n\n\njQuery._evalUrl = function( url ) {\n\treturn jQuery.ajax({\n\t\turl: url,\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tasync: false,\n\t\tglobal: false,\n\t\t\"throws\": true\n\t});\n};\n\n\njQuery.fn.extend({\n\twrapAll: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapAll( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\tif ( this[0] ) {\n\t\t\t// The elements to wrap the target around\n\t\t\tvar wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);\n\n\t\t\tif ( this[0].parentNode ) {\n\t\t\t\twrap.insertBefore( this[0] );\n\t\t\t}\n\n\t\t\twrap.map(function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstChild && elem.firstChild.nodeType === 1 ) {\n\t\t\t\t\telem = elem.firstChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t}).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapInner( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t});\n\t},\n\n\twrap: function( html ) {\n\t\tvar isFunction = jQuery.isFunction( html );\n\n\t\treturn this.each(function(i) {\n\t\t\tjQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );\n\t\t});\n\t},\n\n\tunwrap: function() {\n\t\treturn this.parent().each(function() {\n\t\t\tif ( !jQuery.nodeName( this, \"body\" ) ) {\n\t\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t\t}\n\t\t}).end();\n\t}\n});\n\n\njQuery.expr.filters.hidden = function( elem ) {\n\t// Support: Opera <= 12.12\n\t// Opera reports offsetWidths and offsetHeights less than zero on some elements\n\treturn elem.offsetWidth <= 0 && elem.offsetHeight <= 0 ||\n\t\t(!support.reliableHiddenOffsets() &&\n\t\t\t((elem.style && elem.style.display) || jQuery.css( elem, \"display\" )) === \"none\");\n};\n\njQuery.expr.filters.visible = function( elem ) {\n\treturn !jQuery.expr.filters.hidden( elem );\n};\n\n\n\n\nvar r20 = /%20/g,\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( jQuery.isArray( obj ) ) {\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams( prefix + \"[\" + ( typeof v === \"object\" ? i : \"\" ) + \"]\", v, traditional, add );\n\t\t\t}\n\t\t});\n\n\t} else if ( !traditional && jQuery.type( obj ) === \"object\" ) {\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, value ) {\n\t\t\t// If value is a function, invoke it and return its value\n\t\t\tvalue = jQuery.isFunction( value ) ? value() : ( value == null ? \"\" : value );\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" + encodeURIComponent( value );\n\t\t};\n\n\t// Set traditional to true for jQuery <= 1.3.2 behavior.\n\tif ( traditional === undefined ) {\n\t\ttraditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t});\n\n\t} else {\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" ).replace( r20, \"+\" );\n};\n\njQuery.fn.extend({\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map(function() {\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t})\n\t\t.filter(function() {\n\t\t\tvar type = this.type;\n\t\t\t// Use .is(\":disabled\") so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t})\n\t\t.map(function( i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\treturn val == null ?\n\t\t\t\tnull :\n\t\t\t\tjQuery.isArray( val ) ?\n\t\t\t\t\tjQuery.map( val, function( val ) {\n\t\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t\t}) :\n\t\t\t\t\t{ name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t}).get();\n\t}\n});\n\n\n// Create the request object\n// (This is still attached to ajaxSettings for backward compatibility)\njQuery.ajaxSettings.xhr = window.ActiveXObject !== undefined ?\n\t// Support: IE6+\n\tfunction() {\n\n\t\t// XHR cannot access local files, always use ActiveX for that case\n\t\treturn !this.isLocal &&\n\n\t\t\t// Support: IE7-8\n\t\t\t// oldIE XHR does not support non-RFC2616 methods (#13240)\n\t\t\t// See http://msdn.microsoft.com/en-us/library/ie/ms536648(v=vs.85).aspx\n\t\t\t// and http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9\n\t\t\t// Although this check for six methods instead of eight\n\t\t\t// since IE also does not support \"trace\" and \"connect\"\n\t\t\t/^(get|post|head|put|delete|options)$/i.test( this.type ) &&\n\n\t\t\tcreateStandardXHR() || createActiveXHR();\n\t} :\n\t// For all other browsers, use the standard XMLHttpRequest object\n\tcreateStandardXHR;\n\nvar xhrId = 0,\n\txhrCallbacks = {},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\n// Support: IE<10\n// Open requests must be manually aborted on unload (#5280)\n// See https://support.microsoft.com/kb/2856746 for more info\nif ( window.attachEvent ) {\n\twindow.attachEvent( \"onunload\", function() {\n\t\tfor ( var key in xhrCallbacks ) {\n\t\t\txhrCallbacks[ key ]( undefined, true );\n\t\t}\n\t});\n}\n\n// Determine support properties\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nxhrSupported = support.ajax = !!xhrSupported;\n\n// Create transport if the browser can provide an xhr\nif ( xhrSupported ) {\n\n\tjQuery.ajaxTransport(function( options ) {\n\t\t// Cross domain only allowed if supported through XMLHttpRequest\n\t\tif ( !options.crossDomain || support.cors ) {\n\n\t\t\tvar callback;\n\n\t\t\treturn {\n\t\t\t\tsend: function( headers, complete ) {\n\t\t\t\t\tvar i,\n\t\t\t\t\t\txhr = options.xhr(),\n\t\t\t\t\t\tid = ++xhrId;\n\n\t\t\t\t\t// Open the socket\n\t\t\t\t\txhr.open( options.type, options.url, options.async, options.username, options.password );\n\n\t\t\t\t\t// Apply custom fields if provided\n\t\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Override mime type if needed\n\t\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t\t}\n\n\t\t\t\t\t// X-Requested-With header\n\t\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\t\tif ( !options.crossDomain && !headers[\"X-Requested-With\"] ) {\n\t\t\t\t\t\theaders[\"X-Requested-With\"] = \"XMLHttpRequest\";\n\t\t\t\t\t}\n\n\t\t\t\t\t// Set headers\n\t\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// IE's ActiveXObject throws a 'Type Mismatch' exception when setting\n\t\t\t\t\t\t// request header to a null-value.\n\t\t\t\t\t\t//\n\t\t\t\t\t\t// To keep consistent with other XHR implementations, cast the value\n\t\t\t\t\t\t// to string and ignore `undefined`.\n\t\t\t\t\t\tif ( headers[ i ] !== undefined ) {\n\t\t\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] + \"\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Do send the request\n\t\t\t\t\t// This may raise an exception which is actually\n\t\t\t\t\t// handled in jQuery.ajax (so no try/catch here)\n\t\t\t\t\txhr.send( ( options.hasContent && options.data ) || null );\n\n\t\t\t\t\t// Listener\n\t\t\t\t\tcallback = function( _, isAbort ) {\n\t\t\t\t\t\tvar status, statusText, responses;\n\n\t\t\t\t\t\t// Was never called and is aborted or complete\n\t\t\t\t\t\tif ( callback && ( isAbort || xhr.readyState === 4 ) ) {\n\t\t\t\t\t\t\t// Clean up\n\t\t\t\t\t\t\tdelete xhrCallbacks[ id ];\n\t\t\t\t\t\t\tcallback = undefined;\n\t\t\t\t\t\t\txhr.onreadystatechange = jQuery.noop;\n\n\t\t\t\t\t\t\t// Abort manually if needed\n\t\t\t\t\t\t\tif ( isAbort ) {\n\t\t\t\t\t\t\t\tif ( xhr.readyState !== 4 ) {\n\t\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tresponses = {};\n\t\t\t\t\t\t\t\tstatus = xhr.status;\n\n\t\t\t\t\t\t\t\t// Support: IE<10\n\t\t\t\t\t\t\t\t// Accessing binary-data responseText throws an exception\n\t\t\t\t\t\t\t\t// (#11426)\n\t\t\t\t\t\t\t\tif ( typeof xhr.responseText === \"string\" ) {\n\t\t\t\t\t\t\t\t\tresponses.text = xhr.responseText;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Firefox throws an exception when accessing\n\t\t\t\t\t\t\t\t// statusText for faulty cross-domain requests\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tstatusText = xhr.statusText;\n\t\t\t\t\t\t\t\t} catch( e ) {\n\t\t\t\t\t\t\t\t\t// We normalize with Webkit giving an empty statusText\n\t\t\t\t\t\t\t\t\tstatusText = \"\";\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Filter status for non standard behaviors\n\n\t\t\t\t\t\t\t\t// If the request is local and we have data: assume a success\n\t\t\t\t\t\t\t\t// (success with no data won't get notified, that's the best we\n\t\t\t\t\t\t\t\t// can do given current implementations)\n\t\t\t\t\t\t\t\tif ( !status && options.isLocal && !options.crossDomain ) {\n\t\t\t\t\t\t\t\t\tstatus = responses.text ? 200 : 404;\n\t\t\t\t\t\t\t\t// IE - #1450: sometimes returns 1223 when it should be 204\n\t\t\t\t\t\t\t\t} else if ( status === 1223 ) {\n\t\t\t\t\t\t\t\t\tstatus = 204;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Call complete if needed\n\t\t\t\t\t\tif ( responses ) {\n\t\t\t\t\t\t\tcomplete( status, statusText, responses, xhr.getAllResponseHeaders() );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\tif ( !options.async ) {\n\t\t\t\t\t\t// if we're in sync mode we fire the callback\n\t\t\t\t\t\tcallback();\n\t\t\t\t\t} else if ( xhr.readyState === 4 ) {\n\t\t\t\t\t\t// (IE6 & IE7) if it's in cache and has been\n\t\t\t\t\t\t// retrieved directly we need to fire the callback\n\t\t\t\t\t\tsetTimeout( callback );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// Add to the list of active xhr callbacks\n\t\t\t\t\t\txhr.onreadystatechange = xhrCallbacks[ id ] = callback;\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tabort: function() {\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tcallback( undefined, true );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t});\n}\n\n// Functions to create xhrs\nfunction createStandardXHR() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch( e ) {}\n}\n\nfunction createActiveXHR() {\n\ttry {\n\t\treturn new window.ActiveXObject( \"Microsoft.XMLHTTP\" );\n\t} catch( e ) {}\n}\n\n\n\n\n// Install script dataType\njQuery.ajaxSetup({\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /(?:java|ecma)script/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n});\n\n// Handle cache's special case and global\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t\ts.global = false;\n\t}\n});\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function(s) {\n\n\t// This transport only deals with cross domain requests\n\tif ( s.crossDomain ) {\n\n\t\tvar script,\n\t\t\thead = document.head || jQuery(\"head\")[0] || document.documentElement;\n\n\t\treturn {\n\n\t\t\tsend: function( _, callback ) {\n\n\t\t\t\tscript = document.createElement(\"script\");\n\n\t\t\t\tscript.async = true;\n\n\t\t\t\tif ( s.scriptCharset ) {\n\t\t\t\t\tscript.charset = s.scriptCharset;\n\t\t\t\t}\n\n\t\t\t\tscript.src = s.url;\n\n\t\t\t\t// Attach handlers for all browsers\n\t\t\t\tscript.onload = script.onreadystatechange = function( _, isAbort ) {\n\n\t\t\t\t\tif ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {\n\n\t\t\t\t\t\t// Handle memory leak in IE\n\t\t\t\t\t\tscript.onload = script.onreadystatechange = null;\n\n\t\t\t\t\t\t// Remove the script\n\t\t\t\t\t\tif ( script.parentNode ) {\n\t\t\t\t\t\t\tscript.parentNode.removeChild( script );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Dereference the script\n\t\t\t\t\t\tscript = null;\n\n\t\t\t\t\t\t// Callback if not abort\n\t\t\t\t\t\tif ( !isAbort ) {\n\t\t\t\t\t\t\tcallback( 200, \"success\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\t// Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\thead.insertBefore( script, head.firstChild );\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( script ) {\n\t\t\t\t\tscript.onload( undefined, true );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n});\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup({\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n});\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" && !( s.contentType || \"\" ).indexOf(\"application/x-www-form-urlencoded\") && rjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[\"script json\"] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always(function() {\n\t\t\t// Restore preexisting value\n\t\t\twindow[ callbackName ] = overwritten;\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\t\t\t\t// make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && jQuery.isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t});\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n});\n\n\n\n\n// data: string of html\n// context (optional): If specified, the fragment will be created in this context, defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\tcontext = context || document;\n\n\tvar parsed = rsingleTag.exec( data ),\n\t\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[1] ) ];\n\t}\n\n\tparsed = jQuery.buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n// Keep a copy of the old load method\nvar _load = jQuery.fn.load;\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tif ( typeof url !== \"string\" && _load ) {\n\t\treturn _load.apply( this, arguments );\n\t}\n\n\tvar selector, response, type,\n\t\tself = this,\n\t\toff = url.indexOf(\" \");\n\n\tif ( off >= 0 ) {\n\t\tselector = jQuery.trim( url.slice( off, url.length ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( jQuery.isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax({\n\t\t\turl: url,\n\n\t\t\t// if \"type\" variable is undefined, then \"GET\" method will be used\n\t\t\ttype: type,\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t}).done(function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery(\"<div>\").append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t}).complete( callback && function( jqXHR, status ) {\n\t\t\tself.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t});\n\t}\n\n\treturn this;\n};\n\n\n\n\n// Attach a bunch of functions for handling common AJAX events\njQuery.each( [ \"ajaxStart\", \"ajaxStop\", \"ajaxComplete\", \"ajaxError\", \"ajaxSuccess\", \"ajaxSend\" ], function( i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n});\n\n\n\n\njQuery.expr.filters.animated = function( elem ) {\n\treturn jQuery.grep(jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t}).length;\n};\n\n\n\n\n\nvar docElem = window.document.documentElement;\n\n/**\n * Gets a window from an element\n */\nfunction getWindow( elem ) {\n\treturn jQuery.isWindow( elem ) ?\n\t\telem :\n\t\telem.nodeType === 9 ?\n\t\t\telem.defaultView || elem.parentWindow :\n\t\t\tfalse;\n}\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\tjQuery.inArray(\"auto\", [ curCSSTop, curCSSLeft ] ) > -1;\n\n\t\t// need to be able to calculate position if either top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( jQuery.isFunction( options ) ) {\n\t\t\toptions = options.call( elem, i, curOffset );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend({\n\toffset: function( options ) {\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each(function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t});\n\t\t}\n\n\t\tvar docElem, win,\n\t\t\tbox = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ],\n\t\t\tdoc = elem && elem.ownerDocument;\n\n\t\tif ( !doc ) {\n\t\t\treturn;\n\t\t}\n\n\t\tdocElem = doc.documentElement;\n\n\t\t// Make sure it's not a disconnected DOM node\n\t\tif ( !jQuery.contains( docElem, elem ) ) {\n\t\t\treturn box;\n\t\t}\n\n\t\t// If we don't have gBCR, just use 0,0 rather than error\n\t\t// BlackBerry 5, iOS 3 (original iPhone)\n\t\tif ( typeof elem.getBoundingClientRect !== strundefined ) {\n\t\t\tbox = elem.getBoundingClientRect();\n\t\t}\n\t\twin = getWindow( doc );\n\t\treturn {\n\t\t\ttop: box.top  + ( win.pageYOffset || docElem.scrollTop )  - ( docElem.clientTop  || 0 ),\n\t\t\tleft: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 )\n\t\t};\n\t},\n\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset,\n\t\t\tparentOffset = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ];\n\n\t\t// fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is its only offset parent\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\t\t\t// we assume that getBoundingClientRect is available when computed position is fixed\n\t\t\toffset = elem.getBoundingClientRect();\n\t\t} else {\n\t\t\t// Get *real* offsetParent\n\t\t\toffsetParent = this.offsetParent();\n\n\t\t\t// Get correct offsets\n\t\t\toffset = this.offset();\n\t\t\tif ( !jQuery.nodeName( offsetParent[ 0 ], \"html\" ) ) {\n\t\t\t\tparentOffset = offsetParent.offset();\n\t\t\t}\n\n\t\t\t// Add offsetParent borders\n\t\t\tparentOffset.top  += jQuery.css( offsetParent[ 0 ], \"borderTopWidth\", true );\n\t\t\tparentOffset.left += jQuery.css( offsetParent[ 0 ], \"borderLeftWidth\", true );\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\t// note: when an element has margin: auto the offsetLeft and marginLeft\n\t\t// are the same in Safari causing offset.left to incorrectly be 0\n\t\treturn {\n\t\t\ttop:  offset.top  - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true)\n\t\t};\n\t},\n\n\toffsetParent: function() {\n\t\treturn this.map(function() {\n\t\t\tvar offsetParent = this.offsetParent || docElem;\n\n\t\t\twhile ( offsetParent && ( !jQuery.nodeName( offsetParent, \"html\" ) && jQuery.css( offsetParent, \"position\" ) === \"static\" ) ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\t\t\treturn offsetParent || docElem;\n\t\t});\n\t}\n});\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = /Y/.test( prop );\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\t\t\tvar win = getWindow( elem );\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? (prop in win) ? win[ prop ] :\n\t\t\t\t\twin.document.documentElement[ method ] :\n\t\t\t\t\telem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : jQuery( win ).scrollLeft(),\n\t\t\t\t\ttop ? val : jQuery( win ).scrollTop()\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length, null );\n\t};\n});\n\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// getComputedStyle returns percent when specified for top/left/bottom/right\n// rather than make the css module depend on the offset module, we just check for it here\njQuery.each( [ \"top\", \"left\" ], function( i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\t\t\t\t// if curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n});\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name }, function( defaultExtra, funcName ) {\n\t\t// margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( jQuery.isWindow( elem ) ) {\n\t\t\t\t\t// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there\n\t\t\t\t\t// isn't a whole lot we can do. See pull request at this URL for discussion:\n\t\t\t\t\t// https://github.com/jquery/jquery/pull/764\n\t\t\t\t\treturn elem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest\n\t\t\t\t\t// unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it.\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable, null );\n\t\t};\n\t});\n});\n\n\n// The number of elements contained in the matched element set\njQuery.fn.size = function() {\n\treturn this.length;\n};\n\njQuery.fn.andSelf = jQuery.fn.addBack;\n\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t});\n}\n\n\n\n\nvar\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in\n// AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === strundefined ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n\n}));\n"
  },
  {
    "path": "docs/lib/plotly-binding-4.8.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if (x.selectize || x.highlight.dynamic && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // remove \"sendDataToCloud\", unless user has specified they want it\n    x.config = x.config || {};\n    if (!x.config.cloud) {\n      x.config.modeBarButtonsToRemove = x.config.modeBarButtonsToRemove || [];\n      x.config.modeBarButtonsToRemove.push(\"sendDataToCloud\");\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.plot(graphDiv, x);\n      instance.plotly = true;\n      instance.autosize = x.layout.autosize || true;\n      instance.width = x.layout.width;\n      instance.height = x.layout.height;\n      \n    } else {\n      \n      // new x data could contain a new height/width...\n      // attach to instance so that resize logic knows about the new size\n      instance.width = x.layout.width || instance.width;\n      instance.height = x.layout.height || instance.height;\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.plot(graphDiv, x);\n      \n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        // Add other attributes here, if desired\n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\", \"z\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [\"z\"];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n              // pointNumber can be an array (e.g., heatmaps)\n              // TODO: can pointNumber be 3D?\n              obj[attrsToAttach[i]] = typeof pt.pointNumber === \"number\" ? \n                attr[pt.pointNumber] : attr[pt.pointNumber[0]][pt.pointNumber[1]];\n          }\n        }\n        return obj;\n      });\n    }\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode) {\n      // https://plot.ly/javascript/zoom-events/\n      graphDiv.on('plotly_relayout', function(d) {\n        Shiny.onInputChange(\n          \".clientValue-plotly_relayout-\" + x.source, \n          JSON.stringify(d)\n        );\n      });\n      graphDiv.on('plotly_hover', function(d) {\n        Shiny.onInputChange(\n          \".clientValue-plotly_hover-\" + x.source, \n          JSON.stringify(eventDataWithKey(d))\n        );\n      });\n      graphDiv.on('plotly_click', function(d) {\n        Shiny.onInputChange(\n          \".clientValue-plotly_click-\" + x.source, \n          JSON.stringify(eventDataWithKey(d))\n        );\n      });\n      graphDiv.on('plotly_selected', function(d) {\n        Shiny.onInputChange(\n          \".clientValue-plotly_selected-\" + x.source, \n          JSON.stringify(eventDataWithKey(d))\n        );\n      });\n      graphDiv.on('plotly_unhover', function(eventData) {\n        Shiny.onInputChange(\".clientValue-plotly_hover-\" + x.source, null);\n      });\n      graphDiv.on('plotly_doubleclick', function(eventData) {\n        Shiny.onInputChange(\".clientValue-plotly_click-\" + x.source, null);\n      });\n      // 'plotly_deselect' is code for doubleclick when in select mode\n      graphDiv.on('plotly_deselect', function(eventData) {\n        Shiny.onInputChange(\".clientValue-plotly_selected-\" + x.source, null);\n        Shiny.onInputChange(\".clientValue-plotly_click-\" + x.source, null);\n      });\n    } \n    \n    \n    // send user input event data to dashR\n    // TODO: make this more consistent with Graph() props?\n    var dashRwidgets = window.dashRwidgets || {};\n    var dashRmode = typeof el.setProps === \"function\" &&\n                    typeof dashRwidgets.htmlwidget === \"function\";\n    if (dashRmode) {\n      graphDiv.on('plotly_relayout', function(d) {\n        el.setProps({\"input_plotly_relayout\": d});\n      });\n      graphDiv.on('plotly_hover', function(d) {\n        el.setProps({\"input_plotly_hover\": eventDataWithKey(d)});\n      });\n      graphDiv.on('plotly_click', function(d) {\n        el.setProps({\"input_plotly_click\": eventDataWithKey(d)});\n      });\n      graphDiv.on('plotly_selected', function(d) {\n        el.setProps({\"input_plotly_selected\": eventDataWithKey(d)});\n      });\n      graphDiv.on('plotly_unhover', function(eventData) {\n        el.setProps({\"input_plotly_hover\": null});\n      });\n      graphDiv.on('plotly_doubleclick', function(eventData) {\n        el.setProps({\"input_plotly_click\": null});\n      });\n      // 'plotly_deselect' is code for doubleclick when in select mode\n      graphDiv.on('plotly_deselect', function(eventData) {\n        el.setProps({\"input_plotly_selected\": null});\n        el.setProps({\"input_plotly_click\": null});\n      });\n    } \n    \n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity || 1;\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = this.origData.length; i < this.gd.data.length; i++) {\n      tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "docs/lib/plotly-binding-4.9.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if (x.selectize || x.highlight.dynamic && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.plot(graphDiv, x);\n      instance.plotly = true;\n      instance.autosize = x.layout.autosize || true;\n      instance.width = x.layout.width;\n      instance.height = x.layout.height;\n      \n    } else {\n      \n      // new x data could contain a new height/width...\n      // attach to instance so that resize logic knows about the new size\n      instance.width = x.layout.width || instance.width;\n      instance.height = x.layout.height || instance.height;\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.plot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n              // pointNumber can be an array (e.g., heatmaps)\n              // TODO: can pointNumber be 3D?\n              obj[attrsToAttach[i]] = typeof pt.pointNumber === \"number\" ? \n                attr[pt.pointNumber] : attr[pt.pointNumber[0]][pt.pointNumber[1]];\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "docs/lib/plotly-htmlwidgets-css-1.39.2/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "docs/lib/plotly-htmlwidgets-css-1.46.1/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "docs/site_libs/bootstrap-3.3.5/css/bootstrap-theme.css",
    "content": "/*!\n * Bootstrap v3.3.5 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n  text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);\n          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);\n}\n.btn-default:active,\n.btn-primary:active,\n.btn-success:active,\n.btn-info:active,\n.btn-warning:active,\n.btn-danger:active,\n.btn-default.active,\n.btn-primary.active,\n.btn-success.active,\n.btn-info.active,\n.btn-warning.active,\n.btn-danger.active {\n  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);\n          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);\n}\n.btn-default.disabled,\n.btn-primary.disabled,\n.btn-success.disabled,\n.btn-info.disabled,\n.btn-warning.disabled,\n.btn-danger.disabled,\n.btn-default[disabled],\n.btn-primary[disabled],\n.btn-success[disabled],\n.btn-info[disabled],\n.btn-warning[disabled],\n.btn-danger[disabled],\nfieldset[disabled] .btn-default,\nfieldset[disabled] .btn-primary,\nfieldset[disabled] .btn-success,\nfieldset[disabled] .btn-info,\nfieldset[disabled] .btn-warning,\nfieldset[disabled] .btn-danger {\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n.btn-default .badge,\n.btn-primary .badge,\n.btn-success .badge,\n.btn-info .badge,\n.btn-warning .badge,\n.btn-danger .badge {\n  text-shadow: none;\n}\n.btn:active,\n.btn.active {\n  background-image: none;\n}\n.btn-default {\n  text-shadow: 0 1px 0 #fff;\n  background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n  background-image:      -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0));\n  background-image:         linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-color: #dbdbdb;\n  border-color: #ccc;\n}\n.btn-default:hover,\n.btn-default:focus {\n  background-color: #e0e0e0;\n  background-position: 0 -15px;\n}\n.btn-default:active,\n.btn-default.active {\n  background-color: #e0e0e0;\n  border-color: #dbdbdb;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n  background-color: #e0e0e0;\n  background-image: none;\n}\n.btn-primary {\n  background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);\n  background-image:      -o-linear-gradient(top, #337ab7 0%, #265a88 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88));\n  background-image:         linear-gradient(to bottom, #337ab7 0%, #265a88 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-color: #245580;\n}\n.btn-primary:hover,\n.btn-primary:focus {\n  background-color: #265a88;\n  background-position: 0 -15px;\n}\n.btn-primary:active,\n.btn-primary.active {\n  background-color: #265a88;\n  border-color: #245580;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n  background-color: #265a88;\n  background-image: none;\n}\n.btn-success {\n  background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);\n  background-image:      -o-linear-gradient(top, #5cb85c 0%, #419641 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));\n  background-image:         linear-gradient(to bottom, #5cb85c 0%, #419641 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-color: #3e8f3e;\n}\n.btn-success:hover,\n.btn-success:focus {\n  background-color: #419641;\n  background-position: 0 -15px;\n}\n.btn-success:active,\n.btn-success.active {\n  background-color: #419641;\n  border-color: #3e8f3e;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n  background-color: #419641;\n  background-image: none;\n}\n.btn-info {\n  background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n  background-image:      -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2));\n  background-image:         linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-color: #28a4c9;\n}\n.btn-info:hover,\n.btn-info:focus {\n  background-color: #2aabd2;\n  background-position: 0 -15px;\n}\n.btn-info:active,\n.btn-info.active {\n  background-color: #2aabd2;\n  border-color: #28a4c9;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n  background-color: #2aabd2;\n  background-image: none;\n}\n.btn-warning {\n  background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n  background-image:      -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316));\n  background-image:         linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-color: #e38d13;\n}\n.btn-warning:hover,\n.btn-warning:focus {\n  background-color: #eb9316;\n  background-position: 0 -15px;\n}\n.btn-warning:active,\n.btn-warning.active {\n  background-color: #eb9316;\n  border-color: #e38d13;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n  background-color: #eb9316;\n  background-image: none;\n}\n.btn-danger {\n  background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n  background-image:      -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a));\n  background-image:         linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-color: #b92c28;\n}\n.btn-danger:hover,\n.btn-danger:focus {\n  background-color: #c12e2a;\n  background-position: 0 -15px;\n}\n.btn-danger:active,\n.btn-danger.active {\n  background-color: #c12e2a;\n  border-color: #b92c28;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n  background-color: #c12e2a;\n  background-image: none;\n}\n.thumbnail,\n.img-thumbnail {\n  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);\n          box-shadow: 0 1px 2px rgba(0, 0, 0, .075);\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n  background-color: #e8e8e8;\n  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n  background-image:      -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));\n  background-image:         linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n  background-repeat: repeat-x;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n  background-color: #2e6da4;\n  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n  background-image:      -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));\n  background-image:         linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n  background-repeat: repeat-x;\n}\n.navbar-default {\n  background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%);\n  background-image:      -o-linear-gradient(top, #fff 0%, #f8f8f8 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8));\n  background-image:         linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);\n          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .active > a {\n  background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n  background-image:      -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2));\n  background-image:         linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);\n  background-repeat: repeat-x;\n  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);\n          box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);\n}\n.navbar-brand,\n.navbar-nav > li > a {\n  text-shadow: 0 1px 0 rgba(255, 255, 255, .25);\n}\n.navbar-inverse {\n  background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);\n  background-image:      -o-linear-gradient(top, #3c3c3c 0%, #222 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222));\n  background-image:         linear-gradient(to bottom, #3c3c3c 0%, #222 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-radius: 4px;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .active > a {\n  background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n  background-image:      -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f));\n  background-image:         linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);\n  background-repeat: repeat-x;\n  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);\n          box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);\n}\n.navbar-inverse .navbar-brand,\n.navbar-inverse .navbar-nav > li > a {\n  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);\n}\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  border-radius: 0;\n}\n@media (max-width: 767px) {\n  .navbar .navbar-nav .open .dropdown-menu > .active > a,\n  .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,\n  .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {\n    color: #fff;\n    background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n    background-image:      -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n    background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));\n    background-image:         linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n    background-repeat: repeat-x;\n  }\n}\n.alert {\n  text-shadow: 0 1px 0 rgba(255, 255, 255, .2);\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);\n          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);\n}\n.alert-success {\n  background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n  background-image:      -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));\n  background-image:         linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);\n  background-repeat: repeat-x;\n  border-color: #b2dba1;\n}\n.alert-info {\n  background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n  background-image:      -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));\n  background-image:         linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);\n  background-repeat: repeat-x;\n  border-color: #9acfea;\n}\n.alert-warning {\n  background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n  background-image:      -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));\n  background-image:         linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);\n  background-repeat: repeat-x;\n  border-color: #f5e79e;\n}\n.alert-danger {\n  background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n  background-image:      -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));\n  background-image:         linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);\n  background-repeat: repeat-x;\n  border-color: #dca7a7;\n}\n.progress {\n  background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n  background-image:      -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5));\n  background-image:         linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);\n  background-repeat: repeat-x;\n}\n.progress-bar {\n  background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);\n  background-image:      -o-linear-gradient(top, #337ab7 0%, #286090 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090));\n  background-image:         linear-gradient(to bottom, #337ab7 0%, #286090 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);\n  background-repeat: repeat-x;\n}\n.progress-bar-success {\n  background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n  background-image:      -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44));\n  background-image:         linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);\n  background-repeat: repeat-x;\n}\n.progress-bar-info {\n  background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n  background-image:      -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5));\n  background-image:         linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);\n  background-repeat: repeat-x;\n}\n.progress-bar-warning {\n  background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n  background-image:      -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f));\n  background-image:         linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);\n  background-repeat: repeat-x;\n}\n.progress-bar-danger {\n  background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n  background-image:      -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c));\n  background-image:         linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);\n  background-repeat: repeat-x;\n}\n.progress-bar-striped {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n}\n.list-group {\n  border-radius: 4px;\n  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);\n          box-shadow: 0 1px 2px rgba(0, 0, 0, .075);\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n  text-shadow: 0 -1px 0 #286090;\n  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n  background-image:      -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a));\n  background-image:         linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);\n  background-repeat: repeat-x;\n  border-color: #2b669a;\n}\n.list-group-item.active .badge,\n.list-group-item.active:hover .badge,\n.list-group-item.active:focus .badge {\n  text-shadow: none;\n}\n.panel {\n  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);\n          box-shadow: 0 1px 2px rgba(0, 0, 0, .05);\n}\n.panel-default > .panel-heading {\n  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n  background-image:      -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));\n  background-image:         linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n  background-repeat: repeat-x;\n}\n.panel-primary > .panel-heading {\n  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n  background-image:      -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));\n  background-image:         linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n  background-repeat: repeat-x;\n}\n.panel-success > .panel-heading {\n  background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n  background-image:      -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6));\n  background-image:         linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);\n  background-repeat: repeat-x;\n}\n.panel-info > .panel-heading {\n  background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n  background-image:      -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3));\n  background-image:         linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);\n  background-repeat: repeat-x;\n}\n.panel-warning > .panel-heading {\n  background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n  background-image:      -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc));\n  background-image:         linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);\n  background-repeat: repeat-x;\n}\n.panel-danger > .panel-heading {\n  background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n  background-image:      -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc));\n  background-image:         linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);\n  background-repeat: repeat-x;\n}\n.well {\n  background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n  background-image:      -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5));\n  background-image:         linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);\n  background-repeat: repeat-x;\n  border-color: #dcdcdc;\n  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);\n          box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);\n}\n/*# sourceMappingURL=bootstrap-theme.css.map */\n"
  },
  {
    "path": "docs/site_libs/bootstrap-3.3.5/css/bootstrap.css",
    "content": "/*!\n * Bootstrap v3.3.5 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\nhtml {\n  font-family: sans-serif;\n  -webkit-text-size-adjust: 100%;\n      -ms-text-size-adjust: 100%;\n}\nbody {\n  margin: 0;\n}\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n  display: block;\n}\naudio,\ncanvas,\nprogress,\nvideo {\n  display: inline-block;\n  vertical-align: baseline;\n}\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n[hidden],\ntemplate {\n  display: none;\n}\na {\n  background-color: transparent;\n}\na:active,\na:hover {\n  outline: 0;\n}\nabbr[title] {\n  border-bottom: 1px dotted;\n}\nb,\nstrong {\n  font-weight: bold;\n}\ndfn {\n  font-style: italic;\n}\nh1 {\n  margin: .67em 0;\n  font-size: 2em;\n}\nmark {\n  color: #000;\n  background: #ff0;\n}\nsmall {\n  font-size: 80%;\n}\nsub,\nsup {\n  position: relative;\n  font-size: 75%;\n  line-height: 0;\n  vertical-align: baseline;\n}\nsup {\n  top: -.5em;\n}\nsub {\n  bottom: -.25em;\n}\nimg {\n  border: 0;\n}\nsvg:not(:root) {\n  overflow: hidden;\n}\nfigure {\n  margin: 1em 40px;\n}\nhr {\n  height: 0;\n  -webkit-box-sizing: content-box;\n     -moz-box-sizing: content-box;\n          box-sizing: content-box;\n}\npre {\n  overflow: auto;\n}\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace, monospace;\n  font-size: 1em;\n}\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  margin: 0;\n  font: inherit;\n  color: inherit;\n}\nbutton {\n  overflow: visible;\n}\nbutton,\nselect {\n  text-transform: none;\n}\nbutton,\nhtml input[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n  -webkit-appearance: button;\n  cursor: pointer;\n}\nbutton[disabled],\nhtml input[disabled] {\n  cursor: default;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n  padding: 0;\n  border: 0;\n}\ninput {\n  line-height: normal;\n}\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n  padding: 0;\n}\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\ninput[type=\"search\"] {\n  -webkit-box-sizing: content-box;\n     -moz-box-sizing: content-box;\n          box-sizing: content-box;\n  -webkit-appearance: textfield;\n}\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\nfieldset {\n  padding: .35em .625em .75em;\n  margin: 0 2px;\n  border: 1px solid #c0c0c0;\n}\nlegend {\n  padding: 0;\n  border: 0;\n}\ntextarea {\n  overflow: auto;\n}\noptgroup {\n  font-weight: bold;\n}\ntable {\n  border-spacing: 0;\n  border-collapse: collapse;\n}\ntd,\nth {\n  padding: 0;\n}\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n@media print {\n  *,\n  *:before,\n  *:after {\n    color: #000 !important;\n    text-shadow: none !important;\n    background: transparent !important;\n    -webkit-box-shadow: none !important;\n            box-shadow: none !important;\n  }\n  a,\n  a:visited {\n    text-decoration: underline;\n  }\n  a[href]:after {\n    content: \" (\" attr(href) \")\";\n  }\n  abbr[title]:after {\n    content: \" (\" attr(title) \")\";\n  }\n  a[href^=\"#\"]:after,\n  a[href^=\"javascript:\"]:after {\n    content: \"\";\n  }\n  pre,\n  blockquote {\n    border: 1px solid #999;\n\n    page-break-inside: avoid;\n  }\n  thead {\n    display: table-header-group;\n  }\n  tr,\n  img {\n    page-break-inside: avoid;\n  }\n  img {\n    max-width: 100% !important;\n  }\n  p,\n  h2,\n  h3 {\n    orphans: 3;\n    widows: 3;\n  }\n  h2,\n  h3 {\n    page-break-after: avoid;\n  }\n  .navbar {\n    display: none;\n  }\n  .btn > .caret,\n  .dropup > .btn > .caret {\n    border-top-color: #000 !important;\n  }\n  .label {\n    border: 1px solid #000;\n  }\n  .table {\n    border-collapse: collapse !important;\n  }\n  .table td,\n  .table th {\n    background-color: #fff !important;\n  }\n  .table-bordered th,\n  .table-bordered td {\n    border: 1px solid #ddd !important;\n  }\n}\n@font-face {\n  font-family: 'Glyphicons Halflings';\n\n  src: url('../fonts/glyphicons-halflings-regular.eot');\n  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');\n}\n.glyphicon {\n  position: relative;\n  top: 1px;\n  display: inline-block;\n  font-family: 'Glyphicons Halflings';\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1;\n\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n.glyphicon-asterisk:before {\n  content: \"\\2a\";\n}\n.glyphicon-plus:before {\n  content: \"\\2b\";\n}\n.glyphicon-euro:before,\n.glyphicon-eur:before {\n  content: \"\\20ac\";\n}\n.glyphicon-minus:before {\n  content: \"\\2212\";\n}\n.glyphicon-cloud:before {\n  content: \"\\2601\";\n}\n.glyphicon-envelope:before {\n  content: \"\\2709\";\n}\n.glyphicon-pencil:before {\n  content: \"\\270f\";\n}\n.glyphicon-glass:before {\n  content: \"\\e001\";\n}\n.glyphicon-music:before {\n  content: \"\\e002\";\n}\n.glyphicon-search:before {\n  content: \"\\e003\";\n}\n.glyphicon-heart:before {\n  content: \"\\e005\";\n}\n.glyphicon-star:before {\n  content: \"\\e006\";\n}\n.glyphicon-star-empty:before {\n  content: \"\\e007\";\n}\n.glyphicon-user:before {\n  content: \"\\e008\";\n}\n.glyphicon-film:before {\n  content: \"\\e009\";\n}\n.glyphicon-th-large:before {\n  content: \"\\e010\";\n}\n.glyphicon-th:before {\n  content: \"\\e011\";\n}\n.glyphicon-th-list:before {\n  content: \"\\e012\";\n}\n.glyphicon-ok:before {\n  content: \"\\e013\";\n}\n.glyphicon-remove:before {\n  content: \"\\e014\";\n}\n.glyphicon-zoom-in:before {\n  content: \"\\e015\";\n}\n.glyphicon-zoom-out:before {\n  content: \"\\e016\";\n}\n.glyphicon-off:before {\n  content: \"\\e017\";\n}\n.glyphicon-signal:before {\n  content: \"\\e018\";\n}\n.glyphicon-cog:before {\n  content: \"\\e019\";\n}\n.glyphicon-trash:before {\n  content: \"\\e020\";\n}\n.glyphicon-home:before {\n  content: \"\\e021\";\n}\n.glyphicon-file:before {\n  content: \"\\e022\";\n}\n.glyphicon-time:before {\n  content: \"\\e023\";\n}\n.glyphicon-road:before {\n  content: \"\\e024\";\n}\n.glyphicon-download-alt:before {\n  content: \"\\e025\";\n}\n.glyphicon-download:before {\n  content: \"\\e026\";\n}\n.glyphicon-upload:before {\n  content: \"\\e027\";\n}\n.glyphicon-inbox:before {\n  content: \"\\e028\";\n}\n.glyphicon-play-circle:before {\n  content: \"\\e029\";\n}\n.glyphicon-repeat:before {\n  content: \"\\e030\";\n}\n.glyphicon-refresh:before {\n  content: \"\\e031\";\n}\n.glyphicon-list-alt:before {\n  content: \"\\e032\";\n}\n.glyphicon-lock:before {\n  content: \"\\e033\";\n}\n.glyphicon-flag:before {\n  content: \"\\e034\";\n}\n.glyphicon-headphones:before {\n  content: \"\\e035\";\n}\n.glyphicon-volume-off:before {\n  content: \"\\e036\";\n}\n.glyphicon-volume-down:before {\n  content: \"\\e037\";\n}\n.glyphicon-volume-up:before {\n  content: \"\\e038\";\n}\n.glyphicon-qrcode:before {\n  content: \"\\e039\";\n}\n.glyphicon-barcode:before {\n  content: \"\\e040\";\n}\n.glyphicon-tag:before {\n  content: \"\\e041\";\n}\n.glyphicon-tags:before {\n  content: \"\\e042\";\n}\n.glyphicon-book:before {\n  content: \"\\e043\";\n}\n.glyphicon-bookmark:before {\n  content: \"\\e044\";\n}\n.glyphicon-print:before {\n  content: \"\\e045\";\n}\n.glyphicon-camera:before {\n  content: \"\\e046\";\n}\n.glyphicon-font:before {\n  content: \"\\e047\";\n}\n.glyphicon-bold:before {\n  content: \"\\e048\";\n}\n.glyphicon-italic:before {\n  content: \"\\e049\";\n}\n.glyphicon-text-height:before {\n  content: \"\\e050\";\n}\n.glyphicon-text-width:before {\n  content: \"\\e051\";\n}\n.glyphicon-align-left:before {\n  content: \"\\e052\";\n}\n.glyphicon-align-center:before {\n  content: \"\\e053\";\n}\n.glyphicon-align-right:before {\n  content: \"\\e054\";\n}\n.glyphicon-align-justify:before {\n  content: \"\\e055\";\n}\n.glyphicon-list:before {\n  content: \"\\e056\";\n}\n.glyphicon-indent-left:before {\n  content: \"\\e057\";\n}\n.glyphicon-indent-right:before {\n  content: \"\\e058\";\n}\n.glyphicon-facetime-video:before {\n  content: \"\\e059\";\n}\n.glyphicon-picture:before {\n  content: \"\\e060\";\n}\n.glyphicon-map-marker:before {\n  content: \"\\e062\";\n}\n.glyphicon-adjust:before {\n  content: \"\\e063\";\n}\n.glyphicon-tint:before {\n  content: \"\\e064\";\n}\n.glyphicon-edit:before {\n  content: \"\\e065\";\n}\n.glyphicon-share:before {\n  content: \"\\e066\";\n}\n.glyphicon-check:before {\n  content: \"\\e067\";\n}\n.glyphicon-move:before {\n  content: \"\\e068\";\n}\n.glyphicon-step-backward:before {\n  content: \"\\e069\";\n}\n.glyphicon-fast-backward:before {\n  content: \"\\e070\";\n}\n.glyphicon-backward:before {\n  content: \"\\e071\";\n}\n.glyphicon-play:before {\n  content: \"\\e072\";\n}\n.glyphicon-pause:before {\n  content: \"\\e073\";\n}\n.glyphicon-stop:before {\n  content: \"\\e074\";\n}\n.glyphicon-forward:before {\n  content: \"\\e075\";\n}\n.glyphicon-fast-forward:before {\n  content: \"\\e076\";\n}\n.glyphicon-step-forward:before {\n  content: \"\\e077\";\n}\n.glyphicon-eject:before {\n  content: \"\\e078\";\n}\n.glyphicon-chevron-left:before {\n  content: \"\\e079\";\n}\n.glyphicon-chevron-right:before {\n  content: \"\\e080\";\n}\n.glyphicon-plus-sign:before {\n  content: \"\\e081\";\n}\n.glyphicon-minus-sign:before {\n  content: \"\\e082\";\n}\n.glyphicon-remove-sign:before {\n  content: \"\\e083\";\n}\n.glyphicon-ok-sign:before {\n  content: \"\\e084\";\n}\n.glyphicon-question-sign:before {\n  content: \"\\e085\";\n}\n.glyphicon-info-sign:before {\n  content: \"\\e086\";\n}\n.glyphicon-screenshot:before {\n  content: \"\\e087\";\n}\n.glyphicon-remove-circle:before {\n  content: \"\\e088\";\n}\n.glyphicon-ok-circle:before {\n  content: \"\\e089\";\n}\n.glyphicon-ban-circle:before {\n  content: \"\\e090\";\n}\n.glyphicon-arrow-left:before {\n  content: \"\\e091\";\n}\n.glyphicon-arrow-right:before {\n  content: \"\\e092\";\n}\n.glyphicon-arrow-up:before {\n  content: \"\\e093\";\n}\n.glyphicon-arrow-down:before {\n  content: \"\\e094\";\n}\n.glyphicon-share-alt:before {\n  content: \"\\e095\";\n}\n.glyphicon-resize-full:before {\n  content: \"\\e096\";\n}\n.glyphicon-resize-small:before {\n  content: \"\\e097\";\n}\n.glyphicon-exclamation-sign:before {\n  content: \"\\e101\";\n}\n.glyphicon-gift:before {\n  content: \"\\e102\";\n}\n.glyphicon-leaf:before {\n  content: \"\\e103\";\n}\n.glyphicon-fire:before {\n  content: \"\\e104\";\n}\n.glyphicon-eye-open:before {\n  content: \"\\e105\";\n}\n.glyphicon-eye-close:before {\n  content: \"\\e106\";\n}\n.glyphicon-warning-sign:before {\n  content: \"\\e107\";\n}\n.glyphicon-plane:before {\n  content: \"\\e108\";\n}\n.glyphicon-calendar:before {\n  content: \"\\e109\";\n}\n.glyphicon-random:before {\n  content: \"\\e110\";\n}\n.glyphicon-comment:before {\n  content: \"\\e111\";\n}\n.glyphicon-magnet:before {\n  content: \"\\e112\";\n}\n.glyphicon-chevron-up:before {\n  content: \"\\e113\";\n}\n.glyphicon-chevron-down:before {\n  content: \"\\e114\";\n}\n.glyphicon-retweet:before {\n  content: \"\\e115\";\n}\n.glyphicon-shopping-cart:before {\n  content: \"\\e116\";\n}\n.glyphicon-folder-close:before {\n  content: \"\\e117\";\n}\n.glyphicon-folder-open:before {\n  content: \"\\e118\";\n}\n.glyphicon-resize-vertical:before {\n  content: \"\\e119\";\n}\n.glyphicon-resize-horizontal:before {\n  content: \"\\e120\";\n}\n.glyphicon-hdd:before {\n  content: \"\\e121\";\n}\n.glyphicon-bullhorn:before {\n  content: \"\\e122\";\n}\n.glyphicon-bell:before {\n  content: \"\\e123\";\n}\n.glyphicon-certificate:before {\n  content: \"\\e124\";\n}\n.glyphicon-thumbs-up:before {\n  content: \"\\e125\";\n}\n.glyphicon-thumbs-down:before {\n  content: \"\\e126\";\n}\n.glyphicon-hand-right:before {\n  content: \"\\e127\";\n}\n.glyphicon-hand-left:before {\n  content: \"\\e128\";\n}\n.glyphicon-hand-up:before {\n  content: \"\\e129\";\n}\n.glyphicon-hand-down:before {\n  content: \"\\e130\";\n}\n.glyphicon-circle-arrow-right:before {\n  content: \"\\e131\";\n}\n.glyphicon-circle-arrow-left:before {\n  content: \"\\e132\";\n}\n.glyphicon-circle-arrow-up:before {\n  content: \"\\e133\";\n}\n.glyphicon-circle-arrow-down:before {\n  content: \"\\e134\";\n}\n.glyphicon-globe:before {\n  content: \"\\e135\";\n}\n.glyphicon-wrench:before {\n  content: \"\\e136\";\n}\n.glyphicon-tasks:before {\n  content: \"\\e137\";\n}\n.glyphicon-filter:before {\n  content: \"\\e138\";\n}\n.glyphicon-briefcase:before {\n  content: \"\\e139\";\n}\n.glyphicon-fullscreen:before {\n  content: \"\\e140\";\n}\n.glyphicon-dashboard:before {\n  content: \"\\e141\";\n}\n.glyphicon-paperclip:before {\n  content: \"\\e142\";\n}\n.glyphicon-heart-empty:before {\n  content: \"\\e143\";\n}\n.glyphicon-link:before {\n  content: \"\\e144\";\n}\n.glyphicon-phone:before {\n  content: \"\\e145\";\n}\n.glyphicon-pushpin:before {\n  content: \"\\e146\";\n}\n.glyphicon-usd:before {\n  content: \"\\e148\";\n}\n.glyphicon-gbp:before {\n  content: \"\\e149\";\n}\n.glyphicon-sort:before {\n  content: \"\\e150\";\n}\n.glyphicon-sort-by-alphabet:before {\n  content: \"\\e151\";\n}\n.glyphicon-sort-by-alphabet-alt:before {\n  content: \"\\e152\";\n}\n.glyphicon-sort-by-order:before {\n  content: \"\\e153\";\n}\n.glyphicon-sort-by-order-alt:before {\n  content: \"\\e154\";\n}\n.glyphicon-sort-by-attributes:before {\n  content: \"\\e155\";\n}\n.glyphicon-sort-by-attributes-alt:before {\n  content: \"\\e156\";\n}\n.glyphicon-unchecked:before {\n  content: \"\\e157\";\n}\n.glyphicon-expand:before {\n  content: \"\\e158\";\n}\n.glyphicon-collapse-down:before {\n  content: \"\\e159\";\n}\n.glyphicon-collapse-up:before {\n  content: \"\\e160\";\n}\n.glyphicon-log-in:before {\n  content: \"\\e161\";\n}\n.glyphicon-flash:before {\n  content: \"\\e162\";\n}\n.glyphicon-log-out:before {\n  content: \"\\e163\";\n}\n.glyphicon-new-window:before {\n  content: \"\\e164\";\n}\n.glyphicon-record:before {\n  content: \"\\e165\";\n}\n.glyphicon-save:before {\n  content: \"\\e166\";\n}\n.glyphicon-open:before {\n  content: \"\\e167\";\n}\n.glyphicon-saved:before {\n  content: \"\\e168\";\n}\n.glyphicon-import:before {\n  content: \"\\e169\";\n}\n.glyphicon-export:before {\n  content: \"\\e170\";\n}\n.glyphicon-send:before {\n  content: \"\\e171\";\n}\n.glyphicon-floppy-disk:before {\n  content: \"\\e172\";\n}\n.glyphicon-floppy-saved:before {\n  content: \"\\e173\";\n}\n.glyphicon-floppy-remove:before {\n  content: \"\\e174\";\n}\n.glyphicon-floppy-save:before {\n  content: \"\\e175\";\n}\n.glyphicon-floppy-open:before {\n  content: \"\\e176\";\n}\n.glyphicon-credit-card:before {\n  content: \"\\e177\";\n}\n.glyphicon-transfer:before {\n  content: \"\\e178\";\n}\n.glyphicon-cutlery:before {\n  content: \"\\e179\";\n}\n.glyphicon-header:before {\n  content: \"\\e180\";\n}\n.glyphicon-compressed:before {\n  content: \"\\e181\";\n}\n.glyphicon-earphone:before {\n  content: \"\\e182\";\n}\n.glyphicon-phone-alt:before {\n  content: \"\\e183\";\n}\n.glyphicon-tower:before {\n  content: \"\\e184\";\n}\n.glyphicon-stats:before {\n  content: \"\\e185\";\n}\n.glyphicon-sd-video:before {\n  content: \"\\e186\";\n}\n.glyphicon-hd-video:before {\n  content: \"\\e187\";\n}\n.glyphicon-subtitles:before {\n  content: \"\\e188\";\n}\n.glyphicon-sound-stereo:before {\n  content: \"\\e189\";\n}\n.glyphicon-sound-dolby:before {\n  content: \"\\e190\";\n}\n.glyphicon-sound-5-1:before {\n  content: \"\\e191\";\n}\n.glyphicon-sound-6-1:before {\n  content: \"\\e192\";\n}\n.glyphicon-sound-7-1:before {\n  content: \"\\e193\";\n}\n.glyphicon-copyright-mark:before {\n  content: \"\\e194\";\n}\n.glyphicon-registration-mark:before {\n  content: \"\\e195\";\n}\n.glyphicon-cloud-download:before {\n  content: \"\\e197\";\n}\n.glyphicon-cloud-upload:before {\n  content: \"\\e198\";\n}\n.glyphicon-tree-conifer:before {\n  content: \"\\e199\";\n}\n.glyphicon-tree-deciduous:before {\n  content: \"\\e200\";\n}\n.glyphicon-cd:before {\n  content: \"\\e201\";\n}\n.glyphicon-save-file:before {\n  content: \"\\e202\";\n}\n.glyphicon-open-file:before {\n  content: \"\\e203\";\n}\n.glyphicon-level-up:before {\n  content: \"\\e204\";\n}\n.glyphicon-copy:before {\n  content: \"\\e205\";\n}\n.glyphicon-paste:before {\n  content: \"\\e206\";\n}\n.glyphicon-alert:before {\n  content: \"\\e209\";\n}\n.glyphicon-equalizer:before {\n  content: \"\\e210\";\n}\n.glyphicon-king:before {\n  content: \"\\e211\";\n}\n.glyphicon-queen:before {\n  content: \"\\e212\";\n}\n.glyphicon-pawn:before {\n  content: \"\\e213\";\n}\n.glyphicon-bishop:before {\n  content: \"\\e214\";\n}\n.glyphicon-knight:before {\n  content: \"\\e215\";\n}\n.glyphicon-baby-formula:before {\n  content: \"\\e216\";\n}\n.glyphicon-tent:before {\n  content: \"\\26fa\";\n}\n.glyphicon-blackboard:before {\n  content: \"\\e218\";\n}\n.glyphicon-bed:before {\n  content: \"\\e219\";\n}\n.glyphicon-apple:before {\n  content: \"\\f8ff\";\n}\n.glyphicon-erase:before {\n  content: \"\\e221\";\n}\n.glyphicon-hourglass:before {\n  content: \"\\231b\";\n}\n.glyphicon-lamp:before {\n  content: \"\\e223\";\n}\n.glyphicon-duplicate:before {\n  content: \"\\e224\";\n}\n.glyphicon-piggy-bank:before {\n  content: \"\\e225\";\n}\n.glyphicon-scissors:before {\n  content: \"\\e226\";\n}\n.glyphicon-bitcoin:before {\n  content: \"\\e227\";\n}\n.glyphicon-btc:before {\n  content: \"\\e227\";\n}\n.glyphicon-xbt:before {\n  content: \"\\e227\";\n}\n.glyphicon-yen:before {\n  content: \"\\00a5\";\n}\n.glyphicon-jpy:before {\n  content: \"\\00a5\";\n}\n.glyphicon-ruble:before {\n  content: \"\\20bd\";\n}\n.glyphicon-rub:before {\n  content: \"\\20bd\";\n}\n.glyphicon-scale:before {\n  content: \"\\e230\";\n}\n.glyphicon-ice-lolly:before {\n  content: \"\\e231\";\n}\n.glyphicon-ice-lolly-tasted:before {\n  content: \"\\e232\";\n}\n.glyphicon-education:before {\n  content: \"\\e233\";\n}\n.glyphicon-option-horizontal:before {\n  content: \"\\e234\";\n}\n.glyphicon-option-vertical:before {\n  content: \"\\e235\";\n}\n.glyphicon-menu-hamburger:before {\n  content: \"\\e236\";\n}\n.glyphicon-modal-window:before {\n  content: \"\\e237\";\n}\n.glyphicon-oil:before {\n  content: \"\\e238\";\n}\n.glyphicon-grain:before {\n  content: \"\\e239\";\n}\n.glyphicon-sunglasses:before {\n  content: \"\\e240\";\n}\n.glyphicon-text-size:before {\n  content: \"\\e241\";\n}\n.glyphicon-text-color:before {\n  content: \"\\e242\";\n}\n.glyphicon-text-background:before {\n  content: \"\\e243\";\n}\n.glyphicon-object-align-top:before {\n  content: \"\\e244\";\n}\n.glyphicon-object-align-bottom:before {\n  content: \"\\e245\";\n}\n.glyphicon-object-align-horizontal:before {\n  content: \"\\e246\";\n}\n.glyphicon-object-align-left:before {\n  content: \"\\e247\";\n}\n.glyphicon-object-align-vertical:before {\n  content: \"\\e248\";\n}\n.glyphicon-object-align-right:before {\n  content: \"\\e249\";\n}\n.glyphicon-triangle-right:before {\n  content: \"\\e250\";\n}\n.glyphicon-triangle-left:before {\n  content: \"\\e251\";\n}\n.glyphicon-triangle-bottom:before {\n  content: \"\\e252\";\n}\n.glyphicon-triangle-top:before {\n  content: \"\\e253\";\n}\n.glyphicon-console:before {\n  content: \"\\e254\";\n}\n.glyphicon-superscript:before {\n  content: \"\\e255\";\n}\n.glyphicon-subscript:before {\n  content: \"\\e256\";\n}\n.glyphicon-menu-left:before {\n  content: \"\\e257\";\n}\n.glyphicon-menu-right:before {\n  content: \"\\e258\";\n}\n.glyphicon-menu-down:before {\n  content: \"\\e259\";\n}\n.glyphicon-menu-up:before {\n  content: \"\\e260\";\n}\n* {\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n}\n*:before,\n*:after {\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n}\nhtml {\n  font-size: 10px;\n\n  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\nbody {\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-size: 14px;\n  line-height: 1.42857143;\n  color: #333;\n  background-color: #fff;\n}\ninput,\nbutton,\nselect,\ntextarea {\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n}\na {\n  color: #337ab7;\n  text-decoration: none;\n}\na:hover,\na:focus {\n  color: #23527c;\n  text-decoration: underline;\n}\na:focus {\n  outline: thin dotted;\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\nfigure {\n  margin: 0;\n}\nimg {\n  vertical-align: middle;\n}\n.img-responsive,\n.thumbnail > img,\n.thumbnail a > img,\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n  display: block;\n  max-width: 100%;\n  height: auto;\n}\n.img-rounded {\n  border-radius: 6px;\n}\n.img-thumbnail {\n  display: inline-block;\n  max-width: 100%;\n  height: auto;\n  padding: 4px;\n  line-height: 1.42857143;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n  -webkit-transition: all .2s ease-in-out;\n       -o-transition: all .2s ease-in-out;\n          transition: all .2s ease-in-out;\n}\n.img-circle {\n  border-radius: 50%;\n}\nhr {\n  margin-top: 20px;\n  margin-bottom: 20px;\n  border: 0;\n  border-top: 1px solid #eee;\n}\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n  position: static;\n  width: auto;\n  height: auto;\n  margin: 0;\n  overflow: visible;\n  clip: auto;\n}\n[role=\"button\"] {\n  cursor: pointer;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\n.h1,\n.h2,\n.h3,\n.h4,\n.h5,\n.h6 {\n  font-family: inherit;\n  font-weight: 500;\n  line-height: 1.1;\n  color: inherit;\n}\nh1 small,\nh2 small,\nh3 small,\nh4 small,\nh5 small,\nh6 small,\n.h1 small,\n.h2 small,\n.h3 small,\n.h4 small,\n.h5 small,\n.h6 small,\nh1 .small,\nh2 .small,\nh3 .small,\nh4 .small,\nh5 .small,\nh6 .small,\n.h1 .small,\n.h2 .small,\n.h3 .small,\n.h4 .small,\n.h5 .small,\n.h6 .small {\n  font-weight: normal;\n  line-height: 1;\n  color: #777;\n}\nh1,\n.h1,\nh2,\n.h2,\nh3,\n.h3 {\n  margin-top: 20px;\n  margin-bottom: 10px;\n}\nh1 small,\n.h1 small,\nh2 small,\n.h2 small,\nh3 small,\n.h3 small,\nh1 .small,\n.h1 .small,\nh2 .small,\n.h2 .small,\nh3 .small,\n.h3 .small {\n  font-size: 65%;\n}\nh4,\n.h4,\nh5,\n.h5,\nh6,\n.h6 {\n  margin-top: 10px;\n  margin-bottom: 10px;\n}\nh4 small,\n.h4 small,\nh5 small,\n.h5 small,\nh6 small,\n.h6 small,\nh4 .small,\n.h4 .small,\nh5 .small,\n.h5 .small,\nh6 .small,\n.h6 .small {\n  font-size: 75%;\n}\nh1,\n.h1 {\n  font-size: 36px;\n}\nh2,\n.h2 {\n  font-size: 30px;\n}\nh3,\n.h3 {\n  font-size: 24px;\n}\nh4,\n.h4 {\n  font-size: 18px;\n}\nh5,\n.h5 {\n  font-size: 14px;\n}\nh6,\n.h6 {\n  font-size: 12px;\n}\np {\n  margin: 0 0 10px;\n}\n.lead {\n  margin-bottom: 20px;\n  font-size: 16px;\n  font-weight: 300;\n  line-height: 1.4;\n}\n@media (min-width: 768px) {\n  .lead {\n    font-size: 21px;\n  }\n}\nsmall,\n.small {\n  font-size: 85%;\n}\nmark,\n.mark {\n  padding: .2em;\n  background-color: #fcf8e3;\n}\n.text-left {\n  text-align: left;\n}\n.text-right {\n  text-align: right;\n}\n.text-center {\n  text-align: center;\n}\n.text-justify {\n  text-align: justify;\n}\n.text-nowrap {\n  white-space: nowrap;\n}\n.text-lowercase {\n  text-transform: lowercase;\n}\n.text-uppercase {\n  text-transform: uppercase;\n}\n.text-capitalize {\n  text-transform: capitalize;\n}\n.text-muted {\n  color: #777;\n}\n.text-primary {\n  color: #337ab7;\n}\na.text-primary:hover,\na.text-primary:focus {\n  color: #286090;\n}\n.text-success {\n  color: #3c763d;\n}\na.text-success:hover,\na.text-success:focus {\n  color: #2b542c;\n}\n.text-info {\n  color: #31708f;\n}\na.text-info:hover,\na.text-info:focus {\n  color: #245269;\n}\n.text-warning {\n  color: #8a6d3b;\n}\na.text-warning:hover,\na.text-warning:focus {\n  color: #66512c;\n}\n.text-danger {\n  color: #a94442;\n}\na.text-danger:hover,\na.text-danger:focus {\n  color: #843534;\n}\n.bg-primary {\n  color: #fff;\n  background-color: #337ab7;\n}\na.bg-primary:hover,\na.bg-primary:focus {\n  background-color: #286090;\n}\n.bg-success {\n  background-color: #dff0d8;\n}\na.bg-success:hover,\na.bg-success:focus {\n  background-color: #c1e2b3;\n}\n.bg-info {\n  background-color: #d9edf7;\n}\na.bg-info:hover,\na.bg-info:focus {\n  background-color: #afd9ee;\n}\n.bg-warning {\n  background-color: #fcf8e3;\n}\na.bg-warning:hover,\na.bg-warning:focus {\n  background-color: #f7ecb5;\n}\n.bg-danger {\n  background-color: #f2dede;\n}\na.bg-danger:hover,\na.bg-danger:focus {\n  background-color: #e4b9b9;\n}\n.page-header {\n  padding-bottom: 9px;\n  margin: 40px 0 20px;\n  border-bottom: 1px solid #eee;\n}\nul,\nol {\n  margin-top: 0;\n  margin-bottom: 10px;\n}\nul ul,\nol ul,\nul ol,\nol ol {\n  margin-bottom: 0;\n}\n.list-unstyled {\n  padding-left: 0;\n  list-style: none;\n}\n.list-inline {\n  padding-left: 0;\n  margin-left: -5px;\n  list-style: none;\n}\n.list-inline > li {\n  display: inline-block;\n  padding-right: 5px;\n  padding-left: 5px;\n}\ndl {\n  margin-top: 0;\n  margin-bottom: 20px;\n}\ndt,\ndd {\n  line-height: 1.42857143;\n}\ndt {\n  font-weight: bold;\n}\ndd {\n  margin-left: 0;\n}\n@media (min-width: 768px) {\n  .dl-horizontal dt {\n    float: left;\n    width: 160px;\n    overflow: hidden;\n    clear: left;\n    text-align: right;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n  }\n  .dl-horizontal dd {\n    margin-left: 180px;\n  }\n}\nabbr[title],\nabbr[data-original-title] {\n  cursor: help;\n  border-bottom: 1px dotted #777;\n}\n.initialism {\n  font-size: 90%;\n  text-transform: uppercase;\n}\nblockquote {\n  padding: 10px 20px;\n  margin: 0 0 20px;\n  font-size: 17.5px;\n  border-left: 5px solid #eee;\n}\nblockquote p:last-child,\nblockquote ul:last-child,\nblockquote ol:last-child {\n  margin-bottom: 0;\n}\nblockquote footer,\nblockquote small,\nblockquote .small {\n  display: block;\n  font-size: 80%;\n  line-height: 1.42857143;\n  color: #777;\n}\nblockquote footer:before,\nblockquote small:before,\nblockquote .small:before {\n  content: '\\2014 \\00A0';\n}\n.blockquote-reverse,\nblockquote.pull-right {\n  padding-right: 15px;\n  padding-left: 0;\n  text-align: right;\n  border-right: 5px solid #eee;\n  border-left: 0;\n}\n.blockquote-reverse footer:before,\nblockquote.pull-right footer:before,\n.blockquote-reverse small:before,\nblockquote.pull-right small:before,\n.blockquote-reverse .small:before,\nblockquote.pull-right .small:before {\n  content: '';\n}\n.blockquote-reverse footer:after,\nblockquote.pull-right footer:after,\n.blockquote-reverse small:after,\nblockquote.pull-right small:after,\n.blockquote-reverse .small:after,\nblockquote.pull-right .small:after {\n  content: '\\00A0 \\2014';\n}\naddress {\n  margin-bottom: 20px;\n  font-style: normal;\n  line-height: 1.42857143;\n}\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace;\n}\ncode {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: #c7254e;\n  background-color: #f9f2f4;\n  border-radius: 4px;\n}\nkbd {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: #fff;\n  background-color: #333;\n  border-radius: 3px;\n  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);\n          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);\n}\nkbd kbd {\n  padding: 0;\n  font-size: 100%;\n  font-weight: bold;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\npre {\n  display: block;\n  padding: 9.5px;\n  margin: 0 0 10px;\n  font-size: 13px;\n  line-height: 1.42857143;\n  color: #333;\n  word-break: break-all;\n  word-wrap: break-word;\n  background-color: #f5f5f5;\n  border: 1px solid #ccc;\n  border-radius: 4px;\n}\npre code {\n  padding: 0;\n  font-size: inherit;\n  color: inherit;\n  white-space: pre-wrap;\n  background-color: transparent;\n  border-radius: 0;\n}\n.pre-scrollable {\n  max-height: 340px;\n  overflow-y: scroll;\n}\n.container {\n  padding-right: 15px;\n  padding-left: 15px;\n  margin-right: auto;\n  margin-left: auto;\n}\n@media (min-width: 768px) {\n  .container {\n    width: 750px;\n  }\n}\n@media (min-width: 992px) {\n  .container {\n    width: 970px;\n  }\n}\n@media (min-width: 1200px) {\n  .container {\n    width: 1170px;\n  }\n}\n.container-fluid {\n  padding-right: 15px;\n  padding-left: 15px;\n  margin-right: auto;\n  margin-left: auto;\n}\n.row {\n  margin-right: -15px;\n  margin-left: -15px;\n}\n.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {\n  position: relative;\n  min-height: 1px;\n  padding-right: 15px;\n  padding-left: 15px;\n}\n.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {\n  float: left;\n}\n.col-xs-12 {\n  width: 100%;\n}\n.col-xs-11 {\n  width: 91.66666667%;\n}\n.col-xs-10 {\n  width: 83.33333333%;\n}\n.col-xs-9 {\n  width: 75%;\n}\n.col-xs-8 {\n  width: 66.66666667%;\n}\n.col-xs-7 {\n  width: 58.33333333%;\n}\n.col-xs-6 {\n  width: 50%;\n}\n.col-xs-5 {\n  width: 41.66666667%;\n}\n.col-xs-4 {\n  width: 33.33333333%;\n}\n.col-xs-3 {\n  width: 25%;\n}\n.col-xs-2 {\n  width: 16.66666667%;\n}\n.col-xs-1 {\n  width: 8.33333333%;\n}\n.col-xs-pull-12 {\n  right: 100%;\n}\n.col-xs-pull-11 {\n  right: 91.66666667%;\n}\n.col-xs-pull-10 {\n  right: 83.33333333%;\n}\n.col-xs-pull-9 {\n  right: 75%;\n}\n.col-xs-pull-8 {\n  right: 66.66666667%;\n}\n.col-xs-pull-7 {\n  right: 58.33333333%;\n}\n.col-xs-pull-6 {\n  right: 50%;\n}\n.col-xs-pull-5 {\n  right: 41.66666667%;\n}\n.col-xs-pull-4 {\n  right: 33.33333333%;\n}\n.col-xs-pull-3 {\n  right: 25%;\n}\n.col-xs-pull-2 {\n  right: 16.66666667%;\n}\n.col-xs-pull-1 {\n  right: 8.33333333%;\n}\n.col-xs-pull-0 {\n  right: auto;\n}\n.col-xs-push-12 {\n  left: 100%;\n}\n.col-xs-push-11 {\n  left: 91.66666667%;\n}\n.col-xs-push-10 {\n  left: 83.33333333%;\n}\n.col-xs-push-9 {\n  left: 75%;\n}\n.col-xs-push-8 {\n  left: 66.66666667%;\n}\n.col-xs-push-7 {\n  left: 58.33333333%;\n}\n.col-xs-push-6 {\n  left: 50%;\n}\n.col-xs-push-5 {\n  left: 41.66666667%;\n}\n.col-xs-push-4 {\n  left: 33.33333333%;\n}\n.col-xs-push-3 {\n  left: 25%;\n}\n.col-xs-push-2 {\n  left: 16.66666667%;\n}\n.col-xs-push-1 {\n  left: 8.33333333%;\n}\n.col-xs-push-0 {\n  left: auto;\n}\n.col-xs-offset-12 {\n  margin-left: 100%;\n}\n.col-xs-offset-11 {\n  margin-left: 91.66666667%;\n}\n.col-xs-offset-10 {\n  margin-left: 83.33333333%;\n}\n.col-xs-offset-9 {\n  margin-left: 75%;\n}\n.col-xs-offset-8 {\n  margin-left: 66.66666667%;\n}\n.col-xs-offset-7 {\n  margin-left: 58.33333333%;\n}\n.col-xs-offset-6 {\n  margin-left: 50%;\n}\n.col-xs-offset-5 {\n  margin-left: 41.66666667%;\n}\n.col-xs-offset-4 {\n  margin-left: 33.33333333%;\n}\n.col-xs-offset-3 {\n  margin-left: 25%;\n}\n.col-xs-offset-2 {\n  margin-left: 16.66666667%;\n}\n.col-xs-offset-1 {\n  margin-left: 8.33333333%;\n}\n.col-xs-offset-0 {\n  margin-left: 0;\n}\n@media (min-width: 768px) {\n  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {\n    float: left;\n  }\n  .col-sm-12 {\n    width: 100%;\n  }\n  .col-sm-11 {\n    width: 91.66666667%;\n  }\n  .col-sm-10 {\n    width: 83.33333333%;\n  }\n  .col-sm-9 {\n    width: 75%;\n  }\n  .col-sm-8 {\n    width: 66.66666667%;\n  }\n  .col-sm-7 {\n    width: 58.33333333%;\n  }\n  .col-sm-6 {\n    width: 50%;\n  }\n  .col-sm-5 {\n    width: 41.66666667%;\n  }\n  .col-sm-4 {\n    width: 33.33333333%;\n  }\n  .col-sm-3 {\n    width: 25%;\n  }\n  .col-sm-2 {\n    width: 16.66666667%;\n  }\n  .col-sm-1 {\n    width: 8.33333333%;\n  }\n  .col-sm-pull-12 {\n    right: 100%;\n  }\n  .col-sm-pull-11 {\n    right: 91.66666667%;\n  }\n  .col-sm-pull-10 {\n    right: 83.33333333%;\n  }\n  .col-sm-pull-9 {\n    right: 75%;\n  }\n  .col-sm-pull-8 {\n    right: 66.66666667%;\n  }\n  .col-sm-pull-7 {\n    right: 58.33333333%;\n  }\n  .col-sm-pull-6 {\n    right: 50%;\n  }\n  .col-sm-pull-5 {\n    right: 41.66666667%;\n  }\n  .col-sm-pull-4 {\n    right: 33.33333333%;\n  }\n  .col-sm-pull-3 {\n    right: 25%;\n  }\n  .col-sm-pull-2 {\n    right: 16.66666667%;\n  }\n  .col-sm-pull-1 {\n    right: 8.33333333%;\n  }\n  .col-sm-pull-0 {\n    right: auto;\n  }\n  .col-sm-push-12 {\n    left: 100%;\n  }\n  .col-sm-push-11 {\n    left: 91.66666667%;\n  }\n  .col-sm-push-10 {\n    left: 83.33333333%;\n  }\n  .col-sm-push-9 {\n    left: 75%;\n  }\n  .col-sm-push-8 {\n    left: 66.66666667%;\n  }\n  .col-sm-push-7 {\n    left: 58.33333333%;\n  }\n  .col-sm-push-6 {\n    left: 50%;\n  }\n  .col-sm-push-5 {\n    left: 41.66666667%;\n  }\n  .col-sm-push-4 {\n    left: 33.33333333%;\n  }\n  .col-sm-push-3 {\n    left: 25%;\n  }\n  .col-sm-push-2 {\n    left: 16.66666667%;\n  }\n  .col-sm-push-1 {\n    left: 8.33333333%;\n  }\n  .col-sm-push-0 {\n    left: auto;\n  }\n  .col-sm-offset-12 {\n    margin-left: 100%;\n  }\n  .col-sm-offset-11 {\n    margin-left: 91.66666667%;\n  }\n  .col-sm-offset-10 {\n    margin-left: 83.33333333%;\n  }\n  .col-sm-offset-9 {\n    margin-left: 75%;\n  }\n  .col-sm-offset-8 {\n    margin-left: 66.66666667%;\n  }\n  .col-sm-offset-7 {\n    margin-left: 58.33333333%;\n  }\n  .col-sm-offset-6 {\n    margin-left: 50%;\n  }\n  .col-sm-offset-5 {\n    margin-left: 41.66666667%;\n  }\n  .col-sm-offset-4 {\n    margin-left: 33.33333333%;\n  }\n  .col-sm-offset-3 {\n    margin-left: 25%;\n  }\n  .col-sm-offset-2 {\n    margin-left: 16.66666667%;\n  }\n  .col-sm-offset-1 {\n    margin-left: 8.33333333%;\n  }\n  .col-sm-offset-0 {\n    margin-left: 0;\n  }\n}\n@media (min-width: 992px) {\n  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {\n    float: left;\n  }\n  .col-md-12 {\n    width: 100%;\n  }\n  .col-md-11 {\n    width: 91.66666667%;\n  }\n  .col-md-10 {\n    width: 83.33333333%;\n  }\n  .col-md-9 {\n    width: 75%;\n  }\n  .col-md-8 {\n    width: 66.66666667%;\n  }\n  .col-md-7 {\n    width: 58.33333333%;\n  }\n  .col-md-6 {\n    width: 50%;\n  }\n  .col-md-5 {\n    width: 41.66666667%;\n  }\n  .col-md-4 {\n    width: 33.33333333%;\n  }\n  .col-md-3 {\n    width: 25%;\n  }\n  .col-md-2 {\n    width: 16.66666667%;\n  }\n  .col-md-1 {\n    width: 8.33333333%;\n  }\n  .col-md-pull-12 {\n    right: 100%;\n  }\n  .col-md-pull-11 {\n    right: 91.66666667%;\n  }\n  .col-md-pull-10 {\n    right: 83.33333333%;\n  }\n  .col-md-pull-9 {\n    right: 75%;\n  }\n  .col-md-pull-8 {\n    right: 66.66666667%;\n  }\n  .col-md-pull-7 {\n    right: 58.33333333%;\n  }\n  .col-md-pull-6 {\n    right: 50%;\n  }\n  .col-md-pull-5 {\n    right: 41.66666667%;\n  }\n  .col-md-pull-4 {\n    right: 33.33333333%;\n  }\n  .col-md-pull-3 {\n    right: 25%;\n  }\n  .col-md-pull-2 {\n    right: 16.66666667%;\n  }\n  .col-md-pull-1 {\n    right: 8.33333333%;\n  }\n  .col-md-pull-0 {\n    right: auto;\n  }\n  .col-md-push-12 {\n    left: 100%;\n  }\n  .col-md-push-11 {\n    left: 91.66666667%;\n  }\n  .col-md-push-10 {\n    left: 83.33333333%;\n  }\n  .col-md-push-9 {\n    left: 75%;\n  }\n  .col-md-push-8 {\n    left: 66.66666667%;\n  }\n  .col-md-push-7 {\n    left: 58.33333333%;\n  }\n  .col-md-push-6 {\n    left: 50%;\n  }\n  .col-md-push-5 {\n    left: 41.66666667%;\n  }\n  .col-md-push-4 {\n    left: 33.33333333%;\n  }\n  .col-md-push-3 {\n    left: 25%;\n  }\n  .col-md-push-2 {\n    left: 16.66666667%;\n  }\n  .col-md-push-1 {\n    left: 8.33333333%;\n  }\n  .col-md-push-0 {\n    left: auto;\n  }\n  .col-md-offset-12 {\n    margin-left: 100%;\n  }\n  .col-md-offset-11 {\n    margin-left: 91.66666667%;\n  }\n  .col-md-offset-10 {\n    margin-left: 83.33333333%;\n  }\n  .col-md-offset-9 {\n    margin-left: 75%;\n  }\n  .col-md-offset-8 {\n    margin-left: 66.66666667%;\n  }\n  .col-md-offset-7 {\n    margin-left: 58.33333333%;\n  }\n  .col-md-offset-6 {\n    margin-left: 50%;\n  }\n  .col-md-offset-5 {\n    margin-left: 41.66666667%;\n  }\n  .col-md-offset-4 {\n    margin-left: 33.33333333%;\n  }\n  .col-md-offset-3 {\n    margin-left: 25%;\n  }\n  .col-md-offset-2 {\n    margin-left: 16.66666667%;\n  }\n  .col-md-offset-1 {\n    margin-left: 8.33333333%;\n  }\n  .col-md-offset-0 {\n    margin-left: 0;\n  }\n}\n@media (min-width: 1200px) {\n  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {\n    float: left;\n  }\n  .col-lg-12 {\n    width: 100%;\n  }\n  .col-lg-11 {\n    width: 91.66666667%;\n  }\n  .col-lg-10 {\n    width: 83.33333333%;\n  }\n  .col-lg-9 {\n    width: 75%;\n  }\n  .col-lg-8 {\n    width: 66.66666667%;\n  }\n  .col-lg-7 {\n    width: 58.33333333%;\n  }\n  .col-lg-6 {\n    width: 50%;\n  }\n  .col-lg-5 {\n    width: 41.66666667%;\n  }\n  .col-lg-4 {\n    width: 33.33333333%;\n  }\n  .col-lg-3 {\n    width: 25%;\n  }\n  .col-lg-2 {\n    width: 16.66666667%;\n  }\n  .col-lg-1 {\n    width: 8.33333333%;\n  }\n  .col-lg-pull-12 {\n    right: 100%;\n  }\n  .col-lg-pull-11 {\n    right: 91.66666667%;\n  }\n  .col-lg-pull-10 {\n    right: 83.33333333%;\n  }\n  .col-lg-pull-9 {\n    right: 75%;\n  }\n  .col-lg-pull-8 {\n    right: 66.66666667%;\n  }\n  .col-lg-pull-7 {\n    right: 58.33333333%;\n  }\n  .col-lg-pull-6 {\n    right: 50%;\n  }\n  .col-lg-pull-5 {\n    right: 41.66666667%;\n  }\n  .col-lg-pull-4 {\n    right: 33.33333333%;\n  }\n  .col-lg-pull-3 {\n    right: 25%;\n  }\n  .col-lg-pull-2 {\n    right: 16.66666667%;\n  }\n  .col-lg-pull-1 {\n    right: 8.33333333%;\n  }\n  .col-lg-pull-0 {\n    right: auto;\n  }\n  .col-lg-push-12 {\n    left: 100%;\n  }\n  .col-lg-push-11 {\n    left: 91.66666667%;\n  }\n  .col-lg-push-10 {\n    left: 83.33333333%;\n  }\n  .col-lg-push-9 {\n    left: 75%;\n  }\n  .col-lg-push-8 {\n    left: 66.66666667%;\n  }\n  .col-lg-push-7 {\n    left: 58.33333333%;\n  }\n  .col-lg-push-6 {\n    left: 50%;\n  }\n  .col-lg-push-5 {\n    left: 41.66666667%;\n  }\n  .col-lg-push-4 {\n    left: 33.33333333%;\n  }\n  .col-lg-push-3 {\n    left: 25%;\n  }\n  .col-lg-push-2 {\n    left: 16.66666667%;\n  }\n  .col-lg-push-1 {\n    left: 8.33333333%;\n  }\n  .col-lg-push-0 {\n    left: auto;\n  }\n  .col-lg-offset-12 {\n    margin-left: 100%;\n  }\n  .col-lg-offset-11 {\n    margin-left: 91.66666667%;\n  }\n  .col-lg-offset-10 {\n    margin-left: 83.33333333%;\n  }\n  .col-lg-offset-9 {\n    margin-left: 75%;\n  }\n  .col-lg-offset-8 {\n    margin-left: 66.66666667%;\n  }\n  .col-lg-offset-7 {\n    margin-left: 58.33333333%;\n  }\n  .col-lg-offset-6 {\n    margin-left: 50%;\n  }\n  .col-lg-offset-5 {\n    margin-left: 41.66666667%;\n  }\n  .col-lg-offset-4 {\n    margin-left: 33.33333333%;\n  }\n  .col-lg-offset-3 {\n    margin-left: 25%;\n  }\n  .col-lg-offset-2 {\n    margin-left: 16.66666667%;\n  }\n  .col-lg-offset-1 {\n    margin-left: 8.33333333%;\n  }\n  .col-lg-offset-0 {\n    margin-left: 0;\n  }\n}\ntable {\n  background-color: transparent;\n}\ncaption {\n  padding-top: 8px;\n  padding-bottom: 8px;\n  color: #777;\n  text-align: left;\n}\nth {\n}\n.table {\n  width: 100%;\n  max-width: 100%;\n  margin-bottom: 20px;\n}\n.table > thead > tr > th,\n.table > tbody > tr > th,\n.table > tfoot > tr > th,\n.table > thead > tr > td,\n.table > tbody > tr > td,\n.table > tfoot > tr > td {\n  padding: 8px;\n  line-height: 1.42857143;\n  vertical-align: top;\n  border-top: 1px solid #ddd;\n}\n.table > thead > tr > th {\n  vertical-align: bottom;\n  border-bottom: 2px solid #ddd;\n}\n.table > caption + thead > tr:first-child > th,\n.table > colgroup + thead > tr:first-child > th,\n.table > thead:first-child > tr:first-child > th,\n.table > caption + thead > tr:first-child > td,\n.table > colgroup + thead > tr:first-child > td,\n.table > thead:first-child > tr:first-child > td {\n  border-top: 0;\n}\n.table > tbody + tbody {\n  border-top: 2px solid #ddd;\n}\n.table .table {\n  background-color: #fff;\n}\n.table-condensed > thead > tr > th,\n.table-condensed > tbody > tr > th,\n.table-condensed > tfoot > tr > th,\n.table-condensed > thead > tr > td,\n.table-condensed > tbody > tr > td,\n.table-condensed > tfoot > tr > td {\n  padding: 5px;\n}\n.table-bordered {\n  border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > tbody > tr > th,\n.table-bordered > tfoot > tr > th,\n.table-bordered > thead > tr > td,\n.table-bordered > tbody > tr > td,\n.table-bordered > tfoot > tr > td {\n  border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > thead > tr > td {\n  border-bottom-width: 2px;\n}\n.table-striped > tbody > tr:nth-of-type(odd) {\n  background-color: #f9f9f9;\n}\n.table-hover > tbody > tr:hover {\n  background-color: #f5f5f5;\n}\ntable col[class*=\"col-\"] {\n  position: static;\n  display: table-column;\n  float: none;\n}\ntable td[class*=\"col-\"],\ntable th[class*=\"col-\"] {\n  position: static;\n  display: table-cell;\n  float: none;\n}\n.table > thead > tr > td.active,\n.table > tbody > tr > td.active,\n.table > tfoot > tr > td.active,\n.table > thead > tr > th.active,\n.table > tbody > tr > th.active,\n.table > tfoot > tr > th.active,\n.table > thead > tr.active > td,\n.table > tbody > tr.active > td,\n.table > tfoot > tr.active > td,\n.table > thead > tr.active > th,\n.table > tbody > tr.active > th,\n.table > tfoot > tr.active > th {\n  background-color: #f5f5f5;\n}\n.table-hover > tbody > tr > td.active:hover,\n.table-hover > tbody > tr > th.active:hover,\n.table-hover > tbody > tr.active:hover > td,\n.table-hover > tbody > tr:hover > .active,\n.table-hover > tbody > tr.active:hover > th {\n  background-color: #e8e8e8;\n}\n.table > thead > tr > td.success,\n.table > tbody > tr > td.success,\n.table > tfoot > tr > td.success,\n.table > thead > tr > th.success,\n.table > tbody > tr > th.success,\n.table > tfoot > tr > th.success,\n.table > thead > tr.success > td,\n.table > tbody > tr.success > td,\n.table > tfoot > tr.success > td,\n.table > thead > tr.success > th,\n.table > tbody > tr.success > th,\n.table > tfoot > tr.success > th {\n  background-color: #dff0d8;\n}\n.table-hover > tbody > tr > td.success:hover,\n.table-hover > tbody > tr > th.success:hover,\n.table-hover > tbody > tr.success:hover > td,\n.table-hover > tbody > tr:hover > .success,\n.table-hover > tbody > tr.success:hover > th {\n  background-color: #d0e9c6;\n}\n.table > thead > tr > td.info,\n.table > tbody > tr > td.info,\n.table > tfoot > tr > td.info,\n.table > thead > tr > th.info,\n.table > tbody > tr > th.info,\n.table > tfoot > tr > th.info,\n.table > thead > tr.info > td,\n.table > tbody > tr.info > td,\n.table > tfoot > tr.info > td,\n.table > thead > tr.info > th,\n.table > tbody > tr.info > th,\n.table > tfoot > tr.info > th {\n  background-color: #d9edf7;\n}\n.table-hover > tbody > tr > td.info:hover,\n.table-hover > tbody > tr > th.info:hover,\n.table-hover > tbody > tr.info:hover > td,\n.table-hover > tbody > tr:hover > .info,\n.table-hover > tbody > tr.info:hover > th {\n  background-color: #c4e3f3;\n}\n.table > thead > tr > td.warning,\n.table > tbody > tr > td.warning,\n.table > tfoot > tr > td.warning,\n.table > thead > tr > th.warning,\n.table > tbody > tr > th.warning,\n.table > tfoot > tr > th.warning,\n.table > thead > tr.warning > td,\n.table > tbody > tr.warning > td,\n.table > tfoot > tr.warning > td,\n.table > thead > tr.warning > th,\n.table > tbody > tr.warning > th,\n.table > tfoot > tr.warning > th {\n  background-color: #fcf8e3;\n}\n.table-hover > tbody > tr > td.warning:hover,\n.table-hover > tbody > tr > th.warning:hover,\n.table-hover > tbody > tr.warning:hover > td,\n.table-hover > tbody > tr:hover > .warning,\n.table-hover > tbody > tr.warning:hover > th {\n  background-color: #faf2cc;\n}\n.table > thead > tr > td.danger,\n.table > tbody > tr > td.danger,\n.table > tfoot > tr > td.danger,\n.table > thead > tr > th.danger,\n.table > tbody > tr > th.danger,\n.table > tfoot > tr > th.danger,\n.table > thead > tr.danger > td,\n.table > tbody > tr.danger > td,\n.table > tfoot > tr.danger > td,\n.table > thead > tr.danger > th,\n.table > tbody > tr.danger > th,\n.table > tfoot > tr.danger > th {\n  background-color: #f2dede;\n}\n.table-hover > tbody > tr > td.danger:hover,\n.table-hover > tbody > tr > th.danger:hover,\n.table-hover > tbody > tr.danger:hover > td,\n.table-hover > tbody > tr:hover > .danger,\n.table-hover > tbody > tr.danger:hover > th {\n  background-color: #ebcccc;\n}\n.table-responsive {\n  min-height: .01%;\n  overflow-x: auto;\n}\n@media screen and (max-width: 767px) {\n  .table-responsive {\n    width: 100%;\n    margin-bottom: 15px;\n    overflow-y: hidden;\n    -ms-overflow-style: -ms-autohiding-scrollbar;\n    border: 1px solid #ddd;\n  }\n  .table-responsive > .table {\n    margin-bottom: 0;\n  }\n  .table-responsive > .table > thead > tr > th,\n  .table-responsive > .table > tbody > tr > th,\n  .table-responsive > .table > tfoot > tr > th,\n  .table-responsive > .table > thead > tr > td,\n  .table-responsive > .table > tbody > tr > td,\n  .table-responsive > .table > tfoot > tr > td {\n    white-space: nowrap;\n  }\n  .table-responsive > .table-bordered {\n    border: 0;\n  }\n  .table-responsive > .table-bordered > thead > tr > th:first-child,\n  .table-responsive > .table-bordered > tbody > tr > th:first-child,\n  .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n  .table-responsive > .table-bordered > thead > tr > td:first-child,\n  .table-responsive > .table-bordered > tbody > tr > td:first-child,\n  .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n    border-left: 0;\n  }\n  .table-responsive > .table-bordered > thead > tr > th:last-child,\n  .table-responsive > .table-bordered > tbody > tr > th:last-child,\n  .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n  .table-responsive > .table-bordered > thead > tr > td:last-child,\n  .table-responsive > .table-bordered > tbody > tr > td:last-child,\n  .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n    border-right: 0;\n  }\n  .table-responsive > .table-bordered > tbody > tr:last-child > th,\n  .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n  .table-responsive > .table-bordered > tbody > tr:last-child > td,\n  .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n    border-bottom: 0;\n  }\n}\nfieldset {\n  min-width: 0;\n  padding: 0;\n  margin: 0;\n  border: 0;\n}\nlegend {\n  display: block;\n  width: 100%;\n  padding: 0;\n  margin-bottom: 20px;\n  font-size: 21px;\n  line-height: inherit;\n  color: #333;\n  border: 0;\n  border-bottom: 1px solid #e5e5e5;\n}\nlabel {\n  display: inline-block;\n  max-width: 100%;\n  margin-bottom: 5px;\n  font-weight: bold;\n}\ninput[type=\"search\"] {\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n}\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  margin: 4px 0 0;\n  margin-top: 1px \\9;\n  line-height: normal;\n}\ninput[type=\"file\"] {\n  display: block;\n}\ninput[type=\"range\"] {\n  display: block;\n  width: 100%;\n}\nselect[multiple],\nselect[size] {\n  height: auto;\n}\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n  outline: thin dotted;\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\noutput {\n  display: block;\n  padding-top: 7px;\n  font-size: 14px;\n  line-height: 1.42857143;\n  color: #555;\n}\n.form-control {\n  display: block;\n  width: 100%;\n  height: 34px;\n  padding: 6px 12px;\n  font-size: 14px;\n  line-height: 1.42857143;\n  color: #555;\n  background-color: #fff;\n  background-image: none;\n  border: 1px solid #ccc;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;\n       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n}\n.form-control:focus {\n  border-color: #66afe9;\n  outline: 0;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);\n          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);\n}\n.form-control::-moz-placeholder {\n  color: #999;\n  opacity: 1;\n}\n.form-control:-ms-input-placeholder {\n  color: #999;\n}\n.form-control::-webkit-input-placeholder {\n  color: #999;\n}\n.form-control[disabled],\n.form-control[readonly],\nfieldset[disabled] .form-control {\n  background-color: #eee;\n  opacity: 1;\n}\n.form-control[disabled],\nfieldset[disabled] .form-control {\n  cursor: not-allowed;\n}\ntextarea.form-control {\n  height: auto;\n}\ninput[type=\"search\"] {\n  -webkit-appearance: none;\n}\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n  input[type=\"date\"].form-control,\n  input[type=\"time\"].form-control,\n  input[type=\"datetime-local\"].form-control,\n  input[type=\"month\"].form-control {\n    line-height: 34px;\n  }\n  input[type=\"date\"].input-sm,\n  input[type=\"time\"].input-sm,\n  input[type=\"datetime-local\"].input-sm,\n  input[type=\"month\"].input-sm,\n  .input-group-sm input[type=\"date\"],\n  .input-group-sm input[type=\"time\"],\n  .input-group-sm input[type=\"datetime-local\"],\n  .input-group-sm input[type=\"month\"] {\n    line-height: 30px;\n  }\n  input[type=\"date\"].input-lg,\n  input[type=\"time\"].input-lg,\n  input[type=\"datetime-local\"].input-lg,\n  input[type=\"month\"].input-lg,\n  .input-group-lg input[type=\"date\"],\n  .input-group-lg input[type=\"time\"],\n  .input-group-lg input[type=\"datetime-local\"],\n  .input-group-lg input[type=\"month\"] {\n    line-height: 46px;\n  }\n}\n.form-group {\n  margin-bottom: 15px;\n}\n.radio,\n.checkbox {\n  position: relative;\n  display: block;\n  margin-top: 10px;\n  margin-bottom: 10px;\n}\n.radio label,\n.checkbox label {\n  min-height: 20px;\n  padding-left: 20px;\n  margin-bottom: 0;\n  font-weight: normal;\n  cursor: pointer;\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n  position: absolute;\n  margin-top: 4px \\9;\n  margin-left: -20px;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n  margin-top: -5px;\n}\n.radio-inline,\n.checkbox-inline {\n  position: relative;\n  display: inline-block;\n  padding-left: 20px;\n  margin-bottom: 0;\n  font-weight: normal;\n  vertical-align: middle;\n  cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n  margin-top: 0;\n  margin-left: 10px;\n}\ninput[type=\"radio\"][disabled],\ninput[type=\"checkbox\"][disabled],\ninput[type=\"radio\"].disabled,\ninput[type=\"checkbox\"].disabled,\nfieldset[disabled] input[type=\"radio\"],\nfieldset[disabled] input[type=\"checkbox\"] {\n  cursor: not-allowed;\n}\n.radio-inline.disabled,\n.checkbox-inline.disabled,\nfieldset[disabled] .radio-inline,\nfieldset[disabled] .checkbox-inline {\n  cursor: not-allowed;\n}\n.radio.disabled label,\n.checkbox.disabled label,\nfieldset[disabled] .radio label,\nfieldset[disabled] .checkbox label {\n  cursor: not-allowed;\n}\n.form-control-static {\n  min-height: 34px;\n  padding-top: 7px;\n  padding-bottom: 7px;\n  margin-bottom: 0;\n}\n.form-control-static.input-lg,\n.form-control-static.input-sm {\n  padding-right: 0;\n  padding-left: 0;\n}\n.input-sm {\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\nselect.input-sm {\n  height: 30px;\n  line-height: 30px;\n}\ntextarea.input-sm,\nselect[multiple].input-sm {\n  height: auto;\n}\n.form-group-sm .form-control {\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\n.form-group-sm select.form-control {\n  height: 30px;\n  line-height: 30px;\n}\n.form-group-sm textarea.form-control,\n.form-group-sm select[multiple].form-control {\n  height: auto;\n}\n.form-group-sm .form-control-static {\n  height: 30px;\n  min-height: 32px;\n  padding: 6px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n}\n.input-lg {\n  height: 46px;\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.3333333;\n  border-radius: 6px;\n}\nselect.input-lg {\n  height: 46px;\n  line-height: 46px;\n}\ntextarea.input-lg,\nselect[multiple].input-lg {\n  height: auto;\n}\n.form-group-lg .form-control {\n  height: 46px;\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.3333333;\n  border-radius: 6px;\n}\n.form-group-lg select.form-control {\n  height: 46px;\n  line-height: 46px;\n}\n.form-group-lg textarea.form-control,\n.form-group-lg select[multiple].form-control {\n  height: auto;\n}\n.form-group-lg .form-control-static {\n  height: 46px;\n  min-height: 38px;\n  padding: 11px 16px;\n  font-size: 18px;\n  line-height: 1.3333333;\n}\n.has-feedback {\n  position: relative;\n}\n.has-feedback .form-control {\n  padding-right: 42.5px;\n}\n.form-control-feedback {\n  position: absolute;\n  top: 0;\n  right: 0;\n  z-index: 2;\n  display: block;\n  width: 34px;\n  height: 34px;\n  line-height: 34px;\n  text-align: center;\n  pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n  width: 46px;\n  height: 46px;\n  line-height: 46px;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n  width: 30px;\n  height: 30px;\n  line-height: 30px;\n}\n.has-success .help-block,\n.has-success .control-label,\n.has-success .radio,\n.has-success .checkbox,\n.has-success .radio-inline,\n.has-success .checkbox-inline,\n.has-success.radio label,\n.has-success.checkbox label,\n.has-success.radio-inline label,\n.has-success.checkbox-inline label {\n  color: #3c763d;\n}\n.has-success .form-control {\n  border-color: #3c763d;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n}\n.has-success .form-control:focus {\n  border-color: #2b542c;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;\n}\n.has-success .input-group-addon {\n  color: #3c763d;\n  background-color: #dff0d8;\n  border-color: #3c763d;\n}\n.has-success .form-control-feedback {\n  color: #3c763d;\n}\n.has-warning .help-block,\n.has-warning .control-label,\n.has-warning .radio,\n.has-warning .checkbox,\n.has-warning .radio-inline,\n.has-warning .checkbox-inline,\n.has-warning.radio label,\n.has-warning.checkbox label,\n.has-warning.radio-inline label,\n.has-warning.checkbox-inline label {\n  color: #8a6d3b;\n}\n.has-warning .form-control {\n  border-color: #8a6d3b;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n}\n.has-warning .form-control:focus {\n  border-color: #66512c;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;\n}\n.has-warning .input-group-addon {\n  color: #8a6d3b;\n  background-color: #fcf8e3;\n  border-color: #8a6d3b;\n}\n.has-warning .form-control-feedback {\n  color: #8a6d3b;\n}\n.has-error .help-block,\n.has-error .control-label,\n.has-error .radio,\n.has-error .checkbox,\n.has-error .radio-inline,\n.has-error .checkbox-inline,\n.has-error.radio label,\n.has-error.checkbox label,\n.has-error.radio-inline label,\n.has-error.checkbox-inline label {\n  color: #a94442;\n}\n.has-error .form-control {\n  border-color: #a94442;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n}\n.has-error .form-control:focus {\n  border-color: #843534;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;\n}\n.has-error .input-group-addon {\n  color: #a94442;\n  background-color: #f2dede;\n  border-color: #a94442;\n}\n.has-error .form-control-feedback {\n  color: #a94442;\n}\n.has-feedback label ~ .form-control-feedback {\n  top: 25px;\n}\n.has-feedback label.sr-only ~ .form-control-feedback {\n  top: 0;\n}\n.help-block {\n  display: block;\n  margin-top: 5px;\n  margin-bottom: 10px;\n  color: #737373;\n}\n@media (min-width: 768px) {\n  .form-inline .form-group {\n    display: inline-block;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .form-inline .form-control {\n    display: inline-block;\n    width: auto;\n    vertical-align: middle;\n  }\n  .form-inline .form-control-static {\n    display: inline-block;\n  }\n  .form-inline .input-group {\n    display: inline-table;\n    vertical-align: middle;\n  }\n  .form-inline .input-group .input-group-addon,\n  .form-inline .input-group .input-group-btn,\n  .form-inline .input-group .form-control {\n    width: auto;\n  }\n  .form-inline .input-group > .form-control {\n    width: 100%;\n  }\n  .form-inline .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .form-inline .radio,\n  .form-inline .checkbox {\n    display: inline-block;\n    margin-top: 0;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .form-inline .radio label,\n  .form-inline .checkbox label {\n    padding-left: 0;\n  }\n  .form-inline .radio input[type=\"radio\"],\n  .form-inline .checkbox input[type=\"checkbox\"] {\n    position: relative;\n    margin-left: 0;\n  }\n  .form-inline .has-feedback .form-control-feedback {\n    top: 0;\n  }\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox,\n.form-horizontal .radio-inline,\n.form-horizontal .checkbox-inline {\n  padding-top: 7px;\n  margin-top: 0;\n  margin-bottom: 0;\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox {\n  min-height: 27px;\n}\n.form-horizontal .form-group {\n  margin-right: -15px;\n  margin-left: -15px;\n}\n@media (min-width: 768px) {\n  .form-horizontal .control-label {\n    padding-top: 7px;\n    margin-bottom: 0;\n    text-align: right;\n  }\n}\n.form-horizontal .has-feedback .form-control-feedback {\n  right: 15px;\n}\n@media (min-width: 768px) {\n  .form-horizontal .form-group-lg .control-label {\n    padding-top: 14.333333px;\n    font-size: 18px;\n  }\n}\n@media (min-width: 768px) {\n  .form-horizontal .form-group-sm .control-label {\n    padding-top: 6px;\n    font-size: 12px;\n  }\n}\n.btn {\n  display: inline-block;\n  padding: 6px 12px;\n  margin-bottom: 0;\n  font-size: 14px;\n  font-weight: normal;\n  line-height: 1.42857143;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: middle;\n  -ms-touch-action: manipulation;\n      touch-action: manipulation;\n  cursor: pointer;\n  -webkit-user-select: none;\n     -moz-user-select: none;\n      -ms-user-select: none;\n          user-select: none;\n  background-image: none;\n  border: 1px solid transparent;\n  border-radius: 4px;\n}\n.btn:focus,\n.btn:active:focus,\n.btn.active:focus,\n.btn.focus,\n.btn:active.focus,\n.btn.active.focus {\n  outline: thin dotted;\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\n.btn:hover,\n.btn:focus,\n.btn.focus {\n  color: #333;\n  text-decoration: none;\n}\n.btn:active,\n.btn.active {\n  background-image: none;\n  outline: 0;\n  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);\n          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);\n}\n.btn.disabled,\n.btn[disabled],\nfieldset[disabled] .btn {\n  cursor: not-allowed;\n  filter: alpha(opacity=65);\n  -webkit-box-shadow: none;\n          box-shadow: none;\n  opacity: .65;\n}\na.btn.disabled,\nfieldset[disabled] a.btn {\n  pointer-events: none;\n}\n.btn-default {\n  color: #333;\n  background-color: #fff;\n  border-color: #ccc;\n}\n.btn-default:focus,\n.btn-default.focus {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #8c8c8c;\n}\n.btn-default:hover {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #adadad;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #adadad;\n}\n.btn-default:active:hover,\n.btn-default.active:hover,\n.open > .dropdown-toggle.btn-default:hover,\n.btn-default:active:focus,\n.btn-default.active:focus,\n.open > .dropdown-toggle.btn-default:focus,\n.btn-default:active.focus,\n.btn-default.active.focus,\n.open > .dropdown-toggle.btn-default.focus {\n  color: #333;\n  background-color: #d4d4d4;\n  border-color: #8c8c8c;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n  background-image: none;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n  background-color: #fff;\n  border-color: #ccc;\n}\n.btn-default .badge {\n  color: #fff;\n  background-color: #333;\n}\n.btn-primary {\n  color: #fff;\n  background-color: #337ab7;\n  border-color: #2e6da4;\n}\n.btn-primary:focus,\n.btn-primary.focus {\n  color: #fff;\n  background-color: #286090;\n  border-color: #122b40;\n}\n.btn-primary:hover {\n  color: #fff;\n  background-color: #286090;\n  border-color: #204d74;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n  color: #fff;\n  background-color: #286090;\n  border-color: #204d74;\n}\n.btn-primary:active:hover,\n.btn-primary.active:hover,\n.open > .dropdown-toggle.btn-primary:hover,\n.btn-primary:active:focus,\n.btn-primary.active:focus,\n.open > .dropdown-toggle.btn-primary:focus,\n.btn-primary:active.focus,\n.btn-primary.active.focus,\n.open > .dropdown-toggle.btn-primary.focus {\n  color: #fff;\n  background-color: #204d74;\n  border-color: #122b40;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n  background-image: none;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n  background-color: #337ab7;\n  border-color: #2e6da4;\n}\n.btn-primary .badge {\n  color: #337ab7;\n  background-color: #fff;\n}\n.btn-success {\n  color: #fff;\n  background-color: #5cb85c;\n  border-color: #4cae4c;\n}\n.btn-success:focus,\n.btn-success.focus {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #255625;\n}\n.btn-success:hover {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #398439;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #398439;\n}\n.btn-success:active:hover,\n.btn-success.active:hover,\n.open > .dropdown-toggle.btn-success:hover,\n.btn-success:active:focus,\n.btn-success.active:focus,\n.open > .dropdown-toggle.btn-success:focus,\n.btn-success:active.focus,\n.btn-success.active.focus,\n.open > .dropdown-toggle.btn-success.focus {\n  color: #fff;\n  background-color: #398439;\n  border-color: #255625;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n  background-image: none;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n  background-color: #5cb85c;\n  border-color: #4cae4c;\n}\n.btn-success .badge {\n  color: #5cb85c;\n  background-color: #fff;\n}\n.btn-info {\n  color: #fff;\n  background-color: #5bc0de;\n  border-color: #46b8da;\n}\n.btn-info:focus,\n.btn-info.focus {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #1b6d85;\n}\n.btn-info:hover {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #269abc;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #269abc;\n}\n.btn-info:active:hover,\n.btn-info.active:hover,\n.open > .dropdown-toggle.btn-info:hover,\n.btn-info:active:focus,\n.btn-info.active:focus,\n.open > .dropdown-toggle.btn-info:focus,\n.btn-info:active.focus,\n.btn-info.active.focus,\n.open > .dropdown-toggle.btn-info.focus {\n  color: #fff;\n  background-color: #269abc;\n  border-color: #1b6d85;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n  background-image: none;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n  background-color: #5bc0de;\n  border-color: #46b8da;\n}\n.btn-info .badge {\n  color: #5bc0de;\n  background-color: #fff;\n}\n.btn-warning {\n  color: #fff;\n  background-color: #f0ad4e;\n  border-color: #eea236;\n}\n.btn-warning:focus,\n.btn-warning.focus {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #985f0d;\n}\n.btn-warning:hover {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #d58512;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #d58512;\n}\n.btn-warning:active:hover,\n.btn-warning.active:hover,\n.open > .dropdown-toggle.btn-warning:hover,\n.btn-warning:active:focus,\n.btn-warning.active:focus,\n.open > .dropdown-toggle.btn-warning:focus,\n.btn-warning:active.focus,\n.btn-warning.active.focus,\n.open > .dropdown-toggle.btn-warning.focus {\n  color: #fff;\n  background-color: #d58512;\n  border-color: #985f0d;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n  background-image: none;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n  background-color: #f0ad4e;\n  border-color: #eea236;\n}\n.btn-warning .badge {\n  color: #f0ad4e;\n  background-color: #fff;\n}\n.btn-danger {\n  color: #fff;\n  background-color: #d9534f;\n  border-color: #d43f3a;\n}\n.btn-danger:focus,\n.btn-danger.focus {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #761c19;\n}\n.btn-danger:hover {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #ac2925;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #ac2925;\n}\n.btn-danger:active:hover,\n.btn-danger.active:hover,\n.open > .dropdown-toggle.btn-danger:hover,\n.btn-danger:active:focus,\n.btn-danger.active:focus,\n.open > .dropdown-toggle.btn-danger:focus,\n.btn-danger:active.focus,\n.btn-danger.active.focus,\n.open > .dropdown-toggle.btn-danger.focus {\n  color: #fff;\n  background-color: #ac2925;\n  border-color: #761c19;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n  background-image: none;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n  background-color: #d9534f;\n  border-color: #d43f3a;\n}\n.btn-danger .badge {\n  color: #d9534f;\n  background-color: #fff;\n}\n.btn-link {\n  font-weight: normal;\n  color: #337ab7;\n  border-radius: 0;\n}\n.btn-link,\n.btn-link:active,\n.btn-link.active,\n.btn-link[disabled],\nfieldset[disabled] .btn-link {\n  background-color: transparent;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n.btn-link,\n.btn-link:hover,\n.btn-link:focus,\n.btn-link:active {\n  border-color: transparent;\n}\n.btn-link:hover,\n.btn-link:focus {\n  color: #23527c;\n  text-decoration: underline;\n  background-color: transparent;\n}\n.btn-link[disabled]:hover,\nfieldset[disabled] .btn-link:hover,\n.btn-link[disabled]:focus,\nfieldset[disabled] .btn-link:focus {\n  color: #777;\n  text-decoration: none;\n}\n.btn-lg,\n.btn-group-lg > .btn {\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.3333333;\n  border-radius: 6px;\n}\n.btn-sm,\n.btn-group-sm > .btn {\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\n.btn-xs,\n.btn-group-xs > .btn {\n  padding: 1px 5px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\n.btn-block {\n  display: block;\n  width: 100%;\n}\n.btn-block + .btn-block {\n  margin-top: 5px;\n}\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n  width: 100%;\n}\n.fade {\n  opacity: 0;\n  -webkit-transition: opacity .15s linear;\n       -o-transition: opacity .15s linear;\n          transition: opacity .15s linear;\n}\n.fade.in {\n  opacity: 1;\n}\n.collapse {\n  display: none;\n}\n.collapse.in {\n  display: block;\n}\ntr.collapse.in {\n  display: table-row;\n}\ntbody.collapse.in {\n  display: table-row-group;\n}\n.collapsing {\n  position: relative;\n  height: 0;\n  overflow: hidden;\n  -webkit-transition-timing-function: ease;\n       -o-transition-timing-function: ease;\n          transition-timing-function: ease;\n  -webkit-transition-duration: .35s;\n       -o-transition-duration: .35s;\n          transition-duration: .35s;\n  -webkit-transition-property: height, visibility;\n       -o-transition-property: height, visibility;\n          transition-property: height, visibility;\n}\n.caret {\n  display: inline-block;\n  width: 0;\n  height: 0;\n  margin-left: 2px;\n  vertical-align: middle;\n  border-top: 4px dashed;\n  border-top: 4px solid \\9;\n  border-right: 4px solid transparent;\n  border-left: 4px solid transparent;\n}\n.dropup,\n.dropdown {\n  position: relative;\n}\n.dropdown-toggle:focus {\n  outline: 0;\n}\n.dropdown-menu {\n  position: absolute;\n  top: 100%;\n  left: 0;\n  z-index: 1000;\n  display: none;\n  float: left;\n  min-width: 160px;\n  padding: 5px 0;\n  margin: 2px 0 0;\n  font-size: 14px;\n  text-align: left;\n  list-style: none;\n  background-color: #fff;\n  -webkit-background-clip: padding-box;\n          background-clip: padding-box;\n  border: 1px solid #ccc;\n  border: 1px solid rgba(0, 0, 0, .15);\n  border-radius: 4px;\n  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);\n          box-shadow: 0 6px 12px rgba(0, 0, 0, .175);\n}\n.dropdown-menu.pull-right {\n  right: 0;\n  left: auto;\n}\n.dropdown-menu .divider {\n  height: 1px;\n  margin: 9px 0;\n  overflow: hidden;\n  background-color: #e5e5e5;\n}\n.dropdown-menu > li > a {\n  display: block;\n  padding: 3px 20px;\n  clear: both;\n  font-weight: normal;\n  line-height: 1.42857143;\n  color: #333;\n  white-space: nowrap;\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n  color: #262626;\n  text-decoration: none;\n  background-color: #f5f5f5;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n  color: #fff;\n  text-decoration: none;\n  background-color: #337ab7;\n  outline: 0;\n}\n.dropdown-menu > .disabled > a,\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n  color: #777;\n}\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n  text-decoration: none;\n  cursor: not-allowed;\n  background-color: transparent;\n  background-image: none;\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n}\n.open > .dropdown-menu {\n  display: block;\n}\n.open > a {\n  outline: 0;\n}\n.dropdown-menu-right {\n  right: 0;\n  left: auto;\n}\n.dropdown-menu-left {\n  right: auto;\n  left: 0;\n}\n.dropdown-header {\n  display: block;\n  padding: 3px 20px;\n  font-size: 12px;\n  line-height: 1.42857143;\n  color: #777;\n  white-space: nowrap;\n}\n.dropdown-backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 990;\n}\n.pull-right > .dropdown-menu {\n  right: 0;\n  left: auto;\n}\n.dropup .caret,\n.navbar-fixed-bottom .dropdown .caret {\n  content: \"\";\n  border-top: 0;\n  border-bottom: 4px dashed;\n  border-bottom: 4px solid \\9;\n}\n.dropup .dropdown-menu,\n.navbar-fixed-bottom .dropdown .dropdown-menu {\n  top: auto;\n  bottom: 100%;\n  margin-bottom: 2px;\n}\n@media (min-width: 768px) {\n  .navbar-right .dropdown-menu {\n    right: 0;\n    left: auto;\n  }\n  .navbar-right .dropdown-menu-left {\n    right: auto;\n    left: 0;\n  }\n}\n.btn-group,\n.btn-group-vertical {\n  position: relative;\n  display: inline-block;\n  vertical-align: middle;\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n  position: relative;\n  float: left;\n}\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group-vertical > .btn:focus,\n.btn-group > .btn:active,\n.btn-group-vertical > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn.active {\n  z-index: 2;\n}\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group {\n  margin-left: -1px;\n}\n.btn-toolbar {\n  margin-left: -5px;\n}\n.btn-toolbar .btn,\n.btn-toolbar .btn-group,\n.btn-toolbar .input-group {\n  float: left;\n}\n.btn-toolbar > .btn,\n.btn-toolbar > .btn-group,\n.btn-toolbar > .input-group {\n  margin-left: 5px;\n}\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n  border-radius: 0;\n}\n.btn-group > .btn:first-child {\n  margin-left: 0;\n}\n.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n  border-top-right-radius: 0;\n  border-bottom-right-radius: 0;\n}\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n  border-top-left-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.btn-group > .btn-group {\n  float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n  border-top-right-radius: 0;\n  border-bottom-right-radius: 0;\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  border-top-left-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n  outline: 0;\n}\n.btn-group > .btn + .dropdown-toggle {\n  padding-right: 8px;\n  padding-left: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n  padding-right: 12px;\n  padding-left: 12px;\n}\n.btn-group.open .dropdown-toggle {\n  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);\n          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);\n}\n.btn-group.open .dropdown-toggle.btn-link {\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n.btn .caret {\n  margin-left: 0;\n}\n.btn-lg .caret {\n  border-width: 5px 5px 0;\n  border-bottom-width: 0;\n}\n.dropup .btn-lg .caret {\n  border-width: 0 5px 5px;\n}\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group,\n.btn-group-vertical > .btn-group > .btn {\n  display: block;\n  float: none;\n  width: 100%;\n  max-width: 100%;\n}\n.btn-group-vertical > .btn-group > .btn {\n  float: none;\n}\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n  margin-top: -1px;\n  margin-left: 0;\n}\n.btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n  border-radius: 0;\n}\n.btn-group-vertical > .btn:first-child:not(:last-child) {\n  border-top-right-radius: 4px;\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn:last-child:not(:first-child) {\n  border-top-left-radius: 0;\n  border-top-right-radius: 0;\n  border-bottom-left-radius: 4px;\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  border-top-left-radius: 0;\n  border-top-right-radius: 0;\n}\n.btn-group-justified {\n  display: table;\n  width: 100%;\n  table-layout: fixed;\n  border-collapse: separate;\n}\n.btn-group-justified > .btn,\n.btn-group-justified > .btn-group {\n  display: table-cell;\n  float: none;\n  width: 1%;\n}\n.btn-group-justified > .btn-group .btn {\n  width: 100%;\n}\n.btn-group-justified > .btn-group .dropdown-menu {\n  left: auto;\n}\n[data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\n  position: absolute;\n  clip: rect(0, 0, 0, 0);\n  pointer-events: none;\n}\n.input-group {\n  position: relative;\n  display: table;\n  border-collapse: separate;\n}\n.input-group[class*=\"col-\"] {\n  float: none;\n  padding-right: 0;\n  padding-left: 0;\n}\n.input-group .form-control {\n  position: relative;\n  z-index: 2;\n  float: left;\n  width: 100%;\n  margin-bottom: 0;\n}\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n  height: 46px;\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.3333333;\n  border-radius: 6px;\n}\nselect.input-group-lg > .form-control,\nselect.input-group-lg > .input-group-addon,\nselect.input-group-lg > .input-group-btn > .btn {\n  height: 46px;\n  line-height: 46px;\n}\ntextarea.input-group-lg > .form-control,\ntextarea.input-group-lg > .input-group-addon,\ntextarea.input-group-lg > .input-group-btn > .btn,\nselect[multiple].input-group-lg > .form-control,\nselect[multiple].input-group-lg > .input-group-addon,\nselect[multiple].input-group-lg > .input-group-btn > .btn {\n  height: auto;\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\nselect.input-group-sm > .form-control,\nselect.input-group-sm > .input-group-addon,\nselect.input-group-sm > .input-group-btn > .btn {\n  height: 30px;\n  line-height: 30px;\n}\ntextarea.input-group-sm > .form-control,\ntextarea.input-group-sm > .input-group-addon,\ntextarea.input-group-sm > .input-group-btn > .btn,\nselect[multiple].input-group-sm > .form-control,\nselect[multiple].input-group-sm > .input-group-addon,\nselect[multiple].input-group-sm > .input-group-btn > .btn {\n  height: auto;\n}\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n  display: table-cell;\n}\n.input-group-addon:not(:first-child):not(:last-child),\n.input-group-btn:not(:first-child):not(:last-child),\n.input-group .form-control:not(:first-child):not(:last-child) {\n  border-radius: 0;\n}\n.input-group-addon,\n.input-group-btn {\n  width: 1%;\n  white-space: nowrap;\n  vertical-align: middle;\n}\n.input-group-addon {\n  padding: 6px 12px;\n  font-size: 14px;\n  font-weight: normal;\n  line-height: 1;\n  color: #555;\n  text-align: center;\n  background-color: #eee;\n  border: 1px solid #ccc;\n  border-radius: 4px;\n}\n.input-group-addon.input-sm {\n  padding: 5px 10px;\n  font-size: 12px;\n  border-radius: 3px;\n}\n.input-group-addon.input-lg {\n  padding: 10px 16px;\n  font-size: 18px;\n  border-radius: 6px;\n}\n.input-group-addon input[type=\"radio\"],\n.input-group-addon input[type=\"checkbox\"] {\n  margin-top: 0;\n}\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n  border-top-right-radius: 0;\n  border-bottom-right-radius: 0;\n}\n.input-group-addon:first-child {\n  border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n  border-top-left-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.input-group-addon:last-child {\n  border-left: 0;\n}\n.input-group-btn {\n  position: relative;\n  font-size: 0;\n  white-space: nowrap;\n}\n.input-group-btn > .btn {\n  position: relative;\n}\n.input-group-btn > .btn + .btn {\n  margin-left: -1px;\n}\n.input-group-btn > .btn:hover,\n.input-group-btn > .btn:focus,\n.input-group-btn > .btn:active {\n  z-index: 2;\n}\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group {\n  margin-right: -1px;\n}\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group {\n  z-index: 2;\n  margin-left: -1px;\n}\n.nav {\n  padding-left: 0;\n  margin-bottom: 0;\n  list-style: none;\n}\n.nav > li {\n  position: relative;\n  display: block;\n}\n.nav > li > a {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n}\n.nav > li > a:hover,\n.nav > li > a:focus {\n  text-decoration: none;\n  background-color: #eee;\n}\n.nav > li.disabled > a {\n  color: #777;\n}\n.nav > li.disabled > a:hover,\n.nav > li.disabled > a:focus {\n  color: #777;\n  text-decoration: none;\n  cursor: not-allowed;\n  background-color: transparent;\n}\n.nav .open > a,\n.nav .open > a:hover,\n.nav .open > a:focus {\n  background-color: #eee;\n  border-color: #337ab7;\n}\n.nav .nav-divider {\n  height: 1px;\n  margin: 9px 0;\n  overflow: hidden;\n  background-color: #e5e5e5;\n}\n.nav > li > a > img {\n  max-width: none;\n}\n.nav-tabs {\n  border-bottom: 1px solid #ddd;\n}\n.nav-tabs > li {\n  float: left;\n  margin-bottom: -1px;\n}\n.nav-tabs > li > a {\n  margin-right: 2px;\n  line-height: 1.42857143;\n  border: 1px solid transparent;\n  border-radius: 4px 4px 0 0;\n}\n.nav-tabs > li > a:hover {\n  border-color: #eee #eee #ddd;\n}\n.nav-tabs > li.active > a,\n.nav-tabs > li.active > a:hover,\n.nav-tabs > li.active > a:focus {\n  color: #555;\n  cursor: default;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-bottom-color: transparent;\n}\n.nav-tabs.nav-justified {\n  width: 100%;\n  border-bottom: 0;\n}\n.nav-tabs.nav-justified > li {\n  float: none;\n}\n.nav-tabs.nav-justified > li > a {\n  margin-bottom: 5px;\n  text-align: center;\n}\n.nav-tabs.nav-justified > .dropdown .dropdown-menu {\n  top: auto;\n  left: auto;\n}\n@media (min-width: 768px) {\n  .nav-tabs.nav-justified > li {\n    display: table-cell;\n    width: 1%;\n  }\n  .nav-tabs.nav-justified > li > a {\n    margin-bottom: 0;\n  }\n}\n.nav-tabs.nav-justified > li > a {\n  margin-right: 0;\n  border-radius: 4px;\n}\n.nav-tabs.nav-justified > .active > a,\n.nav-tabs.nav-justified > .active > a:hover,\n.nav-tabs.nav-justified > .active > a:focus {\n  border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n  .nav-tabs.nav-justified > li > a {\n    border-bottom: 1px solid #ddd;\n    border-radius: 4px 4px 0 0;\n  }\n  .nav-tabs.nav-justified > .active > a,\n  .nav-tabs.nav-justified > .active > a:hover,\n  .nav-tabs.nav-justified > .active > a:focus {\n    border-bottom-color: #fff;\n  }\n}\n.nav-pills > li {\n  float: left;\n}\n.nav-pills > li > a {\n  border-radius: 4px;\n}\n.nav-pills > li + li {\n  margin-left: 2px;\n}\n.nav-pills > li.active > a,\n.nav-pills > li.active > a:hover,\n.nav-pills > li.active > a:focus {\n  color: #fff;\n  background-color: #337ab7;\n}\n.nav-stacked > li {\n  float: none;\n}\n.nav-stacked > li + li {\n  margin-top: 2px;\n  margin-left: 0;\n}\n.nav-justified {\n  width: 100%;\n}\n.nav-justified > li {\n  float: none;\n}\n.nav-justified > li > a {\n  margin-bottom: 5px;\n  text-align: center;\n}\n.nav-justified > .dropdown .dropdown-menu {\n  top: auto;\n  left: auto;\n}\n@media (min-width: 768px) {\n  .nav-justified > li {\n    display: table-cell;\n    width: 1%;\n  }\n  .nav-justified > li > a {\n    margin-bottom: 0;\n  }\n}\n.nav-tabs-justified {\n  border-bottom: 0;\n}\n.nav-tabs-justified > li > a {\n  margin-right: 0;\n  border-radius: 4px;\n}\n.nav-tabs-justified > .active > a,\n.nav-tabs-justified > .active > a:hover,\n.nav-tabs-justified > .active > a:focus {\n  border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n  .nav-tabs-justified > li > a {\n    border-bottom: 1px solid #ddd;\n    border-radius: 4px 4px 0 0;\n  }\n  .nav-tabs-justified > .active > a,\n  .nav-tabs-justified > .active > a:hover,\n  .nav-tabs-justified > .active > a:focus {\n    border-bottom-color: #fff;\n  }\n}\n.tab-content > .tab-pane {\n  display: none;\n}\n.tab-content > .active {\n  display: block;\n}\n.nav-tabs .dropdown-menu {\n  margin-top: -1px;\n  border-top-left-radius: 0;\n  border-top-right-radius: 0;\n}\n.navbar {\n  position: relative;\n  min-height: 50px;\n  margin-bottom: 20px;\n  border: 1px solid transparent;\n}\n@media (min-width: 768px) {\n  .navbar {\n    border-radius: 4px;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-header {\n    float: left;\n  }\n}\n.navbar-collapse {\n  padding-right: 15px;\n  padding-left: 15px;\n  overflow-x: visible;\n  -webkit-overflow-scrolling: touch;\n  border-top: 1px solid transparent;\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);\n          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);\n}\n.navbar-collapse.in {\n  overflow-y: auto;\n}\n@media (min-width: 768px) {\n  .navbar-collapse {\n    width: auto;\n    border-top: 0;\n    -webkit-box-shadow: none;\n            box-shadow: none;\n  }\n  .navbar-collapse.collapse {\n    display: block !important;\n    height: auto !important;\n    padding-bottom: 0;\n    overflow: visible !important;\n  }\n  .navbar-collapse.in {\n    overflow-y: visible;\n  }\n  .navbar-fixed-top .navbar-collapse,\n  .navbar-static-top .navbar-collapse,\n  .navbar-fixed-bottom .navbar-collapse {\n    padding-right: 0;\n    padding-left: 0;\n  }\n}\n.navbar-fixed-top .navbar-collapse,\n.navbar-fixed-bottom .navbar-collapse {\n  max-height: 340px;\n}\n@media (max-device-width: 480px) and (orientation: landscape) {\n  .navbar-fixed-top .navbar-collapse,\n  .navbar-fixed-bottom .navbar-collapse {\n    max-height: 200px;\n  }\n}\n.container > .navbar-header,\n.container-fluid > .navbar-header,\n.container > .navbar-collapse,\n.container-fluid > .navbar-collapse {\n  margin-right: -15px;\n  margin-left: -15px;\n}\n@media (min-width: 768px) {\n  .container > .navbar-header,\n  .container-fluid > .navbar-header,\n  .container > .navbar-collapse,\n  .container-fluid > .navbar-collapse {\n    margin-right: 0;\n    margin-left: 0;\n  }\n}\n.navbar-static-top {\n  z-index: 1000;\n  border-width: 0 0 1px;\n}\n@media (min-width: 768px) {\n  .navbar-static-top {\n    border-radius: 0;\n  }\n}\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  position: fixed;\n  right: 0;\n  left: 0;\n  z-index: 1030;\n}\n@media (min-width: 768px) {\n  .navbar-fixed-top,\n  .navbar-fixed-bottom {\n    border-radius: 0;\n  }\n}\n.navbar-fixed-top {\n  top: 0;\n  border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n  bottom: 0;\n  margin-bottom: 0;\n  border-width: 1px 0 0;\n}\n.navbar-brand {\n  float: left;\n  height: 50px;\n  padding: 15px 15px;\n  font-size: 18px;\n  line-height: 20px;\n}\n.navbar-brand:hover,\n.navbar-brand:focus {\n  text-decoration: none;\n}\n.navbar-brand > img {\n  display: block;\n}\n@media (min-width: 768px) {\n  .navbar > .container .navbar-brand,\n  .navbar > .container-fluid .navbar-brand {\n    margin-left: -15px;\n  }\n}\n.navbar-toggle {\n  position: relative;\n  float: right;\n  padding: 9px 10px;\n  margin-top: 8px;\n  margin-right: 15px;\n  margin-bottom: 8px;\n  background-color: transparent;\n  background-image: none;\n  border: 1px solid transparent;\n  border-radius: 4px;\n}\n.navbar-toggle:focus {\n  outline: 0;\n}\n.navbar-toggle .icon-bar {\n  display: block;\n  width: 22px;\n  height: 2px;\n  border-radius: 1px;\n}\n.navbar-toggle .icon-bar + .icon-bar {\n  margin-top: 4px;\n}\n@media (min-width: 768px) {\n  .navbar-toggle {\n    display: none;\n  }\n}\n.navbar-nav {\n  margin: 7.5px -15px;\n}\n.navbar-nav > li > a {\n  padding-top: 10px;\n  padding-bottom: 10px;\n  line-height: 20px;\n}\n@media (max-width: 767px) {\n  .navbar-nav .open .dropdown-menu {\n    position: static;\n    float: none;\n    width: auto;\n    margin-top: 0;\n    background-color: transparent;\n    border: 0;\n    -webkit-box-shadow: none;\n            box-shadow: none;\n  }\n  .navbar-nav .open .dropdown-menu > li > a,\n  .navbar-nav .open .dropdown-menu .dropdown-header {\n    padding: 5px 15px 5px 25px;\n  }\n  .navbar-nav .open .dropdown-menu > li > a {\n    line-height: 20px;\n  }\n  .navbar-nav .open .dropdown-menu > li > a:hover,\n  .navbar-nav .open .dropdown-menu > li > a:focus {\n    background-image: none;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-nav {\n    float: left;\n    margin: 0;\n  }\n  .navbar-nav > li {\n    float: left;\n  }\n  .navbar-nav > li > a {\n    padding-top: 15px;\n    padding-bottom: 15px;\n  }\n}\n.navbar-form {\n  padding: 10px 15px;\n  margin-top: 8px;\n  margin-right: -15px;\n  margin-bottom: 8px;\n  margin-left: -15px;\n  border-top: 1px solid transparent;\n  border-bottom: 1px solid transparent;\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);\n          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);\n}\n@media (min-width: 768px) {\n  .navbar-form .form-group {\n    display: inline-block;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .navbar-form .form-control {\n    display: inline-block;\n    width: auto;\n    vertical-align: middle;\n  }\n  .navbar-form .form-control-static {\n    display: inline-block;\n  }\n  .navbar-form .input-group {\n    display: inline-table;\n    vertical-align: middle;\n  }\n  .navbar-form .input-group .input-group-addon,\n  .navbar-form .input-group .input-group-btn,\n  .navbar-form .input-group .form-control {\n    width: auto;\n  }\n  .navbar-form .input-group > .form-control {\n    width: 100%;\n  }\n  .navbar-form .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .navbar-form .radio,\n  .navbar-form .checkbox {\n    display: inline-block;\n    margin-top: 0;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .navbar-form .radio label,\n  .navbar-form .checkbox label {\n    padding-left: 0;\n  }\n  .navbar-form .radio input[type=\"radio\"],\n  .navbar-form .checkbox input[type=\"checkbox\"] {\n    position: relative;\n    margin-left: 0;\n  }\n  .navbar-form .has-feedback .form-control-feedback {\n    top: 0;\n  }\n}\n@media (max-width: 767px) {\n  .navbar-form .form-group {\n    margin-bottom: 5px;\n  }\n  .navbar-form .form-group:last-child {\n    margin-bottom: 0;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-form {\n    width: auto;\n    padding-top: 0;\n    padding-bottom: 0;\n    margin-right: 0;\n    margin-left: 0;\n    border: 0;\n    -webkit-box-shadow: none;\n            box-shadow: none;\n  }\n}\n.navbar-nav > li > .dropdown-menu {\n  margin-top: 0;\n  border-top-left-radius: 0;\n  border-top-right-radius: 0;\n}\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n  margin-bottom: 0;\n  border-top-left-radius: 4px;\n  border-top-right-radius: 4px;\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.navbar-btn {\n  margin-top: 8px;\n  margin-bottom: 8px;\n}\n.navbar-btn.btn-sm {\n  margin-top: 10px;\n  margin-bottom: 10px;\n}\n.navbar-btn.btn-xs {\n  margin-top: 14px;\n  margin-bottom: 14px;\n}\n.navbar-text {\n  margin-top: 15px;\n  margin-bottom: 15px;\n}\n@media (min-width: 768px) {\n  .navbar-text {\n    float: left;\n    margin-right: 15px;\n    margin-left: 15px;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-left {\n    float: left !important;\n  }\n  .navbar-right {\n    float: right !important;\n    margin-right: -15px;\n  }\n  .navbar-right ~ .navbar-right {\n    margin-right: 0;\n  }\n}\n.navbar-default {\n  background-color: #f8f8f8;\n  border-color: #e7e7e7;\n}\n.navbar-default .navbar-brand {\n  color: #777;\n}\n.navbar-default .navbar-brand:hover,\n.navbar-default .navbar-brand:focus {\n  color: #5e5e5e;\n  background-color: transparent;\n}\n.navbar-default .navbar-text {\n  color: #777;\n}\n.navbar-default .navbar-nav > li > a {\n  color: #777;\n}\n.navbar-default .navbar-nav > li > a:hover,\n.navbar-default .navbar-nav > li > a:focus {\n  color: #333;\n  background-color: transparent;\n}\n.navbar-default .navbar-nav > .active > a,\n.navbar-default .navbar-nav > .active > a:hover,\n.navbar-default .navbar-nav > .active > a:focus {\n  color: #555;\n  background-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .disabled > a,\n.navbar-default .navbar-nav > .disabled > a:hover,\n.navbar-default .navbar-nav > .disabled > a:focus {\n  color: #ccc;\n  background-color: transparent;\n}\n.navbar-default .navbar-toggle {\n  border-color: #ddd;\n}\n.navbar-default .navbar-toggle:hover,\n.navbar-default .navbar-toggle:focus {\n  background-color: #ddd;\n}\n.navbar-default .navbar-toggle .icon-bar {\n  background-color: #888;\n}\n.navbar-default .navbar-collapse,\n.navbar-default .navbar-form {\n  border-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .open > a:hover,\n.navbar-default .navbar-nav > .open > a:focus {\n  color: #555;\n  background-color: #e7e7e7;\n}\n@media (max-width: 767px) {\n  .navbar-default .navbar-nav .open .dropdown-menu > li > a {\n    color: #777;\n  }\n  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\n  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\n    color: #333;\n    background-color: transparent;\n  }\n  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\n  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\n  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\n    color: #555;\n    background-color: #e7e7e7;\n  }\n  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\n  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n    color: #ccc;\n    background-color: transparent;\n  }\n}\n.navbar-default .navbar-link {\n  color: #777;\n}\n.navbar-default .navbar-link:hover {\n  color: #333;\n}\n.navbar-default .btn-link {\n  color: #777;\n}\n.navbar-default .btn-link:hover,\n.navbar-default .btn-link:focus {\n  color: #333;\n}\n.navbar-default .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-default .btn-link:hover,\n.navbar-default .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-default .btn-link:focus {\n  color: #ccc;\n}\n.navbar-inverse {\n  background-color: #222;\n  border-color: #080808;\n}\n.navbar-inverse .navbar-brand {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-brand:hover,\n.navbar-inverse .navbar-brand:focus {\n  color: #fff;\n  background-color: transparent;\n}\n.navbar-inverse .navbar-text {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a:hover,\n.navbar-inverse .navbar-nav > li > a:focus {\n  color: #fff;\n  background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .active > a,\n.navbar-inverse .navbar-nav > .active > a:hover,\n.navbar-inverse .navbar-nav > .active > a:focus {\n  color: #fff;\n  background-color: #080808;\n}\n.navbar-inverse .navbar-nav > .disabled > a,\n.navbar-inverse .navbar-nav > .disabled > a:hover,\n.navbar-inverse .navbar-nav > .disabled > a:focus {\n  color: #444;\n  background-color: transparent;\n}\n.navbar-inverse .navbar-toggle {\n  border-color: #333;\n}\n.navbar-inverse .navbar-toggle:hover,\n.navbar-inverse .navbar-toggle:focus {\n  background-color: #333;\n}\n.navbar-inverse .navbar-toggle .icon-bar {\n  background-color: #fff;\n}\n.navbar-inverse .navbar-collapse,\n.navbar-inverse .navbar-form {\n  border-color: #101010;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .open > a:hover,\n.navbar-inverse .navbar-nav > .open > a:focus {\n  color: #fff;\n  background-color: #080808;\n}\n@media (max-width: 767px) {\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\n    border-color: #080808;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\n    background-color: #080808;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\n    color: #9d9d9d;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\n    color: #fff;\n    background-color: transparent;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\n    color: #fff;\n    background-color: #080808;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n    color: #444;\n    background-color: transparent;\n  }\n}\n.navbar-inverse .navbar-link {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-link:hover {\n  color: #fff;\n}\n.navbar-inverse .btn-link {\n  color: #9d9d9d;\n}\n.navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link:focus {\n  color: #fff;\n}\n.navbar-inverse .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-inverse .btn-link:focus {\n  color: #444;\n}\n.breadcrumb {\n  padding: 8px 15px;\n  margin-bottom: 20px;\n  list-style: none;\n  background-color: #f5f5f5;\n  border-radius: 4px;\n}\n.breadcrumb > li {\n  display: inline-block;\n}\n.breadcrumb > li + li:before {\n  padding: 0 5px;\n  color: #ccc;\n  content: \"/\\00a0\";\n}\n.breadcrumb > .active {\n  color: #777;\n}\n.pagination {\n  display: inline-block;\n  padding-left: 0;\n  margin: 20px 0;\n  border-radius: 4px;\n}\n.pagination > li {\n  display: inline;\n}\n.pagination > li > a,\n.pagination > li > span {\n  position: relative;\n  float: left;\n  padding: 6px 12px;\n  margin-left: -1px;\n  line-height: 1.42857143;\n  color: #337ab7;\n  text-decoration: none;\n  background-color: #fff;\n  border: 1px solid #ddd;\n}\n.pagination > li:first-child > a,\n.pagination > li:first-child > span {\n  margin-left: 0;\n  border-top-left-radius: 4px;\n  border-bottom-left-radius: 4px;\n}\n.pagination > li:last-child > a,\n.pagination > li:last-child > span {\n  border-top-right-radius: 4px;\n  border-bottom-right-radius: 4px;\n}\n.pagination > li > a:hover,\n.pagination > li > span:hover,\n.pagination > li > a:focus,\n.pagination > li > span:focus {\n  z-index: 3;\n  color: #23527c;\n  background-color: #eee;\n  border-color: #ddd;\n}\n.pagination > .active > a,\n.pagination > .active > span,\n.pagination > .active > a:hover,\n.pagination > .active > span:hover,\n.pagination > .active > a:focus,\n.pagination > .active > span:focus {\n  z-index: 2;\n  color: #fff;\n  cursor: default;\n  background-color: #337ab7;\n  border-color: #337ab7;\n}\n.pagination > .disabled > span,\n.pagination > .disabled > span:hover,\n.pagination > .disabled > span:focus,\n.pagination > .disabled > a,\n.pagination > .disabled > a:hover,\n.pagination > .disabled > a:focus {\n  color: #777;\n  cursor: not-allowed;\n  background-color: #fff;\n  border-color: #ddd;\n}\n.pagination-lg > li > a,\n.pagination-lg > li > span {\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.3333333;\n}\n.pagination-lg > li:first-child > a,\n.pagination-lg > li:first-child > span {\n  border-top-left-radius: 6px;\n  border-bottom-left-radius: 6px;\n}\n.pagination-lg > li:last-child > a,\n.pagination-lg > li:last-child > span {\n  border-top-right-radius: 6px;\n  border-bottom-right-radius: 6px;\n}\n.pagination-sm > li > a,\n.pagination-sm > li > span {\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n}\n.pagination-sm > li:first-child > a,\n.pagination-sm > li:first-child > span {\n  border-top-left-radius: 3px;\n  border-bottom-left-radius: 3px;\n}\n.pagination-sm > li:last-child > a,\n.pagination-sm > li:last-child > span {\n  border-top-right-radius: 3px;\n  border-bottom-right-radius: 3px;\n}\n.pager {\n  padding-left: 0;\n  margin: 20px 0;\n  text-align: center;\n  list-style: none;\n}\n.pager li {\n  display: inline;\n}\n.pager li > a,\n.pager li > span {\n  display: inline-block;\n  padding: 5px 14px;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 15px;\n}\n.pager li > a:hover,\n.pager li > a:focus {\n  text-decoration: none;\n  background-color: #eee;\n}\n.pager .next > a,\n.pager .next > span {\n  float: right;\n}\n.pager .previous > a,\n.pager .previous > span {\n  float: left;\n}\n.pager .disabled > a,\n.pager .disabled > a:hover,\n.pager .disabled > a:focus,\n.pager .disabled > span {\n  color: #777;\n  cursor: not-allowed;\n  background-color: #fff;\n}\n.label {\n  display: inline;\n  padding: .2em .6em .3em;\n  font-size: 75%;\n  font-weight: bold;\n  line-height: 1;\n  color: #fff;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: baseline;\n  border-radius: .25em;\n}\na.label:hover,\na.label:focus {\n  color: #fff;\n  text-decoration: none;\n  cursor: pointer;\n}\n.label:empty {\n  display: none;\n}\n.btn .label {\n  position: relative;\n  top: -1px;\n}\n.label-default {\n  background-color: #777;\n}\n.label-default[href]:hover,\n.label-default[href]:focus {\n  background-color: #5e5e5e;\n}\n.label-primary {\n  background-color: #337ab7;\n}\n.label-primary[href]:hover,\n.label-primary[href]:focus {\n  background-color: #286090;\n}\n.label-success {\n  background-color: #5cb85c;\n}\n.label-success[href]:hover,\n.label-success[href]:focus {\n  background-color: #449d44;\n}\n.label-info {\n  background-color: #5bc0de;\n}\n.label-info[href]:hover,\n.label-info[href]:focus {\n  background-color: #31b0d5;\n}\n.label-warning {\n  background-color: #f0ad4e;\n}\n.label-warning[href]:hover,\n.label-warning[href]:focus {\n  background-color: #ec971f;\n}\n.label-danger {\n  background-color: #d9534f;\n}\n.label-danger[href]:hover,\n.label-danger[href]:focus {\n  background-color: #c9302c;\n}\n.badge {\n  display: inline-block;\n  min-width: 10px;\n  padding: 3px 7px;\n  font-size: 12px;\n  font-weight: bold;\n  line-height: 1;\n  color: #fff;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: middle;\n  background-color: #777;\n  border-radius: 10px;\n}\n.badge:empty {\n  display: none;\n}\n.btn .badge {\n  position: relative;\n  top: -1px;\n}\n.btn-xs .badge,\n.btn-group-xs > .btn .badge {\n  top: 0;\n  padding: 1px 5px;\n}\na.badge:hover,\na.badge:focus {\n  color: #fff;\n  text-decoration: none;\n  cursor: pointer;\n}\n.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n  color: #337ab7;\n  background-color: #fff;\n}\n.list-group-item > .badge {\n  float: right;\n}\n.list-group-item > .badge + .badge {\n  margin-right: 5px;\n}\n.nav-pills > li > a > .badge {\n  margin-left: 3px;\n}\n.jumbotron {\n  padding-top: 30px;\n  padding-bottom: 30px;\n  margin-bottom: 30px;\n  color: inherit;\n  background-color: #eee;\n}\n.jumbotron h1,\n.jumbotron .h1 {\n  color: inherit;\n}\n.jumbotron p {\n  margin-bottom: 15px;\n  font-size: 21px;\n  font-weight: 200;\n}\n.jumbotron > hr {\n  border-top-color: #d5d5d5;\n}\n.container .jumbotron,\n.container-fluid .jumbotron {\n  border-radius: 6px;\n}\n.jumbotron .container {\n  max-width: 100%;\n}\n@media screen and (min-width: 768px) {\n  .jumbotron {\n    padding-top: 48px;\n    padding-bottom: 48px;\n  }\n  .container .jumbotron,\n  .container-fluid .jumbotron {\n    padding-right: 60px;\n    padding-left: 60px;\n  }\n  .jumbotron h1,\n  .jumbotron .h1 {\n    font-size: 63px;\n  }\n}\n.thumbnail {\n  display: block;\n  padding: 4px;\n  margin-bottom: 20px;\n  line-height: 1.42857143;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n  -webkit-transition: border .2s ease-in-out;\n       -o-transition: border .2s ease-in-out;\n          transition: border .2s ease-in-out;\n}\n.thumbnail > img,\n.thumbnail a > img {\n  margin-right: auto;\n  margin-left: auto;\n}\na.thumbnail:hover,\na.thumbnail:focus,\na.thumbnail.active {\n  border-color: #337ab7;\n}\n.thumbnail .caption {\n  padding: 9px;\n  color: #333;\n}\n.alert {\n  padding: 15px;\n  margin-bottom: 20px;\n  border: 1px solid transparent;\n  border-radius: 4px;\n}\n.alert h4 {\n  margin-top: 0;\n  color: inherit;\n}\n.alert .alert-link {\n  font-weight: bold;\n}\n.alert > p,\n.alert > ul {\n  margin-bottom: 0;\n}\n.alert > p + p {\n  margin-top: 5px;\n}\n.alert-dismissable,\n.alert-dismissible {\n  padding-right: 35px;\n}\n.alert-dismissable .close,\n.alert-dismissible .close {\n  position: relative;\n  top: -2px;\n  right: -21px;\n  color: inherit;\n}\n.alert-success {\n  color: #3c763d;\n  background-color: #dff0d8;\n  border-color: #d6e9c6;\n}\n.alert-success hr {\n  border-top-color: #c9e2b3;\n}\n.alert-success .alert-link {\n  color: #2b542c;\n}\n.alert-info {\n  color: #31708f;\n  background-color: #d9edf7;\n  border-color: #bce8f1;\n}\n.alert-info hr {\n  border-top-color: #a6e1ec;\n}\n.alert-info .alert-link {\n  color: #245269;\n}\n.alert-warning {\n  color: #8a6d3b;\n  background-color: #fcf8e3;\n  border-color: #faebcc;\n}\n.alert-warning hr {\n  border-top-color: #f7e1b5;\n}\n.alert-warning .alert-link {\n  color: #66512c;\n}\n.alert-danger {\n  color: #a94442;\n  background-color: #f2dede;\n  border-color: #ebccd1;\n}\n.alert-danger hr {\n  border-top-color: #e4b9c0;\n}\n.alert-danger .alert-link {\n  color: #843534;\n}\n@-webkit-keyframes progress-bar-stripes {\n  from {\n    background-position: 40px 0;\n  }\n  to {\n    background-position: 0 0;\n  }\n}\n@-o-keyframes progress-bar-stripes {\n  from {\n    background-position: 40px 0;\n  }\n  to {\n    background-position: 0 0;\n  }\n}\n@keyframes progress-bar-stripes {\n  from {\n    background-position: 40px 0;\n  }\n  to {\n    background-position: 0 0;\n  }\n}\n.progress {\n  height: 20px;\n  margin-bottom: 20px;\n  overflow: hidden;\n  background-color: #f5f5f5;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);\n          box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);\n}\n.progress-bar {\n  float: left;\n  width: 0;\n  height: 100%;\n  font-size: 12px;\n  line-height: 20px;\n  color: #fff;\n  text-align: center;\n  background-color: #337ab7;\n  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);\n          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);\n  -webkit-transition: width .6s ease;\n       -o-transition: width .6s ease;\n          transition: width .6s ease;\n}\n.progress-striped .progress-bar,\n.progress-bar-striped {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  -webkit-background-size: 40px 40px;\n          background-size: 40px 40px;\n}\n.progress.active .progress-bar,\n.progress-bar.active {\n  -webkit-animation: progress-bar-stripes 2s linear infinite;\n       -o-animation: progress-bar-stripes 2s linear infinite;\n          animation: progress-bar-stripes 2s linear infinite;\n}\n.progress-bar-success {\n  background-color: #5cb85c;\n}\n.progress-striped .progress-bar-success {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n}\n.progress-bar-info {\n  background-color: #5bc0de;\n}\n.progress-striped .progress-bar-info {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n}\n.progress-bar-warning {\n  background-color: #f0ad4e;\n}\n.progress-striped .progress-bar-warning {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n}\n.progress-bar-danger {\n  background-color: #d9534f;\n}\n.progress-striped .progress-bar-danger {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n}\n.media {\n  margin-top: 15px;\n}\n.media:first-child {\n  margin-top: 0;\n}\n.media,\n.media-body {\n  overflow: hidden;\n  zoom: 1;\n}\n.media-body {\n  width: 10000px;\n}\n.media-object {\n  display: block;\n}\n.media-object.img-thumbnail {\n  max-width: none;\n}\n.media-right,\n.media > .pull-right {\n  padding-left: 10px;\n}\n.media-left,\n.media > .pull-left {\n  padding-right: 10px;\n}\n.media-left,\n.media-right,\n.media-body {\n  display: table-cell;\n  vertical-align: top;\n}\n.media-middle {\n  vertical-align: middle;\n}\n.media-bottom {\n  vertical-align: bottom;\n}\n.media-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.media-list {\n  padding-left: 0;\n  list-style: none;\n}\n.list-group {\n  padding-left: 0;\n  margin-bottom: 20px;\n}\n.list-group-item {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n  margin-bottom: -1px;\n  background-color: #fff;\n  border: 1px solid #ddd;\n}\n.list-group-item:first-child {\n  border-top-left-radius: 4px;\n  border-top-right-radius: 4px;\n}\n.list-group-item:last-child {\n  margin-bottom: 0;\n  border-bottom-right-radius: 4px;\n  border-bottom-left-radius: 4px;\n}\na.list-group-item,\nbutton.list-group-item {\n  color: #555;\n}\na.list-group-item .list-group-item-heading,\nbutton.list-group-item .list-group-item-heading {\n  color: #333;\n}\na.list-group-item:hover,\nbutton.list-group-item:hover,\na.list-group-item:focus,\nbutton.list-group-item:focus {\n  color: #555;\n  text-decoration: none;\n  background-color: #f5f5f5;\n}\nbutton.list-group-item {\n  width: 100%;\n  text-align: left;\n}\n.list-group-item.disabled,\n.list-group-item.disabled:hover,\n.list-group-item.disabled:focus {\n  color: #777;\n  cursor: not-allowed;\n  background-color: #eee;\n}\n.list-group-item.disabled .list-group-item-heading,\n.list-group-item.disabled:hover .list-group-item-heading,\n.list-group-item.disabled:focus .list-group-item-heading {\n  color: inherit;\n}\n.list-group-item.disabled .list-group-item-text,\n.list-group-item.disabled:hover .list-group-item-text,\n.list-group-item.disabled:focus .list-group-item-text {\n  color: #777;\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n  z-index: 2;\n  color: #fff;\n  background-color: #337ab7;\n  border-color: #337ab7;\n}\n.list-group-item.active .list-group-item-heading,\n.list-group-item.active:hover .list-group-item-heading,\n.list-group-item.active:focus .list-group-item-heading,\n.list-group-item.active .list-group-item-heading > small,\n.list-group-item.active:hover .list-group-item-heading > small,\n.list-group-item.active:focus .list-group-item-heading > small,\n.list-group-item.active .list-group-item-heading > .small,\n.list-group-item.active:hover .list-group-item-heading > .small,\n.list-group-item.active:focus .list-group-item-heading > .small {\n  color: inherit;\n}\n.list-group-item.active .list-group-item-text,\n.list-group-item.active:hover .list-group-item-text,\n.list-group-item.active:focus .list-group-item-text {\n  color: #c7ddef;\n}\n.list-group-item-success {\n  color: #3c763d;\n  background-color: #dff0d8;\n}\na.list-group-item-success,\nbutton.list-group-item-success {\n  color: #3c763d;\n}\na.list-group-item-success .list-group-item-heading,\nbutton.list-group-item-success .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-success:hover,\nbutton.list-group-item-success:hover,\na.list-group-item-success:focus,\nbutton.list-group-item-success:focus {\n  color: #3c763d;\n  background-color: #d0e9c6;\n}\na.list-group-item-success.active,\nbutton.list-group-item-success.active,\na.list-group-item-success.active:hover,\nbutton.list-group-item-success.active:hover,\na.list-group-item-success.active:focus,\nbutton.list-group-item-success.active:focus {\n  color: #fff;\n  background-color: #3c763d;\n  border-color: #3c763d;\n}\n.list-group-item-info {\n  color: #31708f;\n  background-color: #d9edf7;\n}\na.list-group-item-info,\nbutton.list-group-item-info {\n  color: #31708f;\n}\na.list-group-item-info .list-group-item-heading,\nbutton.list-group-item-info .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-info:hover,\nbutton.list-group-item-info:hover,\na.list-group-item-info:focus,\nbutton.list-group-item-info:focus {\n  color: #31708f;\n  background-color: #c4e3f3;\n}\na.list-group-item-info.active,\nbutton.list-group-item-info.active,\na.list-group-item-info.active:hover,\nbutton.list-group-item-info.active:hover,\na.list-group-item-info.active:focus,\nbutton.list-group-item-info.active:focus {\n  color: #fff;\n  background-color: #31708f;\n  border-color: #31708f;\n}\n.list-group-item-warning {\n  color: #8a6d3b;\n  background-color: #fcf8e3;\n}\na.list-group-item-warning,\nbutton.list-group-item-warning {\n  color: #8a6d3b;\n}\na.list-group-item-warning .list-group-item-heading,\nbutton.list-group-item-warning .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-warning:hover,\nbutton.list-group-item-warning:hover,\na.list-group-item-warning:focus,\nbutton.list-group-item-warning:focus {\n  color: #8a6d3b;\n  background-color: #faf2cc;\n}\na.list-group-item-warning.active,\nbutton.list-group-item-warning.active,\na.list-group-item-warning.active:hover,\nbutton.list-group-item-warning.active:hover,\na.list-group-item-warning.active:focus,\nbutton.list-group-item-warning.active:focus {\n  color: #fff;\n  background-color: #8a6d3b;\n  border-color: #8a6d3b;\n}\n.list-group-item-danger {\n  color: #a94442;\n  background-color: #f2dede;\n}\na.list-group-item-danger,\nbutton.list-group-item-danger {\n  color: #a94442;\n}\na.list-group-item-danger .list-group-item-heading,\nbutton.list-group-item-danger .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-danger:hover,\nbutton.list-group-item-danger:hover,\na.list-group-item-danger:focus,\nbutton.list-group-item-danger:focus {\n  color: #a94442;\n  background-color: #ebcccc;\n}\na.list-group-item-danger.active,\nbutton.list-group-item-danger.active,\na.list-group-item-danger.active:hover,\nbutton.list-group-item-danger.active:hover,\na.list-group-item-danger.active:focus,\nbutton.list-group-item-danger.active:focus {\n  color: #fff;\n  background-color: #a94442;\n  border-color: #a94442;\n}\n.list-group-item-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.list-group-item-text {\n  margin-bottom: 0;\n  line-height: 1.3;\n}\n.panel {\n  margin-bottom: 20px;\n  background-color: #fff;\n  border: 1px solid transparent;\n  border-radius: 4px;\n  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);\n          box-shadow: 0 1px 1px rgba(0, 0, 0, .05);\n}\n.panel-body {\n  padding: 15px;\n}\n.panel-heading {\n  padding: 10px 15px;\n  border-bottom: 1px solid transparent;\n  border-top-left-radius: 3px;\n  border-top-right-radius: 3px;\n}\n.panel-heading > .dropdown .dropdown-toggle {\n  color: inherit;\n}\n.panel-title {\n  margin-top: 0;\n  margin-bottom: 0;\n  font-size: 16px;\n  color: inherit;\n}\n.panel-title > a,\n.panel-title > small,\n.panel-title > .small,\n.panel-title > small > a,\n.panel-title > .small > a {\n  color: inherit;\n}\n.panel-footer {\n  padding: 10px 15px;\n  background-color: #f5f5f5;\n  border-top: 1px solid #ddd;\n  border-bottom-right-radius: 3px;\n  border-bottom-left-radius: 3px;\n}\n.panel > .list-group,\n.panel > .panel-collapse > .list-group {\n  margin-bottom: 0;\n}\n.panel > .list-group .list-group-item,\n.panel > .panel-collapse > .list-group .list-group-item {\n  border-width: 1px 0;\n  border-radius: 0;\n}\n.panel > .list-group:first-child .list-group-item:first-child,\n.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\n  border-top: 0;\n  border-top-left-radius: 3px;\n  border-top-right-radius: 3px;\n}\n.panel > .list-group:last-child .list-group-item:last-child,\n.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\n  border-bottom: 0;\n  border-bottom-right-radius: 3px;\n  border-bottom-left-radius: 3px;\n}\n.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {\n  border-top-left-radius: 0;\n  border-top-right-radius: 0;\n}\n.panel-heading + .list-group .list-group-item:first-child {\n  border-top-width: 0;\n}\n.list-group + .panel-footer {\n  border-top-width: 0;\n}\n.panel > .table,\n.panel > .table-responsive > .table,\n.panel > .panel-collapse > .table {\n  margin-bottom: 0;\n}\n.panel > .table caption,\n.panel > .table-responsive > .table caption,\n.panel > .panel-collapse > .table caption {\n  padding-right: 15px;\n  padding-left: 15px;\n}\n.panel > .table:first-child,\n.panel > .table-responsive:first-child > .table:first-child {\n  border-top-left-radius: 3px;\n  border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\n  border-top-left-radius: 3px;\n  border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\n  border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n  border-top-right-radius: 3px;\n}\n.panel > .table:last-child,\n.panel > .table-responsive:last-child > .table:last-child {\n  border-bottom-right-radius: 3px;\n  border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\n  border-bottom-right-radius: 3px;\n  border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n  border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n  border-bottom-right-radius: 3px;\n}\n.panel > .panel-body + .table,\n.panel > .panel-body + .table-responsive,\n.panel > .table + .panel-body,\n.panel > .table-responsive + .panel-body {\n  border-top: 1px solid #ddd;\n}\n.panel > .table > tbody:first-child > tr:first-child th,\n.panel > .table > tbody:first-child > tr:first-child td {\n  border-top: 0;\n}\n.panel > .table-bordered,\n.panel > .table-responsive > .table-bordered {\n  border: 0;\n}\n.panel > .table-bordered > thead > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n.panel > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-bordered > thead > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n.panel > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-bordered > tfoot > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n  border-left: 0;\n}\n.panel > .table-bordered > thead > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n.panel > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-bordered > thead > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n.panel > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-bordered > tfoot > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n  border-right: 0;\n}\n.panel > .table-bordered > thead > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\n.panel > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-bordered > thead > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\n.panel > .table-bordered > tbody > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\n  border-bottom: 0;\n}\n.panel > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-bordered > tfoot > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\n  border-bottom: 0;\n}\n.panel > .table-responsive {\n  margin-bottom: 0;\n  border: 0;\n}\n.panel-group {\n  margin-bottom: 20px;\n}\n.panel-group .panel {\n  margin-bottom: 0;\n  border-radius: 4px;\n}\n.panel-group .panel + .panel {\n  margin-top: 5px;\n}\n.panel-group .panel-heading {\n  border-bottom: 0;\n}\n.panel-group .panel-heading + .panel-collapse > .panel-body,\n.panel-group .panel-heading + .panel-collapse > .list-group {\n  border-top: 1px solid #ddd;\n}\n.panel-group .panel-footer {\n  border-top: 0;\n}\n.panel-group .panel-footer + .panel-collapse .panel-body {\n  border-bottom: 1px solid #ddd;\n}\n.panel-default {\n  border-color: #ddd;\n}\n.panel-default > .panel-heading {\n  color: #333;\n  background-color: #f5f5f5;\n  border-color: #ddd;\n}\n.panel-default > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #ddd;\n}\n.panel-default > .panel-heading .badge {\n  color: #f5f5f5;\n  background-color: #333;\n}\n.panel-default > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #ddd;\n}\n.panel-primary {\n  border-color: #337ab7;\n}\n.panel-primary > .panel-heading {\n  color: #fff;\n  background-color: #337ab7;\n  border-color: #337ab7;\n}\n.panel-primary > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #337ab7;\n}\n.panel-primary > .panel-heading .badge {\n  color: #337ab7;\n  background-color: #fff;\n}\n.panel-primary > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #337ab7;\n}\n.panel-success {\n  border-color: #d6e9c6;\n}\n.panel-success > .panel-heading {\n  color: #3c763d;\n  background-color: #dff0d8;\n  border-color: #d6e9c6;\n}\n.panel-success > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #d6e9c6;\n}\n.panel-success > .panel-heading .badge {\n  color: #dff0d8;\n  background-color: #3c763d;\n}\n.panel-success > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #d6e9c6;\n}\n.panel-info {\n  border-color: #bce8f1;\n}\n.panel-info > .panel-heading {\n  color: #31708f;\n  background-color: #d9edf7;\n  border-color: #bce8f1;\n}\n.panel-info > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #bce8f1;\n}\n.panel-info > .panel-heading .badge {\n  color: #d9edf7;\n  background-color: #31708f;\n}\n.panel-info > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #bce8f1;\n}\n.panel-warning {\n  border-color: #faebcc;\n}\n.panel-warning > .panel-heading {\n  color: #8a6d3b;\n  background-color: #fcf8e3;\n  border-color: #faebcc;\n}\n.panel-warning > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #faebcc;\n}\n.panel-warning > .panel-heading .badge {\n  color: #fcf8e3;\n  background-color: #8a6d3b;\n}\n.panel-warning > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #faebcc;\n}\n.panel-danger {\n  border-color: #ebccd1;\n}\n.panel-danger > .panel-heading {\n  color: #a94442;\n  background-color: #f2dede;\n  border-color: #ebccd1;\n}\n.panel-danger > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #ebccd1;\n}\n.panel-danger > .panel-heading .badge {\n  color: #f2dede;\n  background-color: #a94442;\n}\n.panel-danger > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #ebccd1;\n}\n.embed-responsive {\n  position: relative;\n  display: block;\n  height: 0;\n  padding: 0;\n  overflow: hidden;\n}\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  border: 0;\n}\n.embed-responsive-16by9 {\n  padding-bottom: 56.25%;\n}\n.embed-responsive-4by3 {\n  padding-bottom: 75%;\n}\n.well {\n  min-height: 20px;\n  padding: 19px;\n  margin-bottom: 20px;\n  background-color: #f5f5f5;\n  border: 1px solid #e3e3e3;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);\n}\n.well blockquote {\n  border-color: #ddd;\n  border-color: rgba(0, 0, 0, .15);\n}\n.well-lg {\n  padding: 24px;\n  border-radius: 6px;\n}\n.well-sm {\n  padding: 9px;\n  border-radius: 3px;\n}\n.close {\n  float: right;\n  font-size: 21px;\n  font-weight: bold;\n  line-height: 1;\n  color: #000;\n  text-shadow: 0 1px 0 #fff;\n  filter: alpha(opacity=20);\n  opacity: .2;\n}\n.close:hover,\n.close:focus {\n  color: #000;\n  text-decoration: none;\n  cursor: pointer;\n  filter: alpha(opacity=50);\n  opacity: .5;\n}\nbutton.close {\n  -webkit-appearance: none;\n  padding: 0;\n  cursor: pointer;\n  background: transparent;\n  border: 0;\n}\n.modal-open {\n  overflow: hidden;\n}\n.modal {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1050;\n  display: none;\n  overflow: hidden;\n  -webkit-overflow-scrolling: touch;\n  outline: 0;\n}\n.modal.fade .modal-dialog {\n  -webkit-transition: -webkit-transform .3s ease-out;\n       -o-transition:      -o-transform .3s ease-out;\n          transition:         transform .3s ease-out;\n  -webkit-transform: translate(0, -25%);\n      -ms-transform: translate(0, -25%);\n       -o-transform: translate(0, -25%);\n          transform: translate(0, -25%);\n}\n.modal.in .modal-dialog {\n  -webkit-transform: translate(0, 0);\n      -ms-transform: translate(0, 0);\n       -o-transform: translate(0, 0);\n          transform: translate(0, 0);\n}\n.modal-open .modal {\n  overflow-x: hidden;\n  overflow-y: auto;\n}\n.modal-dialog {\n  position: relative;\n  width: auto;\n  margin: 10px;\n}\n.modal-content {\n  position: relative;\n  background-color: #fff;\n  -webkit-background-clip: padding-box;\n          background-clip: padding-box;\n  border: 1px solid #999;\n  border: 1px solid rgba(0, 0, 0, .2);\n  border-radius: 6px;\n  outline: 0;\n  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);\n          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);\n}\n.modal-backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1040;\n  background-color: #000;\n}\n.modal-backdrop.fade {\n  filter: alpha(opacity=0);\n  opacity: 0;\n}\n.modal-backdrop.in {\n  filter: alpha(opacity=50);\n  opacity: .5;\n}\n.modal-header {\n  min-height: 16.42857143px;\n  padding: 15px;\n  border-bottom: 1px solid #e5e5e5;\n}\n.modal-header .close {\n  margin-top: -2px;\n}\n.modal-title {\n  margin: 0;\n  line-height: 1.42857143;\n}\n.modal-body {\n  position: relative;\n  padding: 15px;\n}\n.modal-footer {\n  padding: 15px;\n  text-align: right;\n  border-top: 1px solid #e5e5e5;\n}\n.modal-footer .btn + .btn {\n  margin-bottom: 0;\n  margin-left: 5px;\n}\n.modal-footer .btn-group .btn + .btn {\n  margin-left: -1px;\n}\n.modal-footer .btn-block + .btn-block {\n  margin-left: 0;\n}\n.modal-scrollbar-measure {\n  position: absolute;\n  top: -9999px;\n  width: 50px;\n  height: 50px;\n  overflow: scroll;\n}\n@media (min-width: 768px) {\n  .modal-dialog {\n    width: 600px;\n    margin: 30px auto;\n  }\n  .modal-content {\n    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);\n            box-shadow: 0 5px 15px rgba(0, 0, 0, .5);\n  }\n  .modal-sm {\n    width: 300px;\n  }\n}\n@media (min-width: 992px) {\n  .modal-lg {\n    width: 900px;\n  }\n}\n.tooltip {\n  position: absolute;\n  z-index: 1070;\n  display: block;\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-size: 12px;\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1.42857143;\n  text-align: left;\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  letter-spacing: normal;\n  word-break: normal;\n  word-spacing: normal;\n  word-wrap: normal;\n  white-space: normal;\n  filter: alpha(opacity=0);\n  opacity: 0;\n\n  line-break: auto;\n}\n.tooltip.in {\n  filter: alpha(opacity=90);\n  opacity: .9;\n}\n.tooltip.top {\n  padding: 5px 0;\n  margin-top: -3px;\n}\n.tooltip.right {\n  padding: 0 5px;\n  margin-left: 3px;\n}\n.tooltip.bottom {\n  padding: 5px 0;\n  margin-top: 3px;\n}\n.tooltip.left {\n  padding: 0 5px;\n  margin-left: -3px;\n}\n.tooltip-inner {\n  max-width: 200px;\n  padding: 3px 8px;\n  color: #fff;\n  text-align: center;\n  background-color: #000;\n  border-radius: 4px;\n}\n.tooltip-arrow {\n  position: absolute;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n.tooltip.top .tooltip-arrow {\n  bottom: 0;\n  left: 50%;\n  margin-left: -5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000;\n}\n.tooltip.top-left .tooltip-arrow {\n  right: 5px;\n  bottom: 0;\n  margin-bottom: -5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000;\n}\n.tooltip.top-right .tooltip-arrow {\n  bottom: 0;\n  left: 5px;\n  margin-bottom: -5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000;\n}\n.tooltip.right .tooltip-arrow {\n  top: 50%;\n  left: 0;\n  margin-top: -5px;\n  border-width: 5px 5px 5px 0;\n  border-right-color: #000;\n}\n.tooltip.left .tooltip-arrow {\n  top: 50%;\n  right: 0;\n  margin-top: -5px;\n  border-width: 5px 0 5px 5px;\n  border-left-color: #000;\n}\n.tooltip.bottom .tooltip-arrow {\n  top: 0;\n  left: 50%;\n  margin-left: -5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000;\n}\n.tooltip.bottom-left .tooltip-arrow {\n  top: 0;\n  right: 5px;\n  margin-top: -5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000;\n}\n.tooltip.bottom-right .tooltip-arrow {\n  top: 0;\n  left: 5px;\n  margin-top: -5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000;\n}\n.popover {\n  position: absolute;\n  top: 0;\n  left: 0;\n  z-index: 1060;\n  display: none;\n  max-width: 276px;\n  padding: 1px;\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-size: 14px;\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1.42857143;\n  text-align: left;\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  letter-spacing: normal;\n  word-break: normal;\n  word-spacing: normal;\n  word-wrap: normal;\n  white-space: normal;\n  background-color: #fff;\n  -webkit-background-clip: padding-box;\n          background-clip: padding-box;\n  border: 1px solid #ccc;\n  border: 1px solid rgba(0, 0, 0, .2);\n  border-radius: 6px;\n  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);\n          box-shadow: 0 5px 10px rgba(0, 0, 0, .2);\n\n  line-break: auto;\n}\n.popover.top {\n  margin-top: -10px;\n}\n.popover.right {\n  margin-left: 10px;\n}\n.popover.bottom {\n  margin-top: 10px;\n}\n.popover.left {\n  margin-left: -10px;\n}\n.popover-title {\n  padding: 8px 14px;\n  margin: 0;\n  font-size: 14px;\n  background-color: #f7f7f7;\n  border-bottom: 1px solid #ebebeb;\n  border-radius: 5px 5px 0 0;\n}\n.popover-content {\n  padding: 9px 14px;\n}\n.popover > .arrow,\n.popover > .arrow:after {\n  position: absolute;\n  display: block;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n.popover > .arrow {\n  border-width: 11px;\n}\n.popover > .arrow:after {\n  content: \"\";\n  border-width: 10px;\n}\n.popover.top > .arrow {\n  bottom: -11px;\n  left: 50%;\n  margin-left: -11px;\n  border-top-color: #999;\n  border-top-color: rgba(0, 0, 0, .25);\n  border-bottom-width: 0;\n}\n.popover.top > .arrow:after {\n  bottom: 1px;\n  margin-left: -10px;\n  content: \" \";\n  border-top-color: #fff;\n  border-bottom-width: 0;\n}\n.popover.right > .arrow {\n  top: 50%;\n  left: -11px;\n  margin-top: -11px;\n  border-right-color: #999;\n  border-right-color: rgba(0, 0, 0, .25);\n  border-left-width: 0;\n}\n.popover.right > .arrow:after {\n  bottom: -10px;\n  left: 1px;\n  content: \" \";\n  border-right-color: #fff;\n  border-left-width: 0;\n}\n.popover.bottom > .arrow {\n  top: -11px;\n  left: 50%;\n  margin-left: -11px;\n  border-top-width: 0;\n  border-bottom-color: #999;\n  border-bottom-color: rgba(0, 0, 0, .25);\n}\n.popover.bottom > .arrow:after {\n  top: 1px;\n  margin-left: -10px;\n  content: \" \";\n  border-top-width: 0;\n  border-bottom-color: #fff;\n}\n.popover.left > .arrow {\n  top: 50%;\n  right: -11px;\n  margin-top: -11px;\n  border-right-width: 0;\n  border-left-color: #999;\n  border-left-color: rgba(0, 0, 0, .25);\n}\n.popover.left > .arrow:after {\n  right: 1px;\n  bottom: -10px;\n  content: \" \";\n  border-right-width: 0;\n  border-left-color: #fff;\n}\n.carousel {\n  position: relative;\n}\n.carousel-inner {\n  position: relative;\n  width: 100%;\n  overflow: hidden;\n}\n.carousel-inner > .item {\n  position: relative;\n  display: none;\n  -webkit-transition: .6s ease-in-out left;\n       -o-transition: .6s ease-in-out left;\n          transition: .6s ease-in-out left;\n}\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n  line-height: 1;\n}\n@media all and (transform-3d), (-webkit-transform-3d) {\n  .carousel-inner > .item {\n    -webkit-transition: -webkit-transform .6s ease-in-out;\n         -o-transition:      -o-transform .6s ease-in-out;\n            transition:         transform .6s ease-in-out;\n\n    -webkit-backface-visibility: hidden;\n            backface-visibility: hidden;\n    -webkit-perspective: 1000px;\n            perspective: 1000px;\n  }\n  .carousel-inner > .item.next,\n  .carousel-inner > .item.active.right {\n    left: 0;\n    -webkit-transform: translate3d(100%, 0, 0);\n            transform: translate3d(100%, 0, 0);\n  }\n  .carousel-inner > .item.prev,\n  .carousel-inner > .item.active.left {\n    left: 0;\n    -webkit-transform: translate3d(-100%, 0, 0);\n            transform: translate3d(-100%, 0, 0);\n  }\n  .carousel-inner > .item.next.left,\n  .carousel-inner > .item.prev.right,\n  .carousel-inner > .item.active {\n    left: 0;\n    -webkit-transform: translate3d(0, 0, 0);\n            transform: translate3d(0, 0, 0);\n  }\n}\n.carousel-inner > .active,\n.carousel-inner > .next,\n.carousel-inner > .prev {\n  display: block;\n}\n.carousel-inner > .active {\n  left: 0;\n}\n.carousel-inner > .next,\n.carousel-inner > .prev {\n  position: absolute;\n  top: 0;\n  width: 100%;\n}\n.carousel-inner > .next {\n  left: 100%;\n}\n.carousel-inner > .prev {\n  left: -100%;\n}\n.carousel-inner > .next.left,\n.carousel-inner > .prev.right {\n  left: 0;\n}\n.carousel-inner > .active.left {\n  left: -100%;\n}\n.carousel-inner > .active.right {\n  left: 100%;\n}\n.carousel-control {\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  width: 15%;\n  font-size: 20px;\n  color: #fff;\n  text-align: center;\n  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);\n  filter: alpha(opacity=50);\n  opacity: .5;\n}\n.carousel-control.left {\n  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);\n  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);\n  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));\n  background-image:         linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n  background-repeat: repeat-x;\n}\n.carousel-control.right {\n  right: 0;\n  left: auto;\n  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);\n  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);\n  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));\n  background-image:         linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n  background-repeat: repeat-x;\n}\n.carousel-control:hover,\n.carousel-control:focus {\n  color: #fff;\n  text-decoration: none;\n  filter: alpha(opacity=90);\n  outline: 0;\n  opacity: .9;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-left,\n.carousel-control .glyphicon-chevron-right {\n  position: absolute;\n  top: 50%;\n  z-index: 5;\n  display: inline-block;\n  margin-top: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .glyphicon-chevron-left {\n  left: 50%;\n  margin-left: -10px;\n}\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-right {\n  right: 50%;\n  margin-right: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next {\n  width: 20px;\n  height: 20px;\n  font-family: serif;\n  line-height: 1;\n}\n.carousel-control .icon-prev:before {\n  content: '\\2039';\n}\n.carousel-control .icon-next:before {\n  content: '\\203a';\n}\n.carousel-indicators {\n  position: absolute;\n  bottom: 10px;\n  left: 50%;\n  z-index: 15;\n  width: 60%;\n  padding-left: 0;\n  margin-left: -30%;\n  text-align: center;\n  list-style: none;\n}\n.carousel-indicators li {\n  display: inline-block;\n  width: 10px;\n  height: 10px;\n  margin: 1px;\n  text-indent: -999px;\n  cursor: pointer;\n  background-color: #000 \\9;\n  background-color: rgba(0, 0, 0, 0);\n  border: 1px solid #fff;\n  border-radius: 10px;\n}\n.carousel-indicators .active {\n  width: 12px;\n  height: 12px;\n  margin: 0;\n  background-color: #fff;\n}\n.carousel-caption {\n  position: absolute;\n  right: 15%;\n  bottom: 20px;\n  left: 15%;\n  z-index: 10;\n  padding-top: 20px;\n  padding-bottom: 20px;\n  color: #fff;\n  text-align: center;\n  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);\n}\n.carousel-caption .btn {\n  text-shadow: none;\n}\n@media screen and (min-width: 768px) {\n  .carousel-control .glyphicon-chevron-left,\n  .carousel-control .glyphicon-chevron-right,\n  .carousel-control .icon-prev,\n  .carousel-control .icon-next {\n    width: 30px;\n    height: 30px;\n    margin-top: -15px;\n    font-size: 30px;\n  }\n  .carousel-control .glyphicon-chevron-left,\n  .carousel-control .icon-prev {\n    margin-left: -15px;\n  }\n  .carousel-control .glyphicon-chevron-right,\n  .carousel-control .icon-next {\n    margin-right: -15px;\n  }\n  .carousel-caption {\n    right: 20%;\n    left: 20%;\n    padding-bottom: 30px;\n  }\n  .carousel-indicators {\n    bottom: 20px;\n  }\n}\n.clearfix:before,\n.clearfix:after,\n.dl-horizontal dd:before,\n.dl-horizontal dd:after,\n.container:before,\n.container:after,\n.container-fluid:before,\n.container-fluid:after,\n.row:before,\n.row:after,\n.form-horizontal .form-group:before,\n.form-horizontal .form-group:after,\n.btn-toolbar:before,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:before,\n.btn-group-vertical > .btn-group:after,\n.nav:before,\n.nav:after,\n.navbar:before,\n.navbar:after,\n.navbar-header:before,\n.navbar-header:after,\n.navbar-collapse:before,\n.navbar-collapse:after,\n.pager:before,\n.pager:after,\n.panel-body:before,\n.panel-body:after,\n.modal-footer:before,\n.modal-footer:after {\n  display: table;\n  content: \" \";\n}\n.clearfix:after,\n.dl-horizontal dd:after,\n.container:after,\n.container-fluid:after,\n.row:after,\n.form-horizontal .form-group:after,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:after,\n.nav:after,\n.navbar:after,\n.navbar-header:after,\n.navbar-collapse:after,\n.pager:after,\n.panel-body:after,\n.modal-footer:after {\n  clear: both;\n}\n.center-block {\n  display: block;\n  margin-right: auto;\n  margin-left: auto;\n}\n.pull-right {\n  float: right !important;\n}\n.pull-left {\n  float: left !important;\n}\n.hide {\n  display: none !important;\n}\n.show {\n  display: block !important;\n}\n.invisible {\n  visibility: hidden;\n}\n.text-hide {\n  font: 0/0 a;\n  color: transparent;\n  text-shadow: none;\n  background-color: transparent;\n  border: 0;\n}\n.hidden {\n  display: none !important;\n}\n.affix {\n  position: fixed;\n}\n@-ms-viewport {\n  width: device-width;\n}\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n  display: none !important;\n}\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n  display: none !important;\n}\n@media (max-width: 767px) {\n  .visible-xs {\n    display: block !important;\n  }\n  table.visible-xs {\n    display: table !important;\n  }\n  tr.visible-xs {\n    display: table-row !important;\n  }\n  th.visible-xs,\n  td.visible-xs {\n    display: table-cell !important;\n  }\n}\n@media (max-width: 767px) {\n  .visible-xs-block {\n    display: block !important;\n  }\n}\n@media (max-width: 767px) {\n  .visible-xs-inline {\n    display: inline !important;\n  }\n}\n@media (max-width: 767px) {\n  .visible-xs-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm {\n    display: block !important;\n  }\n  table.visible-sm {\n    display: table !important;\n  }\n  tr.visible-sm {\n    display: table-row !important;\n  }\n  th.visible-sm,\n  td.visible-sm {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm-block {\n    display: block !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm-inline {\n    display: inline !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md {\n    display: block !important;\n  }\n  table.visible-md {\n    display: table !important;\n  }\n  tr.visible-md {\n    display: table-row !important;\n  }\n  th.visible-md,\n  td.visible-md {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md-block {\n    display: block !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md-inline {\n    display: inline !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg {\n    display: block !important;\n  }\n  table.visible-lg {\n    display: table !important;\n  }\n  tr.visible-lg {\n    display: table-row !important;\n  }\n  th.visible-lg,\n  td.visible-lg {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg-block {\n    display: block !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg-inline {\n    display: inline !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (max-width: 767px) {\n  .hidden-xs {\n    display: none !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .hidden-sm {\n    display: none !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .hidden-md {\n    display: none !important;\n  }\n}\n@media (min-width: 1200px) {\n  .hidden-lg {\n    display: none !important;\n  }\n}\n.visible-print {\n  display: none !important;\n}\n@media print {\n  .visible-print {\n    display: block !important;\n  }\n  table.visible-print {\n    display: table !important;\n  }\n  tr.visible-print {\n    display: table-row !important;\n  }\n  th.visible-print,\n  td.visible-print {\n    display: table-cell !important;\n  }\n}\n.visible-print-block {\n  display: none !important;\n}\n@media print {\n  .visible-print-block {\n    display: block !important;\n  }\n}\n.visible-print-inline {\n  display: none !important;\n}\n@media print {\n  .visible-print-inline {\n    display: inline !important;\n  }\n}\n.visible-print-inline-block {\n  display: none !important;\n}\n@media print {\n  .visible-print-inline-block {\n    display: inline-block !important;\n  }\n}\n@media print {\n  .hidden-print {\n    display: none !important;\n  }\n}\n/*# sourceMappingURL=bootstrap.css.map */\n"
  },
  {
    "path": "docs/site_libs/bootstrap-3.3.5/js/bootstrap.js",
    "content": "/*!\n * Bootstrap v3.3.5 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under the MIT license\n */\n\nif (typeof jQuery === 'undefined') {\n  throw new Error('Bootstrap\\'s JavaScript requires jQuery')\n}\n\n+function ($) {\n  'use strict';\n  var version = $.fn.jquery.split(' ')[0].split('.')\n  if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1)) {\n    throw new Error('Bootstrap\\'s JavaScript requires jQuery version 1.9.1 or higher')\n  }\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: transition.js v3.3.5\n * http://getbootstrap.com/javascript/#transitions\n * ========================================================================\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)\n  // ============================================================\n\n  function transitionEnd() {\n    var el = document.createElement('bootstrap')\n\n    var transEndEventNames = {\n      WebkitTransition : 'webkitTransitionEnd',\n      MozTransition    : 'transitionend',\n      OTransition      : 'oTransitionEnd otransitionend',\n      transition       : 'transitionend'\n    }\n\n    for (var name in transEndEventNames) {\n      if (el.style[name] !== undefined) {\n        return { end: transEndEventNames[name] }\n      }\n    }\n\n    return false // explicit for ie8 (  ._.)\n  }\n\n  // http://blog.alexmaccaw.com/css-transitions\n  $.fn.emulateTransitionEnd = function (duration) {\n    var called = false\n    var $el = this\n    $(this).one('bsTransitionEnd', function () { called = true })\n    var callback = function () { if (!called) $($el).trigger($.support.transition.end) }\n    setTimeout(callback, duration)\n    return this\n  }\n\n  $(function () {\n    $.support.transition = transitionEnd()\n\n    if (!$.support.transition) return\n\n    $.event.special.bsTransitionEnd = {\n      bindType: $.support.transition.end,\n      delegateType: $.support.transition.end,\n      handle: function (e) {\n        if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments)\n      }\n    }\n  })\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: alert.js v3.3.5\n * http://getbootstrap.com/javascript/#alerts\n * ========================================================================\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // ALERT CLASS DEFINITION\n  // ======================\n\n  var dismiss = '[data-dismiss=\"alert\"]'\n  var Alert   = function (el) {\n    $(el).on('click', dismiss, this.close)\n  }\n\n  Alert.VERSION = '3.3.5'\n\n  Alert.TRANSITION_DURATION = 150\n\n  Alert.prototype.close = function (e) {\n    var $this    = $(this)\n    var selector = $this.attr('data-target')\n\n    if (!selector) {\n      selector = $this.attr('href')\n      selector = selector && selector.replace(/.*(?=#[^\\s]*$)/, '') // strip for ie7\n    }\n\n    var $parent = $(selector)\n\n    if (e) e.preventDefault()\n\n    if (!$parent.length) {\n      $parent = $this.closest('.alert')\n    }\n\n    $parent.trigger(e = $.Event('close.bs.alert'))\n\n    if (e.isDefaultPrevented()) return\n\n    $parent.removeClass('in')\n\n    function removeElement() {\n      // detach from parent, fire event then clean up data\n      $parent.detach().trigger('closed.bs.alert').remove()\n    }\n\n    $.support.transition && $parent.hasClass('fade') ?\n      $parent\n        .one('bsTransitionEnd', removeElement)\n        .emulateTransitionEnd(Alert.TRANSITION_DURATION) :\n      removeElement()\n  }\n\n\n  // ALERT PLUGIN DEFINITION\n  // =======================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this = $(this)\n      var data  = $this.data('bs.alert')\n\n      if (!data) $this.data('bs.alert', (data = new Alert(this)))\n      if (typeof option == 'string') data[option].call($this)\n    })\n  }\n\n  var old = $.fn.alert\n\n  $.fn.alert             = Plugin\n  $.fn.alert.Constructor = Alert\n\n\n  // ALERT NO CONFLICT\n  // =================\n\n  $.fn.alert.noConflict = function () {\n    $.fn.alert = old\n    return this\n  }\n\n\n  // ALERT DATA-API\n  // ==============\n\n  $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: button.js v3.3.5\n * http://getbootstrap.com/javascript/#buttons\n * ========================================================================\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // BUTTON PUBLIC CLASS DEFINITION\n  // ==============================\n\n  var Button = function (element, options) {\n    this.$element  = $(element)\n    this.options   = $.extend({}, Button.DEFAULTS, options)\n    this.isLoading = false\n  }\n\n  Button.VERSION  = '3.3.5'\n\n  Button.DEFAULTS = {\n    loadingText: 'loading...'\n  }\n\n  Button.prototype.setState = function (state) {\n    var d    = 'disabled'\n    var $el  = this.$element\n    var val  = $el.is('input') ? 'val' : 'html'\n    var data = $el.data()\n\n    state += 'Text'\n\n    if (data.resetText == null) $el.data('resetText', $el[val]())\n\n    // push to event loop to allow forms to submit\n    setTimeout($.proxy(function () {\n      $el[val](data[state] == null ? this.options[state] : data[state])\n\n      if (state == 'loadingText') {\n        this.isLoading = true\n        $el.addClass(d).attr(d, d)\n      } else if (this.isLoading) {\n        this.isLoading = false\n        $el.removeClass(d).removeAttr(d)\n      }\n    }, this), 0)\n  }\n\n  Button.prototype.toggle = function () {\n    var changed = true\n    var $parent = this.$element.closest('[data-toggle=\"buttons\"]')\n\n    if ($parent.length) {\n      var $input = this.$element.find('input')\n      if ($input.prop('type') == 'radio') {\n        if ($input.prop('checked')) changed = false\n        $parent.find('.active').removeClass('active')\n        this.$element.addClass('active')\n      } else if ($input.prop('type') == 'checkbox') {\n        if (($input.prop('checked')) !== this.$element.hasClass('active')) changed = false\n        this.$element.toggleClass('active')\n      }\n      $input.prop('checked', this.$element.hasClass('active'))\n      if (changed) $input.trigger('change')\n    } else {\n      this.$element.attr('aria-pressed', !this.$element.hasClass('active'))\n      this.$element.toggleClass('active')\n    }\n  }\n\n\n  // BUTTON PLUGIN DEFINITION\n  // ========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.button')\n      var options = typeof option == 'object' && option\n\n      if (!data) $this.data('bs.button', (data = new Button(this, options)))\n\n      if (option == 'toggle') data.toggle()\n      else if (option) data.setState(option)\n    })\n  }\n\n  var old = $.fn.button\n\n  $.fn.button             = Plugin\n  $.fn.button.Constructor = Button\n\n\n  // BUTTON NO CONFLICT\n  // ==================\n\n  $.fn.button.noConflict = function () {\n    $.fn.button = old\n    return this\n  }\n\n\n  // BUTTON DATA-API\n  // ===============\n\n  $(document)\n    .on('click.bs.button.data-api', '[data-toggle^=\"button\"]', function (e) {\n      var $btn = $(e.target)\n      if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')\n      Plugin.call($btn, 'toggle')\n      if (!($(e.target).is('input[type=\"radio\"]') || $(e.target).is('input[type=\"checkbox\"]'))) e.preventDefault()\n    })\n    .on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^=\"button\"]', function (e) {\n      $(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type))\n    })\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: carousel.js v3.3.5\n * http://getbootstrap.com/javascript/#carousel\n * ========================================================================\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // CAROUSEL CLASS DEFINITION\n  // =========================\n\n  var Carousel = function (element, options) {\n    this.$element    = $(element)\n    this.$indicators = this.$element.find('.carousel-indicators')\n    this.options     = options\n    this.paused      = null\n    this.sliding     = null\n    this.interval    = null\n    this.$active     = null\n    this.$items      = null\n\n    this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this))\n\n    this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element\n      .on('mouseenter.bs.carousel', $.proxy(this.pause, this))\n      .on('mouseleave.bs.carousel', $.proxy(this.cycle, this))\n  }\n\n  Carousel.VERSION  = '3.3.5'\n\n  Carousel.TRANSITION_DURATION = 600\n\n  Carousel.DEFAULTS = {\n    interval: 5000,\n    pause: 'hover',\n    wrap: true,\n    keyboard: true\n  }\n\n  Carousel.prototype.keydown = function (e) {\n    if (/input|textarea/i.test(e.target.tagName)) return\n    switch (e.which) {\n      case 37: this.prev(); break\n      case 39: this.next(); break\n      default: return\n    }\n\n    e.preventDefault()\n  }\n\n  Carousel.prototype.cycle = function (e) {\n    e || (this.paused = false)\n\n    this.interval && clearInterval(this.interval)\n\n    this.options.interval\n      && !this.paused\n      && (this.interval = setInterval($.proxy(this.next, this), this.options.interval))\n\n    return this\n  }\n\n  Carousel.prototype.getItemIndex = function (item) {\n    this.$items = item.parent().children('.item')\n    return this.$items.index(item || this.$active)\n  }\n\n  Carousel.prototype.getItemForDirection = function (direction, active) {\n    var activeIndex = this.getItemIndex(active)\n    var willWrap = (direction == 'prev' && activeIndex === 0)\n                || (direction == 'next' && activeIndex == (this.$items.length - 1))\n    if (willWrap && !this.options.wrap) return active\n    var delta = direction == 'prev' ? -1 : 1\n    var itemIndex = (activeIndex + delta) % this.$items.length\n    return this.$items.eq(itemIndex)\n  }\n\n  Carousel.prototype.to = function (pos) {\n    var that        = this\n    var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active'))\n\n    if (pos > (this.$items.length - 1) || pos < 0) return\n\n    if (this.sliding)       return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, \"slid\"\n    if (activeIndex == pos) return this.pause().cycle()\n\n    return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos))\n  }\n\n  Carousel.prototype.pause = function (e) {\n    e || (this.paused = true)\n\n    if (this.$element.find('.next, .prev').length && $.support.transition) {\n      this.$element.trigger($.support.transition.end)\n      this.cycle(true)\n    }\n\n    this.interval = clearInterval(this.interval)\n\n    return this\n  }\n\n  Carousel.prototype.next = function () {\n    if (this.sliding) return\n    return this.slide('next')\n  }\n\n  Carousel.prototype.prev = function () {\n    if (this.sliding) return\n    return this.slide('prev')\n  }\n\n  Carousel.prototype.slide = function (type, next) {\n    var $active   = this.$element.find('.item.active')\n    var $next     = next || this.getItemForDirection(type, $active)\n    var isCycling = this.interval\n    var direction = type == 'next' ? 'left' : 'right'\n    var that      = this\n\n    if ($next.hasClass('active')) return (this.sliding = false)\n\n    var relatedTarget = $next[0]\n    var slideEvent = $.Event('slide.bs.carousel', {\n      relatedTarget: relatedTarget,\n      direction: direction\n    })\n    this.$element.trigger(slideEvent)\n    if (slideEvent.isDefaultPrevented()) return\n\n    this.sliding = true\n\n    isCycling && this.pause()\n\n    if (this.$indicators.length) {\n      this.$indicators.find('.active').removeClass('active')\n      var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)])\n      $nextIndicator && $nextIndicator.addClass('active')\n    }\n\n    var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, \"slid\"\n    if ($.support.transition && this.$element.hasClass('slide')) {\n      $next.addClass(type)\n      $next[0].offsetWidth // force reflow\n      $active.addClass(direction)\n      $next.addClass(direction)\n      $active\n        .one('bsTransitionEnd', function () {\n          $next.removeClass([type, direction].join(' ')).addClass('active')\n          $active.removeClass(['active', direction].join(' '))\n          that.sliding = false\n          setTimeout(function () {\n            that.$element.trigger(slidEvent)\n          }, 0)\n        })\n        .emulateTransitionEnd(Carousel.TRANSITION_DURATION)\n    } else {\n      $active.removeClass('active')\n      $next.addClass('active')\n      this.sliding = false\n      this.$element.trigger(slidEvent)\n    }\n\n    isCycling && this.cycle()\n\n    return this\n  }\n\n\n  // CAROUSEL PLUGIN DEFINITION\n  // ==========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.carousel')\n      var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)\n      var action  = typeof option == 'string' ? option : options.slide\n\n      if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))\n      if (typeof option == 'number') data.to(option)\n      else if (action) data[action]()\n      else if (options.interval) data.pause().cycle()\n    })\n  }\n\n  var old = $.fn.carousel\n\n  $.fn.carousel             = Plugin\n  $.fn.carousel.Constructor = Carousel\n\n\n  // CAROUSEL NO CONFLICT\n  // ====================\n\n  $.fn.carousel.noConflict = function () {\n    $.fn.carousel = old\n    return this\n  }\n\n\n  // CAROUSEL DATA-API\n  // =================\n\n  var clickHandler = function (e) {\n    var href\n    var $this   = $(this)\n    var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\\s]+$)/, '')) // strip for ie7\n    if (!$target.hasClass('carousel')) return\n    var options = $.extend({}, $target.data(), $this.data())\n    var slideIndex = $this.attr('data-slide-to')\n    if (slideIndex) options.interval = false\n\n    Plugin.call($target, options)\n\n    if (slideIndex) {\n      $target.data('bs.carousel').to(slideIndex)\n    }\n\n    e.preventDefault()\n  }\n\n  $(document)\n    .on('click.bs.carousel.data-api', '[data-slide]', clickHandler)\n    .on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler)\n\n  $(window).on('load', function () {\n    $('[data-ride=\"carousel\"]').each(function () {\n      var $carousel = $(this)\n      Plugin.call($carousel, $carousel.data())\n    })\n  })\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: collapse.js v3.3.5\n * http://getbootstrap.com/javascript/#collapse\n * ========================================================================\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // COLLAPSE PUBLIC CLASS DEFINITION\n  // ================================\n\n  var Collapse = function (element, options) {\n    this.$element      = $(element)\n    this.options       = $.extend({}, Collapse.DEFAULTS, options)\n    this.$trigger      = $('[data-toggle=\"collapse\"][href=\"#' + element.id + '\"],' +\n                           '[data-toggle=\"collapse\"][data-target=\"#' + element.id + '\"]')\n    this.transitioning = null\n\n    if (this.options.parent) {\n      this.$parent = this.getParent()\n    } else {\n      this.addAriaAndCollapsedClass(this.$element, this.$trigger)\n    }\n\n    if (this.options.toggle) this.toggle()\n  }\n\n  Collapse.VERSION  = '3.3.5'\n\n  Collapse.TRANSITION_DURATION = 350\n\n  Collapse.DEFAULTS = {\n    toggle: true\n  }\n\n  Collapse.prototype.dimension = function () {\n    var hasWidth = this.$element.hasClass('width')\n    return hasWidth ? 'width' : 'height'\n  }\n\n  Collapse.prototype.show = function () {\n    if (this.transitioning || this.$element.hasClass('in')) return\n\n    var activesData\n    var actives = this.$parent && this.$parent.children('.panel').children('.in, .collapsing')\n\n    if (actives && actives.length) {\n      activesData = actives.data('bs.collapse')\n      if (activesData && activesData.transitioning) return\n    }\n\n    var startEvent = $.Event('show.bs.collapse')\n    this.$element.trigger(startEvent)\n    if (startEvent.isDefaultPrevented()) return\n\n    if (actives && actives.length) {\n      Plugin.call(actives, 'hide')\n      activesData || actives.data('bs.collapse', null)\n    }\n\n    var dimension = this.dimension()\n\n    this.$element\n      .removeClass('collapse')\n      .addClass('collapsing')[dimension](0)\n      .attr('aria-expanded', true)\n\n    this.$trigger\n      .removeClass('collapsed')\n      .attr('aria-expanded', true)\n\n    this.transitioning = 1\n\n    var complete = function () {\n      this.$element\n        .removeClass('collapsing')\n        .addClass('collapse in')[dimension]('')\n      this.transitioning = 0\n      this.$element\n        .trigger('shown.bs.collapse')\n    }\n\n    if (!$.support.transition) return complete.call(this)\n\n    var scrollSize = $.camelCase(['scroll', dimension].join('-'))\n\n    this.$element\n      .one('bsTransitionEnd', $.proxy(complete, this))\n      .emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize])\n  }\n\n  Collapse.prototype.hide = function () {\n    if (this.transitioning || !this.$element.hasClass('in')) return\n\n    var startEvent = $.Event('hide.bs.collapse')\n    this.$element.trigger(startEvent)\n    if (startEvent.isDefaultPrevented()) return\n\n    var dimension = this.dimension()\n\n    this.$element[dimension](this.$element[dimension]())[0].offsetHeight\n\n    this.$element\n      .addClass('collapsing')\n      .removeClass('collapse in')\n      .attr('aria-expanded', false)\n\n    this.$trigger\n      .addClass('collapsed')\n      .attr('aria-expanded', false)\n\n    this.transitioning = 1\n\n    var complete = function () {\n      this.transitioning = 0\n      this.$element\n        .removeClass('collapsing')\n        .addClass('collapse')\n        .trigger('hidden.bs.collapse')\n    }\n\n    if (!$.support.transition) return complete.call(this)\n\n    this.$element\n      [dimension](0)\n      .one('bsTransitionEnd', $.proxy(complete, this))\n      .emulateTransitionEnd(Collapse.TRANSITION_DURATION)\n  }\n\n  Collapse.prototype.toggle = function () {\n    this[this.$element.hasClass('in') ? 'hide' : 'show']()\n  }\n\n  Collapse.prototype.getParent = function () {\n    return $(this.options.parent)\n      .find('[data-toggle=\"collapse\"][data-parent=\"' + this.options.parent + '\"]')\n      .each($.proxy(function (i, element) {\n        var $element = $(element)\n        this.addAriaAndCollapsedClass(getTargetFromTrigger($element), $element)\n      }, this))\n      .end()\n  }\n\n  Collapse.prototype.addAriaAndCollapsedClass = function ($element, $trigger) {\n    var isOpen = $element.hasClass('in')\n\n    $element.attr('aria-expanded', isOpen)\n    $trigger\n      .toggleClass('collapsed', !isOpen)\n      .attr('aria-expanded', isOpen)\n  }\n\n  function getTargetFromTrigger($trigger) {\n    var href\n    var target = $trigger.attr('data-target')\n      || (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\\s]+$)/, '') // strip for ie7\n\n    return $(target)\n  }\n\n\n  // COLLAPSE PLUGIN DEFINITION\n  // ==========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.collapse')\n      var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)\n\n      if (!data && options.toggle && /show|hide/.test(option)) options.toggle = false\n      if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))\n      if (typeof option == 'string') data[option]()\n    })\n  }\n\n  var old = $.fn.collapse\n\n  $.fn.collapse             = Plugin\n  $.fn.collapse.Constructor = Collapse\n\n\n  // COLLAPSE NO CONFLICT\n  // ====================\n\n  $.fn.collapse.noConflict = function () {\n    $.fn.collapse = old\n    return this\n  }\n\n\n  // COLLAPSE DATA-API\n  // =================\n\n  $(document).on('click.bs.collapse.data-api', '[data-toggle=\"collapse\"]', function (e) {\n    var $this   = $(this)\n\n    if (!$this.attr('data-target')) e.preventDefault()\n\n    var $target = getTargetFromTrigger($this)\n    var data    = $target.data('bs.collapse')\n    var option  = data ? 'toggle' : $this.data()\n\n    Plugin.call($target, option)\n  })\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: dropdown.js v3.3.5\n * http://getbootstrap.com/javascript/#dropdowns\n * ========================================================================\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // DROPDOWN CLASS DEFINITION\n  // =========================\n\n  var backdrop = '.dropdown-backdrop'\n  var toggle   = '[data-toggle=\"dropdown\"]'\n  var Dropdown = function (element) {\n    $(element).on('click.bs.dropdown', this.toggle)\n  }\n\n  Dropdown.VERSION = '3.3.5'\n\n  function getParent($this) {\n    var selector = $this.attr('data-target')\n\n    if (!selector) {\n      selector = $this.attr('href')\n      selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\\s]*$)/, '') // strip for ie7\n    }\n\n    var $parent = selector && $(selector)\n\n    return $parent && $parent.length ? $parent : $this.parent()\n  }\n\n  function clearMenus(e) {\n    if (e && e.which === 3) return\n    $(backdrop).remove()\n    $(toggle).each(function () {\n      var $this         = $(this)\n      var $parent       = getParent($this)\n      var relatedTarget = { relatedTarget: this }\n\n      if (!$parent.hasClass('open')) return\n\n      if (e && e.type == 'click' && /input|textarea/i.test(e.target.tagName) && $.contains($parent[0], e.target)) return\n\n      $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))\n\n      if (e.isDefaultPrevented()) return\n\n      $this.attr('aria-expanded', 'false')\n      $parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget)\n    })\n  }\n\n  Dropdown.prototype.toggle = function (e) {\n    var $this = $(this)\n\n    if ($this.is('.disabled, :disabled')) return\n\n    var $parent  = getParent($this)\n    var isActive = $parent.hasClass('open')\n\n    clearMenus()\n\n    if (!isActive) {\n      if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {\n        // if mobile we use a backdrop because click events don't delegate\n        $(document.createElement('div'))\n          .addClass('dropdown-backdrop')\n          .insertAfter($(this))\n          .on('click', clearMenus)\n      }\n\n      var relatedTarget = { relatedTarget: this }\n      $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))\n\n      if (e.isDefaultPrevented()) return\n\n      $this\n        .trigger('focus')\n        .attr('aria-expanded', 'true')\n\n      $parent\n        .toggleClass('open')\n        .trigger('shown.bs.dropdown', relatedTarget)\n    }\n\n    return false\n  }\n\n  Dropdown.prototype.keydown = function (e) {\n    if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return\n\n    var $this = $(this)\n\n    e.preventDefault()\n    e.stopPropagation()\n\n    if ($this.is('.disabled, :disabled')) return\n\n    var $parent  = getParent($this)\n    var isActive = $parent.hasClass('open')\n\n    if (!isActive && e.which != 27 || isActive && e.which == 27) {\n      if (e.which == 27) $parent.find(toggle).trigger('focus')\n      return $this.trigger('click')\n    }\n\n    var desc = ' li:not(.disabled):visible a'\n    var $items = $parent.find('.dropdown-menu' + desc)\n\n    if (!$items.length) return\n\n    var index = $items.index(e.target)\n\n    if (e.which == 38 && index > 0)                 index--         // up\n    if (e.which == 40 && index < $items.length - 1) index++         // down\n    if (!~index)                                    index = 0\n\n    $items.eq(index).trigger('focus')\n  }\n\n\n  // DROPDOWN PLUGIN DEFINITION\n  // ==========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this = $(this)\n      var data  = $this.data('bs.dropdown')\n\n      if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))\n      if (typeof option == 'string') data[option].call($this)\n    })\n  }\n\n  var old = $.fn.dropdown\n\n  $.fn.dropdown             = Plugin\n  $.fn.dropdown.Constructor = Dropdown\n\n\n  // DROPDOWN NO CONFLICT\n  // ====================\n\n  $.fn.dropdown.noConflict = function () {\n    $.fn.dropdown = old\n    return this\n  }\n\n\n  // APPLY TO STANDARD DROPDOWN ELEMENTS\n  // ===================================\n\n  $(document)\n    .on('click.bs.dropdown.data-api', clearMenus)\n    .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })\n    .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)\n    .on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown)\n    .on('keydown.bs.dropdown.data-api', '.dropdown-menu', Dropdown.prototype.keydown)\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: modal.js v3.3.5\n * http://getbootstrap.com/javascript/#modals\n * ========================================================================\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // MODAL CLASS DEFINITION\n  // ======================\n\n  var Modal = function (element, options) {\n    this.options             = options\n    this.$body               = $(document.body)\n    this.$element            = $(element)\n    this.$dialog             = this.$element.find('.modal-dialog')\n    this.$backdrop           = null\n    this.isShown             = null\n    this.originalBodyPad     = null\n    this.scrollbarWidth      = 0\n    this.ignoreBackdropClick = false\n\n    if (this.options.remote) {\n      this.$element\n        .find('.modal-content')\n        .load(this.options.remote, $.proxy(function () {\n          this.$element.trigger('loaded.bs.modal')\n        }, this))\n    }\n  }\n\n  Modal.VERSION  = '3.3.5'\n\n  Modal.TRANSITION_DURATION = 300\n  Modal.BACKDROP_TRANSITION_DURATION = 150\n\n  Modal.DEFAULTS = {\n    backdrop: true,\n    keyboard: true,\n    show: true\n  }\n\n  Modal.prototype.toggle = function (_relatedTarget) {\n    return this.isShown ? this.hide() : this.show(_relatedTarget)\n  }\n\n  Modal.prototype.show = function (_relatedTarget) {\n    var that = this\n    var e    = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })\n\n    this.$element.trigger(e)\n\n    if (this.isShown || e.isDefaultPrevented()) return\n\n    this.isShown = true\n\n    this.checkScrollbar()\n    this.setScrollbar()\n    this.$body.addClass('modal-open')\n\n    this.escape()\n    this.resize()\n\n    this.$element.on('click.dismiss.bs.modal', '[data-dismiss=\"modal\"]', $.proxy(this.hide, this))\n\n    this.$dialog.on('mousedown.dismiss.bs.modal', function () {\n      that.$element.one('mouseup.dismiss.bs.modal', function (e) {\n        if ($(e.target).is(that.$element)) that.ignoreBackdropClick = true\n      })\n    })\n\n    this.backdrop(function () {\n      var transition = $.support.transition && that.$element.hasClass('fade')\n\n      if (!that.$element.parent().length) {\n        that.$element.appendTo(that.$body) // don't move modals dom position\n      }\n\n      that.$element\n        .show()\n        .scrollTop(0)\n\n      that.adjustDialog()\n\n      if (transition) {\n        that.$element[0].offsetWidth // force reflow\n      }\n\n      that.$element.addClass('in')\n\n      that.enforceFocus()\n\n      var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })\n\n      transition ?\n        that.$dialog // wait for modal to slide in\n          .one('bsTransitionEnd', function () {\n            that.$element.trigger('focus').trigger(e)\n          })\n          .emulateTransitionEnd(Modal.TRANSITION_DURATION) :\n        that.$element.trigger('focus').trigger(e)\n    })\n  }\n\n  Modal.prototype.hide = function (e) {\n    if (e) e.preventDefault()\n\n    e = $.Event('hide.bs.modal')\n\n    this.$element.trigger(e)\n\n    if (!this.isShown || e.isDefaultPrevented()) return\n\n    this.isShown = false\n\n    this.escape()\n    this.resize()\n\n    $(document).off('focusin.bs.modal')\n\n    this.$element\n      .removeClass('in')\n      .off('click.dismiss.bs.modal')\n      .off('mouseup.dismiss.bs.modal')\n\n    this.$dialog.off('mousedown.dismiss.bs.modal')\n\n    $.support.transition && this.$element.hasClass('fade') ?\n      this.$element\n        .one('bsTransitionEnd', $.proxy(this.hideModal, this))\n        .emulateTransitionEnd(Modal.TRANSITION_DURATION) :\n      this.hideModal()\n  }\n\n  Modal.prototype.enforceFocus = function () {\n    $(document)\n      .off('focusin.bs.modal') // guard against infinite focus loop\n      .on('focusin.bs.modal', $.proxy(function (e) {\n        if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {\n          this.$element.trigger('focus')\n        }\n      }, this))\n  }\n\n  Modal.prototype.escape = function () {\n    if (this.isShown && this.options.keyboard) {\n      this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) {\n        e.which == 27 && this.hide()\n      }, this))\n    } else if (!this.isShown) {\n      this.$element.off('keydown.dismiss.bs.modal')\n    }\n  }\n\n  Modal.prototype.resize = function () {\n    if (this.isShown) {\n      $(window).on('resize.bs.modal', $.proxy(this.handleUpdate, this))\n    } else {\n      $(window).off('resize.bs.modal')\n    }\n  }\n\n  Modal.prototype.hideModal = function () {\n    var that = this\n    this.$element.hide()\n    this.backdrop(function () {\n      that.$body.removeClass('modal-open')\n      that.resetAdjustments()\n      that.resetScrollbar()\n      that.$element.trigger('hidden.bs.modal')\n    })\n  }\n\n  Modal.prototype.removeBackdrop = function () {\n    this.$backdrop && this.$backdrop.remove()\n    this.$backdrop = null\n  }\n\n  Modal.prototype.backdrop = function (callback) {\n    var that = this\n    var animate = this.$element.hasClass('fade') ? 'fade' : ''\n\n    if (this.isShown && this.options.backdrop) {\n      var doAnimate = $.support.transition && animate\n\n      this.$backdrop = $(document.createElement('div'))\n        .addClass('modal-backdrop ' + animate)\n        .appendTo(this.$body)\n\n      this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) {\n        if (this.ignoreBackdropClick) {\n          this.ignoreBackdropClick = false\n          return\n        }\n        if (e.target !== e.currentTarget) return\n        this.options.backdrop == 'static'\n          ? this.$element[0].focus()\n          : this.hide()\n      }, this))\n\n      if (doAnimate) this.$backdrop[0].offsetWidth // force reflow\n\n      this.$backdrop.addClass('in')\n\n      if (!callback) return\n\n      doAnimate ?\n        this.$backdrop\n          .one('bsTransitionEnd', callback)\n          .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :\n        callback()\n\n    } else if (!this.isShown && this.$backdrop) {\n      this.$backdrop.removeClass('in')\n\n      var callbackRemove = function () {\n        that.removeBackdrop()\n        callback && callback()\n      }\n      $.support.transition && this.$element.hasClass('fade') ?\n        this.$backdrop\n          .one('bsTransitionEnd', callbackRemove)\n          .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :\n        callbackRemove()\n\n    } else if (callback) {\n      callback()\n    }\n  }\n\n  // these following methods are used to handle overflowing modals\n\n  Modal.prototype.handleUpdate = function () {\n    this.adjustDialog()\n  }\n\n  Modal.prototype.adjustDialog = function () {\n    var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight\n\n    this.$element.css({\n      paddingLeft:  !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '',\n      paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : ''\n    })\n  }\n\n  Modal.prototype.resetAdjustments = function () {\n    this.$element.css({\n      paddingLeft: '',\n      paddingRight: ''\n    })\n  }\n\n  Modal.prototype.checkScrollbar = function () {\n    var fullWindowWidth = window.innerWidth\n    if (!fullWindowWidth) { // workaround for missing window.innerWidth in IE8\n      var documentElementRect = document.documentElement.getBoundingClientRect()\n      fullWindowWidth = documentElementRect.right - Math.abs(documentElementRect.left)\n    }\n    this.bodyIsOverflowing = document.body.clientWidth < fullWindowWidth\n    this.scrollbarWidth = this.measureScrollbar()\n  }\n\n  Modal.prototype.setScrollbar = function () {\n    var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10)\n    this.originalBodyPad = document.body.style.paddingRight || ''\n    if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)\n  }\n\n  Modal.prototype.resetScrollbar = function () {\n    this.$body.css('padding-right', this.originalBodyPad)\n  }\n\n  Modal.prototype.measureScrollbar = function () { // thx walsh\n    var scrollDiv = document.createElement('div')\n    scrollDiv.className = 'modal-scrollbar-measure'\n    this.$body.append(scrollDiv)\n    var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth\n    this.$body[0].removeChild(scrollDiv)\n    return scrollbarWidth\n  }\n\n\n  // MODAL PLUGIN DEFINITION\n  // =======================\n\n  function Plugin(option, _relatedTarget) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.modal')\n      var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)\n\n      if (!data) $this.data('bs.modal', (data = new Modal(this, options)))\n      if (typeof option == 'string') data[option](_relatedTarget)\n      else if (options.show) data.show(_relatedTarget)\n    })\n  }\n\n  var old = $.fn.modal\n\n  $.fn.modal             = Plugin\n  $.fn.modal.Constructor = Modal\n\n\n  // MODAL NO CONFLICT\n  // =================\n\n  $.fn.modal.noConflict = function () {\n    $.fn.modal = old\n    return this\n  }\n\n\n  // MODAL DATA-API\n  // ==============\n\n  $(document).on('click.bs.modal.data-api', '[data-toggle=\"modal\"]', function (e) {\n    var $this   = $(this)\n    var href    = $this.attr('href')\n    var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\\s]+$)/, ''))) // strip for ie7\n    var option  = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())\n\n    if ($this.is('a')) e.preventDefault()\n\n    $target.one('show.bs.modal', function (showEvent) {\n      if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown\n      $target.one('hidden.bs.modal', function () {\n        $this.is(':visible') && $this.trigger('focus')\n      })\n    })\n    Plugin.call($target, option, this)\n  })\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: tooltip.js v3.3.5\n * http://getbootstrap.com/javascript/#tooltip\n * Inspired by the original jQuery.tipsy by Jason Frame\n * ========================================================================\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // TOOLTIP PUBLIC CLASS DEFINITION\n  // ===============================\n\n  var Tooltip = function (element, options) {\n    this.type       = null\n    this.options    = null\n    this.enabled    = null\n    this.timeout    = null\n    this.hoverState = null\n    this.$element   = null\n    this.inState    = null\n\n    this.init('tooltip', element, options)\n  }\n\n  Tooltip.VERSION  = '3.3.5'\n\n  Tooltip.TRANSITION_DURATION = 150\n\n  Tooltip.DEFAULTS = {\n    animation: true,\n    placement: 'top',\n    selector: false,\n    template: '<div class=\"tooltip\" role=\"tooltip\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\"></div></div>',\n    trigger: 'hover focus',\n    title: '',\n    delay: 0,\n    html: false,\n    container: false,\n    viewport: {\n      selector: 'body',\n      padding: 0\n    }\n  }\n\n  Tooltip.prototype.init = function (type, element, options) {\n    this.enabled   = true\n    this.type      = type\n    this.$element  = $(element)\n    this.options   = this.getOptions(options)\n    this.$viewport = this.options.viewport && $($.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : (this.options.viewport.selector || this.options.viewport))\n    this.inState   = { click: false, hover: false, focus: false }\n\n    if (this.$element[0] instanceof document.constructor && !this.options.selector) {\n      throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!')\n    }\n\n    var triggers = this.options.trigger.split(' ')\n\n    for (var i = triggers.length; i--;) {\n      var trigger = triggers[i]\n\n      if (trigger == 'click') {\n        this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))\n      } else if (trigger != 'manual') {\n        var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focusin'\n        var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout'\n\n        this.$element.on(eventIn  + '.' + this.type, this.options.selector, $.proxy(this.enter, this))\n        this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))\n      }\n    }\n\n    this.options.selector ?\n      (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :\n      this.fixTitle()\n  }\n\n  Tooltip.prototype.getDefaults = function () {\n    return Tooltip.DEFAULTS\n  }\n\n  Tooltip.prototype.getOptions = function (options) {\n    options = $.extend({}, this.getDefaults(), this.$element.data(), options)\n\n    if (options.delay && typeof options.delay == 'number') {\n      options.delay = {\n        show: options.delay,\n        hide: options.delay\n      }\n    }\n\n    return options\n  }\n\n  Tooltip.prototype.getDelegateOptions = function () {\n    var options  = {}\n    var defaults = this.getDefaults()\n\n    this._options && $.each(this._options, function (key, value) {\n      if (defaults[key] != value) options[key] = value\n    })\n\n    return options\n  }\n\n  Tooltip.prototype.enter = function (obj) {\n    var self = obj instanceof this.constructor ?\n      obj : $(obj.currentTarget).data('bs.' + this.type)\n\n    if (!self) {\n      self = new this.constructor(obj.currentTarget, this.getDelegateOptions())\n      $(obj.currentTarget).data('bs.' + this.type, self)\n    }\n\n    if (obj instanceof $.Event) {\n      self.inState[obj.type == 'focusin' ? 'focus' : 'hover'] = true\n    }\n\n    if (self.tip().hasClass('in') || self.hoverState == 'in') {\n      self.hoverState = 'in'\n      return\n    }\n\n    clearTimeout(self.timeout)\n\n    self.hoverState = 'in'\n\n    if (!self.options.delay || !self.options.delay.show) return self.show()\n\n    self.timeout = setTimeout(function () {\n      if (self.hoverState == 'in') self.show()\n    }, self.options.delay.show)\n  }\n\n  Tooltip.prototype.isInStateTrue = function () {\n    for (var key in this.inState) {\n      if (this.inState[key]) return true\n    }\n\n    return false\n  }\n\n  Tooltip.prototype.leave = function (obj) {\n    var self = obj instanceof this.constructor ?\n      obj : $(obj.currentTarget).data('bs.' + this.type)\n\n    if (!self) {\n      self = new this.constructor(obj.currentTarget, this.getDelegateOptions())\n      $(obj.currentTarget).data('bs.' + this.type, self)\n    }\n\n    if (obj instanceof $.Event) {\n      self.inState[obj.type == 'focusout' ? 'focus' : 'hover'] = false\n    }\n\n    if (self.isInStateTrue()) return\n\n    clearTimeout(self.timeout)\n\n    self.hoverState = 'out'\n\n    if (!self.options.delay || !self.options.delay.hide) return self.hide()\n\n    self.timeout = setTimeout(function () {\n      if (self.hoverState == 'out') self.hide()\n    }, self.options.delay.hide)\n  }\n\n  Tooltip.prototype.show = function () {\n    var e = $.Event('show.bs.' + this.type)\n\n    if (this.hasContent() && this.enabled) {\n      this.$element.trigger(e)\n\n      var inDom = $.contains(this.$element[0].ownerDocument.documentElement, this.$element[0])\n      if (e.isDefaultPrevented() || !inDom) return\n      var that = this\n\n      var $tip = this.tip()\n\n      var tipId = this.getUID(this.type)\n\n      this.setContent()\n      $tip.attr('id', tipId)\n      this.$element.attr('aria-describedby', tipId)\n\n      if (this.options.animation) $tip.addClass('fade')\n\n      var placement = typeof this.options.placement == 'function' ?\n        this.options.placement.call(this, $tip[0], this.$element[0]) :\n        this.options.placement\n\n      var autoToken = /\\s?auto?\\s?/i\n      var autoPlace = autoToken.test(placement)\n      if (autoPlace) placement = placement.replace(autoToken, '') || 'top'\n\n      $tip\n        .detach()\n        .css({ top: 0, left: 0, display: 'block' })\n        .addClass(placement)\n        .data('bs.' + this.type, this)\n\n      this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)\n      this.$element.trigger('inserted.bs.' + this.type)\n\n      var pos          = this.getPosition()\n      var actualWidth  = $tip[0].offsetWidth\n      var actualHeight = $tip[0].offsetHeight\n\n      if (autoPlace) {\n        var orgPlacement = placement\n        var viewportDim = this.getPosition(this.$viewport)\n\n        placement = placement == 'bottom' && pos.bottom + actualHeight > viewportDim.bottom ? 'top'    :\n                    placement == 'top'    && pos.top    - actualHeight < viewportDim.top    ? 'bottom' :\n                    placement == 'right'  && pos.right  + actualWidth  > viewportDim.width  ? 'left'   :\n                    placement == 'left'   && pos.left   - actualWidth  < viewportDim.left   ? 'right'  :\n                    placement\n\n        $tip\n          .removeClass(orgPlacement)\n          .addClass(placement)\n      }\n\n      var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)\n\n      this.applyPlacement(calculatedOffset, placement)\n\n      var complete = function () {\n        var prevHoverState = that.hoverState\n        that.$element.trigger('shown.bs.' + that.type)\n        that.hoverState = null\n\n        if (prevHoverState == 'out') that.leave(that)\n      }\n\n      $.support.transition && this.$tip.hasClass('fade') ?\n        $tip\n          .one('bsTransitionEnd', complete)\n          .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :\n        complete()\n    }\n  }\n\n  Tooltip.prototype.applyPlacement = function (offset, placement) {\n    var $tip   = this.tip()\n    var width  = $tip[0].offsetWidth\n    var height = $tip[0].offsetHeight\n\n    // manually read margins because getBoundingClientRect includes difference\n    var marginTop = parseInt($tip.css('margin-top'), 10)\n    var marginLeft = parseInt($tip.css('margin-left'), 10)\n\n    // we must check for NaN for ie 8/9\n    if (isNaN(marginTop))  marginTop  = 0\n    if (isNaN(marginLeft)) marginLeft = 0\n\n    offset.top  += marginTop\n    offset.left += marginLeft\n\n    // $.fn.offset doesn't round pixel values\n    // so we use setOffset directly with our own function B-0\n    $.offset.setOffset($tip[0], $.extend({\n      using: function (props) {\n        $tip.css({\n          top: Math.round(props.top),\n          left: Math.round(props.left)\n        })\n      }\n    }, offset), 0)\n\n    $tip.addClass('in')\n\n    // check to see if placing tip in new offset caused the tip to resize itself\n    var actualWidth  = $tip[0].offsetWidth\n    var actualHeight = $tip[0].offsetHeight\n\n    if (placement == 'top' && actualHeight != height) {\n      offset.top = offset.top + height - actualHeight\n    }\n\n    var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight)\n\n    if (delta.left) offset.left += delta.left\n    else offset.top += delta.top\n\n    var isVertical          = /top|bottom/.test(placement)\n    var arrowDelta          = isVertical ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight\n    var arrowOffsetPosition = isVertical ? 'offsetWidth' : 'offsetHeight'\n\n    $tip.offset(offset)\n    this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical)\n  }\n\n  Tooltip.prototype.replaceArrow = function (delta, dimension, isVertical) {\n    this.arrow()\n      .css(isVertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%')\n      .css(isVertical ? 'top' : 'left', '')\n  }\n\n  Tooltip.prototype.setContent = function () {\n    var $tip  = this.tip()\n    var title = this.getTitle()\n\n    $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)\n    $tip.removeClass('fade in top bottom left right')\n  }\n\n  Tooltip.prototype.hide = function (callback) {\n    var that = this\n    var $tip = $(this.$tip)\n    var e    = $.Event('hide.bs.' + this.type)\n\n    function complete() {\n      if (that.hoverState != 'in') $tip.detach()\n      that.$element\n        .removeAttr('aria-describedby')\n        .trigger('hidden.bs.' + that.type)\n      callback && callback()\n    }\n\n    this.$element.trigger(e)\n\n    if (e.isDefaultPrevented()) return\n\n    $tip.removeClass('in')\n\n    $.support.transition && $tip.hasClass('fade') ?\n      $tip\n        .one('bsTransitionEnd', complete)\n        .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :\n      complete()\n\n    this.hoverState = null\n\n    return this\n  }\n\n  Tooltip.prototype.fixTitle = function () {\n    var $e = this.$element\n    if ($e.attr('title') || typeof $e.attr('data-original-title') != 'string') {\n      $e.attr('data-original-title', $e.attr('title') || '').attr('title', '')\n    }\n  }\n\n  Tooltip.prototype.hasContent = function () {\n    return this.getTitle()\n  }\n\n  Tooltip.prototype.getPosition = function ($element) {\n    $element   = $element || this.$element\n\n    var el     = $element[0]\n    var isBody = el.tagName == 'BODY'\n\n    var elRect    = el.getBoundingClientRect()\n    if (elRect.width == null) {\n      // width and height are missing in IE8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093\n      elRect = $.extend({}, elRect, { width: elRect.right - elRect.left, height: elRect.bottom - elRect.top })\n    }\n    var elOffset  = isBody ? { top: 0, left: 0 } : $element.offset()\n    var scroll    = { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop() }\n    var outerDims = isBody ? { width: $(window).width(), height: $(window).height() } : null\n\n    return $.extend({}, elRect, scroll, outerDims, elOffset)\n  }\n\n  Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {\n    return placement == 'bottom' ? { top: pos.top + pos.height,   left: pos.left + pos.width / 2 - actualWidth / 2 } :\n           placement == 'top'    ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } :\n           placement == 'left'   ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :\n        /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width }\n\n  }\n\n  Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) {\n    var delta = { top: 0, left: 0 }\n    if (!this.$viewport) return delta\n\n    var viewportPadding = this.options.viewport && this.options.viewport.padding || 0\n    var viewportDimensions = this.getPosition(this.$viewport)\n\n    if (/right|left/.test(placement)) {\n      var topEdgeOffset    = pos.top - viewportPadding - viewportDimensions.scroll\n      var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight\n      if (topEdgeOffset < viewportDimensions.top) { // top overflow\n        delta.top = viewportDimensions.top - topEdgeOffset\n      } else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow\n        delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset\n      }\n    } else {\n      var leftEdgeOffset  = pos.left - viewportPadding\n      var rightEdgeOffset = pos.left + viewportPadding + actualWidth\n      if (leftEdgeOffset < viewportDimensions.left) { // left overflow\n        delta.left = viewportDimensions.left - leftEdgeOffset\n      } else if (rightEdgeOffset > viewportDimensions.right) { // right overflow\n        delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset\n      }\n    }\n\n    return delta\n  }\n\n  Tooltip.prototype.getTitle = function () {\n    var title\n    var $e = this.$element\n    var o  = this.options\n\n    title = $e.attr('data-original-title')\n      || (typeof o.title == 'function' ? o.title.call($e[0]) :  o.title)\n\n    return title\n  }\n\n  Tooltip.prototype.getUID = function (prefix) {\n    do prefix += ~~(Math.random() * 1000000)\n    while (document.getElementById(prefix))\n    return prefix\n  }\n\n  Tooltip.prototype.tip = function () {\n    if (!this.$tip) {\n      this.$tip = $(this.options.template)\n      if (this.$tip.length != 1) {\n        throw new Error(this.type + ' `template` option must consist of exactly 1 top-level element!')\n      }\n    }\n    return this.$tip\n  }\n\n  Tooltip.prototype.arrow = function () {\n    return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow'))\n  }\n\n  Tooltip.prototype.enable = function () {\n    this.enabled = true\n  }\n\n  Tooltip.prototype.disable = function () {\n    this.enabled = false\n  }\n\n  Tooltip.prototype.toggleEnabled = function () {\n    this.enabled = !this.enabled\n  }\n\n  Tooltip.prototype.toggle = function (e) {\n    var self = this\n    if (e) {\n      self = $(e.currentTarget).data('bs.' + this.type)\n      if (!self) {\n        self = new this.constructor(e.currentTarget, this.getDelegateOptions())\n        $(e.currentTarget).data('bs.' + this.type, self)\n      }\n    }\n\n    if (e) {\n      self.inState.click = !self.inState.click\n      if (self.isInStateTrue()) self.enter(self)\n      else self.leave(self)\n    } else {\n      self.tip().hasClass('in') ? self.leave(self) : self.enter(self)\n    }\n  }\n\n  Tooltip.prototype.destroy = function () {\n    var that = this\n    clearTimeout(this.timeout)\n    this.hide(function () {\n      that.$element.off('.' + that.type).removeData('bs.' + that.type)\n      if (that.$tip) {\n        that.$tip.detach()\n      }\n      that.$tip = null\n      that.$arrow = null\n      that.$viewport = null\n    })\n  }\n\n\n  // TOOLTIP PLUGIN DEFINITION\n  // =========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.tooltip')\n      var options = typeof option == 'object' && option\n\n      if (!data && /destroy|hide/.test(option)) return\n      if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))\n      if (typeof option == 'string') data[option]()\n    })\n  }\n\n  var old = $.fn.tooltip\n\n  $.fn.tooltip             = Plugin\n  $.fn.tooltip.Constructor = Tooltip\n\n\n  // TOOLTIP NO CONFLICT\n  // ===================\n\n  $.fn.tooltip.noConflict = function () {\n    $.fn.tooltip = old\n    return this\n  }\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: popover.js v3.3.5\n * http://getbootstrap.com/javascript/#popovers\n * ========================================================================\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // POPOVER PUBLIC CLASS DEFINITION\n  // ===============================\n\n  var Popover = function (element, options) {\n    this.init('popover', element, options)\n  }\n\n  if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')\n\n  Popover.VERSION  = '3.3.5'\n\n  Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {\n    placement: 'right',\n    trigger: 'click',\n    content: '',\n    template: '<div class=\"popover\" role=\"tooltip\"><div class=\"arrow\"></div><h3 class=\"popover-title\"></h3><div class=\"popover-content\"></div></div>'\n  })\n\n\n  // NOTE: POPOVER EXTENDS tooltip.js\n  // ================================\n\n  Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)\n\n  Popover.prototype.constructor = Popover\n\n  Popover.prototype.getDefaults = function () {\n    return Popover.DEFAULTS\n  }\n\n  Popover.prototype.setContent = function () {\n    var $tip    = this.tip()\n    var title   = this.getTitle()\n    var content = this.getContent()\n\n    $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)\n    $tip.find('.popover-content').children().detach().end()[ // we use append for html objects to maintain js events\n      this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'\n    ](content)\n\n    $tip.removeClass('fade top bottom left right in')\n\n    // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do\n    // this manually by checking the contents.\n    if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()\n  }\n\n  Popover.prototype.hasContent = function () {\n    return this.getTitle() || this.getContent()\n  }\n\n  Popover.prototype.getContent = function () {\n    var $e = this.$element\n    var o  = this.options\n\n    return $e.attr('data-content')\n      || (typeof o.content == 'function' ?\n            o.content.call($e[0]) :\n            o.content)\n  }\n\n  Popover.prototype.arrow = function () {\n    return (this.$arrow = this.$arrow || this.tip().find('.arrow'))\n  }\n\n\n  // POPOVER PLUGIN DEFINITION\n  // =========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.popover')\n      var options = typeof option == 'object' && option\n\n      if (!data && /destroy|hide/.test(option)) return\n      if (!data) $this.data('bs.popover', (data = new Popover(this, options)))\n      if (typeof option == 'string') data[option]()\n    })\n  }\n\n  var old = $.fn.popover\n\n  $.fn.popover             = Plugin\n  $.fn.popover.Constructor = Popover\n\n\n  // POPOVER NO CONFLICT\n  // ===================\n\n  $.fn.popover.noConflict = function () {\n    $.fn.popover = old\n    return this\n  }\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: scrollspy.js v3.3.5\n * http://getbootstrap.com/javascript/#scrollspy\n * ========================================================================\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // SCROLLSPY CLASS DEFINITION\n  // ==========================\n\n  function ScrollSpy(element, options) {\n    this.$body          = $(document.body)\n    this.$scrollElement = $(element).is(document.body) ? $(window) : $(element)\n    this.options        = $.extend({}, ScrollSpy.DEFAULTS, options)\n    this.selector       = (this.options.target || '') + ' .nav li > a'\n    this.offsets        = []\n    this.targets        = []\n    this.activeTarget   = null\n    this.scrollHeight   = 0\n\n    this.$scrollElement.on('scroll.bs.scrollspy', $.proxy(this.process, this))\n    this.refresh()\n    this.process()\n  }\n\n  ScrollSpy.VERSION  = '3.3.5'\n\n  ScrollSpy.DEFAULTS = {\n    offset: 10\n  }\n\n  ScrollSpy.prototype.getScrollHeight = function () {\n    return this.$scrollElement[0].scrollHeight || Math.max(this.$body[0].scrollHeight, document.documentElement.scrollHeight)\n  }\n\n  ScrollSpy.prototype.refresh = function () {\n    var that          = this\n    var offsetMethod  = 'offset'\n    var offsetBase    = 0\n\n    this.offsets      = []\n    this.targets      = []\n    this.scrollHeight = this.getScrollHeight()\n\n    if (!$.isWindow(this.$scrollElement[0])) {\n      offsetMethod = 'position'\n      offsetBase   = this.$scrollElement.scrollTop()\n    }\n\n    this.$body\n      .find(this.selector)\n      .map(function () {\n        var $el   = $(this)\n        var href  = $el.data('target') || $el.attr('href')\n        var $href = /^#./.test(href) && $(href)\n\n        return ($href\n          && $href.length\n          && $href.is(':visible')\n          && [[$href[offsetMethod]().top + offsetBase, href]]) || null\n      })\n      .sort(function (a, b) { return a[0] - b[0] })\n      .each(function () {\n        that.offsets.push(this[0])\n        that.targets.push(this[1])\n      })\n  }\n\n  ScrollSpy.prototype.process = function () {\n    var scrollTop    = this.$scrollElement.scrollTop() + this.options.offset\n    var scrollHeight = this.getScrollHeight()\n    var maxScroll    = this.options.offset + scrollHeight - this.$scrollElement.height()\n    var offsets      = this.offsets\n    var targets      = this.targets\n    var activeTarget = this.activeTarget\n    var i\n\n    if (this.scrollHeight != scrollHeight) {\n      this.refresh()\n    }\n\n    if (scrollTop >= maxScroll) {\n      return activeTarget != (i = targets[targets.length - 1]) && this.activate(i)\n    }\n\n    if (activeTarget && scrollTop < offsets[0]) {\n      this.activeTarget = null\n      return this.clear()\n    }\n\n    for (i = offsets.length; i--;) {\n      activeTarget != targets[i]\n        && scrollTop >= offsets[i]\n        && (offsets[i + 1] === undefined || scrollTop < offsets[i + 1])\n        && this.activate(targets[i])\n    }\n  }\n\n  ScrollSpy.prototype.activate = function (target) {\n    this.activeTarget = target\n\n    this.clear()\n\n    var selector = this.selector +\n      '[data-target=\"' + target + '\"],' +\n      this.selector + '[href=\"' + target + '\"]'\n\n    var active = $(selector)\n      .parents('li')\n      .addClass('active')\n\n    if (active.parent('.dropdown-menu').length) {\n      active = active\n        .closest('li.dropdown')\n        .addClass('active')\n    }\n\n    active.trigger('activate.bs.scrollspy')\n  }\n\n  ScrollSpy.prototype.clear = function () {\n    $(this.selector)\n      .parentsUntil(this.options.target, '.active')\n      .removeClass('active')\n  }\n\n\n  // SCROLLSPY PLUGIN DEFINITION\n  // ===========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.scrollspy')\n      var options = typeof option == 'object' && option\n\n      if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options)))\n      if (typeof option == 'string') data[option]()\n    })\n  }\n\n  var old = $.fn.scrollspy\n\n  $.fn.scrollspy             = Plugin\n  $.fn.scrollspy.Constructor = ScrollSpy\n\n\n  // SCROLLSPY NO CONFLICT\n  // =====================\n\n  $.fn.scrollspy.noConflict = function () {\n    $.fn.scrollspy = old\n    return this\n  }\n\n\n  // SCROLLSPY DATA-API\n  // ==================\n\n  $(window).on('load.bs.scrollspy.data-api', function () {\n    $('[data-spy=\"scroll\"]').each(function () {\n      var $spy = $(this)\n      Plugin.call($spy, $spy.data())\n    })\n  })\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: tab.js v3.3.5\n * http://getbootstrap.com/javascript/#tabs\n * ========================================================================\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // TAB CLASS DEFINITION\n  // ====================\n\n  var Tab = function (element) {\n    // jscs:disable requireDollarBeforejQueryAssignment\n    this.element = $(element)\n    // jscs:enable requireDollarBeforejQueryAssignment\n  }\n\n  Tab.VERSION = '3.3.5'\n\n  Tab.TRANSITION_DURATION = 150\n\n  Tab.prototype.show = function () {\n    var $this    = this.element\n    var $ul      = $this.closest('ul:not(.dropdown-menu)')\n    var selector = $this.data('target')\n\n    if (!selector) {\n      selector = $this.attr('href')\n      selector = selector && selector.replace(/.*(?=#[^\\s]*$)/, '') // strip for ie7\n    }\n\n    if ($this.parent('li').hasClass('active')) return\n\n    var $previous = $ul.find('.active:last a')\n    var hideEvent = $.Event('hide.bs.tab', {\n      relatedTarget: $this[0]\n    })\n    var showEvent = $.Event('show.bs.tab', {\n      relatedTarget: $previous[0]\n    })\n\n    $previous.trigger(hideEvent)\n    $this.trigger(showEvent)\n\n    if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) return\n\n    var $target = $(selector)\n\n    this.activate($this.closest('li'), $ul)\n    this.activate($target, $target.parent(), function () {\n      $previous.trigger({\n        type: 'hidden.bs.tab',\n        relatedTarget: $this[0]\n      })\n      $this.trigger({\n        type: 'shown.bs.tab',\n        relatedTarget: $previous[0]\n      })\n    })\n  }\n\n  Tab.prototype.activate = function (element, container, callback) {\n    var $active    = container.find('> .active')\n    var transition = callback\n      && $.support.transition\n      && ($active.length && $active.hasClass('fade') || !!container.find('> .fade').length)\n\n    function next() {\n      $active\n        .removeClass('active')\n        .find('> .dropdown-menu > .active')\n          .removeClass('active')\n        .end()\n        .find('[data-toggle=\"tab\"]')\n          .attr('aria-expanded', false)\n\n      element\n        .addClass('active')\n        .find('[data-toggle=\"tab\"]')\n          .attr('aria-expanded', true)\n\n      if (transition) {\n        element[0].offsetWidth // reflow for transition\n        element.addClass('in')\n      } else {\n        element.removeClass('fade')\n      }\n\n      if (element.parent('.dropdown-menu').length) {\n        element\n          .closest('li.dropdown')\n            .addClass('active')\n          .end()\n          .find('[data-toggle=\"tab\"]')\n            .attr('aria-expanded', true)\n      }\n\n      callback && callback()\n    }\n\n    $active.length && transition ?\n      $active\n        .one('bsTransitionEnd', next)\n        .emulateTransitionEnd(Tab.TRANSITION_DURATION) :\n      next()\n\n    $active.removeClass('in')\n  }\n\n\n  // TAB PLUGIN DEFINITION\n  // =====================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this = $(this)\n      var data  = $this.data('bs.tab')\n\n      if (!data) $this.data('bs.tab', (data = new Tab(this)))\n      if (typeof option == 'string') data[option]()\n    })\n  }\n\n  var old = $.fn.tab\n\n  $.fn.tab             = Plugin\n  $.fn.tab.Constructor = Tab\n\n\n  // TAB NO CONFLICT\n  // ===============\n\n  $.fn.tab.noConflict = function () {\n    $.fn.tab = old\n    return this\n  }\n\n\n  // TAB DATA-API\n  // ============\n\n  var clickHandler = function (e) {\n    e.preventDefault()\n    Plugin.call($(this), 'show')\n  }\n\n  $(document)\n    .on('click.bs.tab.data-api', '[data-toggle=\"tab\"]', clickHandler)\n    .on('click.bs.tab.data-api', '[data-toggle=\"pill\"]', clickHandler)\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: affix.js v3.3.5\n * http://getbootstrap.com/javascript/#affix\n * ========================================================================\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // AFFIX CLASS DEFINITION\n  // ======================\n\n  var Affix = function (element, options) {\n    this.options = $.extend({}, Affix.DEFAULTS, options)\n\n    this.$target = $(this.options.target)\n      .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))\n      .on('click.bs.affix.data-api',  $.proxy(this.checkPositionWithEventLoop, this))\n\n    this.$element     = $(element)\n    this.affixed      = null\n    this.unpin        = null\n    this.pinnedOffset = null\n\n    this.checkPosition()\n  }\n\n  Affix.VERSION  = '3.3.5'\n\n  Affix.RESET    = 'affix affix-top affix-bottom'\n\n  Affix.DEFAULTS = {\n    offset: 0,\n    target: window\n  }\n\n  Affix.prototype.getState = function (scrollHeight, height, offsetTop, offsetBottom) {\n    var scrollTop    = this.$target.scrollTop()\n    var position     = this.$element.offset()\n    var targetHeight = this.$target.height()\n\n    if (offsetTop != null && this.affixed == 'top') return scrollTop < offsetTop ? 'top' : false\n\n    if (this.affixed == 'bottom') {\n      if (offsetTop != null) return (scrollTop + this.unpin <= position.top) ? false : 'bottom'\n      return (scrollTop + targetHeight <= scrollHeight - offsetBottom) ? false : 'bottom'\n    }\n\n    var initializing   = this.affixed == null\n    var colliderTop    = initializing ? scrollTop : position.top\n    var colliderHeight = initializing ? targetHeight : height\n\n    if (offsetTop != null && scrollTop <= offsetTop) return 'top'\n    if (offsetBottom != null && (colliderTop + colliderHeight >= scrollHeight - offsetBottom)) return 'bottom'\n\n    return false\n  }\n\n  Affix.prototype.getPinnedOffset = function () {\n    if (this.pinnedOffset) return this.pinnedOffset\n    this.$element.removeClass(Affix.RESET).addClass('affix')\n    var scrollTop = this.$target.scrollTop()\n    var position  = this.$element.offset()\n    return (this.pinnedOffset = position.top - scrollTop)\n  }\n\n  Affix.prototype.checkPositionWithEventLoop = function () {\n    setTimeout($.proxy(this.checkPosition, this), 1)\n  }\n\n  Affix.prototype.checkPosition = function () {\n    if (!this.$element.is(':visible')) return\n\n    var height       = this.$element.height()\n    var offset       = this.options.offset\n    var offsetTop    = offset.top\n    var offsetBottom = offset.bottom\n    var scrollHeight = Math.max($(document).height(), $(document.body).height())\n\n    if (typeof offset != 'object')         offsetBottom = offsetTop = offset\n    if (typeof offsetTop == 'function')    offsetTop    = offset.top(this.$element)\n    if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element)\n\n    var affix = this.getState(scrollHeight, height, offsetTop, offsetBottom)\n\n    if (this.affixed != affix) {\n      if (this.unpin != null) this.$element.css('top', '')\n\n      var affixType = 'affix' + (affix ? '-' + affix : '')\n      var e         = $.Event(affixType + '.bs.affix')\n\n      this.$element.trigger(e)\n\n      if (e.isDefaultPrevented()) return\n\n      this.affixed = affix\n      this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null\n\n      this.$element\n        .removeClass(Affix.RESET)\n        .addClass(affixType)\n        .trigger(affixType.replace('affix', 'affixed') + '.bs.affix')\n    }\n\n    if (affix == 'bottom') {\n      this.$element.offset({\n        top: scrollHeight - height - offsetBottom\n      })\n    }\n  }\n\n\n  // AFFIX PLUGIN DEFINITION\n  // =======================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.affix')\n      var options = typeof option == 'object' && option\n\n      if (!data) $this.data('bs.affix', (data = new Affix(this, options)))\n      if (typeof option == 'string') data[option]()\n    })\n  }\n\n  var old = $.fn.affix\n\n  $.fn.affix             = Plugin\n  $.fn.affix.Constructor = Affix\n\n\n  // AFFIX NO CONFLICT\n  // =================\n\n  $.fn.affix.noConflict = function () {\n    $.fn.affix = old\n    return this\n  }\n\n\n  // AFFIX DATA-API\n  // ==============\n\n  $(window).on('load', function () {\n    $('[data-spy=\"affix\"]').each(function () {\n      var $spy = $(this)\n      var data = $spy.data()\n\n      data.offset = data.offset || {}\n\n      if (data.offsetBottom != null) data.offset.bottom = data.offsetBottom\n      if (data.offsetTop    != null) data.offset.top    = data.offsetTop\n\n      Plugin.call($spy, data)\n    })\n  })\n\n}(jQuery);\n"
  },
  {
    "path": "docs/site_libs/bootstrap-3.3.5/js/npm.js",
    "content": "// This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.\nrequire('../../js/transition.js')\nrequire('../../js/alert.js')\nrequire('../../js/button.js')\nrequire('../../js/carousel.js')\nrequire('../../js/collapse.js')\nrequire('../../js/dropdown.js')\nrequire('../../js/modal.js')\nrequire('../../js/tooltip.js')\nrequire('../../js/popover.js')\nrequire('../../js/scrollspy.js')\nrequire('../../js/tab.js')\nrequire('../../js/affix.js')"
  },
  {
    "path": "docs/site_libs/crosstalk-1.2.0/js/crosstalk.js",
    "content": "(function(){function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s}return e})()({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Events = function () {\n  function Events() {\n    _classCallCheck(this, Events);\n\n    this._types = {};\n    this._seq = 0;\n  }\n\n  _createClass(Events, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var subs = this._types[eventType];\n      if (!subs) {\n        subs = this._types[eventType] = {};\n      }\n      var sub = \"sub\" + this._seq++;\n      subs[sub] = listener;\n      return sub;\n    }\n\n    // Returns false if no match, or string for sub name if matched\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var subs = this._types[eventType];\n      if (typeof listener === \"function\") {\n        for (var key in subs) {\n          if (subs.hasOwnProperty(key)) {\n            if (subs[key] === listener) {\n              delete subs[key];\n              return key;\n            }\n          }\n        }\n        return false;\n      } else if (typeof listener === \"string\") {\n        if (subs && subs[listener]) {\n          delete subs[listener];\n          return listener;\n        }\n        return false;\n      } else {\n        throw new Error(\"Unexpected type for listener\");\n      }\n    }\n  }, {\n    key: \"trigger\",\n    value: function trigger(eventType, arg, thisObj) {\n      var subs = this._types[eventType];\n      for (var key in subs) {\n        if (subs.hasOwnProperty(key)) {\n          subs[key].call(thisObj, arg);\n        }\n      }\n    }\n  }]);\n\n  return Events;\n}();\n\nexports.default = Events;\n\n},{}],2:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.FilterHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _filterset = require(\"./filterset\");\n\nvar _filterset2 = _interopRequireDefault(_filterset);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction getFilterSet(group) {\n  var fsVar = group.var(\"filterset\");\n  var result = fsVar.get();\n  if (!result) {\n    result = new _filterset2.default();\n    fsVar.set(result);\n  }\n  return result;\n}\n\nvar id = 1;\nfunction nextId() {\n  return id++;\n}\n\n/**\n * Use this class to contribute to, and listen for changes to, the filter set\n * for the given group of widgets. Filter input controls should create one\n * `FilterHandle` and only call {@link FilterHandle#set}. Output widgets that\n * wish to displayed filtered data should create one `FilterHandle` and use\n * the {@link FilterHandle#filteredKeys} property and listen for change\n * events.\n *\n * If two (or more) `FilterHandle` instances in the same webpage share the\n * same group name, they will contribute to a single \"filter set\". Each\n * `FilterHandle` starts out with a `null` value, which means they take\n * nothing away from the set of data that should be shown. To make a\n * `FilterHandle` actually remove data from the filter set, set its value to\n * an array of keys which should be displayed. Crosstalk will aggregate the\n * various key arrays by finding their intersection; only keys that are\n * present in all non-null filter handles are considered part of the filter\n * set.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n *   null or undefined (or any other falsy value). This can be changed later\n *   via the {@link FilterHandle#setGroup} method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n *   the event object whenever an event is emitted.\n */\n\nvar FilterHandle = exports.FilterHandle = function () {\n  function FilterHandle(group, extraInfo) {\n    _classCallCheck(this, FilterHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The filterSet that we're tracking, if any. Can change over time.\n    this._filterSet = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._filterVar = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this._id = \"filter\" + nextId();\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this FilterHandle. If `set()` was\n   * previously called on this handle, switching groups will clear those keys\n   * from the old group's filter set. These keys will not be applied to the new\n   * group's filter set either. In other words, `setGroup()` effectively calls\n   * `clear()` before switching groups.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(FilterHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._filterVar) {\n        this._filterVar.off(\"change\", this._varOnChangeSub);\n        this.clear();\n        this._varOnChangeSub = null;\n        this._filterVar = null;\n        this._filterSet = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        group = (0, _group2.default)(group);\n        this._filterSet = getFilterSet(group);\n        this._filterVar = (0, _group2.default)(group).var(\"filter\");\n        var sub = this._filterVar.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Combine the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n    value: function _mergeExtraInfo(extraInfo) {\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Close the handle. This clears this handle's contribution to the filter set,\n     * and unsubscribes all event listeners.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.clear();\n      this.setGroup(null);\n    }\n\n    /**\n     * Clear this handle's contribution to the filter set.\n     *\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     * \n     * @fires FilterHandle#change\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.clear(this._id);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * Set this handle's contribution to the filter set. This array should consist\n     * of the keys of the rows that _should_ be displayed; any keys that are not\n     * present in the array will be considered _filtered out_. Note that multiple\n     * `FilterHandle` instances in the group may each contribute an array of keys,\n     * and only those keys that appear in _all_ of the arrays make it through the\n     * filter.\n     *\n     * @param {string[]} keys - Empty array, or array of keys. To clear the\n     *   filter, don't pass an empty array; instead, use the\n     *   {@link FilterHandle#clear} method.\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     * \n     * @fires FilterHandle#change\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(keys, extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.update(this._id, keys);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * @return {string[]|null} - Either: 1) an array of keys that made it through\n     *   all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n     *   is being applied (all data should be displayed).\n     */\n\n  }, {\n    key: \"on\",\n\n\n    /**\n     * Subscribe to events on this `FilterHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {FilterHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n     *   this subscription.\n     */\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancel event subscriptions created by {@link FilterHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|FilterHandle~listener} listener - Either the callback\n     *   function previously passed into {@link FilterHandle#on}, or the\n     *   string that was returned from {@link FilterHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n  }, {\n    key: \"_onChange\",\n    value: function _onChange(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * @callback FilterHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the filter set, or `null` if no filter set is active),\n     *   `oldValue` (the previous value of the filter set), and `sender` (the\n     *   `FilterHandle` instance that made the change).\n     */\n\n  }, {\n    key: \"filteredKeys\",\n    get: function get() {\n      return this._filterSet ? this._filterSet.value : null;\n    }\n  }]);\n\n  return FilterHandle;\n}();\n\n/**\n * @event FilterHandle#change\n * @type {object}\n * @property {object} value - The new value of the filter set, or `null`\n *   if no filter set is active.\n * @property {object} oldValue - The previous value of the filter set.\n * @property {FilterHandle} sender - The `FilterHandle` instance that\n *   changed the value.\n */\n\n},{\"./events\":1,\"./filterset\":3,\"./group\":4,\"./util\":11}],3:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _util = require(\"./util\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction naturalComparator(a, b) {\n  if (a === b) {\n    return 0;\n  } else if (a < b) {\n    return -1;\n  } else if (a > b) {\n    return 1;\n  }\n}\n\n/**\n * @private\n */\n\nvar FilterSet = function () {\n  function FilterSet() {\n    _classCallCheck(this, FilterSet);\n\n    this.reset();\n  }\n\n  _createClass(FilterSet, [{\n    key: \"reset\",\n    value: function reset() {\n      // Key: handle ID, Value: array of selected keys, or null\n      this._handles = {};\n      // Key: key string, Value: count of handles that include it\n      this._keys = {};\n      this._value = null;\n      this._activeHandles = 0;\n    }\n  }, {\n    key: \"update\",\n    value: function update(handleId, keys) {\n      if (keys !== null) {\n        keys = keys.slice(0); // clone before sorting\n        keys.sort(naturalComparator);\n      }\n\n      var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys),\n          added = _diffSortedLists.added,\n          removed = _diffSortedLists.removed;\n\n      this._handles[handleId] = keys;\n\n      for (var i = 0; i < added.length; i++) {\n        this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n      }\n      for (var _i = 0; _i < removed.length; _i++) {\n        this._keys[removed[_i]]--;\n      }\n\n      this._updateValue(keys);\n    }\n\n    /**\n     * @param {string[]} keys Sorted array of strings that indicate\n     * a superset of possible keys.\n     * @private\n     */\n\n  }, {\n    key: \"_updateValue\",\n    value: function _updateValue() {\n      var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys;\n\n      var handleCount = Object.keys(this._handles).length;\n      if (handleCount === 0) {\n        this._value = null;\n      } else {\n        this._value = [];\n        for (var i = 0; i < keys.length; i++) {\n          var count = this._keys[keys[i]];\n          if (count === handleCount) {\n            this._value.push(keys[i]);\n          }\n        }\n      }\n    }\n  }, {\n    key: \"clear\",\n    value: function clear(handleId) {\n      if (typeof this._handles[handleId] === \"undefined\") {\n        return;\n      }\n\n      var keys = this._handles[handleId];\n      if (!keys) {\n        keys = [];\n      }\n\n      for (var i = 0; i < keys.length; i++) {\n        this._keys[keys[i]]--;\n      }\n      delete this._handles[handleId];\n\n      this._updateValue();\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"_allKeys\",\n    get: function get() {\n      var allKeys = Object.keys(this._keys);\n      allKeys.sort(naturalComparator);\n      return allKeys;\n    }\n  }]);\n\n  return FilterSet;\n}();\n\nexports.default = FilterSet;\n\n},{\"./util\":11}],4:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.default = group;\n\nvar _var2 = require(\"./var\");\n\nvar _var3 = _interopRequireDefault(_var2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nvar groups = global.__crosstalk_groups;\n\nfunction group(groupName) {\n  if (groupName && typeof groupName === \"string\") {\n    if (!groups.hasOwnProperty(groupName)) {\n      groups[groupName] = new Group(groupName);\n    }\n    return groups[groupName];\n  } else if ((typeof groupName === \"undefined\" ? \"undefined\" : _typeof(groupName)) === \"object\" && groupName._vars && groupName.var) {\n    // Appears to already be a group object\n    return groupName;\n  } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === \"string\") {\n    return group(groupName[0]);\n  } else {\n    throw new Error(\"Invalid groupName argument\");\n  }\n}\n\nvar Group = function () {\n  function Group(name) {\n    _classCallCheck(this, Group);\n\n    this.name = name;\n    this._vars = {};\n  }\n\n  _createClass(Group, [{\n    key: \"var\",\n    value: function _var(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name);\n      return this._vars[name];\n    }\n  }, {\n    key: \"has\",\n    value: function has(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      return this._vars.hasOwnProperty(name);\n    }\n  }]);\n\n  return Group;\n}();\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./var\":12}],5:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _selection = require(\"./selection\");\n\nvar _filter = require(\"./filter\");\n\nvar _input = require(\"./input\");\n\nrequire(\"./input_selectize\");\n\nrequire(\"./input_checkboxgroup\");\n\nrequire(\"./input_slider\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar defaultGroup = (0, _group2.default)(\"default\");\n\nfunction var_(name) {\n  return defaultGroup.var(name);\n}\n\nfunction has(name) {\n  return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n  global.Shiny.addCustomMessageHandler(\"update-client-value\", function (message) {\n    if (typeof message.group === \"string\") {\n      (0, _group2.default)(message.group).var(message.name).set(message.value);\n    } else {\n      var_(message.name).set(message.value);\n    }\n  });\n}\n\nvar crosstalk = {\n  group: _group2.default,\n  var: var_,\n  has: has,\n  SelectionHandle: _selection.SelectionHandle,\n  FilterHandle: _filter.FilterHandle,\n  bind: _input.bind\n};\n\n/**\n * @namespace crosstalk\n */\nexports.default = crosstalk;\n\nglobal.crosstalk = crosstalk;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./group\":4,\"./input\":6,\"./input_checkboxgroup\":7,\"./input_selectize\":8,\"./input_slider\":9,\"./selection\":10}],6:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.register = register;\nexports.bind = bind;\nvar $ = global.jQuery;\n\nvar bindings = {};\n\nfunction register(reg) {\n  bindings[reg.className] = reg;\n  if (global.document && global.document.readyState !== \"complete\") {\n    $(function () {\n      bind();\n    });\n  } else if (global.document) {\n    setTimeout(bind, 100);\n  }\n}\n\nfunction bind() {\n  Object.keys(bindings).forEach(function (className) {\n    var binding = bindings[className];\n    $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function (i, el) {\n      bindInstance(binding, el);\n    });\n  });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n  return val.replace(/([!\"#$%&'()*+,./:;<=>?@[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n  var $el = $(el);\n  Object.keys(bindings).forEach(function (className) {\n    if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n      var binding = bindings[className];\n      bindInstance(binding, el);\n    }\n  });\n}\n\nfunction bindInstance(binding, el) {\n  var jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n  var data = JSON.parse(jsonEl[0].innerText);\n\n  var instance = binding.factory(el, data);\n  $(el).data(\"crosstalk-instance\", instance);\n  $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n  var inputBinding = new global.Shiny.InputBinding();\n  var _$ = global.jQuery;\n  _$.extend(inputBinding, {\n    find: function find(scope) {\n      return _$(scope).find(\".crosstalk-input\");\n    },\n    initialize: function initialize(el) {\n      if (!_$(el).hasClass(\"crosstalk-input-bound\")) {\n        bindEl(el);\n      }\n    },\n    getId: function getId(el) {\n      return el.id;\n    },\n    getValue: function getValue(el) {},\n    setValue: function setValue(el, value) {},\n    receiveMessage: function receiveMessage(el, data) {},\n    subscribe: function subscribe(el, callback) {\n      _$(el).data(\"crosstalk-instance\").resume();\n    },\n    unsubscribe: function unsubscribe(el) {\n      _$(el).data(\"crosstalk-instance\").suspend();\n    }\n  });\n  global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{}],7:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-checkboxgroup\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    var $el = $(el);\n    $el.on(\"change\", \"input[type='checkbox']\", function () {\n      var checked = $el.find(\"input[type='checkbox']:checked\");\n      if (checked.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        var keys = {};\n        checked.each(function () {\n          data.map[this.value].forEach(function (key) {\n            keys[key] = true;\n          });\n        });\n        var keyArray = Object.keys(keys);\n        keyArray.sort();\n        lastKnownKeys = keyArray;\n        ctHandle.set(keyArray);\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],8:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-select\",\n\n  factory: function factory(el, data) {\n    /*\n     * items: {value: [...], label: [...]}\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n\n    var first = [{ value: \"\", label: \"(All)\" }];\n    var items = util.dataframeToD3(data.items);\n    var opts = {\n      options: first.concat(items),\n      valueField: \"value\",\n      labelField: \"label\",\n      searchField: \"label\"\n    };\n\n    var select = $(el).find(\"select\")[0];\n\n    var selectize = $(select).selectize(opts)[0].selectize;\n\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    selectize.on(\"change\", function () {\n      if (selectize.items.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        var keys = {};\n        selectize.items.forEach(function (group) {\n          data.map[group].forEach(function (key) {\n            keys[key] = true;\n          });\n        });\n        var keyArray = Object.keys(keys);\n        keyArray.sort();\n        lastKnownKeys = keyArray;\n        ctHandle.set(keyArray);\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6,\"./util\":11}],9:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\nvar strftime = global.strftime;\n\ninput.register({\n  className: \"crosstalk-input-slider\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var opts = {};\n    var $el = $(el).find(\"input\");\n    var dataType = $el.data(\"data-type\");\n    var timeFormat = $el.data(\"time-format\");\n    var round = $el.data(\"round\");\n    var timeFormatter = void 0;\n\n    // Set up formatting functions\n    if (dataType === \"date\") {\n      timeFormatter = strftime.utc();\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"datetime\") {\n      var timezone = $el.data(\"timezone\");\n      if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime;\n\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"number\") {\n      if (typeof round !== \"undefined\") opts.prettify = function (num) {\n        var factor = Math.pow(10, round);\n        return Math.round(num * factor) / factor;\n      };\n    }\n\n    $el.ionRangeSlider(opts);\n\n    function getValue() {\n      var result = $el.data(\"ionRangeSlider\").result;\n\n      // Function for converting numeric value from slider to appropriate type.\n      var convert = void 0;\n      var dataType = $el.data(\"data-type\");\n      if (dataType === \"date\") {\n        convert = function convert(val) {\n          return formatDateUTC(new Date(+val));\n        };\n      } else if (dataType === \"datetime\") {\n        convert = function convert(val) {\n          // Convert ms to s\n          return +val / 1000;\n        };\n      } else {\n        convert = function convert(val) {\n          return +val;\n        };\n      }\n\n      if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n        return [convert(result.from), convert(result.to)];\n      } else {\n        return convert(result.from);\n      }\n    }\n\n    var lastKnownKeys = null;\n\n    $el.on(\"change.crosstalkSliderInput\", function (event) {\n      if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n        var _getValue = getValue(),\n            _getValue2 = _slicedToArray(_getValue, 2),\n            from = _getValue2[0],\n            to = _getValue2[1];\n\n        var keys = [];\n        for (var i = 0; i < data.values.length; i++) {\n          var val = data.values[i];\n          if (val >= from && val <= to) {\n            keys.push(data.keys[i]);\n          }\n        }\n        keys.sort();\n        ctHandle.set(keys);\n        lastKnownKeys = keys;\n      }\n    });\n\n    // let $el = $(el);\n    // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n    //   let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n    //   if (checked.length === 0) {\n    //     ctHandle.clear();\n    //   } else {\n    //     let keys = {};\n    //     checked.each(function() {\n    //       data.map[this.value].forEach(function(key) {\n    //         keys[key] = true;\n    //       });\n    //     });\n    //     let keyArray = Object.keys(keys);\n    //     keyArray.sort();\n    //     ctHandle.set(keyArray);\n    //   }\n    // });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n  var str = n.toString();\n  while (str.length < digits) {\n    str = \"0\" + str;\n  }return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n  if (date instanceof Date) {\n    return date.getUTCFullYear() + \"-\" + padZeros(date.getUTCMonth() + 1, 2) + \"-\" + padZeros(date.getUTCDate(), 2);\n  } else {\n    return null;\n  }\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],10:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.SelectionHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n/**\n * Use this class to read and write (and listen for changes to) the selection\n * for a Crosstalk group. This is intended to be used for linked brushing.\n *\n * If two (or more) `SelectionHandle` instances in the same webpage share the\n * same group name, they will share the same state. Setting the selection using\n * one `SelectionHandle` instance will result in the `value` property instantly\n * changing across the others, and `\"change\"` event listeners on all instances\n * (including the one that initiated the sending) will fire.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n *   null or undefined (or any other falsy value). This can be changed later\n *   via the [SelectionHandle#setGroup](#setGroup) method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n *   the event object whenever an event is emitted.\n */\nvar SelectionHandle = exports.SelectionHandle = function () {\n  function SelectionHandle() {\n    var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n    var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n\n    _classCallCheck(this, SelectionHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._var = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this SelectionHandle. The group\n   * being switched away from (if any) will not have its selection value\n   * modified as a result of calling `setGroup`, even if this handle was the\n   * most recent handle to set the selection of the group.\n   *\n   * The group being switched to (if any) will also not have its selection value\n   * modified as a result of calling `setGroup`. If you want to set the\n   * selection value of the new group, call `set` explicitly.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(SelectionHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._var) {\n        this._var.off(\"change\", this._varOnChangeSub);\n        this._var = null;\n        this._varOnChangeSub = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        this._var = (0, _group2.default)(group).var(\"selection\");\n        var sub = this._var.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Retrieves the current selection for the group represented by this\n     * `SelectionHandle`.\n     *\n     * - If no selection is active, then this value will be falsy.\n     * - If a selection is active, but no data points are selected, then this\n     *   value will be an empty array.\n     * - If a selection is active, and data points are selected, then the keys\n     *   of the selected data points will be present in the array.\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n\n\n    /**\n     * Combines the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n    value: function _mergeExtraInfo(extraInfo) {\n      // Important incidental effect: shallow clone is returned\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n     *   {@link SelectionHandle#value}).\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(selectedKeys, extraInfo) {\n      if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any that were passed\n     *   into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Subscribes to events on this `SelectionHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {SelectionHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n     *   this subscription.\n     */\n\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancels event subscriptions created by {@link SelectionHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|SelectionHandle~listener} listener - Either the callback\n     *   function previously passed into {@link SelectionHandle#on}, or the\n     *   string that was returned from {@link SelectionHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n\n    /**\n     * Shuts down the `SelectionHandle` object.\n     *\n     * Removes all event listeners that were added through this handle.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.setGroup(null);\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._var ? this._var.get() : null;\n    }\n  }]);\n\n  return SelectionHandle;\n}();\n\n/**\n * @callback SelectionHandle~listener\n * @param {Object} event - An object containing details of the event. For\n *   `\"change\"` events, this includes the properties `value` (the new\n *   value of the selection, or `undefined` if no selection is active),\n *   `oldValue` (the previous value of the selection), and `sender` (the\n *   `SelectionHandle` instance that made the change).\n */\n\n/**\n * @event SelectionHandle#change\n * @type {object}\n * @property {object} value - The new value of the selection, or `undefined`\n *   if no selection is active.\n * @property {object} oldValue - The previous value of the selection.\n * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n *   changed the value.\n */\n\n},{\"./events\":1,\"./group\":4,\"./util\":11}],11:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.extend = extend;\nexports.checkSorted = checkSorted;\nexports.diffSortedLists = diffSortedLists;\nexports.dataframeToD3 = dataframeToD3;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction extend(target) {\n  for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n    sources[_key - 1] = arguments[_key];\n  }\n\n  for (var i = 0; i < sources.length; i++) {\n    var src = sources[i];\n    if (typeof src === \"undefined\" || src === null) continue;\n\n    for (var key in src) {\n      if (src.hasOwnProperty(key)) {\n        target[key] = src[key];\n      }\n    }\n  }\n  return target;\n}\n\nfunction checkSorted(list) {\n  for (var i = 1; i < list.length; i++) {\n    if (list[i] <= list[i - 1]) {\n      throw new Error(\"List is not sorted or contains duplicate\");\n    }\n  }\n}\n\nfunction diffSortedLists(a, b) {\n  var i_a = 0;\n  var i_b = 0;\n\n  if (!a) a = [];\n  if (!b) b = [];\n\n  var a_only = [];\n  var b_only = [];\n\n  checkSorted(a);\n  checkSorted(b);\n\n  while (i_a < a.length && i_b < b.length) {\n    if (a[i_a] === b[i_b]) {\n      i_a++;\n      i_b++;\n    } else if (a[i_a] < b[i_b]) {\n      a_only.push(a[i_a++]);\n    } else {\n      b_only.push(b[i_b++]);\n    }\n  }\n\n  if (i_a < a.length) a_only = a_only.concat(a.slice(i_a));\n  if (i_b < b.length) b_only = b_only.concat(b.slice(i_b));\n  return {\n    removed: a_only,\n    added: b_only\n  };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nfunction dataframeToD3(df) {\n  var names = [];\n  var length = void 0;\n  for (var name in df) {\n    if (df.hasOwnProperty(name)) names.push(name);\n    if (_typeof(df[name]) !== \"object\" || typeof df[name].length === \"undefined\") {\n      throw new Error(\"All fields must be arrays\");\n    } else if (typeof length !== \"undefined\" && length !== df[name].length) {\n      throw new Error(\"All fields must be arrays of the same length\");\n    }\n    length = df[name].length;\n  }\n  var results = [];\n  var item = void 0;\n  for (var row = 0; row < length; row++) {\n    item = {};\n    for (var col = 0; col < names.length; col++) {\n      item[names[col]] = df[names[col]][row];\n    }\n    results.push(item);\n  }\n  return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\n\nvar SubscriptionTracker = exports.SubscriptionTracker = function () {\n  function SubscriptionTracker(emitter) {\n    _classCallCheck(this, SubscriptionTracker);\n\n    this._emitter = emitter;\n    this._subs = {};\n  }\n\n  _createClass(SubscriptionTracker, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var sub = this._emitter.on(eventType, listener);\n      this._subs[sub] = eventType;\n      return sub;\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var sub = this._emitter.off(eventType, listener);\n      if (sub) {\n        delete this._subs[sub];\n      }\n      return sub;\n    }\n  }, {\n    key: \"removeAllListeners\",\n    value: function removeAllListeners() {\n      var _this = this;\n\n      var current_subs = this._subs;\n      this._subs = {};\n      Object.keys(current_subs).forEach(function (sub) {\n        _this._emitter.off(current_subs[sub], sub);\n      });\n    }\n  }]);\n\n  return SubscriptionTracker;\n}();\n\n},{}],12:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Var = function () {\n  function Var(group, name, /*optional*/value) {\n    _classCallCheck(this, Var);\n\n    this._group = group;\n    this._name = name;\n    this._value = value;\n    this._events = new _events2.default();\n  }\n\n  _createClass(Var, [{\n    key: \"get\",\n    value: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"set\",\n    value: function set(value, /*optional*/event) {\n      if (this._value === value) {\n        // Do nothing; the value hasn't changed\n        return;\n      }\n      var oldValue = this._value;\n      this._value = value;\n      // Alert JavaScript listeners that the value has changed\n      var evt = {};\n      if (event && (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\") {\n        for (var k in event) {\n          if (event.hasOwnProperty(k)) evt[k] = event[k];\n        }\n      }\n      evt.oldValue = oldValue;\n      evt.value = value;\n      this._events.trigger(\"change\", evt, this);\n\n      // TODO: Make this extensible, to let arbitrary back-ends know that\n      // something has changed\n      if (global.Shiny && global.Shiny.onInputChange) {\n        global.Shiny.onInputChange(\".clientValue-\" + (this._group.name !== null ? this._group.name + \"-\" : \"\") + this._name, typeof value === \"undefined\" ? null : value);\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._events.on(eventType, listener);\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._events.off(eventType, listener);\n    }\n  }]);\n\n  return Var;\n}();\n\nexports.default = Var;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./events\":1}]},{},[5])\n//# sourceMappingURL=crosstalk.js.map\n"
  },
  {
    "path": "docs/site_libs/crosstalk-1.2.0/scss/crosstalk.scss",
    "content": "/* Adjust margins outwards, so column contents line up with the edges of the\n   parent of container-fluid. */\n.container-fluid.crosstalk-bscols {\n  margin-left: -30px;\n  margin-right: -30px;\n  white-space: normal;\n}\n\n/* But don't adjust the margins outwards if we're directly under the body,\n   i.e. we were the top-level of something at the console. */\nbody > .container-fluid.crosstalk-bscols {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n  display: inline-block;\n  padding-right: 12px;\n  vertical-align: top;\n}\n\n@media only screen and (max-width:480px) {\n  .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n    display: block;\n    padding-right: inherit;\n  }\n}\n\n/* Relevant BS3 styles to make filter_checkbox() look reasonable without Bootstrap */\n.crosstalk-input {\n  margin-bottom: 15px; /* a la .form-group */\n  .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  input[type=\"checkbox\"] {\n    margin: 4px 0 0;\n    margin-top: 1px;\n    line-height: normal;\n  }\n  .checkbox {\n    position: relative;\n    display: block;\n    margin-top: 10px;\n    margin-bottom: 10px;\n  }\n  .checkbox > label{\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: 400;\n    cursor: pointer;\n  }\n  .checkbox input[type=\"checkbox\"],\n  .checkbox-inline input[type=\"checkbox\"] {\n    position: absolute;\n    margin-top: 2px;\n    margin-left: -20px;\n  }\n  .checkbox + .checkbox {\n    margin-top: -5px;\n  }\n  .checkbox-inline {\n    position: relative;\n    display: inline-block;\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: 400;\n    vertical-align: middle;\n    cursor: pointer;\n  }\n  .checkbox-inline + .checkbox-inline {\n    margin-top: 0;\n    margin-left: 10px;\n  }\n}\n"
  },
  {
    "path": "docs/site_libs/font-awesome-5.1.0/css/all.css",
    "content": "/*!\n * Font Awesome Free 5.1.0 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */\n.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:a 2s infinite linear}.fa-pulse{animation:a 1s infinite steps(8)}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:\"\\f26e\"}.fa-accessible-icon:before{content:\"\\f368\"}.fa-accusoft:before{content:\"\\f369\"}.fa-address-book:before{content:\"\\f2b9\"}.fa-address-card:before{content:\"\\f2bb\"}.fa-adjust:before{content:\"\\f042\"}.fa-adn:before{content:\"\\f170\"}.fa-adversal:before{content:\"\\f36a\"}.fa-affiliatetheme:before{content:\"\\f36b\"}.fa-algolia:before{content:\"\\f36c\"}.fa-align-center:before{content:\"\\f037\"}.fa-align-justify:before{content:\"\\f039\"}.fa-align-left:before{content:\"\\f036\"}.fa-align-right:before{content:\"\\f038\"}.fa-allergies:before{content:\"\\f461\"}.fa-amazon:before{content:\"\\f270\"}.fa-amazon-pay:before{content:\"\\f42c\"}.fa-ambulance:before{content:\"\\f0f9\"}.fa-american-sign-language-interpreting:before{content:\"\\f2a3\"}.fa-amilia:before{content:\"\\f36d\"}.fa-anchor:before{content:\"\\f13d\"}.fa-android:before{content:\"\\f17b\"}.fa-angellist:before{content:\"\\f209\"}.fa-angle-double-down:before{content:\"\\f103\"}.fa-angle-double-left:before{content:\"\\f100\"}.fa-angle-double-right:before{content:\"\\f101\"}.fa-angle-double-up:before{content:\"\\f102\"}.fa-angle-down:before{content:\"\\f107\"}.fa-angle-left:before{content:\"\\f104\"}.fa-angle-right:before{content:\"\\f105\"}.fa-angle-up:before{content:\"\\f106\"}.fa-angry:before{content:\"\\f556\"}.fa-angrycreative:before{content:\"\\f36e\"}.fa-angular:before{content:\"\\f420\"}.fa-app-store:before{content:\"\\f36f\"}.fa-app-store-ios:before{content:\"\\f370\"}.fa-apper:before{content:\"\\f371\"}.fa-apple:before{content:\"\\f179\"}.fa-apple-pay:before{content:\"\\f415\"}.fa-archive:before{content:\"\\f187\"}.fa-archway:before{content:\"\\f557\"}.fa-arrow-alt-circle-down:before{content:\"\\f358\"}.fa-arrow-alt-circle-left:before{content:\"\\f359\"}.fa-arrow-alt-circle-right:before{content:\"\\f35a\"}.fa-arrow-alt-circle-up:before{content:\"\\f35b\"}.fa-arrow-circle-down:before{content:\"\\f0ab\"}.fa-arrow-circle-left:before{content:\"\\f0a8\"}.fa-arrow-circle-right:before{content:\"\\f0a9\"}.fa-arrow-circle-up:before{content:\"\\f0aa\"}.fa-arrow-down:before{content:\"\\f063\"}.fa-arrow-left:before{content:\"\\f060\"}.fa-arrow-right:before{content:\"\\f061\"}.fa-arrow-up:before{content:\"\\f062\"}.fa-arrows-alt:before{content:\"\\f0b2\"}.fa-arrows-alt-h:before{content:\"\\f337\"}.fa-arrows-alt-v:before{content:\"\\f338\"}.fa-assistive-listening-systems:before{content:\"\\f2a2\"}.fa-asterisk:before{content:\"\\f069\"}.fa-asymmetrik:before{content:\"\\f372\"}.fa-at:before{content:\"\\f1fa\"}.fa-atlas:before{content:\"\\f558\"}.fa-audible:before{content:\"\\f373\"}.fa-audio-description:before{content:\"\\f29e\"}.fa-autoprefixer:before{content:\"\\f41c\"}.fa-avianex:before{content:\"\\f374\"}.fa-aviato:before{content:\"\\f421\"}.fa-award:before{content:\"\\f559\"}.fa-aws:before{content:\"\\f375\"}.fa-backspace:before{content:\"\\f55a\"}.fa-backward:before{content:\"\\f04a\"}.fa-balance-scale:before{content:\"\\f24e\"}.fa-ban:before{content:\"\\f05e\"}.fa-band-aid:before{content:\"\\f462\"}.fa-bandcamp:before{content:\"\\f2d5\"}.fa-barcode:before{content:\"\\f02a\"}.fa-bars:before{content:\"\\f0c9\"}.fa-baseball-ball:before{content:\"\\f433\"}.fa-basketball-ball:before{content:\"\\f434\"}.fa-bath:before{content:\"\\f2cd\"}.fa-battery-empty:before{content:\"\\f244\"}.fa-battery-full:before{content:\"\\f240\"}.fa-battery-half:before{content:\"\\f242\"}.fa-battery-quarter:before{content:\"\\f243\"}.fa-battery-three-quarters:before{content:\"\\f241\"}.fa-bed:before{content:\"\\f236\"}.fa-beer:before{content:\"\\f0fc\"}.fa-behance:before{content:\"\\f1b4\"}.fa-behance-square:before{content:\"\\f1b5\"}.fa-bell:before{content:\"\\f0f3\"}.fa-bell-slash:before{content:\"\\f1f6\"}.fa-bezier-curve:before{content:\"\\f55b\"}.fa-bicycle:before{content:\"\\f206\"}.fa-bimobject:before{content:\"\\f378\"}.fa-binoculars:before{content:\"\\f1e5\"}.fa-birthday-cake:before{content:\"\\f1fd\"}.fa-bitbucket:before{content:\"\\f171\"}.fa-bitcoin:before{content:\"\\f379\"}.fa-bity:before{content:\"\\f37a\"}.fa-black-tie:before{content:\"\\f27e\"}.fa-blackberry:before{content:\"\\f37b\"}.fa-blender:before{content:\"\\f517\"}.fa-blind:before{content:\"\\f29d\"}.fa-blogger:before{content:\"\\f37c\"}.fa-blogger-b:before{content:\"\\f37d\"}.fa-bluetooth:before{content:\"\\f293\"}.fa-bluetooth-b:before{content:\"\\f294\"}.fa-bold:before{content:\"\\f032\"}.fa-bolt:before{content:\"\\f0e7\"}.fa-bomb:before{content:\"\\f1e2\"}.fa-bong:before{content:\"\\f55c\"}.fa-book:before{content:\"\\f02d\"}.fa-book-open:before{content:\"\\f518\"}.fa-bookmark:before{content:\"\\f02e\"}.fa-bowling-ball:before{content:\"\\f436\"}.fa-box:before{content:\"\\f466\"}.fa-box-open:before{content:\"\\f49e\"}.fa-boxes:before{content:\"\\f468\"}.fa-braille:before{content:\"\\f2a1\"}.fa-briefcase:before{content:\"\\f0b1\"}.fa-briefcase-medical:before{content:\"\\f469\"}.fa-broadcast-tower:before{content:\"\\f519\"}.fa-broom:before{content:\"\\f51a\"}.fa-brush:before{content:\"\\f55d\"}.fa-btc:before{content:\"\\f15a\"}.fa-bug:before{content:\"\\f188\"}.fa-building:before{content:\"\\f1ad\"}.fa-bullhorn:before{content:\"\\f0a1\"}.fa-bullseye:before{content:\"\\f140\"}.fa-burn:before{content:\"\\f46a\"}.fa-buromobelexperte:before{content:\"\\f37f\"}.fa-bus:before{content:\"\\f207\"}.fa-bus-alt:before{content:\"\\f55e\"}.fa-buysellads:before{content:\"\\f20d\"}.fa-calculator:before{content:\"\\f1ec\"}.fa-calendar:before{content:\"\\f133\"}.fa-calendar-alt:before{content:\"\\f073\"}.fa-calendar-check:before{content:\"\\f274\"}.fa-calendar-minus:before{content:\"\\f272\"}.fa-calendar-plus:before{content:\"\\f271\"}.fa-calendar-times:before{content:\"\\f273\"}.fa-camera:before{content:\"\\f030\"}.fa-camera-retro:before{content:\"\\f083\"}.fa-cannabis:before{content:\"\\f55f\"}.fa-capsules:before{content:\"\\f46b\"}.fa-car:before{content:\"\\f1b9\"}.fa-caret-down:before{content:\"\\f0d7\"}.fa-caret-left:before{content:\"\\f0d9\"}.fa-caret-right:before{content:\"\\f0da\"}.fa-caret-square-down:before{content:\"\\f150\"}.fa-caret-square-left:before{content:\"\\f191\"}.fa-caret-square-right:before{content:\"\\f152\"}.fa-caret-square-up:before{content:\"\\f151\"}.fa-caret-up:before{content:\"\\f0d8\"}.fa-cart-arrow-down:before{content:\"\\f218\"}.fa-cart-plus:before{content:\"\\f217\"}.fa-cc-amazon-pay:before{content:\"\\f42d\"}.fa-cc-amex:before{content:\"\\f1f3\"}.fa-cc-apple-pay:before{content:\"\\f416\"}.fa-cc-diners-club:before{content:\"\\f24c\"}.fa-cc-discover:before{content:\"\\f1f2\"}.fa-cc-jcb:before{content:\"\\f24b\"}.fa-cc-mastercard:before{content:\"\\f1f1\"}.fa-cc-paypal:before{content:\"\\f1f4\"}.fa-cc-stripe:before{content:\"\\f1f5\"}.fa-cc-visa:before{content:\"\\f1f0\"}.fa-centercode:before{content:\"\\f380\"}.fa-certificate:before{content:\"\\f0a3\"}.fa-chalkboard:before{content:\"\\f51b\"}.fa-chalkboard-teacher:before{content:\"\\f51c\"}.fa-chart-area:before{content:\"\\f1fe\"}.fa-chart-bar:before{content:\"\\f080\"}.fa-chart-line:before{content:\"\\f201\"}.fa-chart-pie:before{content:\"\\f200\"}.fa-check:before{content:\"\\f00c\"}.fa-check-circle:before{content:\"\\f058\"}.fa-check-double:before{content:\"\\f560\"}.fa-check-square:before{content:\"\\f14a\"}.fa-chess:before{content:\"\\f439\"}.fa-chess-bishop:before{content:\"\\f43a\"}.fa-chess-board:before{content:\"\\f43c\"}.fa-chess-king:before{content:\"\\f43f\"}.fa-chess-knight:before{content:\"\\f441\"}.fa-chess-pawn:before{content:\"\\f443\"}.fa-chess-queen:before{content:\"\\f445\"}.fa-chess-rook:before{content:\"\\f447\"}.fa-chevron-circle-down:before{content:\"\\f13a\"}.fa-chevron-circle-left:before{content:\"\\f137\"}.fa-chevron-circle-right:before{content:\"\\f138\"}.fa-chevron-circle-up:before{content:\"\\f139\"}.fa-chevron-down:before{content:\"\\f078\"}.fa-chevron-left:before{content:\"\\f053\"}.fa-chevron-right:before{content:\"\\f054\"}.fa-chevron-up:before{content:\"\\f077\"}.fa-child:before{content:\"\\f1ae\"}.fa-chrome:before{content:\"\\f268\"}.fa-church:before{content:\"\\f51d\"}.fa-circle:before{content:\"\\f111\"}.fa-circle-notch:before{content:\"\\f1ce\"}.fa-clipboard:before{content:\"\\f328\"}.fa-clipboard-check:before{content:\"\\f46c\"}.fa-clipboard-list:before{content:\"\\f46d\"}.fa-clock:before{content:\"\\f017\"}.fa-clone:before{content:\"\\f24d\"}.fa-closed-captioning:before{content:\"\\f20a\"}.fa-cloud:before{content:\"\\f0c2\"}.fa-cloud-download-alt:before{content:\"\\f381\"}.fa-cloud-upload-alt:before{content:\"\\f382\"}.fa-cloudscale:before{content:\"\\f383\"}.fa-cloudsmith:before{content:\"\\f384\"}.fa-cloudversify:before{content:\"\\f385\"}.fa-cocktail:before{content:\"\\f561\"}.fa-code:before{content:\"\\f121\"}.fa-code-branch:before{content:\"\\f126\"}.fa-codepen:before{content:\"\\f1cb\"}.fa-codiepie:before{content:\"\\f284\"}.fa-coffee:before{content:\"\\f0f4\"}.fa-cog:before{content:\"\\f013\"}.fa-cogs:before{content:\"\\f085\"}.fa-coins:before{content:\"\\f51e\"}.fa-columns:before{content:\"\\f0db\"}.fa-comment:before{content:\"\\f075\"}.fa-comment-alt:before{content:\"\\f27a\"}.fa-comment-dots:before{content:\"\\f4ad\"}.fa-comment-slash:before{content:\"\\f4b3\"}.fa-comments:before{content:\"\\f086\"}.fa-compact-disc:before{content:\"\\f51f\"}.fa-compass:before{content:\"\\f14e\"}.fa-compress:before{content:\"\\f066\"}.fa-concierge-bell:before{content:\"\\f562\"}.fa-connectdevelop:before{content:\"\\f20e\"}.fa-contao:before{content:\"\\f26d\"}.fa-cookie:before{content:\"\\f563\"}.fa-cookie-bite:before{content:\"\\f564\"}.fa-copy:before{content:\"\\f0c5\"}.fa-copyright:before{content:\"\\f1f9\"}.fa-couch:before{content:\"\\f4b8\"}.fa-cpanel:before{content:\"\\f388\"}.fa-creative-commons:before{content:\"\\f25e\"}.fa-creative-commons-by:before{content:\"\\f4e7\"}.fa-creative-commons-nc:before{content:\"\\f4e8\"}.fa-creative-commons-nc-eu:before{content:\"\\f4e9\"}.fa-creative-commons-nc-jp:before{content:\"\\f4ea\"}.fa-creative-commons-nd:before{content:\"\\f4eb\"}.fa-creative-commons-pd:before{content:\"\\f4ec\"}.fa-creative-commons-pd-alt:before{content:\"\\f4ed\"}.fa-creative-commons-remix:before{content:\"\\f4ee\"}.fa-creative-commons-sa:before{content:\"\\f4ef\"}.fa-creative-commons-sampling:before{content:\"\\f4f0\"}.fa-creative-commons-sampling-plus:before{content:\"\\f4f1\"}.fa-creative-commons-share:before{content:\"\\f4f2\"}.fa-credit-card:before{content:\"\\f09d\"}.fa-crop:before{content:\"\\f125\"}.fa-crop-alt:before{content:\"\\f565\"}.fa-crosshairs:before{content:\"\\f05b\"}.fa-crow:before{content:\"\\f520\"}.fa-crown:before{content:\"\\f521\"}.fa-css3:before{content:\"\\f13c\"}.fa-css3-alt:before{content:\"\\f38b\"}.fa-cube:before{content:\"\\f1b2\"}.fa-cubes:before{content:\"\\f1b3\"}.fa-cut:before{content:\"\\f0c4\"}.fa-cuttlefish:before{content:\"\\f38c\"}.fa-d-and-d:before{content:\"\\f38d\"}.fa-dashcube:before{content:\"\\f210\"}.fa-database:before{content:\"\\f1c0\"}.fa-deaf:before{content:\"\\f2a4\"}.fa-delicious:before{content:\"\\f1a5\"}.fa-deploydog:before{content:\"\\f38e\"}.fa-deskpro:before{content:\"\\f38f\"}.fa-desktop:before{content:\"\\f108\"}.fa-deviantart:before{content:\"\\f1bd\"}.fa-diagnoses:before{content:\"\\f470\"}.fa-dice:before{content:\"\\f522\"}.fa-dice-five:before{content:\"\\f523\"}.fa-dice-four:before{content:\"\\f524\"}.fa-dice-one:before{content:\"\\f525\"}.fa-dice-six:before{content:\"\\f526\"}.fa-dice-three:before{content:\"\\f527\"}.fa-dice-two:before{content:\"\\f528\"}.fa-digg:before{content:\"\\f1a6\"}.fa-digital-ocean:before{content:\"\\f391\"}.fa-digital-tachograph:before{content:\"\\f566\"}.fa-discord:before{content:\"\\f392\"}.fa-discourse:before{content:\"\\f393\"}.fa-divide:before{content:\"\\f529\"}.fa-dizzy:before{content:\"\\f567\"}.fa-dna:before{content:\"\\f471\"}.fa-dochub:before{content:\"\\f394\"}.fa-docker:before{content:\"\\f395\"}.fa-dollar-sign:before{content:\"\\f155\"}.fa-dolly:before{content:\"\\f472\"}.fa-dolly-flatbed:before{content:\"\\f474\"}.fa-donate:before{content:\"\\f4b9\"}.fa-door-closed:before{content:\"\\f52a\"}.fa-door-open:before{content:\"\\f52b\"}.fa-dot-circle:before{content:\"\\f192\"}.fa-dove:before{content:\"\\f4ba\"}.fa-download:before{content:\"\\f019\"}.fa-draft2digital:before{content:\"\\f396\"}.fa-drafting-compass:before{content:\"\\f568\"}.fa-dribbble:before{content:\"\\f17d\"}.fa-dribbble-square:before{content:\"\\f397\"}.fa-dropbox:before{content:\"\\f16b\"}.fa-drum:before{content:\"\\f569\"}.fa-drum-steelpan:before{content:\"\\f56a\"}.fa-drupal:before{content:\"\\f1a9\"}.fa-dumbbell:before{content:\"\\f44b\"}.fa-dyalog:before{content:\"\\f399\"}.fa-earlybirds:before{content:\"\\f39a\"}.fa-ebay:before{content:\"\\f4f4\"}.fa-edge:before{content:\"\\f282\"}.fa-edit:before{content:\"\\f044\"}.fa-eject:before{content:\"\\f052\"}.fa-elementor:before{content:\"\\f430\"}.fa-ellipsis-h:before{content:\"\\f141\"}.fa-ellipsis-v:before{content:\"\\f142\"}.fa-ember:before{content:\"\\f423\"}.fa-empire:before{content:\"\\f1d1\"}.fa-envelope:before{content:\"\\f0e0\"}.fa-envelope-open:before{content:\"\\f2b6\"}.fa-envelope-square:before{content:\"\\f199\"}.fa-envira:before{content:\"\\f299\"}.fa-equals:before{content:\"\\f52c\"}.fa-eraser:before{content:\"\\f12d\"}.fa-erlang:before{content:\"\\f39d\"}.fa-ethereum:before{content:\"\\f42e\"}.fa-etsy:before{content:\"\\f2d7\"}.fa-euro-sign:before{content:\"\\f153\"}.fa-exchange-alt:before{content:\"\\f362\"}.fa-exclamation:before{content:\"\\f12a\"}.fa-exclamation-circle:before{content:\"\\f06a\"}.fa-exclamation-triangle:before{content:\"\\f071\"}.fa-expand:before{content:\"\\f065\"}.fa-expand-arrows-alt:before{content:\"\\f31e\"}.fa-expeditedssl:before{content:\"\\f23e\"}.fa-external-link-alt:before{content:\"\\f35d\"}.fa-external-link-square-alt:before{content:\"\\f360\"}.fa-eye:before{content:\"\\f06e\"}.fa-eye-dropper:before{content:\"\\f1fb\"}.fa-eye-slash:before{content:\"\\f070\"}.fa-facebook:before{content:\"\\f09a\"}.fa-facebook-f:before{content:\"\\f39e\"}.fa-facebook-messenger:before{content:\"\\f39f\"}.fa-facebook-square:before{content:\"\\f082\"}.fa-fast-backward:before{content:\"\\f049\"}.fa-fast-forward:before{content:\"\\f050\"}.fa-fax:before{content:\"\\f1ac\"}.fa-feather:before{content:\"\\f52d\"}.fa-feather-alt:before{content:\"\\f56b\"}.fa-female:before{content:\"\\f182\"}.fa-fighter-jet:before{content:\"\\f0fb\"}.fa-file:before{content:\"\\f15b\"}.fa-file-alt:before{content:\"\\f15c\"}.fa-file-archive:before{content:\"\\f1c6\"}.fa-file-audio:before{content:\"\\f1c7\"}.fa-file-code:before{content:\"\\f1c9\"}.fa-file-contract:before{content:\"\\f56c\"}.fa-file-download:before{content:\"\\f56d\"}.fa-file-excel:before{content:\"\\f1c3\"}.fa-file-export:before{content:\"\\f56e\"}.fa-file-image:before{content:\"\\f1c5\"}.fa-file-import:before{content:\"\\f56f\"}.fa-file-invoice:before{content:\"\\f570\"}.fa-file-invoice-dollar:before{content:\"\\f571\"}.fa-file-medical:before{content:\"\\f477\"}.fa-file-medical-alt:before{content:\"\\f478\"}.fa-file-pdf:before{content:\"\\f1c1\"}.fa-file-powerpoint:before{content:\"\\f1c4\"}.fa-file-prescription:before{content:\"\\f572\"}.fa-file-signature:before{content:\"\\f573\"}.fa-file-upload:before{content:\"\\f574\"}.fa-file-video:before{content:\"\\f1c8\"}.fa-file-word:before{content:\"\\f1c2\"}.fa-fill:before{content:\"\\f575\"}.fa-fill-drip:before{content:\"\\f576\"}.fa-film:before{content:\"\\f008\"}.fa-filter:before{content:\"\\f0b0\"}.fa-fingerprint:before{content:\"\\f577\"}.fa-fire:before{content:\"\\f06d\"}.fa-fire-extinguisher:before{content:\"\\f134\"}.fa-firefox:before{content:\"\\f269\"}.fa-first-aid:before{content:\"\\f479\"}.fa-first-order:before{content:\"\\f2b0\"}.fa-first-order-alt:before{content:\"\\f50a\"}.fa-firstdraft:before{content:\"\\f3a1\"}.fa-fish:before{content:\"\\f578\"}.fa-flag:before{content:\"\\f024\"}.fa-flag-checkered:before{content:\"\\f11e\"}.fa-flask:before{content:\"\\f0c3\"}.fa-flickr:before{content:\"\\f16e\"}.fa-flipboard:before{content:\"\\f44d\"}.fa-flushed:before{content:\"\\f579\"}.fa-fly:before{content:\"\\f417\"}.fa-folder:before{content:\"\\f07b\"}.fa-folder-open:before{content:\"\\f07c\"}.fa-font:before{content:\"\\f031\"}.fa-font-awesome:before{content:\"\\f2b4\"}.fa-font-awesome-alt:before{content:\"\\f35c\"}.fa-font-awesome-flag:before{content:\"\\f425\"}.fa-font-awesome-logo-full:before{content:\"\\f4e6\"}.fa-fonticons:before{content:\"\\f280\"}.fa-fonticons-fi:before{content:\"\\f3a2\"}.fa-football-ball:before{content:\"\\f44e\"}.fa-fort-awesome:before{content:\"\\f286\"}.fa-fort-awesome-alt:before{content:\"\\f3a3\"}.fa-forumbee:before{content:\"\\f211\"}.fa-forward:before{content:\"\\f04e\"}.fa-foursquare:before{content:\"\\f180\"}.fa-free-code-camp:before{content:\"\\f2c5\"}.fa-freebsd:before{content:\"\\f3a4\"}.fa-frog:before{content:\"\\f52e\"}.fa-frown:before{content:\"\\f119\"}.fa-frown-open:before{content:\"\\f57a\"}.fa-fulcrum:before{content:\"\\f50b\"}.fa-futbol:before{content:\"\\f1e3\"}.fa-galactic-republic:before{content:\"\\f50c\"}.fa-galactic-senate:before{content:\"\\f50d\"}.fa-gamepad:before{content:\"\\f11b\"}.fa-gas-pump:before{content:\"\\f52f\"}.fa-gavel:before{content:\"\\f0e3\"}.fa-gem:before{content:\"\\f3a5\"}.fa-genderless:before{content:\"\\f22d\"}.fa-get-pocket:before{content:\"\\f265\"}.fa-gg:before{content:\"\\f260\"}.fa-gg-circle:before{content:\"\\f261\"}.fa-gift:before{content:\"\\f06b\"}.fa-git:before{content:\"\\f1d3\"}.fa-git-square:before{content:\"\\f1d2\"}.fa-github:before{content:\"\\f09b\"}.fa-github-alt:before{content:\"\\f113\"}.fa-github-square:before{content:\"\\f092\"}.fa-gitkraken:before{content:\"\\f3a6\"}.fa-gitlab:before{content:\"\\f296\"}.fa-gitter:before{content:\"\\f426\"}.fa-glass-martini:before{content:\"\\f000\"}.fa-glass-martini-alt:before{content:\"\\f57b\"}.fa-glasses:before{content:\"\\f530\"}.fa-glide:before{content:\"\\f2a5\"}.fa-glide-g:before{content:\"\\f2a6\"}.fa-globe:before{content:\"\\f0ac\"}.fa-globe-africa:before{content:\"\\f57c\"}.fa-globe-americas:before{content:\"\\f57d\"}.fa-globe-asia:before{content:\"\\f57e\"}.fa-gofore:before{content:\"\\f3a7\"}.fa-golf-ball:before{content:\"\\f450\"}.fa-goodreads:before{content:\"\\f3a8\"}.fa-goodreads-g:before{content:\"\\f3a9\"}.fa-google:before{content:\"\\f1a0\"}.fa-google-drive:before{content:\"\\f3aa\"}.fa-google-play:before{content:\"\\f3ab\"}.fa-google-plus:before{content:\"\\f2b3\"}.fa-google-plus-g:before{content:\"\\f0d5\"}.fa-google-plus-square:before{content:\"\\f0d4\"}.fa-google-wallet:before{content:\"\\f1ee\"}.fa-graduation-cap:before{content:\"\\f19d\"}.fa-gratipay:before{content:\"\\f184\"}.fa-grav:before{content:\"\\f2d6\"}.fa-greater-than:before{content:\"\\f531\"}.fa-greater-than-equal:before{content:\"\\f532\"}.fa-grimace:before{content:\"\\f57f\"}.fa-grin:before{content:\"\\f580\"}.fa-grin-alt:before{content:\"\\f581\"}.fa-grin-beam:before{content:\"\\f582\"}.fa-grin-beam-sweat:before{content:\"\\f583\"}.fa-grin-hearts:before{content:\"\\f584\"}.fa-grin-squint:before{content:\"\\f585\"}.fa-grin-squint-tears:before{content:\"\\f586\"}.fa-grin-stars:before{content:\"\\f587\"}.fa-grin-tears:before{content:\"\\f588\"}.fa-grin-tongue:before{content:\"\\f589\"}.fa-grin-tongue-squint:before{content:\"\\f58a\"}.fa-grin-tongue-wink:before{content:\"\\f58b\"}.fa-grin-wink:before{content:\"\\f58c\"}.fa-grip-horizontal:before{content:\"\\f58d\"}.fa-grip-vertical:before{content:\"\\f58e\"}.fa-gripfire:before{content:\"\\f3ac\"}.fa-grunt:before{content:\"\\f3ad\"}.fa-gulp:before{content:\"\\f3ae\"}.fa-h-square:before{content:\"\\f0fd\"}.fa-hacker-news:before{content:\"\\f1d4\"}.fa-hacker-news-square:before{content:\"\\f3af\"}.fa-hand-holding:before{content:\"\\f4bd\"}.fa-hand-holding-heart:before{content:\"\\f4be\"}.fa-hand-holding-usd:before{content:\"\\f4c0\"}.fa-hand-lizard:before{content:\"\\f258\"}.fa-hand-paper:before{content:\"\\f256\"}.fa-hand-peace:before{content:\"\\f25b\"}.fa-hand-point-down:before{content:\"\\f0a7\"}.fa-hand-point-left:before{content:\"\\f0a5\"}.fa-hand-point-right:before{content:\"\\f0a4\"}.fa-hand-point-up:before{content:\"\\f0a6\"}.fa-hand-pointer:before{content:\"\\f25a\"}.fa-hand-rock:before{content:\"\\f255\"}.fa-hand-scissors:before{content:\"\\f257\"}.fa-hand-spock:before{content:\"\\f259\"}.fa-hands:before{content:\"\\f4c2\"}.fa-hands-helping:before{content:\"\\f4c4\"}.fa-handshake:before{content:\"\\f2b5\"}.fa-hashtag:before{content:\"\\f292\"}.fa-hdd:before{content:\"\\f0a0\"}.fa-heading:before{content:\"\\f1dc\"}.fa-headphones:before{content:\"\\f025\"}.fa-headphones-alt:before{content:\"\\f58f\"}.fa-headset:before{content:\"\\f590\"}.fa-heart:before{content:\"\\f004\"}.fa-heartbeat:before{content:\"\\f21e\"}.fa-helicopter:before{content:\"\\f533\"}.fa-highlighter:before{content:\"\\f591\"}.fa-hips:before{content:\"\\f452\"}.fa-hire-a-helper:before{content:\"\\f3b0\"}.fa-history:before{content:\"\\f1da\"}.fa-hockey-puck:before{content:\"\\f453\"}.fa-home:before{content:\"\\f015\"}.fa-hooli:before{content:\"\\f427\"}.fa-hornbill:before{content:\"\\f592\"}.fa-hospital:before{content:\"\\f0f8\"}.fa-hospital-alt:before{content:\"\\f47d\"}.fa-hospital-symbol:before{content:\"\\f47e\"}.fa-hot-tub:before{content:\"\\f593\"}.fa-hotel:before{content:\"\\f594\"}.fa-hotjar:before{content:\"\\f3b1\"}.fa-hourglass:before{content:\"\\f254\"}.fa-hourglass-end:before{content:\"\\f253\"}.fa-hourglass-half:before{content:\"\\f252\"}.fa-hourglass-start:before{content:\"\\f251\"}.fa-houzz:before{content:\"\\f27c\"}.fa-html5:before{content:\"\\f13b\"}.fa-hubspot:before{content:\"\\f3b2\"}.fa-i-cursor:before{content:\"\\f246\"}.fa-id-badge:before{content:\"\\f2c1\"}.fa-id-card:before{content:\"\\f2c2\"}.fa-id-card-alt:before{content:\"\\f47f\"}.fa-image:before{content:\"\\f03e\"}.fa-images:before{content:\"\\f302\"}.fa-imdb:before{content:\"\\f2d8\"}.fa-inbox:before{content:\"\\f01c\"}.fa-indent:before{content:\"\\f03c\"}.fa-industry:before{content:\"\\f275\"}.fa-infinity:before{content:\"\\f534\"}.fa-info:before{content:\"\\f129\"}.fa-info-circle:before{content:\"\\f05a\"}.fa-instagram:before{content:\"\\f16d\"}.fa-internet-explorer:before{content:\"\\f26b\"}.fa-ioxhost:before{content:\"\\f208\"}.fa-italic:before{content:\"\\f033\"}.fa-itunes:before{content:\"\\f3b4\"}.fa-itunes-note:before{content:\"\\f3b5\"}.fa-java:before{content:\"\\f4e4\"}.fa-jedi-order:before{content:\"\\f50e\"}.fa-jenkins:before{content:\"\\f3b6\"}.fa-joget:before{content:\"\\f3b7\"}.fa-joint:before{content:\"\\f595\"}.fa-joomla:before{content:\"\\f1aa\"}.fa-js:before{content:\"\\f3b8\"}.fa-js-square:before{content:\"\\f3b9\"}.fa-jsfiddle:before{content:\"\\f1cc\"}.fa-key:before{content:\"\\f084\"}.fa-keybase:before{content:\"\\f4f5\"}.fa-keyboard:before{content:\"\\f11c\"}.fa-keycdn:before{content:\"\\f3ba\"}.fa-kickstarter:before{content:\"\\f3bb\"}.fa-kickstarter-k:before{content:\"\\f3bc\"}.fa-kiss:before{content:\"\\f596\"}.fa-kiss-beam:before{content:\"\\f597\"}.fa-kiss-wink-heart:before{content:\"\\f598\"}.fa-kiwi-bird:before{content:\"\\f535\"}.fa-korvue:before{content:\"\\f42f\"}.fa-language:before{content:\"\\f1ab\"}.fa-laptop:before{content:\"\\f109\"}.fa-laravel:before{content:\"\\f3bd\"}.fa-lastfm:before{content:\"\\f202\"}.fa-lastfm-square:before{content:\"\\f203\"}.fa-laugh:before{content:\"\\f599\"}.fa-laugh-beam:before{content:\"\\f59a\"}.fa-laugh-squint:before{content:\"\\f59b\"}.fa-laugh-wink:before{content:\"\\f59c\"}.fa-leaf:before{content:\"\\f06c\"}.fa-leanpub:before{content:\"\\f212\"}.fa-lemon:before{content:\"\\f094\"}.fa-less:before{content:\"\\f41d\"}.fa-less-than:before{content:\"\\f536\"}.fa-less-than-equal:before{content:\"\\f537\"}.fa-level-down-alt:before{content:\"\\f3be\"}.fa-level-up-alt:before{content:\"\\f3bf\"}.fa-life-ring:before{content:\"\\f1cd\"}.fa-lightbulb:before{content:\"\\f0eb\"}.fa-line:before{content:\"\\f3c0\"}.fa-link:before{content:\"\\f0c1\"}.fa-linkedin:before{content:\"\\f08c\"}.fa-linkedin-in:before{content:\"\\f0e1\"}.fa-linode:before{content:\"\\f2b8\"}.fa-linux:before{content:\"\\f17c\"}.fa-lira-sign:before{content:\"\\f195\"}.fa-list:before{content:\"\\f03a\"}.fa-list-alt:before{content:\"\\f022\"}.fa-list-ol:before{content:\"\\f0cb\"}.fa-list-ul:before{content:\"\\f0ca\"}.fa-location-arrow:before{content:\"\\f124\"}.fa-lock:before{content:\"\\f023\"}.fa-lock-open:before{content:\"\\f3c1\"}.fa-long-arrow-alt-down:before{content:\"\\f309\"}.fa-long-arrow-alt-left:before{content:\"\\f30a\"}.fa-long-arrow-alt-right:before{content:\"\\f30b\"}.fa-long-arrow-alt-up:before{content:\"\\f30c\"}.fa-low-vision:before{content:\"\\f2a8\"}.fa-luggage-cart:before{content:\"\\f59d\"}.fa-lyft:before{content:\"\\f3c3\"}.fa-magento:before{content:\"\\f3c4\"}.fa-magic:before{content:\"\\f0d0\"}.fa-magnet:before{content:\"\\f076\"}.fa-mailchimp:before{content:\"\\f59e\"}.fa-male:before{content:\"\\f183\"}.fa-mandalorian:before{content:\"\\f50f\"}.fa-map:before{content:\"\\f279\"}.fa-map-marked:before{content:\"\\f59f\"}.fa-map-marked-alt:before{content:\"\\f5a0\"}.fa-map-marker:before{content:\"\\f041\"}.fa-map-marker-alt:before{content:\"\\f3c5\"}.fa-map-pin:before{content:\"\\f276\"}.fa-map-signs:before{content:\"\\f277\"}.fa-marker:before{content:\"\\f5a1\"}.fa-mars:before{content:\"\\f222\"}.fa-mars-double:before{content:\"\\f227\"}.fa-mars-stroke:before{content:\"\\f229\"}.fa-mars-stroke-h:before{content:\"\\f22b\"}.fa-mars-stroke-v:before{content:\"\\f22a\"}.fa-mastodon:before{content:\"\\f4f6\"}.fa-maxcdn:before{content:\"\\f136\"}.fa-medal:before{content:\"\\f5a2\"}.fa-medapps:before{content:\"\\f3c6\"}.fa-medium:before{content:\"\\f23a\"}.fa-medium-m:before{content:\"\\f3c7\"}.fa-medkit:before{content:\"\\f0fa\"}.fa-medrt:before{content:\"\\f3c8\"}.fa-meetup:before{content:\"\\f2e0\"}.fa-megaport:before{content:\"\\f5a3\"}.fa-meh:before{content:\"\\f11a\"}.fa-meh-blank:before{content:\"\\f5a4\"}.fa-meh-rolling-eyes:before{content:\"\\f5a5\"}.fa-memory:before{content:\"\\f538\"}.fa-mercury:before{content:\"\\f223\"}.fa-microchip:before{content:\"\\f2db\"}.fa-microphone:before{content:\"\\f130\"}.fa-microphone-alt:before{content:\"\\f3c9\"}.fa-microphone-alt-slash:before{content:\"\\f539\"}.fa-microphone-slash:before{content:\"\\f131\"}.fa-microsoft:before{content:\"\\f3ca\"}.fa-minus:before{content:\"\\f068\"}.fa-minus-circle:before{content:\"\\f056\"}.fa-minus-square:before{content:\"\\f146\"}.fa-mix:before{content:\"\\f3cb\"}.fa-mixcloud:before{content:\"\\f289\"}.fa-mizuni:before{content:\"\\f3cc\"}.fa-mobile:before{content:\"\\f10b\"}.fa-mobile-alt:before{content:\"\\f3cd\"}.fa-modx:before{content:\"\\f285\"}.fa-monero:before{content:\"\\f3d0\"}.fa-money-bill:before{content:\"\\f0d6\"}.fa-money-bill-alt:before{content:\"\\f3d1\"}.fa-money-bill-wave:before{content:\"\\f53a\"}.fa-money-bill-wave-alt:before{content:\"\\f53b\"}.fa-money-check:before{content:\"\\f53c\"}.fa-money-check-alt:before{content:\"\\f53d\"}.fa-monument:before{content:\"\\f5a6\"}.fa-moon:before{content:\"\\f186\"}.fa-mortar-pestle:before{content:\"\\f5a7\"}.fa-motorcycle:before{content:\"\\f21c\"}.fa-mouse-pointer:before{content:\"\\f245\"}.fa-music:before{content:\"\\f001\"}.fa-napster:before{content:\"\\f3d2\"}.fa-neuter:before{content:\"\\f22c\"}.fa-newspaper:before{content:\"\\f1ea\"}.fa-nimblr:before{content:\"\\f5a8\"}.fa-nintendo-switch:before{content:\"\\f418\"}.fa-node:before{content:\"\\f419\"}.fa-node-js:before{content:\"\\f3d3\"}.fa-not-equal:before{content:\"\\f53e\"}.fa-notes-medical:before{content:\"\\f481\"}.fa-npm:before{content:\"\\f3d4\"}.fa-ns8:before{content:\"\\f3d5\"}.fa-nutritionix:before{content:\"\\f3d6\"}.fa-object-group:before{content:\"\\f247\"}.fa-object-ungroup:before{content:\"\\f248\"}.fa-odnoklassniki:before{content:\"\\f263\"}.fa-odnoklassniki-square:before{content:\"\\f264\"}.fa-old-republic:before{content:\"\\f510\"}.fa-opencart:before{content:\"\\f23d\"}.fa-openid:before{content:\"\\f19b\"}.fa-opera:before{content:\"\\f26a\"}.fa-optin-monster:before{content:\"\\f23c\"}.fa-osi:before{content:\"\\f41a\"}.fa-outdent:before{content:\"\\f03b\"}.fa-page4:before{content:\"\\f3d7\"}.fa-pagelines:before{content:\"\\f18c\"}.fa-paint-brush:before{content:\"\\f1fc\"}.fa-paint-roller:before{content:\"\\f5aa\"}.fa-palette:before{content:\"\\f53f\"}.fa-palfed:before{content:\"\\f3d8\"}.fa-pallet:before{content:\"\\f482\"}.fa-paper-plane:before{content:\"\\f1d8\"}.fa-paperclip:before{content:\"\\f0c6\"}.fa-parachute-box:before{content:\"\\f4cd\"}.fa-paragraph:before{content:\"\\f1dd\"}.fa-parking:before{content:\"\\f540\"}.fa-passport:before{content:\"\\f5ab\"}.fa-paste:before{content:\"\\f0ea\"}.fa-patreon:before{content:\"\\f3d9\"}.fa-pause:before{content:\"\\f04c\"}.fa-pause-circle:before{content:\"\\f28b\"}.fa-paw:before{content:\"\\f1b0\"}.fa-paypal:before{content:\"\\f1ed\"}.fa-pen:before{content:\"\\f304\"}.fa-pen-alt:before{content:\"\\f305\"}.fa-pen-fancy:before{content:\"\\f5ac\"}.fa-pen-nib:before{content:\"\\f5ad\"}.fa-pen-square:before{content:\"\\f14b\"}.fa-pencil-alt:before{content:\"\\f303\"}.fa-pencil-ruler:before{content:\"\\f5ae\"}.fa-people-carry:before{content:\"\\f4ce\"}.fa-percent:before{content:\"\\f295\"}.fa-percentage:before{content:\"\\f541\"}.fa-periscope:before{content:\"\\f3da\"}.fa-phabricator:before{content:\"\\f3db\"}.fa-phoenix-framework:before{content:\"\\f3dc\"}.fa-phoenix-squadron:before{content:\"\\f511\"}.fa-phone:before{content:\"\\f095\"}.fa-phone-slash:before{content:\"\\f3dd\"}.fa-phone-square:before{content:\"\\f098\"}.fa-phone-volume:before{content:\"\\f2a0\"}.fa-php:before{content:\"\\f457\"}.fa-pied-piper:before{content:\"\\f2ae\"}.fa-pied-piper-alt:before{content:\"\\f1a8\"}.fa-pied-piper-hat:before{content:\"\\f4e5\"}.fa-pied-piper-pp:before{content:\"\\f1a7\"}.fa-piggy-bank:before{content:\"\\f4d3\"}.fa-pills:before{content:\"\\f484\"}.fa-pinterest:before{content:\"\\f0d2\"}.fa-pinterest-p:before{content:\"\\f231\"}.fa-pinterest-square:before{content:\"\\f0d3\"}.fa-plane:before{content:\"\\f072\"}.fa-plane-arrival:before{content:\"\\f5af\"}.fa-plane-departure:before{content:\"\\f5b0\"}.fa-play:before{content:\"\\f04b\"}.fa-play-circle:before{content:\"\\f144\"}.fa-playstation:before{content:\"\\f3df\"}.fa-plug:before{content:\"\\f1e6\"}.fa-plus:before{content:\"\\f067\"}.fa-plus-circle:before{content:\"\\f055\"}.fa-plus-square:before{content:\"\\f0fe\"}.fa-podcast:before{content:\"\\f2ce\"}.fa-poo:before{content:\"\\f2fe\"}.fa-portrait:before{content:\"\\f3e0\"}.fa-pound-sign:before{content:\"\\f154\"}.fa-power-off:before{content:\"\\f011\"}.fa-prescription:before{content:\"\\f5b1\"}.fa-prescription-bottle:before{content:\"\\f485\"}.fa-prescription-bottle-alt:before{content:\"\\f486\"}.fa-print:before{content:\"\\f02f\"}.fa-procedures:before{content:\"\\f487\"}.fa-product-hunt:before{content:\"\\f288\"}.fa-project-diagram:before{content:\"\\f542\"}.fa-pushed:before{content:\"\\f3e1\"}.fa-puzzle-piece:before{content:\"\\f12e\"}.fa-python:before{content:\"\\f3e2\"}.fa-qq:before{content:\"\\f1d6\"}.fa-qrcode:before{content:\"\\f029\"}.fa-question:before{content:\"\\f128\"}.fa-question-circle:before{content:\"\\f059\"}.fa-quidditch:before{content:\"\\f458\"}.fa-quinscape:before{content:\"\\f459\"}.fa-quora:before{content:\"\\f2c4\"}.fa-quote-left:before{content:\"\\f10d\"}.fa-quote-right:before{content:\"\\f10e\"}.fa-r-project:before{content:\"\\f4f7\"}.fa-random:before{content:\"\\f074\"}.fa-ravelry:before{content:\"\\f2d9\"}.fa-react:before{content:\"\\f41b\"}.fa-readme:before{content:\"\\f4d5\"}.fa-rebel:before{content:\"\\f1d0\"}.fa-receipt:before{content:\"\\f543\"}.fa-recycle:before{content:\"\\f1b8\"}.fa-red-river:before{content:\"\\f3e3\"}.fa-reddit:before{content:\"\\f1a1\"}.fa-reddit-alien:before{content:\"\\f281\"}.fa-reddit-square:before{content:\"\\f1a2\"}.fa-redo:before{content:\"\\f01e\"}.fa-redo-alt:before{content:\"\\f2f9\"}.fa-registered:before{content:\"\\f25d\"}.fa-rendact:before{content:\"\\f3e4\"}.fa-renren:before{content:\"\\f18b\"}.fa-reply:before{content:\"\\f3e5\"}.fa-reply-all:before{content:\"\\f122\"}.fa-replyd:before{content:\"\\f3e6\"}.fa-researchgate:before{content:\"\\f4f8\"}.fa-resolving:before{content:\"\\f3e7\"}.fa-retweet:before{content:\"\\f079\"}.fa-ribbon:before{content:\"\\f4d6\"}.fa-road:before{content:\"\\f018\"}.fa-robot:before{content:\"\\f544\"}.fa-rocket:before{content:\"\\f135\"}.fa-rocketchat:before{content:\"\\f3e8\"}.fa-rockrms:before{content:\"\\f3e9\"}.fa-rss:before{content:\"\\f09e\"}.fa-rss-square:before{content:\"\\f143\"}.fa-ruble-sign:before{content:\"\\f158\"}.fa-ruler:before{content:\"\\f545\"}.fa-ruler-combined:before{content:\"\\f546\"}.fa-ruler-horizontal:before{content:\"\\f547\"}.fa-ruler-vertical:before{content:\"\\f548\"}.fa-rupee-sign:before{content:\"\\f156\"}.fa-sad-cry:before{content:\"\\f5b3\"}.fa-sad-tear:before{content:\"\\f5b4\"}.fa-safari:before{content:\"\\f267\"}.fa-sass:before{content:\"\\f41e\"}.fa-save:before{content:\"\\f0c7\"}.fa-schlix:before{content:\"\\f3ea\"}.fa-school:before{content:\"\\f549\"}.fa-screwdriver:before{content:\"\\f54a\"}.fa-scribd:before{content:\"\\f28a\"}.fa-search:before{content:\"\\f002\"}.fa-search-minus:before{content:\"\\f010\"}.fa-search-plus:before{content:\"\\f00e\"}.fa-searchengin:before{content:\"\\f3eb\"}.fa-seedling:before{content:\"\\f4d8\"}.fa-sellcast:before{content:\"\\f2da\"}.fa-sellsy:before{content:\"\\f213\"}.fa-server:before{content:\"\\f233\"}.fa-servicestack:before{content:\"\\f3ec\"}.fa-share:before{content:\"\\f064\"}.fa-share-alt:before{content:\"\\f1e0\"}.fa-share-alt-square:before{content:\"\\f1e1\"}.fa-share-square:before{content:\"\\f14d\"}.fa-shekel-sign:before{content:\"\\f20b\"}.fa-shield-alt:before{content:\"\\f3ed\"}.fa-ship:before{content:\"\\f21a\"}.fa-shipping-fast:before{content:\"\\f48b\"}.fa-shirtsinbulk:before{content:\"\\f214\"}.fa-shoe-prints:before{content:\"\\f54b\"}.fa-shopping-bag:before{content:\"\\f290\"}.fa-shopping-basket:before{content:\"\\f291\"}.fa-shopping-cart:before{content:\"\\f07a\"}.fa-shopware:before{content:\"\\f5b5\"}.fa-shower:before{content:\"\\f2cc\"}.fa-shuttle-van:before{content:\"\\f5b6\"}.fa-sign:before{content:\"\\f4d9\"}.fa-sign-in-alt:before{content:\"\\f2f6\"}.fa-sign-language:before{content:\"\\f2a7\"}.fa-sign-out-alt:before{content:\"\\f2f5\"}.fa-signal:before{content:\"\\f012\"}.fa-signature:before{content:\"\\f5b7\"}.fa-simplybuilt:before{content:\"\\f215\"}.fa-sistrix:before{content:\"\\f3ee\"}.fa-sitemap:before{content:\"\\f0e8\"}.fa-sith:before{content:\"\\f512\"}.fa-skull:before{content:\"\\f54c\"}.fa-skyatlas:before{content:\"\\f216\"}.fa-skype:before{content:\"\\f17e\"}.fa-slack:before{content:\"\\f198\"}.fa-slack-hash:before{content:\"\\f3ef\"}.fa-sliders-h:before{content:\"\\f1de\"}.fa-slideshare:before{content:\"\\f1e7\"}.fa-smile:before{content:\"\\f118\"}.fa-smile-beam:before{content:\"\\f5b8\"}.fa-smile-wink:before{content:\"\\f4da\"}.fa-smoking:before{content:\"\\f48d\"}.fa-smoking-ban:before{content:\"\\f54d\"}.fa-snapchat:before{content:\"\\f2ab\"}.fa-snapchat-ghost:before{content:\"\\f2ac\"}.fa-snapchat-square:before{content:\"\\f2ad\"}.fa-snowflake:before{content:\"\\f2dc\"}.fa-solar-panel:before{content:\"\\f5ba\"}.fa-sort:before{content:\"\\f0dc\"}.fa-sort-alpha-down:before{content:\"\\f15d\"}.fa-sort-alpha-up:before{content:\"\\f15e\"}.fa-sort-amount-down:before{content:\"\\f160\"}.fa-sort-amount-up:before{content:\"\\f161\"}.fa-sort-down:before{content:\"\\f0dd\"}.fa-sort-numeric-down:before{content:\"\\f162\"}.fa-sort-numeric-up:before{content:\"\\f163\"}.fa-sort-up:before{content:\"\\f0de\"}.fa-soundcloud:before{content:\"\\f1be\"}.fa-spa:before{content:\"\\f5bb\"}.fa-space-shuttle:before{content:\"\\f197\"}.fa-speakap:before{content:\"\\f3f3\"}.fa-spinner:before{content:\"\\f110\"}.fa-splotch:before{content:\"\\f5bc\"}.fa-spotify:before{content:\"\\f1bc\"}.fa-spray-can:before{content:\"\\f5bd\"}.fa-square:before{content:\"\\f0c8\"}.fa-square-full:before{content:\"\\f45c\"}.fa-squarespace:before{content:\"\\f5be\"}.fa-stack-exchange:before{content:\"\\f18d\"}.fa-stack-overflow:before{content:\"\\f16c\"}.fa-stamp:before{content:\"\\f5bf\"}.fa-star:before{content:\"\\f005\"}.fa-star-half:before{content:\"\\f089\"}.fa-star-half-alt:before{content:\"\\f5c0\"}.fa-staylinked:before{content:\"\\f3f5\"}.fa-steam:before{content:\"\\f1b6\"}.fa-steam-square:before{content:\"\\f1b7\"}.fa-steam-symbol:before{content:\"\\f3f6\"}.fa-step-backward:before{content:\"\\f048\"}.fa-step-forward:before{content:\"\\f051\"}.fa-stethoscope:before{content:\"\\f0f1\"}.fa-sticker-mule:before{content:\"\\f3f7\"}.fa-sticky-note:before{content:\"\\f249\"}.fa-stop:before{content:\"\\f04d\"}.fa-stop-circle:before{content:\"\\f28d\"}.fa-stopwatch:before{content:\"\\f2f2\"}.fa-store:before{content:\"\\f54e\"}.fa-store-alt:before{content:\"\\f54f\"}.fa-strava:before{content:\"\\f428\"}.fa-stream:before{content:\"\\f550\"}.fa-street-view:before{content:\"\\f21d\"}.fa-strikethrough:before{content:\"\\f0cc\"}.fa-stripe:before{content:\"\\f429\"}.fa-stripe-s:before{content:\"\\f42a\"}.fa-stroopwafel:before{content:\"\\f551\"}.fa-studiovinari:before{content:\"\\f3f8\"}.fa-stumbleupon:before{content:\"\\f1a4\"}.fa-stumbleupon-circle:before{content:\"\\f1a3\"}.fa-subscript:before{content:\"\\f12c\"}.fa-subway:before{content:\"\\f239\"}.fa-suitcase:before{content:\"\\f0f2\"}.fa-suitcase-rolling:before{content:\"\\f5c1\"}.fa-sun:before{content:\"\\f185\"}.fa-superpowers:before{content:\"\\f2dd\"}.fa-superscript:before{content:\"\\f12b\"}.fa-supple:before{content:\"\\f3f9\"}.fa-surprise:before{content:\"\\f5c2\"}.fa-swatchbook:before{content:\"\\f5c3\"}.fa-swimmer:before{content:\"\\f5c4\"}.fa-swimming-pool:before{content:\"\\f5c5\"}.fa-sync:before{content:\"\\f021\"}.fa-sync-alt:before{content:\"\\f2f1\"}.fa-syringe:before{content:\"\\f48e\"}.fa-table:before{content:\"\\f0ce\"}.fa-table-tennis:before{content:\"\\f45d\"}.fa-tablet:before{content:\"\\f10a\"}.fa-tablet-alt:before{content:\"\\f3fa\"}.fa-tablets:before{content:\"\\f490\"}.fa-tachometer-alt:before{content:\"\\f3fd\"}.fa-tag:before{content:\"\\f02b\"}.fa-tags:before{content:\"\\f02c\"}.fa-tape:before{content:\"\\f4db\"}.fa-tasks:before{content:\"\\f0ae\"}.fa-taxi:before{content:\"\\f1ba\"}.fa-teamspeak:before{content:\"\\f4f9\"}.fa-telegram:before{content:\"\\f2c6\"}.fa-telegram-plane:before{content:\"\\f3fe\"}.fa-tencent-weibo:before{content:\"\\f1d5\"}.fa-terminal:before{content:\"\\f120\"}.fa-text-height:before{content:\"\\f034\"}.fa-text-width:before{content:\"\\f035\"}.fa-th:before{content:\"\\f00a\"}.fa-th-large:before{content:\"\\f009\"}.fa-th-list:before{content:\"\\f00b\"}.fa-themeco:before{content:\"\\f5c6\"}.fa-themeisle:before{content:\"\\f2b2\"}.fa-thermometer:before{content:\"\\f491\"}.fa-thermometer-empty:before{content:\"\\f2cb\"}.fa-thermometer-full:before{content:\"\\f2c7\"}.fa-thermometer-half:before{content:\"\\f2c9\"}.fa-thermometer-quarter:before{content:\"\\f2ca\"}.fa-thermometer-three-quarters:before{content:\"\\f2c8\"}.fa-thumbs-down:before{content:\"\\f165\"}.fa-thumbs-up:before{content:\"\\f164\"}.fa-thumbtack:before{content:\"\\f08d\"}.fa-ticket-alt:before{content:\"\\f3ff\"}.fa-times:before{content:\"\\f00d\"}.fa-times-circle:before{content:\"\\f057\"}.fa-tint:before{content:\"\\f043\"}.fa-tint-slash:before{content:\"\\f5c7\"}.fa-tired:before{content:\"\\f5c8\"}.fa-toggle-off:before{content:\"\\f204\"}.fa-toggle-on:before{content:\"\\f205\"}.fa-toolbox:before{content:\"\\f552\"}.fa-tooth:before{content:\"\\f5c9\"}.fa-trade-federation:before{content:\"\\f513\"}.fa-trademark:before{content:\"\\f25c\"}.fa-train:before{content:\"\\f238\"}.fa-transgender:before{content:\"\\f224\"}.fa-transgender-alt:before{content:\"\\f225\"}.fa-trash:before{content:\"\\f1f8\"}.fa-trash-alt:before{content:\"\\f2ed\"}.fa-tree:before{content:\"\\f1bb\"}.fa-trello:before{content:\"\\f181\"}.fa-tripadvisor:before{content:\"\\f262\"}.fa-trophy:before{content:\"\\f091\"}.fa-truck:before{content:\"\\f0d1\"}.fa-truck-loading:before{content:\"\\f4de\"}.fa-truck-moving:before{content:\"\\f4df\"}.fa-tshirt:before{content:\"\\f553\"}.fa-tty:before{content:\"\\f1e4\"}.fa-tumblr:before{content:\"\\f173\"}.fa-tumblr-square:before{content:\"\\f174\"}.fa-tv:before{content:\"\\f26c\"}.fa-twitch:before{content:\"\\f1e8\"}.fa-twitter:before{content:\"\\f099\"}.fa-twitter-square:before{content:\"\\f081\"}.fa-typo3:before{content:\"\\f42b\"}.fa-uber:before{content:\"\\f402\"}.fa-uikit:before{content:\"\\f403\"}.fa-umbrella:before{content:\"\\f0e9\"}.fa-umbrella-beach:before{content:\"\\f5ca\"}.fa-underline:before{content:\"\\f0cd\"}.fa-undo:before{content:\"\\f0e2\"}.fa-undo-alt:before{content:\"\\f2ea\"}.fa-uniregistry:before{content:\"\\f404\"}.fa-universal-access:before{content:\"\\f29a\"}.fa-university:before{content:\"\\f19c\"}.fa-unlink:before{content:\"\\f127\"}.fa-unlock:before{content:\"\\f09c\"}.fa-unlock-alt:before{content:\"\\f13e\"}.fa-untappd:before{content:\"\\f405\"}.fa-upload:before{content:\"\\f093\"}.fa-usb:before{content:\"\\f287\"}.fa-user:before{content:\"\\f007\"}.fa-user-alt:before{content:\"\\f406\"}.fa-user-alt-slash:before{content:\"\\f4fa\"}.fa-user-astronaut:before{content:\"\\f4fb\"}.fa-user-check:before{content:\"\\f4fc\"}.fa-user-circle:before{content:\"\\f2bd\"}.fa-user-clock:before{content:\"\\f4fd\"}.fa-user-cog:before{content:\"\\f4fe\"}.fa-user-edit:before{content:\"\\f4ff\"}.fa-user-friends:before{content:\"\\f500\"}.fa-user-graduate:before{content:\"\\f501\"}.fa-user-lock:before{content:\"\\f502\"}.fa-user-md:before{content:\"\\f0f0\"}.fa-user-minus:before{content:\"\\f503\"}.fa-user-ninja:before{content:\"\\f504\"}.fa-user-plus:before{content:\"\\f234\"}.fa-user-secret:before{content:\"\\f21b\"}.fa-user-shield:before{content:\"\\f505\"}.fa-user-slash:before{content:\"\\f506\"}.fa-user-tag:before{content:\"\\f507\"}.fa-user-tie:before{content:\"\\f508\"}.fa-user-times:before{content:\"\\f235\"}.fa-users:before{content:\"\\f0c0\"}.fa-users-cog:before{content:\"\\f509\"}.fa-ussunnah:before{content:\"\\f407\"}.fa-utensil-spoon:before{content:\"\\f2e5\"}.fa-utensils:before{content:\"\\f2e7\"}.fa-vaadin:before{content:\"\\f408\"}.fa-vector-square:before{content:\"\\f5cb\"}.fa-venus:before{content:\"\\f221\"}.fa-venus-double:before{content:\"\\f226\"}.fa-venus-mars:before{content:\"\\f228\"}.fa-viacoin:before{content:\"\\f237\"}.fa-viadeo:before{content:\"\\f2a9\"}.fa-viadeo-square:before{content:\"\\f2aa\"}.fa-vial:before{content:\"\\f492\"}.fa-vials:before{content:\"\\f493\"}.fa-viber:before{content:\"\\f409\"}.fa-video:before{content:\"\\f03d\"}.fa-video-slash:before{content:\"\\f4e2\"}.fa-vimeo:before{content:\"\\f40a\"}.fa-vimeo-square:before{content:\"\\f194\"}.fa-vimeo-v:before{content:\"\\f27d\"}.fa-vine:before{content:\"\\f1ca\"}.fa-vk:before{content:\"\\f189\"}.fa-vnv:before{content:\"\\f40b\"}.fa-volleyball-ball:before{content:\"\\f45f\"}.fa-volume-down:before{content:\"\\f027\"}.fa-volume-off:before{content:\"\\f026\"}.fa-volume-up:before{content:\"\\f028\"}.fa-vuejs:before{content:\"\\f41f\"}.fa-walking:before{content:\"\\f554\"}.fa-wallet:before{content:\"\\f555\"}.fa-warehouse:before{content:\"\\f494\"}.fa-weebly:before{content:\"\\f5cc\"}.fa-weibo:before{content:\"\\f18a\"}.fa-weight:before{content:\"\\f496\"}.fa-weight-hanging:before{content:\"\\f5cd\"}.fa-weixin:before{content:\"\\f1d7\"}.fa-whatsapp:before{content:\"\\f232\"}.fa-whatsapp-square:before{content:\"\\f40c\"}.fa-wheelchair:before{content:\"\\f193\"}.fa-whmcs:before{content:\"\\f40d\"}.fa-wifi:before{content:\"\\f1eb\"}.fa-wikipedia-w:before{content:\"\\f266\"}.fa-window-close:before{content:\"\\f410\"}.fa-window-maximize:before{content:\"\\f2d0\"}.fa-window-minimize:before{content:\"\\f2d1\"}.fa-window-restore:before{content:\"\\f2d2\"}.fa-windows:before{content:\"\\f17a\"}.fa-wine-glass:before{content:\"\\f4e3\"}.fa-wine-glass-alt:before{content:\"\\f5ce\"}.fa-wix:before{content:\"\\f5cf\"}.fa-wolf-pack-battalion:before{content:\"\\f514\"}.fa-won-sign:before{content:\"\\f159\"}.fa-wordpress:before{content:\"\\f19a\"}.fa-wordpress-simple:before{content:\"\\f411\"}.fa-wpbeginner:before{content:\"\\f297\"}.fa-wpexplorer:before{content:\"\\f2de\"}.fa-wpforms:before{content:\"\\f298\"}.fa-wrench:before{content:\"\\f0ad\"}.fa-x-ray:before{content:\"\\f497\"}.fa-xbox:before{content:\"\\f412\"}.fa-xing:before{content:\"\\f168\"}.fa-xing-square:before{content:\"\\f169\"}.fa-y-combinator:before{content:\"\\f23b\"}.fa-yahoo:before{content:\"\\f19e\"}.fa-yandex:before{content:\"\\f413\"}.fa-yandex-international:before{content:\"\\f414\"}.fa-yelp:before{content:\"\\f1e9\"}.fa-yen-sign:before{content:\"\\f157\"}.fa-yoast:before{content:\"\\f2b1\"}.fa-youtube:before{content:\"\\f167\"}.fa-youtube-square:before{content:\"\\f431\"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:\"Font Awesome 5 Brands\";font-style:normal;font-weight:normal;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format(\"embedded-opentype\"),url(../webfonts/fa-brands-400.woff2) format(\"woff2\"),url(../webfonts/fa-brands-400.woff) format(\"woff\"),url(../webfonts/fa-brands-400.ttf) format(\"truetype\"),url(../webfonts/fa-brands-400.svg#fontawesome) format(\"svg\")}.fab{font-family:\"Font Awesome 5 Brands\"}@font-face{font-family:\"Font Awesome 5 Free\";font-style:normal;font-weight:400;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format(\"embedded-opentype\"),url(../webfonts/fa-regular-400.woff2) format(\"woff2\"),url(../webfonts/fa-regular-400.woff) format(\"woff\"),url(../webfonts/fa-regular-400.ttf) format(\"truetype\"),url(../webfonts/fa-regular-400.svg#fontawesome) format(\"svg\")}.far{font-weight:400}@font-face{font-family:\"Font Awesome 5 Free\";font-style:normal;font-weight:900;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format(\"embedded-opentype\"),url(../webfonts/fa-solid-900.woff2) format(\"woff2\"),url(../webfonts/fa-solid-900.woff) format(\"woff\"),url(../webfonts/fa-solid-900.ttf) format(\"truetype\"),url(../webfonts/fa-solid-900.svg#fontawesome) format(\"svg\")}.fa,.far,.fas{font-family:\"Font Awesome 5 Free\"}.fa,.fas{font-weight:900}"
  },
  {
    "path": "docs/site_libs/font-awesome-5.1.0/css/v4-shims.css",
    "content": "/*!\n * Font Awesome Free 5.1.0 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */\n.fa.fa-glass:before {\n  content: \"\\f000\"; }\n\n.fa.fa-meetup {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-star-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-star-o:before {\n  content: \"\\f005\"; }\n\n.fa.fa-remove:before {\n  content: \"\\f00d\"; }\n\n.fa.fa-close:before {\n  content: \"\\f00d\"; }\n\n.fa.fa-gear:before {\n  content: \"\\f013\"; }\n\n.fa.fa-trash-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-trash-o:before {\n  content: \"\\f2ed\"; }\n\n.fa.fa-file-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-file-o:before {\n  content: \"\\f15b\"; }\n\n.fa.fa-clock-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-clock-o:before {\n  content: \"\\f017\"; }\n\n.fa.fa-arrow-circle-o-down {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-arrow-circle-o-down:before {\n  content: \"\\f358\"; }\n\n.fa.fa-arrow-circle-o-up {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-arrow-circle-o-up:before {\n  content: \"\\f35b\"; }\n\n.fa.fa-play-circle-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-play-circle-o:before {\n  content: \"\\f144\"; }\n\n.fa.fa-repeat:before {\n  content: \"\\f01e\"; }\n\n.fa.fa-rotate-right:before {\n  content: \"\\f01e\"; }\n\n.fa.fa-refresh:before {\n  content: \"\\f021\"; }\n\n.fa.fa-list-alt {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-dedent:before {\n  content: \"\\f03b\"; }\n\n.fa.fa-video-camera:before {\n  content: \"\\f03d\"; }\n\n.fa.fa-picture-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-picture-o:before {\n  content: \"\\f03e\"; }\n\n.fa.fa-photo {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-photo:before {\n  content: \"\\f03e\"; }\n\n.fa.fa-image {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-image:before {\n  content: \"\\f03e\"; }\n\n.fa.fa-pencil:before {\n  content: \"\\f303\"; }\n\n.fa.fa-map-marker:before {\n  content: \"\\f3c5\"; }\n\n.fa.fa-pencil-square-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-pencil-square-o:before {\n  content: \"\\f044\"; }\n\n.fa.fa-share-square-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-share-square-o:before {\n  content: \"\\f14d\"; }\n\n.fa.fa-check-square-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-check-square-o:before {\n  content: \"\\f14a\"; }\n\n.fa.fa-arrows:before {\n  content: \"\\f0b2\"; }\n\n.fa.fa-times-circle-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-times-circle-o:before {\n  content: \"\\f057\"; }\n\n.fa.fa-check-circle-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-check-circle-o:before {\n  content: \"\\f058\"; }\n\n.fa.fa-mail-forward:before {\n  content: \"\\f064\"; }\n\n.fa.fa-eye {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-eye-slash {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-warning:before {\n  content: \"\\f071\"; }\n\n.fa.fa-calendar:before {\n  content: \"\\f073\"; }\n\n.fa.fa-arrows-v:before {\n  content: \"\\f338\"; }\n\n.fa.fa-arrows-h:before {\n  content: \"\\f337\"; }\n\n.fa.fa-bar-chart {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-bar-chart:before {\n  content: \"\\f080\"; }\n\n.fa.fa-bar-chart-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-bar-chart-o:before {\n  content: \"\\f080\"; }\n\n.fa.fa-twitter-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-facebook-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-gears:before {\n  content: \"\\f085\"; }\n\n.fa.fa-thumbs-o-up {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-thumbs-o-up:before {\n  content: \"\\f164\"; }\n\n.fa.fa-thumbs-o-down {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-thumbs-o-down:before {\n  content: \"\\f165\"; }\n\n.fa.fa-heart-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-heart-o:before {\n  content: \"\\f004\"; }\n\n.fa.fa-sign-out:before {\n  content: \"\\f2f5\"; }\n\n.fa.fa-linkedin-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-linkedin-square:before {\n  content: \"\\f08c\"; }\n\n.fa.fa-thumb-tack:before {\n  content: \"\\f08d\"; }\n\n.fa.fa-external-link:before {\n  content: \"\\f35d\"; }\n\n.fa.fa-sign-in:before {\n  content: \"\\f2f6\"; }\n\n.fa.fa-github-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-lemon-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-lemon-o:before {\n  content: \"\\f094\"; }\n\n.fa.fa-square-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-square-o:before {\n  content: \"\\f0c8\"; }\n\n.fa.fa-bookmark-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-bookmark-o:before {\n  content: \"\\f02e\"; }\n\n.fa.fa-twitter {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-facebook {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-facebook:before {\n  content: \"\\f39e\"; }\n\n.fa.fa-facebook-f {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-facebook-f:before {\n  content: \"\\f39e\"; }\n\n.fa.fa-github {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-credit-card {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-feed:before {\n  content: \"\\f09e\"; }\n\n.fa.fa-hdd-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-hdd-o:before {\n  content: \"\\f0a0\"; }\n\n.fa.fa-hand-o-right {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-o-right:before {\n  content: \"\\f0a4\"; }\n\n.fa.fa-hand-o-left {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-o-left:before {\n  content: \"\\f0a5\"; }\n\n.fa.fa-hand-o-up {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-o-up:before {\n  content: \"\\f0a6\"; }\n\n.fa.fa-hand-o-down {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-o-down:before {\n  content: \"\\f0a7\"; }\n\n.fa.fa-arrows-alt:before {\n  content: \"\\f31e\"; }\n\n.fa.fa-group:before {\n  content: \"\\f0c0\"; }\n\n.fa.fa-chain:before {\n  content: \"\\f0c1\"; }\n\n.fa.fa-scissors:before {\n  content: \"\\f0c4\"; }\n\n.fa.fa-files-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-files-o:before {\n  content: \"\\f0c5\"; }\n\n.fa.fa-floppy-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-floppy-o:before {\n  content: \"\\f0c7\"; }\n\n.fa.fa-navicon:before {\n  content: \"\\f0c9\"; }\n\n.fa.fa-reorder:before {\n  content: \"\\f0c9\"; }\n\n.fa.fa-pinterest {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-pinterest-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-google-plus-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-google-plus {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-google-plus:before {\n  content: \"\\f0d5\"; }\n\n.fa.fa-money {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-money:before {\n  content: \"\\f3d1\"; }\n\n.fa.fa-unsorted:before {\n  content: \"\\f0dc\"; }\n\n.fa.fa-sort-desc:before {\n  content: \"\\f0dd\"; }\n\n.fa.fa-sort-asc:before {\n  content: \"\\f0de\"; }\n\n.fa.fa-linkedin {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-linkedin:before {\n  content: \"\\f0e1\"; }\n\n.fa.fa-rotate-left:before {\n  content: \"\\f0e2\"; }\n\n.fa.fa-legal:before {\n  content: \"\\f0e3\"; }\n\n.fa.fa-tachometer:before {\n  content: \"\\f3fd\"; }\n\n.fa.fa-dashboard:before {\n  content: \"\\f3fd\"; }\n\n.fa.fa-comment-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-comment-o:before {\n  content: \"\\f075\"; }\n\n.fa.fa-comments-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-comments-o:before {\n  content: \"\\f086\"; }\n\n.fa.fa-flash:before {\n  content: \"\\f0e7\"; }\n\n.fa.fa-clipboard {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-paste {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-paste:before {\n  content: \"\\f328\"; }\n\n.fa.fa-lightbulb-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-lightbulb-o:before {\n  content: \"\\f0eb\"; }\n\n.fa.fa-exchange:before {\n  content: \"\\f362\"; }\n\n.fa.fa-cloud-download:before {\n  content: \"\\f381\"; }\n\n.fa.fa-cloud-upload:before {\n  content: \"\\f382\"; }\n\n.fa.fa-bell-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-bell-o:before {\n  content: \"\\f0f3\"; }\n\n.fa.fa-cutlery:before {\n  content: \"\\f2e7\"; }\n\n.fa.fa-file-text-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-file-text-o:before {\n  content: \"\\f15c\"; }\n\n.fa.fa-building-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-building-o:before {\n  content: \"\\f1ad\"; }\n\n.fa.fa-hospital-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-hospital-o:before {\n  content: \"\\f0f8\"; }\n\n.fa.fa-tablet:before {\n  content: \"\\f3fa\"; }\n\n.fa.fa-mobile:before {\n  content: \"\\f3cd\"; }\n\n.fa.fa-mobile-phone:before {\n  content: \"\\f3cd\"; }\n\n.fa.fa-circle-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-circle-o:before {\n  content: \"\\f111\"; }\n\n.fa.fa-mail-reply:before {\n  content: \"\\f3e5\"; }\n\n.fa.fa-github-alt {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-folder-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-folder-o:before {\n  content: \"\\f07b\"; }\n\n.fa.fa-folder-open-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-folder-open-o:before {\n  content: \"\\f07c\"; }\n\n.fa.fa-smile-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-smile-o:before {\n  content: \"\\f118\"; }\n\n.fa.fa-frown-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-frown-o:before {\n  content: \"\\f119\"; }\n\n.fa.fa-meh-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-meh-o:before {\n  content: \"\\f11a\"; }\n\n.fa.fa-keyboard-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-keyboard-o:before {\n  content: \"\\f11c\"; }\n\n.fa.fa-flag-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-flag-o:before {\n  content: \"\\f024\"; }\n\n.fa.fa-mail-reply-all:before {\n  content: \"\\f122\"; }\n\n.fa.fa-star-half-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-star-half-o:before {\n  content: \"\\f089\"; }\n\n.fa.fa-star-half-empty {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-star-half-empty:before {\n  content: \"\\f089\"; }\n\n.fa.fa-star-half-full {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-star-half-full:before {\n  content: \"\\f089\"; }\n\n.fa.fa-code-fork:before {\n  content: \"\\f126\"; }\n\n.fa.fa-chain-broken:before {\n  content: \"\\f127\"; }\n\n.fa.fa-shield:before {\n  content: \"\\f3ed\"; }\n\n.fa.fa-calendar-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-calendar-o:before {\n  content: \"\\f133\"; }\n\n.fa.fa-maxcdn {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-html5 {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-css3 {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-ticket:before {\n  content: \"\\f3ff\"; }\n\n.fa.fa-minus-square-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-minus-square-o:before {\n  content: \"\\f146\"; }\n\n.fa.fa-level-up:before {\n  content: \"\\f3bf\"; }\n\n.fa.fa-level-down:before {\n  content: \"\\f3be\"; }\n\n.fa.fa-pencil-square:before {\n  content: \"\\f14b\"; }\n\n.fa.fa-external-link-square:before {\n  content: \"\\f360\"; }\n\n.fa.fa-compass {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-caret-square-o-down {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-caret-square-o-down:before {\n  content: \"\\f150\"; }\n\n.fa.fa-toggle-down {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-toggle-down:before {\n  content: \"\\f150\"; }\n\n.fa.fa-caret-square-o-up {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-caret-square-o-up:before {\n  content: \"\\f151\"; }\n\n.fa.fa-toggle-up {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-toggle-up:before {\n  content: \"\\f151\"; }\n\n.fa.fa-caret-square-o-right {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-caret-square-o-right:before {\n  content: \"\\f152\"; }\n\n.fa.fa-toggle-right {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-toggle-right:before {\n  content: \"\\f152\"; }\n\n.fa.fa-eur:before {\n  content: \"\\f153\"; }\n\n.fa.fa-euro:before {\n  content: \"\\f153\"; }\n\n.fa.fa-gbp:before {\n  content: \"\\f154\"; }\n\n.fa.fa-usd:before {\n  content: \"\\f155\"; }\n\n.fa.fa-dollar:before {\n  content: \"\\f155\"; }\n\n.fa.fa-inr:before {\n  content: \"\\f156\"; }\n\n.fa.fa-rupee:before {\n  content: \"\\f156\"; }\n\n.fa.fa-jpy:before {\n  content: \"\\f157\"; }\n\n.fa.fa-cny:before {\n  content: \"\\f157\"; }\n\n.fa.fa-rmb:before {\n  content: \"\\f157\"; }\n\n.fa.fa-yen:before {\n  content: \"\\f157\"; }\n\n.fa.fa-rub:before {\n  content: \"\\f158\"; }\n\n.fa.fa-ruble:before {\n  content: \"\\f158\"; }\n\n.fa.fa-rouble:before {\n  content: \"\\f158\"; }\n\n.fa.fa-krw:before {\n  content: \"\\f159\"; }\n\n.fa.fa-won:before {\n  content: \"\\f159\"; }\n\n.fa.fa-btc {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-bitcoin {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-bitcoin:before {\n  content: \"\\f15a\"; }\n\n.fa.fa-file-text:before {\n  content: \"\\f15c\"; }\n\n.fa.fa-sort-alpha-asc:before {\n  content: \"\\f15d\"; }\n\n.fa.fa-sort-alpha-desc:before {\n  content: \"\\f15e\"; }\n\n.fa.fa-sort-amount-asc:before {\n  content: \"\\f160\"; }\n\n.fa.fa-sort-amount-desc:before {\n  content: \"\\f161\"; }\n\n.fa.fa-sort-numeric-asc:before {\n  content: \"\\f162\"; }\n\n.fa.fa-sort-numeric-desc:before {\n  content: \"\\f163\"; }\n\n.fa.fa-youtube-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-youtube {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-xing {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-xing-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-youtube-play {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-youtube-play:before {\n  content: \"\\f167\"; }\n\n.fa.fa-dropbox {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-stack-overflow {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-instagram {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-flickr {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-adn {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-bitbucket {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-bitbucket-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-bitbucket-square:before {\n  content: \"\\f171\"; }\n\n.fa.fa-tumblr {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-tumblr-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-long-arrow-down:before {\n  content: \"\\f309\"; }\n\n.fa.fa-long-arrow-up:before {\n  content: \"\\f30c\"; }\n\n.fa.fa-long-arrow-left:before {\n  content: \"\\f30a\"; }\n\n.fa.fa-long-arrow-right:before {\n  content: \"\\f30b\"; }\n\n.fa.fa-apple {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-windows {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-android {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-linux {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-dribbble {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-skype {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-foursquare {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-trello {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-gratipay {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-gittip {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-gittip:before {\n  content: \"\\f184\"; }\n\n.fa.fa-sun-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-sun-o:before {\n  content: \"\\f185\"; }\n\n.fa.fa-moon-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-moon-o:before {\n  content: \"\\f186\"; }\n\n.fa.fa-vk {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-weibo {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-renren {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-pagelines {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-stack-exchange {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-arrow-circle-o-right {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-arrow-circle-o-right:before {\n  content: \"\\f35a\"; }\n\n.fa.fa-arrow-circle-o-left {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-arrow-circle-o-left:before {\n  content: \"\\f359\"; }\n\n.fa.fa-caret-square-o-left {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-caret-square-o-left:before {\n  content: \"\\f191\"; }\n\n.fa.fa-toggle-left {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-toggle-left:before {\n  content: \"\\f191\"; }\n\n.fa.fa-dot-circle-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-dot-circle-o:before {\n  content: \"\\f192\"; }\n\n.fa.fa-vimeo-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-try:before {\n  content: \"\\f195\"; }\n\n.fa.fa-turkish-lira:before {\n  content: \"\\f195\"; }\n\n.fa.fa-plus-square-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-plus-square-o:before {\n  content: \"\\f0fe\"; }\n\n.fa.fa-slack {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-wordpress {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-openid {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-institution:before {\n  content: \"\\f19c\"; }\n\n.fa.fa-bank:before {\n  content: \"\\f19c\"; }\n\n.fa.fa-mortar-board:before {\n  content: \"\\f19d\"; }\n\n.fa.fa-yahoo {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-google {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-reddit {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-reddit-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-stumbleupon-circle {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-stumbleupon {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-delicious {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-digg {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-pied-piper-pp {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-pied-piper-alt {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-drupal {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-joomla {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-spoon:before {\n  content: \"\\f2e5\"; }\n\n.fa.fa-behance {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-behance-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-steam {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-steam-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-automobile:before {\n  content: \"\\f1b9\"; }\n\n.fa.fa-cab:before {\n  content: \"\\f1ba\"; }\n\n.fa.fa-envelope-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-envelope-o:before {\n  content: \"\\f0e0\"; }\n\n.fa.fa-deviantart {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-soundcloud {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-file-pdf-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-file-pdf-o:before {\n  content: \"\\f1c1\"; }\n\n.fa.fa-file-word-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-file-word-o:before {\n  content: \"\\f1c2\"; }\n\n.fa.fa-file-excel-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-file-excel-o:before {\n  content: \"\\f1c3\"; }\n\n.fa.fa-file-powerpoint-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-file-powerpoint-o:before {\n  content: \"\\f1c4\"; }\n\n.fa.fa-file-image-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-file-image-o:before {\n  content: \"\\f1c5\"; }\n\n.fa.fa-file-photo-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-file-photo-o:before {\n  content: \"\\f1c5\"; }\n\n.fa.fa-file-picture-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-file-picture-o:before {\n  content: \"\\f1c5\"; }\n\n.fa.fa-file-archive-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-file-archive-o:before {\n  content: \"\\f1c6\"; }\n\n.fa.fa-file-zip-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-file-zip-o:before {\n  content: \"\\f1c6\"; }\n\n.fa.fa-file-audio-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-file-audio-o:before {\n  content: \"\\f1c7\"; }\n\n.fa.fa-file-sound-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-file-sound-o:before {\n  content: \"\\f1c7\"; }\n\n.fa.fa-file-video-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-file-video-o:before {\n  content: \"\\f1c8\"; }\n\n.fa.fa-file-movie-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-file-movie-o:before {\n  content: \"\\f1c8\"; }\n\n.fa.fa-file-code-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-file-code-o:before {\n  content: \"\\f1c9\"; }\n\n.fa.fa-vine {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-codepen {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-jsfiddle {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-life-ring {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-life-bouy {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-life-bouy:before {\n  content: \"\\f1cd\"; }\n\n.fa.fa-life-buoy {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-life-buoy:before {\n  content: \"\\f1cd\"; }\n\n.fa.fa-life-saver {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-life-saver:before {\n  content: \"\\f1cd\"; }\n\n.fa.fa-support {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-support:before {\n  content: \"\\f1cd\"; }\n\n.fa.fa-circle-o-notch:before {\n  content: \"\\f1ce\"; }\n\n.fa.fa-rebel {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-ra {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-ra:before {\n  content: \"\\f1d0\"; }\n\n.fa.fa-resistance {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-resistance:before {\n  content: \"\\f1d0\"; }\n\n.fa.fa-empire {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-ge {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-ge:before {\n  content: \"\\f1d1\"; }\n\n.fa.fa-git-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-git {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-hacker-news {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-y-combinator-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-y-combinator-square:before {\n  content: \"\\f1d4\"; }\n\n.fa.fa-yc-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-yc-square:before {\n  content: \"\\f1d4\"; }\n\n.fa.fa-tencent-weibo {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-qq {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-weixin {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-wechat {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-wechat:before {\n  content: \"\\f1d7\"; }\n\n.fa.fa-send:before {\n  content: \"\\f1d8\"; }\n\n.fa.fa-paper-plane-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-paper-plane-o:before {\n  content: \"\\f1d8\"; }\n\n.fa.fa-send-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-send-o:before {\n  content: \"\\f1d8\"; }\n\n.fa.fa-circle-thin {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-circle-thin:before {\n  content: \"\\f111\"; }\n\n.fa.fa-header:before {\n  content: \"\\f1dc\"; }\n\n.fa.fa-sliders:before {\n  content: \"\\f1de\"; }\n\n.fa.fa-futbol-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-futbol-o:before {\n  content: \"\\f1e3\"; }\n\n.fa.fa-soccer-ball-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-soccer-ball-o:before {\n  content: \"\\f1e3\"; }\n\n.fa.fa-slideshare {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-twitch {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-yelp {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-newspaper-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-newspaper-o:before {\n  content: \"\\f1ea\"; }\n\n.fa.fa-paypal {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-google-wallet {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-cc-visa {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-cc-mastercard {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-cc-discover {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-cc-amex {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-cc-paypal {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-cc-stripe {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-bell-slash-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-bell-slash-o:before {\n  content: \"\\f1f6\"; }\n\n.fa.fa-trash:before {\n  content: \"\\f2ed\"; }\n\n.fa.fa-copyright {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-eyedropper:before {\n  content: \"\\f1fb\"; }\n\n.fa.fa-area-chart:before {\n  content: \"\\f1fe\"; }\n\n.fa.fa-pie-chart:before {\n  content: \"\\f200\"; }\n\n.fa.fa-line-chart:before {\n  content: \"\\f201\"; }\n\n.fa.fa-lastfm {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-lastfm-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-ioxhost {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-angellist {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-cc {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-cc:before {\n  content: \"\\f20a\"; }\n\n.fa.fa-ils:before {\n  content: \"\\f20b\"; }\n\n.fa.fa-shekel:before {\n  content: \"\\f20b\"; }\n\n.fa.fa-sheqel:before {\n  content: \"\\f20b\"; }\n\n.fa.fa-meanpath {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-meanpath:before {\n  content: \"\\f2b4\"; }\n\n.fa.fa-buysellads {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-connectdevelop {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-dashcube {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-forumbee {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-leanpub {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-sellsy {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-shirtsinbulk {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-simplybuilt {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-skyatlas {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-diamond {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-diamond:before {\n  content: \"\\f3a5\"; }\n\n.fa.fa-intersex:before {\n  content: \"\\f224\"; }\n\n.fa.fa-facebook-official {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-facebook-official:before {\n  content: \"\\f09a\"; }\n\n.fa.fa-pinterest-p {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-whatsapp {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-hotel:before {\n  content: \"\\f236\"; }\n\n.fa.fa-viacoin {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-medium {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-y-combinator {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-yc {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-yc:before {\n  content: \"\\f23b\"; }\n\n.fa.fa-optin-monster {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-opencart {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-expeditedssl {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-battery-4:before {\n  content: \"\\f240\"; }\n\n.fa.fa-battery:before {\n  content: \"\\f240\"; }\n\n.fa.fa-battery-3:before {\n  content: \"\\f241\"; }\n\n.fa.fa-battery-2:before {\n  content: \"\\f242\"; }\n\n.fa.fa-battery-1:before {\n  content: \"\\f243\"; }\n\n.fa.fa-battery-0:before {\n  content: \"\\f244\"; }\n\n.fa.fa-object-group {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-object-ungroup {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-sticky-note-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-sticky-note-o:before {\n  content: \"\\f249\"; }\n\n.fa.fa-cc-jcb {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-cc-diners-club {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-clone {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-hourglass-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-hourglass-o:before {\n  content: \"\\f254\"; }\n\n.fa.fa-hourglass-1:before {\n  content: \"\\f251\"; }\n\n.fa.fa-hourglass-2:before {\n  content: \"\\f252\"; }\n\n.fa.fa-hourglass-3:before {\n  content: \"\\f253\"; }\n\n.fa.fa-hand-rock-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-rock-o:before {\n  content: \"\\f255\"; }\n\n.fa.fa-hand-grab-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-grab-o:before {\n  content: \"\\f255\"; }\n\n.fa.fa-hand-paper-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-paper-o:before {\n  content: \"\\f256\"; }\n\n.fa.fa-hand-stop-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-stop-o:before {\n  content: \"\\f256\"; }\n\n.fa.fa-hand-scissors-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-scissors-o:before {\n  content: \"\\f257\"; }\n\n.fa.fa-hand-lizard-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-lizard-o:before {\n  content: \"\\f258\"; }\n\n.fa.fa-hand-spock-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-spock-o:before {\n  content: \"\\f259\"; }\n\n.fa.fa-hand-pointer-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-pointer-o:before {\n  content: \"\\f25a\"; }\n\n.fa.fa-hand-peace-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-peace-o:before {\n  content: \"\\f25b\"; }\n\n.fa.fa-registered {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-creative-commons {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-gg {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-gg-circle {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-tripadvisor {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-odnoklassniki {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-odnoklassniki-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-get-pocket {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-wikipedia-w {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-safari {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-chrome {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-firefox {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-opera {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-internet-explorer {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-television:before {\n  content: \"\\f26c\"; }\n\n.fa.fa-contao {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-500px {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-amazon {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-calendar-plus-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-calendar-plus-o:before {\n  content: \"\\f271\"; }\n\n.fa.fa-calendar-minus-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-calendar-minus-o:before {\n  content: \"\\f272\"; }\n\n.fa.fa-calendar-times-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-calendar-times-o:before {\n  content: \"\\f273\"; }\n\n.fa.fa-calendar-check-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-calendar-check-o:before {\n  content: \"\\f274\"; }\n\n.fa.fa-map-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-map-o:before {\n  content: \"\\f279\"; }\n\n.fa.fa-commenting {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-commenting:before {\n  content: \"\\f4ad\"; }\n\n.fa.fa-commenting-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-commenting-o:before {\n  content: \"\\f4ad\"; }\n\n.fa.fa-houzz {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-vimeo {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-vimeo:before {\n  content: \"\\f27d\"; }\n\n.fa.fa-black-tie {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-fonticons {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-reddit-alien {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-edge {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-credit-card-alt:before {\n  content: \"\\f09d\"; }\n\n.fa.fa-codiepie {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-modx {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-fort-awesome {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-usb {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-product-hunt {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-mixcloud {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-scribd {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-pause-circle-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-pause-circle-o:before {\n  content: \"\\f28b\"; }\n\n.fa.fa-stop-circle-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-stop-circle-o:before {\n  content: \"\\f28d\"; }\n\n.fa.fa-bluetooth {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-bluetooth-b {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-gitlab {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-wpbeginner {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-wpforms {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-envira {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-wheelchair-alt {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-wheelchair-alt:before {\n  content: \"\\f368\"; }\n\n.fa.fa-question-circle-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-question-circle-o:before {\n  content: \"\\f059\"; }\n\n.fa.fa-volume-control-phone:before {\n  content: \"\\f2a0\"; }\n\n.fa.fa-asl-interpreting:before {\n  content: \"\\f2a3\"; }\n\n.fa.fa-deafness:before {\n  content: \"\\f2a4\"; }\n\n.fa.fa-hard-of-hearing:before {\n  content: \"\\f2a4\"; }\n\n.fa.fa-glide {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-glide-g {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-signing:before {\n  content: \"\\f2a7\"; }\n\n.fa.fa-viadeo {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-viadeo-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-snapchat {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-snapchat-ghost {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-snapchat-square {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-pied-piper {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-first-order {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-yoast {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-themeisle {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-google-plus-official {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-google-plus-official:before {\n  content: \"\\f2b3\"; }\n\n.fa.fa-google-plus-circle {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-google-plus-circle:before {\n  content: \"\\f2b3\"; }\n\n.fa.fa-font-awesome {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-fa {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-fa:before {\n  content: \"\\f2b4\"; }\n\n.fa.fa-handshake-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-handshake-o:before {\n  content: \"\\f2b5\"; }\n\n.fa.fa-envelope-open-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-envelope-open-o:before {\n  content: \"\\f2b6\"; }\n\n.fa.fa-linode {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-address-book-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-address-book-o:before {\n  content: \"\\f2b9\"; }\n\n.fa.fa-vcard:before {\n  content: \"\\f2bb\"; }\n\n.fa.fa-address-card-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-address-card-o:before {\n  content: \"\\f2bb\"; }\n\n.fa.fa-vcard-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-vcard-o:before {\n  content: \"\\f2bb\"; }\n\n.fa.fa-user-circle-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-user-circle-o:before {\n  content: \"\\f2bd\"; }\n\n.fa.fa-user-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-user-o:before {\n  content: \"\\f007\"; }\n\n.fa.fa-id-badge {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-drivers-license:before {\n  content: \"\\f2c2\"; }\n\n.fa.fa-id-card-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-id-card-o:before {\n  content: \"\\f2c2\"; }\n\n.fa.fa-drivers-license-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-drivers-license-o:before {\n  content: \"\\f2c2\"; }\n\n.fa.fa-quora {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-free-code-camp {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-telegram {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-thermometer-4:before {\n  content: \"\\f2c7\"; }\n\n.fa.fa-thermometer:before {\n  content: \"\\f2c7\"; }\n\n.fa.fa-thermometer-3:before {\n  content: \"\\f2c8\"; }\n\n.fa.fa-thermometer-2:before {\n  content: \"\\f2c9\"; }\n\n.fa.fa-thermometer-1:before {\n  content: \"\\f2ca\"; }\n\n.fa.fa-thermometer-0:before {\n  content: \"\\f2cb\"; }\n\n.fa.fa-bathtub:before {\n  content: \"\\f2cd\"; }\n\n.fa.fa-s15:before {\n  content: \"\\f2cd\"; }\n\n.fa.fa-window-maximize {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-window-restore {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-times-rectangle:before {\n  content: \"\\f410\"; }\n\n.fa.fa-window-close-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-window-close-o:before {\n  content: \"\\f410\"; }\n\n.fa.fa-times-rectangle-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-times-rectangle-o:before {\n  content: \"\\f410\"; }\n\n.fa.fa-bandcamp {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-grav {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-etsy {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-imdb {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-ravelry {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-eercast {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-eercast:before {\n  content: \"\\f2da\"; }\n\n.fa.fa-snowflake-o {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n\n.fa.fa-snowflake-o:before {\n  content: \"\\f2dc\"; }\n\n.fa.fa-superpowers {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-wpexplorer {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n\n.fa.fa-spotify {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n"
  },
  {
    "path": "docs/site_libs/highlightjs-9.12.0/default.css",
    "content": ".hljs-literal {\n  color: #990073;\n}\n\n.hljs-number {\n  color: #099;\n}\n\n.hljs-comment {\n  color: #998;\n  font-style: italic;\n}\n\n.hljs-keyword {\n  color: #900;\n  font-weight: bold;\n}\n\n.hljs-string {\n  color: #d14;\n}\n"
  },
  {
    "path": "docs/site_libs/highlightjs-9.12.0/highlight.js",
    "content": "/*! highlight.js v9.12.0 | BSD3 License | git.io/hljslicense */\n!function(e){var n=\"object\"==typeof window&&window||\"object\"==typeof self&&self;\"undefined\"!=typeof exports?e(exports):n&&(n.hljs=e({}),\"function\"==typeof define&&define.amd&&define([],function(){return n.hljs}))}(function(e){function n(e){return e.replace(/&/g,\"&amp;\").replace(/</g,\"&lt;\").replace(/>/g,\"&gt;\")}function t(e){return e.nodeName.toLowerCase()}function r(e,n){var t=e&&e.exec(n);return t&&0===t.index}function a(e){return k.test(e)}function i(e){var n,t,r,i,o=e.className+\" \";if(o+=e.parentNode?e.parentNode.className:\"\",t=B.exec(o))return w(t[1])?t[1]:\"no-highlight\";for(o=o.split(/\\s+/),n=0,r=o.length;r>n;n++)if(i=o[n],a(i)||w(i))return i}function o(e){var n,t={},r=Array.prototype.slice.call(arguments,1);for(n in e)t[n]=e[n];return r.forEach(function(e){for(n in e)t[n]=e[n]}),t}function u(e){var n=[];return function r(e,a){for(var i=e.firstChild;i;i=i.nextSibling)3===i.nodeType?a+=i.nodeValue.length:1===i.nodeType&&(n.push({event:\"start\",offset:a,node:i}),a=r(i,a),t(i).match(/br|hr|img|input/)||n.push({event:\"stop\",offset:a,node:i}));return a}(e,0),n}function c(e,r,a){function i(){return e.length&&r.length?e[0].offset!==r[0].offset?e[0].offset<r[0].offset?e:r:\"start\"===r[0].event?e:r:e.length?e:r}function o(e){function r(e){return\" \"+e.nodeName+'=\"'+n(e.value).replace('\"',\"&quot;\")+'\"'}s+=\"<\"+t(e)+E.map.call(e.attributes,r).join(\"\")+\">\"}function u(e){s+=\"</\"+t(e)+\">\"}function c(e){(\"start\"===e.event?o:u)(e.node)}for(var l=0,s=\"\",f=[];e.length||r.length;){var g=i();if(s+=n(a.substring(l,g[0].offset)),l=g[0].offset,g===e){f.reverse().forEach(u);do c(g.splice(0,1)[0]),g=i();while(g===e&&g.length&&g[0].offset===l);f.reverse().forEach(o)}else\"start\"===g[0].event?f.push(g[0].node):f.pop(),c(g.splice(0,1)[0])}return s+n(a.substr(l))}function l(e){return e.v&&!e.cached_variants&&(e.cached_variants=e.v.map(function(n){return o(e,{v:null},n)})),e.cached_variants||e.eW&&[o(e)]||[e]}function s(e){function n(e){return e&&e.source||e}function t(t,r){return new RegExp(n(t),\"m\"+(e.cI?\"i\":\"\")+(r?\"g\":\"\"))}function r(a,i){if(!a.compiled){if(a.compiled=!0,a.k=a.k||a.bK,a.k){var o={},u=function(n,t){e.cI&&(t=t.toLowerCase()),t.split(\" \").forEach(function(e){var t=e.split(\"|\");o[t[0]]=[n,t[1]?Number(t[1]):1]})};\"string\"==typeof a.k?u(\"keyword\",a.k):x(a.k).forEach(function(e){u(e,a.k[e])}),a.k=o}a.lR=t(a.l||/\\w+/,!0),i&&(a.bK&&(a.b=\"\\\\b(\"+a.bK.split(\" \").join(\"|\")+\")\\\\b\"),a.b||(a.b=/\\B|\\b/),a.bR=t(a.b),a.e||a.eW||(a.e=/\\B|\\b/),a.e&&(a.eR=t(a.e)),a.tE=n(a.e)||\"\",a.eW&&i.tE&&(a.tE+=(a.e?\"|\":\"\")+i.tE)),a.i&&(a.iR=t(a.i)),null==a.r&&(a.r=1),a.c||(a.c=[]),a.c=Array.prototype.concat.apply([],a.c.map(function(e){return l(\"self\"===e?a:e)})),a.c.forEach(function(e){r(e,a)}),a.starts&&r(a.starts,i);var c=a.c.map(function(e){return e.bK?\"\\\\.?(\"+e.b+\")\\\\.?\":e.b}).concat([a.tE,a.i]).map(n).filter(Boolean);a.t=c.length?t(c.join(\"|\"),!0):{exec:function(){return null}}}}r(e)}function f(e,t,a,i){function o(e,n){var t,a;for(t=0,a=n.c.length;a>t;t++)if(r(n.c[t].bR,e))return n.c[t]}function u(e,n){if(r(e.eR,n)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?u(e.parent,n):void 0}function c(e,n){return!a&&r(n.iR,e)}function l(e,n){var t=N.cI?n[0].toLowerCase():n[0];return e.k.hasOwnProperty(t)&&e.k[t]}function p(e,n,t,r){var a=r?\"\":I.classPrefix,i='<span class=\"'+a,o=t?\"\":C;return i+=e+'\">',i+n+o}function h(){var e,t,r,a;if(!E.k)return n(k);for(a=\"\",t=0,E.lR.lastIndex=0,r=E.lR.exec(k);r;)a+=n(k.substring(t,r.index)),e=l(E,r),e?(B+=e[1],a+=p(e[0],n(r[0]))):a+=n(r[0]),t=E.lR.lastIndex,r=E.lR.exec(k);return a+n(k.substr(t))}function d(){var e=\"string\"==typeof E.sL;if(e&&!y[E.sL])return n(k);var t=e?f(E.sL,k,!0,x[E.sL]):g(k,E.sL.length?E.sL:void 0);return E.r>0&&(B+=t.r),e&&(x[E.sL]=t.top),p(t.language,t.value,!1,!0)}function b(){L+=null!=E.sL?d():h(),k=\"\"}function v(e){L+=e.cN?p(e.cN,\"\",!0):\"\",E=Object.create(e,{parent:{value:E}})}function m(e,n){if(k+=e,null==n)return b(),0;var t=o(n,E);if(t)return t.skip?k+=n:(t.eB&&(k+=n),b(),t.rB||t.eB||(k=n)),v(t,n),t.rB?0:n.length;var r=u(E,n);if(r){var a=E;a.skip?k+=n:(a.rE||a.eE||(k+=n),b(),a.eE&&(k=n));do E.cN&&(L+=C),E.skip||(B+=E.r),E=E.parent;while(E!==r.parent);return r.starts&&v(r.starts,\"\"),a.rE?0:n.length}if(c(n,E))throw new Error('Illegal lexeme \"'+n+'\" for mode \"'+(E.cN||\"<unnamed>\")+'\"');return k+=n,n.length||1}var N=w(e);if(!N)throw new Error('Unknown language: \"'+e+'\"');s(N);var R,E=i||N,x={},L=\"\";for(R=E;R!==N;R=R.parent)R.cN&&(L=p(R.cN,\"\",!0)+L);var k=\"\",B=0;try{for(var M,j,O=0;;){if(E.t.lastIndex=O,M=E.t.exec(t),!M)break;j=m(t.substring(O,M.index),M[0]),O=M.index+j}for(m(t.substr(O)),R=E;R.parent;R=R.parent)R.cN&&(L+=C);return{r:B,value:L,language:e,top:E}}catch(T){if(T.message&&-1!==T.message.indexOf(\"Illegal\"))return{r:0,value:n(t)};throw T}}function g(e,t){t=t||I.languages||x(y);var r={r:0,value:n(e)},a=r;return t.filter(w).forEach(function(n){var t=f(n,e,!1);t.language=n,t.r>a.r&&(a=t),t.r>r.r&&(a=r,r=t)}),a.language&&(r.second_best=a),r}function p(e){return I.tabReplace||I.useBR?e.replace(M,function(e,n){return I.useBR&&\"\\n\"===e?\"<br>\":I.tabReplace?n.replace(/\\t/g,I.tabReplace):\"\"}):e}function h(e,n,t){var r=n?L[n]:t,a=[e.trim()];return e.match(/\\bhljs\\b/)||a.push(\"hljs\"),-1===e.indexOf(r)&&a.push(r),a.join(\" \").trim()}function d(e){var n,t,r,o,l,s=i(e);a(s)||(I.useBR?(n=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\"),n.innerHTML=e.innerHTML.replace(/\\n/g,\"\").replace(/<br[ \\/]*>/g,\"\\n\")):n=e,l=n.textContent,r=s?f(s,l,!0):g(l),t=u(n),t.length&&(o=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\"),o.innerHTML=r.value,r.value=c(t,u(o),l)),r.value=p(r.value),e.innerHTML=r.value,e.className=h(e.className,s,r.language),e.result={language:r.language,re:r.r},r.second_best&&(e.second_best={language:r.second_best.language,re:r.second_best.r}))}function b(e){I=o(I,e)}function v(){if(!v.called){v.called=!0;var e=document.querySelectorAll(\"pre code\");E.forEach.call(e,d)}}function m(){addEventListener(\"DOMContentLoaded\",v,!1),addEventListener(\"load\",v,!1)}function N(n,t){var r=y[n]=t(e);r.aliases&&r.aliases.forEach(function(e){L[e]=n})}function R(){return x(y)}function w(e){return e=(e||\"\").toLowerCase(),y[e]||y[L[e]]}var E=[],x=Object.keys,y={},L={},k=/^(no-?highlight|plain|text)$/i,B=/\\blang(?:uage)?-([\\w-]+)\\b/i,M=/((^(<[^>]+>|\\t|)+|(?:\\n)))/gm,C=\"</span>\",I={classPrefix:\"hljs-\",tabReplace:null,useBR:!1,languages:void 0};return e.highlight=f,e.highlightAuto=g,e.fixMarkup=p,e.highlightBlock=d,e.configure=b,e.initHighlighting=v,e.initHighlightingOnLoad=m,e.registerLanguage=N,e.listLanguages=R,e.getLanguage=w,e.inherit=o,e.IR=\"[a-zA-Z]\\\\w*\",e.UIR=\"[a-zA-Z_]\\\\w*\",e.NR=\"\\\\b\\\\d+(\\\\.\\\\d+)?\",e.CNR=\"(-?)(\\\\b0[xX][a-fA-F0-9]+|(\\\\b\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\",e.BNR=\"\\\\b(0b[01]+)\",e.RSR=\"!|!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\?|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",e.BE={b:\"\\\\\\\\[\\\\s\\\\S]\",r:0},e.ASM={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\",c:[e.BE]},e.QSM={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[e.BE]},e.PWM={b:/\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b/},e.C=function(n,t,r){var a=e.inherit({cN:\"comment\",b:n,e:t,c:[]},r||{});return a.c.push(e.PWM),a.c.push({cN:\"doctag\",b:\"(?:TODO|FIXME|NOTE|BUG|XXX):\",r:0}),a},e.CLCM=e.C(\"//\",\"$\"),e.CBCM=e.C(\"/\\\\*\",\"\\\\*/\"),e.HCM=e.C(\"#\",\"$\"),e.NM={cN:\"number\",b:e.NR,r:0},e.CNM={cN:\"number\",b:e.CNR,r:0},e.BNM={cN:\"number\",b:e.BNR,r:0},e.CSSNM={cN:\"number\",b:e.NR+\"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?\",r:0},e.RM={cN:\"regexp\",b:/\\//,e:/\\/[gimuy]*/,i:/\\n/,c:[e.BE,{b:/\\[/,e:/\\]/,r:0,c:[e.BE]}]},e.TM={cN:\"title\",b:e.IR,r:0},e.UTM={cN:\"title\",b:e.UIR,r:0},e.METHOD_GUARD={b:\"\\\\.\\\\s*\"+e.UIR,r:0},e});hljs.registerLanguage(\"sql\",function(e){var t=e.C(\"--\",\"$\");return{cI:!0,i:/[<>{}*#]/,c:[{bK:\"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment\",e:/;/,eW:!0,l:/[\\w\\.]+/,k:{keyword:\"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment select self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek\",literal:\"true false null\",built_in:\"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void\"},c:[{cN:\"string\",b:\"'\",e:\"'\",c:[e.BE,{b:\"''\"}]},{cN:\"string\",b:'\"',e:'\"',c:[e.BE,{b:'\"\"'}]},{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}});hljs.registerLanguage(\"r\",function(e){var r=\"([a-zA-Z]|\\\\.[a-zA-Z.])[a-zA-Z0-9._]*\";return{c:[e.HCM,{b:r,l:r,k:{keyword:\"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...\",literal:\"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10\"},r:0},{cN:\"number\",b:\"0[xX][0-9a-fA-F]+[Li]?\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+(?:[eE][+\\\\-]?\\\\d*)?L\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+\\\\.(?!\\\\d)(?:i\\\\b)?\",r:0},{cN:\"number\",b:\"\\\\d+(?:\\\\.\\\\d*)?(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0},{cN:\"number\",b:\"\\\\.\\\\d+(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0},{b:\"`\",e:\"`\",r:0},{cN:\"string\",c:[e.BE],v:[{b:'\"',e:'\"'},{b:\"'\",e:\"'\"}]}]}});hljs.registerLanguage(\"perl\",function(e){var t=\"getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when\",r={cN:\"subst\",b:\"[$@]\\\\{\",e:\"\\\\}\",k:t},s={b:\"->{\",e:\"}\"},n={v:[{b:/\\$\\d/},{b:/[\\$%@](\\^\\w\\b|#\\w+(::\\w+)*|{\\w+}|\\w+(::\\w*)*)/},{b:/[\\$%@][^\\s\\w{]/,r:0}]},i=[e.BE,r,n],o=[n,e.HCM,e.C(\"^\\\\=\\\\w\",\"\\\\=cut\",{eW:!0}),s,{cN:\"string\",c:i,v:[{b:\"q[qwxr]?\\\\s*\\\\(\",e:\"\\\\)\",r:5},{b:\"q[qwxr]?\\\\s*\\\\[\",e:\"\\\\]\",r:5},{b:\"q[qwxr]?\\\\s*\\\\{\",e:\"\\\\}\",r:5},{b:\"q[qwxr]?\\\\s*\\\\|\",e:\"\\\\|\",r:5},{b:\"q[qwxr]?\\\\s*\\\\<\",e:\"\\\\>\",r:5},{b:\"qw\\\\s+q\",e:\"q\",r:5},{b:\"'\",e:\"'\",c:[e.BE]},{b:'\"',e:'\"'},{b:\"`\",e:\"`\",c:[e.BE]},{b:\"{\\\\w+}\",c:[],r:0},{b:\"-?\\\\w+\\\\s*\\\\=\\\\>\",c:[],r:0}]},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{b:\"(\\\\/\\\\/|\"+e.RSR+\"|\\\\b(split|return|print|reverse|grep)\\\\b)\\\\s*\",k:\"split return print reverse grep\",r:0,c:[e.HCM,{cN:\"regexp\",b:\"(s|tr|y)/(\\\\\\\\.|[^/])*/(\\\\\\\\.|[^/])*/[a-z]*\",r:10},{cN:\"regexp\",b:\"(m|qr)?/\",e:\"/[a-z]*\",c:[e.BE],r:0}]},{cN:\"function\",bK:\"sub\",e:\"(\\\\s*\\\\(.*?\\\\))?[;{]\",eE:!0,r:5,c:[e.TM]},{b:\"-\\\\w\\\\b\",r:0},{b:\"^__DATA__$\",e:\"^__END__$\",sL:\"mojolicious\",c:[{b:\"^@@.*\",e:\"$\",cN:\"comment\"}]}];return r.c=o,s.c=o,{aliases:[\"pl\",\"pm\"],l:/[\\w\\.]+/,k:t,c:o}});hljs.registerLanguage(\"ini\",function(e){var b={cN:\"string\",c:[e.BE],v:[{b:\"'''\",e:\"'''\",r:10},{b:'\"\"\"',e:'\"\"\"',r:10},{b:'\"',e:'\"'},{b:\"'\",e:\"'\"}]};return{aliases:[\"toml\"],cI:!0,i:/\\S/,c:[e.C(\";\",\"$\"),e.HCM,{cN:\"section\",b:/^\\s*\\[+/,e:/\\]+/},{b:/^[a-z0-9\\[\\]_-]+\\s*=\\s*/,e:\"$\",rB:!0,c:[{cN:\"attr\",b:/[a-z0-9\\[\\]_-]+/},{b:/=/,eW:!0,r:0,c:[{cN:\"literal\",b:/\\bon|off|true|false|yes|no\\b/},{cN:\"variable\",v:[{b:/\\$[\\w\\d\"][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},b,{cN:\"number\",b:/([\\+\\-]+)?[\\d]+_[\\d_]+/},e.NM]}]}]}});hljs.registerLanguage(\"diff\",function(e){return{aliases:[\"patch\"],c:[{cN:\"meta\",r:10,v:[{b:/^@@ +\\-\\d+,\\d+ +\\+\\d+,\\d+ +@@$/},{b:/^\\*\\*\\* +\\d+,\\d+ +\\*\\*\\*\\*$/},{b:/^\\-\\-\\- +\\d+,\\d+ +\\-\\-\\-\\-$/}]},{cN:\"comment\",v:[{b:/Index: /,e:/$/},{b:/={3,}/,e:/$/},{b:/^\\-{3}/,e:/$/},{b:/^\\*{3} /,e:/$/},{b:/^\\+{3}/,e:/$/},{b:/\\*{5}/,e:/\\*{5}$/}]},{cN:\"addition\",b:\"^\\\\+\",e:\"$\"},{cN:\"deletion\",b:\"^\\\\-\",e:\"$\"},{cN:\"addition\",b:\"^\\\\!\",e:\"$\"}]}});hljs.registerLanguage(\"go\",function(e){var t={keyword:\"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune\",literal:\"true false iota nil\",built_in:\"append cap close complex copy imag len make new panic print println real recover delete\"};return{aliases:[\"golang\"],k:t,i:\"</\",c:[e.CLCM,e.CBCM,{cN:\"string\",v:[e.QSM,{b:\"'\",e:\"[^\\\\\\\\]'\"},{b:\"`\",e:\"`\"}]},{cN:\"number\",v:[{b:e.CNR+\"[dflsi]\",r:1},e.CNM]},{b:/:=/},{cN:\"function\",bK:\"func\",e:/\\s*\\{/,eE:!0,c:[e.TM,{cN:\"params\",b:/\\(/,e:/\\)/,k:t,i:/[\"']/}]}]}});hljs.registerLanguage(\"bash\",function(e){var t={cN:\"variable\",v:[{b:/\\$[\\w\\d#@][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},s={cN:\"string\",b:/\"/,e:/\"/,c:[e.BE,t,{cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]}]},a={cN:\"string\",b:/'/,e:/'/};return{aliases:[\"sh\",\"zsh\"],l:/\\b-?[a-z\\._]+\\b/,k:{keyword:\"if then else elif fi for while in do done case esac function\",literal:\"true false\",built_in:\"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp\",_:\"-ne -eq -lt -gt -f -d -e -s -l -a\"},c:[{cN:\"meta\",b:/^#![^\\n]+sh\\s*$/,r:10},{cN:\"function\",b:/\\w[\\w\\d_]*\\s*\\(\\s*\\)\\s*\\{/,rB:!0,c:[e.inherit(e.TM,{b:/\\w[\\w\\d_]*/})],r:0},e.HCM,s,a,t]}});hljs.registerLanguage(\"python\",function(e){var r={keyword:\"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False\",built_in:\"Ellipsis NotImplemented\"},b={cN:\"meta\",b:/^(>>>|\\.\\.\\.) /},c={cN:\"subst\",b:/\\{/,e:/\\}/,k:r,i:/#/},a={cN:\"string\",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[b],r:10},{b:/(u|b)?r?\"\"\"/,e:/\"\"\"/,c:[b],r:10},{b:/(fr|rf|f)'''/,e:/'''/,c:[b,c]},{b:/(fr|rf|f)\"\"\"/,e:/\"\"\"/,c:[b,c]},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)\"/,e:/\"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)\"/,e:/\"/},{b:/(fr|rf|f)'/,e:/'/,c:[c]},{b:/(fr|rf|f)\"/,e:/\"/,c:[c]},e.ASM,e.QSM]},s={cN:\"number\",r:0,v:[{b:e.BNR+\"[lLjJ]?\"},{b:\"\\\\b(0o[0-7]+)[lLjJ]?\"},{b:e.CNR+\"[lLjJ]?\"}]},i={cN:\"params\",b:/\\(/,e:/\\)/,c:[\"self\",b,s,a]};return c.c=[a,s,b],{aliases:[\"py\",\"gyp\"],k:r,i:/(<\\/|->|\\?)|=>/,c:[b,s,a,e.HCM,{v:[{cN:\"function\",bK:\"def\"},{cN:\"class\",bK:\"class\"}],e:/:/,i:/[${=;\\n,]/,c:[e.UTM,i,{b:/->/,eW:!0,k:\"None\"}]},{cN:\"meta\",b:/^[\\t ]*@/,e:/$/},{b:/\\b(print|exec)\\(/}]}});hljs.registerLanguage(\"julia\",function(e){var r={keyword:\"in isa where baremodule begin break catch ccall const continue do else elseif end export false finally for function global if import importall let local macro module quote return true try using while type immutable abstract bitstype typealias \",literal:\"true false ARGS C_NULL DevNull ENDIAN_BOM ENV I Inf Inf16 Inf32 Inf64 InsertionSort JULIA_HOME LOAD_PATH MergeSort NaN NaN16 NaN32 NaN64 PROGRAM_FILE QuickSort RoundDown RoundFromZero RoundNearest RoundNearestTiesAway RoundNearestTiesUp RoundToZero RoundUp STDERR STDIN STDOUT VERSION catalan e|0 eu|0 eulergamma golden im nothing pi γ π φ \",built_in:\"ANY AbstractArray AbstractChannel AbstractFloat AbstractMatrix AbstractRNG AbstractSerializer AbstractSet AbstractSparseArray AbstractSparseMatrix AbstractSparseVector AbstractString AbstractUnitRange AbstractVecOrMat AbstractVector Any ArgumentError Array AssertionError Associative Base64DecodePipe Base64EncodePipe Bidiagonal BigFloat BigInt BitArray BitMatrix BitVector Bool BoundsError BufferStream CachingPool CapturedException CartesianIndex CartesianRange Cchar Cdouble Cfloat Channel Char Cint Cintmax_t Clong Clonglong ClusterManager Cmd CodeInfo Colon Complex Complex128 Complex32 Complex64 CompositeException Condition ConjArray ConjMatrix ConjVector Cptrdiff_t Cshort Csize_t Cssize_t Cstring Cuchar Cuint Cuintmax_t Culong Culonglong Cushort Cwchar_t Cwstring DataType Date DateFormat DateTime DenseArray DenseMatrix DenseVecOrMat DenseVector Diagonal Dict DimensionMismatch Dims DirectIndexString Display DivideError DomainError EOFError EachLine Enum Enumerate ErrorException Exception ExponentialBackOff Expr Factorization FileMonitor Float16 Float32 Float64 Function Future GlobalRef GotoNode HTML Hermitian IO IOBuffer IOContext IOStream IPAddr IPv4 IPv6 IndexCartesian IndexLinear IndexStyle InexactError InitError Int Int128 Int16 Int32 Int64 Int8 IntSet Integer InterruptException InvalidStateException Irrational KeyError LabelNode LinSpace LineNumberNode LoadError LowerTriangular MIME Matrix MersenneTwister Method MethodError MethodTable Module NTuple NewvarNode NullException Nullable Number ObjectIdDict OrdinalRange OutOfMemoryError OverflowError Pair ParseError PartialQuickSort PermutedDimsArray Pipe PollingFileWatcher ProcessExitedException Ptr QuoteNode RandomDevice Range RangeIndex Rational RawFD ReadOnlyMemoryError Real ReentrantLock Ref Regex RegexMatch RemoteChannel RemoteException RevString RoundingMode RowVector SSAValue SegmentationFault SerializationState Set SharedArray SharedMatrix SharedVector Signed SimpleVector Slot SlotNumber SparseMatrixCSC SparseVector StackFrame StackOverflowError StackTrace StepRange StepRangeLen StridedArray StridedMatrix StridedVecOrMat StridedVector String SubArray SubString SymTridiagonal Symbol Symmetric SystemError TCPSocket Task Text TextDisplay Timer Tridiagonal Tuple Type TypeError TypeMapEntry TypeMapLevel TypeName TypeVar TypedSlot UDPSocket UInt UInt128 UInt16 UInt32 UInt64 UInt8 UndefRefError UndefVarError UnicodeError UniformScaling Union UnionAll UnitRange Unsigned UpperTriangular Val Vararg VecElement VecOrMat Vector VersionNumber Void WeakKeyDict WeakRef WorkerConfig WorkerPool \"},t=\"[A-Za-z_\\\\u00A1-\\\\uFFFF][A-Za-z_0-9\\\\u00A1-\\\\uFFFF]*\",a={l:t,k:r,i:/<\\//},n={cN:\"number\",b:/(\\b0x[\\d_]*(\\.[\\d_]*)?|0x\\.\\d[\\d_]*)p[-+]?\\d+|\\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\\b\\d[\\d_]*(\\.[\\d_]*)?|\\.\\d[\\d_]*)([eEfF][-+]?\\d+)?/,r:0},o={cN:\"string\",b:/'(.|\\\\[xXuU][a-zA-Z0-9]+)'/},i={cN:\"subst\",b:/\\$\\(/,e:/\\)/,k:r},l={cN:\"variable\",b:\"\\\\$\"+t},c={cN:\"string\",c:[e.BE,i,l],v:[{b:/\\w*\"\"\"/,e:/\"\"\"\\w*/,r:10},{b:/\\w*\"/,e:/\"\\w*/}]},s={cN:\"string\",c:[e.BE,i,l],b:\"`\",e:\"`\"},d={cN:\"meta\",b:\"@\"+t},u={cN:\"comment\",v:[{b:\"#=\",e:\"=#\",r:10},{b:\"#\",e:\"$\"}]};return a.c=[n,o,c,s,d,u,e.HCM,{cN:\"keyword\",b:\"\\\\b(((abstract|primitive)\\\\s+)type|(mutable\\\\s+)?struct)\\\\b\"},{b:/<:/}],i.c=a.c,a});hljs.registerLanguage(\"coffeescript\",function(e){var c={keyword:\"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super yield import export from as default await then unless until loop of by when and or is isnt not\",literal:\"true false null undefined yes no on off\",built_in:\"npm require console print module global window document\"},n=\"[A-Za-z$_][0-9A-Za-z$_]*\",r={cN:\"subst\",b:/#\\{/,e:/}/,k:c},i=[e.BNM,e.inherit(e.CNM,{starts:{e:\"(\\\\s*/)?\",r:0}}),{cN:\"string\",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/\"\"\"/,e:/\"\"\"/,c:[e.BE,r]},{b:/\"/,e:/\"/,c:[e.BE,r]}]},{cN:\"regexp\",v:[{b:\"///\",e:\"///\",c:[r,e.HCM]},{b:\"//[gim]*\",r:0},{b:/\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W|$)/}]},{b:\"@\"+n},{sL:\"javascript\",eB:!0,eE:!0,v:[{b:\"```\",e:\"```\"},{b:\"`\",e:\"`\"}]}];r.c=i;var s=e.inherit(e.TM,{b:n}),t=\"(\\\\(.*\\\\))?\\\\s*\\\\B[-=]>\",o={cN:\"params\",b:\"\\\\([^\\\\(]\",rB:!0,c:[{b:/\\(/,e:/\\)/,k:c,c:[\"self\"].concat(i)}]};return{aliases:[\"coffee\",\"cson\",\"iced\"],k:c,i:/\\/\\*/,c:i.concat([e.C(\"###\",\"###\"),e.HCM,{cN:\"function\",b:\"^\\\\s*\"+n+\"\\\\s*=\\\\s*\"+t,e:\"[-=]>\",rB:!0,c:[s,o]},{b:/[:\\(,=]\\s*/,r:0,c:[{cN:\"function\",b:t,e:\"[-=]>\",rB:!0,c:[o]}]},{cN:\"class\",bK:\"class\",e:\"$\",i:/[:=\"\\[\\]]/,c:[{bK:\"extends\",eW:!0,i:/[:=\"\\[\\]]/,c:[s]},s]},{b:n+\":\",e:\":\",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage(\"cpp\",function(t){var e={cN:\"keyword\",b:\"\\\\b[a-z\\\\d_]*_t\\\\b\"},r={cN:\"string\",v:[{b:'(u8?|U)?L?\"',e:'\"',i:\"\\\\n\",c:[t.BE]},{b:'(u8?|U)?R\"',e:'\"',c:[t.BE]},{b:\"'\\\\\\\\?.\",e:\"'\",i:\".\"}]},s={cN:\"number\",v:[{b:\"\\\\b(0b[01']+)\"},{b:\"(-?)\\\\b([\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)(u|U|l|L|ul|UL|f|F|b|B)\"},{b:\"(-?)(\\\\b0[xX][a-fA-F0-9']+|(\\\\b[\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)([eE][-+]?[\\\\d']+)?)\"}],r:0},i={cN:\"meta\",b:/#\\s*[a-z]+\\b/,e:/$/,k:{\"meta-keyword\":\"if else elif endif define undef warning error line pragma ifdef ifndef include\"},c:[{b:/\\\\\\n/,r:0},t.inherit(r,{cN:\"meta-string\"}),{cN:\"meta-string\",b:/<[^\\n>]*>/,e:/$/,i:\"\\\\n\"},t.CLCM,t.CBCM]},a=t.IR+\"\\\\s*\\\\(\",c={keyword:\"int float while private char catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and or not\",built_in:\"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr\",literal:\"true false nullptr NULL\"},n=[e,t.CLCM,t.CBCM,s,r];return{aliases:[\"c\",\"cc\",\"h\",\"c++\",\"h++\",\"hpp\"],k:c,i:\"</\",c:n.concat([i,{b:\"\\\\b(deque|list|queue|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\\\s*<\",e:\">\",k:c,c:[\"self\",e]},{b:t.IR+\"::\",k:c},{v:[{b:/=/,e:/;/},{b:/\\(/,e:/\\)/},{bK:\"new throw return else\",e:/;/}],k:c,c:n.concat([{b:/\\(/,e:/\\)/,k:c,c:n.concat([\"self\"]),r:0}]),r:0},{cN:\"function\",b:\"(\"+t.IR+\"[\\\\*&\\\\s]+)+\"+a,rB:!0,e:/[{;=]/,eE:!0,k:c,i:/[^\\w\\s\\*&]/,c:[{b:a,rB:!0,c:[t.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:c,r:0,c:[t.CLCM,t.CBCM,r,s,e]},t.CLCM,t.CBCM,i]},{cN:\"class\",bK:\"class struct\",e:/[{;:]/,c:[{b:/</,e:/>/,c:[\"self\"]},t.TM]}]),exports:{preprocessor:i,strings:r,k:c}}});hljs.registerLanguage(\"ruby\",function(e){var b=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",r={keyword:\"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor\",literal:\"true false nil\"},c={cN:\"doctag\",b:\"@[A-Za-z]+\"},a={b:\"#<\",e:\">\"},s=[e.C(\"#\",\"$\",{c:[c]}),e.C(\"^\\\\=begin\",\"^\\\\=end\",{c:[c],r:10}),e.C(\"^__END__\",\"\\\\n$\")],n={cN:\"subst\",b:\"#\\\\{\",e:\"}\",k:r},t={cN:\"string\",c:[e.BE,n],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/},{b:/`/,e:/`/},{b:\"%[qQwWx]?\\\\(\",e:\"\\\\)\"},{b:\"%[qQwWx]?\\\\[\",e:\"\\\\]\"},{b:\"%[qQwWx]?{\",e:\"}\"},{b:\"%[qQwWx]?<\",e:\">\"},{b:\"%[qQwWx]?/\",e:\"/\"},{b:\"%[qQwWx]?%\",e:\"%\"},{b:\"%[qQwWx]?-\",e:\"-\"},{b:\"%[qQwWx]?\\\\|\",e:\"\\\\|\"},{b:/\\B\\?(\\\\\\d{1,3}|\\\\x[A-Fa-f0-9]{1,2}|\\\\u[A-Fa-f0-9]{4}|\\\\?\\S)\\b/},{b:/<<(-?)\\w+$/,e:/^\\s*\\w+$/}]},i={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",endsParent:!0,k:r},d=[t,a,{cN:\"class\",bK:\"class module\",e:\"$|;\",i:/=/,c:[e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"}),{b:\"<\\\\s*\",c:[{b:\"(\"+e.IR+\"::)?\"+e.IR}]}].concat(s)},{cN:\"function\",bK:\"def\",e:\"$|;\",c:[e.inherit(e.TM,{b:b}),i].concat(s)},{b:e.IR+\"::\"},{cN:\"symbol\",b:e.UIR+\"(\\\\!|\\\\?)?:\",r:0},{cN:\"symbol\",b:\":(?!\\\\s)\",c:[t,{b:b}],r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{cN:\"params\",b:/\\|/,e:/\\|/,k:r},{b:\"(\"+e.RSR+\"|unless)\\\\s*\",k:\"unless\",c:[a,{cN:\"regexp\",c:[e.BE,n],i:/\\n/,v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r{\",e:\"}[a-z]*\"},{b:\"%r\\\\(\",e:\"\\\\)[a-z]*\"},{b:\"%r!\",e:\"![a-z]*\"},{b:\"%r\\\\[\",e:\"\\\\][a-z]*\"}]}].concat(s),r:0}].concat(s);n.c=d,i.c=d;var l=\"[>?]>\",o=\"[\\\\w#]+\\\\(\\\\w+\\\\):\\\\d+:\\\\d+>\",u=\"(\\\\w+-)?\\\\d+\\\\.\\\\d+\\\\.\\\\d(p\\\\d+)?[^>]+>\",w=[{b:/^\\s*=>/,starts:{e:\"$\",c:d}},{cN:\"meta\",b:\"^(\"+l+\"|\"+o+\"|\"+u+\")\",starts:{e:\"$\",c:d}}];return{aliases:[\"rb\",\"gemspec\",\"podspec\",\"thor\",\"irb\"],k:r,i:/\\/\\*/,c:s.concat(w).concat(d)}});hljs.registerLanguage(\"yaml\",function(e){var b=\"true false yes no null\",a=\"^[ \\\\-]*\",r=\"[a-zA-Z_][\\\\w\\\\-]*\",t={cN:\"attr\",v:[{b:a+r+\":\"},{b:a+'\"'+r+'\":'},{b:a+\"'\"+r+\"':\"}]},c={cN:\"template-variable\",v:[{b:\"{{\",e:\"}}\"},{b:\"%{\",e:\"}\"}]},l={cN:\"string\",r:0,v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/},{b:/\\S+/}],c:[e.BE,c]};return{cI:!0,aliases:[\"yml\",\"YAML\",\"yaml\"],c:[t,{cN:\"meta\",b:\"^---s*$\",r:10},{cN:\"string\",b:\"[\\\\|>] *$\",rE:!0,c:l.c,e:t.v[0].b},{b:\"<%[%=-]?\",e:\"[%-]?%>\",sL:\"ruby\",eB:!0,eE:!0,r:0},{cN:\"type\",b:\"!!\"+e.UIR},{cN:\"meta\",b:\"&\"+e.UIR+\"$\"},{cN:\"meta\",b:\"\\\\*\"+e.UIR+\"$\"},{cN:\"bullet\",b:\"^ *-\",r:0},e.HCM,{bK:b,k:{literal:b}},e.CNM,l]}});hljs.registerLanguage(\"css\",function(e){var c=\"[a-zA-Z-][a-zA-Z0-9_-]*\",t={b:/[A-Z\\_\\.\\-]+\\s*:/,rB:!0,e:\";\",eW:!0,c:[{cN:\"attribute\",b:/\\S/,e:\":\",eE:!0,starts:{eW:!0,eE:!0,c:[{b:/[\\w-]+\\(/,rB:!0,c:[{cN:\"built_in\",b:/[\\w-]+/},{b:/\\(/,e:/\\)/,c:[e.ASM,e.QSM]}]},e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:\"number\",b:\"#[0-9A-Fa-f]+\"},{cN:\"meta\",b:\"!important\"}]}}]};return{cI:!0,i:/[=\\/|'\\$]/,c:[e.CBCM,{cN:\"selector-id\",b:/#[A-Za-z0-9_-]+/},{cN:\"selector-class\",b:/\\.[A-Za-z0-9_-]+/},{cN:\"selector-attr\",b:/\\[/,e:/\\]/,i:\"$\"},{cN:\"selector-pseudo\",b:/:(:)?[a-zA-Z0-9\\_\\-\\+\\(\\)\"'.]+/},{b:\"@(font-face|page)\",l:\"[a-z-]+\",k:\"font-face page\"},{b:\"@\",e:\"[{;]\",i:/:/,c:[{cN:\"keyword\",b:/\\w+/},{b:/\\s/,eW:!0,eE:!0,r:0,c:[e.ASM,e.QSM,e.CSSNM]}]},{cN:\"selector-tag\",b:c,r:0},{b:\"{\",e:\"}\",i:/\\S/,c:[e.CBCM,t]}]}});hljs.registerLanguage(\"fortran\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},n={literal:\".False. .True.\",keyword:\"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated  c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data\",built_in:\"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image\"};return{cI:!0,aliases:[\"f90\",\"f95\"],k:n,i:/\\/\\*/,c:[e.inherit(e.ASM,{cN:\"string\",r:0}),e.inherit(e.QSM,{cN:\"string\",r:0}),{cN:\"function\",bK:\"subroutine function program\",i:\"[${=\\\\n]\",c:[e.UTM,t]},e.C(\"!\",\"$\",{r:0}),{cN:\"number\",b:\"(?=\\\\b|\\\\+|\\\\-|\\\\.)(?=\\\\.\\\\d|\\\\d)(?:\\\\d+)?(?:\\\\.?\\\\d*)(?:[de][+-]?\\\\d+)?\\\\b\\\\.?\",r:0}]}});hljs.registerLanguage(\"awk\",function(e){var r={cN:\"variable\",v:[{b:/\\$[\\w\\d#@][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},b=\"BEGIN END if else while do for in break continue delete next nextfile function func exit|10\",n={cN:\"string\",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,r:10},{b:/(u|b)?r?\"\"\"/,e:/\"\"\"/,r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)\"/,e:/\"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)\"/,e:/\"/},e.ASM,e.QSM]};return{k:{keyword:b},c:[r,n,e.RM,e.HCM,e.NM]}});hljs.registerLanguage(\"makefile\",function(e){var i={cN:\"variable\",v:[{b:\"\\\\$\\\\(\"+e.UIR+\"\\\\)\",c:[e.BE]},{b:/\\$[@%<?\\^\\+\\*]/}]},r={cN:\"string\",b:/\"/,e:/\"/,c:[e.BE,i]},a={cN:\"variable\",b:/\\$\\([\\w-]+\\s/,e:/\\)/,k:{built_in:\"subst patsubst strip findstring filter filter-out sort word wordlist firstword lastword dir notdir suffix basename addsuffix addprefix join wildcard realpath abspath error warning shell origin flavor foreach if or and call eval file value\"},c:[i]},n={b:\"^\"+e.UIR+\"\\\\s*[:+?]?=\",i:\"\\\\n\",rB:!0,c:[{b:\"^\"+e.UIR,e:\"[:+?]?=\",eE:!0}]},t={cN:\"meta\",b:/^\\.PHONY:/,e:/$/,k:{\"meta-keyword\":\".PHONY\"},l:/[\\.\\w]+/},l={cN:\"section\",b:/^[^\\s]+:/,e:/$/,c:[i]};return{aliases:[\"mk\",\"mak\"],k:\"define endef undefine ifdef ifndef ifeq ifneq else endif include -include sinclude override export unexport private vpath\",l:/[\\w-]+/,c:[e.HCM,i,r,a,n,t,l]}});hljs.registerLanguage(\"java\",function(e){var a=\"[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*\",t=a+\"(<\"+a+\"(\\\\s*,\\\\s*\"+a+\")*>)?\",r=\"false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do\",s=\"\\\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+)(\\\\.([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+))?|\\\\.([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+))([eE][-+]?\\\\d+)?)[lLfF]?\",c={cN:\"number\",b:s,r:0};return{aliases:[\"jsp\"],k:r,i:/<\\/|#/,c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{b:/\\w+@/,r:0},{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:\"class\",bK:\"class interface\",e:/[{;=]/,eE:!0,k:\"class interface\",i:/[:\"\\[\\]]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"new throw return else\",r:0},{cN:\"function\",b:\"(\"+t+\"\\\\s+)+\"+e.UIR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:r,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"params\",b:/\\(/,e:/\\)/,k:r,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},c,{cN:\"meta\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"stan\",function(e){return{c:[e.HCM,e.CLCM,e.CBCM,{b:e.UIR,l:e.UIR,k:{name:\"for in while repeat until if then else\",symbol:\"bernoulli bernoulli_logit binomial binomial_logit beta_binomial hypergeometric categorical categorical_logit ordered_logistic neg_binomial neg_binomial_2 neg_binomial_2_log poisson poisson_log multinomial normal exp_mod_normal skew_normal student_t cauchy double_exponential logistic gumbel lognormal chi_square inv_chi_square scaled_inv_chi_square exponential inv_gamma weibull frechet rayleigh wiener pareto pareto_type_2 von_mises uniform multi_normal multi_normal_prec multi_normal_cholesky multi_gp multi_gp_cholesky multi_student_t gaussian_dlm_obs dirichlet lkj_corr lkj_corr_cholesky wishart inv_wishart\",\"selector-tag\":\"int real vector simplex unit_vector ordered positive_ordered row_vector matrix cholesky_factor_corr cholesky_factor_cov corr_matrix cov_matrix\",title:\"functions model data parameters quantities transformed generated\",literal:\"true false\"},r:0},{cN:\"number\",b:\"0[xX][0-9a-fA-F]+[Li]?\\\\b\",r:0},{cN:\"number\",b:\"0[xX][0-9a-fA-F]+[Li]?\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+(?:[eE][+\\\\-]?\\\\d*)?L\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+\\\\.(?!\\\\d)(?:i\\\\b)?\",r:0},{cN:\"number\",b:\"\\\\d+(?:\\\\.\\\\d*)?(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0},{cN:\"number\",b:\"\\\\.\\\\d+(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0}]}});hljs.registerLanguage(\"javascript\",function(e){var r=\"[A-Za-z$_][0-9A-Za-z$_]*\",t={keyword:\"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await static import from as\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise\"},a={cN:\"number\",v:[{b:\"\\\\b(0[bB][01]+)\"},{b:\"\\\\b(0[oO][0-7]+)\"},{b:e.CNR}],r:0},n={cN:\"subst\",b:\"\\\\$\\\\{\",e:\"\\\\}\",k:t,c:[]},c={cN:\"string\",b:\"`\",e:\"`\",c:[e.BE,n]};n.c=[e.ASM,e.QSM,c,a,e.RM];var s=n.c.concat([e.CBCM,e.CLCM]);return{aliases:[\"js\",\"jsx\"],k:t,c:[{cN:\"meta\",r:10,b:/^\\s*['\"]use (strict|asm)['\"]/},{cN:\"meta\",b:/^#!/,e:/$/},e.ASM,e.QSM,c,e.CLCM,e.CBCM,a,{b:/[{,]\\s*/,r:0,c:[{b:r+\"\\\\s*:\",rB:!0,r:0,c:[{cN:\"attr\",b:r,r:0}]}]},{b:\"(\"+e.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[e.CLCM,e.CBCM,e.RM,{cN:\"function\",b:\"(\\\\(.*?\\\\)|\"+r+\")\\\\s*=>\",rB:!0,e:\"\\\\s*=>\",c:[{cN:\"params\",v:[{b:r},{b:/\\(\\s*\\)/},{b:/\\(/,e:/\\)/,eB:!0,eE:!0,k:t,c:s}]}]},{b:/</,e:/(\\/\\w+|\\w+\\/)>/,sL:\"xml\",c:[{b:/<\\w+\\s*\\/>/,skip:!0},{b:/<\\w+/,e:/(\\/\\w+|\\w+\\/)>/,skip:!0,c:[{b:/<\\w+\\s*\\/>/,skip:!0},\"self\"]}]}],r:0},{cN:\"function\",bK:\"function\",e:/\\{/,eE:!0,c:[e.inherit(e.TM,{b:r}),{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,c:s}],i:/\\[|%/},{b:/\\$[(.]/},e.METHOD_GUARD,{cN:\"class\",bK:\"class\",e:/[{;=]/,eE:!0,i:/[:\"\\[\\]]/,c:[{bK:\"extends\"},e.UTM]},{bK:\"constructor\",e:/\\{/,eE:!0}],i:/#(?!!)/}});hljs.registerLanguage(\"tex\",function(c){var e={cN:\"tag\",b:/\\\\/,r:0,c:[{cN:\"name\",v:[{b:/[a-zA-Zа-яА-я]+[*]?/},{b:/[^a-zA-Zа-яА-я0-9]/}],starts:{eW:!0,r:0,c:[{cN:\"string\",v:[{b:/\\[/,e:/\\]/},{b:/\\{/,e:/\\}/}]},{b:/\\s*=\\s*/,eW:!0,r:0,c:[{cN:\"number\",b:/-?\\d*\\.?\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?/}]}]}}]};return{c:[e,{cN:\"formula\",c:[e],r:0,v:[{b:/\\$\\$/,e:/\\$\\$/},{b:/\\$/,e:/\\$/}]},c.C(\"%\",\"$\",{r:0})]}});hljs.registerLanguage(\"xml\",function(s){var e=\"[A-Za-z0-9\\\\._:-]+\",t={eW:!0,i:/</,r:0,c:[{cN:\"attr\",b:e,r:0},{b:/=\\s*/,r:0,c:[{cN:\"string\",endsParent:!0,v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/},{b:/[^\\s\"'=<>`]+/}]}]}]};return{aliases:[\"html\",\"xhtml\",\"rss\",\"atom\",\"xjb\",\"xsd\",\"xsl\",\"plist\"],cI:!0,c:[{cN:\"meta\",b:\"<!DOCTYPE\",e:\">\",r:10,c:[{b:\"\\\\[\",e:\"\\\\]\"}]},s.C(\"<!--\",\"-->\",{r:10}),{b:\"<\\\\!\\\\[CDATA\\\\[\",e:\"\\\\]\\\\]>\",r:10},{b:/<\\?(php)?/,e:/\\?>/,sL:\"php\",c:[{b:\"/\\\\*\",e:\"\\\\*/\",skip:!0}]},{cN:\"tag\",b:\"<style(?=\\\\s|>|$)\",e:\">\",k:{name:\"style\"},c:[t],starts:{e:\"</style>\",rE:!0,sL:[\"css\",\"xml\"]}},{cN:\"tag\",b:\"<script(?=\\\\s|>|$)\",e:\">\",k:{name:\"script\"},c:[t],starts:{e:\"</script>\",rE:!0,sL:[\"actionscript\",\"javascript\",\"handlebars\",\"xml\"]}},{cN:\"meta\",v:[{b:/<\\?xml/,e:/\\?>/,r:10},{b:/<\\?\\w+/,e:/\\?>/}]},{cN:\"tag\",b:\"</?\",e:\"/?>\",c:[{cN:\"name\",b:/[^\\/><\\s]+/,r:0},t]}]}});hljs.registerLanguage(\"markdown\",function(e){return{aliases:[\"md\",\"mkdown\",\"mkd\"],c:[{cN:\"section\",v:[{b:\"^#{1,6}\",e:\"$\"},{b:\"^.+?\\\\n[=-]{2,}$\"}]},{b:\"<\",e:\">\",sL:\"xml\",r:0},{cN:\"bullet\",b:\"^([*+-]|(\\\\d+\\\\.))\\\\s+\"},{cN:\"strong\",b:\"[*_]{2}.+?[*_]{2}\"},{cN:\"emphasis\",v:[{b:\"\\\\*.+?\\\\*\"},{b:\"_.+?_\",r:0}]},{cN:\"quote\",b:\"^>\\\\s+\",e:\"$\"},{cN:\"code\",v:[{b:\"^```w*s*$\",e:\"^```s*$\"},{b:\"`.+?`\"},{b:\"^( {4}|\t)\",e:\"$\",r:0}]},{b:\"^[-\\\\*]{3,}\",e:\"$\"},{b:\"\\\\[.+?\\\\][\\\\(\\\\[].*?[\\\\)\\\\]]\",rB:!0,c:[{cN:\"string\",b:\"\\\\[\",e:\"\\\\]\",eB:!0,rE:!0,r:0},{cN:\"link\",b:\"\\\\]\\\\(\",e:\"\\\\)\",eB:!0,eE:!0},{cN:\"symbol\",b:\"\\\\]\\\\[\",e:\"\\\\]\",eB:!0,eE:!0}],r:10},{b:/^\\[[^\\n]+\\]:/,rB:!0,c:[{cN:\"symbol\",b:/\\[/,e:/\\]/,eB:!0,eE:!0},{cN:\"link\",b:/:\\s*/,e:/$/,eB:!0}]}]}});hljs.registerLanguage(\"json\",function(e){var i={literal:\"true false null\"},n=[e.QSM,e.CNM],r={e:\",\",eW:!0,eE:!0,c:n,k:i},t={b:\"{\",e:\"}\",c:[{cN:\"attr\",b:/\"/,e:/\"/,c:[e.BE],i:\"\\\\n\"},e.inherit(r,{b:/:/})],i:\"\\\\S\"},c={b:\"\\\\[\",e:\"\\\\]\",c:[e.inherit(r)],i:\"\\\\S\"};return n.splice(n.length,0,t,c),{c:n,k:i,i:\"\\\\S\"}});"
  },
  {
    "path": "docs/site_libs/highlightjs-9.12.0/textmate.css",
    "content": ".hljs-literal {\n  color: rgb(88, 72, 246);\n}\n\n.hljs-number {\n  color: rgb(0, 0, 205);\n}\n\n.hljs-comment {\n  color: rgb(76, 136, 107);\n}\n\n.hljs-keyword {\n  color: rgb(0, 0, 255);\n}\n\n.hljs-string {\n  color: rgb(3, 106, 7);\n}\n"
  },
  {
    "path": "docs/site_libs/htmlwidgets-1.5.4/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = tryEval(task);\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  // Attempt eval() both with and without enclosing in parentheses.\n  // Note that enclosing coerces a function declaration into\n  // an expression that eval() can parse\n  // (otherwise, a SyntaxError is thrown)\n  function tryEval(code) {\n    var result = null;\n    try {\n      result = eval(\"(\" + code + \")\");\n    } catch(error) {\n      if (!(error instanceof SyntaxError)) {\n        throw error;\n      }\n      try {\n        result = eval(code);\n      } catch(e) {\n        if (e instanceof SyntaxError) {\n          throw error;\n        } else {\n          throw e;\n        }\n      }\n    }\n    return result;\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n\n  function has_jQuery3() {\n    if (!window.jQuery) {\n      return false;\n    }\n    var $version = window.jQuery.fn.jquery;\n    var $major_version = parseInt($version.split(\".\")[0]);\n    return $major_version >= 3;\n  }\n\n  /*\n  / Shiny 1.4 bumped jQuery from 1.x to 3.x which means jQuery's\n  / on-ready handler (i.e., $(fn)) is now asyncronous (i.e., it now\n  / really means $(setTimeout(fn)).\n  / https://jquery.com/upgrade-guide/3.0/#breaking-change-document-ready-handlers-are-now-asynchronous\n  /\n  / Since Shiny uses $() to schedule initShiny, shiny>=1.4 calls initShiny\n  / one tick later than it did before, which means staticRender() is\n  / called renderValue() earlier than (advanced) widget authors might be expecting.\n  / https://github.com/rstudio/shiny/issues/2630\n  /\n  / For a concrete example, leaflet has some methods (e.g., updateBounds)\n  / which reference Shiny methods registered in initShiny (e.g., setInputValue).\n  / Since leaflet is privy to this life-cycle, it knows to use setTimeout() to\n  / delay execution of those methods (until Shiny methods are ready)\n  / https://github.com/rstudio/leaflet/blob/18ec981/javascript/src/index.js#L266-L268\n  /\n  / Ideally widget authors wouldn't need to use this setTimeout() hack that\n  / leaflet uses to call Shiny methods on a staticRender(). In the long run,\n  / the logic initShiny should be broken up so that method registration happens\n  / right away, but binding happens later.\n  */\n  function maybeStaticRenderLater() {\n    if (shinyMode && has_jQuery3()) {\n      window.jQuery(window.HTMLWidgets.staticRender);\n    } else {\n      window.HTMLWidgets.staticRender();\n    }\n  }\n\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      maybeStaticRenderLater();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        maybeStaticRenderLater();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = tryEval(o[part]);\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "docs/site_libs/jquery-3.6.0/jquery-3.6.0.js",
    "content": "/*!\n * jQuery JavaScript Library v3.6.0\n * https://jquery.com/\n *\n * Includes Sizzle.js\n * https://sizzlejs.com/\n *\n * Copyright OpenJS Foundation and other contributors\n * Released under the MIT license\n * https://jquery.org/license\n *\n * Date: 2021-03-02T17:08Z\n */\n( function( global, factory ) {\n\n\t\"use strict\";\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\n\t\t// For CommonJS and CommonJS-like environments where a proper `window`\n\t\t// is present, execute the factory and get jQuery.\n\t\t// For environments that do not have a `window` with a `document`\n\t\t// (such as Node.js), expose a factory as module.exports.\n\t\t// This accentuates the need for the creation of a real `window`.\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info.\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n} )( typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1\n// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode\n// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common\n// enough that all such attempts are guarded in a try block.\n\"use strict\";\n\nvar arr = [];\n\nvar getProto = Object.getPrototypeOf;\n\nvar slice = arr.slice;\n\nvar flat = arr.flat ? function( array ) {\n\treturn arr.flat.call( array );\n} : function( array ) {\n\treturn arr.concat.apply( [], array );\n};\n\n\nvar push = arr.push;\n\nvar indexOf = arr.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar fnToString = hasOwn.toString;\n\nvar ObjectFunctionString = fnToString.call( Object );\n\nvar support = {};\n\nvar isFunction = function isFunction( obj ) {\n\n\t\t// Support: Chrome <=57, Firefox <=52\n\t\t// In some browsers, typeof returns \"function\" for HTML <object> elements\n\t\t// (i.e., `typeof document.createElement( \"object\" ) === \"function\"`).\n\t\t// We don't want to classify *any* DOM node as a function.\n\t\t// Support: QtWeb <=3.8.5, WebKit <=534.34, wkhtmltopdf tool <=0.12.5\n\t\t// Plus for old WebKit, typeof returns \"function\" for HTML collections\n\t\t// (e.g., `typeof document.getElementsByTagName(\"div\") === \"function\"`). (gh-4756)\n\t\treturn typeof obj === \"function\" && typeof obj.nodeType !== \"number\" &&\n\t\t\ttypeof obj.item !== \"function\";\n\t};\n\n\nvar isWindow = function isWindow( obj ) {\n\t\treturn obj != null && obj === obj.window;\n\t};\n\n\nvar document = window.document;\n\n\n\n\tvar preservedScriptAttributes = {\n\t\ttype: true,\n\t\tsrc: true,\n\t\tnonce: true,\n\t\tnoModule: true\n\t};\n\n\tfunction DOMEval( code, node, doc ) {\n\t\tdoc = doc || document;\n\n\t\tvar i, val,\n\t\t\tscript = doc.createElement( \"script\" );\n\n\t\tscript.text = code;\n\t\tif ( node ) {\n\t\t\tfor ( i in preservedScriptAttributes ) {\n\n\t\t\t\t// Support: Firefox 64+, Edge 18+\n\t\t\t\t// Some browsers don't support the \"nonce\" property on scripts.\n\t\t\t\t// On the other hand, just using `getAttribute` is not enough as\n\t\t\t\t// the `nonce` attribute is reset to an empty string whenever it\n\t\t\t\t// becomes browsing-context connected.\n\t\t\t\t// See https://github.com/whatwg/html/issues/2369\n\t\t\t\t// See https://html.spec.whatwg.org/#nonce-attributes\n\t\t\t\t// The `node.getAttribute` check was added for the sake of\n\t\t\t\t// `jQuery.globalEval` so that it can fake a nonce-containing node\n\t\t\t\t// via an object.\n\t\t\t\tval = node[ i ] || node.getAttribute && node.getAttribute( i );\n\t\t\t\tif ( val ) {\n\t\t\t\t\tscript.setAttribute( i, val );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tdoc.head.appendChild( script ).parentNode.removeChild( script );\n\t}\n\n\nfunction toType( obj ) {\n\tif ( obj == null ) {\n\t\treturn obj + \"\";\n\t}\n\n\t// Support: Android <=2.3 only (functionish RegExp)\n\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\tclass2type[ toString.call( obj ) ] || \"object\" :\n\t\ttypeof obj;\n}\n/* global Symbol */\n// Defining this global in .eslintrc.json would create a danger of using the global\n// unguarded in another place, it seems safer to define global only for this module\n\n\n\nvar\n\tversion = \"3.6.0\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t};\n\njQuery.fn = jQuery.prototype = {\n\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\n\t\t// Return all the elements in a clean array\n\t\tif ( num == null ) {\n\t\t\treturn slice.call( this );\n\t\t}\n\n\t\t// Return just the one element from the set\n\t\treturn num < 0 ? this[ num + this.length ] : this[ num ];\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\teach: function( callback ) {\n\t\treturn jQuery.each( this, callback );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map( this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t} ) );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teven: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn ( i + 1 ) % 2;\n\t\t} ) );\n\t},\n\n\todd: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn i % 2;\n\t\t} ) );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor();\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: arr.sort,\n\tsplice: arr.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[ 0 ] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// Skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !isFunction( target ) ) {\n\t\ttarget = {};\n\t}\n\n\t// Extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\n\t\t// Only deal with non-null/undefined values\n\t\tif ( ( options = arguments[ i ] ) != null ) {\n\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent Object.prototype pollution\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( name === \"__proto__\" || target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject( copy ) ||\n\t\t\t\t\t( copyIsArray = Array.isArray( copy ) ) ) ) {\n\t\t\t\t\tsrc = target[ name ];\n\n\t\t\t\t\t// Ensure proper type for the source value\n\t\t\t\t\tif ( copyIsArray && !Array.isArray( src ) ) {\n\t\t\t\t\t\tclone = [];\n\t\t\t\t\t} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {\n\t\t\t\t\t\tclone = {};\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src;\n\t\t\t\t\t}\n\t\t\t\t\tcopyIsArray = false;\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend( {\n\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\tisPlainObject: function( obj ) {\n\t\tvar proto, Ctor;\n\n\t\t// Detect obvious negatives\n\t\t// Use toString instead of jQuery.type to catch host objects\n\t\tif ( !obj || toString.call( obj ) !== \"[object Object]\" ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tproto = getProto( obj );\n\n\t\t// Objects with no prototype (e.g., `Object.create( null )`) are plain\n\t\tif ( !proto ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Objects with prototype are plain iff they were constructed by a global Object function\n\t\tCtor = hasOwn.call( proto, \"constructor\" ) && proto.constructor;\n\t\treturn typeof Ctor === \"function\" && fnToString.call( Ctor ) === ObjectFunctionString;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\t// Evaluates a script in a provided context; falls back to the global one\n\t// if not specified.\n\tglobalEval: function( code, options, doc ) {\n\t\tDOMEval( code, { nonce: options && options.nonce }, doc );\n\t},\n\n\teach: function( obj, callback ) {\n\t\tvar length, i = 0;\n\n\t\tif ( isArrayLike( obj ) ) {\n\t\t\tlength = obj.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tfor ( i in obj ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArrayLike( Object( arr ) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\treturn arr == null ? -1 : indexOf.call( arr, elem, i );\n\t},\n\n\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t// push.apply(_, arraylike) throws on ancient WebKit\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\tfor ( ; j < len; j++ ) {\n\t\t\tfirst[ i++ ] = second[ j ];\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar length, value,\n\t\t\ti = 0,\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArrayLike( elems ) ) {\n\t\t\tlength = elems.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn flat( ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n} );\n\nif ( typeof Symbol === \"function\" ) {\n\tjQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];\n}\n\n// Populate the class2type map\njQuery.each( \"Boolean Number String Function Array Date RegExp Object Error Symbol\".split( \" \" ),\n\tfunction( _i, name ) {\n\t\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n\t} );\n\nfunction isArrayLike( obj ) {\n\n\t// Support: real iOS 8.2 only (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = !!obj && \"length\" in obj && obj.length,\n\t\ttype = toType( obj );\n\n\tif ( isFunction( obj ) || isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.3.6\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://js.foundation/\n *\n * Date: 2021-02-16\n */\n( function( window ) {\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tnonnativeSelectorCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// Instance methods\n\thasOwn = ( {} ).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpushNative = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\n\t// Use a stripped-down indexOf as it's faster than native\n\t// https://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[ i ] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|\" +\n\t\t\"ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\n\t// https://www.w3.org/TR/css-syntax-3/#ident-token-diagram\n\tidentifier = \"(?:\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace +\n\t\t\"?|\\\\\\\\[^\\\\r\\\\n\\\\f]|[\\\\w-]|[^\\0-\\\\x7f])+\",\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + identifier + \")(?:\" + whitespace +\n\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\n\t\t// \"Attribute values must be CSS identifiers [capture 5]\n\t\t// or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" +\n\t\twhitespace + \"*\\\\]\",\n\n\tpseudos = \":(\" + identifier + \")(?:\\\\((\" +\n\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" +\n\t\twhitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace +\n\t\t\"*\" ),\n\trdescend = new RegExp( whitespace + \"|>\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + identifier + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + identifier + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + identifier + \"|[*])\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" +\n\t\t\twhitespace + \"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" +\n\t\t\twhitespace + \"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace +\n\t\t\t\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" + whitespace +\n\t\t\t\"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trhtml = /HTML$/i,\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\n\t// CSS escapes\n\t// http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace + \"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\", \"g\" ),\n\tfunescape = function( escape, nonHex ) {\n\t\tvar high = \"0x\" + escape.slice( 1 ) - 0x10000;\n\n\t\treturn nonHex ?\n\n\t\t\t// Strip the backslash prefix from a non-hex escape sequence\n\t\t\tnonHex :\n\n\t\t\t// Replace a hexadecimal escape sequence with the encoded Unicode code point\n\t\t\t// Support: IE <=11+\n\t\t\t// For values outside the Basic Multilingual Plane (BMP), manually construct a\n\t\t\t// surrogate pair\n\t\t\thigh < 0 ?\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// CSS string/identifier serialization\n\t// https://drafts.csswg.org/cssom/#common-serializing-idioms\n\trcssescape = /([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,\n\tfcssescape = function( ch, asCodePoint ) {\n\t\tif ( asCodePoint ) {\n\n\t\t\t// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER\n\t\t\tif ( ch === \"\\0\" ) {\n\t\t\t\treturn \"\\uFFFD\";\n\t\t\t}\n\n\t\t\t// Control characters and (dependent upon position) numbers get escaped as code points\n\t\t\treturn ch.slice( 0, -1 ) + \"\\\\\" +\n\t\t\t\tch.charCodeAt( ch.length - 1 ).toString( 16 ) + \" \";\n\t\t}\n\n\t\t// Other potentially-special ASCII characters get backslash-escaped\n\t\treturn \"\\\\\" + ch;\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t},\n\n\tinDisabledFieldset = addCombinator(\n\t\tfunction( elem ) {\n\t\t\treturn elem.disabled === true && elem.nodeName.toLowerCase() === \"fieldset\";\n\t\t},\n\t\t{ dir: \"parentNode\", next: \"legend\" }\n\t);\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t( arr = slice.call( preferredDoc.childNodes ) ),\n\t\tpreferredDoc.childNodes\n\t);\n\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\t// eslint-disable-next-line no-unused-expressions\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpushNative.apply( target, slice.call( els ) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( ( target[ j++ ] = els[ i++ ] ) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar m, i, elem, nid, match, groups, newSelector,\n\t\tnewContext = context && context.ownerDocument,\n\n\t\t// nodeType defaults to 9, since context defaults to document\n\t\tnodeType = context ? context.nodeType : 9;\n\n\tresults = results || [];\n\n\t// Return early from calls with invalid selector or context\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\t// Try to shortcut find operations (as opposed to filters) in HTML documents\n\tif ( !seed ) {\n\t\tsetDocument( context );\n\t\tcontext = context || document;\n\n\t\tif ( documentIsHTML ) {\n\n\t\t\t// If the selector is sufficiently simple, try using a \"get*By*\" DOM method\n\t\t\t// (excepting DocumentFragment context, where the methods don't exist)\n\t\t\tif ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) {\n\n\t\t\t\t// ID selector\n\t\t\t\tif ( ( m = match[ 1 ] ) ) {\n\n\t\t\t\t\t// Document context\n\t\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\t\tif ( ( elem = context.getElementById( m ) ) ) {\n\n\t\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// Element context\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\tif ( newContext && ( elem = newContext.getElementById( m ) ) &&\n\t\t\t\t\t\t\tcontains( context, elem ) &&\n\t\t\t\t\t\t\telem.id === m ) {\n\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t// Type selector\n\t\t\t\t} else if ( match[ 2 ] ) {\n\t\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\t\treturn results;\n\n\t\t\t\t// Class selector\n\t\t\t\t} else if ( ( m = match[ 3 ] ) && support.getElementsByClassName &&\n\t\t\t\t\tcontext.getElementsByClassName ) {\n\n\t\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\t\treturn results;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Take advantage of querySelectorAll\n\t\t\tif ( support.qsa &&\n\t\t\t\t!nonnativeSelectorCache[ selector + \" \" ] &&\n\t\t\t\t( !rbuggyQSA || !rbuggyQSA.test( selector ) ) &&\n\n\t\t\t\t// Support: IE 8 only\n\t\t\t\t// Exclude object elements\n\t\t\t\t( nodeType !== 1 || context.nodeName.toLowerCase() !== \"object\" ) ) {\n\n\t\t\t\tnewSelector = selector;\n\t\t\t\tnewContext = context;\n\n\t\t\t\t// qSA considers elements outside a scoping root when evaluating child or\n\t\t\t\t// descendant combinators, which is not what we want.\n\t\t\t\t// In such cases, we work around the behavior by prefixing every selector in the\n\t\t\t\t// list with an ID selector referencing the scope context.\n\t\t\t\t// The technique has to be used as well when a leading combinator is used\n\t\t\t\t// as such selectors are not recognized by querySelectorAll.\n\t\t\t\t// Thanks to Andrew Dupont for this technique.\n\t\t\t\tif ( nodeType === 1 &&\n\t\t\t\t\t( rdescend.test( selector ) || rcombinators.test( selector ) ) ) {\n\n\t\t\t\t\t// Expand context for sibling selectors\n\t\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext;\n\n\t\t\t\t\t// We can use :scope instead of the ID hack if the browser\n\t\t\t\t\t// supports it & if we're not changing the context.\n\t\t\t\t\tif ( newContext !== context || !support.scope ) {\n\n\t\t\t\t\t\t// Capture the context ID, setting it first if necessary\n\t\t\t\t\t\tif ( ( nid = context.getAttribute( \"id\" ) ) ) {\n\t\t\t\t\t\t\tnid = nid.replace( rcssescape, fcssescape );\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tcontext.setAttribute( \"id\", ( nid = expando ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prefix every selector in the list\n\t\t\t\t\tgroups = tokenize( selector );\n\t\t\t\t\ti = groups.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tgroups[ i ] = ( nid ? \"#\" + nid : \":scope\" ) + \" \" +\n\t\t\t\t\t\t\ttoSelector( groups[ i ] );\n\t\t\t\t\t}\n\t\t\t\t\tnewSelector = groups.join( \",\" );\n\t\t\t\t}\n\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch ( qsaError ) {\n\t\t\t\t\tnonnativeSelectorCache( selector, true );\n\t\t\t\t} finally {\n\t\t\t\t\tif ( nid === expando ) {\n\t\t\t\t\t\tcontext.removeAttribute( \"id\" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {function(string, object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn ( cache[ key + \" \" ] = value );\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created element and returns a boolean result\n */\nfunction assert( fn ) {\n\tvar el = document.createElement( \"fieldset\" );\n\n\ttry {\n\t\treturn !!fn( el );\n\t} catch ( e ) {\n\t\treturn false;\n\t} finally {\n\n\t\t// Remove from its parent by default\n\t\tif ( el.parentNode ) {\n\t\t\tel.parentNode.removeChild( el );\n\t\t}\n\n\t\t// release memory in IE\n\t\tel = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split( \"|\" ),\n\t\ti = arr.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[ i ] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\ta.sourceIndex - b.sourceIndex;\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( ( cur = cur.nextSibling ) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn ( name === \"input\" || name === \"button\" ) && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for :enabled/:disabled\n * @param {Boolean} disabled true for :disabled; false for :enabled\n */\nfunction createDisabledPseudo( disabled ) {\n\n\t// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable\n\treturn function( elem ) {\n\n\t\t// Only certain elements can match :enabled or :disabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled\n\t\tif ( \"form\" in elem ) {\n\n\t\t\t// Check for inherited disabledness on relevant non-disabled elements:\n\t\t\t// * listed form-associated elements in a disabled fieldset\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#category-listed\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled\n\t\t\t// * option elements in a disabled optgroup\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled\n\t\t\t// All such elements have a \"form\" property.\n\t\t\tif ( elem.parentNode && elem.disabled === false ) {\n\n\t\t\t\t// Option elements defer to a parent optgroup if present\n\t\t\t\tif ( \"label\" in elem ) {\n\t\t\t\t\tif ( \"label\" in elem.parentNode ) {\n\t\t\t\t\t\treturn elem.parentNode.disabled === disabled;\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn elem.disabled === disabled;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Support: IE 6 - 11\n\t\t\t\t// Use the isDisabled shortcut property to check for disabled fieldset ancestors\n\t\t\t\treturn elem.isDisabled === disabled ||\n\n\t\t\t\t\t// Where there is no isDisabled, check manually\n\t\t\t\t\t/* jshint -W018 */\n\t\t\t\t\telem.isDisabled !== !disabled &&\n\t\t\t\t\tinDisabledFieldset( elem ) === disabled;\n\t\t\t}\n\n\t\t\treturn elem.disabled === disabled;\n\n\t\t// Try to winnow out elements that can't be disabled before trusting the disabled property.\n\t\t// Some victims get caught in our net (label, legend, menu, track), but it shouldn't\n\t\t// even exist on them, let alone have a boolean value.\n\t\t} else if ( \"label\" in elem ) {\n\t\t\treturn elem.disabled === disabled;\n\t\t}\n\n\t\t// Remaining elements are neither :enabled nor :disabled\n\t\treturn false;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction( function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction( function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ ( j = matchIndexes[ i ] ) ] ) {\n\t\t\t\t\tseed[ j ] = !( matches[ j ] = seed[ j ] );\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t} );\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\tvar namespace = elem && elem.namespaceURI,\n\t\tdocElem = elem && ( elem.ownerDocument || elem ).documentElement;\n\n\t// Support: IE <=8\n\t// Assume HTML when documentElement doesn't yet exist, such as inside loading iframes\n\t// https://bugs.jquery.com/ticket/4833\n\treturn !rhtml.test( namespace || docElem && docElem.nodeName || \"HTML\" );\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, subWindow,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// Return early if doc is invalid or already selected\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Update global variables\n\tdocument = doc;\n\tdocElem = document.documentElement;\n\tdocumentIsHTML = !isXML( document );\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t// Accessing iframe documents after unload throws \"permission denied\" errors (jQuery #13936)\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( preferredDoc != document &&\n\t\t( subWindow = document.defaultView ) && subWindow.top !== subWindow ) {\n\n\t\t// Support: IE 11, Edge\n\t\tif ( subWindow.addEventListener ) {\n\t\t\tsubWindow.addEventListener( \"unload\", unloadHandler, false );\n\n\t\t// Support: IE 9 - 10 only\n\t\t} else if ( subWindow.attachEvent ) {\n\t\t\tsubWindow.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t// Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only,\n\t// Safari 4 - 5 only, Opera <=11.6 - 12.x only\n\t// IE/Edge & older browsers don't support the :scope pseudo-class.\n\t// Support: Safari 6.0 only\n\t// Safari 6.0 supports :scope but it's an alias of :root there.\n\tsupport.scope = assert( function( el ) {\n\t\tdocElem.appendChild( el ).appendChild( document.createElement( \"div\" ) );\n\t\treturn typeof el.querySelectorAll !== \"undefined\" &&\n\t\t\t!el.querySelectorAll( \":scope fieldset div\" ).length;\n\t} );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert( function( el ) {\n\t\tel.className = \"i\";\n\t\treturn !el.getAttribute( \"className\" );\n\t} );\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert( function( el ) {\n\t\tel.appendChild( document.createComment( \"\" ) );\n\t\treturn !el.getElementsByTagName( \"*\" ).length;\n\t} );\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( document.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programmatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert( function( el ) {\n\t\tdocElem.appendChild( el ).id = expando;\n\t\treturn !document.getElementsByName || !document.getElementsByName( expando ).length;\n\t} );\n\n\t// ID filter and find\n\tif ( support.getById ) {\n\t\tExpr.filter[ \"ID\" ] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute( \"id\" ) === attrId;\n\t\t\t};\n\t\t};\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar elem = context.getElementById( id );\n\t\t\t\treturn elem ? [ elem ] : [];\n\t\t\t}\n\t\t};\n\t} else {\n\t\tExpr.filter[ \"ID\" ] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" &&\n\t\t\t\t\telem.getAttributeNode( \"id\" );\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\n\t\t// Support: IE 6 - 7 only\n\t\t// getElementById is not reliable as a find shortcut\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar node, i, elems,\n\t\t\t\t\telem = context.getElementById( id );\n\n\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t// Verify the id attribute\n\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t}\n\n\t\t\t\t\t// Fall back on getElementsByName\n\t\t\t\t\telems = context.getElementsByName( id );\n\t\t\t\t\ti = 0;\n\t\t\t\t\twhile ( ( elem = elems[ i++ ] ) ) {\n\t\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn [];\n\t\t\t}\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[ \"TAG\" ] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[ \"CLASS\" ] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See https://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) {\n\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert( function( el ) {\n\n\t\t\tvar input;\n\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// https://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( el ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\r\\\\' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( el.querySelectorAll( \"[msallowcapture^='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !el.querySelectorAll( \"[selected]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+\n\t\t\tif ( !el.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"~=\" );\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 15 - 18+\n\t\t\t// IE 11/Edge don't find elements on a `[name='']` query in some cases.\n\t\t\t// Adding a temporary attribute to the document before the selection works\n\t\t\t// around the issue.\n\t\t\t// Interestingly, IE 10 & older don't seem to have the issue.\n\t\t\tinput = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"name\", \"\" );\n\t\t\tel.appendChild( input );\n\t\t\tif ( !el.querySelectorAll( \"[name='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*name\" + whitespace + \"*=\" +\n\t\t\t\t\twhitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !el.querySelectorAll( \":checked\" ).length ) {\n\t\t\t\trbuggyQSA.push( \":checked\" );\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibling-combinator selector` fails\n\t\t\tif ( !el.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push( \".#.+[+~]\" );\n\t\t\t}\n\n\t\t\t// Support: Firefox <=3.6 - 5 only\n\t\t\t// Old Firefox doesn't throw on a badly-escaped identifier.\n\t\t\tel.querySelectorAll( \"\\\\\\f\" );\n\t\t\trbuggyQSA.push( \"[\\\\r\\\\n\\\\f]\" );\n\t\t} );\n\n\t\tassert( function( el ) {\n\t\t\tel.innerHTML = \"<a href='' disabled='disabled'></a>\" +\n\t\t\t\t\"<select disabled='disabled'><option/></select>\";\n\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tel.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( el.querySelectorAll( \"[name=d]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( el.querySelectorAll( \":enabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: IE9-11+\n\t\t\t// IE's :disabled selector does not pick up the children of disabled fieldsets\n\t\t\tdocElem.appendChild( el ).disabled = true;\n\t\t\tif ( el.querySelectorAll( \":disabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: Opera 10 - 11 only\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tel.querySelectorAll( \"*,:x\" );\n\t\t\trbuggyQSA.push( \",.*:\" );\n\t\t} );\n\t}\n\n\tif ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector ) ) ) ) {\n\n\t\tassert( function( el ) {\n\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( el, \"*\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( el, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t} );\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( \"|\" ) );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( \"|\" ) );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully self-exclusive\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t) );\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( ( b = b.parentNode ) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t// two documents; shallow comparisons work.\n\t\t// eslint-disable-next-line eqeqeq\n\t\tcompare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( a == document || a.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, a ) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( b == document || b.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, b ) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\treturn a == document ? -1 :\n\t\t\t\tb == document ? 1 :\n\t\t\t\t/* eslint-enable eqeqeq */\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[ i ] === bp[ i ] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[ i ], bp[ i ] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\tap[ i ] == preferredDoc ? -1 :\n\t\t\tbp[ i ] == preferredDoc ? 1 :\n\t\t\t/* eslint-enable eqeqeq */\n\t\t\t0;\n\t};\n\n\treturn document;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\tsetDocument( elem );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t!nonnativeSelectorCache[ expr + \" \" ] &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\n\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t// fragment in IE 9\n\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\tnonnativeSelectorCache( expr, true );\n\t\t}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( context.ownerDocument || context ) != document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( elem.ownerDocument || elem ) != document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.escape = function( sel ) {\n\treturn ( sel + \"\" ).replace( rcssescape, fcssescape );\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( ( node = elem[ i++ ] ) ) {\n\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[ 1 ] = match[ 1 ].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[ 3 ] = ( match[ 3 ] || match[ 4 ] ||\n\t\t\t\tmatch[ 5 ] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[ 2 ] === \"~=\" ) {\n\t\t\t\tmatch[ 3 ] = \" \" + match[ 3 ] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[ 1 ] = match[ 1 ].toLowerCase();\n\n\t\t\tif ( match[ 1 ].slice( 0, 3 ) === \"nth\" ) {\n\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[ 3 ] ) {\n\t\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[ 4 ] = +( match[ 4 ] ?\n\t\t\t\t\tmatch[ 5 ] + ( match[ 6 ] || 1 ) :\n\t\t\t\t\t2 * ( match[ 3 ] === \"even\" || match[ 3 ] === \"odd\" ) );\n\t\t\t\tmatch[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === \"odd\" );\n\n\t\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[ 3 ] ) {\n\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[ 6 ] && match[ 2 ];\n\n\t\t\tif ( matchExpr[ \"CHILD\" ].test( match[ 0 ] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[ 3 ] ) {\n\t\t\t\tmatch[ 2 ] = match[ 4 ] || match[ 5 ] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t( excess = tokenize( unquoted, true ) ) &&\n\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t( excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length ) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[ 0 ] = match[ 0 ].slice( 0, excess );\n\t\t\t\tmatch[ 2 ] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() {\n\t\t\t\t\treturn true;\n\t\t\t\t} :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t( pattern = new RegExp( \"(^|\" + whitespace +\n\t\t\t\t\t\")\" + className + \"(\" + whitespace + \"|$)\" ) ) && classCache(\n\t\t\t\t\t\tclassName, function( elem ) {\n\t\t\t\t\t\t\treturn pattern.test(\n\t\t\t\t\t\t\t\ttypeof elem.className === \"string\" && elem.className ||\n\t\t\t\t\t\t\t\ttypeof elem.getAttribute !== \"undefined\" &&\n\t\t\t\t\t\t\t\t\telem.getAttribute( \"class\" ) ||\n\t\t\t\t\t\t\t\t\"\"\n\t\t\t\t\t\t\t);\n\t\t\t\t} );\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\t/* eslint-disable max-len */\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t\t/* eslint-enable max-len */\n\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, _argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tvar cache, uniqueCache, outerCache, node, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType,\n\t\t\t\t\t\tdiff = false;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( ( node = node[ dir ] ) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) {\n\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\n\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\tnode = parent;\n\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\tdiff = nodeIndex && cache[ 2 ];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t\tif ( useCache ) {\n\n\t\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\t\tdiff = nodeIndex;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// xml :nth-child(...)\n\t\t\t\t\t\t\t// or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t\tif ( diff === false ) {\n\n\t\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t\tif ( ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) &&\n\t\t\t\t\t\t\t\t\t\t++diff ) {\n\n\t\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t\touterCache = node[ expando ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction( function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[ i ] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[ i ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t} ) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction( function( selector ) {\n\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction( function( seed, matches, _context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\t\t\t\t\tseed[ i ] = !( matches[ i ] = elem );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} ) :\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tinput[ 0 ] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[ 0 ] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t} ),\n\n\t\t\"has\": markFunction( function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t} ),\n\n\t\t\"contains\": markFunction( function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t} ),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test( lang || \"\" ) ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( ( elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute( \"xml:lang\" ) || elem.getAttribute( \"lang\" ) ) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( ( elem = elem.parentNode ) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t} ),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement &&\n\t\t\t\t( !document.hasFocus || document.hasFocus() ) &&\n\t\t\t\t!!( elem.type || elem.href || ~elem.tabIndex );\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": createDisabledPseudo( false ),\n\t\t\"disabled\": createDisabledPseudo( true ),\n\n\t\t\"checked\": function( elem ) {\n\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn ( nodeName === \"input\" && !!elem.checked ) ||\n\t\t\t\t( nodeName === \"option\" && !!elem.selected );\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\t// eslint-disable-next-line no-unused-expressions\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[ \"empty\" ]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( ( attr = elem.getAttribute( \"type\" ) ) == null ||\n\t\t\t\t\tattr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo( function() {\n\t\t\treturn [ 0 ];\n\t\t} ),\n\n\t\t\"last\": createPositionalPseudo( function( _matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t} ),\n\n\t\t\"eq\": createPositionalPseudo( function( _matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t} ),\n\n\t\t\"even\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"odd\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"lt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ?\n\t\t\t\targument + length :\n\t\t\t\targument > length ?\n\t\t\t\t\tlength :\n\t\t\t\t\targument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"gt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} )\n\t}\n};\n\nExpr.pseudos[ \"nth\" ] = Expr.pseudos[ \"eq\" ];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || ( match = rcomma.exec( soFar ) ) ) {\n\t\t\tif ( match ) {\n\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[ 0 ].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( ( tokens = [] ) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( ( match = rcombinators.exec( soFar ) ) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push( {\n\t\t\t\tvalue: matched,\n\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[ 0 ].replace( rtrim, \" \" )\n\t\t\t} );\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] ||\n\t\t\t\t( match = preFilters[ type ]( match ) ) ) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push( {\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t} );\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[ i ].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tskip = combinator.next,\n\t\tkey = skip || dir,\n\t\tcheckNonElements = base && key === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, uniqueCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || ( elem[ expando ] = {} );\n\n\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\tuniqueCache = outerCache[ elem.uniqueID ] ||\n\t\t\t\t\t\t\t( outerCache[ elem.uniqueID ] = {} );\n\n\t\t\t\t\t\tif ( skip && skip === elem.nodeName.toLowerCase() ) {\n\t\t\t\t\t\t\telem = elem[ dir ] || elem;\n\t\t\t\t\t\t} else if ( ( oldCache = uniqueCache[ key ] ) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn ( newCache[ 2 ] = oldCache[ 2 ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\tuniqueCache[ key ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[ i ]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[ 0 ];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[ i ], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction( function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts(\n\t\t\t\tselector || \"*\",\n\t\t\t\tcontext.nodeType ? [ context ] : context,\n\t\t\t\t[]\n\t\t\t),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( ( elem = temp[ i ] ) ) {\n\t\t\t\t\tmatcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) ) {\n\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( ( matcherIn[ i ] = elem ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, ( matcherOut = [] ), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) &&\n\t\t\t\t\t\t( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) {\n\n\t\t\t\t\t\tseed[ temp ] = !( results[ temp ] = elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t} );\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[ 0 ].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[ \" \" ],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t( checkContext = context ).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) {\n\t\t\tmatchers = [ addCombinator( elementMatcher( matchers ), matcher ) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[ j ].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\n\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\ttokens\n\t\t\t\t\t\t.slice( 0, i - 1 )\n\t\t\t\t\t\t.concat( { value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" } )\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[ \"TAG\" ]( \"*\", outermost ),\n\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\n\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\toutermostContext = context == document || context || outermost;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\n\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\tif ( !context && elem.ownerDocument != document ) {\n\t\t\t\t\t\tsetDocument( elem );\n\t\t\t\t\t\txml = !documentIsHTML;\n\t\t\t\t\t}\n\t\t\t\t\twhile ( ( matcher = elementMatchers[ j++ ] ) ) {\n\t\t\t\t\t\tif ( matcher( elem, context || document, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( ( elem = !matcher && elem ) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// `i` is now the count of elements visited above, and adding it to `matchedCount`\n\t\t\t// makes the latter nonnegative.\n\t\t\tmatchedCount += i;\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\t// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n\t\t\t// equals `i`), unless we didn't visit _any_ elements in the above loop because we have\n\t\t\t// no element matchers and no seed.\n\t\t\t// Incrementing an initially-string \"0\" `i` allows `i` to remain a string only in that\n\t\t\t// case, which will result in a \"00\" `matchedCount` that differs from `i` but is also\n\t\t\t// numerically zero.\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( ( matcher = setMatchers[ j++ ] ) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !( unmatched[ i ] || setMatched[ i ] ) ) {\n\t\t\t\t\t\t\t\tsetMatched[ i ] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[ i ] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache(\n\t\t\tselector,\n\t\t\tmatcherFromGroupMatchers( elementMatchers, setMatchers )\n\t\t);\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( ( selector = compiled.selector || selector ) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is only one selector in the list and no seed\n\t// (the latter of which guarantees us context)\n\tif ( match.length === 1 ) {\n\n\t\t// Reduce context if the leading compound selector is an ID\n\t\ttokens = match[ 0 ] = match[ 0 ].slice( 0 );\n\t\tif ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === \"ID\" &&\n\t\t\tcontext.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) {\n\n\t\t\tcontext = ( Expr.find[ \"ID\" ]( token.matches[ 0 ]\n\t\t\t\t.replace( runescape, funescape ), context ) || [] )[ 0 ];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[ \"needsContext\" ].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[ i ];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ ( type = token.type ) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( ( find = Expr.find[ type ] ) ) {\n\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( ( seed = find(\n\t\t\t\t\ttoken.matches[ 0 ].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext\n\t\t\t\t) ) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\t!context || rsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split( \"\" ).sort( sortOrder ).join( \"\" ) === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert( function( el ) {\n\n\t// Should return 1, but returns 4 (following)\n\treturn el.compareDocumentPosition( document.createElement( \"fieldset\" ) ) & 1;\n} );\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert( function( el ) {\n\tel.innerHTML = \"<a href='#'></a>\";\n\treturn el.firstChild.getAttribute( \"href\" ) === \"#\";\n} ) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert( function( el ) {\n\tel.innerHTML = \"<input/>\";\n\tel.firstChild.setAttribute( \"value\", \"\" );\n\treturn el.firstChild.getAttribute( \"value\" ) === \"\";\n} ) ) {\n\taddHandle( \"value\", function( elem, _name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert( function( el ) {\n\treturn el.getAttribute( \"disabled\" ) == null;\n} ) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\t\tnull;\n\t\t}\n\t} );\n}\n\nreturn Sizzle;\n\n} )( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\n\n// Deprecated\njQuery.expr[ \":\" ] = jQuery.expr.pseudos;\njQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\njQuery.escapeSelector = Sizzle.escape;\n\n\n\n\nvar dir = function( elem, dir, until ) {\n\tvar matched = [],\n\t\ttruncate = until !== undefined;\n\n\twhile ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {\n\t\tif ( elem.nodeType === 1 ) {\n\t\t\tif ( truncate && jQuery( elem ).is( until ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tmatched.push( elem );\n\t\t}\n\t}\n\treturn matched;\n};\n\n\nvar siblings = function( n, elem ) {\n\tvar matched = [];\n\n\tfor ( ; n; n = n.nextSibling ) {\n\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\tmatched.push( n );\n\t\t}\n\t}\n\n\treturn matched;\n};\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\n\n\nfunction nodeName( elem, name ) {\n\n\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\n}\nvar rsingleTag = ( /^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i );\n\n\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t} );\n\t}\n\n\t// Single element\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t} );\n\t}\n\n\t// Arraylike of elements (jQuery, arguments, Array)\n\tif ( typeof qualifier !== \"string\" ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( indexOf.call( qualifier, elem ) > -1 ) !== not;\n\t\t} );\n\t}\n\n\t// Filtered directly for both simple and complex selectors\n\treturn jQuery.filter( qualifier, elements, not );\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\tif ( elems.length === 1 && elem.nodeType === 1 ) {\n\t\treturn jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];\n\t}\n\n\treturn jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\treturn elem.nodeType === 1;\n\t} ) );\n};\n\njQuery.fn.extend( {\n\tfind: function( selector ) {\n\t\tvar i, ret,\n\t\t\tlen = this.length,\n\t\t\tself = this;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter( function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} ) );\n\t\t}\n\n\t\tret = this.pushStack( [] );\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\treturn len > 1 ? jQuery.uniqueSort( ret ) : ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], false ) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], true ) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n} );\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\t// Shortcut simple #id case for speed\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/,\n\n\tinit = jQuery.fn.init = function( selector, context, root ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Method init() accepts an alternate rootjQuery\n\t\t// so migrate can support jQuery.sub (gh-2101)\n\t\troot = root || rootjQuery;\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector[ 0 ] === \"<\" &&\n\t\t\t\tselector[ selector.length - 1 ] === \">\" &&\n\t\t\t\tselector.length >= 3 ) {\n\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && ( match[ 1 ] || !context ) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[ 1 ] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[ 0 ] : context;\n\n\t\t\t\t\t// Option to run scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[ 1 ],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[ 2 ] );\n\n\t\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t\t// Inject the element directly into the jQuery object\n\t\t\t\t\t\tthis[ 0 ] = elem;\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || root ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis[ 0 ] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( isFunction( selector ) ) {\n\t\t\treturn root.ready !== undefined ?\n\t\t\t\troot.ready( selector ) :\n\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\n\t// Methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend( {\n\thas: function( target ) {\n\t\tvar targets = jQuery( target, this ),\n\t\t\tl = targets.length;\n\n\t\treturn this.filter( function() {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[ i ] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\ttargets = typeof selectors !== \"string\" && jQuery( selectors );\n\n\t\t// Positional selectors never match, since there's no _selection_ context\n\t\tif ( !rneedsContext.test( selectors ) ) {\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tfor ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {\n\n\t\t\t\t\t// Always skip document fragments\n\t\t\t\t\tif ( cur.nodeType < 11 && ( targets ?\n\t\t\t\t\t\ttargets.index( cur ) > -1 :\n\n\t\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\t\tjQuery.find.matchesSelector( cur, selectors ) ) ) {\n\n\t\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within the set\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// Index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn indexOf.call( jQuery( elem ), this[ 0 ] );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn indexOf.call( this,\n\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[ 0 ] : elem\n\t\t);\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.uniqueSort(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t}\n} );\n\nfunction sibling( cur, dir ) {\n\twhile ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}\n\treturn cur;\n}\n\njQuery.each( {\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn siblings( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn siblings( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\tif ( elem.contentDocument != null &&\n\n\t\t\t// Support: IE 11+\n\t\t\t// <object> elements with no `data` attribute has an object\n\t\t\t// `contentDocument` with a `null` prototype.\n\t\t\tgetProto( elem.contentDocument ) ) {\n\n\t\t\treturn elem.contentDocument;\n\t\t}\n\n\t\t// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only\n\t\t// Treat the template element as a regular one in browsers that\n\t\t// don't support it.\n\t\tif ( nodeName( elem, \"template\" ) ) {\n\t\t\telem = elem.content || elem;\n\t\t}\n\n\t\treturn jQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar matched = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tmatched = jQuery.filter( selector, matched );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tjQuery.uniqueSort( matched );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tmatched.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched );\n\t};\n} );\nvar rnothtmlwhite = ( /[^\\x20\\t\\r\\n\\f]+/g );\n\n\n\n// Convert String-formatted options into Object-formatted ones\nfunction createOptions( options ) {\n\tvar object = {};\n\tjQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t} );\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\tcreateOptions( options ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\n\t\t// Last fire value for non-forgettable lists\n\t\tmemory,\n\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\n\t\t// Flag to prevent firing\n\t\tlocked,\n\n\t\t// Actual callback list\n\t\tlist = [],\n\n\t\t// Queue of execution data for repeatable lists\n\t\tqueue = [],\n\n\t\t// Index of currently firing callback (modified by add/remove as needed)\n\t\tfiringIndex = -1,\n\n\t\t// Fire callbacks\n\t\tfire = function() {\n\n\t\t\t// Enforce single-firing\n\t\t\tlocked = locked || options.once;\n\n\t\t\t// Execute callbacks for all pending executions,\n\t\t\t// respecting firingIndex overrides and runtime changes\n\t\t\tfired = firing = true;\n\t\t\tfor ( ; queue.length; firingIndex = -1 ) {\n\t\t\t\tmemory = queue.shift();\n\t\t\t\twhile ( ++firingIndex < list.length ) {\n\n\t\t\t\t\t// Run callback and check for early termination\n\t\t\t\t\tif ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&\n\t\t\t\t\t\toptions.stopOnFalse ) {\n\n\t\t\t\t\t\t// Jump to end and forget the data so .add doesn't re-fire\n\t\t\t\t\t\tfiringIndex = list.length;\n\t\t\t\t\t\tmemory = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Forget the data if we're done with it\n\t\t\tif ( !options.memory ) {\n\t\t\t\tmemory = false;\n\t\t\t}\n\n\t\t\tfiring = false;\n\n\t\t\t// Clean up if we're done firing for good\n\t\t\tif ( locked ) {\n\n\t\t\t\t// Keep an empty list if we have data for future add calls\n\t\t\t\tif ( memory ) {\n\t\t\t\t\tlist = [];\n\n\t\t\t\t// Otherwise, this object is spent\n\t\t\t\t} else {\n\t\t\t\t\tlist = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t// Actual Callbacks object\n\t\tself = {\n\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\n\t\t\t\t\t// If we have memory from a past run, we should fire after adding\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfiringIndex = list.length - 1;\n\t\t\t\t\t\tqueue.push( memory );\n\t\t\t\t\t}\n\n\t\t\t\t\t( function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tif ( isFunction( arg ) ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && toType( arg ) !== \"string\" ) {\n\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t} )( arguments );\n\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\tvar index;\n\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\tlist.splice( index, 1 );\n\n\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ?\n\t\t\t\t\tjQuery.inArray( fn, list ) > -1 :\n\t\t\t\t\tlist.length > 0;\n\t\t\t},\n\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Disable .fire and .add\n\t\t\t// Abort any current/pending executions\n\t\t\t// Clear all callbacks and values\n\t\t\tdisable: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tlist = memory = \"\";\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\n\t\t\t// Disable .fire\n\t\t\t// Also disable .add unless we have memory (since it would have no effect)\n\t\t\t// Abort any pending executions\n\t\t\tlock: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tif ( !memory && !firing ) {\n\t\t\t\t\tlist = memory = \"\";\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tlocked: function() {\n\t\t\t\treturn !!locked;\n\t\t\t},\n\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( !locked ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tqueue.push( args );\n\t\t\t\t\tif ( !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\nfunction Identity( v ) {\n\treturn v;\n}\nfunction Thrower( ex ) {\n\tthrow ex;\n}\n\nfunction adoptValue( value, resolve, reject, noValue ) {\n\tvar method;\n\n\ttry {\n\n\t\t// Check for promise aspect first to privilege synchronous behavior\n\t\tif ( value && isFunction( ( method = value.promise ) ) ) {\n\t\t\tmethod.call( value ).done( resolve ).fail( reject );\n\n\t\t// Other thenables\n\t\t} else if ( value && isFunction( ( method = value.then ) ) ) {\n\t\t\tmethod.call( value, resolve, reject );\n\n\t\t// Other non-thenables\n\t\t} else {\n\n\t\t\t// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:\n\t\t\t// * false: [ value ].slice( 0 ) => resolve( value )\n\t\t\t// * true: [ value ].slice( 1 ) => resolve()\n\t\t\tresolve.apply( undefined, [ value ].slice( noValue ) );\n\t\t}\n\n\t// For Promises/A+, convert exceptions into rejections\n\t// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in\n\t// Deferred#then to conditionally suppress rejection.\n\t} catch ( value ) {\n\n\t\t// Support: Android 4.0 only\n\t\t// Strict mode functions invoked without .call/.apply get global-object context\n\t\treject.apply( undefined, [ value ] );\n\t}\n}\n\njQuery.extend( {\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\n\t\t\t\t// action, add listener, callbacks,\n\t\t\t\t// ... .then handlers, argument index, [final state]\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks( \"memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"memory\" ), 2 ],\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 0, \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 1, \"rejected\" ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\t\"catch\": function( fn ) {\n\t\t\t\t\treturn promise.then( null, fn );\n\t\t\t\t},\n\n\t\t\t\t// Keep pipe for back-compat\n\t\t\t\tpipe: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( _i, tuple ) {\n\n\t\t\t\t\t\t\t// Map tuples (progress, done, fail) to arguments (done, fail, progress)\n\t\t\t\t\t\t\tvar fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];\n\n\t\t\t\t\t\t\t// deferred.progress(function() { bind to newDefer or newDefer.notify })\n\t\t\t\t\t\t\t// deferred.done(function() { bind to newDefer or newDefer.resolve })\n\t\t\t\t\t\t\t// deferred.fail(function() { bind to newDefer or newDefer.reject })\n\t\t\t\t\t\t\tdeferred[ tuple[ 1 ] ]( function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify )\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ](\n\t\t\t\t\t\t\t\t\t\tthis,\n\t\t\t\t\t\t\t\t\t\tfn ? [ returned ] : arguments\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t} );\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\t\t\t\tthen: function( onFulfilled, onRejected, onProgress ) {\n\t\t\t\t\tvar maxDepth = 0;\n\t\t\t\t\tfunction resolve( depth, deferred, handler, special ) {\n\t\t\t\t\t\treturn function() {\n\t\t\t\t\t\t\tvar that = this,\n\t\t\t\t\t\t\t\targs = arguments,\n\t\t\t\t\t\t\t\tmightThrow = function() {\n\t\t\t\t\t\t\t\t\tvar returned, then;\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.3\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-59\n\t\t\t\t\t\t\t\t\t// Ignore double-resolution attempts\n\t\t\t\t\t\t\t\t\tif ( depth < maxDepth ) {\n\t\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\treturned = handler.apply( that, args );\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.1\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-48\n\t\t\t\t\t\t\t\t\tif ( returned === deferred.promise() ) {\n\t\t\t\t\t\t\t\t\t\tthrow new TypeError( \"Thenable self-resolution\" );\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ sections 2.3.3.1, 3.5\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-54\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-75\n\t\t\t\t\t\t\t\t\t// Retrieve `then` only once\n\t\t\t\t\t\t\t\t\tthen = returned &&\n\n\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.4\n\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-64\n\t\t\t\t\t\t\t\t\t\t// Only check objects and functions for thenability\n\t\t\t\t\t\t\t\t\t\t( typeof returned === \"object\" ||\n\t\t\t\t\t\t\t\t\t\t\ttypeof returned === \"function\" ) &&\n\t\t\t\t\t\t\t\t\t\treturned.then;\n\n\t\t\t\t\t\t\t\t\t// Handle a returned thenable\n\t\t\t\t\t\t\t\t\tif ( isFunction( then ) ) {\n\n\t\t\t\t\t\t\t\t\t\t// Special processors (notify) just wait for resolution\n\t\t\t\t\t\t\t\t\t\tif ( special ) {\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special )\n\t\t\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\t\t// Normal processors (resolve) also hook into progress\n\t\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t\t// ...and disregard older resolution values\n\t\t\t\t\t\t\t\t\t\t\tmaxDepth++;\n\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdeferred.notifyWith )\n\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Handle all other returned values\n\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\tif ( handler !== Identity ) {\n\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\targs = [ returned ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t// Process the value(s)\n\t\t\t\t\t\t\t\t\t\t// Default process is resolve\n\t\t\t\t\t\t\t\t\t\t( special || deferred.resolveWith )( that, args );\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},\n\n\t\t\t\t\t\t\t\t// Only normal processors (resolve) catch and reject exceptions\n\t\t\t\t\t\t\t\tprocess = special ?\n\t\t\t\t\t\t\t\t\tmightThrow :\n\t\t\t\t\t\t\t\t\tfunction() {\n\t\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\t\tmightThrow();\n\t\t\t\t\t\t\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t\t\t\t\t\t\tif ( jQuery.Deferred.exceptionHook ) {\n\t\t\t\t\t\t\t\t\t\t\t\tjQuery.Deferred.exceptionHook( e,\n\t\t\t\t\t\t\t\t\t\t\t\t\tprocess.stackTrace );\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.4.1\n\t\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-61\n\t\t\t\t\t\t\t\t\t\t\t// Ignore post-resolution exceptions\n\t\t\t\t\t\t\t\t\t\t\tif ( depth + 1 >= maxDepth ) {\n\n\t\t\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\t\t\tif ( handler !== Thrower ) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\t\t\targs = [ e ];\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tdeferred.rejectWith( that, args );\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t};\n\n\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.1\n\t\t\t\t\t\t\t// https://promisesaplus.com/#point-57\n\t\t\t\t\t\t\t// Re-resolve promises immediately to dodge false rejection from\n\t\t\t\t\t\t\t// subsequent errors\n\t\t\t\t\t\t\tif ( depth ) {\n\t\t\t\t\t\t\t\tprocess();\n\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t// Call an optional hook to record the stack, in case of exception\n\t\t\t\t\t\t\t\t// since it's otherwise lost when execution goes async\n\t\t\t\t\t\t\t\tif ( jQuery.Deferred.getStackHook ) {\n\t\t\t\t\t\t\t\t\tprocess.stackTrace = jQuery.Deferred.getStackHook();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\twindow.setTimeout( process );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\n\t\t\t\t\t\t// progress_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 0 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onProgress ) ?\n\t\t\t\t\t\t\t\t\tonProgress :\n\t\t\t\t\t\t\t\t\tIdentity,\n\t\t\t\t\t\t\t\tnewDefer.notifyWith\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// fulfilled_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 1 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onFulfilled ) ?\n\t\t\t\t\t\t\t\t\tonFulfilled :\n\t\t\t\t\t\t\t\t\tIdentity\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// rejected_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 2 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onRejected ) ?\n\t\t\t\t\t\t\t\t\tonRejected :\n\t\t\t\t\t\t\t\t\tThrower\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 5 ];\n\n\t\t\t// promise.progress = list.add\n\t\t\t// promise.done = list.add\n\t\t\t// promise.fail = list.add\n\t\t\tpromise[ tuple[ 1 ] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(\n\t\t\t\t\tfunction() {\n\n\t\t\t\t\t\t// state = \"resolved\" (i.e., fulfilled)\n\t\t\t\t\t\t// state = \"rejected\"\n\t\t\t\t\t\tstate = stateString;\n\t\t\t\t\t},\n\n\t\t\t\t\t// rejected_callbacks.disable\n\t\t\t\t\t// fulfilled_callbacks.disable\n\t\t\t\t\ttuples[ 3 - i ][ 2 ].disable,\n\n\t\t\t\t\t// rejected_handlers.disable\n\t\t\t\t\t// fulfilled_handlers.disable\n\t\t\t\t\ttuples[ 3 - i ][ 3 ].disable,\n\n\t\t\t\t\t// progress_callbacks.lock\n\t\t\t\t\ttuples[ 0 ][ 2 ].lock,\n\n\t\t\t\t\t// progress_handlers.lock\n\t\t\t\t\ttuples[ 0 ][ 3 ].lock\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// progress_handlers.fire\n\t\t\t// fulfilled_handlers.fire\n\t\t\t// rejected_handlers.fire\n\t\t\tlist.add( tuple[ 3 ].fire );\n\n\t\t\t// deferred.notify = function() { deferred.notifyWith(...) }\n\t\t\t// deferred.resolve = function() { deferred.resolveWith(...) }\n\t\t\t// deferred.reject = function() { deferred.rejectWith(...) }\n\t\t\tdeferred[ tuple[ 0 ] ] = function() {\n\t\t\t\tdeferred[ tuple[ 0 ] + \"With\" ]( this === deferred ? undefined : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\n\t\t\t// deferred.notifyWith = list.fireWith\n\t\t\t// deferred.resolveWith = list.fireWith\n\t\t\t// deferred.rejectWith = list.fireWith\n\t\t\tdeferred[ tuple[ 0 ] + \"With\" ] = list.fireWith;\n\t\t} );\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( singleValue ) {\n\t\tvar\n\n\t\t\t// count of uncompleted subordinates\n\t\t\tremaining = arguments.length,\n\n\t\t\t// count of unprocessed arguments\n\t\t\ti = remaining,\n\n\t\t\t// subordinate fulfillment data\n\t\t\tresolveContexts = Array( i ),\n\t\t\tresolveValues = slice.call( arguments ),\n\n\t\t\t// the primary Deferred\n\t\t\tprimary = jQuery.Deferred(),\n\n\t\t\t// subordinate callback factory\n\t\t\tupdateFunc = function( i ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tresolveContexts[ i ] = this;\n\t\t\t\t\tresolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( !( --remaining ) ) {\n\t\t\t\t\t\tprimary.resolveWith( resolveContexts, resolveValues );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t};\n\n\t\t// Single- and empty arguments are adopted like Promise.resolve\n\t\tif ( remaining <= 1 ) {\n\t\t\tadoptValue( singleValue, primary.done( updateFunc( i ) ).resolve, primary.reject,\n\t\t\t\t!remaining );\n\n\t\t\t// Use .then() to unwrap secondary thenables (cf. gh-3000)\n\t\t\tif ( primary.state() === \"pending\" ||\n\t\t\t\tisFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {\n\n\t\t\t\treturn primary.then();\n\t\t\t}\n\t\t}\n\n\t\t// Multiple arguments are aggregated like Promise.all array elements\n\t\twhile ( i-- ) {\n\t\t\tadoptValue( resolveValues[ i ], updateFunc( i ), primary.reject );\n\t\t}\n\n\t\treturn primary.promise();\n\t}\n} );\n\n\n// These usually indicate a programmer mistake during development,\n// warn about them ASAP rather than swallowing them by default.\nvar rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;\n\njQuery.Deferred.exceptionHook = function( error, stack ) {\n\n\t// Support: IE 8 - 9 only\n\t// Console exists when dev tools are open, which can happen at any time\n\tif ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {\n\t\twindow.console.warn( \"jQuery.Deferred exception: \" + error.message, error.stack, stack );\n\t}\n};\n\n\n\n\njQuery.readyException = function( error ) {\n\twindow.setTimeout( function() {\n\t\tthrow error;\n\t} );\n};\n\n\n\n\n// The deferred used on DOM ready\nvar readyList = jQuery.Deferred();\n\njQuery.fn.ready = function( fn ) {\n\n\treadyList\n\t\t.then( fn )\n\n\t\t// Wrap jQuery.readyException in a function so that the lookup\n\t\t// happens at the time of error handling instead of callback\n\t\t// registration.\n\t\t.catch( function( error ) {\n\t\t\tjQuery.readyException( error );\n\t\t} );\n\n\treturn this;\n};\n\njQuery.extend( {\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\t}\n} );\n\njQuery.ready.then = readyList.then;\n\n// The ready event handler and self cleanup method\nfunction completed() {\n\tdocument.removeEventListener( \"DOMContentLoaded\", completed );\n\twindow.removeEventListener( \"load\", completed );\n\tjQuery.ready();\n}\n\n// Catch cases where $(document).ready() is called\n// after the browser event has already occurred.\n// Support: IE <=9 - 10 only\n// Older IE sometimes signals \"interactive\" too soon\nif ( document.readyState === \"complete\" ||\n\t( document.readyState !== \"loading\" && !document.documentElement.doScroll ) ) {\n\n\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\twindow.setTimeout( jQuery.ready );\n\n} else {\n\n\t// Use the handy event callback\n\tdocument.addEventListener( \"DOMContentLoaded\", completed );\n\n\t// A fallback to window.onload, that will always work\n\twindow.addEventListener( \"load\", completed );\n}\n\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlen = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( toType( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\taccess( elems, fn, i, key[ i ], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, _key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\tfn(\n\t\t\t\t\telems[ i ], key, raw ?\n\t\t\t\t\t\tvalue :\n\t\t\t\t\t\tvalue.call( elems[ i ], i, fn( elems[ i ], key ) )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( chainable ) {\n\t\treturn elems;\n\t}\n\n\t// Gets\n\tif ( bulk ) {\n\t\treturn fn.call( elems );\n\t}\n\n\treturn len ? fn( elems[ 0 ], key ) : emptyGet;\n};\n\n\n// Matches dashed string for camelizing\nvar rmsPrefix = /^-ms-/,\n\trdashAlpha = /-([a-z])/g;\n\n// Used by camelCase as callback to replace()\nfunction fcamelCase( _all, letter ) {\n\treturn letter.toUpperCase();\n}\n\n// Convert dashed to camelCase; used by the css and data modules\n// Support: IE <=9 - 11, Edge 12 - 15\n// Microsoft forgot to hump their vendor prefix (#9572)\nfunction camelCase( string ) {\n\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n}\nvar acceptData = function( owner ) {\n\n\t// Accepts only:\n\t//  - Node\n\t//    - Node.ELEMENT_NODE\n\t//    - Node.DOCUMENT_NODE\n\t//  - Object\n\t//    - Any\n\treturn owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );\n};\n\n\n\n\nfunction Data() {\n\tthis.expando = jQuery.expando + Data.uid++;\n}\n\nData.uid = 1;\n\nData.prototype = {\n\n\tcache: function( owner ) {\n\n\t\t// Check if the owner object already has a cache\n\t\tvar value = owner[ this.expando ];\n\n\t\t// If not, create one\n\t\tif ( !value ) {\n\t\t\tvalue = {};\n\n\t\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t\t// but we should not, see #8335.\n\t\t\t// Always return an empty object.\n\t\t\tif ( acceptData( owner ) ) {\n\n\t\t\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t\t\t// use plain assignment\n\t\t\t\tif ( owner.nodeType ) {\n\t\t\t\t\towner[ this.expando ] = value;\n\n\t\t\t\t// Otherwise secure it in a non-enumerable property\n\t\t\t\t// configurable must be true to allow the property to be\n\t\t\t\t// deleted when data is removed\n\t\t\t\t} else {\n\t\t\t\t\tObject.defineProperty( owner, this.expando, {\n\t\t\t\t\t\tvalue: value,\n\t\t\t\t\t\tconfigurable: true\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn value;\n\t},\n\tset: function( owner, data, value ) {\n\t\tvar prop,\n\t\t\tcache = this.cache( owner );\n\n\t\t// Handle: [ owner, key, value ] args\n\t\t// Always use camelCase key (gh-2257)\n\t\tif ( typeof data === \"string\" ) {\n\t\t\tcache[ camelCase( data ) ] = value;\n\n\t\t// Handle: [ owner, { properties } ] args\n\t\t} else {\n\n\t\t\t// Copy the properties one-by-one to the cache object\n\t\t\tfor ( prop in data ) {\n\t\t\t\tcache[ camelCase( prop ) ] = data[ prop ];\n\t\t\t}\n\t\t}\n\t\treturn cache;\n\t},\n\tget: function( owner, key ) {\n\t\treturn key === undefined ?\n\t\t\tthis.cache( owner ) :\n\n\t\t\t// Always use camelCase key (gh-2257)\n\t\t\towner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];\n\t},\n\taccess: function( owner, key, value ) {\n\n\t\t// In cases where either:\n\t\t//\n\t\t//   1. No key was specified\n\t\t//   2. A string key was specified, but no value provided\n\t\t//\n\t\t// Take the \"read\" path and allow the get method to determine\n\t\t// which value to return, respectively either:\n\t\t//\n\t\t//   1. The entire cache object\n\t\t//   2. The data stored at the key\n\t\t//\n\t\tif ( key === undefined ||\n\t\t\t\t( ( key && typeof key === \"string\" ) && value === undefined ) ) {\n\n\t\t\treturn this.get( owner, key );\n\t\t}\n\n\t\t// When the key is not a string, or both a key and value\n\t\t// are specified, set or extend (existing objects) with either:\n\t\t//\n\t\t//   1. An object of properties\n\t\t//   2. A key and value\n\t\t//\n\t\tthis.set( owner, key, value );\n\n\t\t// Since the \"set\" path can have two possible entry points\n\t\t// return the expected data based on which path was taken[*]\n\t\treturn value !== undefined ? value : key;\n\t},\n\tremove: function( owner, key ) {\n\t\tvar i,\n\t\t\tcache = owner[ this.expando ];\n\n\t\tif ( cache === undefined ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key !== undefined ) {\n\n\t\t\t// Support array or space separated string of keys\n\t\t\tif ( Array.isArray( key ) ) {\n\n\t\t\t\t// If key is an array of keys...\n\t\t\t\t// We always set camelCase keys, so remove that.\n\t\t\t\tkey = key.map( camelCase );\n\t\t\t} else {\n\t\t\t\tkey = camelCase( key );\n\n\t\t\t\t// If a key with the spaces exists, use it.\n\t\t\t\t// Otherwise, create an array by matching non-whitespace\n\t\t\t\tkey = key in cache ?\n\t\t\t\t\t[ key ] :\n\t\t\t\t\t( key.match( rnothtmlwhite ) || [] );\n\t\t\t}\n\n\t\t\ti = key.length;\n\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete cache[ key[ i ] ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if there's no more data\n\t\tif ( key === undefined || jQuery.isEmptyObject( cache ) ) {\n\n\t\t\t// Support: Chrome <=35 - 45\n\t\t\t// Webkit & Blink performance suffers when deleting properties\n\t\t\t// from DOM nodes, so set to undefined instead\n\t\t\t// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)\n\t\t\tif ( owner.nodeType ) {\n\t\t\t\towner[ this.expando ] = undefined;\n\t\t\t} else {\n\t\t\t\tdelete owner[ this.expando ];\n\t\t\t}\n\t\t}\n\t},\n\thasData: function( owner ) {\n\t\tvar cache = owner[ this.expando ];\n\t\treturn cache !== undefined && !jQuery.isEmptyObject( cache );\n\t}\n};\nvar dataPriv = new Data();\n\nvar dataUser = new Data();\n\n\n\n//\tImplementation Summary\n//\n//\t1. Enforce API surface and semantic compatibility with 1.9.x branch\n//\t2. Improve the module's maintainability by reducing the storage\n//\t\tpaths to a single mechanism.\n//\t3. Use the same single mechanism to support \"private\" and \"user\" data.\n//\t4. _Never_ expose \"private\" data to user code (TODO: Drop _data, _removeData)\n//\t5. Avoid exposing implementation details on user objects (eg. expando properties)\n//\t6. Provide a clear path for implementation upgrade to WeakMap in 2014\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /[A-Z]/g;\n\nfunction getData( data ) {\n\tif ( data === \"true\" ) {\n\t\treturn true;\n\t}\n\n\tif ( data === \"false\" ) {\n\t\treturn false;\n\t}\n\n\tif ( data === \"null\" ) {\n\t\treturn null;\n\t}\n\n\t// Only convert to a number if it doesn't change the string\n\tif ( data === +data + \"\" ) {\n\t\treturn +data;\n\t}\n\n\tif ( rbrace.test( data ) ) {\n\t\treturn JSON.parse( data );\n\t}\n\n\treturn data;\n}\n\nfunction dataAttr( elem, key, data ) {\n\tvar name;\n\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\t\tname = \"data-\" + key.replace( rmultiDash, \"-$&\" ).toLowerCase();\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = getData( data );\n\t\t\t} catch ( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tdataUser.set( elem, key, data );\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\treturn data;\n}\n\njQuery.extend( {\n\thasData: function( elem ) {\n\t\treturn dataUser.hasData( elem ) || dataPriv.hasData( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn dataUser.access( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\tdataUser.remove( elem, name );\n\t},\n\n\t// TODO: Now that all calls to _data and _removeData have been replaced\n\t// with direct calls to dataPriv methods, these can be deprecated.\n\t_data: function( elem, name, data ) {\n\t\treturn dataPriv.access( elem, name, data );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\tdataPriv.remove( elem, name );\n\t}\n} );\n\njQuery.fn.extend( {\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[ 0 ],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = dataUser.get( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !dataPriv.get( elem, \"hasDataAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE 11 only\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = camelCase( name.slice( 5 ) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tdataPriv.set( elem, \"hasDataAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tdataUser.set( this, key );\n\t\t\t} );\n\t\t}\n\n\t\treturn access( this, function( value ) {\n\t\t\tvar data;\n\n\t\t\t// The calling jQuery object (element matches) is not empty\n\t\t\t// (and therefore has an element appears at this[ 0 ]) and the\n\t\t\t// `value` parameter was not undefined. An empty jQuery object\n\t\t\t// will result in `undefined` for elem = this[ 0 ] which will\n\t\t\t// throw an exception if an attempt to read a data cache is made.\n\t\t\tif ( elem && value === undefined ) {\n\n\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t// The key will always be camelCased in Data\n\t\t\t\tdata = dataUser.get( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Attempt to \"discover\" the data in\n\t\t\t\t// HTML5 custom data-* attrs\n\t\t\t\tdata = dataAttr( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// We tried really hard, but the data doesn't exist.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Set the data...\n\t\t\tthis.each( function() {\n\n\t\t\t\t// We always store the camelCased key\n\t\t\t\tdataUser.set( this, key, value );\n\t\t\t} );\n\t\t}, null, value, arguments.length > 1, null, true );\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each( function() {\n\t\t\tdataUser.remove( this, key );\n\t\t} );\n\t}\n} );\n\n\njQuery.extend( {\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = dataPriv.get( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || Array.isArray( data ) ) {\n\t\t\t\t\tqueue = dataPriv.access( elem, type, jQuery.makeArray( data ) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// Clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// Not public - generate a queueHooks object, or return the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn dataPriv.get( elem, key ) || dataPriv.access( elem, key, {\n\t\t\tempty: jQuery.Callbacks( \"once memory\" ).add( function() {\n\t\t\t\tdataPriv.remove( elem, [ type + \"queue\", key ] );\n\t\t\t} )\n\t\t} );\n\t}\n} );\n\njQuery.fn.extend( {\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[ 0 ], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each( function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// Ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[ 0 ] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t} );\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t} );\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = dataPriv.get( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n} );\nvar pnum = ( /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/ ).source;\n\nvar rcssNum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" );\n\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar documentElement = document.documentElement;\n\n\n\n\tvar isAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem );\n\t\t},\n\t\tcomposed = { composed: true };\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only\n\t// Check attachment across shadow DOM boundaries when possible (gh-3504)\n\t// Support: iOS 10.0-10.2 only\n\t// Early iOS 10 versions support `attachShadow` but not `getRootNode`,\n\t// leading to errors. We need to check for `getRootNode`.\n\tif ( documentElement.getRootNode ) {\n\t\tisAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem ) ||\n\t\t\t\telem.getRootNode( composed ) === elem.ownerDocument;\n\t\t};\n\t}\nvar isHiddenWithinTree = function( elem, el ) {\n\n\t\t// isHiddenWithinTree might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\n\t\t// Inline style trumps all\n\t\treturn elem.style.display === \"none\" ||\n\t\t\telem.style.display === \"\" &&\n\n\t\t\t// Otherwise, check computed style\n\t\t\t// Support: Firefox <=43 - 45\n\t\t\t// Disconnected elements can have computed display: none, so first confirm that elem is\n\t\t\t// in the document.\n\t\t\tisAttached( elem ) &&\n\n\t\t\tjQuery.css( elem, \"display\" ) === \"none\";\n\t};\n\n\n\nfunction adjustCSS( elem, prop, valueParts, tween ) {\n\tvar adjusted, scale,\n\t\tmaxIterations = 20,\n\t\tcurrentValue = tween ?\n\t\t\tfunction() {\n\t\t\t\treturn tween.cur();\n\t\t\t} :\n\t\t\tfunction() {\n\t\t\t\treturn jQuery.css( elem, prop, \"\" );\n\t\t\t},\n\t\tinitial = currentValue(),\n\t\tunit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t// Starting value computation is required for potential unit mismatches\n\t\tinitialInUnit = elem.nodeType &&\n\t\t\t( jQuery.cssNumber[ prop ] || unit !== \"px\" && +initial ) &&\n\t\t\trcssNum.exec( jQuery.css( elem, prop ) );\n\n\tif ( initialInUnit && initialInUnit[ 3 ] !== unit ) {\n\n\t\t// Support: Firefox <=54\n\t\t// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)\n\t\tinitial = initial / 2;\n\n\t\t// Trust units reported by jQuery.css\n\t\tunit = unit || initialInUnit[ 3 ];\n\n\t\t// Iteratively approximate from a nonzero starting point\n\t\tinitialInUnit = +initial || 1;\n\n\t\twhile ( maxIterations-- ) {\n\n\t\t\t// Evaluate and update our best guess (doubling guesses that zero out).\n\t\t\t// Finish if the scale equals or crosses 1 (making the old*new product non-positive).\n\t\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\t\t\tif ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {\n\t\t\t\tmaxIterations = 0;\n\t\t\t}\n\t\t\tinitialInUnit = initialInUnit / scale;\n\n\t\t}\n\n\t\tinitialInUnit = initialInUnit * 2;\n\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\n\t\t// Make sure we update the tween properties later on\n\t\tvalueParts = valueParts || [];\n\t}\n\n\tif ( valueParts ) {\n\t\tinitialInUnit = +initialInUnit || +initial || 0;\n\n\t\t// Apply relative offset (+=/-=) if specified\n\t\tadjusted = valueParts[ 1 ] ?\n\t\t\tinitialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :\n\t\t\t+valueParts[ 2 ];\n\t\tif ( tween ) {\n\t\t\ttween.unit = unit;\n\t\t\ttween.start = initialInUnit;\n\t\t\ttween.end = adjusted;\n\t\t}\n\t}\n\treturn adjusted;\n}\n\n\nvar defaultDisplayMap = {};\n\nfunction getDefaultDisplay( elem ) {\n\tvar temp,\n\t\tdoc = elem.ownerDocument,\n\t\tnodeName = elem.nodeName,\n\t\tdisplay = defaultDisplayMap[ nodeName ];\n\n\tif ( display ) {\n\t\treturn display;\n\t}\n\n\ttemp = doc.body.appendChild( doc.createElement( nodeName ) );\n\tdisplay = jQuery.css( temp, \"display\" );\n\n\ttemp.parentNode.removeChild( temp );\n\n\tif ( display === \"none\" ) {\n\t\tdisplay = \"block\";\n\t}\n\tdefaultDisplayMap[ nodeName ] = display;\n\n\treturn display;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\t// Determine new display value for elements that need to change\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\n\t\t\t// Since we force visibility upon cascade-hidden elements, an immediate (and slow)\n\t\t\t// check is required in this first loop unless we have a nonempty display value (either\n\t\t\t// inline or about-to-be-restored)\n\t\t\tif ( display === \"none\" ) {\n\t\t\t\tvalues[ index ] = dataPriv.get( elem, \"display\" ) || null;\n\t\t\t\tif ( !values[ index ] ) {\n\t\t\t\t\telem.style.display = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( elem.style.display === \"\" && isHiddenWithinTree( elem ) ) {\n\t\t\t\tvalues[ index ] = getDefaultDisplay( elem );\n\t\t\t}\n\t\t} else {\n\t\t\tif ( display !== \"none\" ) {\n\t\t\t\tvalues[ index ] = \"none\";\n\n\t\t\t\t// Remember what we're overwriting\n\t\t\t\tdataPriv.set( elem, \"display\", display );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of the elements in a second loop to avoid constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\tif ( values[ index ] != null ) {\n\t\t\telements[ index ].style.display = values[ index ];\n\t\t}\n\t}\n\n\treturn elements;\n}\n\njQuery.fn.extend( {\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tif ( isHiddenWithinTree( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t} );\n\t}\n} );\nvar rcheckableType = ( /^(?:checkbox|radio)$/i );\n\nvar rtagName = ( /<([a-z][^\\/\\0>\\x20\\t\\r\\n\\f]*)/i );\n\nvar rscriptType = ( /^$|^module$|\\/(?:java|ecma)script/i );\n\n\n\n( function() {\n\tvar fragment = document.createDocumentFragment(),\n\t\tdiv = fragment.appendChild( document.createElement( \"div\" ) ),\n\t\tinput = document.createElement( \"input\" );\n\n\t// Support: Android 4.0 - 4.3 only\n\t// Check state lost if the name is set (#11217)\n\t// Support: Windows Web Apps (WWA)\n\t// `name` and `type` must use .setAttribute for WWA (#14901)\n\tinput.setAttribute( \"type\", \"radio\" );\n\tinput.setAttribute( \"checked\", \"checked\" );\n\tinput.setAttribute( \"name\", \"t\" );\n\n\tdiv.appendChild( input );\n\n\t// Support: Android <=4.1 only\n\t// Older WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE <=11 only\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// Support: IE <=9 only\n\t// IE <=9 replaces <option> tags with their contents when inserted outside of\n\t// the select element.\n\tdiv.innerHTML = \"<option></option>\";\n\tsupport.option = !!div.lastChild;\n} )();\n\n\n// We have to close these tags to support XHTML (#13200)\nvar wrapMap = {\n\n\t// XHTML parsers do not magically insert elements in the\n\t// same way that tag soup parsers do. So we cannot shorten\n\t// this by omitting <tbody> or other required elements.\n\tthead: [ 1, \"<table>\", \"</table>\" ],\n\tcol: [ 2, \"<table><colgroup>\", \"</colgroup></table>\" ],\n\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t_default: [ 0, \"\", \"\" ]\n};\n\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n// Support: IE <=9 only\nif ( !support.option ) {\n\twrapMap.optgroup = wrapMap.option = [ 1, \"<select multiple='multiple'>\", \"</select>\" ];\n}\n\n\nfunction getAll( context, tag ) {\n\n\t// Support: IE <=9 - 11 only\n\t// Use typeof to avoid zero-argument method invocation on host objects (#15151)\n\tvar ret;\n\n\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\tret = context.getElementsByTagName( tag || \"*\" );\n\n\t} else if ( typeof context.querySelectorAll !== \"undefined\" ) {\n\t\tret = context.querySelectorAll( tag || \"*\" );\n\n\t} else {\n\t\tret = [];\n\t}\n\n\tif ( tag === undefined || tag && nodeName( context, tag ) ) {\n\t\treturn jQuery.merge( [ context ], ret );\n\t}\n\n\treturn ret;\n}\n\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar i = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\tdataPriv.set(\n\t\t\telems[ i ],\n\t\t\t\"globalEval\",\n\t\t\t!refElements || dataPriv.get( refElements[ i ], \"globalEval\" )\n\t\t);\n\t}\n}\n\n\nvar rhtml = /<|&#?\\w+;/;\n\nfunction buildFragment( elems, context, scripts, selection, ignored ) {\n\tvar elem, tmp, tag, wrap, attached, j,\n\t\tfragment = context.createDocumentFragment(),\n\t\tnodes = [],\n\t\ti = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\telem = elems[ i ];\n\n\t\tif ( elem || elem === 0 ) {\n\n\t\t\t// Add nodes directly\n\t\t\tif ( toType( elem ) === \"object\" ) {\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t// Convert non-html into a text node\n\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t// Convert html into DOM nodes\n\t\t\t} else {\n\t\t\t\ttmp = tmp || fragment.appendChild( context.createElement( \"div\" ) );\n\n\t\t\t\t// Deserialize a standard representation\n\t\t\t\ttag = ( rtagName.exec( elem ) || [ \"\", \"\" ] )[ 1 ].toLowerCase();\n\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\t\t\t\ttmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];\n\n\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\tj = wrap[ 0 ];\n\t\t\t\twhile ( j-- ) {\n\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t}\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t// Remember the top-level container\n\t\t\t\ttmp = fragment.firstChild;\n\n\t\t\t\t// Ensure the created nodes are orphaned (#12392)\n\t\t\t\ttmp.textContent = \"\";\n\t\t\t}\n\t\t}\n\t}\n\n\t// Remove wrapper from fragment\n\tfragment.textContent = \"\";\n\n\ti = 0;\n\twhile ( ( elem = nodes[ i++ ] ) ) {\n\n\t\t// Skip elements already in the context collection (trac-4087)\n\t\tif ( selection && jQuery.inArray( elem, selection ) > -1 ) {\n\t\t\tif ( ignored ) {\n\t\t\t\tignored.push( elem );\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tattached = isAttached( elem );\n\n\t\t// Append to fragment\n\t\ttmp = getAll( fragment.appendChild( elem ), \"script\" );\n\n\t\t// Preserve script evaluation history\n\t\tif ( attached ) {\n\t\t\tsetGlobalEval( tmp );\n\t\t}\n\n\t\t// Capture executables\n\t\tif ( scripts ) {\n\t\t\tj = 0;\n\t\t\twhile ( ( elem = tmp[ j++ ] ) ) {\n\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\tscripts.push( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn fragment;\n}\n\n\nvar rtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\n// Support: IE <=9 - 11+\n// focus() and blur() are asynchronous, except when they are no-op.\n// So expect focus to be synchronous when the element is already active,\n// and blur to be synchronous when the element is not already active.\n// (focus and blur are always synchronous in other supported browsers,\n// this just defines when we can count on it).\nfunction expectSync( elem, type ) {\n\treturn ( elem === safeActiveElement() ) === ( type === \"focus\" );\n}\n\n// Support: IE <=9 only\n// Accessing document.activeElement can throw unexpectedly\n// https://bugs.jquery.com/ticket/13393\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\nfunction on( elem, types, selector, data, fn, one ) {\n\tvar origFn, type;\n\n\t// Types can be a map of types/handlers\n\tif ( typeof types === \"object\" ) {\n\n\t\t// ( types-Object, selector, data )\n\t\tif ( typeof selector !== \"string\" ) {\n\n\t\t\t// ( types-Object, data )\n\t\t\tdata = data || selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tfor ( type in types ) {\n\t\t\ton( elem, type, selector, data, types[ type ], one );\n\t\t}\n\t\treturn elem;\n\t}\n\n\tif ( data == null && fn == null ) {\n\n\t\t// ( types, fn )\n\t\tfn = selector;\n\t\tdata = selector = undefined;\n\t} else if ( fn == null ) {\n\t\tif ( typeof selector === \"string\" ) {\n\n\t\t\t// ( types, selector, fn )\n\t\t\tfn = data;\n\t\t\tdata = undefined;\n\t\t} else {\n\n\t\t\t// ( types, data, fn )\n\t\t\tfn = data;\n\t\t\tdata = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t}\n\tif ( fn === false ) {\n\t\tfn = returnFalse;\n\t} else if ( !fn ) {\n\t\treturn elem;\n\t}\n\n\tif ( one === 1 ) {\n\t\torigFn = fn;\n\t\tfn = function( event ) {\n\n\t\t\t// Can use an empty set, since event contains the info\n\t\t\tjQuery().off( event );\n\t\t\treturn origFn.apply( this, arguments );\n\t\t};\n\n\t\t// Use same guid so caller can remove using origFn\n\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t}\n\treturn elem.each( function() {\n\t\tjQuery.event.add( this, types, fn, data, selector );\n\t} );\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\n\t\tvar handleObjIn, eventHandle, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.get( elem );\n\n\t\t// Only attach events to objects that accept data\n\t\tif ( !acceptData( elem ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Ensure that invalid selectors throw exceptions at attach time\n\t\t// Evaluate against documentElement in case elem is a non-element node (e.g., document)\n\t\tif ( selector ) {\n\t\t\tjQuery.find.matchesSelector( documentElement, selector );\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !( events = elemData.events ) ) {\n\t\t\tevents = elemData.events = Object.create( null );\n\t\t}\n\t\tif ( !( eventHandle = elemData.handle ) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" && jQuery.event.triggered !== e.type ?\n\t\t\t\t\tjQuery.event.dispatch.apply( elem, arguments ) : undefined;\n\t\t\t};\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend( {\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join( \".\" )\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !( handlers = events[ type ] ) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener if the special events handler returns false\n\t\t\t\tif ( !special.setup ||\n\t\t\t\t\tspecial.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\n\t\tvar j, origCount, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.hasData( elem ) && dataPriv.get( elem );\n\n\t\tif ( !elemData || !( events = elemData.events ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[ 2 ] &&\n\t\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector ||\n\t\t\t\t\t\tselector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown ||\n\t\t\t\t\tspecial.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove data and the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdataPriv.remove( elem, \"handle events\" );\n\t\t}\n\t},\n\n\tdispatch: function( nativeEvent ) {\n\n\t\tvar i, j, ret, matched, handleObj, handlerQueue,\n\t\t\targs = new Array( arguments.length ),\n\n\t\t\t// Make a writable jQuery.Event from the native event object\n\t\t\tevent = jQuery.event.fix( nativeEvent ),\n\n\t\t\thandlers = (\n\t\t\t\tdataPriv.get( this, \"events\" ) || Object.create( null )\n\t\t\t)[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[ 0 ] = event;\n\n\t\tfor ( i = 1; i < arguments.length; i++ ) {\n\t\t\targs[ i ] = arguments[ i ];\n\t\t}\n\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( ( handleObj = matched.handlers[ j++ ] ) &&\n\t\t\t\t!event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// If the event is namespaced, then each handler is only invoked if it is\n\t\t\t\t// specially universal or its namespaces are a superset of the event's.\n\t\t\t\tif ( !event.rnamespace || handleObj.namespace === false ||\n\t\t\t\t\tevent.rnamespace.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||\n\t\t\t\t\t\thandleObj.handler ).apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( ( event.result = ret ) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar i, handleObj, sel, matchedHandlers, matchedSelectors,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\tif ( delegateCount &&\n\n\t\t\t// Support: IE <=9\n\t\t\t// Black-hole SVG <use> instance trees (trac-13180)\n\t\t\tcur.nodeType &&\n\n\t\t\t// Support: Firefox <=42\n\t\t\t// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)\n\t\t\t// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click\n\t\t\t// Support: IE 11 only\n\t\t\t// ...but not arrow key \"clicks\" of radio inputs, which can have `button` -1 (gh-2343)\n\t\t\t!( event.type === \"click\" && event.button >= 1 ) ) {\n\n\t\t\tfor ( ; cur !== this; cur = cur.parentNode || this ) {\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && !( event.type === \"click\" && cur.disabled === true ) ) {\n\t\t\t\t\tmatchedHandlers = [];\n\t\t\t\t\tmatchedSelectors = {};\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatchedSelectors[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) > -1 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] ) {\n\t\t\t\t\t\t\tmatchedHandlers.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matchedHandlers.length ) {\n\t\t\t\t\t\thandlerQueue.push( { elem: cur, handlers: matchedHandlers } );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tcur = this;\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\taddProp: function( name, hook ) {\n\t\tObject.defineProperty( jQuery.Event.prototype, name, {\n\t\t\tenumerable: true,\n\t\t\tconfigurable: true,\n\n\t\t\tget: isFunction( hook ) ?\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\treturn hook( this.originalEvent );\n\t\t\t\t\t}\n\t\t\t\t} :\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\treturn this.originalEvent[ name ];\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\tset: function( value ) {\n\t\t\t\tObject.defineProperty( this, name, {\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tconfigurable: true,\n\t\t\t\t\twritable: true,\n\t\t\t\t\tvalue: value\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\t},\n\n\tfix: function( originalEvent ) {\n\t\treturn originalEvent[ jQuery.expando ] ?\n\t\t\toriginalEvent :\n\t\t\tnew jQuery.Event( originalEvent );\n\t},\n\n\tspecial: {\n\t\tload: {\n\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tclick: {\n\n\t\t\t// Utilize native event to ensure correct state for checkable inputs\n\t\t\tsetup: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Claim the first handler\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\t// dataPriv.set( el, \"click\", ... )\n\t\t\t\t\tleverageNative( el, \"click\", returnTrue );\n\t\t\t\t}\n\n\t\t\t\t// Return false to allow normal processing in the caller\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\ttrigger: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Force setup before triggering a click\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\tleverageNative( el, \"click\" );\n\t\t\t\t}\n\n\t\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\t\treturn true;\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, suppress native .click() on links\n\t\t\t// Also prevent it if we're currently inside a leveraged native-event stack\n\t\t\t_default: function( event ) {\n\t\t\t\tvar target = event.target;\n\t\t\t\treturn rcheckableType.test( target.type ) &&\n\t\t\t\t\ttarget.click && nodeName( target, \"input\" ) &&\n\t\t\t\t\tdataPriv.get( target, \"click\" ) ||\n\t\t\t\t\tnodeName( target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Ensure the presence of an event listener that handles manually-triggered\n// synthetic events by interrupting progress until reinvoked in response to\n// *native* events that it fires directly, ensuring that state changes have\n// already occurred before other listeners are invoked.\nfunction leverageNative( el, type, expectSync ) {\n\n\t// Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add\n\tif ( !expectSync ) {\n\t\tif ( dataPriv.get( el, type ) === undefined ) {\n\t\t\tjQuery.event.add( el, type, returnTrue );\n\t\t}\n\t\treturn;\n\t}\n\n\t// Register the controller as a special universal handler for all event namespaces\n\tdataPriv.set( el, type, false );\n\tjQuery.event.add( el, type, {\n\t\tnamespace: false,\n\t\thandler: function( event ) {\n\t\t\tvar notAsync, result,\n\t\t\t\tsaved = dataPriv.get( this, type );\n\n\t\t\tif ( ( event.isTrigger & 1 ) && this[ type ] ) {\n\n\t\t\t\t// Interrupt processing of the outer synthetic .trigger()ed event\n\t\t\t\t// Saved data should be false in such cases, but might be a leftover capture object\n\t\t\t\t// from an async native handler (gh-4350)\n\t\t\t\tif ( !saved.length ) {\n\n\t\t\t\t\t// Store arguments for use when handling the inner native event\n\t\t\t\t\t// There will always be at least one argument (an event object), so this array\n\t\t\t\t\t// will not be confused with a leftover capture object.\n\t\t\t\t\tsaved = slice.call( arguments );\n\t\t\t\t\tdataPriv.set( this, type, saved );\n\n\t\t\t\t\t// Trigger the native event and capture its result\n\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t// focus() and blur() are asynchronous\n\t\t\t\t\tnotAsync = expectSync( this, type );\n\t\t\t\t\tthis[ type ]();\n\t\t\t\t\tresult = dataPriv.get( this, type );\n\t\t\t\t\tif ( saved !== result || notAsync ) {\n\t\t\t\t\t\tdataPriv.set( this, type, false );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = {};\n\t\t\t\t\t}\n\t\t\t\t\tif ( saved !== result ) {\n\n\t\t\t\t\t\t// Cancel the outer synthetic event\n\t\t\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t\t\t\tevent.preventDefault();\n\n\t\t\t\t\t\t// Support: Chrome 86+\n\t\t\t\t\t\t// In Chrome, if an element having a focusout handler is blurred by\n\t\t\t\t\t\t// clicking outside of it, it invokes the handler synchronously. If\n\t\t\t\t\t\t// that handler calls `.remove()` on the element, the data is cleared,\n\t\t\t\t\t\t// leaving `result` undefined. We need to guard against this.\n\t\t\t\t\t\treturn result && result.value;\n\t\t\t\t\t}\n\n\t\t\t\t// If this is an inner synthetic event for an event with a bubbling surrogate\n\t\t\t\t// (focus or blur), assume that the surrogate already propagated from triggering the\n\t\t\t\t// native event and prevent that from happening again here.\n\t\t\t\t// This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the\n\t\t\t\t// bubbling surrogate propagates *after* the non-bubbling base), but that seems\n\t\t\t\t// less bad than duplication.\n\t\t\t\t} else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {\n\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t}\n\n\t\t\t// If this is a native event triggered above, everything is now in order\n\t\t\t// Fire an inner synthetic event with the original arguments\n\t\t\t} else if ( saved.length ) {\n\n\t\t\t\t// ...and capture the result\n\t\t\t\tdataPriv.set( this, type, {\n\t\t\t\t\tvalue: jQuery.event.trigger(\n\n\t\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t\t// Extend with the prototype to reset the above stopImmediatePropagation()\n\t\t\t\t\t\tjQuery.extend( saved[ 0 ], jQuery.Event.prototype ),\n\t\t\t\t\t\tsaved.slice( 1 ),\n\t\t\t\t\t\tthis\n\t\t\t\t\t)\n\t\t\t\t} );\n\n\t\t\t\t// Abort handling of the native event\n\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t}\n\t\t}\n\t} );\n}\n\njQuery.removeEvent = function( elem, type, handle ) {\n\n\t// This \"if\" is needed for plain objects\n\tif ( elem.removeEventListener ) {\n\t\telem.removeEventListener( type, handle );\n\t}\n};\n\njQuery.Event = function( src, props ) {\n\n\t// Allow instantiation without the 'new' keyword\n\tif ( !( this instanceof jQuery.Event ) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\n\t\t\t\t// Support: Android <=2.3 only\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t\t// Create target properties\n\t\t// Support: Safari <=6 - 7 only\n\t\t// Target should not be a text node (#504, #13143)\n\t\tthis.target = ( src.target && src.target.nodeType === 3 ) ?\n\t\t\tsrc.target.parentNode :\n\t\t\tsrc.target;\n\n\t\tthis.currentTarget = src.currentTarget;\n\t\tthis.relatedTarget = src.relatedTarget;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || Date.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tconstructor: jQuery.Event,\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\tisSimulated: false,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.preventDefault();\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopPropagation();\n\t\t}\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Includes all common event props including KeyEvent and MouseEvent specific props\njQuery.each( {\n\taltKey: true,\n\tbubbles: true,\n\tcancelable: true,\n\tchangedTouches: true,\n\tctrlKey: true,\n\tdetail: true,\n\teventPhase: true,\n\tmetaKey: true,\n\tpageX: true,\n\tpageY: true,\n\tshiftKey: true,\n\tview: true,\n\t\"char\": true,\n\tcode: true,\n\tcharCode: true,\n\tkey: true,\n\tkeyCode: true,\n\tbutton: true,\n\tbuttons: true,\n\tclientX: true,\n\tclientY: true,\n\toffsetX: true,\n\toffsetY: true,\n\tpointerId: true,\n\tpointerType: true,\n\tscreenX: true,\n\tscreenY: true,\n\ttargetTouches: true,\n\ttoElement: true,\n\ttouches: true,\n\twhich: true\n}, jQuery.event.addProp );\n\njQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( type, delegateType ) {\n\tjQuery.event.special[ type ] = {\n\n\t\t// Utilize native event if possible so blur/focus sequence is correct\n\t\tsetup: function() {\n\n\t\t\t// Claim the first handler\n\t\t\t// dataPriv.set( this, \"focus\", ... )\n\t\t\t// dataPriv.set( this, \"blur\", ... )\n\t\t\tleverageNative( this, type, expectSync );\n\n\t\t\t// Return false to allow normal processing in the caller\n\t\t\treturn false;\n\t\t},\n\t\ttrigger: function() {\n\n\t\t\t// Force setup before trigger\n\t\t\tleverageNative( this, type );\n\n\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\treturn true;\n\t\t},\n\n\t\t// Suppress native focus or blur as it's already being fired\n\t\t// in leverageNative.\n\t\t_default: function() {\n\t\t\treturn true;\n\t\t},\n\n\t\tdelegateType: delegateType\n\t};\n} );\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\n// so that event delegation works in jQuery.\n// Do the same for pointerenter/pointerleave and pointerover/pointerout\n//\n// Support: Safari 7 only\n// Safari sends mouseenter too often; see:\n// https://bugs.chromium.org/p/chromium/issues/detail?id=470258\n// for the description of the bug (it existed in older Chrome versions as well).\njQuery.each( {\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mouseenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n} );\n\njQuery.fn.extend( {\n\n\ton: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn );\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ?\n\t\t\t\t\thandleObj.origType + \".\" + handleObj.namespace :\n\t\t\t\t\thandleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t} );\n\t}\n} );\n\n\nvar\n\n\t// Support: IE <=10 - 11, Edge 12 - 13 only\n\t// In IE/Edge using regex groups here causes severe slowdowns.\n\t// See https://connect.microsoft.com/IE/feedback/details/1736512/\n\trnoInnerhtml = /<script|<style|<link/i,\n\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g;\n\n// Prefer a tbody over its parent table for containing new rows\nfunction manipulationTarget( elem, content ) {\n\tif ( nodeName( elem, \"table\" ) &&\n\t\tnodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ) {\n\n\t\treturn jQuery( elem ).children( \"tbody\" )[ 0 ] || elem;\n\t}\n\n\treturn elem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = ( elem.getAttribute( \"type\" ) !== null ) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tif ( ( elem.type || \"\" ).slice( 0, 5 ) === \"true/\" ) {\n\t\telem.type = elem.type.slice( 5 );\n\t} else {\n\t\telem.removeAttribute( \"type\" );\n\t}\n\n\treturn elem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\tvar i, l, type, pdataOld, udataOld, udataCur, events;\n\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\t// 1. Copy private data: events, handlers, etc.\n\tif ( dataPriv.hasData( src ) ) {\n\t\tpdataOld = dataPriv.get( src );\n\t\tevents = pdataOld.events;\n\n\t\tif ( events ) {\n\t\t\tdataPriv.remove( dest, \"handle events\" );\n\n\t\t\tfor ( type in events ) {\n\t\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// 2. Copy user data\n\tif ( dataUser.hasData( src ) ) {\n\t\tudataOld = dataUser.access( src );\n\t\tudataCur = jQuery.extend( {}, udataOld );\n\n\t\tdataUser.set( dest, udataCur );\n\t}\n}\n\n// Fix IE bugs, see support tests\nfunction fixInput( src, dest ) {\n\tvar nodeName = dest.nodeName.toLowerCase();\n\n\t// Fails to persist the checked state of a cloned checkbox or radio button.\n\tif ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\tdest.checked = src.checked;\n\n\t// Fails to return the selected option to the default selected state when cloning options\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\nfunction domManip( collection, args, callback, ignored ) {\n\n\t// Flatten any nested arrays\n\targs = flat( args );\n\n\tvar fragment, first, scripts, hasScripts, node, doc,\n\t\ti = 0,\n\t\tl = collection.length,\n\t\tiNoClone = l - 1,\n\t\tvalue = args[ 0 ],\n\t\tvalueIsFunction = isFunction( value );\n\n\t// We can't cloneNode fragments that contain checked, in WebKit\n\tif ( valueIsFunction ||\n\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\treturn collection.each( function( index ) {\n\t\t\tvar self = collection.eq( index );\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\targs[ 0 ] = value.call( this, index, self.html() );\n\t\t\t}\n\t\t\tdomManip( self, args, callback, ignored );\n\t\t} );\n\t}\n\n\tif ( l ) {\n\t\tfragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );\n\t\tfirst = fragment.firstChild;\n\n\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\tfragment = first;\n\t\t}\n\n\t\t// Require either new content or an interest in ignored elements to invoke the callback\n\t\tif ( first || ignored ) {\n\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\thasScripts = scripts.length;\n\n\t\t\t// Use the original fragment for the last item\n\t\t\t// instead of the first because it can end up\n\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tnode = fragment;\n\n\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\tif ( hasScripts ) {\n\n\t\t\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcallback.call( collection[ i ], node, i );\n\t\t\t}\n\n\t\t\tif ( hasScripts ) {\n\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t// Reenable scripts\n\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t!dataPriv.access( node, \"globalEval\" ) &&\n\t\t\t\t\t\tjQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\tif ( node.src && ( node.type || \"\" ).toLowerCase()  !== \"module\" ) {\n\n\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\tif ( jQuery._evalUrl && !node.noModule ) {\n\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src, {\n\t\t\t\t\t\t\t\t\tnonce: node.nonce || node.getAttribute( \"nonce\" )\n\t\t\t\t\t\t\t\t}, doc );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tDOMEval( node.textContent.replace( rcleanScript, \"\" ), node, doc );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn collection;\n}\n\nfunction remove( elem, selector, keepData ) {\n\tvar node,\n\t\tnodes = selector ? jQuery.filter( selector, elem ) : elem,\n\t\ti = 0;\n\n\tfor ( ; ( node = nodes[ i ] ) != null; i++ ) {\n\t\tif ( !keepData && node.nodeType === 1 ) {\n\t\t\tjQuery.cleanData( getAll( node ) );\n\t\t}\n\n\t\tif ( node.parentNode ) {\n\t\t\tif ( keepData && isAttached( node ) ) {\n\t\t\t\tsetGlobalEval( getAll( node, \"script\" ) );\n\t\t\t}\n\t\t\tnode.parentNode.removeChild( node );\n\t\t}\n\t}\n\n\treturn elem;\n}\n\njQuery.extend( {\n\thtmlPrefilter: function( html ) {\n\t\treturn html;\n\t},\n\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar i, l, srcElements, destElements,\n\t\t\tclone = elem.cloneNode( true ),\n\t\t\tinPage = isAttached( elem );\n\n\t\t// Fix IE cloning issues\n\t\tif ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&\n\t\t\t\t!jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\tfixInput( srcElements[ i ], destElements[ i ] );\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\t\tcloneCopyEvent( srcElements[ i ], destElements[ i ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tcleanData: function( elems ) {\n\t\tvar data, elem, type,\n\t\t\tspecial = jQuery.event.special,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {\n\t\t\tif ( acceptData( elem ) ) {\n\t\t\t\tif ( ( data = elem[ dataPriv.expando ] ) ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataPriv.expando ] = undefined;\n\t\t\t\t}\n\t\t\t\tif ( elem[ dataUser.expando ] ) {\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataUser.expando ] = undefined;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n} );\n\njQuery.fn.extend( {\n\tdetach: function( selector ) {\n\t\treturn remove( this, selector, true );\n\t},\n\n\tremove: function( selector ) {\n\t\treturn remove( this, selector );\n\t},\n\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().each( function() {\n\t\t\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\t\t\tthis.textContent = value;\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t} );\n\t},\n\n\tprepend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t} );\n\t},\n\n\tbefore: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t} );\n\t},\n\n\tafter: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t} );\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = this[ i ] ) != null; i++ ) {\n\t\t\tif ( elem.nodeType === 1 ) {\n\n\t\t\t\t// Prevent memory leaks\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\n\t\t\t\t// Remove any remaining nodes\n\t\t\t\telem.textContent = \"\";\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t} );\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined && elem.nodeType === 1 ) {\n\t\t\t\treturn elem.innerHTML;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t!wrapMap[ ( rtagName.exec( value ) || [ \"\", \"\" ] )[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = jQuery.htmlPrefilter( value );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\t\telem = this[ i ] || {};\n\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch ( e ) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar ignored = [];\n\n\t\t// Make the changes, replacing each non-ignored context element with the new content\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tvar parent = this.parentNode;\n\n\t\t\tif ( jQuery.inArray( this, ignored ) < 0 ) {\n\t\t\t\tjQuery.cleanData( getAll( this ) );\n\t\t\t\tif ( parent ) {\n\t\t\t\t\tparent.replaceChild( elem, this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Force callback invocation\n\t\t}, ignored );\n\t}\n} );\n\njQuery.each( {\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1,\n\t\t\ti = 0;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone( true );\n\t\t\tjQuery( insert[ i ] )[ original ]( elems );\n\n\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t// .get() because push.apply(_, arraylike) throws on ancient WebKit\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n} );\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\nvar getStyles = function( elem ) {\n\n\t\t// Support: IE <=11 only, Firefox <=30 (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tvar view = elem.ownerDocument.defaultView;\n\n\t\tif ( !view || !view.opener ) {\n\t\t\tview = window;\n\t\t}\n\n\t\treturn view.getComputedStyle( elem );\n\t};\n\nvar swap = function( elem, options, callback ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.call( elem );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar rboxStyle = new RegExp( cssExpand.join( \"|\" ), \"i\" );\n\n\n\n( function() {\n\n\t// Executing both pixelPosition & boxSizingReliable tests require only one layout\n\t// so they're executed at the same time to save the second computation.\n\tfunction computeStyleTests() {\n\n\t\t// This is a singleton, we need to execute it only once\n\t\tif ( !div ) {\n\t\t\treturn;\n\t\t}\n\n\t\tcontainer.style.cssText = \"position:absolute;left:-11111px;width:60px;\" +\n\t\t\t\"margin-top:1px;padding:0;border:0\";\n\t\tdiv.style.cssText =\n\t\t\t\"position:relative;display:block;box-sizing:border-box;overflow:scroll;\" +\n\t\t\t\"margin:auto;border:1px;padding:1px;\" +\n\t\t\t\"width:60%;top:1%\";\n\t\tdocumentElement.appendChild( container ).appendChild( div );\n\n\t\tvar divStyle = window.getComputedStyle( div );\n\t\tpixelPositionVal = divStyle.top !== \"1%\";\n\n\t\t// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44\n\t\treliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;\n\n\t\t// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3\n\t\t// Some styles come back with percentage values, even though they shouldn't\n\t\tdiv.style.right = \"60%\";\n\t\tpixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;\n\n\t\t// Support: IE 9 - 11 only\n\t\t// Detect misreporting of content dimensions for box-sizing:border-box elements\n\t\tboxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;\n\n\t\t// Support: IE 9 only\n\t\t// Detect overflow:scroll screwiness (gh-3699)\n\t\t// Support: Chrome <=64\n\t\t// Don't get tricked when zoom affects offsetWidth (gh-4029)\n\t\tdiv.style.position = \"absolute\";\n\t\tscrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12;\n\n\t\tdocumentElement.removeChild( container );\n\n\t\t// Nullify the div so it wouldn't be stored in the memory and\n\t\t// it will also be a sign that checks already performed\n\t\tdiv = null;\n\t}\n\n\tfunction roundPixelMeasures( measure ) {\n\t\treturn Math.round( parseFloat( measure ) );\n\t}\n\n\tvar pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,\n\t\treliableTrDimensionsVal, reliableMarginLeftVal,\n\t\tcontainer = document.createElement( \"div\" ),\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !div.style ) {\n\t\treturn;\n\t}\n\n\t// Support: IE <=9 - 11 only\n\t// Style of cloned element affects source element cloned (#8908)\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\tjQuery.extend( support, {\n\t\tboxSizingReliable: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\t\tpixelBoxStyles: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelBoxStylesVal;\n\t\t},\n\t\tpixelPosition: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelPositionVal;\n\t\t},\n\t\treliableMarginLeft: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn reliableMarginLeftVal;\n\t\t},\n\t\tscrollboxSize: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn scrollboxSizeVal;\n\t\t},\n\n\t\t// Support: IE 9 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Behavior in IE 9 is more subtle than in newer versions & it passes\n\t\t// some versions of this test; make sure not to make it pass there!\n\t\t//\n\t\t// Support: Firefox 70+\n\t\t// Only Firefox includes border widths\n\t\t// in computed dimensions. (gh-4529)\n\t\treliableTrDimensions: function() {\n\t\t\tvar table, tr, trChild, trStyle;\n\t\t\tif ( reliableTrDimensionsVal == null ) {\n\t\t\t\ttable = document.createElement( \"table\" );\n\t\t\t\ttr = document.createElement( \"tr\" );\n\t\t\t\ttrChild = document.createElement( \"div\" );\n\n\t\t\t\ttable.style.cssText = \"position:absolute;left:-11111px;border-collapse:separate\";\n\t\t\t\ttr.style.cssText = \"border:1px solid\";\n\n\t\t\t\t// Support: Chrome 86+\n\t\t\t\t// Height set through cssText does not get applied.\n\t\t\t\t// Computed height then comes back as 0.\n\t\t\t\ttr.style.height = \"1px\";\n\t\t\t\ttrChild.style.height = \"9px\";\n\n\t\t\t\t// Support: Android 8 Chrome 86+\n\t\t\t\t// In our bodyBackground.html iframe,\n\t\t\t\t// display for all div elements is set to \"inline\",\n\t\t\t\t// which causes a problem only in Android 8 Chrome 86.\n\t\t\t\t// Ensuring the div is display: block\n\t\t\t\t// gets around this issue.\n\t\t\t\ttrChild.style.display = \"block\";\n\n\t\t\t\tdocumentElement\n\t\t\t\t\t.appendChild( table )\n\t\t\t\t\t.appendChild( tr )\n\t\t\t\t\t.appendChild( trChild );\n\n\t\t\t\ttrStyle = window.getComputedStyle( tr );\n\t\t\t\treliableTrDimensionsVal = ( parseInt( trStyle.height, 10 ) +\n\t\t\t\t\tparseInt( trStyle.borderTopWidth, 10 ) +\n\t\t\t\t\tparseInt( trStyle.borderBottomWidth, 10 ) ) === tr.offsetHeight;\n\n\t\t\t\tdocumentElement.removeChild( table );\n\t\t\t}\n\t\t\treturn reliableTrDimensionsVal;\n\t\t}\n\t} );\n} )();\n\n\nfunction curCSS( elem, name, computed ) {\n\tvar width, minWidth, maxWidth, ret,\n\n\t\t// Support: Firefox 51+\n\t\t// Retrieving style before computed somehow\n\t\t// fixes an issue with getting wrong values\n\t\t// on detached elements\n\t\tstyle = elem.style;\n\n\tcomputed = computed || getStyles( elem );\n\n\t// getPropertyValue is needed for:\n\t//   .css('filter') (IE 9 only, #12537)\n\t//   .css('--customProperty) (#3144)\n\tif ( computed ) {\n\t\tret = computed.getPropertyValue( name ) || computed[ name ];\n\n\t\tif ( ret === \"\" && !isAttached( elem ) ) {\n\t\t\tret = jQuery.style( elem, name );\n\t\t}\n\n\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t// Android Browser returns percentage for some values,\n\t\t// but width seems to be reliably pixels.\n\t\t// This is against the CSSOM draft spec:\n\t\t// https://drafts.csswg.org/cssom/#resolved-values\n\t\tif ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\twidth = style.width;\n\t\t\tminWidth = style.minWidth;\n\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\tret = computed.width;\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.width = width;\n\t\t\tstyle.minWidth = minWidth;\n\t\t\tstyle.maxWidth = maxWidth;\n\t\t}\n\t}\n\n\treturn ret !== undefined ?\n\n\t\t// Support: IE <=9 - 11 only\n\t\t// IE returns zIndex value as an integer.\n\t\tret + \"\" :\n\t\tret;\n}\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tif ( conditionFn() ) {\n\n\t\t\t\t// Hook not needed (or it's not possible to use it due\n\t\t\t\t// to missing dependency), remove it.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\t\t\treturn ( this.get = hookFn ).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\nvar cssPrefixes = [ \"Webkit\", \"Moz\", \"ms\" ],\n\temptyStyle = document.createElement( \"div\" ).style,\n\tvendorProps = {};\n\n// Return a vendor-prefixed property or undefined\nfunction vendorPropName( name ) {\n\n\t// Check for vendor prefixed names\n\tvar capName = name[ 0 ].toUpperCase() + name.slice( 1 ),\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in emptyStyle ) {\n\t\t\treturn name;\n\t\t}\n\t}\n}\n\n// Return a potentially-mapped jQuery.cssProps or vendor prefixed property\nfunction finalPropName( name ) {\n\tvar final = jQuery.cssProps[ name ] || vendorProps[ name ];\n\n\tif ( final ) {\n\t\treturn final;\n\t}\n\tif ( name in emptyStyle ) {\n\t\treturn name;\n\t}\n\treturn vendorProps[ name ] = vendorPropName( name ) || name;\n}\n\n\nvar\n\n\t// Swappable if display is none or starts with table\n\t// except \"table\", \"table-cell\", or \"table-caption\"\n\t// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trcustomProp = /^--/,\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t};\n\nfunction setPositiveNumber( _elem, value, subtract ) {\n\n\t// Any relative (+/-) values have already been\n\t// normalized at this point\n\tvar matches = rcssNum.exec( value );\n\treturn matches ?\n\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {\n\tvar i = dimension === \"width\" ? 1 : 0,\n\t\textra = 0,\n\t\tdelta = 0;\n\n\t// Adjustment may not be necessary\n\tif ( box === ( isBorderBox ? \"border\" : \"content\" ) ) {\n\t\treturn 0;\n\t}\n\n\tfor ( ; i < 4; i += 2 ) {\n\n\t\t// Both box models exclude margin\n\t\tif ( box === \"margin\" ) {\n\t\t\tdelta += jQuery.css( elem, box + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\t// If we get here with a content-box, we're seeking \"padding\" or \"border\" or \"margin\"\n\t\tif ( !isBorderBox ) {\n\n\t\t\t// Add padding\n\t\t\tdelta += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// For \"border\" or \"margin\", add border\n\t\t\tif ( box !== \"padding\" ) {\n\t\t\t\tdelta += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\n\t\t\t// But still keep track of it otherwise\n\t\t\t} else {\n\t\t\t\textra += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\n\t\t// If we get here with a border-box (content + padding + border), we're seeking \"content\" or\n\t\t// \"padding\" or \"margin\"\n\t\t} else {\n\n\t\t\t// For \"content\", subtract padding\n\t\t\tif ( box === \"content\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// For \"content\" or \"padding\", subtract border\n\t\t\tif ( box !== \"margin\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Account for positive content-box scroll gutter when requested by providing computedVal\n\tif ( !isBorderBox && computedVal >= 0 ) {\n\n\t\t// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border\n\t\t// Assuming integer scroll gutter, subtract the rest and round down\n\t\tdelta += Math.max( 0, Math.ceil(\n\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\tcomputedVal -\n\t\t\tdelta -\n\t\t\textra -\n\t\t\t0.5\n\n\t\t// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter\n\t\t// Use an explicit zero to avoid NaN (gh-3964)\n\t\t) ) || 0;\n\t}\n\n\treturn delta;\n}\n\nfunction getWidthOrHeight( elem, dimension, extra ) {\n\n\t// Start with computed style\n\tvar styles = getStyles( elem ),\n\n\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).\n\t\t// Fake content-box until we know it's needed to know the true value.\n\t\tboxSizingNeeded = !support.boxSizingReliable() || extra,\n\t\tisBorderBox = boxSizingNeeded &&\n\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\tvalueIsBorderBox = isBorderBox,\n\n\t\tval = curCSS( elem, dimension, styles ),\n\t\toffsetProp = \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 );\n\n\t// Support: Firefox <=54\n\t// Return a confounding non-pixel value or feign ignorance, as appropriate.\n\tif ( rnumnonpx.test( val ) ) {\n\t\tif ( !extra ) {\n\t\t\treturn val;\n\t\t}\n\t\tval = \"auto\";\n\t}\n\n\n\t// Support: IE 9 - 11 only\n\t// Use offsetWidth/offsetHeight for when box sizing is unreliable.\n\t// In those cases, the computed value can be trusted to be border-box.\n\tif ( ( !support.boxSizingReliable() && isBorderBox ||\n\n\t\t// Support: IE 10 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Interestingly, in some cases IE 9 doesn't suffer from this issue.\n\t\t!support.reliableTrDimensions() && nodeName( elem, \"tr\" ) ||\n\n\t\t// Fall back to offsetWidth/offsetHeight when value is \"auto\"\n\t\t// This happens for inline elements with no explicit setting (gh-3571)\n\t\tval === \"auto\" ||\n\n\t\t// Support: Android <=4.1 - 4.3 only\n\t\t// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)\n\t\t!parseFloat( val ) && jQuery.css( elem, \"display\", false, styles ) === \"inline\" ) &&\n\n\t\t// Make sure the element is visible & connected\n\t\telem.getClientRects().length ) {\n\n\t\tisBorderBox = jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t\t// Where available, offsetWidth/offsetHeight approximate border box dimensions.\n\t\t// Where not available (e.g., SVG), assume unreliable box-sizing and interpret the\n\t\t// retrieved value as a content box dimension.\n\t\tvalueIsBorderBox = offsetProp in elem;\n\t\tif ( valueIsBorderBox ) {\n\t\t\tval = elem[ offsetProp ];\n\t\t}\n\t}\n\n\t// Normalize \"\" and auto\n\tval = parseFloat( val ) || 0;\n\n\t// Adjust for the element's box model\n\treturn ( val +\n\t\tboxModelAdjustment(\n\t\t\telem,\n\t\t\tdimension,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles,\n\n\t\t\t// Provide the current computed size to request scroll gutter calculation (gh-3589)\n\t\t\tval\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend( {\n\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"animationIterationCount\": true,\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"gridArea\": true,\n\t\t\"gridColumn\": true,\n\t\t\"gridColumnEnd\": true,\n\t\t\"gridColumnStart\": true,\n\t\t\"gridRow\": true,\n\t\t\"gridRowEnd\": true,\n\t\t\"gridRowStart\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name ),\n\t\t\tstyle = elem.style;\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to query the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Gets hook for the prefixed version, then unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// Convert \"+=\" or \"-=\" to relative numbers (#7345)\n\t\t\tif ( type === \"string\" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {\n\t\t\t\tvalue = adjustCSS( elem, name, ret );\n\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set (#7116)\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add the unit (except for certain CSS properties)\n\t\t\t// The isCustomProp check can be removed in jQuery 4.0 when we only auto-append\n\t\t\t// \"px\" to a few hardcoded values.\n\t\t\tif ( type === \"number\" && !isCustomProp ) {\n\t\t\t\tvalue += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? \"\" : \"px\" );\n\t\t\t}\n\n\t\t\t// background-* props affect original clone's values\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf( \"background\" ) === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !( \"set\" in hooks ) ||\n\t\t\t\t( value = hooks.set( elem, value, extra ) ) !== undefined ) {\n\n\t\t\t\tif ( isCustomProp ) {\n\t\t\t\t\tstyle.setProperty( name, value );\n\t\t\t\t} else {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else {\n\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks &&\n\t\t\t\t( ret = hooks.get( elem, false, extra ) ) !== undefined ) {\n\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar val, num, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name );\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to modify the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Try prefixed name followed by the unprefixed name\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t// Convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Make numeric if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || isFinite( num ) ? num || 0 : val;\n\t\t}\n\n\t\treturn val;\n\t}\n} );\n\njQuery.each( [ \"height\", \"width\" ], function( _i, dimension ) {\n\tjQuery.cssHooks[ dimension ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\n\t\t\t\t// Certain elements can have dimension info if we invisibly show them\n\t\t\t\t// but it must have a current display style that would benefit\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) &&\n\n\t\t\t\t\t// Support: Safari 8+\n\t\t\t\t\t// Table columns in Safari have non-zero offsetWidth & zero\n\t\t\t\t\t// getBoundingClientRect().width unless display is changed.\n\t\t\t\t\t// Support: IE <=11 only\n\t\t\t\t\t// Running getBoundingClientRect on a disconnected node\n\t\t\t\t\t// in IE throws an error.\n\t\t\t\t\t( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?\n\t\t\t\t\tswap( elem, cssShow, function() {\n\t\t\t\t\t\treturn getWidthOrHeight( elem, dimension, extra );\n\t\t\t\t\t} ) :\n\t\t\t\t\tgetWidthOrHeight( elem, dimension, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar matches,\n\t\t\t\tstyles = getStyles( elem ),\n\n\t\t\t\t// Only read styles.position if the test has a chance to fail\n\t\t\t\t// to avoid forcing a reflow.\n\t\t\t\tscrollboxSizeBuggy = !support.scrollboxSize() &&\n\t\t\t\t\tstyles.position === \"absolute\",\n\n\t\t\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)\n\t\t\t\tboxSizingNeeded = scrollboxSizeBuggy || extra,\n\t\t\t\tisBorderBox = boxSizingNeeded &&\n\t\t\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\tsubtract = extra ?\n\t\t\t\t\tboxModelAdjustment(\n\t\t\t\t\t\telem,\n\t\t\t\t\t\tdimension,\n\t\t\t\t\t\textra,\n\t\t\t\t\t\tisBorderBox,\n\t\t\t\t\t\tstyles\n\t\t\t\t\t) :\n\t\t\t\t\t0;\n\n\t\t\t// Account for unreliable border-box dimensions by comparing offset* to computed and\n\t\t\t// faking a content-box to get border and padding (gh-3699)\n\t\t\tif ( isBorderBox && scrollboxSizeBuggy ) {\n\t\t\t\tsubtract -= Math.ceil(\n\t\t\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\t\t\tparseFloat( styles[ dimension ] ) -\n\t\t\t\t\tboxModelAdjustment( elem, dimension, \"border\", false, styles ) -\n\t\t\t\t\t0.5\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Convert to pixels if value adjustment is needed\n\t\t\tif ( subtract && ( matches = rcssNum.exec( value ) ) &&\n\t\t\t\t( matches[ 3 ] || \"px\" ) !== \"px\" ) {\n\n\t\t\t\telem.style[ dimension ] = value;\n\t\t\t\tvalue = jQuery.css( elem, dimension );\n\t\t\t}\n\n\t\t\treturn setPositiveNumber( elem, value, subtract );\n\t\t}\n\t};\n} );\n\njQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn ( parseFloat( curCSS( elem, \"marginLeft\" ) ) ||\n\t\t\t\telem.getBoundingClientRect().left -\n\t\t\t\t\tswap( elem, { marginLeft: 0 }, function() {\n\t\t\t\t\t\treturn elem.getBoundingClientRect().left;\n\t\t\t\t\t} )\n\t\t\t) + \"px\";\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each( {\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// Assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split( \" \" ) : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( prefix !== \"margin\" ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n} );\n\njQuery.fn.extend( {\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( Array.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t}\n} );\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || jQuery.easing._default;\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\t// Use a property on the element directly when it is not a DOM element,\n\t\t\t// or when there is no matching style property that exists.\n\t\t\tif ( tween.elem.nodeType !== 1 ||\n\t\t\t\ttween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// Passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails.\n\t\t\t// Simple values such as \"10px\" are parsed to Float;\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as-is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\n\t\t\t// Use step hook for back compat.\n\t\t\t// Use cssHook if its there.\n\t\t\t// Use .style if available and use plain properties where available.\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.nodeType === 1 && (\n\t\t\t\tjQuery.cssHooks[ tween.prop ] ||\n\t\t\t\t\ttween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9 only\n// Panic based approach to setting things on disconnected nodes\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t},\n\t_default: \"swing\"\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, inProgress,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trrun = /queueHooks$/;\n\nfunction schedule() {\n\tif ( inProgress ) {\n\t\tif ( document.hidden === false && window.requestAnimationFrame ) {\n\t\t\twindow.requestAnimationFrame( schedule );\n\t\t} else {\n\t\t\twindow.setTimeout( schedule, jQuery.fx.interval );\n\t\t}\n\n\t\tjQuery.fx.tick();\n\t}\n}\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\twindow.setTimeout( function() {\n\t\tfxNow = undefined;\n\t} );\n\treturn ( fxNow = Date.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\ti = 0,\n\t\tattrs = { height: type };\n\n\t// If we include width, step value is 1 to do all cssExpand values,\n\t// otherwise step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {\n\n\t\t\t// We're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\tvar prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,\n\t\tisBox = \"width\" in props || \"height\" in props,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHiddenWithinTree( elem ),\n\t\tdataShow = dataPriv.get( elem, \"fxshow\" );\n\n\t// Queue-skipping animations hijack the fx hooks\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always( function() {\n\n\t\t\t// Ensure the complete handler is called before this completes\n\t\t\tanim.always( function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\t}\n\n\t// Detect show/hide animations\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.test( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// Pretend to be hidden if this is a \"show\" and\n\t\t\t\t// there is still data from a stopped show/hide\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\n\t\t\t\t// Ignore all other no-op show/hide data\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\t\t}\n\t}\n\n\t// Bail out if this is a no-op like .hide().hide()\n\tpropTween = !jQuery.isEmptyObject( props );\n\tif ( !propTween && jQuery.isEmptyObject( orig ) ) {\n\t\treturn;\n\t}\n\n\t// Restrict \"overflow\" and \"display\" styles during box animations\n\tif ( isBox && elem.nodeType === 1 ) {\n\n\t\t// Support: IE <=9 - 11, Edge 12 - 15\n\t\t// Record all 3 overflow attributes because IE does not infer the shorthand\n\t\t// from identically-valued overflowX and overflowY and Edge just mirrors\n\t\t// the overflowX value there.\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Identify a display type, preferring old show/hide data over the CSS cascade\n\t\trestoreDisplay = dataShow && dataShow.display;\n\t\tif ( restoreDisplay == null ) {\n\t\t\trestoreDisplay = dataPriv.get( elem, \"display\" );\n\t\t}\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\tif ( display === \"none\" ) {\n\t\t\tif ( restoreDisplay ) {\n\t\t\t\tdisplay = restoreDisplay;\n\t\t\t} else {\n\n\t\t\t\t// Get nonempty value(s) by temporarily forcing visibility\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t\trestoreDisplay = elem.style.display || restoreDisplay;\n\t\t\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\t\t\tshowHide( [ elem ] );\n\t\t\t}\n\t\t}\n\n\t\t// Animate inline elements as inline-block\n\t\tif ( display === \"inline\" || display === \"inline-block\" && restoreDisplay != null ) {\n\t\t\tif ( jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t\t// Restore the original display value at the end of pure show/hide animations\n\t\t\t\tif ( !propTween ) {\n\t\t\t\t\tanim.done( function() {\n\t\t\t\t\t\tstyle.display = restoreDisplay;\n\t\t\t\t\t} );\n\t\t\t\t\tif ( restoreDisplay == null ) {\n\t\t\t\t\t\tdisplay = style.display;\n\t\t\t\t\t\trestoreDisplay = display === \"none\" ? \"\" : display;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tanim.always( function() {\n\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t} );\n\t}\n\n\t// Implement show/hide animations\n\tpropTween = false;\n\tfor ( prop in orig ) {\n\n\t\t// General show/hide setup for this element animation\n\t\tif ( !propTween ) {\n\t\t\tif ( dataShow ) {\n\t\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\t\thidden = dataShow.hidden;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdataShow = dataPriv.access( elem, \"fxshow\", { display: restoreDisplay } );\n\t\t\t}\n\n\t\t\t// Store hidden/visible for toggle so `.stop().toggle()` \"reverses\"\n\t\t\tif ( toggle ) {\n\t\t\t\tdataShow.hidden = !hidden;\n\t\t\t}\n\n\t\t\t// Show elements before animating them\n\t\t\tif ( hidden ) {\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t}\n\n\t\t\t/* eslint-disable no-loop-func */\n\n\t\t\tanim.done( function() {\n\n\t\t\t\t/* eslint-enable no-loop-func */\n\n\t\t\t\t// The final step of a \"hide\" animation is actually hiding the element\n\t\t\t\tif ( !hidden ) {\n\t\t\t\t\tshowHide( [ elem ] );\n\t\t\t\t}\n\t\t\t\tdataPriv.remove( elem, \"fxshow\" );\n\t\t\t\tfor ( prop in orig ) {\n\t\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Per-property setup\n\t\tpropTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\t\tif ( !( prop in dataShow ) ) {\n\t\t\tdataShow[ prop ] = propTween.start;\n\t\t\tif ( hidden ) {\n\t\t\t\tpropTween.end = propTween.start;\n\t\t\t\tpropTween.start = 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( Array.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// Not quite $.extend, this won't overwrite existing keys.\n\t\t\t// Reusing 'index' because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = Animation.prefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\n\t\t\t// Don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t} ),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\n\t\t\t\t// Support: Android 2.3 only\n\t\t\t\t// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ] );\n\n\t\t\t// If there's more to do, yield\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t}\n\n\t\t\t// If this was an empty animation, synthesize a final progress notification\n\t\t\tif ( !length ) {\n\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t}\n\n\t\t\t// Resolve the animation and report its conclusion\n\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\treturn false;\n\t\t},\n\t\tanimation = deferred.promise( {\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, {\n\t\t\t\tspecialEasing: {},\n\t\t\t\teasing: jQuery.easing._default\n\t\t\t}, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\n\t\t\t\t\t// If we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// Resolve when we played the last frame; otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t} ),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length; index++ ) {\n\t\tresult = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\tif ( isFunction( result.stop ) ) {\n\t\t\t\tjQuery._queueHooks( animation.elem, animation.opts.queue ).stop =\n\t\t\t\t\tresult.stop.bind( result );\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\t// Attach callbacks from options\n\tanimation\n\t\t.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t} )\n\t);\n\n\treturn animation;\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\n\ttweeners: {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value );\n\t\t\tadjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );\n\t\t\treturn tween;\n\t\t} ]\n\t},\n\n\ttweener: function( props, callback ) {\n\t\tif ( isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.match( rnothtmlwhite );\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\tAnimation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];\n\t\t\tAnimation.tweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilters: [ defaultPrefilter ],\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tAnimation.prefilters.unshift( callback );\n\t\t} else {\n\t\t\tAnimation.prefilters.push( callback );\n\t\t}\n\t}\n} );\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tisFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !isFunction( easing ) && easing\n\t};\n\n\t// Go to the end state if fx are off\n\tif ( jQuery.fx.off ) {\n\t\topt.duration = 0;\n\n\t} else {\n\t\tif ( typeof opt.duration !== \"number\" ) {\n\t\t\tif ( opt.duration in jQuery.fx.speeds ) {\n\t\t\t\topt.duration = jQuery.fx.speeds[ opt.duration ];\n\n\t\t\t} else {\n\t\t\t\topt.duration = jQuery.fx.speeds._default;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend( {\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// Show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHiddenWithinTree ).css( \"opacity\", 0 ).show()\n\n\t\t\t// Animate to the value specified\n\t\t\t.end().animate( { opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || dataPriv.get( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\n\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = dataPriv.get( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this &&\n\t\t\t\t\t( type == null || timers[ index ].queue === type ) ) {\n\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Start the next in the queue if the last step wasn't forced.\n\t\t\t// Timers currently will call their complete callbacks, which\n\t\t\t// will dequeue but only if they were gotoEnd.\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t} );\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tvar index,\n\t\t\t\tdata = dataPriv.get( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// Enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// Empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// Look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t} );\n\t}\n} );\n\njQuery.each( [ \"toggle\", \"show\", \"hide\" ], function( _i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n} );\n\n// Generate shortcuts for custom animations\njQuery.each( {\n\tslideDown: genFx( \"show\" ),\n\tslideUp: genFx( \"hide\" ),\n\tslideToggle: genFx( \"toggle\" ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n} );\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ti = 0,\n\t\ttimers = jQuery.timers;\n\n\tfxNow = Date.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\n\t\t// Run the timer and safely remove it when done (allowing for external removal)\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tjQuery.fx.start();\n};\n\njQuery.fx.interval = 13;\njQuery.fx.start = function() {\n\tif ( inProgress ) {\n\t\treturn;\n\t}\n\n\tinProgress = true;\n\tschedule();\n};\n\njQuery.fx.stop = function() {\n\tinProgress = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = window.setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\twindow.clearTimeout( timeout );\n\t\t};\n\t} );\n};\n\n\n( function() {\n\tvar input = document.createElement( \"input\" ),\n\t\tselect = document.createElement( \"select\" ),\n\t\topt = select.appendChild( document.createElement( \"option\" ) );\n\n\tinput.type = \"checkbox\";\n\n\t// Support: Android <=4.3 only\n\t// Default value for a checkbox should be \"on\"\n\tsupport.checkOn = input.value !== \"\";\n\n\t// Support: IE <=11 only\n\t// Must access selectedIndex to make default options select\n\tsupport.optSelected = opt.selected;\n\n\t// Support: IE <=11 only\n\t// An input loses its value after becoming a radio\n\tinput = document.createElement( \"input\" );\n\tinput.value = \"t\";\n\tinput.type = \"radio\";\n\tsupport.radioValue = input.value === \"t\";\n} )();\n\n\nvar boolHook,\n\tattrHandle = jQuery.expr.attrHandle;\n\njQuery.fn.extend( {\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tattr: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set attributes on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// Attribute hooks are determined by the lowercase version\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\thooks = jQuery.attrHooks[ name.toLowerCase() ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\treturn value;\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tret = jQuery.find.attr( elem, name );\n\n\t\t// Non-existent attributes return null, we normalize to undefined\n\t\treturn ret == null ? undefined : ret;\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" &&\n\t\t\t\t\tnodeName( elem, \"input\" ) ) {\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name,\n\t\t\ti = 0,\n\n\t\t\t// Attribute names can contain non-HTML whitespace characters\n\t\t\t// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n\t\t\tattrNames = value && value.match( rnothtmlwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( ( name = attrNames[ i++ ] ) ) {\n\t\t\t\telem.removeAttribute( name );\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Hooks for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else {\n\t\t\telem.setAttribute( name, name );\n\t\t}\n\t\treturn name;\n\t}\n};\n\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( _i, name ) {\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = function( elem, name, isXML ) {\n\t\tvar ret, handle,\n\t\t\tlowercaseName = name.toLowerCase();\n\n\t\tif ( !isXML ) {\n\n\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\thandle = attrHandle[ lowercaseName ];\n\t\t\tattrHandle[ lowercaseName ] = ret;\n\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\tlowercaseName :\n\t\t\t\tnull;\n\t\t\tattrHandle[ lowercaseName ] = handle;\n\t\t}\n\t\treturn ret;\n\t};\n} );\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend( {\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tdelete this[ jQuery.propFix[ name ] || name ];\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set properties on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\treturn ( elem[ name ] = value );\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\treturn elem[ name ];\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\t// Support: IE <=9 - 11 only\n\t\t\t\t// elem.tabIndex doesn't always return the\n\t\t\t\t// correct value when it hasn't been explicitly set\n\t\t\t\t// https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\tif ( tabindex ) {\n\t\t\t\t\treturn parseInt( tabindex, 10 );\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\trfocusable.test( elem.nodeName ) ||\n\t\t\t\t\trclickable.test( elem.nodeName ) &&\n\t\t\t\t\telem.href\n\t\t\t\t) {\n\t\t\t\t\treturn 0;\n\t\t\t\t}\n\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t}\n} );\n\n// Support: IE <=11 only\n// Accessing the selectedIndex property\n// forces the browser to respect setting selected\n// on the option\n// The getter ensures a default option is selected\n// when in an optgroup\n// eslint rule \"no-unused-expressions\" is disabled for this code\n// since it considers such accessions noop\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent && parent.parentNode ) {\n\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\t\tset: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\njQuery.each( [\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n} );\n\n\n\n\n\t// Strip and collapse whitespace according to HTML spec\n\t// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace\n\tfunction stripAndCollapse( value ) {\n\t\tvar tokens = value.match( rnothtmlwhite ) || [];\n\t\treturn tokens.join( \" \" );\n\t}\n\n\nfunction getClass( elem ) {\n\treturn elem.getAttribute && elem.getAttribute( \"class\" ) || \"\";\n}\n\nfunction classesToArray( value ) {\n\tif ( Array.isArray( value ) ) {\n\t\treturn value;\n\t}\n\tif ( typeof value === \"string\" ) {\n\t\treturn value.match( rnothtmlwhite ) || [];\n\t}\n\treturn [];\n}\n\njQuery.fn.extend( {\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( !arguments.length ) {\n\t\t\treturn this.attr( \"class\", \"\" );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) > -1 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value,\n\t\t\tisValidValue = type === \"string\" || Array.isArray( value );\n\n\t\tif ( typeof stateVal === \"boolean\" && isValidValue ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).toggleClass(\n\t\t\t\t\tvalue.call( this, i, getClass( this ), stateVal ),\n\t\t\t\t\tstateVal\n\t\t\t\t);\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar className, i, self, classNames;\n\n\t\t\tif ( isValidValue ) {\n\n\t\t\t\t// Toggle individual class names\n\t\t\t\ti = 0;\n\t\t\t\tself = jQuery( this );\n\t\t\t\tclassNames = classesToArray( value );\n\n\t\t\t\twhile ( ( className = classNames[ i++ ] ) ) {\n\n\t\t\t\t\t// Check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( value === undefined || type === \"boolean\" ) {\n\t\t\t\tclassName = getClass( this );\n\t\t\t\tif ( className ) {\n\n\t\t\t\t\t// Store className if set\n\t\t\t\t\tdataPriv.set( this, \"__className__\", className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed `false`,\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tif ( this.setAttribute ) {\n\t\t\t\t\tthis.setAttribute( \"class\",\n\t\t\t\t\t\tclassName || value === false ?\n\t\t\t\t\t\t\t\"\" :\n\t\t\t\t\t\t\tdataPriv.get( this, \"__className__\" ) || \"\"\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className, elem,\n\t\t\ti = 0;\n\n\t\tclassName = \" \" + selector + \" \";\n\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\tif ( elem.nodeType === 1 &&\n\t\t\t\t( \" \" + stripAndCollapse( getClass( elem ) ) + \" \" ).indexOf( className ) > -1 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n} );\n\n\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend( {\n\tval: function( value ) {\n\t\tvar hooks, ret, valueIsFunction,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] ||\n\t\t\t\t\tjQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks &&\n\t\t\t\t\t\"get\" in hooks &&\n\t\t\t\t\t( ret = hooks.get( elem, \"value\" ) ) !== undefined\n\t\t\t\t) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\t// Handle most common string cases\n\t\t\t\tif ( typeof ret === \"string\" ) {\n\t\t\t\t\treturn ret.replace( rreturn, \"\" );\n\t\t\t\t}\n\n\t\t\t\t// Handle cases where value is null/undef or number\n\t\t\t\treturn ret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tvalueIsFunction = isFunction( value );\n\n\t\treturn this.each( function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\n\t\t\t} else if ( Array.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !( \"set\" in hooks ) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\n\t\t\t\t\t// Support: IE <=10 - 11 only\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\t// Strip and collapse whitespace\n\t\t\t\t\t// https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n\t\t\t\t\tstripAndCollapse( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option, i,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\",\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length;\n\n\t\t\t\tif ( index < 0 ) {\n\t\t\t\t\ti = max;\n\n\t\t\t\t} else {\n\t\t\t\t\ti = one ? index : 0;\n\t\t\t\t}\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t// IE8-9 doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t!option.disabled &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled ||\n\t\t\t\t\t\t\t\t!nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t/* eslint-disable no-cond-assign */\n\n\t\t\t\t\tif ( option.selected =\n\t\t\t\t\t\tjQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1\n\t\t\t\t\t) {\n\t\t\t\t\t\toptionSet = true;\n\t\t\t\t\t}\n\n\t\t\t\t\t/* eslint-enable no-cond-assign */\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\t\t\t\treturn values;\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Radios and checkboxes getter/setter\njQuery.each( [ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( Array.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\treturn elem.getAttribute( \"value\" ) === null ? \"on\" : elem.value;\n\t\t};\n\t}\n} );\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\nsupport.focusin = \"onfocusin\" in window;\n\n\nvar rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\tstopPropagationCallback = function( e ) {\n\t\te.stopPropagation();\n\t};\n\njQuery.extend( jQuery.event, {\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\n\t\tvar i, cur, tmp, bubbleType, ontype, handle, special, lastElement,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split( \".\" ) : [];\n\n\t\tcur = lastElement = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) > -1 ) {\n\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split( \".\" );\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf( \":\" ) < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.rnamespace = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === ( elem.ownerDocument || document ) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tlastElement = cur;\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = ( dataPriv.get( cur, \"events\" ) || Object.create( null ) )[ event.type ] &&\n\t\t\t\tdataPriv.get( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( ( !special._default ||\n\t\t\t\tspecial._default.apply( eventPath.pop(), data ) === false ) &&\n\t\t\t\tacceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name as the event.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.addEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\telem[ type ]();\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.removeEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\t// Piggyback on a donor event to simulate a different one\n\t// Used only for `focus(in | out)` events\n\tsimulate: function( type, elem, event ) {\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true\n\t\t\t}\n\t\t);\n\n\t\tjQuery.event.trigger( e, null, elem );\n\t}\n\n} );\n\njQuery.fn.extend( {\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t} );\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[ 0 ];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n} );\n\n\n// Support: Firefox <=44\n// Firefox doesn't have focus(in | out) events\n// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n//\n// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1\n// focus(in | out) events fire after focus & blur events,\n// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857\nif ( !support.focusin ) {\n\tjQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );\n\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\n\t\t\t\t// Handle: regular nodes (via `this.ownerDocument`), window\n\t\t\t\t// (via `this.document`) & document (via `this`).\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tdataPriv.access( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tdataPriv.remove( doc, fix );\n\n\t\t\t\t} else {\n\t\t\t\t\tdataPriv.access( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t} );\n}\nvar location = window.location;\n\nvar nonce = { guid: Date.now() };\n\nvar rquery = ( /\\?/ );\n\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml, parserErrorElem;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\n\t// Support: IE 9 - 11 only\n\t// IE throws on parseFromString with invalid input.\n\ttry {\n\t\txml = ( new window.DOMParser() ).parseFromString( data, \"text/xml\" );\n\t} catch ( e ) {}\n\n\tparserErrorElem = xml && xml.getElementsByTagName( \"parsererror\" )[ 0 ];\n\tif ( !xml || parserErrorElem ) {\n\t\tjQuery.error( \"Invalid XML: \" + (\n\t\t\tparserErrorElem ?\n\t\t\t\tjQuery.map( parserErrorElem.childNodes, function( el ) {\n\t\t\t\t\treturn el.textContent;\n\t\t\t\t} ).join( \"\\n\" ) :\n\t\t\t\tdata\n\t\t) );\n\t}\n\treturn xml;\n};\n\n\nvar\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( Array.isArray( obj ) ) {\n\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams(\n\t\t\t\t\tprefix + \"[\" + ( typeof v === \"object\" && v != null ? i : \"\" ) + \"]\",\n\t\t\t\t\tv,\n\t\t\t\t\ttraditional,\n\t\t\t\t\tadd\n\t\t\t\t);\n\t\t\t}\n\t\t} );\n\n\t} else if ( !traditional && toType( obj ) === \"object\" ) {\n\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, valueOrFunction ) {\n\n\t\t\t// If value is a function, invoke it and use its return value\n\t\t\tvar value = isFunction( valueOrFunction ) ?\n\t\t\t\tvalueOrFunction() :\n\t\t\t\tvalueOrFunction;\n\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" +\n\t\t\t\tencodeURIComponent( value == null ? \"\" : value );\n\t\t};\n\n\tif ( a == null ) {\n\t\treturn \"\";\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t} );\n\n\t} else {\n\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" );\n};\n\njQuery.fn.extend( {\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map( function() {\n\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t} ).filter( function() {\n\t\t\tvar type = this.type;\n\n\t\t\t// Use .is( \":disabled\" ) so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t} ).map( function( _i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\tif ( val == null ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tif ( Array.isArray( val ) ) {\n\t\t\t\treturn jQuery.map( val, function( val ) {\n\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t} ).get();\n\t}\n} );\n\n\nvar\n\tr20 = /%20/g,\n\trhash = /#.*$/,\n\trantiCache = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)$/mg,\n\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat( \"*\" ),\n\n\t// Anchor tag for parsing the document origin\n\toriginAnchor = document.createElement( \"a\" );\n\noriginAnchor.href = location.href;\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];\n\n\t\tif ( isFunction( func ) ) {\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( ( dataType = dataTypes[ i++ ] ) ) {\n\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType[ 0 ] === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" &&\n\t\t\t\t!seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t} );\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar key, deep,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\n\tvar ct, type, finalDataType, firstDataType,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"Content-Type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[ 0 ] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s.throws ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tstate: \"parsererror\",\n\t\t\t\t\t\t\t\terror: conv ? e : \"No conversion from \" + prev + \" to \" + current\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend( {\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: location.href,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( location.protocol ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /\\bxml\\b/,\n\t\t\thtml: /\\bhtml/,\n\t\t\tjson: /\\bjson\\b/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": JSON.parse,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar transport,\n\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\n\t\t\t// Response headers\n\t\t\tresponseHeadersString,\n\t\t\tresponseHeaders,\n\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// Url cleanup var\n\t\t\turlAnchor,\n\n\t\t\t// Request state (becomes false upon send and true upon completion)\n\t\t\tcompleted,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\t// Loop variable\n\t\t\ti,\n\n\t\t\t// uncached part of the url\n\t\t\tuncached,\n\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context &&\n\t\t\t\t( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\tjQuery.event,\n\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( completed ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[ 1 ].toLowerCase() + \" \" ] =\n\t\t\t\t\t\t\t\t\t( responseHeaders[ match[ 1 ].toLowerCase() + \" \" ] || [] )\n\t\t\t\t\t\t\t\t\t\t.concat( match[ 2 ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() + \" \" ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match.join( \", \" );\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn completed ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\tname = requestHeadersNames[ name.toLowerCase() ] =\n\t\t\t\t\t\t\trequestHeadersNames[ name.toLowerCase() ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( completed ) {\n\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Lazy-add the new callbacks in a way that preserves old ones\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR );\n\n\t\t// Add protocol if not provided (prefilters might expect it)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || location.href ) + \"\" )\n\t\t\t.replace( rprotocol, location.protocol + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = ( s.dataType || \"*\" ).toLowerCase().match( rnothtmlwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when the origin doesn't match the current origin.\n\t\tif ( s.crossDomain == null ) {\n\t\t\turlAnchor = document.createElement( \"a\" );\n\n\t\t\t// Support: IE <=8 - 11, Edge 12 - 15\n\t\t\t// IE throws exception on accessing the href property if url is malformed,\n\t\t\t// e.g. http://example.com:80x/\n\t\t\ttry {\n\t\t\t\turlAnchor.href = s.url;\n\n\t\t\t\t// Support: IE <=8 - 11 only\n\t\t\t\t// Anchor's host property isn't correctly set when s.url is relative\n\t\t\t\turlAnchor.href = urlAnchor.href;\n\t\t\t\ts.crossDomain = originAnchor.protocol + \"//\" + originAnchor.host !==\n\t\t\t\t\turlAnchor.protocol + \"//\" + urlAnchor.host;\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// If there is an error parsing the URL, assume it is crossDomain,\n\t\t\t\t// it can be rejected by the transport if it is invalid\n\t\t\t\ts.crossDomain = true;\n\t\t\t}\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( completed ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\t// Remove hash to simplify url manipulation\n\t\tcacheURL = s.url.replace( rhash, \"\" );\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// Remember the hash so we can put it back\n\t\t\tuncached = s.url.slice( cacheURL.length );\n\n\t\t\t// If data is available and should be processed, append data to url\n\t\t\tif ( s.data && ( s.processData || typeof s.data === \"string\" ) ) {\n\t\t\t\tcacheURL += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data;\n\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add or update anti-cache param if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\tcacheURL = cacheURL.replace( rantiCache, \"$1\" );\n\t\t\t\tuncached = ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + ( nonce.guid++ ) +\n\t\t\t\t\tuncached;\n\t\t\t}\n\n\t\t\t// Put hash and anti-cache on the URL that will be requested (gh-1732)\n\t\t\ts.url = cacheURL + uncached;\n\n\t\t// Change '%20' to '+' if this is encoded form body content (gh-2658)\n\t\t} else if ( s.data && s.processData &&\n\t\t\t( s.contentType || \"\" ).indexOf( \"application/x-www-form-urlencoded\" ) === 0 ) {\n\t\t\ts.data = s.data.replace( r20, \"+\" );\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[ 0 ] ] +\n\t\t\t\t\t( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend &&\n\t\t\t( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {\n\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// Aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tcompleteDeferred.add( s.complete );\n\t\tjqXHR.done( s.success );\n\t\tjqXHR.fail( s.error );\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\n\t\t\t// If request was aborted inside ajaxSend, stop there\n\t\t\tif ( completed ) {\n\t\t\t\treturn jqXHR;\n\t\t\t}\n\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = window.setTimeout( function() {\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tcompleted = false;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// Rethrow post-completion exceptions\n\t\t\t\tif ( completed ) {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\n\t\t\t\t// Propagate others as results\n\t\t\t\tdone( -1, e );\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Ignore repeat invocations\n\t\t\tif ( completed ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tcompleted = true;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\twindow.clearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Use a noop converter for missing script but not if jsonp\n\t\t\tif ( !isSuccess &&\n\t\t\t\tjQuery.inArray( \"script\", s.dataTypes ) > -1 &&\n\t\t\t\tjQuery.inArray( \"json\", s.dataTypes ) < 0 ) {\n\t\t\t\ts.converters[ \"text script\" ] = function() {};\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"Last-Modified\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"etag\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Extract error from statusText and normalize for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n} );\n\njQuery.each( [ \"get\", \"post\" ], function( _i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\n\t\t// Shift arguments if data argument was omitted\n\t\tif ( isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\t// The url can be an options object (which then must have .url)\n\t\treturn jQuery.ajax( jQuery.extend( {\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t}, jQuery.isPlainObject( url ) && url ) );\n\t};\n} );\n\njQuery.ajaxPrefilter( function( s ) {\n\tvar i;\n\tfor ( i in s.headers ) {\n\t\tif ( i.toLowerCase() === \"content-type\" ) {\n\t\t\ts.contentType = s.headers[ i ] || \"\";\n\t\t}\n\t}\n} );\n\n\njQuery._evalUrl = function( url, options, doc ) {\n\treturn jQuery.ajax( {\n\t\turl: url,\n\n\t\t// Make this explicit, since user can override this through ajaxSetup (#11264)\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tcache: true,\n\t\tasync: false,\n\t\tglobal: false,\n\n\t\t// Only evaluate the response if it is successful (gh-4126)\n\t\t// dataFilter is not invoked for failure responses, so using it instead\n\t\t// of the default converter is kludgy but it works.\n\t\tconverters: {\n\t\t\t\"text script\": function() {}\n\t\t},\n\t\tdataFilter: function( response ) {\n\t\t\tjQuery.globalEval( response, options, doc );\n\t\t}\n\t} );\n};\n\n\njQuery.fn.extend( {\n\twrapAll: function( html ) {\n\t\tvar wrap;\n\n\t\tif ( this[ 0 ] ) {\n\t\t\tif ( isFunction( html ) ) {\n\t\t\t\thtml = html.call( this[ 0 ] );\n\t\t\t}\n\n\t\t\t// The elements to wrap the target around\n\t\t\twrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );\n\n\t\t\tif ( this[ 0 ].parentNode ) {\n\t\t\t\twrap.insertBefore( this[ 0 ] );\n\t\t\t}\n\n\t\t\twrap.map( function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstElementChild ) {\n\t\t\t\t\telem = elem.firstElementChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t} ).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapInner( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t} );\n\t},\n\n\twrap: function( html ) {\n\t\tvar htmlIsFunction = isFunction( html );\n\n\t\treturn this.each( function( i ) {\n\t\t\tjQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );\n\t\t} );\n\t},\n\n\tunwrap: function( selector ) {\n\t\tthis.parent( selector ).not( \"body\" ).each( function() {\n\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t} );\n\t\treturn this;\n\t}\n} );\n\n\njQuery.expr.pseudos.hidden = function( elem ) {\n\treturn !jQuery.expr.pseudos.visible( elem );\n};\njQuery.expr.pseudos.visible = function( elem ) {\n\treturn !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );\n};\n\n\n\n\njQuery.ajaxSettings.xhr = function() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch ( e ) {}\n};\n\nvar xhrSuccessStatus = {\n\n\t\t// File protocol always yields status code 0, assume 200\n\t\t0: 200,\n\n\t\t// Support: IE <=9 only\n\t\t// #1450: sometimes IE returns 1223 when it should be 204\n\t\t1223: 204\n\t},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nsupport.ajax = xhrSupported = !!xhrSupported;\n\njQuery.ajaxTransport( function( options ) {\n\tvar callback, errorCallback;\n\n\t// Cross domain only allowed if supported through XMLHttpRequest\n\tif ( support.cors || xhrSupported && !options.crossDomain ) {\n\t\treturn {\n\t\t\tsend: function( headers, complete ) {\n\t\t\t\tvar i,\n\t\t\t\t\txhr = options.xhr();\n\n\t\t\t\txhr.open(\n\t\t\t\t\toptions.type,\n\t\t\t\t\toptions.url,\n\t\t\t\t\toptions.async,\n\t\t\t\t\toptions.username,\n\t\t\t\t\toptions.password\n\t\t\t\t);\n\n\t\t\t\t// Apply custom fields if provided\n\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Override mime type if needed\n\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t}\n\n\t\t\t\t// X-Requested-With header\n\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\tif ( !options.crossDomain && !headers[ \"X-Requested-With\" ] ) {\n\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t}\n\n\t\t\t\t// Set headers\n\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] );\n\t\t\t\t}\n\n\t\t\t\t// Callback\n\t\t\t\tcallback = function( type ) {\n\t\t\t\t\treturn function() {\n\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\tcallback = errorCallback = xhr.onload =\n\t\t\t\t\t\t\t\txhr.onerror = xhr.onabort = xhr.ontimeout =\n\t\t\t\t\t\t\t\t\txhr.onreadystatechange = null;\n\n\t\t\t\t\t\t\tif ( type === \"abort\" ) {\n\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t} else if ( type === \"error\" ) {\n\n\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t// On a manual native abort, IE9 throws\n\t\t\t\t\t\t\t\t// errors on any property access that is not readyState\n\t\t\t\t\t\t\t\tif ( typeof xhr.status !== \"number\" ) {\n\t\t\t\t\t\t\t\t\tcomplete( 0, \"error\" );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcomplete(\n\n\t\t\t\t\t\t\t\t\t\t// File: protocol always yields status 0; see #8605, #14207\n\t\t\t\t\t\t\t\t\t\txhr.status,\n\t\t\t\t\t\t\t\t\t\txhr.statusText\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tcomplete(\n\t\t\t\t\t\t\t\t\txhrSuccessStatus[ xhr.status ] || xhr.status,\n\t\t\t\t\t\t\t\t\txhr.statusText,\n\n\t\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t\t// IE9 has no XHR2 but throws on binary (trac-11426)\n\t\t\t\t\t\t\t\t\t// For XHR2 non-text, let the caller handle it (gh-2498)\n\t\t\t\t\t\t\t\t\t( xhr.responseType || \"text\" ) !== \"text\"  ||\n\t\t\t\t\t\t\t\t\ttypeof xhr.responseText !== \"string\" ?\n\t\t\t\t\t\t\t\t\t\t{ binary: xhr.response } :\n\t\t\t\t\t\t\t\t\t\t{ text: xhr.responseText },\n\t\t\t\t\t\t\t\t\txhr.getAllResponseHeaders()\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t};\n\n\t\t\t\t// Listen to events\n\t\t\t\txhr.onload = callback();\n\t\t\t\terrorCallback = xhr.onerror = xhr.ontimeout = callback( \"error\" );\n\n\t\t\t\t// Support: IE 9 only\n\t\t\t\t// Use onreadystatechange to replace onabort\n\t\t\t\t// to handle uncaught aborts\n\t\t\t\tif ( xhr.onabort !== undefined ) {\n\t\t\t\t\txhr.onabort = errorCallback;\n\t\t\t\t} else {\n\t\t\t\t\txhr.onreadystatechange = function() {\n\n\t\t\t\t\t\t// Check readyState before timeout as it changes\n\t\t\t\t\t\tif ( xhr.readyState === 4 ) {\n\n\t\t\t\t\t\t\t// Allow onerror to be called first,\n\t\t\t\t\t\t\t// but that will not handle a native abort\n\t\t\t\t\t\t\t// Also, save errorCallback to a variable\n\t\t\t\t\t\t\t// as xhr.onerror cannot be accessed\n\t\t\t\t\t\t\twindow.setTimeout( function() {\n\t\t\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\t\t\terrorCallback();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\t// Create the abort callback\n\t\t\t\tcallback = callback( \"abort\" );\n\n\t\t\t\ttry {\n\n\t\t\t\t\t// Do send the request (this may raise an exception)\n\t\t\t\t\txhr.send( options.hasContent && options.data || null );\n\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t// #14683: Only rethrow if this hasn't been notified as an error yet\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tthrow e;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\n// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)\njQuery.ajaxPrefilter( function( s ) {\n\tif ( s.crossDomain ) {\n\t\ts.contents.script = false;\n\t}\n} );\n\n// Install script dataType\njQuery.ajaxSetup( {\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, \" +\n\t\t\t\"application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /\\b(?:java|ecma)script\\b/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n} );\n\n// Handle cache's special case and crossDomain\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t}\n} );\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function( s ) {\n\n\t// This transport only deals with cross domain or forced-by-attrs requests\n\tif ( s.crossDomain || s.scriptAttrs ) {\n\t\tvar script, callback;\n\t\treturn {\n\t\t\tsend: function( _, complete ) {\n\t\t\t\tscript = jQuery( \"<script>\" )\n\t\t\t\t\t.attr( s.scriptAttrs || {} )\n\t\t\t\t\t.prop( { charset: s.scriptCharset, src: s.url } )\n\t\t\t\t\t.on( \"load error\", callback = function( evt ) {\n\t\t\t\t\t\tscript.remove();\n\t\t\t\t\t\tcallback = null;\n\t\t\t\t\t\tif ( evt ) {\n\t\t\t\t\t\t\tcomplete( evt.type === \"error\" ? 404 : 200, evt.type );\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\tdocument.head.appendChild( script[ 0 ] );\n\t\t\t},\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup( {\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce.guid++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n} );\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" &&\n\t\t\t\t( s.contentType || \"\" )\n\t\t\t\t\t.indexOf( \"application/x-www-form-urlencoded\" ) === 0 &&\n\t\t\t\trjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[ \"script json\" ] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// Force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always( function() {\n\n\t\t\t// If previous value didn't exist - remove it\n\t\t\tif ( overwritten === undefined ) {\n\t\t\t\tjQuery( window ).removeProp( callbackName );\n\n\t\t\t// Otherwise restore preexisting value\n\t\t\t} else {\n\t\t\t\twindow[ callbackName ] = overwritten;\n\t\t\t}\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\n\t\t\t\t// Make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// Save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t} );\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n} );\n\n\n\n\n// Support: Safari 8 only\n// In Safari 8 documents created via document.implementation.createHTMLDocument\n// collapse sibling forms: the second one becomes a child of the first one.\n// Because of that, this security measure has to be disabled in Safari 8.\n// https://bugs.webkit.org/show_bug.cgi?id=137337\nsupport.createHTMLDocument = ( function() {\n\tvar body = document.implementation.createHTMLDocument( \"\" ).body;\n\tbody.innerHTML = \"<form></form><form></form>\";\n\treturn body.childNodes.length === 2;\n} )();\n\n\n// Argument \"data\" should be string of html\n// context (optional): If specified, the fragment will be created in this context,\n// defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( typeof data !== \"string\" ) {\n\t\treturn [];\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\n\tvar base, parsed, scripts;\n\n\tif ( !context ) {\n\n\t\t// Stop scripts or inline event handlers from being executed immediately\n\t\t// by using document.implementation\n\t\tif ( support.createHTMLDocument ) {\n\t\t\tcontext = document.implementation.createHTMLDocument( \"\" );\n\n\t\t\t// Set the base href for the created document\n\t\t\t// so any parsed elements with URLs\n\t\t\t// are based on the document's URL (gh-2965)\n\t\t\tbase = context.createElement( \"base\" );\n\t\t\tbase.href = document.location.href;\n\t\t\tcontext.head.appendChild( base );\n\t\t} else {\n\t\t\tcontext = document;\n\t\t}\n\t}\n\n\tparsed = rsingleTag.exec( data );\n\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[ 1 ] ) ];\n\t}\n\n\tparsed = buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tvar selector, type, response,\n\t\tself = this,\n\t\toff = url.indexOf( \" \" );\n\n\tif ( off > -1 ) {\n\t\tselector = stripAndCollapse( url.slice( off ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax( {\n\t\t\turl: url,\n\n\t\t\t// If \"type\" variable is undefined, then \"GET\" method will be used.\n\t\t\t// Make value of this field explicit since\n\t\t\t// user can override it through ajaxSetup method\n\t\t\ttype: type || \"GET\",\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t} ).done( function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery( \"<div>\" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t// If the request succeeds, this function gets \"data\", \"status\", \"jqXHR\"\n\t\t// but they are ignored because response was set above.\n\t\t// If it fails, this function gets \"jqXHR\", \"status\", \"error\"\n\t\t} ).always( callback && function( jqXHR, status ) {\n\t\t\tself.each( function() {\n\t\t\t\tcallback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t\t} );\n\t\t} );\n\t}\n\n\treturn this;\n};\n\n\n\n\njQuery.expr.pseudos.animated = function( elem ) {\n\treturn jQuery.grep( jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t} ).length;\n};\n\n\n\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// Set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\t( curCSSTop + curCSSLeft ).indexOf( \"auto\" ) > -1;\n\n\t\t// Need to be able to calculate position if either\n\t\t// top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( isFunction( options ) ) {\n\n\t\t\t// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)\n\t\t\toptions = options.call( elem, i, jQuery.extend( {}, curOffset ) );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend( {\n\n\t// offset() relates an element's border box to the document origin\n\toffset: function( options ) {\n\n\t\t// Preserve chaining for setter\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each( function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t} );\n\t\t}\n\n\t\tvar rect, win,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !elem ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Return zeros for disconnected and hidden (display: none) elements (gh-2310)\n\t\t// Support: IE <=11 only\n\t\t// Running getBoundingClientRect on a\n\t\t// disconnected node in IE throws an error\n\t\tif ( !elem.getClientRects().length ) {\n\t\t\treturn { top: 0, left: 0 };\n\t\t}\n\n\t\t// Get document-relative position by adding viewport scroll to viewport-relative gBCR\n\t\trect = elem.getBoundingClientRect();\n\t\twin = elem.ownerDocument.defaultView;\n\t\treturn {\n\t\t\ttop: rect.top + win.pageYOffset,\n\t\t\tleft: rect.left + win.pageXOffset\n\t\t};\n\t},\n\n\t// position() relates an element's margin box to its offset parent's padding box\n\t// This corresponds to the behavior of CSS absolute positioning\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset, doc,\n\t\t\telem = this[ 0 ],\n\t\t\tparentOffset = { top: 0, left: 0 };\n\n\t\t// position:fixed elements are offset from the viewport, which itself always has zero offset\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\n\t\t\t// Assume position:fixed implies availability of getBoundingClientRect\n\t\t\toffset = elem.getBoundingClientRect();\n\n\t\t} else {\n\t\t\toffset = this.offset();\n\n\t\t\t// Account for the *real* offset parent, which can be the document or its root element\n\t\t\t// when a statically positioned element is identified\n\t\t\tdoc = elem.ownerDocument;\n\t\t\toffsetParent = elem.offsetParent || doc.documentElement;\n\t\t\twhile ( offsetParent &&\n\t\t\t\t( offsetParent === doc.body || offsetParent === doc.documentElement ) &&\n\t\t\t\tjQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\n\t\t\t\toffsetParent = offsetParent.parentNode;\n\t\t\t}\n\t\t\tif ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {\n\n\t\t\t\t// Incorporate borders into its offset, since they are outside its content origin\n\t\t\t\tparentOffset = jQuery( offsetParent ).offset();\n\t\t\t\tparentOffset.top += jQuery.css( offsetParent, \"borderTopWidth\", true );\n\t\t\t\tparentOffset.left += jQuery.css( offsetParent, \"borderLeftWidth\", true );\n\t\t\t}\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\treturn {\n\t\t\ttop: offset.top - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true )\n\t\t};\n\t},\n\n\t// This method will return documentElement in the following cases:\n\t// 1) For the element inside the iframe without offsetParent, this method will return\n\t//    documentElement of the parent window\n\t// 2) For the hidden or detached element\n\t// 3) For body or html element, i.e. in case of the html node - it will return itself\n\t//\n\t// but those exceptions were never presented as a real life use-cases\n\t// and might be considered as more preferable results.\n\t//\n\t// This logic, however, is not guaranteed and can change at any point in the future\n\toffsetParent: function() {\n\t\treturn this.map( function() {\n\t\t\tvar offsetParent = this.offsetParent;\n\n\t\t\twhile ( offsetParent && jQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\n\t\t\treturn offsetParent || documentElement;\n\t\t} );\n\t}\n} );\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = \"pageYOffset\" === prop;\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\n\t\t\t// Coalesce documents and windows\n\t\t\tvar win;\n\t\t\tif ( isWindow( elem ) ) {\n\t\t\t\twin = elem;\n\t\t\t} else if ( elem.nodeType === 9 ) {\n\t\t\t\twin = elem.defaultView;\n\t\t\t}\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? win[ prop ] : elem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : win.pageXOffset,\n\t\t\t\t\ttop ? val : win.pageYOffset\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length );\n\t};\n} );\n\n// Support: Safari <=7 - 9.1, Chrome <=37 - 49\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347\n// getComputedStyle returns percent when specified for top/left/bottom/right;\n// rather than make the css module depend on the offset module, just check for it here\njQuery.each( [ \"top\", \"left\" ], function( _i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\n\t\t\t\t// If curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n} );\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( {\n\t\tpadding: \"inner\" + name,\n\t\tcontent: type,\n\t\t\"\": \"outer\" + name\n\t}, function( defaultExtra, funcName ) {\n\n\t\t// Margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( isWindow( elem ) ) {\n\n\t\t\t\t\t// $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)\n\t\t\t\t\treturn funcName.indexOf( \"outer\" ) === 0 ?\n\t\t\t\t\t\telem[ \"inner\" + name ] :\n\t\t\t\t\t\telem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],\n\t\t\t\t\t// whichever is greatest\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable );\n\t\t};\n\t} );\n} );\n\n\njQuery.each( [\n\t\"ajaxStart\",\n\t\"ajaxStop\",\n\t\"ajaxComplete\",\n\t\"ajaxError\",\n\t\"ajaxSuccess\",\n\t\"ajaxSend\"\n], function( _i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n} );\n\n\n\n\njQuery.fn.extend( {\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ?\n\t\t\tthis.off( selector, \"**\" ) :\n\t\t\tthis.off( types, selector || \"**\", fn );\n\t},\n\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t}\n} );\n\njQuery.each(\n\t( \"blur focus focusin focusout resize scroll click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup contextmenu\" ).split( \" \" ),\n\tfunction( _i, name ) {\n\n\t\t// Handle event binding\n\t\tjQuery.fn[ name ] = function( data, fn ) {\n\t\t\treturn arguments.length > 0 ?\n\t\t\t\tthis.on( name, null, data, fn ) :\n\t\t\t\tthis.trigger( name );\n\t\t};\n\t}\n);\n\n\n\n\n// Support: Android <=4.0 only\n// Make sure we trim BOM and NBSP\nvar rtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g;\n\n// Bind a function to a context, optionally partially applying any\n// arguments.\n// jQuery.proxy is deprecated to promote standards (specifically Function#bind)\n// However, it is not slated for removal any time soon\njQuery.proxy = function( fn, context ) {\n\tvar tmp, args, proxy;\n\n\tif ( typeof context === \"string\" ) {\n\t\ttmp = fn[ context ];\n\t\tcontext = fn;\n\t\tfn = tmp;\n\t}\n\n\t// Quick check to determine if target is callable, in the spec\n\t// this throws a TypeError, but we will just return undefined.\n\tif ( !isFunction( fn ) ) {\n\t\treturn undefined;\n\t}\n\n\t// Simulated bind\n\targs = slice.call( arguments, 2 );\n\tproxy = function() {\n\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t};\n\n\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\treturn proxy;\n};\n\njQuery.holdReady = function( hold ) {\n\tif ( hold ) {\n\t\tjQuery.readyWait++;\n\t} else {\n\t\tjQuery.ready( true );\n\t}\n};\njQuery.isArray = Array.isArray;\njQuery.parseJSON = JSON.parse;\njQuery.nodeName = nodeName;\njQuery.isFunction = isFunction;\njQuery.isWindow = isWindow;\njQuery.camelCase = camelCase;\njQuery.type = toType;\n\njQuery.now = Date.now;\n\njQuery.isNumeric = function( obj ) {\n\n\t// As of jQuery 3.0, isNumeric is limited to\n\t// strings and numbers (primitives or objects)\n\t// that can be coerced to finite numbers (gh-2662)\n\tvar type = jQuery.type( obj );\n\treturn ( type === \"number\" || type === \"string\" ) &&\n\n\t\t// parseFloat NaNs numeric-cast false positives (\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t!isNaN( obj - parseFloat( obj ) );\n};\n\njQuery.trim = function( text ) {\n\treturn text == null ?\n\t\t\"\" :\n\t\t( text + \"\" ).replace( rtrim, \"\" );\n};\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t} );\n}\n\n\n\n\nvar\n\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in AMD\n// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === \"undefined\" ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n} );\n"
  },
  {
    "path": "docs/site_libs/jqueryui-1.11.4/README",
    "content": "This a jQuery UI custom build, downloaded from:\nhttp://jqueryui.com/download/#!version=1.11.4&components=1111111111110111111111111111111111111\n\nIt includes all components except the datepicker, because it conflicts with\nbootstrap-datepicker that is packaged with Shiny.\n\nThe copy of jQuery that is bundled with the download, under external/, is not\nincluded because Shiny already has its own copy of jQuery.\n"
  },
  {
    "path": "docs/site_libs/jqueryui-1.11.4/index.html",
    "content": "<!doctype html>\n<html lang=\"us\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<title>jQuery UI Example Page</title>\n\t<link href=\"jquery-ui.css\" rel=\"stylesheet\">\n\t<style>\n\tbody{\n\t\tfont: 62.5% \"Trebuchet MS\", sans-serif;\n\t\tmargin: 50px;\n\t}\n\t.demoHeaders {\n\t\tmargin-top: 2em;\n\t}\n\t#dialog-link {\n\t\tpadding: .4em 1em .4em 20px;\n\t\ttext-decoration: none;\n\t\tposition: relative;\n\t}\n\t#dialog-link span.ui-icon {\n\t\tmargin: 0 5px 0 0;\n\t\tposition: absolute;\n\t\tleft: .2em;\n\t\ttop: 50%;\n\t\tmargin-top: -8px;\n\t}\n\t#icons {\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\t#icons li {\n\t\tmargin: 2px;\n\t\tposition: relative;\n\t\tpadding: 4px 0;\n\t\tcursor: pointer;\n\t\tfloat: left;\n\t\tlist-style: none;\n\t}\n\t#icons span.ui-icon {\n\t\tfloat: left;\n\t\tmargin: 0 4px;\n\t}\n\t.fakewindowcontain .ui-widget-overlay {\n\t\tposition: absolute;\n\t}\n\tselect {\n\t\twidth: 200px;\n\t}\n\t</style>\n</head>\n<body>\n\n<h1>Welcome to jQuery UI!</h1>\n\n<div class=\"ui-widget\">\n\t<p>This page demonstrates the widgets and theme you selected in Download Builder. Please make sure you are using them with a compatible jQuery version.</p>\n</div>\n\n<h1>YOUR COMPONENTS:</h1>\n\n\n<!-- Accordion -->\n<h2 class=\"demoHeaders\">Accordion</h2>\n<div id=\"accordion\">\n\t<h3>First</h3>\n\t<div>Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet.</div>\n\t<h3>Second</h3>\n\t<div>Phasellus mattis tincidunt nibh.</div>\n\t<h3>Third</h3>\n\t<div>Nam dui erat, auctor a, dignissim quis.</div>\n</div>\n\n\n\n<!-- Autocomplete -->\n<h2 class=\"demoHeaders\">Autocomplete</h2>\n<div>\n\t<input id=\"autocomplete\" title=\"type &quot;a&quot;\">\n</div>\n\n\n\n<!-- Button -->\n<h2 class=\"demoHeaders\">Button</h2>\n<button id=\"button\">A button element</button>\n<form style=\"margin-top: 1em;\">\n\t<div id=\"radioset\">\n\t\t<input type=\"radio\" id=\"radio1\" name=\"radio\"><label for=\"radio1\">Choice 1</label>\n\t\t<input type=\"radio\" id=\"radio2\" name=\"radio\" checked=\"checked\"><label for=\"radio2\">Choice 2</label>\n\t\t<input type=\"radio\" id=\"radio3\" name=\"radio\"><label for=\"radio3\">Choice 3</label>\n\t</div>\n</form>\n\n\n\n<!-- Tabs -->\n<h2 class=\"demoHeaders\">Tabs</h2>\n<div id=\"tabs\">\n\t<ul>\n\t\t<li><a href=\"#tabs-1\">First</a></li>\n\t\t<li><a href=\"#tabs-2\">Second</a></li>\n\t\t<li><a href=\"#tabs-3\">Third</a></li>\n\t</ul>\n\t<div id=\"tabs-1\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</div>\n\t<div id=\"tabs-2\">Phasellus mattis tincidunt nibh. Cras orci urna, blandit id, pretium vel, aliquet ornare, felis. Maecenas scelerisque sem non nisl. Fusce sed lorem in enim dictum bibendum.</div>\n\t<div id=\"tabs-3\">Nam dui erat, auctor a, dignissim quis, sollicitudin eu, felis. Pellentesque nisi urna, interdum eget, sagittis et, consequat vestibulum, lacus. Mauris porttitor ullamcorper augue.</div>\n</div>\n\n\n\n<!-- Dialog NOTE: Dialog is not generated by UI in this demo so it can be visually styled in themeroller-->\n<h2 class=\"demoHeaders\">Dialog</h2>\n<p><a href=\"#\" id=\"dialog-link\" class=\"ui-state-default ui-corner-all\"><span class=\"ui-icon ui-icon-newwin\"></span>Open Dialog</a></p>\n\n<h2 class=\"demoHeaders\">Overlay and Shadow Classes <em>(not currently used in UI widgets)</em></h2>\n<div style=\"position: relative; width: 96%; height: 200px; padding:1% 2%; overflow:hidden;\" class=\"fakewindowcontain\">\n\t<p>Lorem ipsum dolor sit amet,  Nulla nec tortor. Donec id elit quis purus consectetur consequat. </p><p>Nam congue semper tellus. Sed erat dolor, dapibus sit amet, venenatis ornare, ultrices ut, nisi. Aliquam ante. Suspendisse scelerisque dui nec velit. Duis augue augue, gravida euismod, vulputate ac, facilisis id, sem. Morbi in orci. </p><p>Nulla purus lacus, pulvinar vel, malesuada ac, mattis nec, quam. Nam molestie scelerisque quam. Nullam feugiat cursus lacus.orem ipsum dolor sit amet, consectetur adipiscing elit. Donec libero risus, commodo vitae, pharetra mollis, posuere eu, pede. Nulla nec tortor. Donec id elit quis purus consectetur consequat. </p><p>Nam congue semper tellus. Sed erat dolor, dapibus sit amet, venenatis ornare, ultrices ut, nisi. Aliquam ante. Suspendisse scelerisque dui nec velit. Duis augue augue, gravida euismod, vulputate ac, facilisis id, sem. Morbi in orci. Nulla purus lacus, pulvinar vel, malesuada ac, mattis nec, quam. Nam molestie scelerisque quam. </p><p>Nullam feugiat cursus lacus.orem ipsum dolor sit amet, consectetur adipiscing elit. Donec libero risus, commodo vitae, pharetra mollis, posuere eu, pede. Nulla nec tortor. Donec id elit quis purus consectetur consequat. Nam congue semper tellus. Sed erat dolor, dapibus sit amet, venenatis ornare, ultrices ut, nisi. Aliquam ante. </p><p>Suspendisse scelerisque dui nec velit. Duis augue augue, gravida euismod, vulputate ac, facilisis id, sem. Morbi in orci. Nulla purus lacus, pulvinar vel, malesuada ac, mattis nec, quam. Nam molestie scelerisque quam. Nullam feugiat cursus lacus.orem ipsum dolor sit amet, consectetur adipiscing elit. Donec libero risus, commodo vitae, pharetra mollis, posuere eu, pede. Nulla nec tortor. Donec id elit quis purus consectetur consequat. Nam congue semper tellus. Sed erat dolor, dapibus sit amet, venenatis ornare, ultrices ut, nisi. </p>\n\n\t<!-- ui-dialog -->\n\t<div class=\"ui-overlay\"><div class=\"ui-widget-overlay\"></div><div class=\"ui-widget-shadow ui-corner-all\" style=\"width: 302px; height: 152px; position: absolute; left: 50px; top: 30px;\"></div></div>\n\t<div style=\"position: absolute; width: 280px; height: 130px;left: 50px; top: 30px; padding: 10px;\" class=\"ui-widget ui-widget-content ui-corner-all\">\n\t\t<div class=\"ui-dialog-content ui-widget-content\" style=\"background: none; border: 0;\">\n\t\t\t<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n\t\t</div>\n\t</div>\n\n</div>\n\n<!-- ui-dialog -->\n<div id=\"dialog\" title=\"Dialog Title\">\n\t<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n</div>\n\n\n\n<h2 class=\"demoHeaders\">Framework Icons (content color preview)</h2>\n<ul id=\"icons\" class=\"ui-widget ui-helper-clearfix\">\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-carat-1-n\"><span class=\"ui-icon ui-icon-carat-1-n\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-carat-1-ne\"><span class=\"ui-icon ui-icon-carat-1-ne\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-carat-1-e\"><span class=\"ui-icon ui-icon-carat-1-e\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-carat-1-se\"><span class=\"ui-icon ui-icon-carat-1-se\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-carat-1-s\"><span class=\"ui-icon ui-icon-carat-1-s\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-carat-1-sw\"><span class=\"ui-icon ui-icon-carat-1-sw\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-carat-1-w\"><span class=\"ui-icon ui-icon-carat-1-w\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-carat-1-nw\"><span class=\"ui-icon ui-icon-carat-1-nw\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-carat-2-n-s\"><span class=\"ui-icon ui-icon-carat-2-n-s\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-carat-2-e-w\"><span class=\"ui-icon ui-icon-carat-2-e-w\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-triangle-1-n\"><span class=\"ui-icon ui-icon-triangle-1-n\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-triangle-1-ne\"><span class=\"ui-icon ui-icon-triangle-1-ne\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-triangle-1-e\"><span class=\"ui-icon ui-icon-triangle-1-e\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-triangle-1-se\"><span class=\"ui-icon ui-icon-triangle-1-se\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-triangle-1-s\"><span class=\"ui-icon ui-icon-triangle-1-s\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-triangle-1-sw\"><span class=\"ui-icon ui-icon-triangle-1-sw\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-triangle-1-w\"><span class=\"ui-icon ui-icon-triangle-1-w\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-triangle-1-nw\"><span class=\"ui-icon ui-icon-triangle-1-nw\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-triangle-2-n-s\"><span class=\"ui-icon ui-icon-triangle-2-n-s\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-triangle-2-e-w\"><span class=\"ui-icon ui-icon-triangle-2-e-w\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrow-1-n\"><span class=\"ui-icon ui-icon-arrow-1-n\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrow-1-ne\"><span class=\"ui-icon ui-icon-arrow-1-ne\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrow-1-e\"><span class=\"ui-icon ui-icon-arrow-1-e\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrow-1-se\"><span class=\"ui-icon ui-icon-arrow-1-se\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrow-1-s\"><span class=\"ui-icon ui-icon-arrow-1-s\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrow-1-sw\"><span class=\"ui-icon ui-icon-arrow-1-sw\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrow-1-w\"><span class=\"ui-icon ui-icon-arrow-1-w\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrow-1-nw\"><span class=\"ui-icon ui-icon-arrow-1-nw\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrow-2-n-s\"><span class=\"ui-icon ui-icon-arrow-2-n-s\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrow-2-ne-sw\"><span class=\"ui-icon ui-icon-arrow-2-ne-sw\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrow-2-e-w\"><span class=\"ui-icon ui-icon-arrow-2-e-w\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrow-2-se-nw\"><span class=\"ui-icon ui-icon-arrow-2-se-nw\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowstop-1-n\"><span class=\"ui-icon ui-icon-arrowstop-1-n\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowstop-1-e\"><span class=\"ui-icon ui-icon-arrowstop-1-e\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowstop-1-s\"><span class=\"ui-icon ui-icon-arrowstop-1-s\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowstop-1-w\"><span class=\"ui-icon ui-icon-arrowstop-1-w\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowthick-1-n\"><span class=\"ui-icon ui-icon-arrowthick-1-n\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowthick-1-ne\"><span class=\"ui-icon ui-icon-arrowthick-1-ne\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowthick-1-e\"><span class=\"ui-icon ui-icon-arrowthick-1-e\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowthick-1-se\"><span class=\"ui-icon ui-icon-arrowthick-1-se\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowthick-1-s\"><span class=\"ui-icon ui-icon-arrowthick-1-s\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowthick-1-sw\"><span class=\"ui-icon ui-icon-arrowthick-1-sw\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowthick-1-w\"><span class=\"ui-icon ui-icon-arrowthick-1-w\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowthick-1-nw\"><span class=\"ui-icon ui-icon-arrowthick-1-nw\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowthick-2-n-s\"><span class=\"ui-icon ui-icon-arrowthick-2-n-s\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowthick-2-ne-sw\"><span class=\"ui-icon ui-icon-arrowthick-2-ne-sw\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowthick-2-e-w\"><span class=\"ui-icon ui-icon-arrowthick-2-e-w\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowthick-2-se-nw\"><span class=\"ui-icon ui-icon-arrowthick-2-se-nw\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowthickstop-1-n\"><span class=\"ui-icon ui-icon-arrowthickstop-1-n\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowthickstop-1-e\"><span class=\"ui-icon ui-icon-arrowthickstop-1-e\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowthickstop-1-s\"><span class=\"ui-icon ui-icon-arrowthickstop-1-s\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowthickstop-1-w\"><span class=\"ui-icon ui-icon-arrowthickstop-1-w\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowreturnthick-1-w\"><span class=\"ui-icon ui-icon-arrowreturnthick-1-w\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowreturnthick-1-n\"><span class=\"ui-icon ui-icon-arrowreturnthick-1-n\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowreturnthick-1-e\"><span class=\"ui-icon ui-icon-arrowreturnthick-1-e\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowreturnthick-1-s\"><span class=\"ui-icon ui-icon-arrowreturnthick-1-s\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowreturn-1-w\"><span class=\"ui-icon ui-icon-arrowreturn-1-w\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowreturn-1-n\"><span class=\"ui-icon ui-icon-arrowreturn-1-n\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowreturn-1-e\"><span class=\"ui-icon ui-icon-arrowreturn-1-e\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowreturn-1-s\"><span class=\"ui-icon ui-icon-arrowreturn-1-s\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowrefresh-1-w\"><span class=\"ui-icon ui-icon-arrowrefresh-1-w\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowrefresh-1-n\"><span class=\"ui-icon ui-icon-arrowrefresh-1-n\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowrefresh-1-e\"><span class=\"ui-icon ui-icon-arrowrefresh-1-e\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrowrefresh-1-s\"><span class=\"ui-icon ui-icon-arrowrefresh-1-s\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrow-4\"><span class=\"ui-icon ui-icon-arrow-4\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-arrow-4-diag\"><span class=\"ui-icon ui-icon-arrow-4-diag\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-extlink\"><span class=\"ui-icon ui-icon-extlink\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-newwin\"><span class=\"ui-icon ui-icon-newwin\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-refresh\"><span class=\"ui-icon ui-icon-refresh\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-shuffle\"><span class=\"ui-icon ui-icon-shuffle\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-transfer-e-w\"><span class=\"ui-icon ui-icon-transfer-e-w\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-transferthick-e-w\"><span class=\"ui-icon ui-icon-transferthick-e-w\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-folder-collapsed\"><span class=\"ui-icon ui-icon-folder-collapsed\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-folder-open\"><span class=\"ui-icon ui-icon-folder-open\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-document\"><span class=\"ui-icon ui-icon-document\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-document-b\"><span class=\"ui-icon ui-icon-document-b\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-note\"><span class=\"ui-icon ui-icon-note\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-mail-closed\"><span class=\"ui-icon ui-icon-mail-closed\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-mail-open\"><span class=\"ui-icon ui-icon-mail-open\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-suitcase\"><span class=\"ui-icon ui-icon-suitcase\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-comment\"><span class=\"ui-icon ui-icon-comment\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-person\"><span class=\"ui-icon ui-icon-person\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-print\"><span class=\"ui-icon ui-icon-print\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-trash\"><span class=\"ui-icon ui-icon-trash\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-locked\"><span class=\"ui-icon ui-icon-locked\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-unlocked\"><span class=\"ui-icon ui-icon-unlocked\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-bookmark\"><span class=\"ui-icon ui-icon-bookmark\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-tag\"><span class=\"ui-icon ui-icon-tag\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-home\"><span class=\"ui-icon ui-icon-home\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-flag\"><span class=\"ui-icon ui-icon-flag\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-calculator\"><span class=\"ui-icon ui-icon-calculator\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-cart\"><span class=\"ui-icon ui-icon-cart\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-pencil\"><span class=\"ui-icon ui-icon-pencil\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-clock\"><span class=\"ui-icon ui-icon-clock\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-disk\"><span class=\"ui-icon ui-icon-disk\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-calendar\"><span class=\"ui-icon ui-icon-calendar\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-zoomin\"><span class=\"ui-icon ui-icon-zoomin\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-zoomout\"><span class=\"ui-icon ui-icon-zoomout\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-search\"><span class=\"ui-icon ui-icon-search\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-wrench\"><span class=\"ui-icon ui-icon-wrench\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-gear\"><span class=\"ui-icon ui-icon-gear\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-heart\"><span class=\"ui-icon ui-icon-heart\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-star\"><span class=\"ui-icon ui-icon-star\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-link\"><span class=\"ui-icon ui-icon-link\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-cancel\"><span class=\"ui-icon ui-icon-cancel\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-plus\"><span class=\"ui-icon ui-icon-plus\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-plusthick\"><span class=\"ui-icon ui-icon-plusthick\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-minus\"><span class=\"ui-icon ui-icon-minus\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-minusthick\"><span class=\"ui-icon ui-icon-minusthick\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-close\"><span class=\"ui-icon ui-icon-close\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-closethick\"><span class=\"ui-icon ui-icon-closethick\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-key\"><span class=\"ui-icon ui-icon-key\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-lightbulb\"><span class=\"ui-icon ui-icon-lightbulb\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-scissors\"><span class=\"ui-icon ui-icon-scissors\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-clipboard\"><span class=\"ui-icon ui-icon-clipboard\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-copy\"><span class=\"ui-icon ui-icon-copy\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-contact\"><span class=\"ui-icon ui-icon-contact\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-image\"><span class=\"ui-icon ui-icon-image\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-video\"><span class=\"ui-icon ui-icon-video\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-script\"><span class=\"ui-icon ui-icon-script\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-alert\"><span class=\"ui-icon ui-icon-alert\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-info\"><span class=\"ui-icon ui-icon-info\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-notice\"><span class=\"ui-icon ui-icon-notice\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-help\"><span class=\"ui-icon ui-icon-help\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-check\"><span class=\"ui-icon ui-icon-check\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-bullet\"><span class=\"ui-icon ui-icon-bullet\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-radio-off\"><span class=\"ui-icon ui-icon-radio-off\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-radio-on\"><span class=\"ui-icon ui-icon-radio-on\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-pin-w\"><span class=\"ui-icon ui-icon-pin-w\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-pin-s\"><span class=\"ui-icon ui-icon-pin-s\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-play\"><span class=\"ui-icon ui-icon-play\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-pause\"><span class=\"ui-icon ui-icon-pause\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-seek-next\"><span class=\"ui-icon ui-icon-seek-next\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-seek-prev\"><span class=\"ui-icon ui-icon-seek-prev\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-seek-end\"><span class=\"ui-icon ui-icon-seek-end\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-seek-first\"><span class=\"ui-icon ui-icon-seek-first\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-stop\"><span class=\"ui-icon ui-icon-stop\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-eject\"><span class=\"ui-icon ui-icon-eject\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-volume-off\"><span class=\"ui-icon ui-icon-volume-off\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-volume-on\"><span class=\"ui-icon ui-icon-volume-on\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-power\"><span class=\"ui-icon ui-icon-power\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-signal-diag\"><span class=\"ui-icon ui-icon-signal-diag\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-signal\"><span class=\"ui-icon ui-icon-signal\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-battery-0\"><span class=\"ui-icon ui-icon-battery-0\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-battery-1\"><span class=\"ui-icon ui-icon-battery-1\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-battery-2\"><span class=\"ui-icon ui-icon-battery-2\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-battery-3\"><span class=\"ui-icon ui-icon-battery-3\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-circle-plus\"><span class=\"ui-icon ui-icon-circle-plus\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-circle-minus\"><span class=\"ui-icon ui-icon-circle-minus\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-circle-close\"><span class=\"ui-icon ui-icon-circle-close\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-circle-triangle-e\"><span class=\"ui-icon ui-icon-circle-triangle-e\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-circle-triangle-s\"><span class=\"ui-icon ui-icon-circle-triangle-s\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-circle-triangle-w\"><span class=\"ui-icon ui-icon-circle-triangle-w\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-circle-triangle-n\"><span class=\"ui-icon ui-icon-circle-triangle-n\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-circle-arrow-e\"><span class=\"ui-icon ui-icon-circle-arrow-e\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-circle-arrow-s\"><span class=\"ui-icon ui-icon-circle-arrow-s\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-circle-arrow-w\"><span class=\"ui-icon ui-icon-circle-arrow-w\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-circle-arrow-n\"><span class=\"ui-icon ui-icon-circle-arrow-n\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-circle-zoomin\"><span class=\"ui-icon ui-icon-circle-zoomin\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-circle-zoomout\"><span class=\"ui-icon ui-icon-circle-zoomout\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-circle-check\"><span class=\"ui-icon ui-icon-circle-check\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-circlesmall-plus\"><span class=\"ui-icon ui-icon-circlesmall-plus\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-circlesmall-minus\"><span class=\"ui-icon ui-icon-circlesmall-minus\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-circlesmall-close\"><span class=\"ui-icon ui-icon-circlesmall-close\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-squaresmall-plus\"><span class=\"ui-icon ui-icon-squaresmall-plus\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-squaresmall-minus\"><span class=\"ui-icon ui-icon-squaresmall-minus\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-squaresmall-close\"><span class=\"ui-icon ui-icon-squaresmall-close\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-grip-dotted-vertical\"><span class=\"ui-icon ui-icon-grip-dotted-vertical\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-grip-dotted-horizontal\"><span class=\"ui-icon ui-icon-grip-dotted-horizontal\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-grip-solid-vertical\"><span class=\"ui-icon ui-icon-grip-solid-vertical\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-grip-solid-horizontal\"><span class=\"ui-icon ui-icon-grip-solid-horizontal\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-gripsmall-diagonal-se\"><span class=\"ui-icon ui-icon-gripsmall-diagonal-se\"></span></li>\n\t<li class=\"ui-state-default ui-corner-all\" title=\".ui-icon-grip-diagonal-se\"><span class=\"ui-icon ui-icon-grip-diagonal-se\"></span></li>\n</ul>\n\n\n<!-- Slider -->\n<h2 class=\"demoHeaders\">Slider</h2>\n<div id=\"slider\"></div>\n\n\n\n\n\n<!-- Progressbar -->\n<h2 class=\"demoHeaders\">Progressbar</h2>\n<div id=\"progressbar\"></div>\n\n\n\n<!-- Progressbar -->\n<h2 class=\"demoHeaders\">Selectmenu</h2>\n<select id=\"selectmenu\">\n\t<option>Slower</option>\n\t<option>Slow</option>\n\t<option selected=\"selected\">Medium</option>\n\t<option>Fast</option>\n\t<option>Faster</option>\n</select>\n\n\n\n<!-- Spinner -->\n<h2 class=\"demoHeaders\">Spinner</h2>\n<input id=\"spinner\">\n\n\n\n<!-- Menu -->\n<h2 class=\"demoHeaders\">Menu</h2>\n<ul style=\"width:100px;\" id=\"menu\">\n\t<li>Item 1</li>\n\t<li>Item 2</li>\n\t<li>Item 3\n\t\t<ul>\n\t\t\t<li>Item 3-1</li>\n\t\t\t<li>Item 3-2</li>\n\t\t\t<li>Item 3-3</li>\n\t\t\t<li>Item 3-4</li>\n\t\t\t<li>Item 3-5</li>\n\t\t</ul>\n\t</li>\n\t<li>Item 4</li>\n\t<li>Item 5</li>\n</ul>\n\n\n\n<!-- Tooltip -->\n<h2 class=\"demoHeaders\">Tooltip</h2>\n<p id=\"tooltip\">\n\t<a href=\"#\" title=\"That&apos;s what this widget is\">Tooltips</a> can be attached to any element. When you hover\nthe element with your mouse, the title attribute is displayed in a little box next to the element, just like a native tooltip.\n</p>\n\n\n<!-- Highlight / Error -->\n<h2 class=\"demoHeaders\">Highlight / Error</h2>\n<div class=\"ui-widget\">\n\t<div class=\"ui-state-highlight ui-corner-all\" style=\"margin-top: 20px; padding: 0 .7em;\">\n\t\t<p><span class=\"ui-icon ui-icon-info\" style=\"float: left; margin-right: .3em;\"></span>\n\t\t<strong>Hey!</strong> Sample ui-state-highlight style.</p>\n\t</div>\n</div>\n<br>\n<div class=\"ui-widget\">\n\t<div class=\"ui-state-error ui-corner-all\" style=\"padding: 0 .7em;\">\n\t\t<p><span class=\"ui-icon ui-icon-alert\" style=\"float: left; margin-right: .3em;\"></span>\n\t\t<strong>Alert:</strong> Sample ui-state-error style.</p>\n\t</div>\n</div>\n\n<script src=\"external/jquery/jquery.js\"></script>\n<script src=\"jquery-ui.js\"></script>\n<script>\n\n$( \"#accordion\" ).accordion();\n\n\n\nvar availableTags = [\n\t\"ActionScript\",\n\t\"AppleScript\",\n\t\"Asp\",\n\t\"BASIC\",\n\t\"C\",\n\t\"C++\",\n\t\"Clojure\",\n\t\"COBOL\",\n\t\"ColdFusion\",\n\t\"Erlang\",\n\t\"Fortran\",\n\t\"Groovy\",\n\t\"Haskell\",\n\t\"Java\",\n\t\"JavaScript\",\n\t\"Lisp\",\n\t\"Perl\",\n\t\"PHP\",\n\t\"Python\",\n\t\"Ruby\",\n\t\"Scala\",\n\t\"Scheme\"\n];\n$( \"#autocomplete\" ).autocomplete({\n\tsource: availableTags\n});\n\n\n\n$( \"#button\" ).button();\n$( \"#radioset\" ).buttonset();\n\n\n\n$( \"#tabs\" ).tabs();\n\n\n\n$( \"#dialog\" ).dialog({\n\tautoOpen: false,\n\twidth: 400,\n\tbuttons: [\n\t\t{\n\t\t\ttext: \"Ok\",\n\t\t\tclick: function() {\n\t\t\t\t$( this ).dialog( \"close\" );\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\ttext: \"Cancel\",\n\t\t\tclick: function() {\n\t\t\t\t$( this ).dialog( \"close\" );\n\t\t\t}\n\t\t}\n\t]\n});\n\n// Link to open the dialog\n$( \"#dialog-link\" ).click(function( event ) {\n\t$( \"#dialog\" ).dialog( \"open\" );\n\tevent.preventDefault();\n});\n\n\n\n\n\n$( \"#slider\" ).slider({\n\trange: true,\n\tvalues: [ 17, 67 ]\n});\n\n\n\n$( \"#progressbar\" ).progressbar({\n\tvalue: 20\n});\n\n\n\n$( \"#spinner\" ).spinner();\n\n\n\n$( \"#menu\" ).menu();\n\n\n\n$( \"#tooltip\" ).tooltip();\n\n\n\n$( \"#selectmenu\" ).selectmenu();\n\n\n// Hover states on the static widgets\n$( \"#dialog-link, #icons li\" ).hover(\n\tfunction() {\n\t\t$( this ).addClass( \"ui-state-hover\" );\n\t},\n\tfunction() {\n\t\t$( this ).removeClass( \"ui-state-hover\" );\n\t}\n);\n</script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/site_libs/jqueryui-1.11.4/jquery-ui.css",
    "content": "/*! jQuery UI - v1.11.4 - 2016-01-05\n* http://jqueryui.com\n* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css\n* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px\n* Copyright jQuery Foundation and other contributors; Licensed MIT */\n\n/* Layout helpers\n----------------------------------*/\n.ui-helper-hidden {\n\tdisplay: none;\n}\n.ui-helper-hidden-accessible {\n\tborder: 0;\n\tclip: rect(0 0 0 0);\n\theight: 1px;\n\tmargin: -1px;\n\toverflow: hidden;\n\tpadding: 0;\n\tposition: absolute;\n\twidth: 1px;\n}\n.ui-helper-reset {\n\tmargin: 0;\n\tpadding: 0;\n\tborder: 0;\n\toutline: 0;\n\tline-height: 1.3;\n\ttext-decoration: none;\n\tfont-size: 100%;\n\tlist-style: none;\n}\n.ui-helper-clearfix:before,\n.ui-helper-clearfix:after {\n\tcontent: \"\";\n\tdisplay: table;\n\tborder-collapse: collapse;\n}\n.ui-helper-clearfix:after {\n\tclear: both;\n}\n.ui-helper-clearfix {\n\tmin-height: 0; /* support: IE7 */\n}\n.ui-helper-zfix {\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tleft: 0;\n\tposition: absolute;\n\topacity: 0;\n\tfilter:Alpha(Opacity=0); /* support: IE8 */\n}\n\n.ui-front {\n\tz-index: 100;\n}\n\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-disabled {\n\tcursor: default !important;\n}\n\n\n/* Icons\n----------------------------------*/\n\n/* states and images */\n.ui-icon {\n\tdisplay: block;\n\ttext-indent: -99999px;\n\toverflow: hidden;\n\tbackground-repeat: no-repeat;\n}\n\n\n/* Misc visuals\n----------------------------------*/\n\n/* Overlays */\n.ui-widget-overlay {\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n}\n.ui-draggable-handle {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n.ui-resizable {\n\tposition: relative;\n}\n.ui-resizable-handle {\n\tposition: absolute;\n\tfont-size: 0.1px;\n\tdisplay: block;\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n.ui-resizable-disabled .ui-resizable-handle,\n.ui-resizable-autohide .ui-resizable-handle {\n\tdisplay: none;\n}\n.ui-resizable-n {\n\tcursor: n-resize;\n\theight: 7px;\n\twidth: 100%;\n\ttop: -5px;\n\tleft: 0;\n}\n.ui-resizable-s {\n\tcursor: s-resize;\n\theight: 7px;\n\twidth: 100%;\n\tbottom: -5px;\n\tleft: 0;\n}\n.ui-resizable-e {\n\tcursor: e-resize;\n\twidth: 7px;\n\tright: -5px;\n\ttop: 0;\n\theight: 100%;\n}\n.ui-resizable-w {\n\tcursor: w-resize;\n\twidth: 7px;\n\tleft: -5px;\n\ttop: 0;\n\theight: 100%;\n}\n.ui-resizable-se {\n\tcursor: se-resize;\n\twidth: 12px;\n\theight: 12px;\n\tright: 1px;\n\tbottom: 1px;\n}\n.ui-resizable-sw {\n\tcursor: sw-resize;\n\twidth: 9px;\n\theight: 9px;\n\tleft: -5px;\n\tbottom: -5px;\n}\n.ui-resizable-nw {\n\tcursor: nw-resize;\n\twidth: 9px;\n\theight: 9px;\n\tleft: -5px;\n\ttop: -5px;\n}\n.ui-resizable-ne {\n\tcursor: ne-resize;\n\twidth: 9px;\n\theight: 9px;\n\tright: -5px;\n\ttop: -5px;\n}\n.ui-selectable {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n.ui-selectable-helper {\n\tposition: absolute;\n\tz-index: 100;\n\tborder: 1px dotted black;\n}\n.ui-sortable-handle {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n.ui-accordion .ui-accordion-header {\n\tdisplay: block;\n\tcursor: pointer;\n\tposition: relative;\n\tmargin: 2px 0 0 0;\n\tpadding: .5em .5em .5em .7em;\n\tmin-height: 0; /* support: IE7 */\n\tfont-size: 100%;\n}\n.ui-accordion .ui-accordion-icons {\n\tpadding-left: 2.2em;\n}\n.ui-accordion .ui-accordion-icons .ui-accordion-icons {\n\tpadding-left: 2.2em;\n}\n.ui-accordion .ui-accordion-header .ui-accordion-header-icon {\n\tposition: absolute;\n\tleft: .5em;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n.ui-accordion .ui-accordion-content {\n\tpadding: 1em 2.2em;\n\tborder-top: 0;\n\toverflow: auto;\n}\n.ui-autocomplete {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tcursor: default;\n}\n.ui-button {\n\tdisplay: inline-block;\n\tposition: relative;\n\tpadding: 0;\n\tline-height: normal;\n\tmargin-right: .1em;\n\tcursor: pointer;\n\tvertical-align: middle;\n\ttext-align: center;\n\toverflow: visible; /* removes extra width in IE */\n}\n.ui-button,\n.ui-button:link,\n.ui-button:visited,\n.ui-button:hover,\n.ui-button:active {\n\ttext-decoration: none;\n}\n/* to make room for the icon, a width needs to be set here */\n.ui-button-icon-only {\n\twidth: 2.2em;\n}\n/* button elements seem to need a little more width */\nbutton.ui-button-icon-only {\n\twidth: 2.4em;\n}\n.ui-button-icons-only {\n\twidth: 3.4em;\n}\nbutton.ui-button-icons-only {\n\twidth: 3.7em;\n}\n\n/* button text element */\n.ui-button .ui-button-text {\n\tdisplay: block;\n\tline-height: normal;\n}\n.ui-button-text-only .ui-button-text {\n\tpadding: .4em 1em;\n}\n.ui-button-icon-only .ui-button-text,\n.ui-button-icons-only .ui-button-text {\n\tpadding: .4em;\n\ttext-indent: -9999999px;\n}\n.ui-button-text-icon-primary .ui-button-text,\n.ui-button-text-icons .ui-button-text {\n\tpadding: .4em 1em .4em 2.1em;\n}\n.ui-button-text-icon-secondary .ui-button-text,\n.ui-button-text-icons .ui-button-text {\n\tpadding: .4em 2.1em .4em 1em;\n}\n.ui-button-text-icons .ui-button-text {\n\tpadding-left: 2.1em;\n\tpadding-right: 2.1em;\n}\n/* no icon support for input elements, provide padding by default */\ninput.ui-button {\n\tpadding: .4em 1em;\n}\n\n/* button icon element(s) */\n.ui-button-icon-only .ui-icon,\n.ui-button-text-icon-primary .ui-icon,\n.ui-button-text-icon-secondary .ui-icon,\n.ui-button-text-icons .ui-icon,\n.ui-button-icons-only .ui-icon {\n\tposition: absolute;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n.ui-button-icon-only .ui-icon {\n\tleft: 50%;\n\tmargin-left: -8px;\n}\n.ui-button-text-icon-primary .ui-button-icon-primary,\n.ui-button-text-icons .ui-button-icon-primary,\n.ui-button-icons-only .ui-button-icon-primary {\n\tleft: .5em;\n}\n.ui-button-text-icon-secondary .ui-button-icon-secondary,\n.ui-button-text-icons .ui-button-icon-secondary,\n.ui-button-icons-only .ui-button-icon-secondary {\n\tright: .5em;\n}\n\n/* button sets */\n.ui-buttonset {\n\tmargin-right: 7px;\n}\n.ui-buttonset .ui-button {\n\tmargin-left: 0;\n\tmargin-right: -.3em;\n}\n\n/* workarounds */\n/* reset extra padding in Firefox, see h5bp.com/l */\ninput.ui-button::-moz-focus-inner,\nbutton.ui-button::-moz-focus-inner {\n\tborder: 0;\n\tpadding: 0;\n}\n.ui-dialog {\n\toverflow: hidden;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tpadding: .2em;\n\toutline: 0;\n}\n.ui-dialog .ui-dialog-titlebar {\n\tpadding: .4em 1em;\n\tposition: relative;\n}\n.ui-dialog .ui-dialog-title {\n\tfloat: left;\n\tmargin: .1em 0;\n\twhite-space: nowrap;\n\twidth: 90%;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n}\n.ui-dialog .ui-dialog-titlebar-close {\n\tposition: absolute;\n\tright: .3em;\n\ttop: 50%;\n\twidth: 20px;\n\tmargin: -10px 0 0 0;\n\tpadding: 1px;\n\theight: 20px;\n}\n.ui-dialog .ui-dialog-content {\n\tposition: relative;\n\tborder: 0;\n\tpadding: .5em 1em;\n\tbackground: none;\n\toverflow: auto;\n}\n.ui-dialog .ui-dialog-buttonpane {\n\ttext-align: left;\n\tborder-width: 1px 0 0 0;\n\tbackground-image: none;\n\tmargin-top: .5em;\n\tpadding: .3em 1em .5em .4em;\n}\n.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {\n\tfloat: right;\n}\n.ui-dialog .ui-dialog-buttonpane button {\n\tmargin: .5em .4em .5em 0;\n\tcursor: pointer;\n}\n.ui-dialog .ui-resizable-se {\n\twidth: 12px;\n\theight: 12px;\n\tright: -5px;\n\tbottom: -5px;\n\tbackground-position: 16px 16px;\n}\n.ui-draggable .ui-dialog-titlebar {\n\tcursor: move;\n}\n.ui-menu {\n\tlist-style: none;\n\tpadding: 0;\n\tmargin: 0;\n\tdisplay: block;\n\toutline: none;\n}\n.ui-menu .ui-menu {\n\tposition: absolute;\n}\n.ui-menu .ui-menu-item {\n\tposition: relative;\n\tmargin: 0;\n\tpadding: 3px 1em 3px .4em;\n\tcursor: pointer;\n\tmin-height: 0; /* support: IE7 */\n\t/* support: IE10, see #8844 */\n\tlist-style-image: url(\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\");\n}\n.ui-menu .ui-menu-divider {\n\tmargin: 5px 0;\n\theight: 0;\n\tfont-size: 0;\n\tline-height: 0;\n\tborder-width: 1px 0 0 0;\n}\n.ui-menu .ui-state-focus,\n.ui-menu .ui-state-active {\n\tmargin: -1px;\n}\n\n/* icon support */\n.ui-menu-icons {\n\tposition: relative;\n}\n.ui-menu-icons .ui-menu-item {\n\tpadding-left: 2em;\n}\n\n/* left-aligned */\n.ui-menu .ui-icon {\n\tposition: absolute;\n\ttop: 0;\n\tbottom: 0;\n\tleft: .2em;\n\tmargin: auto 0;\n}\n\n/* right-aligned */\n.ui-menu .ui-menu-icon {\n\tleft: auto;\n\tright: 0;\n}\n.ui-progressbar {\n\theight: 2em;\n\ttext-align: left;\n\toverflow: hidden;\n}\n.ui-progressbar .ui-progressbar-value {\n\tmargin: -1px;\n\theight: 100%;\n}\n.ui-progressbar .ui-progressbar-overlay {\n\tbackground: url(\"data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==\");\n\theight: 100%;\n\tfilter: alpha(opacity=25); /* support: IE8 */\n\topacity: 0.25;\n}\n.ui-progressbar-indeterminate .ui-progressbar-value {\n\tbackground-image: none;\n}\n.ui-selectmenu-menu {\n\tpadding: 0;\n\tmargin: 0;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tdisplay: none;\n}\n.ui-selectmenu-menu .ui-menu {\n\toverflow: auto;\n\t/* Support: IE7 */\n\toverflow-x: hidden;\n\tpadding-bottom: 1px;\n}\n.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {\n\tfont-size: 1em;\n\tfont-weight: bold;\n\tline-height: 1.5;\n\tpadding: 2px 0.4em;\n\tmargin: 0.5em 0 0 0;\n\theight: auto;\n\tborder: 0;\n}\n.ui-selectmenu-open {\n\tdisplay: block;\n}\n.ui-selectmenu-button {\n\tdisplay: inline-block;\n\toverflow: hidden;\n\tposition: relative;\n\ttext-decoration: none;\n\tcursor: pointer;\n}\n.ui-selectmenu-button span.ui-icon {\n\tright: 0.5em;\n\tleft: auto;\n\tmargin-top: -8px;\n\tposition: absolute;\n\ttop: 50%;\n}\n.ui-selectmenu-button span.ui-selectmenu-text {\n\ttext-align: left;\n\tpadding: 0.4em 2.1em 0.4em 1em;\n\tdisplay: block;\n\tline-height: 1.4;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n\twhite-space: nowrap;\n}\n.ui-slider {\n\tposition: relative;\n\ttext-align: left;\n}\n.ui-slider .ui-slider-handle {\n\tposition: absolute;\n\tz-index: 2;\n\twidth: 1.2em;\n\theight: 1.2em;\n\tcursor: default;\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n.ui-slider .ui-slider-range {\n\tposition: absolute;\n\tz-index: 1;\n\tfont-size: .7em;\n\tdisplay: block;\n\tborder: 0;\n\tbackground-position: 0 0;\n}\n\n/* support: IE8 - See #6727 */\n.ui-slider.ui-state-disabled .ui-slider-handle,\n.ui-slider.ui-state-disabled .ui-slider-range {\n\tfilter: inherit;\n}\n\n.ui-slider-horizontal {\n\theight: .8em;\n}\n.ui-slider-horizontal .ui-slider-handle {\n\ttop: -.3em;\n\tmargin-left: -.6em;\n}\n.ui-slider-horizontal .ui-slider-range {\n\ttop: 0;\n\theight: 100%;\n}\n.ui-slider-horizontal .ui-slider-range-min {\n\tleft: 0;\n}\n.ui-slider-horizontal .ui-slider-range-max {\n\tright: 0;\n}\n\n.ui-slider-vertical {\n\twidth: .8em;\n\theight: 100px;\n}\n.ui-slider-vertical .ui-slider-handle {\n\tleft: -.3em;\n\tmargin-left: 0;\n\tmargin-bottom: -.6em;\n}\n.ui-slider-vertical .ui-slider-range {\n\tleft: 0;\n\twidth: 100%;\n}\n.ui-slider-vertical .ui-slider-range-min {\n\tbottom: 0;\n}\n.ui-slider-vertical .ui-slider-range-max {\n\ttop: 0;\n}\n.ui-spinner {\n\tposition: relative;\n\tdisplay: inline-block;\n\toverflow: hidden;\n\tpadding: 0;\n\tvertical-align: middle;\n}\n.ui-spinner-input {\n\tborder: none;\n\tbackground: none;\n\tcolor: inherit;\n\tpadding: 0;\n\tmargin: .2em 0;\n\tvertical-align: middle;\n\tmargin-left: .4em;\n\tmargin-right: 22px;\n}\n.ui-spinner-button {\n\twidth: 16px;\n\theight: 50%;\n\tfont-size: .5em;\n\tpadding: 0;\n\tmargin: 0;\n\ttext-align: center;\n\tposition: absolute;\n\tcursor: default;\n\tdisplay: block;\n\toverflow: hidden;\n\tright: 0;\n}\n/* more specificity required here to override default borders */\n.ui-spinner a.ui-spinner-button {\n\tborder-top: none;\n\tborder-bottom: none;\n\tborder-right: none;\n}\n/* vertically center icon */\n.ui-spinner .ui-icon {\n\tposition: absolute;\n\tmargin-top: -8px;\n\ttop: 50%;\n\tleft: 0;\n}\n.ui-spinner-up {\n\ttop: 0;\n}\n.ui-spinner-down {\n\tbottom: 0;\n}\n\n/* TR overrides */\n.ui-spinner .ui-icon-triangle-1-s {\n\t/* need to fix icons sprite */\n\tbackground-position: -65px -16px;\n}\n.ui-tabs {\n\tposition: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as \"fixed\") */\n\tpadding: .2em;\n}\n.ui-tabs .ui-tabs-nav {\n\tmargin: 0;\n\tpadding: .2em .2em 0;\n}\n.ui-tabs .ui-tabs-nav li {\n\tlist-style: none;\n\tfloat: left;\n\tposition: relative;\n\ttop: 0;\n\tmargin: 1px .2em 0 0;\n\tborder-bottom-width: 0;\n\tpadding: 0;\n\twhite-space: nowrap;\n}\n.ui-tabs .ui-tabs-nav .ui-tabs-anchor {\n\tfloat: left;\n\tpadding: .5em 1em;\n\ttext-decoration: none;\n}\n.ui-tabs .ui-tabs-nav li.ui-tabs-active {\n\tmargin-bottom: -1px;\n\tpadding-bottom: 1px;\n}\n.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,\n.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,\n.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {\n\tcursor: text;\n}\n.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {\n\tcursor: pointer;\n}\n.ui-tabs .ui-tabs-panel {\n\tdisplay: block;\n\tborder-width: 0;\n\tpadding: 1em 1.4em;\n\tbackground: none;\n}\n.ui-tooltip {\n\tpadding: 8px;\n\tposition: absolute;\n\tz-index: 9999;\n\tmax-width: 300px;\n\t-webkit-box-shadow: 0 0 5px #aaa;\n\tbox-shadow: 0 0 5px #aaa;\n}\nbody .ui-tooltip {\n\tborder-width: 2px;\n}\n\n/* Component containers\n----------------------------------*/\n.ui-widget {\n\tfont-family: Arial,Helvetica,sans-serif;\n\tfont-size: 1em;\n}\n.ui-widget .ui-widget {\n\tfont-size: 1em;\n}\n.ui-widget input,\n.ui-widget select,\n.ui-widget textarea,\n.ui-widget button {\n\tfont-family: Arial,Helvetica,sans-serif;\n\tfont-size: 1em;\n}\n.ui-widget-content {\n\tborder: 1px solid #dddddd;\n\tbackground: #ffffff;\n\tcolor: #333333;\n}\n.ui-widget-content a {\n\tcolor: #333333;\n}\n.ui-widget-header {\n\tborder: 1px solid #dddddd;\n\tbackground: #e9e9e9;\n\tcolor: #333333;\n\tfont-weight: bold;\n}\n.ui-widget-header a {\n\tcolor: #333333;\n}\n\n/* Interaction states\n----------------------------------*/\n.ui-state-default,\n.ui-widget-content .ui-state-default,\n.ui-widget-header .ui-state-default {\n\tborder: 1px solid #c5c5c5;\n\tbackground: #f6f6f6;\n\tfont-weight: normal;\n\tcolor: #454545;\n}\n.ui-state-default a,\n.ui-state-default a:link,\n.ui-state-default a:visited {\n\tcolor: #454545;\n\ttext-decoration: none;\n}\n.ui-state-hover,\n.ui-widget-content .ui-state-hover,\n.ui-widget-header .ui-state-hover,\n.ui-state-focus,\n.ui-widget-content .ui-state-focus,\n.ui-widget-header .ui-state-focus {\n\tborder: 1px solid #cccccc;\n\tbackground: #ededed;\n\tfont-weight: normal;\n\tcolor: #2b2b2b;\n}\n.ui-state-hover a,\n.ui-state-hover a:hover,\n.ui-state-hover a:link,\n.ui-state-hover a:visited,\n.ui-state-focus a,\n.ui-state-focus a:hover,\n.ui-state-focus a:link,\n.ui-state-focus a:visited {\n\tcolor: #2b2b2b;\n\ttext-decoration: none;\n}\n.ui-state-active,\n.ui-widget-content .ui-state-active,\n.ui-widget-header .ui-state-active {\n\tborder: 1px solid #003eff;\n\tbackground: #007fff;\n\tfont-weight: normal;\n\tcolor: #ffffff;\n}\n.ui-state-active a,\n.ui-state-active a:link,\n.ui-state-active a:visited {\n\tcolor: #ffffff;\n\ttext-decoration: none;\n}\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-highlight,\n.ui-widget-content .ui-state-highlight,\n.ui-widget-header .ui-state-highlight {\n\tborder: 1px solid #dad55e;\n\tbackground: #fffa90;\n\tcolor: #777620;\n}\n.ui-state-highlight a,\n.ui-widget-content .ui-state-highlight a,\n.ui-widget-header .ui-state-highlight a {\n\tcolor: #777620;\n}\n.ui-state-error,\n.ui-widget-content .ui-state-error,\n.ui-widget-header .ui-state-error {\n\tborder: 1px solid #f1a899;\n\tbackground: #fddfdf;\n\tcolor: #5f3f3f;\n}\n.ui-state-error a,\n.ui-widget-content .ui-state-error a,\n.ui-widget-header .ui-state-error a {\n\tcolor: #5f3f3f;\n}\n.ui-state-error-text,\n.ui-widget-content .ui-state-error-text,\n.ui-widget-header .ui-state-error-text {\n\tcolor: #5f3f3f;\n}\n.ui-priority-primary,\n.ui-widget-content .ui-priority-primary,\n.ui-widget-header .ui-priority-primary {\n\tfont-weight: bold;\n}\n.ui-priority-secondary,\n.ui-widget-content .ui-priority-secondary,\n.ui-widget-header .ui-priority-secondary {\n\topacity: .7;\n\tfilter:Alpha(Opacity=70); /* support: IE8 */\n\tfont-weight: normal;\n}\n.ui-state-disabled,\n.ui-widget-content .ui-state-disabled,\n.ui-widget-header .ui-state-disabled {\n\topacity: .35;\n\tfilter:Alpha(Opacity=35); /* support: IE8 */\n\tbackground-image: none;\n}\n.ui-state-disabled .ui-icon {\n\tfilter:Alpha(Opacity=35); /* support: IE8 - See #6059 */\n}\n\n/* Icons\n----------------------------------*/\n\n/* states and images */\n.ui-icon {\n\twidth: 16px;\n\theight: 16px;\n}\n.ui-icon,\n.ui-widget-content .ui-icon {\n\tbackground-image: url(\"images/ui-icons_444444_256x240.png\");\n}\n.ui-widget-header .ui-icon {\n\tbackground-image: url(\"images/ui-icons_444444_256x240.png\");\n}\n.ui-state-default .ui-icon {\n\tbackground-image: url(\"images/ui-icons_777777_256x240.png\");\n}\n.ui-state-hover .ui-icon,\n.ui-state-focus .ui-icon {\n\tbackground-image: url(\"images/ui-icons_555555_256x240.png\");\n}\n.ui-state-active .ui-icon {\n\tbackground-image: url(\"images/ui-icons_ffffff_256x240.png\");\n}\n.ui-state-highlight .ui-icon {\n\tbackground-image: url(\"images/ui-icons_777620_256x240.png\");\n}\n.ui-state-error .ui-icon,\n.ui-state-error-text .ui-icon {\n\tbackground-image: url(\"images/ui-icons_cc0000_256x240.png\");\n}\n\n/* positioning */\n.ui-icon-blank { background-position: 16px 16px; }\n.ui-icon-carat-1-n { background-position: 0 0; }\n.ui-icon-carat-1-ne { background-position: -16px 0; }\n.ui-icon-carat-1-e { background-position: -32px 0; }\n.ui-icon-carat-1-se { background-position: -48px 0; }\n.ui-icon-carat-1-s { background-position: -64px 0; }\n.ui-icon-carat-1-sw { background-position: -80px 0; }\n.ui-icon-carat-1-w { background-position: -96px 0; }\n.ui-icon-carat-1-nw { background-position: -112px 0; }\n.ui-icon-carat-2-n-s { background-position: -128px 0; }\n.ui-icon-carat-2-e-w { background-position: -144px 0; }\n.ui-icon-triangle-1-n { background-position: 0 -16px; }\n.ui-icon-triangle-1-ne { background-position: -16px -16px; }\n.ui-icon-triangle-1-e { background-position: -32px -16px; }\n.ui-icon-triangle-1-se { background-position: -48px -16px; }\n.ui-icon-triangle-1-s { background-position: -64px -16px; }\n.ui-icon-triangle-1-sw { background-position: -80px -16px; }\n.ui-icon-triangle-1-w { background-position: -96px -16px; }\n.ui-icon-triangle-1-nw { background-position: -112px -16px; }\n.ui-icon-triangle-2-n-s { background-position: -128px -16px; }\n.ui-icon-triangle-2-e-w { background-position: -144px -16px; }\n.ui-icon-arrow-1-n { background-position: 0 -32px; }\n.ui-icon-arrow-1-ne { background-position: -16px -32px; }\n.ui-icon-arrow-1-e { background-position: -32px -32px; }\n.ui-icon-arrow-1-se { background-position: -48px -32px; }\n.ui-icon-arrow-1-s { background-position: -64px -32px; }\n.ui-icon-arrow-1-sw { background-position: -80px -32px; }\n.ui-icon-arrow-1-w { background-position: -96px -32px; }\n.ui-icon-arrow-1-nw { background-position: -112px -32px; }\n.ui-icon-arrow-2-n-s { background-position: -128px -32px; }\n.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }\n.ui-icon-arrow-2-e-w { background-position: -160px -32px; }\n.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }\n.ui-icon-arrowstop-1-n { background-position: -192px -32px; }\n.ui-icon-arrowstop-1-e { background-position: -208px -32px; }\n.ui-icon-arrowstop-1-s { background-position: -224px -32px; }\n.ui-icon-arrowstop-1-w { background-position: -240px -32px; }\n.ui-icon-arrowthick-1-n { background-position: 0 -48px; }\n.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }\n.ui-icon-arrowthick-1-e { background-position: -32px -48px; }\n.ui-icon-arrowthick-1-se { background-position: -48px -48px; }\n.ui-icon-arrowthick-1-s { background-position: -64px -48px; }\n.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }\n.ui-icon-arrowthick-1-w { background-position: -96px -48px; }\n.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }\n.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }\n.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }\n.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }\n.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }\n.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }\n.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }\n.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }\n.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }\n.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }\n.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }\n.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }\n.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }\n.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }\n.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }\n.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }\n.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }\n.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }\n.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }\n.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }\n.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }\n.ui-icon-arrow-4 { background-position: 0 -80px; }\n.ui-icon-arrow-4-diag { background-position: -16px -80px; }\n.ui-icon-extlink { background-position: -32px -80px; }\n.ui-icon-newwin { background-position: -48px -80px; }\n.ui-icon-refresh { background-position: -64px -80px; }\n.ui-icon-shuffle { background-position: -80px -80px; }\n.ui-icon-transfer-e-w { background-position: -96px -80px; }\n.ui-icon-transferthick-e-w { background-position: -112px -80px; }\n.ui-icon-folder-collapsed { background-position: 0 -96px; }\n.ui-icon-folder-open { background-position: -16px -96px; }\n.ui-icon-document { background-position: -32px -96px; }\n.ui-icon-document-b { background-position: -48px -96px; }\n.ui-icon-note { background-position: -64px -96px; }\n.ui-icon-mail-closed { background-position: -80px -96px; }\n.ui-icon-mail-open { background-position: -96px -96px; }\n.ui-icon-suitcase { background-position: -112px -96px; }\n.ui-icon-comment { background-position: -128px -96px; }\n.ui-icon-person { background-position: -144px -96px; }\n.ui-icon-print { background-position: -160px -96px; }\n.ui-icon-trash { background-position: -176px -96px; }\n.ui-icon-locked { background-position: -192px -96px; }\n.ui-icon-unlocked { background-position: -208px -96px; }\n.ui-icon-bookmark { background-position: -224px -96px; }\n.ui-icon-tag { background-position: -240px -96px; }\n.ui-icon-home { background-position: 0 -112px; }\n.ui-icon-flag { background-position: -16px -112px; }\n.ui-icon-calendar { background-position: -32px -112px; }\n.ui-icon-cart { background-position: -48px -112px; }\n.ui-icon-pencil { background-position: -64px -112px; }\n.ui-icon-clock { background-position: -80px -112px; }\n.ui-icon-disk { background-position: -96px -112px; }\n.ui-icon-calculator { background-position: -112px -112px; }\n.ui-icon-zoomin { background-position: -128px -112px; }\n.ui-icon-zoomout { background-position: -144px -112px; }\n.ui-icon-search { background-position: -160px -112px; }\n.ui-icon-wrench { background-position: -176px -112px; }\n.ui-icon-gear { background-position: -192px -112px; }\n.ui-icon-heart { background-position: -208px -112px; }\n.ui-icon-star { background-position: -224px -112px; }\n.ui-icon-link { background-position: -240px -112px; }\n.ui-icon-cancel { background-position: 0 -128px; }\n.ui-icon-plus { background-position: -16px -128px; }\n.ui-icon-plusthick { background-position: -32px -128px; }\n.ui-icon-minus { background-position: -48px -128px; }\n.ui-icon-minusthick { background-position: -64px -128px; }\n.ui-icon-close { background-position: -80px -128px; }\n.ui-icon-closethick { background-position: -96px -128px; }\n.ui-icon-key { background-position: -112px -128px; }\n.ui-icon-lightbulb { background-position: -128px -128px; }\n.ui-icon-scissors { background-position: -144px -128px; }\n.ui-icon-clipboard { background-position: -160px -128px; }\n.ui-icon-copy { background-position: -176px -128px; }\n.ui-icon-contact { background-position: -192px -128px; }\n.ui-icon-image { background-position: -208px -128px; }\n.ui-icon-video { background-position: -224px -128px; }\n.ui-icon-script { background-position: -240px -128px; }\n.ui-icon-alert { background-position: 0 -144px; }\n.ui-icon-info { background-position: -16px -144px; }\n.ui-icon-notice { background-position: -32px -144px; }\n.ui-icon-help { background-position: -48px -144px; }\n.ui-icon-check { background-position: -64px -144px; }\n.ui-icon-bullet { background-position: -80px -144px; }\n.ui-icon-radio-on { background-position: -96px -144px; }\n.ui-icon-radio-off { background-position: -112px -144px; }\n.ui-icon-pin-w { background-position: -128px -144px; }\n.ui-icon-pin-s { background-position: -144px -144px; }\n.ui-icon-play { background-position: 0 -160px; }\n.ui-icon-pause { background-position: -16px -160px; }\n.ui-icon-seek-next { background-position: -32px -160px; }\n.ui-icon-seek-prev { background-position: -48px -160px; }\n.ui-icon-seek-end { background-position: -64px -160px; }\n.ui-icon-seek-start { background-position: -80px -160px; }\n/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */\n.ui-icon-seek-first { background-position: -80px -160px; }\n.ui-icon-stop { background-position: -96px -160px; }\n.ui-icon-eject { background-position: -112px -160px; }\n.ui-icon-volume-off { background-position: -128px -160px; }\n.ui-icon-volume-on { background-position: -144px -160px; }\n.ui-icon-power { background-position: 0 -176px; }\n.ui-icon-signal-diag { background-position: -16px -176px; }\n.ui-icon-signal { background-position: -32px -176px; }\n.ui-icon-battery-0 { background-position: -48px -176px; }\n.ui-icon-battery-1 { background-position: -64px -176px; }\n.ui-icon-battery-2 { background-position: -80px -176px; }\n.ui-icon-battery-3 { background-position: -96px -176px; }\n.ui-icon-circle-plus { background-position: 0 -192px; }\n.ui-icon-circle-minus { background-position: -16px -192px; }\n.ui-icon-circle-close { background-position: -32px -192px; }\n.ui-icon-circle-triangle-e { background-position: -48px -192px; }\n.ui-icon-circle-triangle-s { background-position: -64px -192px; }\n.ui-icon-circle-triangle-w { background-position: -80px -192px; }\n.ui-icon-circle-triangle-n { background-position: -96px -192px; }\n.ui-icon-circle-arrow-e { background-position: -112px -192px; }\n.ui-icon-circle-arrow-s { background-position: -128px -192px; }\n.ui-icon-circle-arrow-w { background-position: -144px -192px; }\n.ui-icon-circle-arrow-n { background-position: -160px -192px; }\n.ui-icon-circle-zoomin { background-position: -176px -192px; }\n.ui-icon-circle-zoomout { background-position: -192px -192px; }\n.ui-icon-circle-check { background-position: -208px -192px; }\n.ui-icon-circlesmall-plus { background-position: 0 -208px; }\n.ui-icon-circlesmall-minus { background-position: -16px -208px; }\n.ui-icon-circlesmall-close { background-position: -32px -208px; }\n.ui-icon-squaresmall-plus { background-position: -48px -208px; }\n.ui-icon-squaresmall-minus { background-position: -64px -208px; }\n.ui-icon-squaresmall-close { background-position: -80px -208px; }\n.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }\n.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }\n.ui-icon-grip-solid-vertical { background-position: -32px -224px; }\n.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }\n.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }\n.ui-icon-grip-diagonal-se { background-position: -80px -224px; }\n\n\n/* Misc visuals\n----------------------------------*/\n\n/* Corner radius */\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-left,\n.ui-corner-tl {\n\tborder-top-left-radius: 3px;\n}\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-right,\n.ui-corner-tr {\n\tborder-top-right-radius: 3px;\n}\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-left,\n.ui-corner-bl {\n\tborder-bottom-left-radius: 3px;\n}\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-right,\n.ui-corner-br {\n\tborder-bottom-right-radius: 3px;\n}\n\n/* Overlays */\n.ui-widget-overlay {\n\tbackground: #aaaaaa;\n\topacity: .3;\n\tfilter: Alpha(Opacity=30); /* support: IE8 */\n}\n.ui-widget-shadow {\n\tmargin: 0px 0 0 0px;\n\tpadding: 5px;\n\tbackground: #666666;\n\topacity: .3;\n\tfilter: Alpha(Opacity=30); /* support: IE8 */\n\tborder-radius: 8px;\n}\n"
  },
  {
    "path": "docs/site_libs/jqueryui-1.11.4/jquery-ui.js",
    "content": "/*! jQuery UI - v1.11.4 - 2016-01-05\n* http://jqueryui.com\n* Includes: core.js, widget.js, mouse.js, position.js, draggable.js, droppable.js, resizable.js, selectable.js, sortable.js, accordion.js, autocomplete.js, button.js, dialog.js, menu.js, progressbar.js, selectmenu.js, slider.js, spinner.js, tabs.js, tooltip.js, effect.js, effect-blind.js, effect-bounce.js, effect-clip.js, effect-drop.js, effect-explode.js, effect-fade.js, effect-fold.js, effect-highlight.js, effect-puff.js, effect-pulsate.js, effect-scale.js, effect-shake.js, effect-size.js, effect-slide.js, effect-transfer.js\n* Copyright jQuery Foundation and other contributors; Licensed MIT */\n\n(function( factory ) {\n\tif ( typeof define === \"function\" && define.amd ) {\n\n\t\t// AMD. Register as an anonymous module.\n\t\tdefine([ \"jquery\" ], factory );\n\t} else {\n\n\t\t// Browser globals\n\t\tfactory( jQuery );\n\t}\n}(function( $ ) {\n/*!\n * jQuery UI Core 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/category/ui-core/\n */\n\n\n// $.ui might exist from components with no dependencies, e.g., $.ui.position\n$.ui = $.ui || {};\n\n$.extend( $.ui, {\n\tversion: \"1.11.4\",\n\n\tkeyCode: {\n\t\tBACKSPACE: 8,\n\t\tCOMMA: 188,\n\t\tDELETE: 46,\n\t\tDOWN: 40,\n\t\tEND: 35,\n\t\tENTER: 13,\n\t\tESCAPE: 27,\n\t\tHOME: 36,\n\t\tLEFT: 37,\n\t\tPAGE_DOWN: 34,\n\t\tPAGE_UP: 33,\n\t\tPERIOD: 190,\n\t\tRIGHT: 39,\n\t\tSPACE: 32,\n\t\tTAB: 9,\n\t\tUP: 38\n\t}\n});\n\n// plugins\n$.fn.extend({\n\tscrollParent: function( includeHidden ) {\n\t\tvar position = this.css( \"position\" ),\n\t\t\texcludeStaticParent = position === \"absolute\",\n\t\t\toverflowRegex = includeHidden ? /(auto|scroll|hidden)/ : /(auto|scroll)/,\n\t\t\tscrollParent = this.parents().filter( function() {\n\t\t\t\tvar parent = $( this );\n\t\t\t\tif ( excludeStaticParent && parent.css( \"position\" ) === \"static\" ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\treturn overflowRegex.test( parent.css( \"overflow\" ) + parent.css( \"overflow-y\" ) + parent.css( \"overflow-x\" ) );\n\t\t\t}).eq( 0 );\n\n\t\treturn position === \"fixed\" || !scrollParent.length ? $( this[ 0 ].ownerDocument || document ) : scrollParent;\n\t},\n\n\tuniqueId: (function() {\n\t\tvar uuid = 0;\n\n\t\treturn function() {\n\t\t\treturn this.each(function() {\n\t\t\t\tif ( !this.id ) {\n\t\t\t\t\tthis.id = \"ui-id-\" + ( ++uuid );\n\t\t\t\t}\n\t\t\t});\n\t\t};\n\t})(),\n\n\tremoveUniqueId: function() {\n\t\treturn this.each(function() {\n\t\t\tif ( /^ui-id-\\d+$/.test( this.id ) ) {\n\t\t\t\t$( this ).removeAttr( \"id\" );\n\t\t\t}\n\t\t});\n\t}\n});\n\n// selectors\nfunction focusable( element, isTabIndexNotNaN ) {\n\tvar map, mapName, img,\n\t\tnodeName = element.nodeName.toLowerCase();\n\tif ( \"area\" === nodeName ) {\n\t\tmap = element.parentNode;\n\t\tmapName = map.name;\n\t\tif ( !element.href || !mapName || map.nodeName.toLowerCase() !== \"map\" ) {\n\t\t\treturn false;\n\t\t}\n\t\timg = $( \"img[usemap='#\" + mapName + \"']\" )[ 0 ];\n\t\treturn !!img && visible( img );\n\t}\n\treturn ( /^(input|select|textarea|button|object)$/.test( nodeName ) ?\n\t\t!element.disabled :\n\t\t\"a\" === nodeName ?\n\t\t\telement.href || isTabIndexNotNaN :\n\t\t\tisTabIndexNotNaN) &&\n\t\t// the element and all of its ancestors must be visible\n\t\tvisible( element );\n}\n\nfunction visible( element ) {\n\treturn $.expr.filters.visible( element ) &&\n\t\t!$( element ).parents().addBack().filter(function() {\n\t\t\treturn $.css( this, \"visibility\" ) === \"hidden\";\n\t\t}).length;\n}\n\n$.extend( $.expr[ \":\" ], {\n\tdata: $.expr.createPseudo ?\n\t\t$.expr.createPseudo(function( dataName ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn !!$.data( elem, dataName );\n\t\t\t};\n\t\t}) :\n\t\t// support: jQuery <1.8\n\t\tfunction( elem, i, match ) {\n\t\t\treturn !!$.data( elem, match[ 3 ] );\n\t\t},\n\n\tfocusable: function( element ) {\n\t\treturn focusable( element, !isNaN( $.attr( element, \"tabindex\" ) ) );\n\t},\n\n\ttabbable: function( element ) {\n\t\tvar tabIndex = $.attr( element, \"tabindex\" ),\n\t\t\tisTabIndexNaN = isNaN( tabIndex );\n\t\treturn ( isTabIndexNaN || tabIndex >= 0 ) && focusable( element, !isTabIndexNaN );\n\t}\n});\n\n// support: jQuery <1.8\nif ( !$( \"<a>\" ).outerWidth( 1 ).jquery ) {\n\t$.each( [ \"Width\", \"Height\" ], function( i, name ) {\n\t\tvar side = name === \"Width\" ? [ \"Left\", \"Right\" ] : [ \"Top\", \"Bottom\" ],\n\t\t\ttype = name.toLowerCase(),\n\t\t\torig = {\n\t\t\t\tinnerWidth: $.fn.innerWidth,\n\t\t\t\tinnerHeight: $.fn.innerHeight,\n\t\t\t\touterWidth: $.fn.outerWidth,\n\t\t\t\touterHeight: $.fn.outerHeight\n\t\t\t};\n\n\t\tfunction reduce( elem, size, border, margin ) {\n\t\t\t$.each( side, function() {\n\t\t\t\tsize -= parseFloat( $.css( elem, \"padding\" + this ) ) || 0;\n\t\t\t\tif ( border ) {\n\t\t\t\t\tsize -= parseFloat( $.css( elem, \"border\" + this + \"Width\" ) ) || 0;\n\t\t\t\t}\n\t\t\t\tif ( margin ) {\n\t\t\t\t\tsize -= parseFloat( $.css( elem, \"margin\" + this ) ) || 0;\n\t\t\t\t}\n\t\t\t});\n\t\t\treturn size;\n\t\t}\n\n\t\t$.fn[ \"inner\" + name ] = function( size ) {\n\t\t\tif ( size === undefined ) {\n\t\t\t\treturn orig[ \"inner\" + name ].call( this );\n\t\t\t}\n\n\t\t\treturn this.each(function() {\n\t\t\t\t$( this ).css( type, reduce( this, size ) + \"px\" );\n\t\t\t});\n\t\t};\n\n\t\t$.fn[ \"outer\" + name] = function( size, margin ) {\n\t\t\tif ( typeof size !== \"number\" ) {\n\t\t\t\treturn orig[ \"outer\" + name ].call( this, size );\n\t\t\t}\n\n\t\t\treturn this.each(function() {\n\t\t\t\t$( this).css( type, reduce( this, size, true, margin ) + \"px\" );\n\t\t\t});\n\t\t};\n\t});\n}\n\n// support: jQuery <1.8\nif ( !$.fn.addBack ) {\n\t$.fn.addBack = function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t};\n}\n\n// support: jQuery 1.6.1, 1.6.2 (http://bugs.jquery.com/ticket/9413)\nif ( $( \"<a>\" ).data( \"a-b\", \"a\" ).removeData( \"a-b\" ).data( \"a-b\" ) ) {\n\t$.fn.removeData = (function( removeData ) {\n\t\treturn function( key ) {\n\t\t\tif ( arguments.length ) {\n\t\t\t\treturn removeData.call( this, $.camelCase( key ) );\n\t\t\t} else {\n\t\t\t\treturn removeData.call( this );\n\t\t\t}\n\t\t};\n\t})( $.fn.removeData );\n}\n\n// deprecated\n$.ui.ie = !!/msie [\\w.]+/.exec( navigator.userAgent.toLowerCase() );\n\n$.fn.extend({\n\tfocus: (function( orig ) {\n\t\treturn function( delay, fn ) {\n\t\t\treturn typeof delay === \"number\" ?\n\t\t\t\tthis.each(function() {\n\t\t\t\t\tvar elem = this;\n\t\t\t\t\tsetTimeout(function() {\n\t\t\t\t\t\t$( elem ).focus();\n\t\t\t\t\t\tif ( fn ) {\n\t\t\t\t\t\t\tfn.call( elem );\n\t\t\t\t\t\t}\n\t\t\t\t\t}, delay );\n\t\t\t\t}) :\n\t\t\t\torig.apply( this, arguments );\n\t\t};\n\t})( $.fn.focus ),\n\n\tdisableSelection: (function() {\n\t\tvar eventType = \"onselectstart\" in document.createElement( \"div\" ) ?\n\t\t\t\"selectstart\" :\n\t\t\t\"mousedown\";\n\n\t\treturn function() {\n\t\t\treturn this.bind( eventType + \".ui-disableSelection\", function( event ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t});\n\t\t};\n\t})(),\n\n\tenableSelection: function() {\n\t\treturn this.unbind( \".ui-disableSelection\" );\n\t},\n\n\tzIndex: function( zIndex ) {\n\t\tif ( zIndex !== undefined ) {\n\t\t\treturn this.css( \"zIndex\", zIndex );\n\t\t}\n\n\t\tif ( this.length ) {\n\t\t\tvar elem = $( this[ 0 ] ), position, value;\n\t\t\twhile ( elem.length && elem[ 0 ] !== document ) {\n\t\t\t\t// Ignore z-index if position is set to a value where z-index is ignored by the browser\n\t\t\t\t// This makes behavior of this function consistent across browsers\n\t\t\t\t// WebKit always returns auto if the element is positioned\n\t\t\t\tposition = elem.css( \"position\" );\n\t\t\t\tif ( position === \"absolute\" || position === \"relative\" || position === \"fixed\" ) {\n\t\t\t\t\t// IE returns 0 when zIndex is not specified\n\t\t\t\t\t// other browsers return a string\n\t\t\t\t\t// we ignore the case of nested elements with an explicit value of 0\n\t\t\t\t\t// <div style=\"z-index: -10;\"><div style=\"z-index: 0;\"></div></div>\n\t\t\t\t\tvalue = parseInt( elem.css( \"zIndex\" ), 10 );\n\t\t\t\t\tif ( !isNaN( value ) && value !== 0 ) {\n\t\t\t\t\t\treturn value;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telem = elem.parent();\n\t\t\t}\n\t\t}\n\n\t\treturn 0;\n\t}\n});\n\n// $.ui.plugin is deprecated. Use $.widget() extensions instead.\n$.ui.plugin = {\n\tadd: function( module, option, set ) {\n\t\tvar i,\n\t\t\tproto = $.ui[ module ].prototype;\n\t\tfor ( i in set ) {\n\t\t\tproto.plugins[ i ] = proto.plugins[ i ] || [];\n\t\t\tproto.plugins[ i ].push( [ option, set[ i ] ] );\n\t\t}\n\t},\n\tcall: function( instance, name, args, allowDisconnected ) {\n\t\tvar i,\n\t\t\tset = instance.plugins[ name ];\n\n\t\tif ( !set ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( !allowDisconnected && ( !instance.element[ 0 ].parentNode || instance.element[ 0 ].parentNode.nodeType === 11 ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tfor ( i = 0; i < set.length; i++ ) {\n\t\t\tif ( instance.options[ set[ i ][ 0 ] ] ) {\n\t\t\t\tset[ i ][ 1 ].apply( instance.element, args );\n\t\t\t}\n\t\t}\n\t}\n};\n\n\n/*!\n * jQuery UI Widget 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/jQuery.widget/\n */\n\n\nvar widget_uuid = 0,\n\twidget_slice = Array.prototype.slice;\n\n$.cleanData = (function( orig ) {\n\treturn function( elems ) {\n\t\tvar events, elem, i;\n\t\tfor ( i = 0; (elem = elems[i]) != null; i++ ) {\n\t\t\ttry {\n\n\t\t\t\t// Only trigger remove when necessary to save time\n\t\t\t\tevents = $._data( elem, \"events\" );\n\t\t\t\tif ( events && events.remove ) {\n\t\t\t\t\t$( elem ).triggerHandler( \"remove\" );\n\t\t\t\t}\n\n\t\t\t// http://bugs.jquery.com/ticket/8235\n\t\t\t} catch ( e ) {}\n\t\t}\n\t\torig( elems );\n\t};\n})( $.cleanData );\n\n$.widget = function( name, base, prototype ) {\n\tvar fullName, existingConstructor, constructor, basePrototype,\n\t\t// proxiedPrototype allows the provided prototype to remain unmodified\n\t\t// so that it can be used as a mixin for multiple widgets (#8876)\n\t\tproxiedPrototype = {},\n\t\tnamespace = name.split( \".\" )[ 0 ];\n\n\tname = name.split( \".\" )[ 1 ];\n\tfullName = namespace + \"-\" + name;\n\n\tif ( !prototype ) {\n\t\tprototype = base;\n\t\tbase = $.Widget;\n\t}\n\n\t// create selector for plugin\n\t$.expr[ \":\" ][ fullName.toLowerCase() ] = function( elem ) {\n\t\treturn !!$.data( elem, fullName );\n\t};\n\n\t$[ namespace ] = $[ namespace ] || {};\n\texistingConstructor = $[ namespace ][ name ];\n\tconstructor = $[ namespace ][ name ] = function( options, element ) {\n\t\t// allow instantiation without \"new\" keyword\n\t\tif ( !this._createWidget ) {\n\t\t\treturn new constructor( options, element );\n\t\t}\n\n\t\t// allow instantiation without initializing for simple inheritance\n\t\t// must use \"new\" keyword (the code above always passes args)\n\t\tif ( arguments.length ) {\n\t\t\tthis._createWidget( options, element );\n\t\t}\n\t};\n\t// extend with the existing constructor to carry over any static properties\n\t$.extend( constructor, existingConstructor, {\n\t\tversion: prototype.version,\n\t\t// copy the object used to create the prototype in case we need to\n\t\t// redefine the widget later\n\t\t_proto: $.extend( {}, prototype ),\n\t\t// track widgets that inherit from this widget in case this widget is\n\t\t// redefined after a widget inherits from it\n\t\t_childConstructors: []\n\t});\n\n\tbasePrototype = new base();\n\t// we need to make the options hash a property directly on the new instance\n\t// otherwise we'll modify the options hash on the prototype that we're\n\t// inheriting from\n\tbasePrototype.options = $.widget.extend( {}, basePrototype.options );\n\t$.each( prototype, function( prop, value ) {\n\t\tif ( !$.isFunction( value ) ) {\n\t\t\tproxiedPrototype[ prop ] = value;\n\t\t\treturn;\n\t\t}\n\t\tproxiedPrototype[ prop ] = (function() {\n\t\t\tvar _super = function() {\n\t\t\t\t\treturn base.prototype[ prop ].apply( this, arguments );\n\t\t\t\t},\n\t\t\t\t_superApply = function( args ) {\n\t\t\t\t\treturn base.prototype[ prop ].apply( this, args );\n\t\t\t\t};\n\t\t\treturn function() {\n\t\t\t\tvar __super = this._super,\n\t\t\t\t\t__superApply = this._superApply,\n\t\t\t\t\treturnValue;\n\n\t\t\t\tthis._super = _super;\n\t\t\t\tthis._superApply = _superApply;\n\n\t\t\t\treturnValue = value.apply( this, arguments );\n\n\t\t\t\tthis._super = __super;\n\t\t\t\tthis._superApply = __superApply;\n\n\t\t\t\treturn returnValue;\n\t\t\t};\n\t\t})();\n\t});\n\tconstructor.prototype = $.widget.extend( basePrototype, {\n\t\t// TODO: remove support for widgetEventPrefix\n\t\t// always use the name + a colon as the prefix, e.g., draggable:start\n\t\t// don't prefix for widgets that aren't DOM-based\n\t\twidgetEventPrefix: existingConstructor ? (basePrototype.widgetEventPrefix || name) : name\n\t}, proxiedPrototype, {\n\t\tconstructor: constructor,\n\t\tnamespace: namespace,\n\t\twidgetName: name,\n\t\twidgetFullName: fullName\n\t});\n\n\t// If this widget is being redefined then we need to find all widgets that\n\t// are inheriting from it and redefine all of them so that they inherit from\n\t// the new version of this widget. We're essentially trying to replace one\n\t// level in the prototype chain.\n\tif ( existingConstructor ) {\n\t\t$.each( existingConstructor._childConstructors, function( i, child ) {\n\t\t\tvar childPrototype = child.prototype;\n\n\t\t\t// redefine the child widget using the same prototype that was\n\t\t\t// originally used, but inherit from the new version of the base\n\t\t\t$.widget( childPrototype.namespace + \".\" + childPrototype.widgetName, constructor, child._proto );\n\t\t});\n\t\t// remove the list of existing child constructors from the old constructor\n\t\t// so the old child constructors can be garbage collected\n\t\tdelete existingConstructor._childConstructors;\n\t} else {\n\t\tbase._childConstructors.push( constructor );\n\t}\n\n\t$.widget.bridge( name, constructor );\n\n\treturn constructor;\n};\n\n$.widget.extend = function( target ) {\n\tvar input = widget_slice.call( arguments, 1 ),\n\t\tinputIndex = 0,\n\t\tinputLength = input.length,\n\t\tkey,\n\t\tvalue;\n\tfor ( ; inputIndex < inputLength; inputIndex++ ) {\n\t\tfor ( key in input[ inputIndex ] ) {\n\t\t\tvalue = input[ inputIndex ][ key ];\n\t\t\tif ( input[ inputIndex ].hasOwnProperty( key ) && value !== undefined ) {\n\t\t\t\t// Clone objects\n\t\t\t\tif ( $.isPlainObject( value ) ) {\n\t\t\t\t\ttarget[ key ] = $.isPlainObject( target[ key ] ) ?\n\t\t\t\t\t\t$.widget.extend( {}, target[ key ], value ) :\n\t\t\t\t\t\t// Don't extend strings, arrays, etc. with objects\n\t\t\t\t\t\t$.widget.extend( {}, value );\n\t\t\t\t// Copy everything else by reference\n\t\t\t\t} else {\n\t\t\t\t\ttarget[ key ] = value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn target;\n};\n\n$.widget.bridge = function( name, object ) {\n\tvar fullName = object.prototype.widgetFullName || name;\n\t$.fn[ name ] = function( options ) {\n\t\tvar isMethodCall = typeof options === \"string\",\n\t\t\targs = widget_slice.call( arguments, 1 ),\n\t\t\treturnValue = this;\n\n\t\tif ( isMethodCall ) {\n\t\t\tthis.each(function() {\n\t\t\t\tvar methodValue,\n\t\t\t\t\tinstance = $.data( this, fullName );\n\t\t\t\tif ( options === \"instance\" ) {\n\t\t\t\t\treturnValue = instance;\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\tif ( !instance ) {\n\t\t\t\t\treturn $.error( \"cannot call methods on \" + name + \" prior to initialization; \" +\n\t\t\t\t\t\t\"attempted to call method '\" + options + \"'\" );\n\t\t\t\t}\n\t\t\t\tif ( !$.isFunction( instance[options] ) || options.charAt( 0 ) === \"_\" ) {\n\t\t\t\t\treturn $.error( \"no such method '\" + options + \"' for \" + name + \" widget instance\" );\n\t\t\t\t}\n\t\t\t\tmethodValue = instance[ options ].apply( instance, args );\n\t\t\t\tif ( methodValue !== instance && methodValue !== undefined ) {\n\t\t\t\t\treturnValue = methodValue && methodValue.jquery ?\n\t\t\t\t\t\treturnValue.pushStack( methodValue.get() ) :\n\t\t\t\t\t\tmethodValue;\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\n\t\t\t// Allow multiple hashes to be passed on init\n\t\t\tif ( args.length ) {\n\t\t\t\toptions = $.widget.extend.apply( null, [ options ].concat(args) );\n\t\t\t}\n\n\t\t\tthis.each(function() {\n\t\t\t\tvar instance = $.data( this, fullName );\n\t\t\t\tif ( instance ) {\n\t\t\t\t\tinstance.option( options || {} );\n\t\t\t\t\tif ( instance._init ) {\n\t\t\t\t\t\tinstance._init();\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t$.data( this, fullName, new object( options, this ) );\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\treturn returnValue;\n\t};\n};\n\n$.Widget = function( /* options, element */ ) {};\n$.Widget._childConstructors = [];\n\n$.Widget.prototype = {\n\twidgetName: \"widget\",\n\twidgetEventPrefix: \"\",\n\tdefaultElement: \"<div>\",\n\toptions: {\n\t\tdisabled: false,\n\n\t\t// callbacks\n\t\tcreate: null\n\t},\n\t_createWidget: function( options, element ) {\n\t\telement = $( element || this.defaultElement || this )[ 0 ];\n\t\tthis.element = $( element );\n\t\tthis.uuid = widget_uuid++;\n\t\tthis.eventNamespace = \".\" + this.widgetName + this.uuid;\n\n\t\tthis.bindings = $();\n\t\tthis.hoverable = $();\n\t\tthis.focusable = $();\n\n\t\tif ( element !== this ) {\n\t\t\t$.data( element, this.widgetFullName, this );\n\t\t\tthis._on( true, this.element, {\n\t\t\t\tremove: function( event ) {\n\t\t\t\t\tif ( event.target === element ) {\n\t\t\t\t\t\tthis.destroy();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\t\t\tthis.document = $( element.style ?\n\t\t\t\t// element within the document\n\t\t\t\telement.ownerDocument :\n\t\t\t\t// element is window or document\n\t\t\t\telement.document || element );\n\t\t\tthis.window = $( this.document[0].defaultView || this.document[0].parentWindow );\n\t\t}\n\n\t\tthis.options = $.widget.extend( {},\n\t\t\tthis.options,\n\t\t\tthis._getCreateOptions(),\n\t\t\toptions );\n\n\t\tthis._create();\n\t\tthis._trigger( \"create\", null, this._getCreateEventData() );\n\t\tthis._init();\n\t},\n\t_getCreateOptions: $.noop,\n\t_getCreateEventData: $.noop,\n\t_create: $.noop,\n\t_init: $.noop,\n\n\tdestroy: function() {\n\t\tthis._destroy();\n\t\t// we can probably remove the unbind calls in 2.0\n\t\t// all event bindings should go through this._on()\n\t\tthis.element\n\t\t\t.unbind( this.eventNamespace )\n\t\t\t.removeData( this.widgetFullName )\n\t\t\t// support: jquery <1.6.3\n\t\t\t// http://bugs.jquery.com/ticket/9413\n\t\t\t.removeData( $.camelCase( this.widgetFullName ) );\n\t\tthis.widget()\n\t\t\t.unbind( this.eventNamespace )\n\t\t\t.removeAttr( \"aria-disabled\" )\n\t\t\t.removeClass(\n\t\t\t\tthis.widgetFullName + \"-disabled \" +\n\t\t\t\t\"ui-state-disabled\" );\n\n\t\t// clean up events and states\n\t\tthis.bindings.unbind( this.eventNamespace );\n\t\tthis.hoverable.removeClass( \"ui-state-hover\" );\n\t\tthis.focusable.removeClass( \"ui-state-focus\" );\n\t},\n\t_destroy: $.noop,\n\n\twidget: function() {\n\t\treturn this.element;\n\t},\n\n\toption: function( key, value ) {\n\t\tvar options = key,\n\t\t\tparts,\n\t\t\tcurOption,\n\t\t\ti;\n\n\t\tif ( arguments.length === 0 ) {\n\t\t\t// don't return a reference to the internal hash\n\t\t\treturn $.widget.extend( {}, this.options );\n\t\t}\n\n\t\tif ( typeof key === \"string\" ) {\n\t\t\t// handle nested keys, e.g., \"foo.bar\" => { foo: { bar: ___ } }\n\t\t\toptions = {};\n\t\t\tparts = key.split( \".\" );\n\t\t\tkey = parts.shift();\n\t\t\tif ( parts.length ) {\n\t\t\t\tcurOption = options[ key ] = $.widget.extend( {}, this.options[ key ] );\n\t\t\t\tfor ( i = 0; i < parts.length - 1; i++ ) {\n\t\t\t\t\tcurOption[ parts[ i ] ] = curOption[ parts[ i ] ] || {};\n\t\t\t\t\tcurOption = curOption[ parts[ i ] ];\n\t\t\t\t}\n\t\t\t\tkey = parts.pop();\n\t\t\t\tif ( arguments.length === 1 ) {\n\t\t\t\t\treturn curOption[ key ] === undefined ? null : curOption[ key ];\n\t\t\t\t}\n\t\t\t\tcurOption[ key ] = value;\n\t\t\t} else {\n\t\t\t\tif ( arguments.length === 1 ) {\n\t\t\t\t\treturn this.options[ key ] === undefined ? null : this.options[ key ];\n\t\t\t\t}\n\t\t\t\toptions[ key ] = value;\n\t\t\t}\n\t\t}\n\n\t\tthis._setOptions( options );\n\n\t\treturn this;\n\t},\n\t_setOptions: function( options ) {\n\t\tvar key;\n\n\t\tfor ( key in options ) {\n\t\t\tthis._setOption( key, options[ key ] );\n\t\t}\n\n\t\treturn this;\n\t},\n\t_setOption: function( key, value ) {\n\t\tthis.options[ key ] = value;\n\n\t\tif ( key === \"disabled\" ) {\n\t\t\tthis.widget()\n\t\t\t\t.toggleClass( this.widgetFullName + \"-disabled\", !!value );\n\n\t\t\t// If the widget is becoming disabled, then nothing is interactive\n\t\t\tif ( value ) {\n\t\t\t\tthis.hoverable.removeClass( \"ui-state-hover\" );\n\t\t\t\tthis.focusable.removeClass( \"ui-state-focus\" );\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tenable: function() {\n\t\treturn this._setOptions({ disabled: false });\n\t},\n\tdisable: function() {\n\t\treturn this._setOptions({ disabled: true });\n\t},\n\n\t_on: function( suppressDisabledCheck, element, handlers ) {\n\t\tvar delegateElement,\n\t\t\tinstance = this;\n\n\t\t// no suppressDisabledCheck flag, shuffle arguments\n\t\tif ( typeof suppressDisabledCheck !== \"boolean\" ) {\n\t\t\thandlers = element;\n\t\t\telement = suppressDisabledCheck;\n\t\t\tsuppressDisabledCheck = false;\n\t\t}\n\n\t\t// no element argument, shuffle and use this.element\n\t\tif ( !handlers ) {\n\t\t\thandlers = element;\n\t\t\telement = this.element;\n\t\t\tdelegateElement = this.widget();\n\t\t} else {\n\t\t\telement = delegateElement = $( element );\n\t\t\tthis.bindings = this.bindings.add( element );\n\t\t}\n\n\t\t$.each( handlers, function( event, handler ) {\n\t\t\tfunction handlerProxy() {\n\t\t\t\t// allow widgets to customize the disabled handling\n\t\t\t\t// - disabled as an array instead of boolean\n\t\t\t\t// - disabled class as method for disabling individual parts\n\t\t\t\tif ( !suppressDisabledCheck &&\n\t\t\t\t\t\t( instance.options.disabled === true ||\n\t\t\t\t\t\t\t$( this ).hasClass( \"ui-state-disabled\" ) ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\treturn ( typeof handler === \"string\" ? instance[ handler ] : handler )\n\t\t\t\t\t.apply( instance, arguments );\n\t\t\t}\n\n\t\t\t// copy the guid so direct unbinding works\n\t\t\tif ( typeof handler !== \"string\" ) {\n\t\t\t\thandlerProxy.guid = handler.guid =\n\t\t\t\t\thandler.guid || handlerProxy.guid || $.guid++;\n\t\t\t}\n\n\t\t\tvar match = event.match( /^([\\w:-]*)\\s*(.*)$/ ),\n\t\t\t\teventName = match[1] + instance.eventNamespace,\n\t\t\t\tselector = match[2];\n\t\t\tif ( selector ) {\n\t\t\t\tdelegateElement.delegate( selector, eventName, handlerProxy );\n\t\t\t} else {\n\t\t\t\telement.bind( eventName, handlerProxy );\n\t\t\t}\n\t\t});\n\t},\n\n\t_off: function( element, eventName ) {\n\t\teventName = (eventName || \"\").split( \" \" ).join( this.eventNamespace + \" \" ) +\n\t\t\tthis.eventNamespace;\n\t\telement.unbind( eventName ).undelegate( eventName );\n\n\t\t// Clear the stack to avoid memory leaks (#10056)\n\t\tthis.bindings = $( this.bindings.not( element ).get() );\n\t\tthis.focusable = $( this.focusable.not( element ).get() );\n\t\tthis.hoverable = $( this.hoverable.not( element ).get() );\n\t},\n\n\t_delay: function( handler, delay ) {\n\t\tfunction handlerProxy() {\n\t\t\treturn ( typeof handler === \"string\" ? instance[ handler ] : handler )\n\t\t\t\t.apply( instance, arguments );\n\t\t}\n\t\tvar instance = this;\n\t\treturn setTimeout( handlerProxy, delay || 0 );\n\t},\n\n\t_hoverable: function( element ) {\n\t\tthis.hoverable = this.hoverable.add( element );\n\t\tthis._on( element, {\n\t\t\tmouseenter: function( event ) {\n\t\t\t\t$( event.currentTarget ).addClass( \"ui-state-hover\" );\n\t\t\t},\n\t\t\tmouseleave: function( event ) {\n\t\t\t\t$( event.currentTarget ).removeClass( \"ui-state-hover\" );\n\t\t\t}\n\t\t});\n\t},\n\n\t_focusable: function( element ) {\n\t\tthis.focusable = this.focusable.add( element );\n\t\tthis._on( element, {\n\t\t\tfocusin: function( event ) {\n\t\t\t\t$( event.currentTarget ).addClass( \"ui-state-focus\" );\n\t\t\t},\n\t\t\tfocusout: function( event ) {\n\t\t\t\t$( event.currentTarget ).removeClass( \"ui-state-focus\" );\n\t\t\t}\n\t\t});\n\t},\n\n\t_trigger: function( type, event, data ) {\n\t\tvar prop, orig,\n\t\t\tcallback = this.options[ type ];\n\n\t\tdata = data || {};\n\t\tevent = $.Event( event );\n\t\tevent.type = ( type === this.widgetEventPrefix ?\n\t\t\ttype :\n\t\t\tthis.widgetEventPrefix + type ).toLowerCase();\n\t\t// the original event may come from any element\n\t\t// so we need to reset the target on the new event\n\t\tevent.target = this.element[ 0 ];\n\n\t\t// copy original event properties over to the new event\n\t\torig = event.originalEvent;\n\t\tif ( orig ) {\n\t\t\tfor ( prop in orig ) {\n\t\t\t\tif ( !( prop in event ) ) {\n\t\t\t\t\tevent[ prop ] = orig[ prop ];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tthis.element.trigger( event, data );\n\t\treturn !( $.isFunction( callback ) &&\n\t\t\tcallback.apply( this.element[0], [ event ].concat( data ) ) === false ||\n\t\t\tevent.isDefaultPrevented() );\n\t}\n};\n\n$.each( { show: \"fadeIn\", hide: \"fadeOut\" }, function( method, defaultEffect ) {\n\t$.Widget.prototype[ \"_\" + method ] = function( element, options, callback ) {\n\t\tif ( typeof options === \"string\" ) {\n\t\t\toptions = { effect: options };\n\t\t}\n\t\tvar hasOptions,\n\t\t\teffectName = !options ?\n\t\t\t\tmethod :\n\t\t\t\toptions === true || typeof options === \"number\" ?\n\t\t\t\t\tdefaultEffect :\n\t\t\t\t\toptions.effect || defaultEffect;\n\t\toptions = options || {};\n\t\tif ( typeof options === \"number\" ) {\n\t\t\toptions = { duration: options };\n\t\t}\n\t\thasOptions = !$.isEmptyObject( options );\n\t\toptions.complete = callback;\n\t\tif ( options.delay ) {\n\t\t\telement.delay( options.delay );\n\t\t}\n\t\tif ( hasOptions && $.effects && $.effects.effect[ effectName ] ) {\n\t\t\telement[ method ]( options );\n\t\t} else if ( effectName !== method && element[ effectName ] ) {\n\t\t\telement[ effectName ]( options.duration, options.easing, callback );\n\t\t} else {\n\t\t\telement.queue(function( next ) {\n\t\t\t\t$( this )[ method ]();\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback.call( element[ 0 ] );\n\t\t\t\t}\n\t\t\t\tnext();\n\t\t\t});\n\t\t}\n\t};\n});\n\nvar widget = $.widget;\n\n\n/*!\n * jQuery UI Mouse 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/mouse/\n */\n\n\nvar mouseHandled = false;\n$( document ).mouseup( function() {\n\tmouseHandled = false;\n});\n\nvar mouse = $.widget(\"ui.mouse\", {\n\tversion: \"1.11.4\",\n\toptions: {\n\t\tcancel: \"input,textarea,button,select,option\",\n\t\tdistance: 1,\n\t\tdelay: 0\n\t},\n\t_mouseInit: function() {\n\t\tvar that = this;\n\n\t\tthis.element\n\t\t\t.bind(\"mousedown.\" + this.widgetName, function(event) {\n\t\t\t\treturn that._mouseDown(event);\n\t\t\t})\n\t\t\t.bind(\"click.\" + this.widgetName, function(event) {\n\t\t\t\tif (true === $.data(event.target, that.widgetName + \".preventClickEvent\")) {\n\t\t\t\t\t$.removeData(event.target, that.widgetName + \".preventClickEvent\");\n\t\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t});\n\n\t\tthis.started = false;\n\t},\n\n\t// TODO: make sure destroying one instance of mouse doesn't mess with\n\t// other instances of mouse\n\t_mouseDestroy: function() {\n\t\tthis.element.unbind(\".\" + this.widgetName);\n\t\tif ( this._mouseMoveDelegate ) {\n\t\t\tthis.document\n\t\t\t\t.unbind(\"mousemove.\" + this.widgetName, this._mouseMoveDelegate)\n\t\t\t\t.unbind(\"mouseup.\" + this.widgetName, this._mouseUpDelegate);\n\t\t}\n\t},\n\n\t_mouseDown: function(event) {\n\t\t// don't let more than one widget handle mouseStart\n\t\tif ( mouseHandled ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis._mouseMoved = false;\n\n\t\t// we may have missed mouseup (out of window)\n\t\t(this._mouseStarted && this._mouseUp(event));\n\n\t\tthis._mouseDownEvent = event;\n\n\t\tvar that = this,\n\t\t\tbtnIsLeft = (event.which === 1),\n\t\t\t// event.target.nodeName works around a bug in IE 8 with\n\t\t\t// disabled inputs (#7620)\n\t\t\telIsCancel = (typeof this.options.cancel === \"string\" && event.target.nodeName ? $(event.target).closest(this.options.cancel).length : false);\n\t\tif (!btnIsLeft || elIsCancel || !this._mouseCapture(event)) {\n\t\t\treturn true;\n\t\t}\n\n\t\tthis.mouseDelayMet = !this.options.delay;\n\t\tif (!this.mouseDelayMet) {\n\t\t\tthis._mouseDelayTimer = setTimeout(function() {\n\t\t\t\tthat.mouseDelayMet = true;\n\t\t\t}, this.options.delay);\n\t\t}\n\n\t\tif (this._mouseDistanceMet(event) && this._mouseDelayMet(event)) {\n\t\t\tthis._mouseStarted = (this._mouseStart(event) !== false);\n\t\t\tif (!this._mouseStarted) {\n\t\t\t\tevent.preventDefault();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\t// Click event may never have fired (Gecko & Opera)\n\t\tif (true === $.data(event.target, this.widgetName + \".preventClickEvent\")) {\n\t\t\t$.removeData(event.target, this.widgetName + \".preventClickEvent\");\n\t\t}\n\n\t\t// these delegates are required to keep context\n\t\tthis._mouseMoveDelegate = function(event) {\n\t\t\treturn that._mouseMove(event);\n\t\t};\n\t\tthis._mouseUpDelegate = function(event) {\n\t\t\treturn that._mouseUp(event);\n\t\t};\n\n\t\tthis.document\n\t\t\t.bind( \"mousemove.\" + this.widgetName, this._mouseMoveDelegate )\n\t\t\t.bind( \"mouseup.\" + this.widgetName, this._mouseUpDelegate );\n\n\t\tevent.preventDefault();\n\n\t\tmouseHandled = true;\n\t\treturn true;\n\t},\n\n\t_mouseMove: function(event) {\n\t\t// Only check for mouseups outside the document if you've moved inside the document\n\t\t// at least once. This prevents the firing of mouseup in the case of IE<9, which will\n\t\t// fire a mousemove event if content is placed under the cursor. See #7778\n\t\t// Support: IE <9\n\t\tif ( this._mouseMoved ) {\n\t\t\t// IE mouseup check - mouseup happened when mouse was out of window\n\t\t\tif ($.ui.ie && ( !document.documentMode || document.documentMode < 9 ) && !event.button) {\n\t\t\t\treturn this._mouseUp(event);\n\n\t\t\t// Iframe mouseup check - mouseup occurred in another document\n\t\t\t} else if ( !event.which ) {\n\t\t\t\treturn this._mouseUp( event );\n\t\t\t}\n\t\t}\n\n\t\tif ( event.which || event.button ) {\n\t\t\tthis._mouseMoved = true;\n\t\t}\n\n\t\tif (this._mouseStarted) {\n\t\t\tthis._mouseDrag(event);\n\t\t\treturn event.preventDefault();\n\t\t}\n\n\t\tif (this._mouseDistanceMet(event) && this._mouseDelayMet(event)) {\n\t\t\tthis._mouseStarted =\n\t\t\t\t(this._mouseStart(this._mouseDownEvent, event) !== false);\n\t\t\t(this._mouseStarted ? this._mouseDrag(event) : this._mouseUp(event));\n\t\t}\n\n\t\treturn !this._mouseStarted;\n\t},\n\n\t_mouseUp: function(event) {\n\t\tthis.document\n\t\t\t.unbind( \"mousemove.\" + this.widgetName, this._mouseMoveDelegate )\n\t\t\t.unbind( \"mouseup.\" + this.widgetName, this._mouseUpDelegate );\n\n\t\tif (this._mouseStarted) {\n\t\t\tthis._mouseStarted = false;\n\n\t\t\tif (event.target === this._mouseDownEvent.target) {\n\t\t\t\t$.data(event.target, this.widgetName + \".preventClickEvent\", true);\n\t\t\t}\n\n\t\t\tthis._mouseStop(event);\n\t\t}\n\n\t\tmouseHandled = false;\n\t\treturn false;\n\t},\n\n\t_mouseDistanceMet: function(event) {\n\t\treturn (Math.max(\n\t\t\t\tMath.abs(this._mouseDownEvent.pageX - event.pageX),\n\t\t\t\tMath.abs(this._mouseDownEvent.pageY - event.pageY)\n\t\t\t) >= this.options.distance\n\t\t);\n\t},\n\n\t_mouseDelayMet: function(/* event */) {\n\t\treturn this.mouseDelayMet;\n\t},\n\n\t// These are placeholder methods, to be overriden by extending plugin\n\t_mouseStart: function(/* event */) {},\n\t_mouseDrag: function(/* event */) {},\n\t_mouseStop: function(/* event */) {},\n\t_mouseCapture: function(/* event */) { return true; }\n});\n\n\n/*!\n * jQuery UI Position 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/position/\n */\n\n(function() {\n\n$.ui = $.ui || {};\n\nvar cachedScrollbarWidth, supportsOffsetFractions,\n\tmax = Math.max,\n\tabs = Math.abs,\n\tround = Math.round,\n\trhorizontal = /left|center|right/,\n\trvertical = /top|center|bottom/,\n\troffset = /[\\+\\-]\\d+(\\.[\\d]+)?%?/,\n\trposition = /^\\w+/,\n\trpercent = /%$/,\n\t_position = $.fn.position;\n\nfunction getOffsets( offsets, width, height ) {\n\treturn [\n\t\tparseFloat( offsets[ 0 ] ) * ( rpercent.test( offsets[ 0 ] ) ? width / 100 : 1 ),\n\t\tparseFloat( offsets[ 1 ] ) * ( rpercent.test( offsets[ 1 ] ) ? height / 100 : 1 )\n\t];\n}\n\nfunction parseCss( element, property ) {\n\treturn parseInt( $.css( element, property ), 10 ) || 0;\n}\n\nfunction getDimensions( elem ) {\n\tvar raw = elem[0];\n\tif ( raw.nodeType === 9 ) {\n\t\treturn {\n\t\t\twidth: elem.width(),\n\t\t\theight: elem.height(),\n\t\t\toffset: { top: 0, left: 0 }\n\t\t};\n\t}\n\tif ( $.isWindow( raw ) ) {\n\t\treturn {\n\t\t\twidth: elem.width(),\n\t\t\theight: elem.height(),\n\t\t\toffset: { top: elem.scrollTop(), left: elem.scrollLeft() }\n\t\t};\n\t}\n\tif ( raw.preventDefault ) {\n\t\treturn {\n\t\t\twidth: 0,\n\t\t\theight: 0,\n\t\t\toffset: { top: raw.pageY, left: raw.pageX }\n\t\t};\n\t}\n\treturn {\n\t\twidth: elem.outerWidth(),\n\t\theight: elem.outerHeight(),\n\t\toffset: elem.offset()\n\t};\n}\n\n$.position = {\n\tscrollbarWidth: function() {\n\t\tif ( cachedScrollbarWidth !== undefined ) {\n\t\t\treturn cachedScrollbarWidth;\n\t\t}\n\t\tvar w1, w2,\n\t\t\tdiv = $( \"<div style='display:block;position:absolute;width:50px;height:50px;overflow:hidden;'><div style='height:100px;width:auto;'></div></div>\" ),\n\t\t\tinnerDiv = div.children()[0];\n\n\t\t$( \"body\" ).append( div );\n\t\tw1 = innerDiv.offsetWidth;\n\t\tdiv.css( \"overflow\", \"scroll\" );\n\n\t\tw2 = innerDiv.offsetWidth;\n\n\t\tif ( w1 === w2 ) {\n\t\t\tw2 = div[0].clientWidth;\n\t\t}\n\n\t\tdiv.remove();\n\n\t\treturn (cachedScrollbarWidth = w1 - w2);\n\t},\n\tgetScrollInfo: function( within ) {\n\t\tvar overflowX = within.isWindow || within.isDocument ? \"\" :\n\t\t\t\twithin.element.css( \"overflow-x\" ),\n\t\t\toverflowY = within.isWindow || within.isDocument ? \"\" :\n\t\t\t\twithin.element.css( \"overflow-y\" ),\n\t\t\thasOverflowX = overflowX === \"scroll\" ||\n\t\t\t\t( overflowX === \"auto\" && within.width < within.element[0].scrollWidth ),\n\t\t\thasOverflowY = overflowY === \"scroll\" ||\n\t\t\t\t( overflowY === \"auto\" && within.height < within.element[0].scrollHeight );\n\t\treturn {\n\t\t\twidth: hasOverflowY ? $.position.scrollbarWidth() : 0,\n\t\t\theight: hasOverflowX ? $.position.scrollbarWidth() : 0\n\t\t};\n\t},\n\tgetWithinInfo: function( element ) {\n\t\tvar withinElement = $( element || window ),\n\t\t\tisWindow = $.isWindow( withinElement[0] ),\n\t\t\tisDocument = !!withinElement[ 0 ] && withinElement[ 0 ].nodeType === 9;\n\t\treturn {\n\t\t\telement: withinElement,\n\t\t\tisWindow: isWindow,\n\t\t\tisDocument: isDocument,\n\t\t\toffset: withinElement.offset() || { left: 0, top: 0 },\n\t\t\tscrollLeft: withinElement.scrollLeft(),\n\t\t\tscrollTop: withinElement.scrollTop(),\n\n\t\t\t// support: jQuery 1.6.x\n\t\t\t// jQuery 1.6 doesn't support .outerWidth/Height() on documents or windows\n\t\t\twidth: isWindow || isDocument ? withinElement.width() : withinElement.outerWidth(),\n\t\t\theight: isWindow || isDocument ? withinElement.height() : withinElement.outerHeight()\n\t\t};\n\t}\n};\n\n$.fn.position = function( options ) {\n\tif ( !options || !options.of ) {\n\t\treturn _position.apply( this, arguments );\n\t}\n\n\t// make a copy, we don't want to modify arguments\n\toptions = $.extend( {}, options );\n\n\tvar atOffset, targetWidth, targetHeight, targetOffset, basePosition, dimensions,\n\t\ttarget = $( options.of ),\n\t\twithin = $.position.getWithinInfo( options.within ),\n\t\tscrollInfo = $.position.getScrollInfo( within ),\n\t\tcollision = ( options.collision || \"flip\" ).split( \" \" ),\n\t\toffsets = {};\n\n\tdimensions = getDimensions( target );\n\tif ( target[0].preventDefault ) {\n\t\t// force left top to allow flipping\n\t\toptions.at = \"left top\";\n\t}\n\ttargetWidth = dimensions.width;\n\ttargetHeight = dimensions.height;\n\ttargetOffset = dimensions.offset;\n\t// clone to reuse original targetOffset later\n\tbasePosition = $.extend( {}, targetOffset );\n\n\t// force my and at to have valid horizontal and vertical positions\n\t// if a value is missing or invalid, it will be converted to center\n\t$.each( [ \"my\", \"at\" ], function() {\n\t\tvar pos = ( options[ this ] || \"\" ).split( \" \" ),\n\t\t\thorizontalOffset,\n\t\t\tverticalOffset;\n\n\t\tif ( pos.length === 1) {\n\t\t\tpos = rhorizontal.test( pos[ 0 ] ) ?\n\t\t\t\tpos.concat( [ \"center\" ] ) :\n\t\t\t\trvertical.test( pos[ 0 ] ) ?\n\t\t\t\t\t[ \"center\" ].concat( pos ) :\n\t\t\t\t\t[ \"center\", \"center\" ];\n\t\t}\n\t\tpos[ 0 ] = rhorizontal.test( pos[ 0 ] ) ? pos[ 0 ] : \"center\";\n\t\tpos[ 1 ] = rvertical.test( pos[ 1 ] ) ? pos[ 1 ] : \"center\";\n\n\t\t// calculate offsets\n\t\thorizontalOffset = roffset.exec( pos[ 0 ] );\n\t\tverticalOffset = roffset.exec( pos[ 1 ] );\n\t\toffsets[ this ] = [\n\t\t\thorizontalOffset ? horizontalOffset[ 0 ] : 0,\n\t\t\tverticalOffset ? verticalOffset[ 0 ] : 0\n\t\t];\n\n\t\t// reduce to just the positions without the offsets\n\t\toptions[ this ] = [\n\t\t\trposition.exec( pos[ 0 ] )[ 0 ],\n\t\t\trposition.exec( pos[ 1 ] )[ 0 ]\n\t\t];\n\t});\n\n\t// normalize collision option\n\tif ( collision.length === 1 ) {\n\t\tcollision[ 1 ] = collision[ 0 ];\n\t}\n\n\tif ( options.at[ 0 ] === \"right\" ) {\n\t\tbasePosition.left += targetWidth;\n\t} else if ( options.at[ 0 ] === \"center\" ) {\n\t\tbasePosition.left += targetWidth / 2;\n\t}\n\n\tif ( options.at[ 1 ] === \"bottom\" ) {\n\t\tbasePosition.top += targetHeight;\n\t} else if ( options.at[ 1 ] === \"center\" ) {\n\t\tbasePosition.top += targetHeight / 2;\n\t}\n\n\tatOffset = getOffsets( offsets.at, targetWidth, targetHeight );\n\tbasePosition.left += atOffset[ 0 ];\n\tbasePosition.top += atOffset[ 1 ];\n\n\treturn this.each(function() {\n\t\tvar collisionPosition, using,\n\t\t\telem = $( this ),\n\t\t\telemWidth = elem.outerWidth(),\n\t\t\telemHeight = elem.outerHeight(),\n\t\t\tmarginLeft = parseCss( this, \"marginLeft\" ),\n\t\t\tmarginTop = parseCss( this, \"marginTop\" ),\n\t\t\tcollisionWidth = elemWidth + marginLeft + parseCss( this, \"marginRight\" ) + scrollInfo.width,\n\t\t\tcollisionHeight = elemHeight + marginTop + parseCss( this, \"marginBottom\" ) + scrollInfo.height,\n\t\t\tposition = $.extend( {}, basePosition ),\n\t\t\tmyOffset = getOffsets( offsets.my, elem.outerWidth(), elem.outerHeight() );\n\n\t\tif ( options.my[ 0 ] === \"right\" ) {\n\t\t\tposition.left -= elemWidth;\n\t\t} else if ( options.my[ 0 ] === \"center\" ) {\n\t\t\tposition.left -= elemWidth / 2;\n\t\t}\n\n\t\tif ( options.my[ 1 ] === \"bottom\" ) {\n\t\t\tposition.top -= elemHeight;\n\t\t} else if ( options.my[ 1 ] === \"center\" ) {\n\t\t\tposition.top -= elemHeight / 2;\n\t\t}\n\n\t\tposition.left += myOffset[ 0 ];\n\t\tposition.top += myOffset[ 1 ];\n\n\t\t// if the browser doesn't support fractions, then round for consistent results\n\t\tif ( !supportsOffsetFractions ) {\n\t\t\tposition.left = round( position.left );\n\t\t\tposition.top = round( position.top );\n\t\t}\n\n\t\tcollisionPosition = {\n\t\t\tmarginLeft: marginLeft,\n\t\t\tmarginTop: marginTop\n\t\t};\n\n\t\t$.each( [ \"left\", \"top\" ], function( i, dir ) {\n\t\t\tif ( $.ui.position[ collision[ i ] ] ) {\n\t\t\t\t$.ui.position[ collision[ i ] ][ dir ]( position, {\n\t\t\t\t\ttargetWidth: targetWidth,\n\t\t\t\t\ttargetHeight: targetHeight,\n\t\t\t\t\telemWidth: elemWidth,\n\t\t\t\t\telemHeight: elemHeight,\n\t\t\t\t\tcollisionPosition: collisionPosition,\n\t\t\t\t\tcollisionWidth: collisionWidth,\n\t\t\t\t\tcollisionHeight: collisionHeight,\n\t\t\t\t\toffset: [ atOffset[ 0 ] + myOffset[ 0 ], atOffset [ 1 ] + myOffset[ 1 ] ],\n\t\t\t\t\tmy: options.my,\n\t\t\t\t\tat: options.at,\n\t\t\t\t\twithin: within,\n\t\t\t\t\telem: elem\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\n\t\tif ( options.using ) {\n\t\t\t// adds feedback as second argument to using callback, if present\n\t\t\tusing = function( props ) {\n\t\t\t\tvar left = targetOffset.left - position.left,\n\t\t\t\t\tright = left + targetWidth - elemWidth,\n\t\t\t\t\ttop = targetOffset.top - position.top,\n\t\t\t\t\tbottom = top + targetHeight - elemHeight,\n\t\t\t\t\tfeedback = {\n\t\t\t\t\t\ttarget: {\n\t\t\t\t\t\t\telement: target,\n\t\t\t\t\t\t\tleft: targetOffset.left,\n\t\t\t\t\t\t\ttop: targetOffset.top,\n\t\t\t\t\t\t\twidth: targetWidth,\n\t\t\t\t\t\t\theight: targetHeight\n\t\t\t\t\t\t},\n\t\t\t\t\t\telement: {\n\t\t\t\t\t\t\telement: elem,\n\t\t\t\t\t\t\tleft: position.left,\n\t\t\t\t\t\t\ttop: position.top,\n\t\t\t\t\t\t\twidth: elemWidth,\n\t\t\t\t\t\t\theight: elemHeight\n\t\t\t\t\t\t},\n\t\t\t\t\t\thorizontal: right < 0 ? \"left\" : left > 0 ? \"right\" : \"center\",\n\t\t\t\t\t\tvertical: bottom < 0 ? \"top\" : top > 0 ? \"bottom\" : \"middle\"\n\t\t\t\t\t};\n\t\t\t\tif ( targetWidth < elemWidth && abs( left + right ) < targetWidth ) {\n\t\t\t\t\tfeedback.horizontal = \"center\";\n\t\t\t\t}\n\t\t\t\tif ( targetHeight < elemHeight && abs( top + bottom ) < targetHeight ) {\n\t\t\t\t\tfeedback.vertical = \"middle\";\n\t\t\t\t}\n\t\t\t\tif ( max( abs( left ), abs( right ) ) > max( abs( top ), abs( bottom ) ) ) {\n\t\t\t\t\tfeedback.important = \"horizontal\";\n\t\t\t\t} else {\n\t\t\t\t\tfeedback.important = \"vertical\";\n\t\t\t\t}\n\t\t\t\toptions.using.call( this, props, feedback );\n\t\t\t};\n\t\t}\n\n\t\telem.offset( $.extend( position, { using: using } ) );\n\t});\n};\n\n$.ui.position = {\n\tfit: {\n\t\tleft: function( position, data ) {\n\t\t\tvar within = data.within,\n\t\t\t\twithinOffset = within.isWindow ? within.scrollLeft : within.offset.left,\n\t\t\t\touterWidth = within.width,\n\t\t\t\tcollisionPosLeft = position.left - data.collisionPosition.marginLeft,\n\t\t\t\toverLeft = withinOffset - collisionPosLeft,\n\t\t\t\toverRight = collisionPosLeft + data.collisionWidth - outerWidth - withinOffset,\n\t\t\t\tnewOverRight;\n\n\t\t\t// element is wider than within\n\t\t\tif ( data.collisionWidth > outerWidth ) {\n\t\t\t\t// element is initially over the left side of within\n\t\t\t\tif ( overLeft > 0 && overRight <= 0 ) {\n\t\t\t\t\tnewOverRight = position.left + overLeft + data.collisionWidth - outerWidth - withinOffset;\n\t\t\t\t\tposition.left += overLeft - newOverRight;\n\t\t\t\t// element is initially over right side of within\n\t\t\t\t} else if ( overRight > 0 && overLeft <= 0 ) {\n\t\t\t\t\tposition.left = withinOffset;\n\t\t\t\t// element is initially over both left and right sides of within\n\t\t\t\t} else {\n\t\t\t\t\tif ( overLeft > overRight ) {\n\t\t\t\t\t\tposition.left = withinOffset + outerWidth - data.collisionWidth;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tposition.left = withinOffset;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t// too far left -> align with left edge\n\t\t\t} else if ( overLeft > 0 ) {\n\t\t\t\tposition.left += overLeft;\n\t\t\t// too far right -> align with right edge\n\t\t\t} else if ( overRight > 0 ) {\n\t\t\t\tposition.left -= overRight;\n\t\t\t// adjust based on position and margin\n\t\t\t} else {\n\t\t\t\tposition.left = max( position.left - collisionPosLeft, position.left );\n\t\t\t}\n\t\t},\n\t\ttop: function( position, data ) {\n\t\t\tvar within = data.within,\n\t\t\t\twithinOffset = within.isWindow ? within.scrollTop : within.offset.top,\n\t\t\t\touterHeight = data.within.height,\n\t\t\t\tcollisionPosTop = position.top - data.collisionPosition.marginTop,\n\t\t\t\toverTop = withinOffset - collisionPosTop,\n\t\t\t\toverBottom = collisionPosTop + data.collisionHeight - outerHeight - withinOffset,\n\t\t\t\tnewOverBottom;\n\n\t\t\t// element is taller than within\n\t\t\tif ( data.collisionHeight > outerHeight ) {\n\t\t\t\t// element is initially over the top of within\n\t\t\t\tif ( overTop > 0 && overBottom <= 0 ) {\n\t\t\t\t\tnewOverBottom = position.top + overTop + data.collisionHeight - outerHeight - withinOffset;\n\t\t\t\t\tposition.top += overTop - newOverBottom;\n\t\t\t\t// element is initially over bottom of within\n\t\t\t\t} else if ( overBottom > 0 && overTop <= 0 ) {\n\t\t\t\t\tposition.top = withinOffset;\n\t\t\t\t// element is initially over both top and bottom of within\n\t\t\t\t} else {\n\t\t\t\t\tif ( overTop > overBottom ) {\n\t\t\t\t\t\tposition.top = withinOffset + outerHeight - data.collisionHeight;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tposition.top = withinOffset;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t// too far up -> align with top\n\t\t\t} else if ( overTop > 0 ) {\n\t\t\t\tposition.top += overTop;\n\t\t\t// too far down -> align with bottom edge\n\t\t\t} else if ( overBottom > 0 ) {\n\t\t\t\tposition.top -= overBottom;\n\t\t\t// adjust based on position and margin\n\t\t\t} else {\n\t\t\t\tposition.top = max( position.top - collisionPosTop, position.top );\n\t\t\t}\n\t\t}\n\t},\n\tflip: {\n\t\tleft: function( position, data ) {\n\t\t\tvar within = data.within,\n\t\t\t\twithinOffset = within.offset.left + within.scrollLeft,\n\t\t\t\touterWidth = within.width,\n\t\t\t\toffsetLeft = within.isWindow ? within.scrollLeft : within.offset.left,\n\t\t\t\tcollisionPosLeft = position.left - data.collisionPosition.marginLeft,\n\t\t\t\toverLeft = collisionPosLeft - offsetLeft,\n\t\t\t\toverRight = collisionPosLeft + data.collisionWidth - outerWidth - offsetLeft,\n\t\t\t\tmyOffset = data.my[ 0 ] === \"left\" ?\n\t\t\t\t\t-data.elemWidth :\n\t\t\t\t\tdata.my[ 0 ] === \"right\" ?\n\t\t\t\t\t\tdata.elemWidth :\n\t\t\t\t\t\t0,\n\t\t\t\tatOffset = data.at[ 0 ] === \"left\" ?\n\t\t\t\t\tdata.targetWidth :\n\t\t\t\t\tdata.at[ 0 ] === \"right\" ?\n\t\t\t\t\t\t-data.targetWidth :\n\t\t\t\t\t\t0,\n\t\t\t\toffset = -2 * data.offset[ 0 ],\n\t\t\t\tnewOverRight,\n\t\t\t\tnewOverLeft;\n\n\t\t\tif ( overLeft < 0 ) {\n\t\t\t\tnewOverRight = position.left + myOffset + atOffset + offset + data.collisionWidth - outerWidth - withinOffset;\n\t\t\t\tif ( newOverRight < 0 || newOverRight < abs( overLeft ) ) {\n\t\t\t\t\tposition.left += myOffset + atOffset + offset;\n\t\t\t\t}\n\t\t\t} else if ( overRight > 0 ) {\n\t\t\t\tnewOverLeft = position.left - data.collisionPosition.marginLeft + myOffset + atOffset + offset - offsetLeft;\n\t\t\t\tif ( newOverLeft > 0 || abs( newOverLeft ) < overRight ) {\n\t\t\t\t\tposition.left += myOffset + atOffset + offset;\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\ttop: function( position, data ) {\n\t\t\tvar within = data.within,\n\t\t\t\twithinOffset = within.offset.top + within.scrollTop,\n\t\t\t\touterHeight = within.height,\n\t\t\t\toffsetTop = within.isWindow ? within.scrollTop : within.offset.top,\n\t\t\t\tcollisionPosTop = position.top - data.collisionPosition.marginTop,\n\t\t\t\toverTop = collisionPosTop - offsetTop,\n\t\t\t\toverBottom = collisionPosTop + data.collisionHeight - outerHeight - offsetTop,\n\t\t\t\ttop = data.my[ 1 ] === \"top\",\n\t\t\t\tmyOffset = top ?\n\t\t\t\t\t-data.elemHeight :\n\t\t\t\t\tdata.my[ 1 ] === \"bottom\" ?\n\t\t\t\t\t\tdata.elemHeight :\n\t\t\t\t\t\t0,\n\t\t\t\tatOffset = data.at[ 1 ] === \"top\" ?\n\t\t\t\t\tdata.targetHeight :\n\t\t\t\t\tdata.at[ 1 ] === \"bottom\" ?\n\t\t\t\t\t\t-data.targetHeight :\n\t\t\t\t\t\t0,\n\t\t\t\toffset = -2 * data.offset[ 1 ],\n\t\t\t\tnewOverTop,\n\t\t\t\tnewOverBottom;\n\t\t\tif ( overTop < 0 ) {\n\t\t\t\tnewOverBottom = position.top + myOffset + atOffset + offset + data.collisionHeight - outerHeight - withinOffset;\n\t\t\t\tif ( newOverBottom < 0 || newOverBottom < abs( overTop ) ) {\n\t\t\t\t\tposition.top += myOffset + atOffset + offset;\n\t\t\t\t}\n\t\t\t} else if ( overBottom > 0 ) {\n\t\t\t\tnewOverTop = position.top - data.collisionPosition.marginTop + myOffset + atOffset + offset - offsetTop;\n\t\t\t\tif ( newOverTop > 0 || abs( newOverTop ) < overBottom ) {\n\t\t\t\t\tposition.top += myOffset + atOffset + offset;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\tflipfit: {\n\t\tleft: function() {\n\t\t\t$.ui.position.flip.left.apply( this, arguments );\n\t\t\t$.ui.position.fit.left.apply( this, arguments );\n\t\t},\n\t\ttop: function() {\n\t\t\t$.ui.position.flip.top.apply( this, arguments );\n\t\t\t$.ui.position.fit.top.apply( this, arguments );\n\t\t}\n\t}\n};\n\n// fraction support test\n(function() {\n\tvar testElement, testElementParent, testElementStyle, offsetLeft, i,\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ],\n\t\tdiv = document.createElement( \"div\" );\n\n\t//Create a \"fake body\" for testing based on method used in jQuery.support\n\ttestElement = document.createElement( body ? \"div\" : \"body\" );\n\ttestElementStyle = {\n\t\tvisibility: \"hidden\",\n\t\twidth: 0,\n\t\theight: 0,\n\t\tborder: 0,\n\t\tmargin: 0,\n\t\tbackground: \"none\"\n\t};\n\tif ( body ) {\n\t\t$.extend( testElementStyle, {\n\t\t\tposition: \"absolute\",\n\t\t\tleft: \"-1000px\",\n\t\t\ttop: \"-1000px\"\n\t\t});\n\t}\n\tfor ( i in testElementStyle ) {\n\t\ttestElement.style[ i ] = testElementStyle[ i ];\n\t}\n\ttestElement.appendChild( div );\n\ttestElementParent = body || document.documentElement;\n\ttestElementParent.insertBefore( testElement, testElementParent.firstChild );\n\n\tdiv.style.cssText = \"position: absolute; left: 10.7432222px;\";\n\n\toffsetLeft = $( div ).offset().left;\n\tsupportsOffsetFractions = offsetLeft > 10 && offsetLeft < 11;\n\n\ttestElement.innerHTML = \"\";\n\ttestElementParent.removeChild( testElement );\n})();\n\n})();\n\nvar position = $.ui.position;\n\n\n/*!\n * jQuery UI Draggable 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/draggable/\n */\n\n\n$.widget(\"ui.draggable\", $.ui.mouse, {\n\tversion: \"1.11.4\",\n\twidgetEventPrefix: \"drag\",\n\toptions: {\n\t\taddClasses: true,\n\t\tappendTo: \"parent\",\n\t\taxis: false,\n\t\tconnectToSortable: false,\n\t\tcontainment: false,\n\t\tcursor: \"auto\",\n\t\tcursorAt: false,\n\t\tgrid: false,\n\t\thandle: false,\n\t\thelper: \"original\",\n\t\tiframeFix: false,\n\t\topacity: false,\n\t\trefreshPositions: false,\n\t\trevert: false,\n\t\trevertDuration: 500,\n\t\tscope: \"default\",\n\t\tscroll: true,\n\t\tscrollSensitivity: 20,\n\t\tscrollSpeed: 20,\n\t\tsnap: false,\n\t\tsnapMode: \"both\",\n\t\tsnapTolerance: 20,\n\t\tstack: false,\n\t\tzIndex: false,\n\n\t\t// callbacks\n\t\tdrag: null,\n\t\tstart: null,\n\t\tstop: null\n\t},\n\t_create: function() {\n\n\t\tif ( this.options.helper === \"original\" ) {\n\t\t\tthis._setPositionRelative();\n\t\t}\n\t\tif (this.options.addClasses){\n\t\t\tthis.element.addClass(\"ui-draggable\");\n\t\t}\n\t\tif (this.options.disabled){\n\t\t\tthis.element.addClass(\"ui-draggable-disabled\");\n\t\t}\n\t\tthis._setHandleClassName();\n\n\t\tthis._mouseInit();\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tthis._super( key, value );\n\t\tif ( key === \"handle\" ) {\n\t\t\tthis._removeHandleClassName();\n\t\t\tthis._setHandleClassName();\n\t\t}\n\t},\n\n\t_destroy: function() {\n\t\tif ( ( this.helper || this.element ).is( \".ui-draggable-dragging\" ) ) {\n\t\t\tthis.destroyOnClear = true;\n\t\t\treturn;\n\t\t}\n\t\tthis.element.removeClass( \"ui-draggable ui-draggable-dragging ui-draggable-disabled\" );\n\t\tthis._removeHandleClassName();\n\t\tthis._mouseDestroy();\n\t},\n\n\t_mouseCapture: function(event) {\n\t\tvar o = this.options;\n\n\t\tthis._blurActiveElement( event );\n\n\t\t// among others, prevent a drag on a resizable-handle\n\t\tif (this.helper || o.disabled || $(event.target).closest(\".ui-resizable-handle\").length > 0) {\n\t\t\treturn false;\n\t\t}\n\n\t\t//Quit if we're not on a valid handle\n\t\tthis.handle = this._getHandle(event);\n\t\tif (!this.handle) {\n\t\t\treturn false;\n\t\t}\n\n\t\tthis._blockFrames( o.iframeFix === true ? \"iframe\" : o.iframeFix );\n\n\t\treturn true;\n\n\t},\n\n\t_blockFrames: function( selector ) {\n\t\tthis.iframeBlocks = this.document.find( selector ).map(function() {\n\t\t\tvar iframe = $( this );\n\n\t\t\treturn $( \"<div>\" )\n\t\t\t\t.css( \"position\", \"absolute\" )\n\t\t\t\t.appendTo( iframe.parent() )\n\t\t\t\t.outerWidth( iframe.outerWidth() )\n\t\t\t\t.outerHeight( iframe.outerHeight() )\n\t\t\t\t.offset( iframe.offset() )[ 0 ];\n\t\t});\n\t},\n\n\t_unblockFrames: function() {\n\t\tif ( this.iframeBlocks ) {\n\t\t\tthis.iframeBlocks.remove();\n\t\t\tdelete this.iframeBlocks;\n\t\t}\n\t},\n\n\t_blurActiveElement: function( event ) {\n\t\tvar document = this.document[ 0 ];\n\n\t\t// Only need to blur if the event occurred on the draggable itself, see #10527\n\t\tif ( !this.handleElement.is( event.target ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// support: IE9\n\t\t// IE9 throws an \"Unspecified error\" accessing document.activeElement from an <iframe>\n\t\ttry {\n\n\t\t\t// Support: IE9, IE10\n\t\t\t// If the <body> is blurred, IE will switch windows, see #9520\n\t\t\tif ( document.activeElement && document.activeElement.nodeName.toLowerCase() !== \"body\" ) {\n\n\t\t\t\t// Blur any element that currently has focus, see #4261\n\t\t\t\t$( document.activeElement ).blur();\n\t\t\t}\n\t\t} catch ( error ) {}\n\t},\n\n\t_mouseStart: function(event) {\n\n\t\tvar o = this.options;\n\n\t\t//Create and append the visible helper\n\t\tthis.helper = this._createHelper(event);\n\n\t\tthis.helper.addClass(\"ui-draggable-dragging\");\n\n\t\t//Cache the helper size\n\t\tthis._cacheHelperProportions();\n\n\t\t//If ddmanager is used for droppables, set the global draggable\n\t\tif ($.ui.ddmanager) {\n\t\t\t$.ui.ddmanager.current = this;\n\t\t}\n\n\t\t/*\n\t\t * - Position generation -\n\t\t * This block generates everything position related - it's the core of draggables.\n\t\t */\n\n\t\t//Cache the margins of the original element\n\t\tthis._cacheMargins();\n\n\t\t//Store the helper's css position\n\t\tthis.cssPosition = this.helper.css( \"position\" );\n\t\tthis.scrollParent = this.helper.scrollParent( true );\n\t\tthis.offsetParent = this.helper.offsetParent();\n\t\tthis.hasFixedAncestor = this.helper.parents().filter(function() {\n\t\t\t\treturn $( this ).css( \"position\" ) === \"fixed\";\n\t\t\t}).length > 0;\n\n\t\t//The element's absolute position on the page minus margins\n\t\tthis.positionAbs = this.element.offset();\n\t\tthis._refreshOffsets( event );\n\n\t\t//Generate the original position\n\t\tthis.originalPosition = this.position = this._generatePosition( event, false );\n\t\tthis.originalPageX = event.pageX;\n\t\tthis.originalPageY = event.pageY;\n\n\t\t//Adjust the mouse offset relative to the helper if \"cursorAt\" is supplied\n\t\t(o.cursorAt && this._adjustOffsetFromHelper(o.cursorAt));\n\n\t\t//Set a containment if given in the options\n\t\tthis._setContainment();\n\n\t\t//Trigger event + callbacks\n\t\tif (this._trigger(\"start\", event) === false) {\n\t\t\tthis._clear();\n\t\t\treturn false;\n\t\t}\n\n\t\t//Recache the helper size\n\t\tthis._cacheHelperProportions();\n\n\t\t//Prepare the droppable offsets\n\t\tif ($.ui.ddmanager && !o.dropBehaviour) {\n\t\t\t$.ui.ddmanager.prepareOffsets(this, event);\n\t\t}\n\n\t\t// Reset helper's right/bottom css if they're set and set explicit width/height instead\n\t\t// as this prevents resizing of elements with right/bottom set (see #7772)\n\t\tthis._normalizeRightBottom();\n\n\t\tthis._mouseDrag(event, true); //Execute the drag once - this causes the helper not to be visible before getting its correct position\n\n\t\t//If the ddmanager is used for droppables, inform the manager that dragging has started (see #5003)\n\t\tif ( $.ui.ddmanager ) {\n\t\t\t$.ui.ddmanager.dragStart(this, event);\n\t\t}\n\n\t\treturn true;\n\t},\n\n\t_refreshOffsets: function( event ) {\n\t\tthis.offset = {\n\t\t\ttop: this.positionAbs.top - this.margins.top,\n\t\t\tleft: this.positionAbs.left - this.margins.left,\n\t\t\tscroll: false,\n\t\t\tparent: this._getParentOffset(),\n\t\t\trelative: this._getRelativeOffset()\n\t\t};\n\n\t\tthis.offset.click = {\n\t\t\tleft: event.pageX - this.offset.left,\n\t\t\ttop: event.pageY - this.offset.top\n\t\t};\n\t},\n\n\t_mouseDrag: function(event, noPropagation) {\n\t\t// reset any necessary cached properties (see #5009)\n\t\tif ( this.hasFixedAncestor ) {\n\t\t\tthis.offset.parent = this._getParentOffset();\n\t\t}\n\n\t\t//Compute the helpers position\n\t\tthis.position = this._generatePosition( event, true );\n\t\tthis.positionAbs = this._convertPositionTo(\"absolute\");\n\n\t\t//Call plugins and callbacks and use the resulting position if something is returned\n\t\tif (!noPropagation) {\n\t\t\tvar ui = this._uiHash();\n\t\t\tif (this._trigger(\"drag\", event, ui) === false) {\n\t\t\t\tthis._mouseUp({});\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tthis.position = ui.position;\n\t\t}\n\n\t\tthis.helper[ 0 ].style.left = this.position.left + \"px\";\n\t\tthis.helper[ 0 ].style.top = this.position.top + \"px\";\n\n\t\tif ($.ui.ddmanager) {\n\t\t\t$.ui.ddmanager.drag(this, event);\n\t\t}\n\n\t\treturn false;\n\t},\n\n\t_mouseStop: function(event) {\n\n\t\t//If we are using droppables, inform the manager about the drop\n\t\tvar that = this,\n\t\t\tdropped = false;\n\t\tif ($.ui.ddmanager && !this.options.dropBehaviour) {\n\t\t\tdropped = $.ui.ddmanager.drop(this, event);\n\t\t}\n\n\t\t//if a drop comes from outside (a sortable)\n\t\tif (this.dropped) {\n\t\t\tdropped = this.dropped;\n\t\t\tthis.dropped = false;\n\t\t}\n\n\t\tif ((this.options.revert === \"invalid\" && !dropped) || (this.options.revert === \"valid\" && dropped) || this.options.revert === true || ($.isFunction(this.options.revert) && this.options.revert.call(this.element, dropped))) {\n\t\t\t$(this.helper).animate(this.originalPosition, parseInt(this.options.revertDuration, 10), function() {\n\t\t\t\tif (that._trigger(\"stop\", event) !== false) {\n\t\t\t\t\tthat._clear();\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\tif (this._trigger(\"stop\", event) !== false) {\n\t\t\t\tthis._clear();\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t},\n\n\t_mouseUp: function( event ) {\n\t\tthis._unblockFrames();\n\n\t\t//If the ddmanager is used for droppables, inform the manager that dragging has stopped (see #5003)\n\t\tif ( $.ui.ddmanager ) {\n\t\t\t$.ui.ddmanager.dragStop(this, event);\n\t\t}\n\n\t\t// Only need to focus if the event occurred on the draggable itself, see #10527\n\t\tif ( this.handleElement.is( event.target ) ) {\n\t\t\t// The interaction is over; whether or not the click resulted in a drag, focus the element\n\t\t\tthis.element.focus();\n\t\t}\n\n\t\treturn $.ui.mouse.prototype._mouseUp.call(this, event);\n\t},\n\n\tcancel: function() {\n\n\t\tif (this.helper.is(\".ui-draggable-dragging\")) {\n\t\t\tthis._mouseUp({});\n\t\t} else {\n\t\t\tthis._clear();\n\t\t}\n\n\t\treturn this;\n\n\t},\n\n\t_getHandle: function(event) {\n\t\treturn this.options.handle ?\n\t\t\t!!$( event.target ).closest( this.element.find( this.options.handle ) ).length :\n\t\t\ttrue;\n\t},\n\n\t_setHandleClassName: function() {\n\t\tthis.handleElement = this.options.handle ?\n\t\t\tthis.element.find( this.options.handle ) : this.element;\n\t\tthis.handleElement.addClass( \"ui-draggable-handle\" );\n\t},\n\n\t_removeHandleClassName: function() {\n\t\tthis.handleElement.removeClass( \"ui-draggable-handle\" );\n\t},\n\n\t_createHelper: function(event) {\n\n\t\tvar o = this.options,\n\t\t\thelperIsFunction = $.isFunction( o.helper ),\n\t\t\thelper = helperIsFunction ?\n\t\t\t\t$( o.helper.apply( this.element[ 0 ], [ event ] ) ) :\n\t\t\t\t( o.helper === \"clone\" ?\n\t\t\t\t\tthis.element.clone().removeAttr( \"id\" ) :\n\t\t\t\t\tthis.element );\n\n\t\tif (!helper.parents(\"body\").length) {\n\t\t\thelper.appendTo((o.appendTo === \"parent\" ? this.element[0].parentNode : o.appendTo));\n\t\t}\n\n\t\t// http://bugs.jqueryui.com/ticket/9446\n\t\t// a helper function can return the original element\n\t\t// which wouldn't have been set to relative in _create\n\t\tif ( helperIsFunction && helper[ 0 ] === this.element[ 0 ] ) {\n\t\t\tthis._setPositionRelative();\n\t\t}\n\n\t\tif (helper[0] !== this.element[0] && !(/(fixed|absolute)/).test(helper.css(\"position\"))) {\n\t\t\thelper.css(\"position\", \"absolute\");\n\t\t}\n\n\t\treturn helper;\n\n\t},\n\n\t_setPositionRelative: function() {\n\t\tif ( !( /^(?:r|a|f)/ ).test( this.element.css( \"position\" ) ) ) {\n\t\t\tthis.element[ 0 ].style.position = \"relative\";\n\t\t}\n\t},\n\n\t_adjustOffsetFromHelper: function(obj) {\n\t\tif (typeof obj === \"string\") {\n\t\t\tobj = obj.split(\" \");\n\t\t}\n\t\tif ($.isArray(obj)) {\n\t\t\tobj = { left: +obj[0], top: +obj[1] || 0 };\n\t\t}\n\t\tif (\"left\" in obj) {\n\t\t\tthis.offset.click.left = obj.left + this.margins.left;\n\t\t}\n\t\tif (\"right\" in obj) {\n\t\t\tthis.offset.click.left = this.helperProportions.width - obj.right + this.margins.left;\n\t\t}\n\t\tif (\"top\" in obj) {\n\t\t\tthis.offset.click.top = obj.top + this.margins.top;\n\t\t}\n\t\tif (\"bottom\" in obj) {\n\t\t\tthis.offset.click.top = this.helperProportions.height - obj.bottom + this.margins.top;\n\t\t}\n\t},\n\n\t_isRootNode: function( element ) {\n\t\treturn ( /(html|body)/i ).test( element.tagName ) || element === this.document[ 0 ];\n\t},\n\n\t_getParentOffset: function() {\n\n\t\t//Get the offsetParent and cache its position\n\t\tvar po = this.offsetParent.offset(),\n\t\t\tdocument = this.document[ 0 ];\n\n\t\t// This is a special case where we need to modify a offset calculated on start, since the following happened:\n\t\t// 1. The position of the helper is absolute, so it's position is calculated based on the next positioned parent\n\t\t// 2. The actual offset parent is a child of the scroll parent, and the scroll parent isn't the document, which means that\n\t\t//    the scroll is included in the initial calculation of the offset of the parent, and never recalculated upon drag\n\t\tif (this.cssPosition === \"absolute\" && this.scrollParent[0] !== document && $.contains(this.scrollParent[0], this.offsetParent[0])) {\n\t\t\tpo.left += this.scrollParent.scrollLeft();\n\t\t\tpo.top += this.scrollParent.scrollTop();\n\t\t}\n\n\t\tif ( this._isRootNode( this.offsetParent[ 0 ] ) ) {\n\t\t\tpo = { top: 0, left: 0 };\n\t\t}\n\n\t\treturn {\n\t\t\ttop: po.top + (parseInt(this.offsetParent.css(\"borderTopWidth\"), 10) || 0),\n\t\t\tleft: po.left + (parseInt(this.offsetParent.css(\"borderLeftWidth\"), 10) || 0)\n\t\t};\n\n\t},\n\n\t_getRelativeOffset: function() {\n\t\tif ( this.cssPosition !== \"relative\" ) {\n\t\t\treturn { top: 0, left: 0 };\n\t\t}\n\n\t\tvar p = this.element.position(),\n\t\t\tscrollIsRootNode = this._isRootNode( this.scrollParent[ 0 ] );\n\n\t\treturn {\n\t\t\ttop: p.top - ( parseInt(this.helper.css( \"top\" ), 10) || 0 ) + ( !scrollIsRootNode ? this.scrollParent.scrollTop() : 0 ),\n\t\t\tleft: p.left - ( parseInt(this.helper.css( \"left\" ), 10) || 0 ) + ( !scrollIsRootNode ? this.scrollParent.scrollLeft() : 0 )\n\t\t};\n\n\t},\n\n\t_cacheMargins: function() {\n\t\tthis.margins = {\n\t\t\tleft: (parseInt(this.element.css(\"marginLeft\"), 10) || 0),\n\t\t\ttop: (parseInt(this.element.css(\"marginTop\"), 10) || 0),\n\t\t\tright: (parseInt(this.element.css(\"marginRight\"), 10) || 0),\n\t\t\tbottom: (parseInt(this.element.css(\"marginBottom\"), 10) || 0)\n\t\t};\n\t},\n\n\t_cacheHelperProportions: function() {\n\t\tthis.helperProportions = {\n\t\t\twidth: this.helper.outerWidth(),\n\t\t\theight: this.helper.outerHeight()\n\t\t};\n\t},\n\n\t_setContainment: function() {\n\n\t\tvar isUserScrollable, c, ce,\n\t\t\to = this.options,\n\t\t\tdocument = this.document[ 0 ];\n\n\t\tthis.relativeContainer = null;\n\n\t\tif ( !o.containment ) {\n\t\t\tthis.containment = null;\n\t\t\treturn;\n\t\t}\n\n\t\tif ( o.containment === \"window\" ) {\n\t\t\tthis.containment = [\n\t\t\t\t$( window ).scrollLeft() - this.offset.relative.left - this.offset.parent.left,\n\t\t\t\t$( window ).scrollTop() - this.offset.relative.top - this.offset.parent.top,\n\t\t\t\t$( window ).scrollLeft() + $( window ).width() - this.helperProportions.width - this.margins.left,\n\t\t\t\t$( window ).scrollTop() + ( $( window ).height() || document.body.parentNode.scrollHeight ) - this.helperProportions.height - this.margins.top\n\t\t\t];\n\t\t\treturn;\n\t\t}\n\n\t\tif ( o.containment === \"document\") {\n\t\t\tthis.containment = [\n\t\t\t\t0,\n\t\t\t\t0,\n\t\t\t\t$( document ).width() - this.helperProportions.width - this.margins.left,\n\t\t\t\t( $( document ).height() || document.body.parentNode.scrollHeight ) - this.helperProportions.height - this.margins.top\n\t\t\t];\n\t\t\treturn;\n\t\t}\n\n\t\tif ( o.containment.constructor === Array ) {\n\t\t\tthis.containment = o.containment;\n\t\t\treturn;\n\t\t}\n\n\t\tif ( o.containment === \"parent\" ) {\n\t\t\to.containment = this.helper[ 0 ].parentNode;\n\t\t}\n\n\t\tc = $( o.containment );\n\t\tce = c[ 0 ];\n\n\t\tif ( !ce ) {\n\t\t\treturn;\n\t\t}\n\n\t\tisUserScrollable = /(scroll|auto)/.test( c.css( \"overflow\" ) );\n\n\t\tthis.containment = [\n\t\t\t( parseInt( c.css( \"borderLeftWidth\" ), 10 ) || 0 ) + ( parseInt( c.css( \"paddingLeft\" ), 10 ) || 0 ),\n\t\t\t( parseInt( c.css( \"borderTopWidth\" ), 10 ) || 0 ) + ( parseInt( c.css( \"paddingTop\" ), 10 ) || 0 ),\n\t\t\t( isUserScrollable ? Math.max( ce.scrollWidth, ce.offsetWidth ) : ce.offsetWidth ) -\n\t\t\t\t( parseInt( c.css( \"borderRightWidth\" ), 10 ) || 0 ) -\n\t\t\t\t( parseInt( c.css( \"paddingRight\" ), 10 ) || 0 ) -\n\t\t\t\tthis.helperProportions.width -\n\t\t\t\tthis.margins.left -\n\t\t\t\tthis.margins.right,\n\t\t\t( isUserScrollable ? Math.max( ce.scrollHeight, ce.offsetHeight ) : ce.offsetHeight ) -\n\t\t\t\t( parseInt( c.css( \"borderBottomWidth\" ), 10 ) || 0 ) -\n\t\t\t\t( parseInt( c.css( \"paddingBottom\" ), 10 ) || 0 ) -\n\t\t\t\tthis.helperProportions.height -\n\t\t\t\tthis.margins.top -\n\t\t\t\tthis.margins.bottom\n\t\t];\n\t\tthis.relativeContainer = c;\n\t},\n\n\t_convertPositionTo: function(d, pos) {\n\n\t\tif (!pos) {\n\t\t\tpos = this.position;\n\t\t}\n\n\t\tvar mod = d === \"absolute\" ? 1 : -1,\n\t\t\tscrollIsRootNode = this._isRootNode( this.scrollParent[ 0 ] );\n\n\t\treturn {\n\t\t\ttop: (\n\t\t\t\tpos.top\t+\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// The absolute mouse position\n\t\t\t\tthis.offset.relative.top * mod +\t\t\t\t\t\t\t\t\t\t// Only for relative positioned nodes: Relative offset from element to offset parent\n\t\t\t\tthis.offset.parent.top * mod -\t\t\t\t\t\t\t\t\t\t// The offsetParent's offset without borders (offset + border)\n\t\t\t\t( ( this.cssPosition === \"fixed\" ? -this.offset.scroll.top : ( scrollIsRootNode ? 0 : this.offset.scroll.top ) ) * mod)\n\t\t\t),\n\t\t\tleft: (\n\t\t\t\tpos.left +\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// The absolute mouse position\n\t\t\t\tthis.offset.relative.left * mod +\t\t\t\t\t\t\t\t\t\t// Only for relative positioned nodes: Relative offset from element to offset parent\n\t\t\t\tthis.offset.parent.left * mod\t-\t\t\t\t\t\t\t\t\t\t// The offsetParent's offset without borders (offset + border)\n\t\t\t\t( ( this.cssPosition === \"fixed\" ? -this.offset.scroll.left : ( scrollIsRootNode ? 0 : this.offset.scroll.left ) ) * mod)\n\t\t\t)\n\t\t};\n\n\t},\n\n\t_generatePosition: function( event, constrainPosition ) {\n\n\t\tvar containment, co, top, left,\n\t\t\to = this.options,\n\t\t\tscrollIsRootNode = this._isRootNode( this.scrollParent[ 0 ] ),\n\t\t\tpageX = event.pageX,\n\t\t\tpageY = event.pageY;\n\n\t\t// Cache the scroll\n\t\tif ( !scrollIsRootNode || !this.offset.scroll ) {\n\t\t\tthis.offset.scroll = {\n\t\t\t\ttop: this.scrollParent.scrollTop(),\n\t\t\t\tleft: this.scrollParent.scrollLeft()\n\t\t\t};\n\t\t}\n\n\t\t/*\n\t\t * - Position constraining -\n\t\t * Constrain the position to a mix of grid, containment.\n\t\t */\n\n\t\t// If we are not dragging yet, we won't check for options\n\t\tif ( constrainPosition ) {\n\t\t\tif ( this.containment ) {\n\t\t\t\tif ( this.relativeContainer ){\n\t\t\t\t\tco = this.relativeContainer.offset();\n\t\t\t\t\tcontainment = [\n\t\t\t\t\t\tthis.containment[ 0 ] + co.left,\n\t\t\t\t\t\tthis.containment[ 1 ] + co.top,\n\t\t\t\t\t\tthis.containment[ 2 ] + co.left,\n\t\t\t\t\t\tthis.containment[ 3 ] + co.top\n\t\t\t\t\t];\n\t\t\t\t} else {\n\t\t\t\t\tcontainment = this.containment;\n\t\t\t\t}\n\n\t\t\t\tif (event.pageX - this.offset.click.left < containment[0]) {\n\t\t\t\t\tpageX = containment[0] + this.offset.click.left;\n\t\t\t\t}\n\t\t\t\tif (event.pageY - this.offset.click.top < containment[1]) {\n\t\t\t\t\tpageY = containment[1] + this.offset.click.top;\n\t\t\t\t}\n\t\t\t\tif (event.pageX - this.offset.click.left > containment[2]) {\n\t\t\t\t\tpageX = containment[2] + this.offset.click.left;\n\t\t\t\t}\n\t\t\t\tif (event.pageY - this.offset.click.top > containment[3]) {\n\t\t\t\t\tpageY = containment[3] + this.offset.click.top;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (o.grid) {\n\t\t\t\t//Check for grid elements set to 0 to prevent divide by 0 error causing invalid argument errors in IE (see ticket #6950)\n\t\t\t\ttop = o.grid[1] ? this.originalPageY + Math.round((pageY - this.originalPageY) / o.grid[1]) * o.grid[1] : this.originalPageY;\n\t\t\t\tpageY = containment ? ((top - this.offset.click.top >= containment[1] || top - this.offset.click.top > containment[3]) ? top : ((top - this.offset.click.top >= containment[1]) ? top - o.grid[1] : top + o.grid[1])) : top;\n\n\t\t\t\tleft = o.grid[0] ? this.originalPageX + Math.round((pageX - this.originalPageX) / o.grid[0]) * o.grid[0] : this.originalPageX;\n\t\t\t\tpageX = containment ? ((left - this.offset.click.left >= containment[0] || left - this.offset.click.left > containment[2]) ? left : ((left - this.offset.click.left >= containment[0]) ? left - o.grid[0] : left + o.grid[0])) : left;\n\t\t\t}\n\n\t\t\tif ( o.axis === \"y\" ) {\n\t\t\t\tpageX = this.originalPageX;\n\t\t\t}\n\n\t\t\tif ( o.axis === \"x\" ) {\n\t\t\t\tpageY = this.originalPageY;\n\t\t\t}\n\t\t}\n\n\t\treturn {\n\t\t\ttop: (\n\t\t\t\tpageY -\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// The absolute mouse position\n\t\t\t\tthis.offset.click.top\t-\t\t\t\t\t\t\t\t\t\t\t\t// Click offset (relative to the element)\n\t\t\t\tthis.offset.relative.top -\t\t\t\t\t\t\t\t\t\t\t\t// Only for relative positioned nodes: Relative offset from element to offset parent\n\t\t\t\tthis.offset.parent.top +\t\t\t\t\t\t\t\t\t\t\t\t// The offsetParent's offset without borders (offset + border)\n\t\t\t\t( this.cssPosition === \"fixed\" ? -this.offset.scroll.top : ( scrollIsRootNode ? 0 : this.offset.scroll.top ) )\n\t\t\t),\n\t\t\tleft: (\n\t\t\t\tpageX -\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// The absolute mouse position\n\t\t\t\tthis.offset.click.left -\t\t\t\t\t\t\t\t\t\t\t\t// Click offset (relative to the element)\n\t\t\t\tthis.offset.relative.left -\t\t\t\t\t\t\t\t\t\t\t\t// Only for relative positioned nodes: Relative offset from element to offset parent\n\t\t\t\tthis.offset.parent.left +\t\t\t\t\t\t\t\t\t\t\t\t// The offsetParent's offset without borders (offset + border)\n\t\t\t\t( this.cssPosition === \"fixed\" ? -this.offset.scroll.left : ( scrollIsRootNode ? 0 : this.offset.scroll.left ) )\n\t\t\t)\n\t\t};\n\n\t},\n\n\t_clear: function() {\n\t\tthis.helper.removeClass(\"ui-draggable-dragging\");\n\t\tif (this.helper[0] !== this.element[0] && !this.cancelHelperRemoval) {\n\t\t\tthis.helper.remove();\n\t\t}\n\t\tthis.helper = null;\n\t\tthis.cancelHelperRemoval = false;\n\t\tif ( this.destroyOnClear ) {\n\t\t\tthis.destroy();\n\t\t}\n\t},\n\n\t_normalizeRightBottom: function() {\n\t\tif ( this.options.axis !== \"y\" && this.helper.css( \"right\" ) !== \"auto\" ) {\n\t\t\tthis.helper.width( this.helper.width() );\n\t\t\tthis.helper.css( \"right\", \"auto\" );\n\t\t}\n\t\tif ( this.options.axis !== \"x\" && this.helper.css( \"bottom\" ) !== \"auto\" ) {\n\t\t\tthis.helper.height( this.helper.height() );\n\t\t\tthis.helper.css( \"bottom\", \"auto\" );\n\t\t}\n\t},\n\n\t// From now on bulk stuff - mainly helpers\n\n\t_trigger: function( type, event, ui ) {\n\t\tui = ui || this._uiHash();\n\t\t$.ui.plugin.call( this, type, [ event, ui, this ], true );\n\n\t\t// Absolute position and offset (see #6884 ) have to be recalculated after plugins\n\t\tif ( /^(drag|start|stop)/.test( type ) ) {\n\t\t\tthis.positionAbs = this._convertPositionTo( \"absolute\" );\n\t\t\tui.offset = this.positionAbs;\n\t\t}\n\t\treturn $.Widget.prototype._trigger.call( this, type, event, ui );\n\t},\n\n\tplugins: {},\n\n\t_uiHash: function() {\n\t\treturn {\n\t\t\thelper: this.helper,\n\t\t\tposition: this.position,\n\t\t\toriginalPosition: this.originalPosition,\n\t\t\toffset: this.positionAbs\n\t\t};\n\t}\n\n});\n\n$.ui.plugin.add( \"draggable\", \"connectToSortable\", {\n\tstart: function( event, ui, draggable ) {\n\t\tvar uiSortable = $.extend( {}, ui, {\n\t\t\titem: draggable.element\n\t\t});\n\n\t\tdraggable.sortables = [];\n\t\t$( draggable.options.connectToSortable ).each(function() {\n\t\t\tvar sortable = $( this ).sortable( \"instance\" );\n\n\t\t\tif ( sortable && !sortable.options.disabled ) {\n\t\t\t\tdraggable.sortables.push( sortable );\n\n\t\t\t\t// refreshPositions is called at drag start to refresh the containerCache\n\t\t\t\t// which is used in drag. This ensures it's initialized and synchronized\n\t\t\t\t// with any changes that might have happened on the page since initialization.\n\t\t\t\tsortable.refreshPositions();\n\t\t\t\tsortable._trigger(\"activate\", event, uiSortable);\n\t\t\t}\n\t\t});\n\t},\n\tstop: function( event, ui, draggable ) {\n\t\tvar uiSortable = $.extend( {}, ui, {\n\t\t\titem: draggable.element\n\t\t});\n\n\t\tdraggable.cancelHelperRemoval = false;\n\n\t\t$.each( draggable.sortables, function() {\n\t\t\tvar sortable = this;\n\n\t\t\tif ( sortable.isOver ) {\n\t\t\t\tsortable.isOver = 0;\n\n\t\t\t\t// Allow this sortable to handle removing the helper\n\t\t\t\tdraggable.cancelHelperRemoval = true;\n\t\t\t\tsortable.cancelHelperRemoval = false;\n\n\t\t\t\t// Use _storedCSS To restore properties in the sortable,\n\t\t\t\t// as this also handles revert (#9675) since the draggable\n\t\t\t\t// may have modified them in unexpected ways (#8809)\n\t\t\t\tsortable._storedCSS = {\n\t\t\t\t\tposition: sortable.placeholder.css( \"position\" ),\n\t\t\t\t\ttop: sortable.placeholder.css( \"top\" ),\n\t\t\t\t\tleft: sortable.placeholder.css( \"left\" )\n\t\t\t\t};\n\n\t\t\t\tsortable._mouseStop(event);\n\n\t\t\t\t// Once drag has ended, the sortable should return to using\n\t\t\t\t// its original helper, not the shared helper from draggable\n\t\t\t\tsortable.options.helper = sortable.options._helper;\n\t\t\t} else {\n\t\t\t\t// Prevent this Sortable from removing the helper.\n\t\t\t\t// However, don't set the draggable to remove the helper\n\t\t\t\t// either as another connected Sortable may yet handle the removal.\n\t\t\t\tsortable.cancelHelperRemoval = true;\n\n\t\t\t\tsortable._trigger( \"deactivate\", event, uiSortable );\n\t\t\t}\n\t\t});\n\t},\n\tdrag: function( event, ui, draggable ) {\n\t\t$.each( draggable.sortables, function() {\n\t\t\tvar innermostIntersecting = false,\n\t\t\t\tsortable = this;\n\n\t\t\t// Copy over variables that sortable's _intersectsWith uses\n\t\t\tsortable.positionAbs = draggable.positionAbs;\n\t\t\tsortable.helperProportions = draggable.helperProportions;\n\t\t\tsortable.offset.click = draggable.offset.click;\n\n\t\t\tif ( sortable._intersectsWith( sortable.containerCache ) ) {\n\t\t\t\tinnermostIntersecting = true;\n\n\t\t\t\t$.each( draggable.sortables, function() {\n\t\t\t\t\t// Copy over variables that sortable's _intersectsWith uses\n\t\t\t\t\tthis.positionAbs = draggable.positionAbs;\n\t\t\t\t\tthis.helperProportions = draggable.helperProportions;\n\t\t\t\t\tthis.offset.click = draggable.offset.click;\n\n\t\t\t\t\tif ( this !== sortable &&\n\t\t\t\t\t\t\tthis._intersectsWith( this.containerCache ) &&\n\t\t\t\t\t\t\t$.contains( sortable.element[ 0 ], this.element[ 0 ] ) ) {\n\t\t\t\t\t\tinnermostIntersecting = false;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn innermostIntersecting;\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tif ( innermostIntersecting ) {\n\t\t\t\t// If it intersects, we use a little isOver variable and set it once,\n\t\t\t\t// so that the move-in stuff gets fired only once.\n\t\t\t\tif ( !sortable.isOver ) {\n\t\t\t\t\tsortable.isOver = 1;\n\n\t\t\t\t\t// Store draggable's parent in case we need to reappend to it later.\n\t\t\t\t\tdraggable._parent = ui.helper.parent();\n\n\t\t\t\t\tsortable.currentItem = ui.helper\n\t\t\t\t\t\t.appendTo( sortable.element )\n\t\t\t\t\t\t.data( \"ui-sortable-item\", true );\n\n\t\t\t\t\t// Store helper option to later restore it\n\t\t\t\t\tsortable.options._helper = sortable.options.helper;\n\n\t\t\t\t\tsortable.options.helper = function() {\n\t\t\t\t\t\treturn ui.helper[ 0 ];\n\t\t\t\t\t};\n\n\t\t\t\t\t// Fire the start events of the sortable with our passed browser event,\n\t\t\t\t\t// and our own helper (so it doesn't create a new one)\n\t\t\t\t\tevent.target = sortable.currentItem[ 0 ];\n\t\t\t\t\tsortable._mouseCapture( event, true );\n\t\t\t\t\tsortable._mouseStart( event, true, true );\n\n\t\t\t\t\t// Because the browser event is way off the new appended portlet,\n\t\t\t\t\t// modify necessary variables to reflect the changes\n\t\t\t\t\tsortable.offset.click.top = draggable.offset.click.top;\n\t\t\t\t\tsortable.offset.click.left = draggable.offset.click.left;\n\t\t\t\t\tsortable.offset.parent.left -= draggable.offset.parent.left -\n\t\t\t\t\t\tsortable.offset.parent.left;\n\t\t\t\t\tsortable.offset.parent.top -= draggable.offset.parent.top -\n\t\t\t\t\t\tsortable.offset.parent.top;\n\n\t\t\t\t\tdraggable._trigger( \"toSortable\", event );\n\n\t\t\t\t\t// Inform draggable that the helper is in a valid drop zone,\n\t\t\t\t\t// used solely in the revert option to handle \"valid/invalid\".\n\t\t\t\t\tdraggable.dropped = sortable.element;\n\n\t\t\t\t\t// Need to refreshPositions of all sortables in the case that\n\t\t\t\t\t// adding to one sortable changes the location of the other sortables (#9675)\n\t\t\t\t\t$.each( draggable.sortables, function() {\n\t\t\t\t\t\tthis.refreshPositions();\n\t\t\t\t\t});\n\n\t\t\t\t\t// hack so receive/update callbacks work (mostly)\n\t\t\t\t\tdraggable.currentItem = draggable.element;\n\t\t\t\t\tsortable.fromOutside = draggable;\n\t\t\t\t}\n\n\t\t\t\tif ( sortable.currentItem ) {\n\t\t\t\t\tsortable._mouseDrag( event );\n\t\t\t\t\t// Copy the sortable's position because the draggable's can potentially reflect\n\t\t\t\t\t// a relative position, while sortable is always absolute, which the dragged\n\t\t\t\t\t// element has now become. (#8809)\n\t\t\t\t\tui.position = sortable.position;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// If it doesn't intersect with the sortable, and it intersected before,\n\t\t\t\t// we fake the drag stop of the sortable, but make sure it doesn't remove\n\t\t\t\t// the helper by using cancelHelperRemoval.\n\t\t\t\tif ( sortable.isOver ) {\n\n\t\t\t\t\tsortable.isOver = 0;\n\t\t\t\t\tsortable.cancelHelperRemoval = true;\n\n\t\t\t\t\t// Calling sortable's mouseStop would trigger a revert,\n\t\t\t\t\t// so revert must be temporarily false until after mouseStop is called.\n\t\t\t\t\tsortable.options._revert = sortable.options.revert;\n\t\t\t\t\tsortable.options.revert = false;\n\n\t\t\t\t\tsortable._trigger( \"out\", event, sortable._uiHash( sortable ) );\n\t\t\t\t\tsortable._mouseStop( event, true );\n\n\t\t\t\t\t// restore sortable behaviors that were modfied\n\t\t\t\t\t// when the draggable entered the sortable area (#9481)\n\t\t\t\t\tsortable.options.revert = sortable.options._revert;\n\t\t\t\t\tsortable.options.helper = sortable.options._helper;\n\n\t\t\t\t\tif ( sortable.placeholder ) {\n\t\t\t\t\t\tsortable.placeholder.remove();\n\t\t\t\t\t}\n\n\t\t\t\t\t// Restore and recalculate the draggable's offset considering the sortable\n\t\t\t\t\t// may have modified them in unexpected ways. (#8809, #10669)\n\t\t\t\t\tui.helper.appendTo( draggable._parent );\n\t\t\t\t\tdraggable._refreshOffsets( event );\n\t\t\t\t\tui.position = draggable._generatePosition( event, true );\n\n\t\t\t\t\tdraggable._trigger( \"fromSortable\", event );\n\n\t\t\t\t\t// Inform draggable that the helper is no longer in a valid drop zone\n\t\t\t\t\tdraggable.dropped = false;\n\n\t\t\t\t\t// Need to refreshPositions of all sortables just in case removing\n\t\t\t\t\t// from one sortable changes the location of other sortables (#9675)\n\t\t\t\t\t$.each( draggable.sortables, function() {\n\t\t\t\t\t\tthis.refreshPositions();\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n});\n\n$.ui.plugin.add(\"draggable\", \"cursor\", {\n\tstart: function( event, ui, instance ) {\n\t\tvar t = $( \"body\" ),\n\t\t\to = instance.options;\n\n\t\tif (t.css(\"cursor\")) {\n\t\t\to._cursor = t.css(\"cursor\");\n\t\t}\n\t\tt.css(\"cursor\", o.cursor);\n\t},\n\tstop: function( event, ui, instance ) {\n\t\tvar o = instance.options;\n\t\tif (o._cursor) {\n\t\t\t$(\"body\").css(\"cursor\", o._cursor);\n\t\t}\n\t}\n});\n\n$.ui.plugin.add(\"draggable\", \"opacity\", {\n\tstart: function( event, ui, instance ) {\n\t\tvar t = $( ui.helper ),\n\t\t\to = instance.options;\n\t\tif (t.css(\"opacity\")) {\n\t\t\to._opacity = t.css(\"opacity\");\n\t\t}\n\t\tt.css(\"opacity\", o.opacity);\n\t},\n\tstop: function( event, ui, instance ) {\n\t\tvar o = instance.options;\n\t\tif (o._opacity) {\n\t\t\t$(ui.helper).css(\"opacity\", o._opacity);\n\t\t}\n\t}\n});\n\n$.ui.plugin.add(\"draggable\", \"scroll\", {\n\tstart: function( event, ui, i ) {\n\t\tif ( !i.scrollParentNotHidden ) {\n\t\t\ti.scrollParentNotHidden = i.helper.scrollParent( false );\n\t\t}\n\n\t\tif ( i.scrollParentNotHidden[ 0 ] !== i.document[ 0 ] && i.scrollParentNotHidden[ 0 ].tagName !== \"HTML\" ) {\n\t\t\ti.overflowOffset = i.scrollParentNotHidden.offset();\n\t\t}\n\t},\n\tdrag: function( event, ui, i  ) {\n\n\t\tvar o = i.options,\n\t\t\tscrolled = false,\n\t\t\tscrollParent = i.scrollParentNotHidden[ 0 ],\n\t\t\tdocument = i.document[ 0 ];\n\n\t\tif ( scrollParent !== document && scrollParent.tagName !== \"HTML\" ) {\n\t\t\tif ( !o.axis || o.axis !== \"x\" ) {\n\t\t\t\tif ( ( i.overflowOffset.top + scrollParent.offsetHeight ) - event.pageY < o.scrollSensitivity ) {\n\t\t\t\t\tscrollParent.scrollTop = scrolled = scrollParent.scrollTop + o.scrollSpeed;\n\t\t\t\t} else if ( event.pageY - i.overflowOffset.top < o.scrollSensitivity ) {\n\t\t\t\t\tscrollParent.scrollTop = scrolled = scrollParent.scrollTop - o.scrollSpeed;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( !o.axis || o.axis !== \"y\" ) {\n\t\t\t\tif ( ( i.overflowOffset.left + scrollParent.offsetWidth ) - event.pageX < o.scrollSensitivity ) {\n\t\t\t\t\tscrollParent.scrollLeft = scrolled = scrollParent.scrollLeft + o.scrollSpeed;\n\t\t\t\t} else if ( event.pageX - i.overflowOffset.left < o.scrollSensitivity ) {\n\t\t\t\t\tscrollParent.scrollLeft = scrolled = scrollParent.scrollLeft - o.scrollSpeed;\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else {\n\n\t\t\tif (!o.axis || o.axis !== \"x\") {\n\t\t\t\tif (event.pageY - $(document).scrollTop() < o.scrollSensitivity) {\n\t\t\t\t\tscrolled = $(document).scrollTop($(document).scrollTop() - o.scrollSpeed);\n\t\t\t\t} else if ($(window).height() - (event.pageY - $(document).scrollTop()) < o.scrollSensitivity) {\n\t\t\t\t\tscrolled = $(document).scrollTop($(document).scrollTop() + o.scrollSpeed);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (!o.axis || o.axis !== \"y\") {\n\t\t\t\tif (event.pageX - $(document).scrollLeft() < o.scrollSensitivity) {\n\t\t\t\t\tscrolled = $(document).scrollLeft($(document).scrollLeft() - o.scrollSpeed);\n\t\t\t\t} else if ($(window).width() - (event.pageX - $(document).scrollLeft()) < o.scrollSensitivity) {\n\t\t\t\t\tscrolled = $(document).scrollLeft($(document).scrollLeft() + o.scrollSpeed);\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\tif (scrolled !== false && $.ui.ddmanager && !o.dropBehaviour) {\n\t\t\t$.ui.ddmanager.prepareOffsets(i, event);\n\t\t}\n\n\t}\n});\n\n$.ui.plugin.add(\"draggable\", \"snap\", {\n\tstart: function( event, ui, i ) {\n\n\t\tvar o = i.options;\n\n\t\ti.snapElements = [];\n\n\t\t$(o.snap.constructor !== String ? ( o.snap.items || \":data(ui-draggable)\" ) : o.snap).each(function() {\n\t\t\tvar $t = $(this),\n\t\t\t\t$o = $t.offset();\n\t\t\tif (this !== i.element[0]) {\n\t\t\t\ti.snapElements.push({\n\t\t\t\t\titem: this,\n\t\t\t\t\twidth: $t.outerWidth(), height: $t.outerHeight(),\n\t\t\t\t\ttop: $o.top, left: $o.left\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\n\t},\n\tdrag: function( event, ui, inst ) {\n\n\t\tvar ts, bs, ls, rs, l, r, t, b, i, first,\n\t\t\to = inst.options,\n\t\t\td = o.snapTolerance,\n\t\t\tx1 = ui.offset.left, x2 = x1 + inst.helperProportions.width,\n\t\t\ty1 = ui.offset.top, y2 = y1 + inst.helperProportions.height;\n\n\t\tfor (i = inst.snapElements.length - 1; i >= 0; i--){\n\n\t\t\tl = inst.snapElements[i].left - inst.margins.left;\n\t\t\tr = l + inst.snapElements[i].width;\n\t\t\tt = inst.snapElements[i].top - inst.margins.top;\n\t\t\tb = t + inst.snapElements[i].height;\n\n\t\t\tif ( x2 < l - d || x1 > r + d || y2 < t - d || y1 > b + d || !$.contains( inst.snapElements[ i ].item.ownerDocument, inst.snapElements[ i ].item ) ) {\n\t\t\t\tif (inst.snapElements[i].snapping) {\n\t\t\t\t\t(inst.options.snap.release && inst.options.snap.release.call(inst.element, event, $.extend(inst._uiHash(), { snapItem: inst.snapElements[i].item })));\n\t\t\t\t}\n\t\t\t\tinst.snapElements[i].snapping = false;\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tif (o.snapMode !== \"inner\") {\n\t\t\t\tts = Math.abs(t - y2) <= d;\n\t\t\t\tbs = Math.abs(b - y1) <= d;\n\t\t\t\tls = Math.abs(l - x2) <= d;\n\t\t\t\trs = Math.abs(r - x1) <= d;\n\t\t\t\tif (ts) {\n\t\t\t\t\tui.position.top = inst._convertPositionTo(\"relative\", { top: t - inst.helperProportions.height, left: 0 }).top;\n\t\t\t\t}\n\t\t\t\tif (bs) {\n\t\t\t\t\tui.position.top = inst._convertPositionTo(\"relative\", { top: b, left: 0 }).top;\n\t\t\t\t}\n\t\t\t\tif (ls) {\n\t\t\t\t\tui.position.left = inst._convertPositionTo(\"relative\", { top: 0, left: l - inst.helperProportions.width }).left;\n\t\t\t\t}\n\t\t\t\tif (rs) {\n\t\t\t\t\tui.position.left = inst._convertPositionTo(\"relative\", { top: 0, left: r }).left;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfirst = (ts || bs || ls || rs);\n\n\t\t\tif (o.snapMode !== \"outer\") {\n\t\t\t\tts = Math.abs(t - y1) <= d;\n\t\t\t\tbs = Math.abs(b - y2) <= d;\n\t\t\t\tls = Math.abs(l - x1) <= d;\n\t\t\t\trs = Math.abs(r - x2) <= d;\n\t\t\t\tif (ts) {\n\t\t\t\t\tui.position.top = inst._convertPositionTo(\"relative\", { top: t, left: 0 }).top;\n\t\t\t\t}\n\t\t\t\tif (bs) {\n\t\t\t\t\tui.position.top = inst._convertPositionTo(\"relative\", { top: b - inst.helperProportions.height, left: 0 }).top;\n\t\t\t\t}\n\t\t\t\tif (ls) {\n\t\t\t\t\tui.position.left = inst._convertPositionTo(\"relative\", { top: 0, left: l }).left;\n\t\t\t\t}\n\t\t\t\tif (rs) {\n\t\t\t\t\tui.position.left = inst._convertPositionTo(\"relative\", { top: 0, left: r - inst.helperProportions.width }).left;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (!inst.snapElements[i].snapping && (ts || bs || ls || rs || first)) {\n\t\t\t\t(inst.options.snap.snap && inst.options.snap.snap.call(inst.element, event, $.extend(inst._uiHash(), { snapItem: inst.snapElements[i].item })));\n\t\t\t}\n\t\t\tinst.snapElements[i].snapping = (ts || bs || ls || rs || first);\n\n\t\t}\n\n\t}\n});\n\n$.ui.plugin.add(\"draggable\", \"stack\", {\n\tstart: function( event, ui, instance ) {\n\t\tvar min,\n\t\t\to = instance.options,\n\t\t\tgroup = $.makeArray($(o.stack)).sort(function(a, b) {\n\t\t\t\treturn (parseInt($(a).css(\"zIndex\"), 10) || 0) - (parseInt($(b).css(\"zIndex\"), 10) || 0);\n\t\t\t});\n\n\t\tif (!group.length) { return; }\n\n\t\tmin = parseInt($(group[0]).css(\"zIndex\"), 10) || 0;\n\t\t$(group).each(function(i) {\n\t\t\t$(this).css(\"zIndex\", min + i);\n\t\t});\n\t\tthis.css(\"zIndex\", (min + group.length));\n\t}\n});\n\n$.ui.plugin.add(\"draggable\", \"zIndex\", {\n\tstart: function( event, ui, instance ) {\n\t\tvar t = $( ui.helper ),\n\t\t\to = instance.options;\n\n\t\tif (t.css(\"zIndex\")) {\n\t\t\to._zIndex = t.css(\"zIndex\");\n\t\t}\n\t\tt.css(\"zIndex\", o.zIndex);\n\t},\n\tstop: function( event, ui, instance ) {\n\t\tvar o = instance.options;\n\n\t\tif (o._zIndex) {\n\t\t\t$(ui.helper).css(\"zIndex\", o._zIndex);\n\t\t}\n\t}\n});\n\nvar draggable = $.ui.draggable;\n\n\n/*!\n * jQuery UI Droppable 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/droppable/\n */\n\n\n$.widget( \"ui.droppable\", {\n\tversion: \"1.11.4\",\n\twidgetEventPrefix: \"drop\",\n\toptions: {\n\t\taccept: \"*\",\n\t\tactiveClass: false,\n\t\taddClasses: true,\n\t\tgreedy: false,\n\t\thoverClass: false,\n\t\tscope: \"default\",\n\t\ttolerance: \"intersect\",\n\n\t\t// callbacks\n\t\tactivate: null,\n\t\tdeactivate: null,\n\t\tdrop: null,\n\t\tout: null,\n\t\tover: null\n\t},\n\t_create: function() {\n\n\t\tvar proportions,\n\t\t\to = this.options,\n\t\t\taccept = o.accept;\n\n\t\tthis.isover = false;\n\t\tthis.isout = true;\n\n\t\tthis.accept = $.isFunction( accept ) ? accept : function( d ) {\n\t\t\treturn d.is( accept );\n\t\t};\n\n\t\tthis.proportions = function( /* valueToWrite */ ) {\n\t\t\tif ( arguments.length ) {\n\t\t\t\t// Store the droppable's proportions\n\t\t\t\tproportions = arguments[ 0 ];\n\t\t\t} else {\n\t\t\t\t// Retrieve or derive the droppable's proportions\n\t\t\t\treturn proportions ?\n\t\t\t\t\tproportions :\n\t\t\t\t\tproportions = {\n\t\t\t\t\t\twidth: this.element[ 0 ].offsetWidth,\n\t\t\t\t\t\theight: this.element[ 0 ].offsetHeight\n\t\t\t\t\t};\n\t\t\t}\n\t\t};\n\n\t\tthis._addToManager( o.scope );\n\n\t\to.addClasses && this.element.addClass( \"ui-droppable\" );\n\n\t},\n\n\t_addToManager: function( scope ) {\n\t\t// Add the reference and positions to the manager\n\t\t$.ui.ddmanager.droppables[ scope ] = $.ui.ddmanager.droppables[ scope ] || [];\n\t\t$.ui.ddmanager.droppables[ scope ].push( this );\n\t},\n\n\t_splice: function( drop ) {\n\t\tvar i = 0;\n\t\tfor ( ; i < drop.length; i++ ) {\n\t\t\tif ( drop[ i ] === this ) {\n\t\t\t\tdrop.splice( i, 1 );\n\t\t\t}\n\t\t}\n\t},\n\n\t_destroy: function() {\n\t\tvar drop = $.ui.ddmanager.droppables[ this.options.scope ];\n\n\t\tthis._splice( drop );\n\n\t\tthis.element.removeClass( \"ui-droppable ui-droppable-disabled\" );\n\t},\n\n\t_setOption: function( key, value ) {\n\n\t\tif ( key === \"accept\" ) {\n\t\t\tthis.accept = $.isFunction( value ) ? value : function( d ) {\n\t\t\t\treturn d.is( value );\n\t\t\t};\n\t\t} else if ( key === \"scope\" ) {\n\t\t\tvar drop = $.ui.ddmanager.droppables[ this.options.scope ];\n\n\t\t\tthis._splice( drop );\n\t\t\tthis._addToManager( value );\n\t\t}\n\n\t\tthis._super( key, value );\n\t},\n\n\t_activate: function( event ) {\n\t\tvar draggable = $.ui.ddmanager.current;\n\t\tif ( this.options.activeClass ) {\n\t\t\tthis.element.addClass( this.options.activeClass );\n\t\t}\n\t\tif ( draggable ){\n\t\t\tthis._trigger( \"activate\", event, this.ui( draggable ) );\n\t\t}\n\t},\n\n\t_deactivate: function( event ) {\n\t\tvar draggable = $.ui.ddmanager.current;\n\t\tif ( this.options.activeClass ) {\n\t\t\tthis.element.removeClass( this.options.activeClass );\n\t\t}\n\t\tif ( draggable ){\n\t\t\tthis._trigger( \"deactivate\", event, this.ui( draggable ) );\n\t\t}\n\t},\n\n\t_over: function( event ) {\n\n\t\tvar draggable = $.ui.ddmanager.current;\n\n\t\t// Bail if draggable and droppable are same element\n\t\tif ( !draggable || ( draggable.currentItem || draggable.element )[ 0 ] === this.element[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( this.accept.call( this.element[ 0 ], ( draggable.currentItem || draggable.element ) ) ) {\n\t\t\tif ( this.options.hoverClass ) {\n\t\t\t\tthis.element.addClass( this.options.hoverClass );\n\t\t\t}\n\t\t\tthis._trigger( \"over\", event, this.ui( draggable ) );\n\t\t}\n\n\t},\n\n\t_out: function( event ) {\n\n\t\tvar draggable = $.ui.ddmanager.current;\n\n\t\t// Bail if draggable and droppable are same element\n\t\tif ( !draggable || ( draggable.currentItem || draggable.element )[ 0 ] === this.element[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( this.accept.call( this.element[ 0 ], ( draggable.currentItem || draggable.element ) ) ) {\n\t\t\tif ( this.options.hoverClass ) {\n\t\t\t\tthis.element.removeClass( this.options.hoverClass );\n\t\t\t}\n\t\t\tthis._trigger( \"out\", event, this.ui( draggable ) );\n\t\t}\n\n\t},\n\n\t_drop: function( event, custom ) {\n\n\t\tvar draggable = custom || $.ui.ddmanager.current,\n\t\t\tchildrenIntersection = false;\n\n\t\t// Bail if draggable and droppable are same element\n\t\tif ( !draggable || ( draggable.currentItem || draggable.element )[ 0 ] === this.element[ 0 ] ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tthis.element.find( \":data(ui-droppable)\" ).not( \".ui-draggable-dragging\" ).each(function() {\n\t\t\tvar inst = $( this ).droppable( \"instance\" );\n\t\t\tif (\n\t\t\t\tinst.options.greedy &&\n\t\t\t\t!inst.options.disabled &&\n\t\t\t\tinst.options.scope === draggable.options.scope &&\n\t\t\t\tinst.accept.call( inst.element[ 0 ], ( draggable.currentItem || draggable.element ) ) &&\n\t\t\t\t$.ui.intersect( draggable, $.extend( inst, { offset: inst.element.offset() } ), inst.options.tolerance, event )\n\t\t\t) { childrenIntersection = true; return false; }\n\t\t});\n\t\tif ( childrenIntersection ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif ( this.accept.call( this.element[ 0 ], ( draggable.currentItem || draggable.element ) ) ) {\n\t\t\tif ( this.options.activeClass ) {\n\t\t\t\tthis.element.removeClass( this.options.activeClass );\n\t\t\t}\n\t\t\tif ( this.options.hoverClass ) {\n\t\t\t\tthis.element.removeClass( this.options.hoverClass );\n\t\t\t}\n\t\t\tthis._trigger( \"drop\", event, this.ui( draggable ) );\n\t\t\treturn this.element;\n\t\t}\n\n\t\treturn false;\n\n\t},\n\n\tui: function( c ) {\n\t\treturn {\n\t\t\tdraggable: ( c.currentItem || c.element ),\n\t\t\thelper: c.helper,\n\t\t\tposition: c.position,\n\t\t\toffset: c.positionAbs\n\t\t};\n\t}\n\n});\n\n$.ui.intersect = (function() {\n\tfunction isOverAxis( x, reference, size ) {\n\t\treturn ( x >= reference ) && ( x < ( reference + size ) );\n\t}\n\n\treturn function( draggable, droppable, toleranceMode, event ) {\n\n\t\tif ( !droppable.offset ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tvar x1 = ( draggable.positionAbs || draggable.position.absolute ).left + draggable.margins.left,\n\t\t\ty1 = ( draggable.positionAbs || draggable.position.absolute ).top + draggable.margins.top,\n\t\t\tx2 = x1 + draggable.helperProportions.width,\n\t\t\ty2 = y1 + draggable.helperProportions.height,\n\t\t\tl = droppable.offset.left,\n\t\t\tt = droppable.offset.top,\n\t\t\tr = l + droppable.proportions().width,\n\t\t\tb = t + droppable.proportions().height;\n\n\t\tswitch ( toleranceMode ) {\n\t\tcase \"fit\":\n\t\t\treturn ( l <= x1 && x2 <= r && t <= y1 && y2 <= b );\n\t\tcase \"intersect\":\n\t\t\treturn ( l < x1 + ( draggable.helperProportions.width / 2 ) && // Right Half\n\t\t\t\tx2 - ( draggable.helperProportions.width / 2 ) < r && // Left Half\n\t\t\t\tt < y1 + ( draggable.helperProportions.height / 2 ) && // Bottom Half\n\t\t\t\ty2 - ( draggable.helperProportions.height / 2 ) < b ); // Top Half\n\t\tcase \"pointer\":\n\t\t\treturn isOverAxis( event.pageY, t, droppable.proportions().height ) && isOverAxis( event.pageX, l, droppable.proportions().width );\n\t\tcase \"touch\":\n\t\t\treturn (\n\t\t\t\t( y1 >= t && y1 <= b ) || // Top edge touching\n\t\t\t\t( y2 >= t && y2 <= b ) || // Bottom edge touching\n\t\t\t\t( y1 < t && y2 > b ) // Surrounded vertically\n\t\t\t) && (\n\t\t\t\t( x1 >= l && x1 <= r ) || // Left edge touching\n\t\t\t\t( x2 >= l && x2 <= r ) || // Right edge touching\n\t\t\t\t( x1 < l && x2 > r ) // Surrounded horizontally\n\t\t\t);\n\t\tdefault:\n\t\t\treturn false;\n\t\t}\n\t};\n})();\n\n/*\n\tThis manager tracks offsets of draggables and droppables\n*/\n$.ui.ddmanager = {\n\tcurrent: null,\n\tdroppables: { \"default\": [] },\n\tprepareOffsets: function( t, event ) {\n\n\t\tvar i, j,\n\t\t\tm = $.ui.ddmanager.droppables[ t.options.scope ] || [],\n\t\t\ttype = event ? event.type : null, // workaround for #2317\n\t\t\tlist = ( t.currentItem || t.element ).find( \":data(ui-droppable)\" ).addBack();\n\n\t\tdroppablesLoop: for ( i = 0; i < m.length; i++ ) {\n\n\t\t\t// No disabled and non-accepted\n\t\t\tif ( m[ i ].options.disabled || ( t && !m[ i ].accept.call( m[ i ].element[ 0 ], ( t.currentItem || t.element ) ) ) ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// Filter out elements in the current dragged item\n\t\t\tfor ( j = 0; j < list.length; j++ ) {\n\t\t\t\tif ( list[ j ] === m[ i ].element[ 0 ] ) {\n\t\t\t\t\tm[ i ].proportions().height = 0;\n\t\t\t\t\tcontinue droppablesLoop;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tm[ i ].visible = m[ i ].element.css( \"display\" ) !== \"none\";\n\t\t\tif ( !m[ i ].visible ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// Activate the droppable if used directly from draggables\n\t\t\tif ( type === \"mousedown\" ) {\n\t\t\t\tm[ i ]._activate.call( m[ i ], event );\n\t\t\t}\n\n\t\t\tm[ i ].offset = m[ i ].element.offset();\n\t\t\tm[ i ].proportions({ width: m[ i ].element[ 0 ].offsetWidth, height: m[ i ].element[ 0 ].offsetHeight });\n\n\t\t}\n\n\t},\n\tdrop: function( draggable, event ) {\n\n\t\tvar dropped = false;\n\t\t// Create a copy of the droppables in case the list changes during the drop (#9116)\n\t\t$.each( ( $.ui.ddmanager.droppables[ draggable.options.scope ] || [] ).slice(), function() {\n\n\t\t\tif ( !this.options ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tif ( !this.options.disabled && this.visible && $.ui.intersect( draggable, this, this.options.tolerance, event ) ) {\n\t\t\t\tdropped = this._drop.call( this, event ) || dropped;\n\t\t\t}\n\n\t\t\tif ( !this.options.disabled && this.visible && this.accept.call( this.element[ 0 ], ( draggable.currentItem || draggable.element ) ) ) {\n\t\t\t\tthis.isout = true;\n\t\t\t\tthis.isover = false;\n\t\t\t\tthis._deactivate.call( this, event );\n\t\t\t}\n\n\t\t});\n\t\treturn dropped;\n\n\t},\n\tdragStart: function( draggable, event ) {\n\t\t// Listen for scrolling so that if the dragging causes scrolling the position of the droppables can be recalculated (see #5003)\n\t\tdraggable.element.parentsUntil( \"body\" ).bind( \"scroll.droppable\", function() {\n\t\t\tif ( !draggable.options.refreshPositions ) {\n\t\t\t\t$.ui.ddmanager.prepareOffsets( draggable, event );\n\t\t\t}\n\t\t});\n\t},\n\tdrag: function( draggable, event ) {\n\n\t\t// If you have a highly dynamic page, you might try this option. It renders positions every time you move the mouse.\n\t\tif ( draggable.options.refreshPositions ) {\n\t\t\t$.ui.ddmanager.prepareOffsets( draggable, event );\n\t\t}\n\n\t\t// Run through all droppables and check their positions based on specific tolerance options\n\t\t$.each( $.ui.ddmanager.droppables[ draggable.options.scope ] || [], function() {\n\n\t\t\tif ( this.options.disabled || this.greedyChild || !this.visible ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar parentInstance, scope, parent,\n\t\t\t\tintersects = $.ui.intersect( draggable, this, this.options.tolerance, event ),\n\t\t\t\tc = !intersects && this.isover ? \"isout\" : ( intersects && !this.isover ? \"isover\" : null );\n\t\t\tif ( !c ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( this.options.greedy ) {\n\t\t\t\t// find droppable parents with same scope\n\t\t\t\tscope = this.options.scope;\n\t\t\t\tparent = this.element.parents( \":data(ui-droppable)\" ).filter(function() {\n\t\t\t\t\treturn $( this ).droppable( \"instance\" ).options.scope === scope;\n\t\t\t\t});\n\n\t\t\t\tif ( parent.length ) {\n\t\t\t\t\tparentInstance = $( parent[ 0 ] ).droppable( \"instance\" );\n\t\t\t\t\tparentInstance.greedyChild = ( c === \"isover\" );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// we just moved into a greedy child\n\t\t\tif ( parentInstance && c === \"isover\" ) {\n\t\t\t\tparentInstance.isover = false;\n\t\t\t\tparentInstance.isout = true;\n\t\t\t\tparentInstance._out.call( parentInstance, event );\n\t\t\t}\n\n\t\t\tthis[ c ] = true;\n\t\t\tthis[c === \"isout\" ? \"isover\" : \"isout\"] = false;\n\t\t\tthis[c === \"isover\" ? \"_over\" : \"_out\"].call( this, event );\n\n\t\t\t// we just moved out of a greedy child\n\t\t\tif ( parentInstance && c === \"isout\" ) {\n\t\t\t\tparentInstance.isout = false;\n\t\t\t\tparentInstance.isover = true;\n\t\t\t\tparentInstance._over.call( parentInstance, event );\n\t\t\t}\n\t\t});\n\n\t},\n\tdragStop: function( draggable, event ) {\n\t\tdraggable.element.parentsUntil( \"body\" ).unbind( \"scroll.droppable\" );\n\t\t// Call prepareOffsets one final time since IE does not fire return scroll events when overflow was caused by drag (see #5003)\n\t\tif ( !draggable.options.refreshPositions ) {\n\t\t\t$.ui.ddmanager.prepareOffsets( draggable, event );\n\t\t}\n\t}\n};\n\nvar droppable = $.ui.droppable;\n\n\n/*!\n * jQuery UI Resizable 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/resizable/\n */\n\n\n$.widget(\"ui.resizable\", $.ui.mouse, {\n\tversion: \"1.11.4\",\n\twidgetEventPrefix: \"resize\",\n\toptions: {\n\t\talsoResize: false,\n\t\tanimate: false,\n\t\tanimateDuration: \"slow\",\n\t\tanimateEasing: \"swing\",\n\t\taspectRatio: false,\n\t\tautoHide: false,\n\t\tcontainment: false,\n\t\tghost: false,\n\t\tgrid: false,\n\t\thandles: \"e,s,se\",\n\t\thelper: false,\n\t\tmaxHeight: null,\n\t\tmaxWidth: null,\n\t\tminHeight: 10,\n\t\tminWidth: 10,\n\t\t// See #7960\n\t\tzIndex: 90,\n\n\t\t// callbacks\n\t\tresize: null,\n\t\tstart: null,\n\t\tstop: null\n\t},\n\n\t_num: function( value ) {\n\t\treturn parseInt( value, 10 ) || 0;\n\t},\n\n\t_isNumber: function( value ) {\n\t\treturn !isNaN( parseInt( value, 10 ) );\n\t},\n\n\t_hasScroll: function( el, a ) {\n\n\t\tif ( $( el ).css( \"overflow\" ) === \"hidden\") {\n\t\t\treturn false;\n\t\t}\n\n\t\tvar scroll = ( a && a === \"left\" ) ? \"scrollLeft\" : \"scrollTop\",\n\t\t\thas = false;\n\n\t\tif ( el[ scroll ] > 0 ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// TODO: determine which cases actually cause this to happen\n\t\t// if the element doesn't have the scroll set, see if it's possible to\n\t\t// set the scroll\n\t\tel[ scroll ] = 1;\n\t\thas = ( el[ scroll ] > 0 );\n\t\tel[ scroll ] = 0;\n\t\treturn has;\n\t},\n\n\t_create: function() {\n\n\t\tvar n, i, handle, axis, hname,\n\t\t\tthat = this,\n\t\t\to = this.options;\n\t\tthis.element.addClass(\"ui-resizable\");\n\n\t\t$.extend(this, {\n\t\t\t_aspectRatio: !!(o.aspectRatio),\n\t\t\taspectRatio: o.aspectRatio,\n\t\t\toriginalElement: this.element,\n\t\t\t_proportionallyResizeElements: [],\n\t\t\t_helper: o.helper || o.ghost || o.animate ? o.helper || \"ui-resizable-helper\" : null\n\t\t});\n\n\t\t// Wrap the element if it cannot hold child nodes\n\t\tif (this.element[0].nodeName.match(/^(canvas|textarea|input|select|button|img)$/i)) {\n\n\t\t\tthis.element.wrap(\n\t\t\t\t$(\"<div class='ui-wrapper' style='overflow: hidden;'></div>\").css({\n\t\t\t\t\tposition: this.element.css(\"position\"),\n\t\t\t\t\twidth: this.element.outerWidth(),\n\t\t\t\t\theight: this.element.outerHeight(),\n\t\t\t\t\ttop: this.element.css(\"top\"),\n\t\t\t\t\tleft: this.element.css(\"left\")\n\t\t\t\t})\n\t\t\t);\n\n\t\t\tthis.element = this.element.parent().data(\n\t\t\t\t\"ui-resizable\", this.element.resizable( \"instance\" )\n\t\t\t);\n\n\t\t\tthis.elementIsWrapper = true;\n\n\t\t\tthis.element.css({\n\t\t\t\tmarginLeft: this.originalElement.css(\"marginLeft\"),\n\t\t\t\tmarginTop: this.originalElement.css(\"marginTop\"),\n\t\t\t\tmarginRight: this.originalElement.css(\"marginRight\"),\n\t\t\t\tmarginBottom: this.originalElement.css(\"marginBottom\")\n\t\t\t});\n\t\t\tthis.originalElement.css({\n\t\t\t\tmarginLeft: 0,\n\t\t\t\tmarginTop: 0,\n\t\t\t\tmarginRight: 0,\n\t\t\t\tmarginBottom: 0\n\t\t\t});\n\t\t\t// support: Safari\n\t\t\t// Prevent Safari textarea resize\n\t\t\tthis.originalResizeStyle = this.originalElement.css(\"resize\");\n\t\t\tthis.originalElement.css(\"resize\", \"none\");\n\n\t\t\tthis._proportionallyResizeElements.push( this.originalElement.css({\n\t\t\t\tposition: \"static\",\n\t\t\t\tzoom: 1,\n\t\t\t\tdisplay: \"block\"\n\t\t\t}) );\n\n\t\t\t// support: IE9\n\t\t\t// avoid IE jump (hard set the margin)\n\t\t\tthis.originalElement.css({ margin: this.originalElement.css(\"margin\") });\n\n\t\t\tthis._proportionallyResize();\n\t\t}\n\n\t\tthis.handles = o.handles ||\n\t\t\t( !$(\".ui-resizable-handle\", this.element).length ?\n\t\t\t\t\"e,s,se\" : {\n\t\t\t\t\tn: \".ui-resizable-n\",\n\t\t\t\t\te: \".ui-resizable-e\",\n\t\t\t\t\ts: \".ui-resizable-s\",\n\t\t\t\t\tw: \".ui-resizable-w\",\n\t\t\t\t\tse: \".ui-resizable-se\",\n\t\t\t\t\tsw: \".ui-resizable-sw\",\n\t\t\t\t\tne: \".ui-resizable-ne\",\n\t\t\t\t\tnw: \".ui-resizable-nw\"\n\t\t\t\t} );\n\n\t\tthis._handles = $();\n\t\tif ( this.handles.constructor === String ) {\n\n\t\t\tif ( this.handles === \"all\") {\n\t\t\t\tthis.handles = \"n,e,s,w,se,sw,ne,nw\";\n\t\t\t}\n\n\t\t\tn = this.handles.split(\",\");\n\t\t\tthis.handles = {};\n\n\t\t\tfor (i = 0; i < n.length; i++) {\n\n\t\t\t\thandle = $.trim(n[i]);\n\t\t\t\thname = \"ui-resizable-\" + handle;\n\t\t\t\taxis = $(\"<div class='ui-resizable-handle \" + hname + \"'></div>\");\n\n\t\t\t\taxis.css({ zIndex: o.zIndex });\n\n\t\t\t\t// TODO : What's going on here?\n\t\t\t\tif (\"se\" === handle) {\n\t\t\t\t\taxis.addClass(\"ui-icon ui-icon-gripsmall-diagonal-se\");\n\t\t\t\t}\n\n\t\t\t\tthis.handles[handle] = \".ui-resizable-\" + handle;\n\t\t\t\tthis.element.append(axis);\n\t\t\t}\n\n\t\t}\n\n\t\tthis._renderAxis = function(target) {\n\n\t\t\tvar i, axis, padPos, padWrapper;\n\n\t\t\ttarget = target || this.element;\n\n\t\t\tfor (i in this.handles) {\n\n\t\t\t\tif (this.handles[i].constructor === String) {\n\t\t\t\t\tthis.handles[i] = this.element.children( this.handles[ i ] ).first().show();\n\t\t\t\t} else if ( this.handles[ i ].jquery || this.handles[ i ].nodeType ) {\n\t\t\t\t\tthis.handles[ i ] = $( this.handles[ i ] );\n\t\t\t\t\tthis._on( this.handles[ i ], { \"mousedown\": that._mouseDown });\n\t\t\t\t}\n\n\t\t\t\tif (this.elementIsWrapper && this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)) {\n\n\t\t\t\t\taxis = $(this.handles[i], this.element);\n\n\t\t\t\t\tpadWrapper = /sw|ne|nw|se|n|s/.test(i) ? axis.outerHeight() : axis.outerWidth();\n\n\t\t\t\t\tpadPos = [ \"padding\",\n\t\t\t\t\t\t/ne|nw|n/.test(i) ? \"Top\" :\n\t\t\t\t\t\t/se|sw|s/.test(i) ? \"Bottom\" :\n\t\t\t\t\t\t/^e$/.test(i) ? \"Right\" : \"Left\" ].join(\"\");\n\n\t\t\t\t\ttarget.css(padPos, padWrapper);\n\n\t\t\t\t\tthis._proportionallyResize();\n\t\t\t\t}\n\n\t\t\t\tthis._handles = this._handles.add( this.handles[ i ] );\n\t\t\t}\n\t\t};\n\n\t\t// TODO: make renderAxis a prototype function\n\t\tthis._renderAxis(this.element);\n\n\t\tthis._handles = this._handles.add( this.element.find( \".ui-resizable-handle\" ) );\n\t\tthis._handles.disableSelection();\n\n\t\tthis._handles.mouseover(function() {\n\t\t\tif (!that.resizing) {\n\t\t\t\tif (this.className) {\n\t\t\t\t\taxis = this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);\n\t\t\t\t}\n\t\t\t\tthat.axis = axis && axis[1] ? axis[1] : \"se\";\n\t\t\t}\n\t\t});\n\n\t\tif (o.autoHide) {\n\t\t\tthis._handles.hide();\n\t\t\t$(this.element)\n\t\t\t\t.addClass(\"ui-resizable-autohide\")\n\t\t\t\t.mouseenter(function() {\n\t\t\t\t\tif (o.disabled) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\t$(this).removeClass(\"ui-resizable-autohide\");\n\t\t\t\t\tthat._handles.show();\n\t\t\t\t})\n\t\t\t\t.mouseleave(function() {\n\t\t\t\t\tif (o.disabled) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\tif (!that.resizing) {\n\t\t\t\t\t\t$(this).addClass(\"ui-resizable-autohide\");\n\t\t\t\t\t\tthat._handles.hide();\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t}\n\n\t\tthis._mouseInit();\n\t},\n\n\t_destroy: function() {\n\n\t\tthis._mouseDestroy();\n\n\t\tvar wrapper,\n\t\t\t_destroy = function(exp) {\n\t\t\t\t$(exp)\n\t\t\t\t\t.removeClass(\"ui-resizable ui-resizable-disabled ui-resizable-resizing\")\n\t\t\t\t\t.removeData(\"resizable\")\n\t\t\t\t\t.removeData(\"ui-resizable\")\n\t\t\t\t\t.unbind(\".resizable\")\n\t\t\t\t\t.find(\".ui-resizable-handle\")\n\t\t\t\t\t\t.remove();\n\t\t\t};\n\n\t\t// TODO: Unwrap at same DOM position\n\t\tif (this.elementIsWrapper) {\n\t\t\t_destroy(this.element);\n\t\t\twrapper = this.element;\n\t\t\tthis.originalElement.css({\n\t\t\t\tposition: wrapper.css(\"position\"),\n\t\t\t\twidth: wrapper.outerWidth(),\n\t\t\t\theight: wrapper.outerHeight(),\n\t\t\t\ttop: wrapper.css(\"top\"),\n\t\t\t\tleft: wrapper.css(\"left\")\n\t\t\t}).insertAfter( wrapper );\n\t\t\twrapper.remove();\n\t\t}\n\n\t\tthis.originalElement.css(\"resize\", this.originalResizeStyle);\n\t\t_destroy(this.originalElement);\n\n\t\treturn this;\n\t},\n\n\t_mouseCapture: function(event) {\n\t\tvar i, handle,\n\t\t\tcapture = false;\n\n\t\tfor (i in this.handles) {\n\t\t\thandle = $(this.handles[i])[0];\n\t\t\tif (handle === event.target || $.contains(handle, event.target)) {\n\t\t\t\tcapture = true;\n\t\t\t}\n\t\t}\n\n\t\treturn !this.options.disabled && capture;\n\t},\n\n\t_mouseStart: function(event) {\n\n\t\tvar curleft, curtop, cursor,\n\t\t\to = this.options,\n\t\t\tel = this.element;\n\n\t\tthis.resizing = true;\n\n\t\tthis._renderProxy();\n\n\t\tcurleft = this._num(this.helper.css(\"left\"));\n\t\tcurtop = this._num(this.helper.css(\"top\"));\n\n\t\tif (o.containment) {\n\t\t\tcurleft += $(o.containment).scrollLeft() || 0;\n\t\t\tcurtop += $(o.containment).scrollTop() || 0;\n\t\t}\n\n\t\tthis.offset = this.helper.offset();\n\t\tthis.position = { left: curleft, top: curtop };\n\n\t\tthis.size = this._helper ? {\n\t\t\t\twidth: this.helper.width(),\n\t\t\t\theight: this.helper.height()\n\t\t\t} : {\n\t\t\t\twidth: el.width(),\n\t\t\t\theight: el.height()\n\t\t\t};\n\n\t\tthis.originalSize = this._helper ? {\n\t\t\t\twidth: el.outerWidth(),\n\t\t\t\theight: el.outerHeight()\n\t\t\t} : {\n\t\t\t\twidth: el.width(),\n\t\t\t\theight: el.height()\n\t\t\t};\n\n\t\tthis.sizeDiff = {\n\t\t\twidth: el.outerWidth() - el.width(),\n\t\t\theight: el.outerHeight() - el.height()\n\t\t};\n\n\t\tthis.originalPosition = { left: curleft, top: curtop };\n\t\tthis.originalMousePosition = { left: event.pageX, top: event.pageY };\n\n\t\tthis.aspectRatio = (typeof o.aspectRatio === \"number\") ?\n\t\t\to.aspectRatio :\n\t\t\t((this.originalSize.width / this.originalSize.height) || 1);\n\n\t\tcursor = $(\".ui-resizable-\" + this.axis).css(\"cursor\");\n\t\t$(\"body\").css(\"cursor\", cursor === \"auto\" ? this.axis + \"-resize\" : cursor);\n\n\t\tel.addClass(\"ui-resizable-resizing\");\n\t\tthis._propagate(\"start\", event);\n\t\treturn true;\n\t},\n\n\t_mouseDrag: function(event) {\n\n\t\tvar data, props,\n\t\t\tsmp = this.originalMousePosition,\n\t\t\ta = this.axis,\n\t\t\tdx = (event.pageX - smp.left) || 0,\n\t\t\tdy = (event.pageY - smp.top) || 0,\n\t\t\ttrigger = this._change[a];\n\n\t\tthis._updatePrevProperties();\n\n\t\tif (!trigger) {\n\t\t\treturn false;\n\t\t}\n\n\t\tdata = trigger.apply(this, [ event, dx, dy ]);\n\n\t\tthis._updateVirtualBoundaries(event.shiftKey);\n\t\tif (this._aspectRatio || event.shiftKey) {\n\t\t\tdata = this._updateRatio(data, event);\n\t\t}\n\n\t\tdata = this._respectSize(data, event);\n\n\t\tthis._updateCache(data);\n\n\t\tthis._propagate(\"resize\", event);\n\n\t\tprops = this._applyChanges();\n\n\t\tif ( !this._helper && this._proportionallyResizeElements.length ) {\n\t\t\tthis._proportionallyResize();\n\t\t}\n\n\t\tif ( !$.isEmptyObject( props ) ) {\n\t\t\tthis._updatePrevProperties();\n\t\t\tthis._trigger( \"resize\", event, this.ui() );\n\t\t\tthis._applyChanges();\n\t\t}\n\n\t\treturn false;\n\t},\n\n\t_mouseStop: function(event) {\n\n\t\tthis.resizing = false;\n\t\tvar pr, ista, soffseth, soffsetw, s, left, top,\n\t\t\to = this.options, that = this;\n\n\t\tif (this._helper) {\n\n\t\t\tpr = this._proportionallyResizeElements;\n\t\t\tista = pr.length && (/textarea/i).test(pr[0].nodeName);\n\t\t\tsoffseth = ista && this._hasScroll(pr[0], \"left\") ? 0 : that.sizeDiff.height;\n\t\t\tsoffsetw = ista ? 0 : that.sizeDiff.width;\n\n\t\t\ts = {\n\t\t\t\twidth: (that.helper.width()  - soffsetw),\n\t\t\t\theight: (that.helper.height() - soffseth)\n\t\t\t};\n\t\t\tleft = (parseInt(that.element.css(\"left\"), 10) +\n\t\t\t\t(that.position.left - that.originalPosition.left)) || null;\n\t\t\ttop = (parseInt(that.element.css(\"top\"), 10) +\n\t\t\t\t(that.position.top - that.originalPosition.top)) || null;\n\n\t\t\tif (!o.animate) {\n\t\t\t\tthis.element.css($.extend(s, { top: top, left: left }));\n\t\t\t}\n\n\t\t\tthat.helper.height(that.size.height);\n\t\t\tthat.helper.width(that.size.width);\n\n\t\t\tif (this._helper && !o.animate) {\n\t\t\t\tthis._proportionallyResize();\n\t\t\t}\n\t\t}\n\n\t\t$(\"body\").css(\"cursor\", \"auto\");\n\n\t\tthis.element.removeClass(\"ui-resizable-resizing\");\n\n\t\tthis._propagate(\"stop\", event);\n\n\t\tif (this._helper) {\n\t\t\tthis.helper.remove();\n\t\t}\n\n\t\treturn false;\n\n\t},\n\n\t_updatePrevProperties: function() {\n\t\tthis.prevPosition = {\n\t\t\ttop: this.position.top,\n\t\t\tleft: this.position.left\n\t\t};\n\t\tthis.prevSize = {\n\t\t\twidth: this.size.width,\n\t\t\theight: this.size.height\n\t\t};\n\t},\n\n\t_applyChanges: function() {\n\t\tvar props = {};\n\n\t\tif ( this.position.top !== this.prevPosition.top ) {\n\t\t\tprops.top = this.position.top + \"px\";\n\t\t}\n\t\tif ( this.position.left !== this.prevPosition.left ) {\n\t\t\tprops.left = this.position.left + \"px\";\n\t\t}\n\t\tif ( this.size.width !== this.prevSize.width ) {\n\t\t\tprops.width = this.size.width + \"px\";\n\t\t}\n\t\tif ( this.size.height !== this.prevSize.height ) {\n\t\t\tprops.height = this.size.height + \"px\";\n\t\t}\n\n\t\tthis.helper.css( props );\n\n\t\treturn props;\n\t},\n\n\t_updateVirtualBoundaries: function(forceAspectRatio) {\n\t\tvar pMinWidth, pMaxWidth, pMinHeight, pMaxHeight, b,\n\t\t\to = this.options;\n\n\t\tb = {\n\t\t\tminWidth: this._isNumber(o.minWidth) ? o.minWidth : 0,\n\t\t\tmaxWidth: this._isNumber(o.maxWidth) ? o.maxWidth : Infinity,\n\t\t\tminHeight: this._isNumber(o.minHeight) ? o.minHeight : 0,\n\t\t\tmaxHeight: this._isNumber(o.maxHeight) ? o.maxHeight : Infinity\n\t\t};\n\n\t\tif (this._aspectRatio || forceAspectRatio) {\n\t\t\tpMinWidth = b.minHeight * this.aspectRatio;\n\t\t\tpMinHeight = b.minWidth / this.aspectRatio;\n\t\t\tpMaxWidth = b.maxHeight * this.aspectRatio;\n\t\t\tpMaxHeight = b.maxWidth / this.aspectRatio;\n\n\t\t\tif (pMinWidth > b.minWidth) {\n\t\t\t\tb.minWidth = pMinWidth;\n\t\t\t}\n\t\t\tif (pMinHeight > b.minHeight) {\n\t\t\t\tb.minHeight = pMinHeight;\n\t\t\t}\n\t\t\tif (pMaxWidth < b.maxWidth) {\n\t\t\t\tb.maxWidth = pMaxWidth;\n\t\t\t}\n\t\t\tif (pMaxHeight < b.maxHeight) {\n\t\t\t\tb.maxHeight = pMaxHeight;\n\t\t\t}\n\t\t}\n\t\tthis._vBoundaries = b;\n\t},\n\n\t_updateCache: function(data) {\n\t\tthis.offset = this.helper.offset();\n\t\tif (this._isNumber(data.left)) {\n\t\t\tthis.position.left = data.left;\n\t\t}\n\t\tif (this._isNumber(data.top)) {\n\t\t\tthis.position.top = data.top;\n\t\t}\n\t\tif (this._isNumber(data.height)) {\n\t\t\tthis.size.height = data.height;\n\t\t}\n\t\tif (this._isNumber(data.width)) {\n\t\t\tthis.size.width = data.width;\n\t\t}\n\t},\n\n\t_updateRatio: function( data ) {\n\n\t\tvar cpos = this.position,\n\t\t\tcsize = this.size,\n\t\t\ta = this.axis;\n\n\t\tif (this._isNumber(data.height)) {\n\t\t\tdata.width = (data.height * this.aspectRatio);\n\t\t} else if (this._isNumber(data.width)) {\n\t\t\tdata.height = (data.width / this.aspectRatio);\n\t\t}\n\n\t\tif (a === \"sw\") {\n\t\t\tdata.left = cpos.left + (csize.width - data.width);\n\t\t\tdata.top = null;\n\t\t}\n\t\tif (a === \"nw\") {\n\t\t\tdata.top = cpos.top + (csize.height - data.height);\n\t\t\tdata.left = cpos.left + (csize.width - data.width);\n\t\t}\n\n\t\treturn data;\n\t},\n\n\t_respectSize: function( data ) {\n\n\t\tvar o = this._vBoundaries,\n\t\t\ta = this.axis,\n\t\t\tismaxw = this._isNumber(data.width) && o.maxWidth && (o.maxWidth < data.width),\n\t\t\tismaxh = this._isNumber(data.height) && o.maxHeight && (o.maxHeight < data.height),\n\t\t\tisminw = this._isNumber(data.width) && o.minWidth && (o.minWidth > data.width),\n\t\t\tisminh = this._isNumber(data.height) && o.minHeight && (o.minHeight > data.height),\n\t\t\tdw = this.originalPosition.left + this.originalSize.width,\n\t\t\tdh = this.position.top + this.size.height,\n\t\t\tcw = /sw|nw|w/.test(a), ch = /nw|ne|n/.test(a);\n\t\tif (isminw) {\n\t\t\tdata.width = o.minWidth;\n\t\t}\n\t\tif (isminh) {\n\t\t\tdata.height = o.minHeight;\n\t\t}\n\t\tif (ismaxw) {\n\t\t\tdata.width = o.maxWidth;\n\t\t}\n\t\tif (ismaxh) {\n\t\t\tdata.height = o.maxHeight;\n\t\t}\n\n\t\tif (isminw && cw) {\n\t\t\tdata.left = dw - o.minWidth;\n\t\t}\n\t\tif (ismaxw && cw) {\n\t\t\tdata.left = dw - o.maxWidth;\n\t\t}\n\t\tif (isminh && ch) {\n\t\t\tdata.top = dh - o.minHeight;\n\t\t}\n\t\tif (ismaxh && ch) {\n\t\t\tdata.top = dh - o.maxHeight;\n\t\t}\n\n\t\t// Fixing jump error on top/left - bug #2330\n\t\tif (!data.width && !data.height && !data.left && data.top) {\n\t\t\tdata.top = null;\n\t\t} else if (!data.width && !data.height && !data.top && data.left) {\n\t\t\tdata.left = null;\n\t\t}\n\n\t\treturn data;\n\t},\n\n\t_getPaddingPlusBorderDimensions: function( element ) {\n\t\tvar i = 0,\n\t\t\twidths = [],\n\t\t\tborders = [\n\t\t\t\telement.css( \"borderTopWidth\" ),\n\t\t\t\telement.css( \"borderRightWidth\" ),\n\t\t\t\telement.css( \"borderBottomWidth\" ),\n\t\t\t\telement.css( \"borderLeftWidth\" )\n\t\t\t],\n\t\t\tpaddings = [\n\t\t\t\telement.css( \"paddingTop\" ),\n\t\t\t\telement.css( \"paddingRight\" ),\n\t\t\t\telement.css( \"paddingBottom\" ),\n\t\t\t\telement.css( \"paddingLeft\" )\n\t\t\t];\n\n\t\tfor ( ; i < 4; i++ ) {\n\t\t\twidths[ i ] = ( parseInt( borders[ i ], 10 ) || 0 );\n\t\t\twidths[ i ] += ( parseInt( paddings[ i ], 10 ) || 0 );\n\t\t}\n\n\t\treturn {\n\t\t\theight: widths[ 0 ] + widths[ 2 ],\n\t\t\twidth: widths[ 1 ] + widths[ 3 ]\n\t\t};\n\t},\n\n\t_proportionallyResize: function() {\n\n\t\tif (!this._proportionallyResizeElements.length) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar prel,\n\t\t\ti = 0,\n\t\t\telement = this.helper || this.element;\n\n\t\tfor ( ; i < this._proportionallyResizeElements.length; i++) {\n\n\t\t\tprel = this._proportionallyResizeElements[i];\n\n\t\t\t// TODO: Seems like a bug to cache this.outerDimensions\n\t\t\t// considering that we are in a loop.\n\t\t\tif (!this.outerDimensions) {\n\t\t\t\tthis.outerDimensions = this._getPaddingPlusBorderDimensions( prel );\n\t\t\t}\n\n\t\t\tprel.css({\n\t\t\t\theight: (element.height() - this.outerDimensions.height) || 0,\n\t\t\t\twidth: (element.width() - this.outerDimensions.width) || 0\n\t\t\t});\n\n\t\t}\n\n\t},\n\n\t_renderProxy: function() {\n\n\t\tvar el = this.element, o = this.options;\n\t\tthis.elementOffset = el.offset();\n\n\t\tif (this._helper) {\n\n\t\t\tthis.helper = this.helper || $(\"<div style='overflow:hidden;'></div>\");\n\n\t\t\tthis.helper.addClass(this._helper).css({\n\t\t\t\twidth: this.element.outerWidth() - 1,\n\t\t\t\theight: this.element.outerHeight() - 1,\n\t\t\t\tposition: \"absolute\",\n\t\t\t\tleft: this.elementOffset.left + \"px\",\n\t\t\t\ttop: this.elementOffset.top + \"px\",\n\t\t\t\tzIndex: ++o.zIndex //TODO: Don't modify option\n\t\t\t});\n\n\t\t\tthis.helper\n\t\t\t\t.appendTo(\"body\")\n\t\t\t\t.disableSelection();\n\n\t\t} else {\n\t\t\tthis.helper = this.element;\n\t\t}\n\n\t},\n\n\t_change: {\n\t\te: function(event, dx) {\n\t\t\treturn { width: this.originalSize.width + dx };\n\t\t},\n\t\tw: function(event, dx) {\n\t\t\tvar cs = this.originalSize, sp = this.originalPosition;\n\t\t\treturn { left: sp.left + dx, width: cs.width - dx };\n\t\t},\n\t\tn: function(event, dx, dy) {\n\t\t\tvar cs = this.originalSize, sp = this.originalPosition;\n\t\t\treturn { top: sp.top + dy, height: cs.height - dy };\n\t\t},\n\t\ts: function(event, dx, dy) {\n\t\t\treturn { height: this.originalSize.height + dy };\n\t\t},\n\t\tse: function(event, dx, dy) {\n\t\t\treturn $.extend(this._change.s.apply(this, arguments),\n\t\t\t\tthis._change.e.apply(this, [ event, dx, dy ]));\n\t\t},\n\t\tsw: function(event, dx, dy) {\n\t\t\treturn $.extend(this._change.s.apply(this, arguments),\n\t\t\t\tthis._change.w.apply(this, [ event, dx, dy ]));\n\t\t},\n\t\tne: function(event, dx, dy) {\n\t\t\treturn $.extend(this._change.n.apply(this, arguments),\n\t\t\t\tthis._change.e.apply(this, [ event, dx, dy ]));\n\t\t},\n\t\tnw: function(event, dx, dy) {\n\t\t\treturn $.extend(this._change.n.apply(this, arguments),\n\t\t\t\tthis._change.w.apply(this, [ event, dx, dy ]));\n\t\t}\n\t},\n\n\t_propagate: function(n, event) {\n\t\t$.ui.plugin.call(this, n, [ event, this.ui() ]);\n\t\t(n !== \"resize\" && this._trigger(n, event, this.ui()));\n\t},\n\n\tplugins: {},\n\n\tui: function() {\n\t\treturn {\n\t\t\toriginalElement: this.originalElement,\n\t\t\telement: this.element,\n\t\t\thelper: this.helper,\n\t\t\tposition: this.position,\n\t\t\tsize: this.size,\n\t\t\toriginalSize: this.originalSize,\n\t\t\toriginalPosition: this.originalPosition\n\t\t};\n\t}\n\n});\n\n/*\n * Resizable Extensions\n */\n\n$.ui.plugin.add(\"resizable\", \"animate\", {\n\n\tstop: function( event ) {\n\t\tvar that = $(this).resizable( \"instance\" ),\n\t\t\to = that.options,\n\t\t\tpr = that._proportionallyResizeElements,\n\t\t\tista = pr.length && (/textarea/i).test(pr[0].nodeName),\n\t\t\tsoffseth = ista && that._hasScroll(pr[0], \"left\") ? 0 : that.sizeDiff.height,\n\t\t\tsoffsetw = ista ? 0 : that.sizeDiff.width,\n\t\t\tstyle = { width: (that.size.width - soffsetw), height: (that.size.height - soffseth) },\n\t\t\tleft = (parseInt(that.element.css(\"left\"), 10) +\n\t\t\t\t(that.position.left - that.originalPosition.left)) || null,\n\t\t\ttop = (parseInt(that.element.css(\"top\"), 10) +\n\t\t\t\t(that.position.top - that.originalPosition.top)) || null;\n\n\t\tthat.element.animate(\n\t\t\t$.extend(style, top && left ? { top: top, left: left } : {}), {\n\t\t\t\tduration: o.animateDuration,\n\t\t\t\teasing: o.animateEasing,\n\t\t\t\tstep: function() {\n\n\t\t\t\t\tvar data = {\n\t\t\t\t\t\twidth: parseInt(that.element.css(\"width\"), 10),\n\t\t\t\t\t\theight: parseInt(that.element.css(\"height\"), 10),\n\t\t\t\t\t\ttop: parseInt(that.element.css(\"top\"), 10),\n\t\t\t\t\t\tleft: parseInt(that.element.css(\"left\"), 10)\n\t\t\t\t\t};\n\n\t\t\t\t\tif (pr && pr.length) {\n\t\t\t\t\t\t$(pr[0]).css({ width: data.width, height: data.height });\n\t\t\t\t\t}\n\n\t\t\t\t\t// propagating resize, and updating values for each animation step\n\t\t\t\t\tthat._updateCache(data);\n\t\t\t\t\tthat._propagate(\"resize\", event);\n\n\t\t\t\t}\n\t\t\t}\n\t\t);\n\t}\n\n});\n\n$.ui.plugin.add( \"resizable\", \"containment\", {\n\n\tstart: function() {\n\t\tvar element, p, co, ch, cw, width, height,\n\t\t\tthat = $( this ).resizable( \"instance\" ),\n\t\t\to = that.options,\n\t\t\tel = that.element,\n\t\t\toc = o.containment,\n\t\t\tce = ( oc instanceof $ ) ? oc.get( 0 ) : ( /parent/.test( oc ) ) ? el.parent().get( 0 ) : oc;\n\n\t\tif ( !ce ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthat.containerElement = $( ce );\n\n\t\tif ( /document/.test( oc ) || oc === document ) {\n\t\t\tthat.containerOffset = {\n\t\t\t\tleft: 0,\n\t\t\t\ttop: 0\n\t\t\t};\n\t\t\tthat.containerPosition = {\n\t\t\t\tleft: 0,\n\t\t\t\ttop: 0\n\t\t\t};\n\n\t\t\tthat.parentData = {\n\t\t\t\telement: $( document ),\n\t\t\t\tleft: 0,\n\t\t\t\ttop: 0,\n\t\t\t\twidth: $( document ).width(),\n\t\t\t\theight: $( document ).height() || document.body.parentNode.scrollHeight\n\t\t\t};\n\t\t} else {\n\t\t\telement = $( ce );\n\t\t\tp = [];\n\t\t\t$([ \"Top\", \"Right\", \"Left\", \"Bottom\" ]).each(function( i, name ) {\n\t\t\t\tp[ i ] = that._num( element.css( \"padding\" + name ) );\n\t\t\t});\n\n\t\t\tthat.containerOffset = element.offset();\n\t\t\tthat.containerPosition = element.position();\n\t\t\tthat.containerSize = {\n\t\t\t\theight: ( element.innerHeight() - p[ 3 ] ),\n\t\t\t\twidth: ( element.innerWidth() - p[ 1 ] )\n\t\t\t};\n\n\t\t\tco = that.containerOffset;\n\t\t\tch = that.containerSize.height;\n\t\t\tcw = that.containerSize.width;\n\t\t\twidth = ( that._hasScroll ( ce, \"left\" ) ? ce.scrollWidth : cw );\n\t\t\theight = ( that._hasScroll ( ce ) ? ce.scrollHeight : ch ) ;\n\n\t\t\tthat.parentData = {\n\t\t\t\telement: ce,\n\t\t\t\tleft: co.left,\n\t\t\t\ttop: co.top,\n\t\t\t\twidth: width,\n\t\t\t\theight: height\n\t\t\t};\n\t\t}\n\t},\n\n\tresize: function( event ) {\n\t\tvar woset, hoset, isParent, isOffsetRelative,\n\t\t\tthat = $( this ).resizable( \"instance\" ),\n\t\t\to = that.options,\n\t\t\tco = that.containerOffset,\n\t\t\tcp = that.position,\n\t\t\tpRatio = that._aspectRatio || event.shiftKey,\n\t\t\tcop = {\n\t\t\t\ttop: 0,\n\t\t\t\tleft: 0\n\t\t\t},\n\t\t\tce = that.containerElement,\n\t\t\tcontinueResize = true;\n\n\t\tif ( ce[ 0 ] !== document && ( /static/ ).test( ce.css( \"position\" ) ) ) {\n\t\t\tcop = co;\n\t\t}\n\n\t\tif ( cp.left < ( that._helper ? co.left : 0 ) ) {\n\t\t\tthat.size.width = that.size.width +\n\t\t\t\t( that._helper ?\n\t\t\t\t\t( that.position.left - co.left ) :\n\t\t\t\t\t( that.position.left - cop.left ) );\n\n\t\t\tif ( pRatio ) {\n\t\t\t\tthat.size.height = that.size.width / that.aspectRatio;\n\t\t\t\tcontinueResize = false;\n\t\t\t}\n\t\t\tthat.position.left = o.helper ? co.left : 0;\n\t\t}\n\n\t\tif ( cp.top < ( that._helper ? co.top : 0 ) ) {\n\t\t\tthat.size.height = that.size.height +\n\t\t\t\t( that._helper ?\n\t\t\t\t\t( that.position.top - co.top ) :\n\t\t\t\t\tthat.position.top );\n\n\t\t\tif ( pRatio ) {\n\t\t\t\tthat.size.width = that.size.height * that.aspectRatio;\n\t\t\t\tcontinueResize = false;\n\t\t\t}\n\t\t\tthat.position.top = that._helper ? co.top : 0;\n\t\t}\n\n\t\tisParent = that.containerElement.get( 0 ) === that.element.parent().get( 0 );\n\t\tisOffsetRelative = /relative|absolute/.test( that.containerElement.css( \"position\" ) );\n\n\t\tif ( isParent && isOffsetRelative ) {\n\t\t\tthat.offset.left = that.parentData.left + that.position.left;\n\t\t\tthat.offset.top = that.parentData.top + that.position.top;\n\t\t} else {\n\t\t\tthat.offset.left = that.element.offset().left;\n\t\t\tthat.offset.top = that.element.offset().top;\n\t\t}\n\n\t\twoset = Math.abs( that.sizeDiff.width +\n\t\t\t(that._helper ?\n\t\t\t\tthat.offset.left - cop.left :\n\t\t\t\t(that.offset.left - co.left)) );\n\n\t\thoset = Math.abs( that.sizeDiff.height +\n\t\t\t(that._helper ?\n\t\t\t\tthat.offset.top - cop.top :\n\t\t\t\t(that.offset.top - co.top)) );\n\n\t\tif ( woset + that.size.width >= that.parentData.width ) {\n\t\t\tthat.size.width = that.parentData.width - woset;\n\t\t\tif ( pRatio ) {\n\t\t\t\tthat.size.height = that.size.width / that.aspectRatio;\n\t\t\t\tcontinueResize = false;\n\t\t\t}\n\t\t}\n\n\t\tif ( hoset + that.size.height >= that.parentData.height ) {\n\t\t\tthat.size.height = that.parentData.height - hoset;\n\t\t\tif ( pRatio ) {\n\t\t\t\tthat.size.width = that.size.height * that.aspectRatio;\n\t\t\t\tcontinueResize = false;\n\t\t\t}\n\t\t}\n\n\t\tif ( !continueResize ) {\n\t\t\tthat.position.left = that.prevPosition.left;\n\t\t\tthat.position.top = that.prevPosition.top;\n\t\t\tthat.size.width = that.prevSize.width;\n\t\t\tthat.size.height = that.prevSize.height;\n\t\t}\n\t},\n\n\tstop: function() {\n\t\tvar that = $( this ).resizable( \"instance\" ),\n\t\t\to = that.options,\n\t\t\tco = that.containerOffset,\n\t\t\tcop = that.containerPosition,\n\t\t\tce = that.containerElement,\n\t\t\thelper = $( that.helper ),\n\t\t\tho = helper.offset(),\n\t\t\tw = helper.outerWidth() - that.sizeDiff.width,\n\t\t\th = helper.outerHeight() - that.sizeDiff.height;\n\n\t\tif ( that._helper && !o.animate && ( /relative/ ).test( ce.css( \"position\" ) ) ) {\n\t\t\t$( this ).css({\n\t\t\t\tleft: ho.left - cop.left - co.left,\n\t\t\t\twidth: w,\n\t\t\t\theight: h\n\t\t\t});\n\t\t}\n\n\t\tif ( that._helper && !o.animate && ( /static/ ).test( ce.css( \"position\" ) ) ) {\n\t\t\t$( this ).css({\n\t\t\t\tleft: ho.left - cop.left - co.left,\n\t\t\t\twidth: w,\n\t\t\t\theight: h\n\t\t\t});\n\t\t}\n\t}\n});\n\n$.ui.plugin.add(\"resizable\", \"alsoResize\", {\n\n\tstart: function() {\n\t\tvar that = $(this).resizable( \"instance\" ),\n\t\t\to = that.options;\n\n\t\t$(o.alsoResize).each(function() {\n\t\t\tvar el = $(this);\n\t\t\tel.data(\"ui-resizable-alsoresize\", {\n\t\t\t\twidth: parseInt(el.width(), 10), height: parseInt(el.height(), 10),\n\t\t\t\tleft: parseInt(el.css(\"left\"), 10), top: parseInt(el.css(\"top\"), 10)\n\t\t\t});\n\t\t});\n\t},\n\n\tresize: function(event, ui) {\n\t\tvar that = $(this).resizable( \"instance\" ),\n\t\t\to = that.options,\n\t\t\tos = that.originalSize,\n\t\t\top = that.originalPosition,\n\t\t\tdelta = {\n\t\t\t\theight: (that.size.height - os.height) || 0,\n\t\t\t\twidth: (that.size.width - os.width) || 0,\n\t\t\t\ttop: (that.position.top - op.top) || 0,\n\t\t\t\tleft: (that.position.left - op.left) || 0\n\t\t\t};\n\n\t\t\t$(o.alsoResize).each(function() {\n\t\t\t\tvar el = $(this), start = $(this).data(\"ui-resizable-alsoresize\"), style = {},\n\t\t\t\t\tcss = el.parents(ui.originalElement[0]).length ?\n\t\t\t\t\t\t\t[ \"width\", \"height\" ] :\n\t\t\t\t\t\t\t[ \"width\", \"height\", \"top\", \"left\" ];\n\n\t\t\t\t$.each(css, function(i, prop) {\n\t\t\t\t\tvar sum = (start[prop] || 0) + (delta[prop] || 0);\n\t\t\t\t\tif (sum && sum >= 0) {\n\t\t\t\t\t\tstyle[prop] = sum || null;\n\t\t\t\t\t}\n\t\t\t\t});\n\n\t\t\t\tel.css(style);\n\t\t\t});\n\t},\n\n\tstop: function() {\n\t\t$(this).removeData(\"resizable-alsoresize\");\n\t}\n});\n\n$.ui.plugin.add(\"resizable\", \"ghost\", {\n\n\tstart: function() {\n\n\t\tvar that = $(this).resizable( \"instance\" ), o = that.options, cs = that.size;\n\n\t\tthat.ghost = that.originalElement.clone();\n\t\tthat.ghost\n\t\t\t.css({\n\t\t\t\topacity: 0.25,\n\t\t\t\tdisplay: \"block\",\n\t\t\t\tposition: \"relative\",\n\t\t\t\theight: cs.height,\n\t\t\t\twidth: cs.width,\n\t\t\t\tmargin: 0,\n\t\t\t\tleft: 0,\n\t\t\t\ttop: 0\n\t\t\t})\n\t\t\t.addClass(\"ui-resizable-ghost\")\n\t\t\t.addClass(typeof o.ghost === \"string\" ? o.ghost : \"\");\n\n\t\tthat.ghost.appendTo(that.helper);\n\n\t},\n\n\tresize: function() {\n\t\tvar that = $(this).resizable( \"instance\" );\n\t\tif (that.ghost) {\n\t\t\tthat.ghost.css({\n\t\t\t\tposition: \"relative\",\n\t\t\t\theight: that.size.height,\n\t\t\t\twidth: that.size.width\n\t\t\t});\n\t\t}\n\t},\n\n\tstop: function() {\n\t\tvar that = $(this).resizable( \"instance\" );\n\t\tif (that.ghost && that.helper) {\n\t\t\tthat.helper.get(0).removeChild(that.ghost.get(0));\n\t\t}\n\t}\n\n});\n\n$.ui.plugin.add(\"resizable\", \"grid\", {\n\n\tresize: function() {\n\t\tvar outerDimensions,\n\t\t\tthat = $(this).resizable( \"instance\" ),\n\t\t\to = that.options,\n\t\t\tcs = that.size,\n\t\t\tos = that.originalSize,\n\t\t\top = that.originalPosition,\n\t\t\ta = that.axis,\n\t\t\tgrid = typeof o.grid === \"number\" ? [ o.grid, o.grid ] : o.grid,\n\t\t\tgridX = (grid[0] || 1),\n\t\t\tgridY = (grid[1] || 1),\n\t\t\tox = Math.round((cs.width - os.width) / gridX) * gridX,\n\t\t\toy = Math.round((cs.height - os.height) / gridY) * gridY,\n\t\t\tnewWidth = os.width + ox,\n\t\t\tnewHeight = os.height + oy,\n\t\t\tisMaxWidth = o.maxWidth && (o.maxWidth < newWidth),\n\t\t\tisMaxHeight = o.maxHeight && (o.maxHeight < newHeight),\n\t\t\tisMinWidth = o.minWidth && (o.minWidth > newWidth),\n\t\t\tisMinHeight = o.minHeight && (o.minHeight > newHeight);\n\n\t\to.grid = grid;\n\n\t\tif (isMinWidth) {\n\t\t\tnewWidth += gridX;\n\t\t}\n\t\tif (isMinHeight) {\n\t\t\tnewHeight += gridY;\n\t\t}\n\t\tif (isMaxWidth) {\n\t\t\tnewWidth -= gridX;\n\t\t}\n\t\tif (isMaxHeight) {\n\t\t\tnewHeight -= gridY;\n\t\t}\n\n\t\tif (/^(se|s|e)$/.test(a)) {\n\t\t\tthat.size.width = newWidth;\n\t\t\tthat.size.height = newHeight;\n\t\t} else if (/^(ne)$/.test(a)) {\n\t\t\tthat.size.width = newWidth;\n\t\t\tthat.size.height = newHeight;\n\t\t\tthat.position.top = op.top - oy;\n\t\t} else if (/^(sw)$/.test(a)) {\n\t\t\tthat.size.width = newWidth;\n\t\t\tthat.size.height = newHeight;\n\t\t\tthat.position.left = op.left - ox;\n\t\t} else {\n\t\t\tif ( newHeight - gridY <= 0 || newWidth - gridX <= 0) {\n\t\t\t\touterDimensions = that._getPaddingPlusBorderDimensions( this );\n\t\t\t}\n\n\t\t\tif ( newHeight - gridY > 0 ) {\n\t\t\t\tthat.size.height = newHeight;\n\t\t\t\tthat.position.top = op.top - oy;\n\t\t\t} else {\n\t\t\t\tnewHeight = gridY - outerDimensions.height;\n\t\t\t\tthat.size.height = newHeight;\n\t\t\t\tthat.position.top = op.top + os.height - newHeight;\n\t\t\t}\n\t\t\tif ( newWidth - gridX > 0 ) {\n\t\t\t\tthat.size.width = newWidth;\n\t\t\t\tthat.position.left = op.left - ox;\n\t\t\t} else {\n\t\t\t\tnewWidth = gridX - outerDimensions.width;\n\t\t\t\tthat.size.width = newWidth;\n\t\t\t\tthat.position.left = op.left + os.width - newWidth;\n\t\t\t}\n\t\t}\n\t}\n\n});\n\nvar resizable = $.ui.resizable;\n\n\n/*!\n * jQuery UI Selectable 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/selectable/\n */\n\n\nvar selectable = $.widget(\"ui.selectable\", $.ui.mouse, {\n\tversion: \"1.11.4\",\n\toptions: {\n\t\tappendTo: \"body\",\n\t\tautoRefresh: true,\n\t\tdistance: 0,\n\t\tfilter: \"*\",\n\t\ttolerance: \"touch\",\n\n\t\t// callbacks\n\t\tselected: null,\n\t\tselecting: null,\n\t\tstart: null,\n\t\tstop: null,\n\t\tunselected: null,\n\t\tunselecting: null\n\t},\n\t_create: function() {\n\t\tvar selectees,\n\t\t\tthat = this;\n\n\t\tthis.element.addClass(\"ui-selectable\");\n\n\t\tthis.dragged = false;\n\n\t\t// cache selectee children based on filter\n\t\tthis.refresh = function() {\n\t\t\tselectees = $(that.options.filter, that.element[0]);\n\t\t\tselectees.addClass(\"ui-selectee\");\n\t\t\tselectees.each(function() {\n\t\t\t\tvar $this = $(this),\n\t\t\t\t\tpos = $this.offset();\n\t\t\t\t$.data(this, \"selectable-item\", {\n\t\t\t\t\telement: this,\n\t\t\t\t\t$element: $this,\n\t\t\t\t\tleft: pos.left,\n\t\t\t\t\ttop: pos.top,\n\t\t\t\t\tright: pos.left + $this.outerWidth(),\n\t\t\t\t\tbottom: pos.top + $this.outerHeight(),\n\t\t\t\t\tstartselected: false,\n\t\t\t\t\tselected: $this.hasClass(\"ui-selected\"),\n\t\t\t\t\tselecting: $this.hasClass(\"ui-selecting\"),\n\t\t\t\t\tunselecting: $this.hasClass(\"ui-unselecting\")\n\t\t\t\t});\n\t\t\t});\n\t\t};\n\t\tthis.refresh();\n\n\t\tthis.selectees = selectees.addClass(\"ui-selectee\");\n\n\t\tthis._mouseInit();\n\n\t\tthis.helper = $(\"<div class='ui-selectable-helper'></div>\");\n\t},\n\n\t_destroy: function() {\n\t\tthis.selectees\n\t\t\t.removeClass(\"ui-selectee\")\n\t\t\t.removeData(\"selectable-item\");\n\t\tthis.element\n\t\t\t.removeClass(\"ui-selectable ui-selectable-disabled\");\n\t\tthis._mouseDestroy();\n\t},\n\n\t_mouseStart: function(event) {\n\t\tvar that = this,\n\t\t\toptions = this.options;\n\n\t\tthis.opos = [ event.pageX, event.pageY ];\n\n\t\tif (this.options.disabled) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.selectees = $(options.filter, this.element[0]);\n\n\t\tthis._trigger(\"start\", event);\n\n\t\t$(options.appendTo).append(this.helper);\n\t\t// position helper (lasso)\n\t\tthis.helper.css({\n\t\t\t\"left\": event.pageX,\n\t\t\t\"top\": event.pageY,\n\t\t\t\"width\": 0,\n\t\t\t\"height\": 0\n\t\t});\n\n\t\tif (options.autoRefresh) {\n\t\t\tthis.refresh();\n\t\t}\n\n\t\tthis.selectees.filter(\".ui-selected\").each(function() {\n\t\t\tvar selectee = $.data(this, \"selectable-item\");\n\t\t\tselectee.startselected = true;\n\t\t\tif (!event.metaKey && !event.ctrlKey) {\n\t\t\t\tselectee.$element.removeClass(\"ui-selected\");\n\t\t\t\tselectee.selected = false;\n\t\t\t\tselectee.$element.addClass(\"ui-unselecting\");\n\t\t\t\tselectee.unselecting = true;\n\t\t\t\t// selectable UNSELECTING callback\n\t\t\t\tthat._trigger(\"unselecting\", event, {\n\t\t\t\t\tunselecting: selectee.element\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\n\t\t$(event.target).parents().addBack().each(function() {\n\t\t\tvar doSelect,\n\t\t\t\tselectee = $.data(this, \"selectable-item\");\n\t\t\tif (selectee) {\n\t\t\t\tdoSelect = (!event.metaKey && !event.ctrlKey) || !selectee.$element.hasClass(\"ui-selected\");\n\t\t\t\tselectee.$element\n\t\t\t\t\t.removeClass(doSelect ? \"ui-unselecting\" : \"ui-selected\")\n\t\t\t\t\t.addClass(doSelect ? \"ui-selecting\" : \"ui-unselecting\");\n\t\t\t\tselectee.unselecting = !doSelect;\n\t\t\t\tselectee.selecting = doSelect;\n\t\t\t\tselectee.selected = doSelect;\n\t\t\t\t// selectable (UN)SELECTING callback\n\t\t\t\tif (doSelect) {\n\t\t\t\t\tthat._trigger(\"selecting\", event, {\n\t\t\t\t\t\tselecting: selectee.element\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\tthat._trigger(\"unselecting\", event, {\n\t\t\t\t\t\tunselecting: selectee.element\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t}\n\t\t});\n\n\t},\n\n\t_mouseDrag: function(event) {\n\n\t\tthis.dragged = true;\n\n\t\tif (this.options.disabled) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar tmp,\n\t\t\tthat = this,\n\t\t\toptions = this.options,\n\t\t\tx1 = this.opos[0],\n\t\t\ty1 = this.opos[1],\n\t\t\tx2 = event.pageX,\n\t\t\ty2 = event.pageY;\n\n\t\tif (x1 > x2) { tmp = x2; x2 = x1; x1 = tmp; }\n\t\tif (y1 > y2) { tmp = y2; y2 = y1; y1 = tmp; }\n\t\tthis.helper.css({ left: x1, top: y1, width: x2 - x1, height: y2 - y1 });\n\n\t\tthis.selectees.each(function() {\n\t\t\tvar selectee = $.data(this, \"selectable-item\"),\n\t\t\t\thit = false;\n\n\t\t\t//prevent helper from being selected if appendTo: selectable\n\t\t\tif (!selectee || selectee.element === that.element[0]) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif (options.tolerance === \"touch\") {\n\t\t\t\thit = ( !(selectee.left > x2 || selectee.right < x1 || selectee.top > y2 || selectee.bottom < y1) );\n\t\t\t} else if (options.tolerance === \"fit\") {\n\t\t\t\thit = (selectee.left > x1 && selectee.right < x2 && selectee.top > y1 && selectee.bottom < y2);\n\t\t\t}\n\n\t\t\tif (hit) {\n\t\t\t\t// SELECT\n\t\t\t\tif (selectee.selected) {\n\t\t\t\t\tselectee.$element.removeClass(\"ui-selected\");\n\t\t\t\t\tselectee.selected = false;\n\t\t\t\t}\n\t\t\t\tif (selectee.unselecting) {\n\t\t\t\t\tselectee.$element.removeClass(\"ui-unselecting\");\n\t\t\t\t\tselectee.unselecting = false;\n\t\t\t\t}\n\t\t\t\tif (!selectee.selecting) {\n\t\t\t\t\tselectee.$element.addClass(\"ui-selecting\");\n\t\t\t\t\tselectee.selecting = true;\n\t\t\t\t\t// selectable SELECTING callback\n\t\t\t\t\tthat._trigger(\"selecting\", event, {\n\t\t\t\t\t\tselecting: selectee.element\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// UNSELECT\n\t\t\t\tif (selectee.selecting) {\n\t\t\t\t\tif ((event.metaKey || event.ctrlKey) && selectee.startselected) {\n\t\t\t\t\t\tselectee.$element.removeClass(\"ui-selecting\");\n\t\t\t\t\t\tselectee.selecting = false;\n\t\t\t\t\t\tselectee.$element.addClass(\"ui-selected\");\n\t\t\t\t\t\tselectee.selected = true;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tselectee.$element.removeClass(\"ui-selecting\");\n\t\t\t\t\t\tselectee.selecting = false;\n\t\t\t\t\t\tif (selectee.startselected) {\n\t\t\t\t\t\t\tselectee.$element.addClass(\"ui-unselecting\");\n\t\t\t\t\t\t\tselectee.unselecting = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// selectable UNSELECTING callback\n\t\t\t\t\t\tthat._trigger(\"unselecting\", event, {\n\t\t\t\t\t\t\tunselecting: selectee.element\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (selectee.selected) {\n\t\t\t\t\tif (!event.metaKey && !event.ctrlKey && !selectee.startselected) {\n\t\t\t\t\t\tselectee.$element.removeClass(\"ui-selected\");\n\t\t\t\t\t\tselectee.selected = false;\n\n\t\t\t\t\t\tselectee.$element.addClass(\"ui-unselecting\");\n\t\t\t\t\t\tselectee.unselecting = true;\n\t\t\t\t\t\t// selectable UNSELECTING callback\n\t\t\t\t\t\tthat._trigger(\"unselecting\", event, {\n\t\t\t\t\t\t\tunselecting: selectee.element\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\treturn false;\n\t},\n\n\t_mouseStop: function(event) {\n\t\tvar that = this;\n\n\t\tthis.dragged = false;\n\n\t\t$(\".ui-unselecting\", this.element[0]).each(function() {\n\t\t\tvar selectee = $.data(this, \"selectable-item\");\n\t\t\tselectee.$element.removeClass(\"ui-unselecting\");\n\t\t\tselectee.unselecting = false;\n\t\t\tselectee.startselected = false;\n\t\t\tthat._trigger(\"unselected\", event, {\n\t\t\t\tunselected: selectee.element\n\t\t\t});\n\t\t});\n\t\t$(\".ui-selecting\", this.element[0]).each(function() {\n\t\t\tvar selectee = $.data(this, \"selectable-item\");\n\t\t\tselectee.$element.removeClass(\"ui-selecting\").addClass(\"ui-selected\");\n\t\t\tselectee.selecting = false;\n\t\t\tselectee.selected = true;\n\t\t\tselectee.startselected = true;\n\t\t\tthat._trigger(\"selected\", event, {\n\t\t\t\tselected: selectee.element\n\t\t\t});\n\t\t});\n\t\tthis._trigger(\"stop\", event);\n\n\t\tthis.helper.remove();\n\n\t\treturn false;\n\t}\n\n});\n\n\n/*!\n * jQuery UI Sortable 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/sortable/\n */\n\n\nvar sortable = $.widget(\"ui.sortable\", $.ui.mouse, {\n\tversion: \"1.11.4\",\n\twidgetEventPrefix: \"sort\",\n\tready: false,\n\toptions: {\n\t\tappendTo: \"parent\",\n\t\taxis: false,\n\t\tconnectWith: false,\n\t\tcontainment: false,\n\t\tcursor: \"auto\",\n\t\tcursorAt: false,\n\t\tdropOnEmpty: true,\n\t\tforcePlaceholderSize: false,\n\t\tforceHelperSize: false,\n\t\tgrid: false,\n\t\thandle: false,\n\t\thelper: \"original\",\n\t\titems: \"> *\",\n\t\topacity: false,\n\t\tplaceholder: false,\n\t\trevert: false,\n\t\tscroll: true,\n\t\tscrollSensitivity: 20,\n\t\tscrollSpeed: 20,\n\t\tscope: \"default\",\n\t\ttolerance: \"intersect\",\n\t\tzIndex: 1000,\n\n\t\t// callbacks\n\t\tactivate: null,\n\t\tbeforeStop: null,\n\t\tchange: null,\n\t\tdeactivate: null,\n\t\tout: null,\n\t\tover: null,\n\t\treceive: null,\n\t\tremove: null,\n\t\tsort: null,\n\t\tstart: null,\n\t\tstop: null,\n\t\tupdate: null\n\t},\n\n\t_isOverAxis: function( x, reference, size ) {\n\t\treturn ( x >= reference ) && ( x < ( reference + size ) );\n\t},\n\n\t_isFloating: function( item ) {\n\t\treturn (/left|right/).test(item.css(\"float\")) || (/inline|table-cell/).test(item.css(\"display\"));\n\t},\n\n\t_create: function() {\n\t\tthis.containerCache = {};\n\t\tthis.element.addClass(\"ui-sortable\");\n\n\t\t//Get the items\n\t\tthis.refresh();\n\n\t\t//Let's determine the parent's offset\n\t\tthis.offset = this.element.offset();\n\n\t\t//Initialize mouse events for interaction\n\t\tthis._mouseInit();\n\n\t\tthis._setHandleClassName();\n\n\t\t//We're ready to go\n\t\tthis.ready = true;\n\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tthis._super( key, value );\n\n\t\tif ( key === \"handle\" ) {\n\t\t\tthis._setHandleClassName();\n\t\t}\n\t},\n\n\t_setHandleClassName: function() {\n\t\tthis.element.find( \".ui-sortable-handle\" ).removeClass( \"ui-sortable-handle\" );\n\t\t$.each( this.items, function() {\n\t\t\t( this.instance.options.handle ?\n\t\t\t\tthis.item.find( this.instance.options.handle ) : this.item )\n\t\t\t\t.addClass( \"ui-sortable-handle\" );\n\t\t});\n\t},\n\n\t_destroy: function() {\n\t\tthis.element\n\t\t\t.removeClass( \"ui-sortable ui-sortable-disabled\" )\n\t\t\t.find( \".ui-sortable-handle\" )\n\t\t\t\t.removeClass( \"ui-sortable-handle\" );\n\t\tthis._mouseDestroy();\n\n\t\tfor ( var i = this.items.length - 1; i >= 0; i-- ) {\n\t\t\tthis.items[i].item.removeData(this.widgetName + \"-item\");\n\t\t}\n\n\t\treturn this;\n\t},\n\n\t_mouseCapture: function(event, overrideHandle) {\n\t\tvar currentItem = null,\n\t\t\tvalidHandle = false,\n\t\t\tthat = this;\n\n\t\tif (this.reverting) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif(this.options.disabled || this.options.type === \"static\") {\n\t\t\treturn false;\n\t\t}\n\n\t\t//We have to refresh the items data once first\n\t\tthis._refreshItems(event);\n\n\t\t//Find out if the clicked node (or one of its parents) is a actual item in this.items\n\t\t$(event.target).parents().each(function() {\n\t\t\tif($.data(this, that.widgetName + \"-item\") === that) {\n\t\t\t\tcurrentItem = $(this);\n\t\t\t\treturn false;\n\t\t\t}\n\t\t});\n\t\tif($.data(event.target, that.widgetName + \"-item\") === that) {\n\t\t\tcurrentItem = $(event.target);\n\t\t}\n\n\t\tif(!currentItem) {\n\t\t\treturn false;\n\t\t}\n\t\tif(this.options.handle && !overrideHandle) {\n\t\t\t$(this.options.handle, currentItem).find(\"*\").addBack().each(function() {\n\t\t\t\tif(this === event.target) {\n\t\t\t\t\tvalidHandle = true;\n\t\t\t\t}\n\t\t\t});\n\t\t\tif(!validHandle) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\n\t\tthis.currentItem = currentItem;\n\t\tthis._removeCurrentsFromItems();\n\t\treturn true;\n\n\t},\n\n\t_mouseStart: function(event, overrideHandle, noActivation) {\n\n\t\tvar i, body,\n\t\t\to = this.options;\n\n\t\tthis.currentContainer = this;\n\n\t\t//We only need to call refreshPositions, because the refreshItems call has been moved to mouseCapture\n\t\tthis.refreshPositions();\n\n\t\t//Create and append the visible helper\n\t\tthis.helper = this._createHelper(event);\n\n\t\t//Cache the helper size\n\t\tthis._cacheHelperProportions();\n\n\t\t/*\n\t\t * - Position generation -\n\t\t * This block generates everything position related - it's the core of draggables.\n\t\t */\n\n\t\t//Cache the margins of the original element\n\t\tthis._cacheMargins();\n\n\t\t//Get the next scrolling parent\n\t\tthis.scrollParent = this.helper.scrollParent();\n\n\t\t//The element's absolute position on the page minus margins\n\t\tthis.offset = this.currentItem.offset();\n\t\tthis.offset = {\n\t\t\ttop: this.offset.top - this.margins.top,\n\t\t\tleft: this.offset.left - this.margins.left\n\t\t};\n\n\t\t$.extend(this.offset, {\n\t\t\tclick: { //Where the click happened, relative to the element\n\t\t\t\tleft: event.pageX - this.offset.left,\n\t\t\t\ttop: event.pageY - this.offset.top\n\t\t\t},\n\t\t\tparent: this._getParentOffset(),\n\t\t\trelative: this._getRelativeOffset() //This is a relative to absolute position minus the actual position calculation - only used for relative positioned helper\n\t\t});\n\n\t\t// Only after we got the offset, we can change the helper's position to absolute\n\t\t// TODO: Still need to figure out a way to make relative sorting possible\n\t\tthis.helper.css(\"position\", \"absolute\");\n\t\tthis.cssPosition = this.helper.css(\"position\");\n\n\t\t//Generate the original position\n\t\tthis.originalPosition = this._generatePosition(event);\n\t\tthis.originalPageX = event.pageX;\n\t\tthis.originalPageY = event.pageY;\n\n\t\t//Adjust the mouse offset relative to the helper if \"cursorAt\" is supplied\n\t\t(o.cursorAt && this._adjustOffsetFromHelper(o.cursorAt));\n\n\t\t//Cache the former DOM position\n\t\tthis.domPosition = { prev: this.currentItem.prev()[0], parent: this.currentItem.parent()[0] };\n\n\t\t//If the helper is not the original, hide the original so it's not playing any role during the drag, won't cause anything bad this way\n\t\tif(this.helper[0] !== this.currentItem[0]) {\n\t\t\tthis.currentItem.hide();\n\t\t}\n\n\t\t//Create the placeholder\n\t\tthis._createPlaceholder();\n\n\t\t//Set a containment if given in the options\n\t\tif(o.containment) {\n\t\t\tthis._setContainment();\n\t\t}\n\n\t\tif( o.cursor && o.cursor !== \"auto\" ) { // cursor option\n\t\t\tbody = this.document.find( \"body\" );\n\n\t\t\t// support: IE\n\t\t\tthis.storedCursor = body.css( \"cursor\" );\n\t\t\tbody.css( \"cursor\", o.cursor );\n\n\t\t\tthis.storedStylesheet = $( \"<style>*{ cursor: \"+o.cursor+\" !important; }</style>\" ).appendTo( body );\n\t\t}\n\n\t\tif(o.opacity) { // opacity option\n\t\t\tif (this.helper.css(\"opacity\")) {\n\t\t\t\tthis._storedOpacity = this.helper.css(\"opacity\");\n\t\t\t}\n\t\t\tthis.helper.css(\"opacity\", o.opacity);\n\t\t}\n\n\t\tif(o.zIndex) { // zIndex option\n\t\t\tif (this.helper.css(\"zIndex\")) {\n\t\t\t\tthis._storedZIndex = this.helper.css(\"zIndex\");\n\t\t\t}\n\t\t\tthis.helper.css(\"zIndex\", o.zIndex);\n\t\t}\n\n\t\t//Prepare scrolling\n\t\tif(this.scrollParent[0] !== this.document[0] && this.scrollParent[0].tagName !== \"HTML\") {\n\t\t\tthis.overflowOffset = this.scrollParent.offset();\n\t\t}\n\n\t\t//Call callbacks\n\t\tthis._trigger(\"start\", event, this._uiHash());\n\n\t\t//Recache the helper size\n\t\tif(!this._preserveHelperProportions) {\n\t\t\tthis._cacheHelperProportions();\n\t\t}\n\n\n\t\t//Post \"activate\" events to possible containers\n\t\tif( !noActivation ) {\n\t\t\tfor ( i = this.containers.length - 1; i >= 0; i-- ) {\n\t\t\t\tthis.containers[ i ]._trigger( \"activate\", event, this._uiHash( this ) );\n\t\t\t}\n\t\t}\n\n\t\t//Prepare possible droppables\n\t\tif($.ui.ddmanager) {\n\t\t\t$.ui.ddmanager.current = this;\n\t\t}\n\n\t\tif ($.ui.ddmanager && !o.dropBehaviour) {\n\t\t\t$.ui.ddmanager.prepareOffsets(this, event);\n\t\t}\n\n\t\tthis.dragging = true;\n\n\t\tthis.helper.addClass(\"ui-sortable-helper\");\n\t\tthis._mouseDrag(event); //Execute the drag once - this causes the helper not to be visible before getting its correct position\n\t\treturn true;\n\n\t},\n\n\t_mouseDrag: function(event) {\n\t\tvar i, item, itemElement, intersection,\n\t\t\to = this.options,\n\t\t\tscrolled = false;\n\n\t\t//Compute the helpers position\n\t\tthis.position = this._generatePosition(event);\n\t\tthis.positionAbs = this._convertPositionTo(\"absolute\");\n\n\t\tif (!this.lastPositionAbs) {\n\t\t\tthis.lastPositionAbs = this.positionAbs;\n\t\t}\n\n\t\t//Do scrolling\n\t\tif(this.options.scroll) {\n\t\t\tif(this.scrollParent[0] !== this.document[0] && this.scrollParent[0].tagName !== \"HTML\") {\n\n\t\t\t\tif((this.overflowOffset.top + this.scrollParent[0].offsetHeight) - event.pageY < o.scrollSensitivity) {\n\t\t\t\t\tthis.scrollParent[0].scrollTop = scrolled = this.scrollParent[0].scrollTop + o.scrollSpeed;\n\t\t\t\t} else if(event.pageY - this.overflowOffset.top < o.scrollSensitivity) {\n\t\t\t\t\tthis.scrollParent[0].scrollTop = scrolled = this.scrollParent[0].scrollTop - o.scrollSpeed;\n\t\t\t\t}\n\n\t\t\t\tif((this.overflowOffset.left + this.scrollParent[0].offsetWidth) - event.pageX < o.scrollSensitivity) {\n\t\t\t\t\tthis.scrollParent[0].scrollLeft = scrolled = this.scrollParent[0].scrollLeft + o.scrollSpeed;\n\t\t\t\t} else if(event.pageX - this.overflowOffset.left < o.scrollSensitivity) {\n\t\t\t\t\tthis.scrollParent[0].scrollLeft = scrolled = this.scrollParent[0].scrollLeft - o.scrollSpeed;\n\t\t\t\t}\n\n\t\t\t} else {\n\n\t\t\t\tif(event.pageY - this.document.scrollTop() < o.scrollSensitivity) {\n\t\t\t\t\tscrolled = this.document.scrollTop(this.document.scrollTop() - o.scrollSpeed);\n\t\t\t\t} else if(this.window.height() - (event.pageY - this.document.scrollTop()) < o.scrollSensitivity) {\n\t\t\t\t\tscrolled = this.document.scrollTop(this.document.scrollTop() + o.scrollSpeed);\n\t\t\t\t}\n\n\t\t\t\tif(event.pageX - this.document.scrollLeft() < o.scrollSensitivity) {\n\t\t\t\t\tscrolled = this.document.scrollLeft(this.document.scrollLeft() - o.scrollSpeed);\n\t\t\t\t} else if(this.window.width() - (event.pageX - this.document.scrollLeft()) < o.scrollSensitivity) {\n\t\t\t\t\tscrolled = this.document.scrollLeft(this.document.scrollLeft() + o.scrollSpeed);\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\tif(scrolled !== false && $.ui.ddmanager && !o.dropBehaviour) {\n\t\t\t\t$.ui.ddmanager.prepareOffsets(this, event);\n\t\t\t}\n\t\t}\n\n\t\t//Regenerate the absolute position used for position checks\n\t\tthis.positionAbs = this._convertPositionTo(\"absolute\");\n\n\t\t//Set the helper position\n\t\tif(!this.options.axis || this.options.axis !== \"y\") {\n\t\t\tthis.helper[0].style.left = this.position.left+\"px\";\n\t\t}\n\t\tif(!this.options.axis || this.options.axis !== \"x\") {\n\t\t\tthis.helper[0].style.top = this.position.top+\"px\";\n\t\t}\n\n\t\t//Rearrange\n\t\tfor (i = this.items.length - 1; i >= 0; i--) {\n\n\t\t\t//Cache variables and intersection, continue if no intersection\n\t\t\titem = this.items[i];\n\t\t\titemElement = item.item[0];\n\t\t\tintersection = this._intersectsWithPointer(item);\n\t\t\tif (!intersection) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// Only put the placeholder inside the current Container, skip all\n\t\t\t// items from other containers. This works because when moving\n\t\t\t// an item from one container to another the\n\t\t\t// currentContainer is switched before the placeholder is moved.\n\t\t\t//\n\t\t\t// Without this, moving items in \"sub-sortables\" can cause\n\t\t\t// the placeholder to jitter between the outer and inner container.\n\t\t\tif (item.instance !== this.currentContainer) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// cannot intersect with itself\n\t\t\t// no useless actions that have been done before\n\t\t\t// no action if the item moved is the parent of the item checked\n\t\t\tif (itemElement !== this.currentItem[0] &&\n\t\t\t\tthis.placeholder[intersection === 1 ? \"next\" : \"prev\"]()[0] !== itemElement &&\n\t\t\t\t!$.contains(this.placeholder[0], itemElement) &&\n\t\t\t\t(this.options.type === \"semi-dynamic\" ? !$.contains(this.element[0], itemElement) : true)\n\t\t\t) {\n\n\t\t\t\tthis.direction = intersection === 1 ? \"down\" : \"up\";\n\n\t\t\t\tif (this.options.tolerance === \"pointer\" || this._intersectsWithSides(item)) {\n\t\t\t\t\tthis._rearrange(event, item);\n\t\t\t\t} else {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\tthis._trigger(\"change\", event, this._uiHash());\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\t//Post events to containers\n\t\tthis._contactContainers(event);\n\n\t\t//Interconnect with droppables\n\t\tif($.ui.ddmanager) {\n\t\t\t$.ui.ddmanager.drag(this, event);\n\t\t}\n\n\t\t//Call callbacks\n\t\tthis._trigger(\"sort\", event, this._uiHash());\n\n\t\tthis.lastPositionAbs = this.positionAbs;\n\t\treturn false;\n\n\t},\n\n\t_mouseStop: function(event, noPropagation) {\n\n\t\tif(!event) {\n\t\t\treturn;\n\t\t}\n\n\t\t//If we are using droppables, inform the manager about the drop\n\t\tif ($.ui.ddmanager && !this.options.dropBehaviour) {\n\t\t\t$.ui.ddmanager.drop(this, event);\n\t\t}\n\n\t\tif(this.options.revert) {\n\t\t\tvar that = this,\n\t\t\t\tcur = this.placeholder.offset(),\n\t\t\t\taxis = this.options.axis,\n\t\t\t\tanimation = {};\n\n\t\t\tif ( !axis || axis === \"x\" ) {\n\t\t\t\tanimation.left = cur.left - this.offset.parent.left - this.margins.left + (this.offsetParent[0] === this.document[0].body ? 0 : this.offsetParent[0].scrollLeft);\n\t\t\t}\n\t\t\tif ( !axis || axis === \"y\" ) {\n\t\t\t\tanimation.top = cur.top - this.offset.parent.top - this.margins.top + (this.offsetParent[0] === this.document[0].body ? 0 : this.offsetParent[0].scrollTop);\n\t\t\t}\n\t\t\tthis.reverting = true;\n\t\t\t$(this.helper).animate( animation, parseInt(this.options.revert, 10) || 500, function() {\n\t\t\t\tthat._clear(event);\n\t\t\t});\n\t\t} else {\n\t\t\tthis._clear(event, noPropagation);\n\t\t}\n\n\t\treturn false;\n\n\t},\n\n\tcancel: function() {\n\n\t\tif(this.dragging) {\n\n\t\t\tthis._mouseUp({ target: null });\n\n\t\t\tif(this.options.helper === \"original\") {\n\t\t\t\tthis.currentItem.css(this._storedCSS).removeClass(\"ui-sortable-helper\");\n\t\t\t} else {\n\t\t\t\tthis.currentItem.show();\n\t\t\t}\n\n\t\t\t//Post deactivating events to containers\n\t\t\tfor (var i = this.containers.length - 1; i >= 0; i--){\n\t\t\t\tthis.containers[i]._trigger(\"deactivate\", null, this._uiHash(this));\n\t\t\t\tif(this.containers[i].containerCache.over) {\n\t\t\t\t\tthis.containers[i]._trigger(\"out\", null, this._uiHash(this));\n\t\t\t\t\tthis.containers[i].containerCache.over = 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\tif (this.placeholder) {\n\t\t\t//$(this.placeholder[0]).remove(); would have been the jQuery way - unfortunately, it unbinds ALL events from the original node!\n\t\t\tif(this.placeholder[0].parentNode) {\n\t\t\t\tthis.placeholder[0].parentNode.removeChild(this.placeholder[0]);\n\t\t\t}\n\t\t\tif(this.options.helper !== \"original\" && this.helper && this.helper[0].parentNode) {\n\t\t\t\tthis.helper.remove();\n\t\t\t}\n\n\t\t\t$.extend(this, {\n\t\t\t\thelper: null,\n\t\t\t\tdragging: false,\n\t\t\t\treverting: false,\n\t\t\t\t_noFinalSort: null\n\t\t\t});\n\n\t\t\tif(this.domPosition.prev) {\n\t\t\t\t$(this.domPosition.prev).after(this.currentItem);\n\t\t\t} else {\n\t\t\t\t$(this.domPosition.parent).prepend(this.currentItem);\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\n\t},\n\n\tserialize: function(o) {\n\n\t\tvar items = this._getItemsAsjQuery(o && o.connected),\n\t\t\tstr = [];\n\t\to = o || {};\n\n\t\t$(items).each(function() {\n\t\t\tvar res = ($(o.item || this).attr(o.attribute || \"id\") || \"\").match(o.expression || (/(.+)[\\-=_](.+)/));\n\t\t\tif (res) {\n\t\t\t\tstr.push((o.key || res[1]+\"[]\")+\"=\"+(o.key && o.expression ? res[1] : res[2]));\n\t\t\t}\n\t\t});\n\n\t\tif(!str.length && o.key) {\n\t\t\tstr.push(o.key + \"=\");\n\t\t}\n\n\t\treturn str.join(\"&\");\n\n\t},\n\n\ttoArray: function(o) {\n\n\t\tvar items = this._getItemsAsjQuery(o && o.connected),\n\t\t\tret = [];\n\n\t\to = o || {};\n\n\t\titems.each(function() { ret.push($(o.item || this).attr(o.attribute || \"id\") || \"\"); });\n\t\treturn ret;\n\n\t},\n\n\t/* Be careful with the following core functions */\n\t_intersectsWith: function(item) {\n\n\t\tvar x1 = this.positionAbs.left,\n\t\t\tx2 = x1 + this.helperProportions.width,\n\t\t\ty1 = this.positionAbs.top,\n\t\t\ty2 = y1 + this.helperProportions.height,\n\t\t\tl = item.left,\n\t\t\tr = l + item.width,\n\t\t\tt = item.top,\n\t\t\tb = t + item.height,\n\t\t\tdyClick = this.offset.click.top,\n\t\t\tdxClick = this.offset.click.left,\n\t\t\tisOverElementHeight = ( this.options.axis === \"x\" ) || ( ( y1 + dyClick ) > t && ( y1 + dyClick ) < b ),\n\t\t\tisOverElementWidth = ( this.options.axis === \"y\" ) || ( ( x1 + dxClick ) > l && ( x1 + dxClick ) < r ),\n\t\t\tisOverElement = isOverElementHeight && isOverElementWidth;\n\n\t\tif ( this.options.tolerance === \"pointer\" ||\n\t\t\tthis.options.forcePointerForContainers ||\n\t\t\t(this.options.tolerance !== \"pointer\" && this.helperProportions[this.floating ? \"width\" : \"height\"] > item[this.floating ? \"width\" : \"height\"])\n\t\t) {\n\t\t\treturn isOverElement;\n\t\t} else {\n\n\t\t\treturn (l < x1 + (this.helperProportions.width / 2) && // Right Half\n\t\t\t\tx2 - (this.helperProportions.width / 2) < r && // Left Half\n\t\t\t\tt < y1 + (this.helperProportions.height / 2) && // Bottom Half\n\t\t\t\ty2 - (this.helperProportions.height / 2) < b ); // Top Half\n\n\t\t}\n\t},\n\n\t_intersectsWithPointer: function(item) {\n\n\t\tvar isOverElementHeight = (this.options.axis === \"x\") || this._isOverAxis(this.positionAbs.top + this.offset.click.top, item.top, item.height),\n\t\t\tisOverElementWidth = (this.options.axis === \"y\") || this._isOverAxis(this.positionAbs.left + this.offset.click.left, item.left, item.width),\n\t\t\tisOverElement = isOverElementHeight && isOverElementWidth,\n\t\t\tverticalDirection = this._getDragVerticalDirection(),\n\t\t\thorizontalDirection = this._getDragHorizontalDirection();\n\n\t\tif (!isOverElement) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn this.floating ?\n\t\t\t( ((horizontalDirection && horizontalDirection === \"right\") || verticalDirection === \"down\") ? 2 : 1 )\n\t\t\t: ( verticalDirection && (verticalDirection === \"down\" ? 2 : 1) );\n\n\t},\n\n\t_intersectsWithSides: function(item) {\n\n\t\tvar isOverBottomHalf = this._isOverAxis(this.positionAbs.top + this.offset.click.top, item.top + (item.height/2), item.height),\n\t\t\tisOverRightHalf = this._isOverAxis(this.positionAbs.left + this.offset.click.left, item.left + (item.width/2), item.width),\n\t\t\tverticalDirection = this._getDragVerticalDirection(),\n\t\t\thorizontalDirection = this._getDragHorizontalDirection();\n\n\t\tif (this.floating && horizontalDirection) {\n\t\t\treturn ((horizontalDirection === \"right\" && isOverRightHalf) || (horizontalDirection === \"left\" && !isOverRightHalf));\n\t\t} else {\n\t\t\treturn verticalDirection && ((verticalDirection === \"down\" && isOverBottomHalf) || (verticalDirection === \"up\" && !isOverBottomHalf));\n\t\t}\n\n\t},\n\n\t_getDragVerticalDirection: function() {\n\t\tvar delta = this.positionAbs.top - this.lastPositionAbs.top;\n\t\treturn delta !== 0 && (delta > 0 ? \"down\" : \"up\");\n\t},\n\n\t_getDragHorizontalDirection: function() {\n\t\tvar delta = this.positionAbs.left - this.lastPositionAbs.left;\n\t\treturn delta !== 0 && (delta > 0 ? \"right\" : \"left\");\n\t},\n\n\trefresh: function(event) {\n\t\tthis._refreshItems(event);\n\t\tthis._setHandleClassName();\n\t\tthis.refreshPositions();\n\t\treturn this;\n\t},\n\n\t_connectWith: function() {\n\t\tvar options = this.options;\n\t\treturn options.connectWith.constructor === String ? [options.connectWith] : options.connectWith;\n\t},\n\n\t_getItemsAsjQuery: function(connected) {\n\n\t\tvar i, j, cur, inst,\n\t\t\titems = [],\n\t\t\tqueries = [],\n\t\t\tconnectWith = this._connectWith();\n\n\t\tif(connectWith && connected) {\n\t\t\tfor (i = connectWith.length - 1; i >= 0; i--){\n\t\t\t\tcur = $(connectWith[i], this.document[0]);\n\t\t\t\tfor ( j = cur.length - 1; j >= 0; j--){\n\t\t\t\t\tinst = $.data(cur[j], this.widgetFullName);\n\t\t\t\t\tif(inst && inst !== this && !inst.options.disabled) {\n\t\t\t\t\t\tqueries.push([$.isFunction(inst.options.items) ? inst.options.items.call(inst.element) : $(inst.options.items, inst.element).not(\".ui-sortable-helper\").not(\".ui-sortable-placeholder\"), inst]);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tqueries.push([$.isFunction(this.options.items) ? this.options.items.call(this.element, null, { options: this.options, item: this.currentItem }) : $(this.options.items, this.element).not(\".ui-sortable-helper\").not(\".ui-sortable-placeholder\"), this]);\n\n\t\tfunction addItems() {\n\t\t\titems.push( this );\n\t\t}\n\t\tfor (i = queries.length - 1; i >= 0; i--){\n\t\t\tqueries[i][0].each( addItems );\n\t\t}\n\n\t\treturn $(items);\n\n\t},\n\n\t_removeCurrentsFromItems: function() {\n\n\t\tvar list = this.currentItem.find(\":data(\" + this.widgetName + \"-item)\");\n\n\t\tthis.items = $.grep(this.items, function (item) {\n\t\t\tfor (var j=0; j < list.length; j++) {\n\t\t\t\tif(list[j] === item.item[0]) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t});\n\n\t},\n\n\t_refreshItems: function(event) {\n\n\t\tthis.items = [];\n\t\tthis.containers = [this];\n\n\t\tvar i, j, cur, inst, targetData, _queries, item, queriesLength,\n\t\t\titems = this.items,\n\t\t\tqueries = [[$.isFunction(this.options.items) ? this.options.items.call(this.element[0], event, { item: this.currentItem }) : $(this.options.items, this.element), this]],\n\t\t\tconnectWith = this._connectWith();\n\n\t\tif(connectWith && this.ready) { //Shouldn't be run the first time through due to massive slow-down\n\t\t\tfor (i = connectWith.length - 1; i >= 0; i--){\n\t\t\t\tcur = $(connectWith[i], this.document[0]);\n\t\t\t\tfor (j = cur.length - 1; j >= 0; j--){\n\t\t\t\t\tinst = $.data(cur[j], this.widgetFullName);\n\t\t\t\t\tif(inst && inst !== this && !inst.options.disabled) {\n\t\t\t\t\t\tqueries.push([$.isFunction(inst.options.items) ? inst.options.items.call(inst.element[0], event, { item: this.currentItem }) : $(inst.options.items, inst.element), inst]);\n\t\t\t\t\t\tthis.containers.push(inst);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tfor (i = queries.length - 1; i >= 0; i--) {\n\t\t\ttargetData = queries[i][1];\n\t\t\t_queries = queries[i][0];\n\n\t\t\tfor (j=0, queriesLength = _queries.length; j < queriesLength; j++) {\n\t\t\t\titem = $(_queries[j]);\n\n\t\t\t\titem.data(this.widgetName + \"-item\", targetData); // Data for target checking (mouse manager)\n\n\t\t\t\titems.push({\n\t\t\t\t\titem: item,\n\t\t\t\t\tinstance: targetData,\n\t\t\t\t\twidth: 0, height: 0,\n\t\t\t\t\tleft: 0, top: 0\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\n\t},\n\n\trefreshPositions: function(fast) {\n\n\t\t// Determine whether items are being displayed horizontally\n\t\tthis.floating = this.items.length ?\n\t\t\tthis.options.axis === \"x\" || this._isFloating( this.items[ 0 ].item ) :\n\t\t\tfalse;\n\n\t\t//This has to be redone because due to the item being moved out/into the offsetParent, the offsetParent's position will change\n\t\tif(this.offsetParent && this.helper) {\n\t\t\tthis.offset.parent = this._getParentOffset();\n\t\t}\n\n\t\tvar i, item, t, p;\n\n\t\tfor (i = this.items.length - 1; i >= 0; i--){\n\t\t\titem = this.items[i];\n\n\t\t\t//We ignore calculating positions of all connected containers when we're not over them\n\t\t\tif(item.instance !== this.currentContainer && this.currentContainer && item.item[0] !== this.currentItem[0]) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tt = this.options.toleranceElement ? $(this.options.toleranceElement, item.item) : item.item;\n\n\t\t\tif (!fast) {\n\t\t\t\titem.width = t.outerWidth();\n\t\t\t\titem.height = t.outerHeight();\n\t\t\t}\n\n\t\t\tp = t.offset();\n\t\t\titem.left = p.left;\n\t\t\titem.top = p.top;\n\t\t}\n\n\t\tif(this.options.custom && this.options.custom.refreshContainers) {\n\t\t\tthis.options.custom.refreshContainers.call(this);\n\t\t} else {\n\t\t\tfor (i = this.containers.length - 1; i >= 0; i--){\n\t\t\t\tp = this.containers[i].element.offset();\n\t\t\t\tthis.containers[i].containerCache.left = p.left;\n\t\t\t\tthis.containers[i].containerCache.top = p.top;\n\t\t\t\tthis.containers[i].containerCache.width = this.containers[i].element.outerWidth();\n\t\t\t\tthis.containers[i].containerCache.height = this.containers[i].element.outerHeight();\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\t_createPlaceholder: function(that) {\n\t\tthat = that || this;\n\t\tvar className,\n\t\t\to = that.options;\n\n\t\tif(!o.placeholder || o.placeholder.constructor === String) {\n\t\t\tclassName = o.placeholder;\n\t\t\to.placeholder = {\n\t\t\t\telement: function() {\n\n\t\t\t\t\tvar nodeName = that.currentItem[0].nodeName.toLowerCase(),\n\t\t\t\t\t\telement = $( \"<\" + nodeName + \">\", that.document[0] )\n\t\t\t\t\t\t\t.addClass(className || that.currentItem[0].className+\" ui-sortable-placeholder\")\n\t\t\t\t\t\t\t.removeClass(\"ui-sortable-helper\");\n\n\t\t\t\t\tif ( nodeName === \"tbody\" ) {\n\t\t\t\t\t\tthat._createTrPlaceholder(\n\t\t\t\t\t\t\tthat.currentItem.find( \"tr\" ).eq( 0 ),\n\t\t\t\t\t\t\t$( \"<tr>\", that.document[ 0 ] ).appendTo( element )\n\t\t\t\t\t\t);\n\t\t\t\t\t} else if ( nodeName === \"tr\" ) {\n\t\t\t\t\t\tthat._createTrPlaceholder( that.currentItem, element );\n\t\t\t\t\t} else if ( nodeName === \"img\" ) {\n\t\t\t\t\t\telement.attr( \"src\", that.currentItem.attr( \"src\" ) );\n\t\t\t\t\t}\n\n\t\t\t\t\tif ( !className ) {\n\t\t\t\t\t\telement.css( \"visibility\", \"hidden\" );\n\t\t\t\t\t}\n\n\t\t\t\t\treturn element;\n\t\t\t\t},\n\t\t\t\tupdate: function(container, p) {\n\n\t\t\t\t\t// 1. If a className is set as 'placeholder option, we don't force sizes - the class is responsible for that\n\t\t\t\t\t// 2. The option 'forcePlaceholderSize can be enabled to force it even if a class name is specified\n\t\t\t\t\tif(className && !o.forcePlaceholderSize) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\t//If the element doesn't have a actual height by itself (without styles coming from a stylesheet), it receives the inline height from the dragged item\n\t\t\t\t\tif(!p.height()) { p.height(that.currentItem.innerHeight() - parseInt(that.currentItem.css(\"paddingTop\")||0, 10) - parseInt(that.currentItem.css(\"paddingBottom\")||0, 10)); }\n\t\t\t\t\tif(!p.width()) { p.width(that.currentItem.innerWidth() - parseInt(that.currentItem.css(\"paddingLeft\")||0, 10) - parseInt(that.currentItem.css(\"paddingRight\")||0, 10)); }\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\n\t\t//Create the placeholder\n\t\tthat.placeholder = $(o.placeholder.element.call(that.element, that.currentItem));\n\n\t\t//Append it after the actual current item\n\t\tthat.currentItem.after(that.placeholder);\n\n\t\t//Update the size of the placeholder (TODO: Logic to fuzzy, see line 316/317)\n\t\to.placeholder.update(that, that.placeholder);\n\n\t},\n\n\t_createTrPlaceholder: function( sourceTr, targetTr ) {\n\t\tvar that = this;\n\n\t\tsourceTr.children().each(function() {\n\t\t\t$( \"<td>&#160;</td>\", that.document[ 0 ] )\n\t\t\t\t.attr( \"colspan\", $( this ).attr( \"colspan\" ) || 1 )\n\t\t\t\t.appendTo( targetTr );\n\t\t});\n\t},\n\n\t_contactContainers: function(event) {\n\t\tvar i, j, dist, itemWithLeastDistance, posProperty, sizeProperty, cur, nearBottom, floating, axis,\n\t\t\tinnermostContainer = null,\n\t\t\tinnermostIndex = null;\n\n\t\t// get innermost container that intersects with item\n\t\tfor (i = this.containers.length - 1; i >= 0; i--) {\n\n\t\t\t// never consider a container that's located within the item itself\n\t\t\tif($.contains(this.currentItem[0], this.containers[i].element[0])) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tif(this._intersectsWith(this.containers[i].containerCache)) {\n\n\t\t\t\t// if we've already found a container and it's more \"inner\" than this, then continue\n\t\t\t\tif(innermostContainer && $.contains(this.containers[i].element[0], innermostContainer.element[0])) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tinnermostContainer = this.containers[i];\n\t\t\t\tinnermostIndex = i;\n\n\t\t\t} else {\n\t\t\t\t// container doesn't intersect. trigger \"out\" event if necessary\n\t\t\t\tif(this.containers[i].containerCache.over) {\n\t\t\t\t\tthis.containers[i]._trigger(\"out\", event, this._uiHash(this));\n\t\t\t\t\tthis.containers[i].containerCache.over = 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t// if no intersecting containers found, return\n\t\tif(!innermostContainer) {\n\t\t\treturn;\n\t\t}\n\n\t\t// move the item into the container if it's not there already\n\t\tif(this.containers.length === 1) {\n\t\t\tif (!this.containers[innermostIndex].containerCache.over) {\n\t\t\t\tthis.containers[innermostIndex]._trigger(\"over\", event, this._uiHash(this));\n\t\t\t\tthis.containers[innermostIndex].containerCache.over = 1;\n\t\t\t}\n\t\t} else {\n\n\t\t\t//When entering a new container, we will find the item with the least distance and append our item near it\n\t\t\tdist = 10000;\n\t\t\titemWithLeastDistance = null;\n\t\t\tfloating = innermostContainer.floating || this._isFloating(this.currentItem);\n\t\t\tposProperty = floating ? \"left\" : \"top\";\n\t\t\tsizeProperty = floating ? \"width\" : \"height\";\n\t\t\taxis = floating ? \"clientX\" : \"clientY\";\n\n\t\t\tfor (j = this.items.length - 1; j >= 0; j--) {\n\t\t\t\tif(!$.contains(this.containers[innermostIndex].element[0], this.items[j].item[0])) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tif(this.items[j].item[0] === this.currentItem[0]) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tcur = this.items[j].item.offset()[posProperty];\n\t\t\t\tnearBottom = false;\n\t\t\t\tif ( event[ axis ] - cur > this.items[ j ][ sizeProperty ] / 2 ) {\n\t\t\t\t\tnearBottom = true;\n\t\t\t\t}\n\n\t\t\t\tif ( Math.abs( event[ axis ] - cur ) < dist ) {\n\t\t\t\t\tdist = Math.abs( event[ axis ] - cur );\n\t\t\t\t\titemWithLeastDistance = this.items[ j ];\n\t\t\t\t\tthis.direction = nearBottom ? \"up\": \"down\";\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t//Check if dropOnEmpty is enabled\n\t\t\tif(!itemWithLeastDistance && !this.options.dropOnEmpty) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif(this.currentContainer === this.containers[innermostIndex]) {\n\t\t\t\tif ( !this.currentContainer.containerCache.over ) {\n\t\t\t\t\tthis.containers[ innermostIndex ]._trigger( \"over\", event, this._uiHash() );\n\t\t\t\t\tthis.currentContainer.containerCache.over = 1;\n\t\t\t\t}\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\titemWithLeastDistance ? this._rearrange(event, itemWithLeastDistance, null, true) : this._rearrange(event, null, this.containers[innermostIndex].element, true);\n\t\t\tthis._trigger(\"change\", event, this._uiHash());\n\t\t\tthis.containers[innermostIndex]._trigger(\"change\", event, this._uiHash(this));\n\t\t\tthis.currentContainer = this.containers[innermostIndex];\n\n\t\t\t//Update the placeholder\n\t\t\tthis.options.placeholder.update(this.currentContainer, this.placeholder);\n\n\t\t\tthis.containers[innermostIndex]._trigger(\"over\", event, this._uiHash(this));\n\t\t\tthis.containers[innermostIndex].containerCache.over = 1;\n\t\t}\n\n\n\t},\n\n\t_createHelper: function(event) {\n\n\t\tvar o = this.options,\n\t\t\thelper = $.isFunction(o.helper) ? $(o.helper.apply(this.element[0], [event, this.currentItem])) : (o.helper === \"clone\" ? this.currentItem.clone() : this.currentItem);\n\n\t\t//Add the helper to the DOM if that didn't happen already\n\t\tif(!helper.parents(\"body\").length) {\n\t\t\t$(o.appendTo !== \"parent\" ? o.appendTo : this.currentItem[0].parentNode)[0].appendChild(helper[0]);\n\t\t}\n\n\t\tif(helper[0] === this.currentItem[0]) {\n\t\t\tthis._storedCSS = { width: this.currentItem[0].style.width, height: this.currentItem[0].style.height, position: this.currentItem.css(\"position\"), top: this.currentItem.css(\"top\"), left: this.currentItem.css(\"left\") };\n\t\t}\n\n\t\tif(!helper[0].style.width || o.forceHelperSize) {\n\t\t\thelper.width(this.currentItem.width());\n\t\t}\n\t\tif(!helper[0].style.height || o.forceHelperSize) {\n\t\t\thelper.height(this.currentItem.height());\n\t\t}\n\n\t\treturn helper;\n\n\t},\n\n\t_adjustOffsetFromHelper: function(obj) {\n\t\tif (typeof obj === \"string\") {\n\t\t\tobj = obj.split(\" \");\n\t\t}\n\t\tif ($.isArray(obj)) {\n\t\t\tobj = {left: +obj[0], top: +obj[1] || 0};\n\t\t}\n\t\tif (\"left\" in obj) {\n\t\t\tthis.offset.click.left = obj.left + this.margins.left;\n\t\t}\n\t\tif (\"right\" in obj) {\n\t\t\tthis.offset.click.left = this.helperProportions.width - obj.right + this.margins.left;\n\t\t}\n\t\tif (\"top\" in obj) {\n\t\t\tthis.offset.click.top = obj.top + this.margins.top;\n\t\t}\n\t\tif (\"bottom\" in obj) {\n\t\t\tthis.offset.click.top = this.helperProportions.height - obj.bottom + this.margins.top;\n\t\t}\n\t},\n\n\t_getParentOffset: function() {\n\n\n\t\t//Get the offsetParent and cache its position\n\t\tthis.offsetParent = this.helper.offsetParent();\n\t\tvar po = this.offsetParent.offset();\n\n\t\t// This is a special case where we need to modify a offset calculated on start, since the following happened:\n\t\t// 1. The position of the helper is absolute, so it's position is calculated based on the next positioned parent\n\t\t// 2. The actual offset parent is a child of the scroll parent, and the scroll parent isn't the document, which means that\n\t\t//    the scroll is included in the initial calculation of the offset of the parent, and never recalculated upon drag\n\t\tif(this.cssPosition === \"absolute\" && this.scrollParent[0] !== this.document[0] && $.contains(this.scrollParent[0], this.offsetParent[0])) {\n\t\t\tpo.left += this.scrollParent.scrollLeft();\n\t\t\tpo.top += this.scrollParent.scrollTop();\n\t\t}\n\n\t\t// This needs to be actually done for all browsers, since pageX/pageY includes this information\n\t\t// with an ugly IE fix\n\t\tif( this.offsetParent[0] === this.document[0].body || (this.offsetParent[0].tagName && this.offsetParent[0].tagName.toLowerCase() === \"html\" && $.ui.ie)) {\n\t\t\tpo = { top: 0, left: 0 };\n\t\t}\n\n\t\treturn {\n\t\t\ttop: po.top + (parseInt(this.offsetParent.css(\"borderTopWidth\"),10) || 0),\n\t\t\tleft: po.left + (parseInt(this.offsetParent.css(\"borderLeftWidth\"),10) || 0)\n\t\t};\n\n\t},\n\n\t_getRelativeOffset: function() {\n\n\t\tif(this.cssPosition === \"relative\") {\n\t\t\tvar p = this.currentItem.position();\n\t\t\treturn {\n\t\t\t\ttop: p.top - (parseInt(this.helper.css(\"top\"),10) || 0) + this.scrollParent.scrollTop(),\n\t\t\t\tleft: p.left - (parseInt(this.helper.css(\"left\"),10) || 0) + this.scrollParent.scrollLeft()\n\t\t\t};\n\t\t} else {\n\t\t\treturn { top: 0, left: 0 };\n\t\t}\n\n\t},\n\n\t_cacheMargins: function() {\n\t\tthis.margins = {\n\t\t\tleft: (parseInt(this.currentItem.css(\"marginLeft\"),10) || 0),\n\t\t\ttop: (parseInt(this.currentItem.css(\"marginTop\"),10) || 0)\n\t\t};\n\t},\n\n\t_cacheHelperProportions: function() {\n\t\tthis.helperProportions = {\n\t\t\twidth: this.helper.outerWidth(),\n\t\t\theight: this.helper.outerHeight()\n\t\t};\n\t},\n\n\t_setContainment: function() {\n\n\t\tvar ce, co, over,\n\t\t\to = this.options;\n\t\tif(o.containment === \"parent\") {\n\t\t\to.containment = this.helper[0].parentNode;\n\t\t}\n\t\tif(o.containment === \"document\" || o.containment === \"window\") {\n\t\t\tthis.containment = [\n\t\t\t\t0 - this.offset.relative.left - this.offset.parent.left,\n\t\t\t\t0 - this.offset.relative.top - this.offset.parent.top,\n\t\t\t\to.containment === \"document\" ? this.document.width() : this.window.width() - this.helperProportions.width - this.margins.left,\n\t\t\t\t(o.containment === \"document\" ? this.document.width() : this.window.height() || this.document[0].body.parentNode.scrollHeight) - this.helperProportions.height - this.margins.top\n\t\t\t];\n\t\t}\n\n\t\tif(!(/^(document|window|parent)$/).test(o.containment)) {\n\t\t\tce = $(o.containment)[0];\n\t\t\tco = $(o.containment).offset();\n\t\t\tover = ($(ce).css(\"overflow\") !== \"hidden\");\n\n\t\t\tthis.containment = [\n\t\t\t\tco.left + (parseInt($(ce).css(\"borderLeftWidth\"),10) || 0) + (parseInt($(ce).css(\"paddingLeft\"),10) || 0) - this.margins.left,\n\t\t\t\tco.top + (parseInt($(ce).css(\"borderTopWidth\"),10) || 0) + (parseInt($(ce).css(\"paddingTop\"),10) || 0) - this.margins.top,\n\t\t\t\tco.left+(over ? Math.max(ce.scrollWidth,ce.offsetWidth) : ce.offsetWidth) - (parseInt($(ce).css(\"borderLeftWidth\"),10) || 0) - (parseInt($(ce).css(\"paddingRight\"),10) || 0) - this.helperProportions.width - this.margins.left,\n\t\t\t\tco.top+(over ? Math.max(ce.scrollHeight,ce.offsetHeight) : ce.offsetHeight) - (parseInt($(ce).css(\"borderTopWidth\"),10) || 0) - (parseInt($(ce).css(\"paddingBottom\"),10) || 0) - this.helperProportions.height - this.margins.top\n\t\t\t];\n\t\t}\n\n\t},\n\n\t_convertPositionTo: function(d, pos) {\n\n\t\tif(!pos) {\n\t\t\tpos = this.position;\n\t\t}\n\t\tvar mod = d === \"absolute\" ? 1 : -1,\n\t\t\tscroll = this.cssPosition === \"absolute\" && !(this.scrollParent[0] !== this.document[0] && $.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent,\n\t\t\tscrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName);\n\n\t\treturn {\n\t\t\ttop: (\n\t\t\t\tpos.top\t+\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// The absolute mouse position\n\t\t\t\tthis.offset.relative.top * mod +\t\t\t\t\t\t\t\t\t\t// Only for relative positioned nodes: Relative offset from element to offset parent\n\t\t\t\tthis.offset.parent.top * mod -\t\t\t\t\t\t\t\t\t\t\t// The offsetParent's offset without borders (offset + border)\n\t\t\t\t( ( this.cssPosition === \"fixed\" ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) ) * mod)\n\t\t\t),\n\t\t\tleft: (\n\t\t\t\tpos.left +\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// The absolute mouse position\n\t\t\t\tthis.offset.relative.left * mod +\t\t\t\t\t\t\t\t\t\t// Only for relative positioned nodes: Relative offset from element to offset parent\n\t\t\t\tthis.offset.parent.left * mod\t-\t\t\t\t\t\t\t\t\t\t// The offsetParent's offset without borders (offset + border)\n\t\t\t\t( ( this.cssPosition === \"fixed\" ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() ) * mod)\n\t\t\t)\n\t\t};\n\n\t},\n\n\t_generatePosition: function(event) {\n\n\t\tvar top, left,\n\t\t\to = this.options,\n\t\t\tpageX = event.pageX,\n\t\t\tpageY = event.pageY,\n\t\t\tscroll = this.cssPosition === \"absolute\" && !(this.scrollParent[0] !== this.document[0] && $.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName);\n\n\t\t// This is another very weird special case that only happens for relative elements:\n\t\t// 1. If the css position is relative\n\t\t// 2. and the scroll parent is the document or similar to the offset parent\n\t\t// we have to refresh the relative offset during the scroll so there are no jumps\n\t\tif(this.cssPosition === \"relative\" && !(this.scrollParent[0] !== this.document[0] && this.scrollParent[0] !== this.offsetParent[0])) {\n\t\t\tthis.offset.relative = this._getRelativeOffset();\n\t\t}\n\n\t\t/*\n\t\t * - Position constraining -\n\t\t * Constrain the position to a mix of grid, containment.\n\t\t */\n\n\t\tif(this.originalPosition) { //If we are not dragging yet, we won't check for options\n\n\t\t\tif(this.containment) {\n\t\t\t\tif(event.pageX - this.offset.click.left < this.containment[0]) {\n\t\t\t\t\tpageX = this.containment[0] + this.offset.click.left;\n\t\t\t\t}\n\t\t\t\tif(event.pageY - this.offset.click.top < this.containment[1]) {\n\t\t\t\t\tpageY = this.containment[1] + this.offset.click.top;\n\t\t\t\t}\n\t\t\t\tif(event.pageX - this.offset.click.left > this.containment[2]) {\n\t\t\t\t\tpageX = this.containment[2] + this.offset.click.left;\n\t\t\t\t}\n\t\t\t\tif(event.pageY - this.offset.click.top > this.containment[3]) {\n\t\t\t\t\tpageY = this.containment[3] + this.offset.click.top;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif(o.grid) {\n\t\t\t\ttop = this.originalPageY + Math.round((pageY - this.originalPageY) / o.grid[1]) * o.grid[1];\n\t\t\t\tpageY = this.containment ? ( (top - this.offset.click.top >= this.containment[1] && top - this.offset.click.top <= this.containment[3]) ? top : ((top - this.offset.click.top >= this.containment[1]) ? top - o.grid[1] : top + o.grid[1])) : top;\n\n\t\t\t\tleft = this.originalPageX + Math.round((pageX - this.originalPageX) / o.grid[0]) * o.grid[0];\n\t\t\t\tpageX = this.containment ? ( (left - this.offset.click.left >= this.containment[0] && left - this.offset.click.left <= this.containment[2]) ? left : ((left - this.offset.click.left >= this.containment[0]) ? left - o.grid[0] : left + o.grid[0])) : left;\n\t\t\t}\n\n\t\t}\n\n\t\treturn {\n\t\t\ttop: (\n\t\t\t\tpageY -\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// The absolute mouse position\n\t\t\t\tthis.offset.click.top -\t\t\t\t\t\t\t\t\t\t\t\t\t// Click offset (relative to the element)\n\t\t\t\tthis.offset.relative.top\t-\t\t\t\t\t\t\t\t\t\t\t// Only for relative positioned nodes: Relative offset from element to offset parent\n\t\t\t\tthis.offset.parent.top +\t\t\t\t\t\t\t\t\t\t\t\t// The offsetParent's offset without borders (offset + border)\n\t\t\t\t( ( this.cssPosition === \"fixed\" ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) ))\n\t\t\t),\n\t\t\tleft: (\n\t\t\t\tpageX -\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// The absolute mouse position\n\t\t\t\tthis.offset.click.left -\t\t\t\t\t\t\t\t\t\t\t\t// Click offset (relative to the element)\n\t\t\t\tthis.offset.relative.left\t-\t\t\t\t\t\t\t\t\t\t\t// Only for relative positioned nodes: Relative offset from element to offset parent\n\t\t\t\tthis.offset.parent.left +\t\t\t\t\t\t\t\t\t\t\t\t// The offsetParent's offset without borders (offset + border)\n\t\t\t\t( ( this.cssPosition === \"fixed\" ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() ))\n\t\t\t)\n\t\t};\n\n\t},\n\n\t_rearrange: function(event, i, a, hardRefresh) {\n\n\t\ta ? a[0].appendChild(this.placeholder[0]) : i.item[0].parentNode.insertBefore(this.placeholder[0], (this.direction === \"down\" ? i.item[0] : i.item[0].nextSibling));\n\n\t\t//Various things done here to improve the performance:\n\t\t// 1. we create a setTimeout, that calls refreshPositions\n\t\t// 2. on the instance, we have a counter variable, that get's higher after every append\n\t\t// 3. on the local scope, we copy the counter variable, and check in the timeout, if it's still the same\n\t\t// 4. this lets only the last addition to the timeout stack through\n\t\tthis.counter = this.counter ? ++this.counter : 1;\n\t\tvar counter = this.counter;\n\n\t\tthis._delay(function() {\n\t\t\tif(counter === this.counter) {\n\t\t\t\tthis.refreshPositions(!hardRefresh); //Precompute after each DOM insertion, NOT on mousemove\n\t\t\t}\n\t\t});\n\n\t},\n\n\t_clear: function(event, noPropagation) {\n\n\t\tthis.reverting = false;\n\t\t// We delay all events that have to be triggered to after the point where the placeholder has been removed and\n\t\t// everything else normalized again\n\t\tvar i,\n\t\t\tdelayedTriggers = [];\n\n\t\t// We first have to update the dom position of the actual currentItem\n\t\t// Note: don't do it if the current item is already removed (by a user), or it gets reappended (see #4088)\n\t\tif(!this._noFinalSort && this.currentItem.parent().length) {\n\t\t\tthis.placeholder.before(this.currentItem);\n\t\t}\n\t\tthis._noFinalSort = null;\n\n\t\tif(this.helper[0] === this.currentItem[0]) {\n\t\t\tfor(i in this._storedCSS) {\n\t\t\t\tif(this._storedCSS[i] === \"auto\" || this._storedCSS[i] === \"static\") {\n\t\t\t\t\tthis._storedCSS[i] = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t\tthis.currentItem.css(this._storedCSS).removeClass(\"ui-sortable-helper\");\n\t\t} else {\n\t\t\tthis.currentItem.show();\n\t\t}\n\n\t\tif(this.fromOutside && !noPropagation) {\n\t\t\tdelayedTriggers.push(function(event) { this._trigger(\"receive\", event, this._uiHash(this.fromOutside)); });\n\t\t}\n\t\tif((this.fromOutside || this.domPosition.prev !== this.currentItem.prev().not(\".ui-sortable-helper\")[0] || this.domPosition.parent !== this.currentItem.parent()[0]) && !noPropagation) {\n\t\t\tdelayedTriggers.push(function(event) { this._trigger(\"update\", event, this._uiHash()); }); //Trigger update callback if the DOM position has changed\n\t\t}\n\n\t\t// Check if the items Container has Changed and trigger appropriate\n\t\t// events.\n\t\tif (this !== this.currentContainer) {\n\t\t\tif(!noPropagation) {\n\t\t\t\tdelayedTriggers.push(function(event) { this._trigger(\"remove\", event, this._uiHash()); });\n\t\t\t\tdelayedTriggers.push((function(c) { return function(event) { c._trigger(\"receive\", event, this._uiHash(this)); };  }).call(this, this.currentContainer));\n\t\t\t\tdelayedTriggers.push((function(c) { return function(event) { c._trigger(\"update\", event, this._uiHash(this));  }; }).call(this, this.currentContainer));\n\t\t\t}\n\t\t}\n\n\n\t\t//Post events to containers\n\t\tfunction delayEvent( type, instance, container ) {\n\t\t\treturn function( event ) {\n\t\t\t\tcontainer._trigger( type, event, instance._uiHash( instance ) );\n\t\t\t};\n\t\t}\n\t\tfor (i = this.containers.length - 1; i >= 0; i--){\n\t\t\tif (!noPropagation) {\n\t\t\t\tdelayedTriggers.push( delayEvent( \"deactivate\", this, this.containers[ i ] ) );\n\t\t\t}\n\t\t\tif(this.containers[i].containerCache.over) {\n\t\t\t\tdelayedTriggers.push( delayEvent( \"out\", this, this.containers[ i ] ) );\n\t\t\t\tthis.containers[i].containerCache.over = 0;\n\t\t\t}\n\t\t}\n\n\t\t//Do what was originally in plugins\n\t\tif ( this.storedCursor ) {\n\t\t\tthis.document.find( \"body\" ).css( \"cursor\", this.storedCursor );\n\t\t\tthis.storedStylesheet.remove();\n\t\t}\n\t\tif(this._storedOpacity) {\n\t\t\tthis.helper.css(\"opacity\", this._storedOpacity);\n\t\t}\n\t\tif(this._storedZIndex) {\n\t\t\tthis.helper.css(\"zIndex\", this._storedZIndex === \"auto\" ? \"\" : this._storedZIndex);\n\t\t}\n\n\t\tthis.dragging = false;\n\n\t\tif(!noPropagation) {\n\t\t\tthis._trigger(\"beforeStop\", event, this._uiHash());\n\t\t}\n\n\t\t//$(this.placeholder[0]).remove(); would have been the jQuery way - unfortunately, it unbinds ALL events from the original node!\n\t\tthis.placeholder[0].parentNode.removeChild(this.placeholder[0]);\n\n\t\tif ( !this.cancelHelperRemoval ) {\n\t\t\tif ( this.helper[ 0 ] !== this.currentItem[ 0 ] ) {\n\t\t\t\tthis.helper.remove();\n\t\t\t}\n\t\t\tthis.helper = null;\n\t\t}\n\n\t\tif(!noPropagation) {\n\t\t\tfor (i=0; i < delayedTriggers.length; i++) {\n\t\t\t\tdelayedTriggers[i].call(this, event);\n\t\t\t} //Trigger all delayed events\n\t\t\tthis._trigger(\"stop\", event, this._uiHash());\n\t\t}\n\n\t\tthis.fromOutside = false;\n\t\treturn !this.cancelHelperRemoval;\n\n\t},\n\n\t_trigger: function() {\n\t\tif ($.Widget.prototype._trigger.apply(this, arguments) === false) {\n\t\t\tthis.cancel();\n\t\t}\n\t},\n\n\t_uiHash: function(_inst) {\n\t\tvar inst = _inst || this;\n\t\treturn {\n\t\t\thelper: inst.helper,\n\t\t\tplaceholder: inst.placeholder || $([]),\n\t\t\tposition: inst.position,\n\t\t\toriginalPosition: inst.originalPosition,\n\t\t\toffset: inst.positionAbs,\n\t\t\titem: inst.currentItem,\n\t\t\tsender: _inst ? _inst.element : null\n\t\t};\n\t}\n\n});\n\n\n/*!\n * jQuery UI Accordion 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/accordion/\n */\n\n\nvar accordion = $.widget( \"ui.accordion\", {\n\tversion: \"1.11.4\",\n\toptions: {\n\t\tactive: 0,\n\t\tanimate: {},\n\t\tcollapsible: false,\n\t\tevent: \"click\",\n\t\theader: \"> li > :first-child,> :not(li):even\",\n\t\theightStyle: \"auto\",\n\t\ticons: {\n\t\t\tactiveHeader: \"ui-icon-triangle-1-s\",\n\t\t\theader: \"ui-icon-triangle-1-e\"\n\t\t},\n\n\t\t// callbacks\n\t\tactivate: null,\n\t\tbeforeActivate: null\n\t},\n\n\thideProps: {\n\t\tborderTopWidth: \"hide\",\n\t\tborderBottomWidth: \"hide\",\n\t\tpaddingTop: \"hide\",\n\t\tpaddingBottom: \"hide\",\n\t\theight: \"hide\"\n\t},\n\n\tshowProps: {\n\t\tborderTopWidth: \"show\",\n\t\tborderBottomWidth: \"show\",\n\t\tpaddingTop: \"show\",\n\t\tpaddingBottom: \"show\",\n\t\theight: \"show\"\n\t},\n\n\t_create: function() {\n\t\tvar options = this.options;\n\t\tthis.prevShow = this.prevHide = $();\n\t\tthis.element.addClass( \"ui-accordion ui-widget ui-helper-reset\" )\n\t\t\t// ARIA\n\t\t\t.attr( \"role\", \"tablist\" );\n\n\t\t// don't allow collapsible: false and active: false / null\n\t\tif ( !options.collapsible && (options.active === false || options.active == null) ) {\n\t\t\toptions.active = 0;\n\t\t}\n\n\t\tthis._processPanels();\n\t\t// handle negative values\n\t\tif ( options.active < 0 ) {\n\t\t\toptions.active += this.headers.length;\n\t\t}\n\t\tthis._refresh();\n\t},\n\n\t_getCreateEventData: function() {\n\t\treturn {\n\t\t\theader: this.active,\n\t\t\tpanel: !this.active.length ? $() : this.active.next()\n\t\t};\n\t},\n\n\t_createIcons: function() {\n\t\tvar icons = this.options.icons;\n\t\tif ( icons ) {\n\t\t\t$( \"<span>\" )\n\t\t\t\t.addClass( \"ui-accordion-header-icon ui-icon \" + icons.header )\n\t\t\t\t.prependTo( this.headers );\n\t\t\tthis.active.children( \".ui-accordion-header-icon\" )\n\t\t\t\t.removeClass( icons.header )\n\t\t\t\t.addClass( icons.activeHeader );\n\t\t\tthis.headers.addClass( \"ui-accordion-icons\" );\n\t\t}\n\t},\n\n\t_destroyIcons: function() {\n\t\tthis.headers\n\t\t\t.removeClass( \"ui-accordion-icons\" )\n\t\t\t.children( \".ui-accordion-header-icon\" )\n\t\t\t\t.remove();\n\t},\n\n\t_destroy: function() {\n\t\tvar contents;\n\n\t\t// clean up main element\n\t\tthis.element\n\t\t\t.removeClass( \"ui-accordion ui-widget ui-helper-reset\" )\n\t\t\t.removeAttr( \"role\" );\n\n\t\t// clean up headers\n\t\tthis.headers\n\t\t\t.removeClass( \"ui-accordion-header ui-accordion-header-active ui-state-default \" +\n\t\t\t\t\"ui-corner-all ui-state-active ui-state-disabled ui-corner-top\" )\n\t\t\t.removeAttr( \"role\" )\n\t\t\t.removeAttr( \"aria-expanded\" )\n\t\t\t.removeAttr( \"aria-selected\" )\n\t\t\t.removeAttr( \"aria-controls\" )\n\t\t\t.removeAttr( \"tabIndex\" )\n\t\t\t.removeUniqueId();\n\n\t\tthis._destroyIcons();\n\n\t\t// clean up content panels\n\t\tcontents = this.headers.next()\n\t\t\t.removeClass( \"ui-helper-reset ui-widget-content ui-corner-bottom \" +\n\t\t\t\t\"ui-accordion-content ui-accordion-content-active ui-state-disabled\" )\n\t\t\t.css( \"display\", \"\" )\n\t\t\t.removeAttr( \"role\" )\n\t\t\t.removeAttr( \"aria-hidden\" )\n\t\t\t.removeAttr( \"aria-labelledby\" )\n\t\t\t.removeUniqueId();\n\n\t\tif ( this.options.heightStyle !== \"content\" ) {\n\t\t\tcontents.css( \"height\", \"\" );\n\t\t}\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tif ( key === \"active\" ) {\n\t\t\t// _activate() will handle invalid values and update this.options\n\t\t\tthis._activate( value );\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key === \"event\" ) {\n\t\t\tif ( this.options.event ) {\n\t\t\t\tthis._off( this.headers, this.options.event );\n\t\t\t}\n\t\t\tthis._setupEvents( value );\n\t\t}\n\n\t\tthis._super( key, value );\n\n\t\t// setting collapsible: false while collapsed; open first panel\n\t\tif ( key === \"collapsible\" && !value && this.options.active === false ) {\n\t\t\tthis._activate( 0 );\n\t\t}\n\n\t\tif ( key === \"icons\" ) {\n\t\t\tthis._destroyIcons();\n\t\t\tif ( value ) {\n\t\t\t\tthis._createIcons();\n\t\t\t}\n\t\t}\n\n\t\t// #5332 - opacity doesn't cascade to positioned elements in IE\n\t\t// so we need to add the disabled class to the headers and panels\n\t\tif ( key === \"disabled\" ) {\n\t\t\tthis.element\n\t\t\t\t.toggleClass( \"ui-state-disabled\", !!value )\n\t\t\t\t.attr( \"aria-disabled\", value );\n\t\t\tthis.headers.add( this.headers.next() )\n\t\t\t\t.toggleClass( \"ui-state-disabled\", !!value );\n\t\t}\n\t},\n\n\t_keydown: function( event ) {\n\t\tif ( event.altKey || event.ctrlKey ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar keyCode = $.ui.keyCode,\n\t\t\tlength = this.headers.length,\n\t\t\tcurrentIndex = this.headers.index( event.target ),\n\t\t\ttoFocus = false;\n\n\t\tswitch ( event.keyCode ) {\n\t\t\tcase keyCode.RIGHT:\n\t\t\tcase keyCode.DOWN:\n\t\t\t\ttoFocus = this.headers[ ( currentIndex + 1 ) % length ];\n\t\t\t\tbreak;\n\t\t\tcase keyCode.LEFT:\n\t\t\tcase keyCode.UP:\n\t\t\t\ttoFocus = this.headers[ ( currentIndex - 1 + length ) % length ];\n\t\t\t\tbreak;\n\t\t\tcase keyCode.SPACE:\n\t\t\tcase keyCode.ENTER:\n\t\t\t\tthis._eventHandler( event );\n\t\t\t\tbreak;\n\t\t\tcase keyCode.HOME:\n\t\t\t\ttoFocus = this.headers[ 0 ];\n\t\t\t\tbreak;\n\t\t\tcase keyCode.END:\n\t\t\t\ttoFocus = this.headers[ length - 1 ];\n\t\t\t\tbreak;\n\t\t}\n\n\t\tif ( toFocus ) {\n\t\t\t$( event.target ).attr( \"tabIndex\", -1 );\n\t\t\t$( toFocus ).attr( \"tabIndex\", 0 );\n\t\t\ttoFocus.focus();\n\t\t\tevent.preventDefault();\n\t\t}\n\t},\n\n\t_panelKeyDown: function( event ) {\n\t\tif ( event.keyCode === $.ui.keyCode.UP && event.ctrlKey ) {\n\t\t\t$( event.currentTarget ).prev().focus();\n\t\t}\n\t},\n\n\trefresh: function() {\n\t\tvar options = this.options;\n\t\tthis._processPanels();\n\n\t\t// was collapsed or no panel\n\t\tif ( ( options.active === false && options.collapsible === true ) || !this.headers.length ) {\n\t\t\toptions.active = false;\n\t\t\tthis.active = $();\n\t\t// active false only when collapsible is true\n\t\t} else if ( options.active === false ) {\n\t\t\tthis._activate( 0 );\n\t\t// was active, but active panel is gone\n\t\t} else if ( this.active.length && !$.contains( this.element[ 0 ], this.active[ 0 ] ) ) {\n\t\t\t// all remaining panel are disabled\n\t\t\tif ( this.headers.length === this.headers.find(\".ui-state-disabled\").length ) {\n\t\t\t\toptions.active = false;\n\t\t\t\tthis.active = $();\n\t\t\t// activate previous panel\n\t\t\t} else {\n\t\t\t\tthis._activate( Math.max( 0, options.active - 1 ) );\n\t\t\t}\n\t\t// was active, active panel still exists\n\t\t} else {\n\t\t\t// make sure active index is correct\n\t\t\toptions.active = this.headers.index( this.active );\n\t\t}\n\n\t\tthis._destroyIcons();\n\n\t\tthis._refresh();\n\t},\n\n\t_processPanels: function() {\n\t\tvar prevHeaders = this.headers,\n\t\t\tprevPanels = this.panels;\n\n\t\tthis.headers = this.element.find( this.options.header )\n\t\t\t.addClass( \"ui-accordion-header ui-state-default ui-corner-all\" );\n\n\t\tthis.panels = this.headers.next()\n\t\t\t.addClass( \"ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom\" )\n\t\t\t.filter( \":not(.ui-accordion-content-active)\" )\n\t\t\t.hide();\n\n\t\t// Avoid memory leaks (#10056)\n\t\tif ( prevPanels ) {\n\t\t\tthis._off( prevHeaders.not( this.headers ) );\n\t\t\tthis._off( prevPanels.not( this.panels ) );\n\t\t}\n\t},\n\n\t_refresh: function() {\n\t\tvar maxHeight,\n\t\t\toptions = this.options,\n\t\t\theightStyle = options.heightStyle,\n\t\t\tparent = this.element.parent();\n\n\t\tthis.active = this._findActive( options.active )\n\t\t\t.addClass( \"ui-accordion-header-active ui-state-active ui-corner-top\" )\n\t\t\t.removeClass( \"ui-corner-all\" );\n\t\tthis.active.next()\n\t\t\t.addClass( \"ui-accordion-content-active\" )\n\t\t\t.show();\n\n\t\tthis.headers\n\t\t\t.attr( \"role\", \"tab\" )\n\t\t\t.each(function() {\n\t\t\t\tvar header = $( this ),\n\t\t\t\t\theaderId = header.uniqueId().attr( \"id\" ),\n\t\t\t\t\tpanel = header.next(),\n\t\t\t\t\tpanelId = panel.uniqueId().attr( \"id\" );\n\t\t\t\theader.attr( \"aria-controls\", panelId );\n\t\t\t\tpanel.attr( \"aria-labelledby\", headerId );\n\t\t\t})\n\t\t\t.next()\n\t\t\t\t.attr( \"role\", \"tabpanel\" );\n\n\t\tthis.headers\n\t\t\t.not( this.active )\n\t\t\t.attr({\n\t\t\t\t\"aria-selected\": \"false\",\n\t\t\t\t\"aria-expanded\": \"false\",\n\t\t\t\ttabIndex: -1\n\t\t\t})\n\t\t\t.next()\n\t\t\t\t.attr({\n\t\t\t\t\t\"aria-hidden\": \"true\"\n\t\t\t\t})\n\t\t\t\t.hide();\n\n\t\t// make sure at least one header is in the tab order\n\t\tif ( !this.active.length ) {\n\t\t\tthis.headers.eq( 0 ).attr( \"tabIndex\", 0 );\n\t\t} else {\n\t\t\tthis.active.attr({\n\t\t\t\t\"aria-selected\": \"true\",\n\t\t\t\t\"aria-expanded\": \"true\",\n\t\t\t\ttabIndex: 0\n\t\t\t})\n\t\t\t.next()\n\t\t\t\t.attr({\n\t\t\t\t\t\"aria-hidden\": \"false\"\n\t\t\t\t});\n\t\t}\n\n\t\tthis._createIcons();\n\n\t\tthis._setupEvents( options.event );\n\n\t\tif ( heightStyle === \"fill\" ) {\n\t\t\tmaxHeight = parent.height();\n\t\t\tthis.element.siblings( \":visible\" ).each(function() {\n\t\t\t\tvar elem = $( this ),\n\t\t\t\t\tposition = elem.css( \"position\" );\n\n\t\t\t\tif ( position === \"absolute\" || position === \"fixed\" ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tmaxHeight -= elem.outerHeight( true );\n\t\t\t});\n\n\t\t\tthis.headers.each(function() {\n\t\t\t\tmaxHeight -= $( this ).outerHeight( true );\n\t\t\t});\n\n\t\t\tthis.headers.next()\n\t\t\t\t.each(function() {\n\t\t\t\t\t$( this ).height( Math.max( 0, maxHeight -\n\t\t\t\t\t\t$( this ).innerHeight() + $( this ).height() ) );\n\t\t\t\t})\n\t\t\t\t.css( \"overflow\", \"auto\" );\n\t\t} else if ( heightStyle === \"auto\" ) {\n\t\t\tmaxHeight = 0;\n\t\t\tthis.headers.next()\n\t\t\t\t.each(function() {\n\t\t\t\t\tmaxHeight = Math.max( maxHeight, $( this ).css( \"height\", \"\" ).height() );\n\t\t\t\t})\n\t\t\t\t.height( maxHeight );\n\t\t}\n\t},\n\n\t_activate: function( index ) {\n\t\tvar active = this._findActive( index )[ 0 ];\n\n\t\t// trying to activate the already active panel\n\t\tif ( active === this.active[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// trying to collapse, simulate a click on the currently active header\n\t\tactive = active || this.active[ 0 ];\n\n\t\tthis._eventHandler({\n\t\t\ttarget: active,\n\t\t\tcurrentTarget: active,\n\t\t\tpreventDefault: $.noop\n\t\t});\n\t},\n\n\t_findActive: function( selector ) {\n\t\treturn typeof selector === \"number\" ? this.headers.eq( selector ) : $();\n\t},\n\n\t_setupEvents: function( event ) {\n\t\tvar events = {\n\t\t\tkeydown: \"_keydown\"\n\t\t};\n\t\tif ( event ) {\n\t\t\t$.each( event.split( \" \" ), function( index, eventName ) {\n\t\t\t\tevents[ eventName ] = \"_eventHandler\";\n\t\t\t});\n\t\t}\n\n\t\tthis._off( this.headers.add( this.headers.next() ) );\n\t\tthis._on( this.headers, events );\n\t\tthis._on( this.headers.next(), { keydown: \"_panelKeyDown\" });\n\t\tthis._hoverable( this.headers );\n\t\tthis._focusable( this.headers );\n\t},\n\n\t_eventHandler: function( event ) {\n\t\tvar options = this.options,\n\t\t\tactive = this.active,\n\t\t\tclicked = $( event.currentTarget ),\n\t\t\tclickedIsActive = clicked[ 0 ] === active[ 0 ],\n\t\t\tcollapsing = clickedIsActive && options.collapsible,\n\t\t\ttoShow = collapsing ? $() : clicked.next(),\n\t\t\ttoHide = active.next(),\n\t\t\teventData = {\n\t\t\t\toldHeader: active,\n\t\t\t\toldPanel: toHide,\n\t\t\t\tnewHeader: collapsing ? $() : clicked,\n\t\t\t\tnewPanel: toShow\n\t\t\t};\n\n\t\tevent.preventDefault();\n\n\t\tif (\n\t\t\t\t// click on active header, but not collapsible\n\t\t\t\t( clickedIsActive && !options.collapsible ) ||\n\t\t\t\t// allow canceling activation\n\t\t\t\t( this._trigger( \"beforeActivate\", event, eventData ) === false ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\toptions.active = collapsing ? false : this.headers.index( clicked );\n\n\t\t// when the call to ._toggle() comes after the class changes\n\t\t// it causes a very odd bug in IE 8 (see #6720)\n\t\tthis.active = clickedIsActive ? $() : clicked;\n\t\tthis._toggle( eventData );\n\n\t\t// switch classes\n\t\t// corner classes on the previously active header stay after the animation\n\t\tactive.removeClass( \"ui-accordion-header-active ui-state-active\" );\n\t\tif ( options.icons ) {\n\t\t\tactive.children( \".ui-accordion-header-icon\" )\n\t\t\t\t.removeClass( options.icons.activeHeader )\n\t\t\t\t.addClass( options.icons.header );\n\t\t}\n\n\t\tif ( !clickedIsActive ) {\n\t\t\tclicked\n\t\t\t\t.removeClass( \"ui-corner-all\" )\n\t\t\t\t.addClass( \"ui-accordion-header-active ui-state-active ui-corner-top\" );\n\t\t\tif ( options.icons ) {\n\t\t\t\tclicked.children( \".ui-accordion-header-icon\" )\n\t\t\t\t\t.removeClass( options.icons.header )\n\t\t\t\t\t.addClass( options.icons.activeHeader );\n\t\t\t}\n\n\t\t\tclicked\n\t\t\t\t.next()\n\t\t\t\t.addClass( \"ui-accordion-content-active\" );\n\t\t}\n\t},\n\n\t_toggle: function( data ) {\n\t\tvar toShow = data.newPanel,\n\t\t\ttoHide = this.prevShow.length ? this.prevShow : data.oldPanel;\n\n\t\t// handle activating a panel during the animation for another activation\n\t\tthis.prevShow.add( this.prevHide ).stop( true, true );\n\t\tthis.prevShow = toShow;\n\t\tthis.prevHide = toHide;\n\n\t\tif ( this.options.animate ) {\n\t\t\tthis._animate( toShow, toHide, data );\n\t\t} else {\n\t\t\ttoHide.hide();\n\t\t\ttoShow.show();\n\t\t\tthis._toggleComplete( data );\n\t\t}\n\n\t\ttoHide.attr({\n\t\t\t\"aria-hidden\": \"true\"\n\t\t});\n\t\ttoHide.prev().attr({\n\t\t\t\"aria-selected\": \"false\",\n\t\t\t\"aria-expanded\": \"false\"\n\t\t});\n\t\t// if we're switching panels, remove the old header from the tab order\n\t\t// if we're opening from collapsed state, remove the previous header from the tab order\n\t\t// if we're collapsing, then keep the collapsing header in the tab order\n\t\tif ( toShow.length && toHide.length ) {\n\t\t\ttoHide.prev().attr({\n\t\t\t\t\"tabIndex\": -1,\n\t\t\t\t\"aria-expanded\": \"false\"\n\t\t\t});\n\t\t} else if ( toShow.length ) {\n\t\t\tthis.headers.filter(function() {\n\t\t\t\treturn parseInt( $( this ).attr( \"tabIndex\" ), 10 ) === 0;\n\t\t\t})\n\t\t\t.attr( \"tabIndex\", -1 );\n\t\t}\n\n\t\ttoShow\n\t\t\t.attr( \"aria-hidden\", \"false\" )\n\t\t\t.prev()\n\t\t\t\t.attr({\n\t\t\t\t\t\"aria-selected\": \"true\",\n\t\t\t\t\t\"aria-expanded\": \"true\",\n\t\t\t\t\ttabIndex: 0\n\t\t\t\t});\n\t},\n\n\t_animate: function( toShow, toHide, data ) {\n\t\tvar total, easing, duration,\n\t\t\tthat = this,\n\t\t\tadjust = 0,\n\t\t\tboxSizing = toShow.css( \"box-sizing\" ),\n\t\t\tdown = toShow.length &&\n\t\t\t\t( !toHide.length || ( toShow.index() < toHide.index() ) ),\n\t\t\tanimate = this.options.animate || {},\n\t\t\toptions = down && animate.down || animate,\n\t\t\tcomplete = function() {\n\t\t\t\tthat._toggleComplete( data );\n\t\t\t};\n\n\t\tif ( typeof options === \"number\" ) {\n\t\t\tduration = options;\n\t\t}\n\t\tif ( typeof options === \"string\" ) {\n\t\t\teasing = options;\n\t\t}\n\t\t// fall back from options to animation in case of partial down settings\n\t\teasing = easing || options.easing || animate.easing;\n\t\tduration = duration || options.duration || animate.duration;\n\n\t\tif ( !toHide.length ) {\n\t\t\treturn toShow.animate( this.showProps, duration, easing, complete );\n\t\t}\n\t\tif ( !toShow.length ) {\n\t\t\treturn toHide.animate( this.hideProps, duration, easing, complete );\n\t\t}\n\n\t\ttotal = toShow.show().outerHeight();\n\t\ttoHide.animate( this.hideProps, {\n\t\t\tduration: duration,\n\t\t\teasing: easing,\n\t\t\tstep: function( now, fx ) {\n\t\t\t\tfx.now = Math.round( now );\n\t\t\t}\n\t\t});\n\t\ttoShow\n\t\t\t.hide()\n\t\t\t.animate( this.showProps, {\n\t\t\t\tduration: duration,\n\t\t\t\teasing: easing,\n\t\t\t\tcomplete: complete,\n\t\t\t\tstep: function( now, fx ) {\n\t\t\t\t\tfx.now = Math.round( now );\n\t\t\t\t\tif ( fx.prop !== \"height\" ) {\n\t\t\t\t\t\tif ( boxSizing === \"content-box\" ) {\n\t\t\t\t\t\t\tadjust += fx.now;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if ( that.options.heightStyle !== \"content\" ) {\n\t\t\t\t\t\tfx.now = Math.round( total - toHide.outerHeight() - adjust );\n\t\t\t\t\t\tadjust = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\t},\n\n\t_toggleComplete: function( data ) {\n\t\tvar toHide = data.oldPanel;\n\n\t\ttoHide\n\t\t\t.removeClass( \"ui-accordion-content-active\" )\n\t\t\t.prev()\n\t\t\t\t.removeClass( \"ui-corner-top\" )\n\t\t\t\t.addClass( \"ui-corner-all\" );\n\n\t\t// Work around for rendering bug in IE (#5421)\n\t\tif ( toHide.length ) {\n\t\t\ttoHide.parent()[ 0 ].className = toHide.parent()[ 0 ].className;\n\t\t}\n\t\tthis._trigger( \"activate\", null, data );\n\t}\n});\n\n\n/*!\n * jQuery UI Menu 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/menu/\n */\n\n\nvar menu = $.widget( \"ui.menu\", {\n\tversion: \"1.11.4\",\n\tdefaultElement: \"<ul>\",\n\tdelay: 300,\n\toptions: {\n\t\ticons: {\n\t\t\tsubmenu: \"ui-icon-carat-1-e\"\n\t\t},\n\t\titems: \"> *\",\n\t\tmenus: \"ul\",\n\t\tposition: {\n\t\t\tmy: \"left-1 top\",\n\t\t\tat: \"right top\"\n\t\t},\n\t\trole: \"menu\",\n\n\t\t// callbacks\n\t\tblur: null,\n\t\tfocus: null,\n\t\tselect: null\n\t},\n\n\t_create: function() {\n\t\tthis.activeMenu = this.element;\n\n\t\t// Flag used to prevent firing of the click handler\n\t\t// as the event bubbles up through nested menus\n\t\tthis.mouseHandled = false;\n\t\tthis.element\n\t\t\t.uniqueId()\n\t\t\t.addClass( \"ui-menu ui-widget ui-widget-content\" )\n\t\t\t.toggleClass( \"ui-menu-icons\", !!this.element.find( \".ui-icon\" ).length )\n\t\t\t.attr({\n\t\t\t\trole: this.options.role,\n\t\t\t\ttabIndex: 0\n\t\t\t});\n\n\t\tif ( this.options.disabled ) {\n\t\t\tthis.element\n\t\t\t\t.addClass( \"ui-state-disabled\" )\n\t\t\t\t.attr( \"aria-disabled\", \"true\" );\n\t\t}\n\n\t\tthis._on({\n\t\t\t// Prevent focus from sticking to links inside menu after clicking\n\t\t\t// them (focus should always stay on UL during navigation).\n\t\t\t\"mousedown .ui-menu-item\": function( event ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t},\n\t\t\t\"click .ui-menu-item\": function( event ) {\n\t\t\t\tvar target = $( event.target );\n\t\t\t\tif ( !this.mouseHandled && target.not( \".ui-state-disabled\" ).length ) {\n\t\t\t\t\tthis.select( event );\n\n\t\t\t\t\t// Only set the mouseHandled flag if the event will bubble, see #9469.\n\t\t\t\t\tif ( !event.isPropagationStopped() ) {\n\t\t\t\t\t\tthis.mouseHandled = true;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Open submenu on click\n\t\t\t\t\tif ( target.has( \".ui-menu\" ).length ) {\n\t\t\t\t\t\tthis.expand( event );\n\t\t\t\t\t} else if ( !this.element.is( \":focus\" ) && $( this.document[ 0 ].activeElement ).closest( \".ui-menu\" ).length ) {\n\n\t\t\t\t\t\t// Redirect focus to the menu\n\t\t\t\t\t\tthis.element.trigger( \"focus\", [ true ] );\n\n\t\t\t\t\t\t// If the active item is on the top level, let it stay active.\n\t\t\t\t\t\t// Otherwise, blur the active item since it is no longer visible.\n\t\t\t\t\t\tif ( this.active && this.active.parents( \".ui-menu\" ).length === 1 ) {\n\t\t\t\t\t\t\tclearTimeout( this.timer );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"mouseenter .ui-menu-item\": function( event ) {\n\t\t\t\t// Ignore mouse events while typeahead is active, see #10458.\n\t\t\t\t// Prevents focusing the wrong item when typeahead causes a scroll while the mouse\n\t\t\t\t// is over an item in the menu\n\t\t\t\tif ( this.previousFilter ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tvar target = $( event.currentTarget );\n\t\t\t\t// Remove ui-state-active class from siblings of the newly focused menu item\n\t\t\t\t// to avoid a jump caused by adjacent elements both having a class with a border\n\t\t\t\ttarget.siblings( \".ui-state-active\" ).removeClass( \"ui-state-active\" );\n\t\t\t\tthis.focus( event, target );\n\t\t\t},\n\t\t\tmouseleave: \"collapseAll\",\n\t\t\t\"mouseleave .ui-menu\": \"collapseAll\",\n\t\t\tfocus: function( event, keepActiveItem ) {\n\t\t\t\t// If there's already an active item, keep it active\n\t\t\t\t// If not, activate the first item\n\t\t\t\tvar item = this.active || this.element.find( this.options.items ).eq( 0 );\n\n\t\t\t\tif ( !keepActiveItem ) {\n\t\t\t\t\tthis.focus( event, item );\n\t\t\t\t}\n\t\t\t},\n\t\t\tblur: function( event ) {\n\t\t\t\tthis._delay(function() {\n\t\t\t\t\tif ( !$.contains( this.element[0], this.document[0].activeElement ) ) {\n\t\t\t\t\t\tthis.collapseAll( event );\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t},\n\t\t\tkeydown: \"_keydown\"\n\t\t});\n\n\t\tthis.refresh();\n\n\t\t// Clicks outside of a menu collapse any open menus\n\t\tthis._on( this.document, {\n\t\t\tclick: function( event ) {\n\t\t\t\tif ( this._closeOnDocumentClick( event ) ) {\n\t\t\t\t\tthis.collapseAll( event );\n\t\t\t\t}\n\n\t\t\t\t// Reset the mouseHandled flag\n\t\t\t\tthis.mouseHandled = false;\n\t\t\t}\n\t\t});\n\t},\n\n\t_destroy: function() {\n\t\t// Destroy (sub)menus\n\t\tthis.element\n\t\t\t.removeAttr( \"aria-activedescendant\" )\n\t\t\t.find( \".ui-menu\" ).addBack()\n\t\t\t\t.removeClass( \"ui-menu ui-widget ui-widget-content ui-menu-icons ui-front\" )\n\t\t\t\t.removeAttr( \"role\" )\n\t\t\t\t.removeAttr( \"tabIndex\" )\n\t\t\t\t.removeAttr( \"aria-labelledby\" )\n\t\t\t\t.removeAttr( \"aria-expanded\" )\n\t\t\t\t.removeAttr( \"aria-hidden\" )\n\t\t\t\t.removeAttr( \"aria-disabled\" )\n\t\t\t\t.removeUniqueId()\n\t\t\t\t.show();\n\n\t\t// Destroy menu items\n\t\tthis.element.find( \".ui-menu-item\" )\n\t\t\t.removeClass( \"ui-menu-item\" )\n\t\t\t.removeAttr( \"role\" )\n\t\t\t.removeAttr( \"aria-disabled\" )\n\t\t\t.removeUniqueId()\n\t\t\t.removeClass( \"ui-state-hover\" )\n\t\t\t.removeAttr( \"tabIndex\" )\n\t\t\t.removeAttr( \"role\" )\n\t\t\t.removeAttr( \"aria-haspopup\" )\n\t\t\t.children().each( function() {\n\t\t\t\tvar elem = $( this );\n\t\t\t\tif ( elem.data( \"ui-menu-submenu-carat\" ) ) {\n\t\t\t\t\telem.remove();\n\t\t\t\t}\n\t\t\t});\n\n\t\t// Destroy menu dividers\n\t\tthis.element.find( \".ui-menu-divider\" ).removeClass( \"ui-menu-divider ui-widget-content\" );\n\t},\n\n\t_keydown: function( event ) {\n\t\tvar match, prev, character, skip,\n\t\t\tpreventDefault = true;\n\n\t\tswitch ( event.keyCode ) {\n\t\tcase $.ui.keyCode.PAGE_UP:\n\t\t\tthis.previousPage( event );\n\t\t\tbreak;\n\t\tcase $.ui.keyCode.PAGE_DOWN:\n\t\t\tthis.nextPage( event );\n\t\t\tbreak;\n\t\tcase $.ui.keyCode.HOME:\n\t\t\tthis._move( \"first\", \"first\", event );\n\t\t\tbreak;\n\t\tcase $.ui.keyCode.END:\n\t\t\tthis._move( \"last\", \"last\", event );\n\t\t\tbreak;\n\t\tcase $.ui.keyCode.UP:\n\t\t\tthis.previous( event );\n\t\t\tbreak;\n\t\tcase $.ui.keyCode.DOWN:\n\t\t\tthis.next( event );\n\t\t\tbreak;\n\t\tcase $.ui.keyCode.LEFT:\n\t\t\tthis.collapse( event );\n\t\t\tbreak;\n\t\tcase $.ui.keyCode.RIGHT:\n\t\t\tif ( this.active && !this.active.is( \".ui-state-disabled\" ) ) {\n\t\t\t\tthis.expand( event );\n\t\t\t}\n\t\t\tbreak;\n\t\tcase $.ui.keyCode.ENTER:\n\t\tcase $.ui.keyCode.SPACE:\n\t\t\tthis._activate( event );\n\t\t\tbreak;\n\t\tcase $.ui.keyCode.ESCAPE:\n\t\t\tthis.collapse( event );\n\t\t\tbreak;\n\t\tdefault:\n\t\t\tpreventDefault = false;\n\t\t\tprev = this.previousFilter || \"\";\n\t\t\tcharacter = String.fromCharCode( event.keyCode );\n\t\t\tskip = false;\n\n\t\t\tclearTimeout( this.filterTimer );\n\n\t\t\tif ( character === prev ) {\n\t\t\t\tskip = true;\n\t\t\t} else {\n\t\t\t\tcharacter = prev + character;\n\t\t\t}\n\n\t\t\tmatch = this._filterMenuItems( character );\n\t\t\tmatch = skip && match.index( this.active.next() ) !== -1 ?\n\t\t\t\tthis.active.nextAll( \".ui-menu-item\" ) :\n\t\t\t\tmatch;\n\n\t\t\t// If no matches on the current filter, reset to the last character pressed\n\t\t\t// to move down the menu to the first item that starts with that character\n\t\t\tif ( !match.length ) {\n\t\t\t\tcharacter = String.fromCharCode( event.keyCode );\n\t\t\t\tmatch = this._filterMenuItems( character );\n\t\t\t}\n\n\t\t\tif ( match.length ) {\n\t\t\t\tthis.focus( event, match );\n\t\t\t\tthis.previousFilter = character;\n\t\t\t\tthis.filterTimer = this._delay(function() {\n\t\t\t\t\tdelete this.previousFilter;\n\t\t\t\t}, 1000 );\n\t\t\t} else {\n\t\t\t\tdelete this.previousFilter;\n\t\t\t}\n\t\t}\n\n\t\tif ( preventDefault ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\t},\n\n\t_activate: function( event ) {\n\t\tif ( !this.active.is( \".ui-state-disabled\" ) ) {\n\t\t\tif ( this.active.is( \"[aria-haspopup='true']\" ) ) {\n\t\t\t\tthis.expand( event );\n\t\t\t} else {\n\t\t\t\tthis.select( event );\n\t\t\t}\n\t\t}\n\t},\n\n\trefresh: function() {\n\t\tvar menus, items,\n\t\t\tthat = this,\n\t\t\ticon = this.options.icons.submenu,\n\t\t\tsubmenus = this.element.find( this.options.menus );\n\n\t\tthis.element.toggleClass( \"ui-menu-icons\", !!this.element.find( \".ui-icon\" ).length );\n\n\t\t// Initialize nested menus\n\t\tsubmenus.filter( \":not(.ui-menu)\" )\n\t\t\t.addClass( \"ui-menu ui-widget ui-widget-content ui-front\" )\n\t\t\t.hide()\n\t\t\t.attr({\n\t\t\t\trole: this.options.role,\n\t\t\t\t\"aria-hidden\": \"true\",\n\t\t\t\t\"aria-expanded\": \"false\"\n\t\t\t})\n\t\t\t.each(function() {\n\t\t\t\tvar menu = $( this ),\n\t\t\t\t\titem = menu.parent(),\n\t\t\t\t\tsubmenuCarat = $( \"<span>\" )\n\t\t\t\t\t\t.addClass( \"ui-menu-icon ui-icon \" + icon )\n\t\t\t\t\t\t.data( \"ui-menu-submenu-carat\", true );\n\n\t\t\t\titem\n\t\t\t\t\t.attr( \"aria-haspopup\", \"true\" )\n\t\t\t\t\t.prepend( submenuCarat );\n\t\t\t\tmenu.attr( \"aria-labelledby\", item.attr( \"id\" ) );\n\t\t\t});\n\n\t\tmenus = submenus.add( this.element );\n\t\titems = menus.find( this.options.items );\n\n\t\t// Initialize menu-items containing spaces and/or dashes only as dividers\n\t\titems.not( \".ui-menu-item\" ).each(function() {\n\t\t\tvar item = $( this );\n\t\t\tif ( that._isDivider( item ) ) {\n\t\t\t\titem.addClass( \"ui-widget-content ui-menu-divider\" );\n\t\t\t}\n\t\t});\n\n\t\t// Don't refresh list items that are already adapted\n\t\titems.not( \".ui-menu-item, .ui-menu-divider\" )\n\t\t\t.addClass( \"ui-menu-item\" )\n\t\t\t.uniqueId()\n\t\t\t.attr({\n\t\t\t\ttabIndex: -1,\n\t\t\t\trole: this._itemRole()\n\t\t\t});\n\n\t\t// Add aria-disabled attribute to any disabled menu item\n\t\titems.filter( \".ui-state-disabled\" ).attr( \"aria-disabled\", \"true\" );\n\n\t\t// If the active item has been removed, blur the menu\n\t\tif ( this.active && !$.contains( this.element[ 0 ], this.active[ 0 ] ) ) {\n\t\t\tthis.blur();\n\t\t}\n\t},\n\n\t_itemRole: function() {\n\t\treturn {\n\t\t\tmenu: \"menuitem\",\n\t\t\tlistbox: \"option\"\n\t\t}[ this.options.role ];\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tif ( key === \"icons\" ) {\n\t\t\tthis.element.find( \".ui-menu-icon\" )\n\t\t\t\t.removeClass( this.options.icons.submenu )\n\t\t\t\t.addClass( value.submenu );\n\t\t}\n\t\tif ( key === \"disabled\" ) {\n\t\t\tthis.element\n\t\t\t\t.toggleClass( \"ui-state-disabled\", !!value )\n\t\t\t\t.attr( \"aria-disabled\", value );\n\t\t}\n\t\tthis._super( key, value );\n\t},\n\n\tfocus: function( event, item ) {\n\t\tvar nested, focused;\n\t\tthis.blur( event, event && event.type === \"focus\" );\n\n\t\tthis._scrollIntoView( item );\n\n\t\tthis.active = item.first();\n\t\tfocused = this.active.addClass( \"ui-state-focus\" ).removeClass( \"ui-state-active\" );\n\t\t// Only update aria-activedescendant if there's a role\n\t\t// otherwise we assume focus is managed elsewhere\n\t\tif ( this.options.role ) {\n\t\t\tthis.element.attr( \"aria-activedescendant\", focused.attr( \"id\" ) );\n\t\t}\n\n\t\t// Highlight active parent menu item, if any\n\t\tthis.active\n\t\t\t.parent()\n\t\t\t.closest( \".ui-menu-item\" )\n\t\t\t.addClass( \"ui-state-active\" );\n\n\t\tif ( event && event.type === \"keydown\" ) {\n\t\t\tthis._close();\n\t\t} else {\n\t\t\tthis.timer = this._delay(function() {\n\t\t\t\tthis._close();\n\t\t\t}, this.delay );\n\t\t}\n\n\t\tnested = item.children( \".ui-menu\" );\n\t\tif ( nested.length && event && ( /^mouse/.test( event.type ) ) ) {\n\t\t\tthis._startOpening(nested);\n\t\t}\n\t\tthis.activeMenu = item.parent();\n\n\t\tthis._trigger( \"focus\", event, { item: item } );\n\t},\n\n\t_scrollIntoView: function( item ) {\n\t\tvar borderTop, paddingTop, offset, scroll, elementHeight, itemHeight;\n\t\tif ( this._hasScroll() ) {\n\t\t\tborderTop = parseFloat( $.css( this.activeMenu[0], \"borderTopWidth\" ) ) || 0;\n\t\t\tpaddingTop = parseFloat( $.css( this.activeMenu[0], \"paddingTop\" ) ) || 0;\n\t\t\toffset = item.offset().top - this.activeMenu.offset().top - borderTop - paddingTop;\n\t\t\tscroll = this.activeMenu.scrollTop();\n\t\t\telementHeight = this.activeMenu.height();\n\t\t\titemHeight = item.outerHeight();\n\n\t\t\tif ( offset < 0 ) {\n\t\t\t\tthis.activeMenu.scrollTop( scroll + offset );\n\t\t\t} else if ( offset + itemHeight > elementHeight ) {\n\t\t\t\tthis.activeMenu.scrollTop( scroll + offset - elementHeight + itemHeight );\n\t\t\t}\n\t\t}\n\t},\n\n\tblur: function( event, fromFocus ) {\n\t\tif ( !fromFocus ) {\n\t\t\tclearTimeout( this.timer );\n\t\t}\n\n\t\tif ( !this.active ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.active.removeClass( \"ui-state-focus\" );\n\t\tthis.active = null;\n\n\t\tthis._trigger( \"blur\", event, { item: this.active } );\n\t},\n\n\t_startOpening: function( submenu ) {\n\t\tclearTimeout( this.timer );\n\n\t\t// Don't open if already open fixes a Firefox bug that caused a .5 pixel\n\t\t// shift in the submenu position when mousing over the carat icon\n\t\tif ( submenu.attr( \"aria-hidden\" ) !== \"true\" ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.timer = this._delay(function() {\n\t\t\tthis._close();\n\t\t\tthis._open( submenu );\n\t\t}, this.delay );\n\t},\n\n\t_open: function( submenu ) {\n\t\tvar position = $.extend({\n\t\t\tof: this.active\n\t\t}, this.options.position );\n\n\t\tclearTimeout( this.timer );\n\t\tthis.element.find( \".ui-menu\" ).not( submenu.parents( \".ui-menu\" ) )\n\t\t\t.hide()\n\t\t\t.attr( \"aria-hidden\", \"true\" );\n\n\t\tsubmenu\n\t\t\t.show()\n\t\t\t.removeAttr( \"aria-hidden\" )\n\t\t\t.attr( \"aria-expanded\", \"true\" )\n\t\t\t.position( position );\n\t},\n\n\tcollapseAll: function( event, all ) {\n\t\tclearTimeout( this.timer );\n\t\tthis.timer = this._delay(function() {\n\t\t\t// If we were passed an event, look for the submenu that contains the event\n\t\t\tvar currentMenu = all ? this.element :\n\t\t\t\t$( event && event.target ).closest( this.element.find( \".ui-menu\" ) );\n\n\t\t\t// If we found no valid submenu ancestor, use the main menu to close all sub menus anyway\n\t\t\tif ( !currentMenu.length ) {\n\t\t\t\tcurrentMenu = this.element;\n\t\t\t}\n\n\t\t\tthis._close( currentMenu );\n\n\t\t\tthis.blur( event );\n\t\t\tthis.activeMenu = currentMenu;\n\t\t}, this.delay );\n\t},\n\n\t// With no arguments, closes the currently active menu - if nothing is active\n\t// it closes all menus.  If passed an argument, it will search for menus BELOW\n\t_close: function( startMenu ) {\n\t\tif ( !startMenu ) {\n\t\t\tstartMenu = this.active ? this.active.parent() : this.element;\n\t\t}\n\n\t\tstartMenu\n\t\t\t.find( \".ui-menu\" )\n\t\t\t\t.hide()\n\t\t\t\t.attr( \"aria-hidden\", \"true\" )\n\t\t\t\t.attr( \"aria-expanded\", \"false\" )\n\t\t\t.end()\n\t\t\t.find( \".ui-state-active\" ).not( \".ui-state-focus\" )\n\t\t\t\t.removeClass( \"ui-state-active\" );\n\t},\n\n\t_closeOnDocumentClick: function( event ) {\n\t\treturn !$( event.target ).closest( \".ui-menu\" ).length;\n\t},\n\n\t_isDivider: function( item ) {\n\n\t\t// Match hyphen, em dash, en dash\n\t\treturn !/[^\\-\\u2014\\u2013\\s]/.test( item.text() );\n\t},\n\n\tcollapse: function( event ) {\n\t\tvar newItem = this.active &&\n\t\t\tthis.active.parent().closest( \".ui-menu-item\", this.element );\n\t\tif ( newItem && newItem.length ) {\n\t\t\tthis._close();\n\t\t\tthis.focus( event, newItem );\n\t\t}\n\t},\n\n\texpand: function( event ) {\n\t\tvar newItem = this.active &&\n\t\t\tthis.active\n\t\t\t\t.children( \".ui-menu \" )\n\t\t\t\t.find( this.options.items )\n\t\t\t\t.first();\n\n\t\tif ( newItem && newItem.length ) {\n\t\t\tthis._open( newItem.parent() );\n\n\t\t\t// Delay so Firefox will not hide activedescendant change in expanding submenu from AT\n\t\t\tthis._delay(function() {\n\t\t\t\tthis.focus( event, newItem );\n\t\t\t});\n\t\t}\n\t},\n\n\tnext: function( event ) {\n\t\tthis._move( \"next\", \"first\", event );\n\t},\n\n\tprevious: function( event ) {\n\t\tthis._move( \"prev\", \"last\", event );\n\t},\n\n\tisFirstItem: function() {\n\t\treturn this.active && !this.active.prevAll( \".ui-menu-item\" ).length;\n\t},\n\n\tisLastItem: function() {\n\t\treturn this.active && !this.active.nextAll( \".ui-menu-item\" ).length;\n\t},\n\n\t_move: function( direction, filter, event ) {\n\t\tvar next;\n\t\tif ( this.active ) {\n\t\t\tif ( direction === \"first\" || direction === \"last\" ) {\n\t\t\t\tnext = this.active\n\t\t\t\t\t[ direction === \"first\" ? \"prevAll\" : \"nextAll\" ]( \".ui-menu-item\" )\n\t\t\t\t\t.eq( -1 );\n\t\t\t} else {\n\t\t\t\tnext = this.active\n\t\t\t\t\t[ direction + \"All\" ]( \".ui-menu-item\" )\n\t\t\t\t\t.eq( 0 );\n\t\t\t}\n\t\t}\n\t\tif ( !next || !next.length || !this.active ) {\n\t\t\tnext = this.activeMenu.find( this.options.items )[ filter ]();\n\t\t}\n\n\t\tthis.focus( event, next );\n\t},\n\n\tnextPage: function( event ) {\n\t\tvar item, base, height;\n\n\t\tif ( !this.active ) {\n\t\t\tthis.next( event );\n\t\t\treturn;\n\t\t}\n\t\tif ( this.isLastItem() ) {\n\t\t\treturn;\n\t\t}\n\t\tif ( this._hasScroll() ) {\n\t\t\tbase = this.active.offset().top;\n\t\t\theight = this.element.height();\n\t\t\tthis.active.nextAll( \".ui-menu-item\" ).each(function() {\n\t\t\t\titem = $( this );\n\t\t\t\treturn item.offset().top - base - height < 0;\n\t\t\t});\n\n\t\t\tthis.focus( event, item );\n\t\t} else {\n\t\t\tthis.focus( event, this.activeMenu.find( this.options.items )\n\t\t\t\t[ !this.active ? \"first\" : \"last\" ]() );\n\t\t}\n\t},\n\n\tpreviousPage: function( event ) {\n\t\tvar item, base, height;\n\t\tif ( !this.active ) {\n\t\t\tthis.next( event );\n\t\t\treturn;\n\t\t}\n\t\tif ( this.isFirstItem() ) {\n\t\t\treturn;\n\t\t}\n\t\tif ( this._hasScroll() ) {\n\t\t\tbase = this.active.offset().top;\n\t\t\theight = this.element.height();\n\t\t\tthis.active.prevAll( \".ui-menu-item\" ).each(function() {\n\t\t\t\titem = $( this );\n\t\t\t\treturn item.offset().top - base + height > 0;\n\t\t\t});\n\n\t\t\tthis.focus( event, item );\n\t\t} else {\n\t\t\tthis.focus( event, this.activeMenu.find( this.options.items ).first() );\n\t\t}\n\t},\n\n\t_hasScroll: function() {\n\t\treturn this.element.outerHeight() < this.element.prop( \"scrollHeight\" );\n\t},\n\n\tselect: function( event ) {\n\t\t// TODO: It should never be possible to not have an active item at this\n\t\t// point, but the tests don't trigger mouseenter before click.\n\t\tthis.active = this.active || $( event.target ).closest( \".ui-menu-item\" );\n\t\tvar ui = { item: this.active };\n\t\tif ( !this.active.has( \".ui-menu\" ).length ) {\n\t\t\tthis.collapseAll( event, true );\n\t\t}\n\t\tthis._trigger( \"select\", event, ui );\n\t},\n\n\t_filterMenuItems: function(character) {\n\t\tvar escapedCharacter = character.replace( /[\\-\\[\\]{}()*+?.,\\\\\\^$|#\\s]/g, \"\\\\$&\" ),\n\t\t\tregex = new RegExp( \"^\" + escapedCharacter, \"i\" );\n\n\t\treturn this.activeMenu\n\t\t\t.find( this.options.items )\n\n\t\t\t// Only match on items, not dividers or other content (#10571)\n\t\t\t.filter( \".ui-menu-item\" )\n\t\t\t.filter(function() {\n\t\t\t\treturn regex.test( $.trim( $( this ).text() ) );\n\t\t\t});\n\t}\n});\n\n\n/*!\n * jQuery UI Autocomplete 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/autocomplete/\n */\n\n\n$.widget( \"ui.autocomplete\", {\n\tversion: \"1.11.4\",\n\tdefaultElement: \"<input>\",\n\toptions: {\n\t\tappendTo: null,\n\t\tautoFocus: false,\n\t\tdelay: 300,\n\t\tminLength: 1,\n\t\tposition: {\n\t\t\tmy: \"left top\",\n\t\t\tat: \"left bottom\",\n\t\t\tcollision: \"none\"\n\t\t},\n\t\tsource: null,\n\n\t\t// callbacks\n\t\tchange: null,\n\t\tclose: null,\n\t\tfocus: null,\n\t\topen: null,\n\t\tresponse: null,\n\t\tsearch: null,\n\t\tselect: null\n\t},\n\n\trequestIndex: 0,\n\tpending: 0,\n\n\t_create: function() {\n\t\t// Some browsers only repeat keydown events, not keypress events,\n\t\t// so we use the suppressKeyPress flag to determine if we've already\n\t\t// handled the keydown event. #7269\n\t\t// Unfortunately the code for & in keypress is the same as the up arrow,\n\t\t// so we use the suppressKeyPressRepeat flag to avoid handling keypress\n\t\t// events when we know the keydown event was used to modify the\n\t\t// search term. #7799\n\t\tvar suppressKeyPress, suppressKeyPressRepeat, suppressInput,\n\t\t\tnodeName = this.element[ 0 ].nodeName.toLowerCase(),\n\t\t\tisTextarea = nodeName === \"textarea\",\n\t\t\tisInput = nodeName === \"input\";\n\n\t\tthis.isMultiLine =\n\t\t\t// Textareas are always multi-line\n\t\t\tisTextarea ? true :\n\t\t\t// Inputs are always single-line, even if inside a contentEditable element\n\t\t\t// IE also treats inputs as contentEditable\n\t\t\tisInput ? false :\n\t\t\t// All other element types are determined by whether or not they're contentEditable\n\t\t\tthis.element.prop( \"isContentEditable\" );\n\n\t\tthis.valueMethod = this.element[ isTextarea || isInput ? \"val\" : \"text\" ];\n\t\tthis.isNewMenu = true;\n\n\t\tthis.element\n\t\t\t.addClass( \"ui-autocomplete-input\" )\n\t\t\t.attr( \"autocomplete\", \"off\" );\n\n\t\tthis._on( this.element, {\n\t\t\tkeydown: function( event ) {\n\t\t\t\tif ( this.element.prop( \"readOnly\" ) ) {\n\t\t\t\t\tsuppressKeyPress = true;\n\t\t\t\t\tsuppressInput = true;\n\t\t\t\t\tsuppressKeyPressRepeat = true;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tsuppressKeyPress = false;\n\t\t\t\tsuppressInput = false;\n\t\t\t\tsuppressKeyPressRepeat = false;\n\t\t\t\tvar keyCode = $.ui.keyCode;\n\t\t\t\tswitch ( event.keyCode ) {\n\t\t\t\tcase keyCode.PAGE_UP:\n\t\t\t\t\tsuppressKeyPress = true;\n\t\t\t\t\tthis._move( \"previousPage\", event );\n\t\t\t\t\tbreak;\n\t\t\t\tcase keyCode.PAGE_DOWN:\n\t\t\t\t\tsuppressKeyPress = true;\n\t\t\t\t\tthis._move( \"nextPage\", event );\n\t\t\t\t\tbreak;\n\t\t\t\tcase keyCode.UP:\n\t\t\t\t\tsuppressKeyPress = true;\n\t\t\t\t\tthis._keyEvent( \"previous\", event );\n\t\t\t\t\tbreak;\n\t\t\t\tcase keyCode.DOWN:\n\t\t\t\t\tsuppressKeyPress = true;\n\t\t\t\t\tthis._keyEvent( \"next\", event );\n\t\t\t\t\tbreak;\n\t\t\t\tcase keyCode.ENTER:\n\t\t\t\t\t// when menu is open and has focus\n\t\t\t\t\tif ( this.menu.active ) {\n\t\t\t\t\t\t// #6055 - Opera still allows the keypress to occur\n\t\t\t\t\t\t// which causes forms to submit\n\t\t\t\t\t\tsuppressKeyPress = true;\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\tthis.menu.select( event );\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase keyCode.TAB:\n\t\t\t\t\tif ( this.menu.active ) {\n\t\t\t\t\t\tthis.menu.select( event );\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase keyCode.ESCAPE:\n\t\t\t\t\tif ( this.menu.element.is( \":visible\" ) ) {\n\t\t\t\t\t\tif ( !this.isMultiLine ) {\n\t\t\t\t\t\t\tthis._value( this.term );\n\t\t\t\t\t\t}\n\t\t\t\t\t\tthis.close( event );\n\t\t\t\t\t\t// Different browsers have different default behavior for escape\n\t\t\t\t\t\t// Single press can mean undo or clear\n\t\t\t\t\t\t// Double press in IE means clear the whole form\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\tsuppressKeyPressRepeat = true;\n\t\t\t\t\t// search timeout should be triggered before the input value is changed\n\t\t\t\t\tthis._searchTimeout( event );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t},\n\t\t\tkeypress: function( event ) {\n\t\t\t\tif ( suppressKeyPress ) {\n\t\t\t\t\tsuppressKeyPress = false;\n\t\t\t\t\tif ( !this.isMultiLine || this.menu.element.is( \":visible\" ) ) {\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t}\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif ( suppressKeyPressRepeat ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// replicate some key handlers to allow them to repeat in Firefox and Opera\n\t\t\t\tvar keyCode = $.ui.keyCode;\n\t\t\t\tswitch ( event.keyCode ) {\n\t\t\t\tcase keyCode.PAGE_UP:\n\t\t\t\t\tthis._move( \"previousPage\", event );\n\t\t\t\t\tbreak;\n\t\t\t\tcase keyCode.PAGE_DOWN:\n\t\t\t\t\tthis._move( \"nextPage\", event );\n\t\t\t\t\tbreak;\n\t\t\t\tcase keyCode.UP:\n\t\t\t\t\tthis._keyEvent( \"previous\", event );\n\t\t\t\t\tbreak;\n\t\t\t\tcase keyCode.DOWN:\n\t\t\t\t\tthis._keyEvent( \"next\", event );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t},\n\t\t\tinput: function( event ) {\n\t\t\t\tif ( suppressInput ) {\n\t\t\t\t\tsuppressInput = false;\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tthis._searchTimeout( event );\n\t\t\t},\n\t\t\tfocus: function() {\n\t\t\t\tthis.selectedItem = null;\n\t\t\t\tthis.previous = this._value();\n\t\t\t},\n\t\t\tblur: function( event ) {\n\t\t\t\tif ( this.cancelBlur ) {\n\t\t\t\t\tdelete this.cancelBlur;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tclearTimeout( this.searching );\n\t\t\t\tthis.close( event );\n\t\t\t\tthis._change( event );\n\t\t\t}\n\t\t});\n\n\t\tthis._initSource();\n\t\tthis.menu = $( \"<ul>\" )\n\t\t\t.addClass( \"ui-autocomplete ui-front\" )\n\t\t\t.appendTo( this._appendTo() )\n\t\t\t.menu({\n\t\t\t\t// disable ARIA support, the live region takes care of that\n\t\t\t\trole: null\n\t\t\t})\n\t\t\t.hide()\n\t\t\t.menu( \"instance\" );\n\n\t\tthis._on( this.menu.element, {\n\t\t\tmousedown: function( event ) {\n\t\t\t\t// prevent moving focus out of the text field\n\t\t\t\tevent.preventDefault();\n\n\t\t\t\t// IE doesn't prevent moving focus even with event.preventDefault()\n\t\t\t\t// so we set a flag to know when we should ignore the blur event\n\t\t\t\tthis.cancelBlur = true;\n\t\t\t\tthis._delay(function() {\n\t\t\t\t\tdelete this.cancelBlur;\n\t\t\t\t});\n\n\t\t\t\t// clicking on the scrollbar causes focus to shift to the body\n\t\t\t\t// but we can't detect a mouseup or a click immediately afterward\n\t\t\t\t// so we have to track the next mousedown and close the menu if\n\t\t\t\t// the user clicks somewhere outside of the autocomplete\n\t\t\t\tvar menuElement = this.menu.element[ 0 ];\n\t\t\t\tif ( !$( event.target ).closest( \".ui-menu-item\" ).length ) {\n\t\t\t\t\tthis._delay(function() {\n\t\t\t\t\t\tvar that = this;\n\t\t\t\t\t\tthis.document.one( \"mousedown\", function( event ) {\n\t\t\t\t\t\t\tif ( event.target !== that.element[ 0 ] &&\n\t\t\t\t\t\t\t\t\tevent.target !== menuElement &&\n\t\t\t\t\t\t\t\t\t!$.contains( menuElement, event.target ) ) {\n\t\t\t\t\t\t\t\tthat.close();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t},\n\t\t\tmenufocus: function( event, ui ) {\n\t\t\t\tvar label, item;\n\t\t\t\t// support: Firefox\n\t\t\t\t// Prevent accidental activation of menu items in Firefox (#7024 #9118)\n\t\t\t\tif ( this.isNewMenu ) {\n\t\t\t\t\tthis.isNewMenu = false;\n\t\t\t\t\tif ( event.originalEvent && /^mouse/.test( event.originalEvent.type ) ) {\n\t\t\t\t\t\tthis.menu.blur();\n\n\t\t\t\t\t\tthis.document.one( \"mousemove\", function() {\n\t\t\t\t\t\t\t$( event.target ).trigger( event.originalEvent );\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\titem = ui.item.data( \"ui-autocomplete-item\" );\n\t\t\t\tif ( false !== this._trigger( \"focus\", event, { item: item } ) ) {\n\t\t\t\t\t// use value to match what will end up in the input, if it was a key event\n\t\t\t\t\tif ( event.originalEvent && /^key/.test( event.originalEvent.type ) ) {\n\t\t\t\t\t\tthis._value( item.value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Announce the value in the liveRegion\n\t\t\t\tlabel = ui.item.attr( \"aria-label\" ) || item.value;\n\t\t\t\tif ( label && $.trim( label ).length ) {\n\t\t\t\t\tthis.liveRegion.children().hide();\n\t\t\t\t\t$( \"<div>\" ).text( label ).appendTo( this.liveRegion );\n\t\t\t\t}\n\t\t\t},\n\t\t\tmenuselect: function( event, ui ) {\n\t\t\t\tvar item = ui.item.data( \"ui-autocomplete-item\" ),\n\t\t\t\t\tprevious = this.previous;\n\n\t\t\t\t// only trigger when focus was lost (click on menu)\n\t\t\t\tif ( this.element[ 0 ] !== this.document[ 0 ].activeElement ) {\n\t\t\t\t\tthis.element.focus();\n\t\t\t\t\tthis.previous = previous;\n\t\t\t\t\t// #6109 - IE triggers two focus events and the second\n\t\t\t\t\t// is asynchronous, so we need to reset the previous\n\t\t\t\t\t// term synchronously and asynchronously :-(\n\t\t\t\t\tthis._delay(function() {\n\t\t\t\t\t\tthis.previous = previous;\n\t\t\t\t\t\tthis.selectedItem = item;\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tif ( false !== this._trigger( \"select\", event, { item: item } ) ) {\n\t\t\t\t\tthis._value( item.value );\n\t\t\t\t}\n\t\t\t\t// reset the term after the select event\n\t\t\t\t// this allows custom select handling to work properly\n\t\t\t\tthis.term = this._value();\n\n\t\t\t\tthis.close( event );\n\t\t\t\tthis.selectedItem = item;\n\t\t\t}\n\t\t});\n\n\t\tthis.liveRegion = $( \"<span>\", {\n\t\t\t\trole: \"status\",\n\t\t\t\t\"aria-live\": \"assertive\",\n\t\t\t\t\"aria-relevant\": \"additions\"\n\t\t\t})\n\t\t\t.addClass( \"ui-helper-hidden-accessible\" )\n\t\t\t.appendTo( this.document[ 0 ].body );\n\n\t\t// turning off autocomplete prevents the browser from remembering the\n\t\t// value when navigating through history, so we re-enable autocomplete\n\t\t// if the page is unloaded before the widget is destroyed. #7790\n\t\tthis._on( this.window, {\n\t\t\tbeforeunload: function() {\n\t\t\t\tthis.element.removeAttr( \"autocomplete\" );\n\t\t\t}\n\t\t});\n\t},\n\n\t_destroy: function() {\n\t\tclearTimeout( this.searching );\n\t\tthis.element\n\t\t\t.removeClass( \"ui-autocomplete-input\" )\n\t\t\t.removeAttr( \"autocomplete\" );\n\t\tthis.menu.element.remove();\n\t\tthis.liveRegion.remove();\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tthis._super( key, value );\n\t\tif ( key === \"source\" ) {\n\t\t\tthis._initSource();\n\t\t}\n\t\tif ( key === \"appendTo\" ) {\n\t\t\tthis.menu.element.appendTo( this._appendTo() );\n\t\t}\n\t\tif ( key === \"disabled\" && value && this.xhr ) {\n\t\t\tthis.xhr.abort();\n\t\t}\n\t},\n\n\t_appendTo: function() {\n\t\tvar element = this.options.appendTo;\n\n\t\tif ( element ) {\n\t\t\telement = element.jquery || element.nodeType ?\n\t\t\t\t$( element ) :\n\t\t\t\tthis.document.find( element ).eq( 0 );\n\t\t}\n\n\t\tif ( !element || !element[ 0 ] ) {\n\t\t\telement = this.element.closest( \".ui-front\" );\n\t\t}\n\n\t\tif ( !element.length ) {\n\t\t\telement = this.document[ 0 ].body;\n\t\t}\n\n\t\treturn element;\n\t},\n\n\t_initSource: function() {\n\t\tvar array, url,\n\t\t\tthat = this;\n\t\tif ( $.isArray( this.options.source ) ) {\n\t\t\tarray = this.options.source;\n\t\t\tthis.source = function( request, response ) {\n\t\t\t\tresponse( $.ui.autocomplete.filter( array, request.term ) );\n\t\t\t};\n\t\t} else if ( typeof this.options.source === \"string\" ) {\n\t\t\turl = this.options.source;\n\t\t\tthis.source = function( request, response ) {\n\t\t\t\tif ( that.xhr ) {\n\t\t\t\t\tthat.xhr.abort();\n\t\t\t\t}\n\t\t\t\tthat.xhr = $.ajax({\n\t\t\t\t\turl: url,\n\t\t\t\t\tdata: request,\n\t\t\t\t\tdataType: \"json\",\n\t\t\t\t\tsuccess: function( data ) {\n\t\t\t\t\t\tresponse( data );\n\t\t\t\t\t},\n\t\t\t\t\terror: function() {\n\t\t\t\t\t\tresponse([]);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t};\n\t\t} else {\n\t\t\tthis.source = this.options.source;\n\t\t}\n\t},\n\n\t_searchTimeout: function( event ) {\n\t\tclearTimeout( this.searching );\n\t\tthis.searching = this._delay(function() {\n\n\t\t\t// Search if the value has changed, or if the user retypes the same value (see #7434)\n\t\t\tvar equalValues = this.term === this._value(),\n\t\t\t\tmenuVisible = this.menu.element.is( \":visible\" ),\n\t\t\t\tmodifierKey = event.altKey || event.ctrlKey || event.metaKey || event.shiftKey;\n\n\t\t\tif ( !equalValues || ( equalValues && !menuVisible && !modifierKey ) ) {\n\t\t\t\tthis.selectedItem = null;\n\t\t\t\tthis.search( null, event );\n\t\t\t}\n\t\t}, this.options.delay );\n\t},\n\n\tsearch: function( value, event ) {\n\t\tvalue = value != null ? value : this._value();\n\n\t\t// always save the actual value, not the one passed as an argument\n\t\tthis.term = this._value();\n\n\t\tif ( value.length < this.options.minLength ) {\n\t\t\treturn this.close( event );\n\t\t}\n\n\t\tif ( this._trigger( \"search\", event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\treturn this._search( value );\n\t},\n\n\t_search: function( value ) {\n\t\tthis.pending++;\n\t\tthis.element.addClass( \"ui-autocomplete-loading\" );\n\t\tthis.cancelSearch = false;\n\n\t\tthis.source( { term: value }, this._response() );\n\t},\n\n\t_response: function() {\n\t\tvar index = ++this.requestIndex;\n\n\t\treturn $.proxy(function( content ) {\n\t\t\tif ( index === this.requestIndex ) {\n\t\t\t\tthis.__response( content );\n\t\t\t}\n\n\t\t\tthis.pending--;\n\t\t\tif ( !this.pending ) {\n\t\t\t\tthis.element.removeClass( \"ui-autocomplete-loading\" );\n\t\t\t}\n\t\t}, this );\n\t},\n\n\t__response: function( content ) {\n\t\tif ( content ) {\n\t\t\tcontent = this._normalize( content );\n\t\t}\n\t\tthis._trigger( \"response\", null, { content: content } );\n\t\tif ( !this.options.disabled && content && content.length && !this.cancelSearch ) {\n\t\t\tthis._suggest( content );\n\t\t\tthis._trigger( \"open\" );\n\t\t} else {\n\t\t\t// use ._close() instead of .close() so we don't cancel future searches\n\t\t\tthis._close();\n\t\t}\n\t},\n\n\tclose: function( event ) {\n\t\tthis.cancelSearch = true;\n\t\tthis._close( event );\n\t},\n\n\t_close: function( event ) {\n\t\tif ( this.menu.element.is( \":visible\" ) ) {\n\t\t\tthis.menu.element.hide();\n\t\t\tthis.menu.blur();\n\t\t\tthis.isNewMenu = true;\n\t\t\tthis._trigger( \"close\", event );\n\t\t}\n\t},\n\n\t_change: function( event ) {\n\t\tif ( this.previous !== this._value() ) {\n\t\t\tthis._trigger( \"change\", event, { item: this.selectedItem } );\n\t\t}\n\t},\n\n\t_normalize: function( items ) {\n\t\t// assume all items have the right format when the first item is complete\n\t\tif ( items.length && items[ 0 ].label && items[ 0 ].value ) {\n\t\t\treturn items;\n\t\t}\n\t\treturn $.map( items, function( item ) {\n\t\t\tif ( typeof item === \"string\" ) {\n\t\t\t\treturn {\n\t\t\t\t\tlabel: item,\n\t\t\t\t\tvalue: item\n\t\t\t\t};\n\t\t\t}\n\t\t\treturn $.extend( {}, item, {\n\t\t\t\tlabel: item.label || item.value,\n\t\t\t\tvalue: item.value || item.label\n\t\t\t});\n\t\t});\n\t},\n\n\t_suggest: function( items ) {\n\t\tvar ul = this.menu.element.empty();\n\t\tthis._renderMenu( ul, items );\n\t\tthis.isNewMenu = true;\n\t\tthis.menu.refresh();\n\n\t\t// size and position menu\n\t\tul.show();\n\t\tthis._resizeMenu();\n\t\tul.position( $.extend({\n\t\t\tof: this.element\n\t\t}, this.options.position ) );\n\n\t\tif ( this.options.autoFocus ) {\n\t\t\tthis.menu.next();\n\t\t}\n\t},\n\n\t_resizeMenu: function() {\n\t\tvar ul = this.menu.element;\n\t\tul.outerWidth( Math.max(\n\t\t\t// Firefox wraps long text (possibly a rounding bug)\n\t\t\t// so we add 1px to avoid the wrapping (#7513)\n\t\t\tul.width( \"\" ).outerWidth() + 1,\n\t\t\tthis.element.outerWidth()\n\t\t) );\n\t},\n\n\t_renderMenu: function( ul, items ) {\n\t\tvar that = this;\n\t\t$.each( items, function( index, item ) {\n\t\t\tthat._renderItemData( ul, item );\n\t\t});\n\t},\n\n\t_renderItemData: function( ul, item ) {\n\t\treturn this._renderItem( ul, item ).data( \"ui-autocomplete-item\", item );\n\t},\n\n\t_renderItem: function( ul, item ) {\n\t\treturn $( \"<li>\" ).text( item.label ).appendTo( ul );\n\t},\n\n\t_move: function( direction, event ) {\n\t\tif ( !this.menu.element.is( \":visible\" ) ) {\n\t\t\tthis.search( null, event );\n\t\t\treturn;\n\t\t}\n\t\tif ( this.menu.isFirstItem() && /^previous/.test( direction ) ||\n\t\t\t\tthis.menu.isLastItem() && /^next/.test( direction ) ) {\n\n\t\t\tif ( !this.isMultiLine ) {\n\t\t\t\tthis._value( this.term );\n\t\t\t}\n\n\t\t\tthis.menu.blur();\n\t\t\treturn;\n\t\t}\n\t\tthis.menu[ direction ]( event );\n\t},\n\n\twidget: function() {\n\t\treturn this.menu.element;\n\t},\n\n\t_value: function() {\n\t\treturn this.valueMethod.apply( this.element, arguments );\n\t},\n\n\t_keyEvent: function( keyEvent, event ) {\n\t\tif ( !this.isMultiLine || this.menu.element.is( \":visible\" ) ) {\n\t\t\tthis._move( keyEvent, event );\n\n\t\t\t// prevents moving cursor to beginning/end of the text field in some browsers\n\t\t\tevent.preventDefault();\n\t\t}\n\t}\n});\n\n$.extend( $.ui.autocomplete, {\n\tescapeRegex: function( value ) {\n\t\treturn value.replace( /[\\-\\[\\]{}()*+?.,\\\\\\^$|#\\s]/g, \"\\\\$&\" );\n\t},\n\tfilter: function( array, term ) {\n\t\tvar matcher = new RegExp( $.ui.autocomplete.escapeRegex( term ), \"i\" );\n\t\treturn $.grep( array, function( value ) {\n\t\t\treturn matcher.test( value.label || value.value || value );\n\t\t});\n\t}\n});\n\n// live region extension, adding a `messages` option\n// NOTE: This is an experimental API. We are still investigating\n// a full solution for string manipulation and internationalization.\n$.widget( \"ui.autocomplete\", $.ui.autocomplete, {\n\toptions: {\n\t\tmessages: {\n\t\t\tnoResults: \"No search results.\",\n\t\t\tresults: function( amount ) {\n\t\t\t\treturn amount + ( amount > 1 ? \" results are\" : \" result is\" ) +\n\t\t\t\t\t\" available, use up and down arrow keys to navigate.\";\n\t\t\t}\n\t\t}\n\t},\n\n\t__response: function( content ) {\n\t\tvar message;\n\t\tthis._superApply( arguments );\n\t\tif ( this.options.disabled || this.cancelSearch ) {\n\t\t\treturn;\n\t\t}\n\t\tif ( content && content.length ) {\n\t\t\tmessage = this.options.messages.results( content.length );\n\t\t} else {\n\t\t\tmessage = this.options.messages.noResults;\n\t\t}\n\t\tthis.liveRegion.children().hide();\n\t\t$( \"<div>\" ).text( message ).appendTo( this.liveRegion );\n\t}\n});\n\nvar autocomplete = $.ui.autocomplete;\n\n\n/*!\n * jQuery UI Button 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/button/\n */\n\n\nvar lastActive,\n\tbaseClasses = \"ui-button ui-widget ui-state-default ui-corner-all\",\n\ttypeClasses = \"ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only\",\n\tformResetHandler = function() {\n\t\tvar form = $( this );\n\t\tsetTimeout(function() {\n\t\t\tform.find( \":ui-button\" ).button( \"refresh\" );\n\t\t}, 1 );\n\t},\n\tradioGroup = function( radio ) {\n\t\tvar name = radio.name,\n\t\t\tform = radio.form,\n\t\t\tradios = $( [] );\n\t\tif ( name ) {\n\t\t\tname = name.replace( /'/g, \"\\\\'\" );\n\t\t\tif ( form ) {\n\t\t\t\tradios = $( form ).find( \"[name='\" + name + \"'][type=radio]\" );\n\t\t\t} else {\n\t\t\t\tradios = $( \"[name='\" + name + \"'][type=radio]\", radio.ownerDocument )\n\t\t\t\t\t.filter(function() {\n\t\t\t\t\t\treturn !this.form;\n\t\t\t\t\t});\n\t\t\t}\n\t\t}\n\t\treturn radios;\n\t};\n\n$.widget( \"ui.button\", {\n\tversion: \"1.11.4\",\n\tdefaultElement: \"<button>\",\n\toptions: {\n\t\tdisabled: null,\n\t\ttext: true,\n\t\tlabel: null,\n\t\ticons: {\n\t\t\tprimary: null,\n\t\t\tsecondary: null\n\t\t}\n\t},\n\t_create: function() {\n\t\tthis.element.closest( \"form\" )\n\t\t\t.unbind( \"reset\" + this.eventNamespace )\n\t\t\t.bind( \"reset\" + this.eventNamespace, formResetHandler );\n\n\t\tif ( typeof this.options.disabled !== \"boolean\" ) {\n\t\t\tthis.options.disabled = !!this.element.prop( \"disabled\" );\n\t\t} else {\n\t\t\tthis.element.prop( \"disabled\", this.options.disabled );\n\t\t}\n\n\t\tthis._determineButtonType();\n\t\tthis.hasTitle = !!this.buttonElement.attr( \"title\" );\n\n\t\tvar that = this,\n\t\t\toptions = this.options,\n\t\t\ttoggleButton = this.type === \"checkbox\" || this.type === \"radio\",\n\t\t\tactiveClass = !toggleButton ? \"ui-state-active\" : \"\";\n\n\t\tif ( options.label === null ) {\n\t\t\toptions.label = (this.type === \"input\" ? this.buttonElement.val() : this.buttonElement.html());\n\t\t}\n\n\t\tthis._hoverable( this.buttonElement );\n\n\t\tthis.buttonElement\n\t\t\t.addClass( baseClasses )\n\t\t\t.attr( \"role\", \"button\" )\n\t\t\t.bind( \"mouseenter\" + this.eventNamespace, function() {\n\t\t\t\tif ( options.disabled ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif ( this === lastActive ) {\n\t\t\t\t\t$( this ).addClass( \"ui-state-active\" );\n\t\t\t\t}\n\t\t\t})\n\t\t\t.bind( \"mouseleave\" + this.eventNamespace, function() {\n\t\t\t\tif ( options.disabled ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\t$( this ).removeClass( activeClass );\n\t\t\t})\n\t\t\t.bind( \"click\" + this.eventNamespace, function( event ) {\n\t\t\t\tif ( options.disabled ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t\t}\n\t\t\t});\n\n\t\t// Can't use _focusable() because the element that receives focus\n\t\t// and the element that gets the ui-state-focus class are different\n\t\tthis._on({\n\t\t\tfocus: function() {\n\t\t\t\tthis.buttonElement.addClass( \"ui-state-focus\" );\n\t\t\t},\n\t\t\tblur: function() {\n\t\t\t\tthis.buttonElement.removeClass( \"ui-state-focus\" );\n\t\t\t}\n\t\t});\n\n\t\tif ( toggleButton ) {\n\t\t\tthis.element.bind( \"change\" + this.eventNamespace, function() {\n\t\t\t\tthat.refresh();\n\t\t\t});\n\t\t}\n\n\t\tif ( this.type === \"checkbox\" ) {\n\t\t\tthis.buttonElement.bind( \"click\" + this.eventNamespace, function() {\n\t\t\t\tif ( options.disabled ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t});\n\t\t} else if ( this.type === \"radio\" ) {\n\t\t\tthis.buttonElement.bind( \"click\" + this.eventNamespace, function() {\n\t\t\t\tif ( options.disabled ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\t$( this ).addClass( \"ui-state-active\" );\n\t\t\t\tthat.buttonElement.attr( \"aria-pressed\", \"true\" );\n\n\t\t\t\tvar radio = that.element[ 0 ];\n\t\t\t\tradioGroup( radio )\n\t\t\t\t\t.not( radio )\n\t\t\t\t\t.map(function() {\n\t\t\t\t\t\treturn $( this ).button( \"widget\" )[ 0 ];\n\t\t\t\t\t})\n\t\t\t\t\t.removeClass( \"ui-state-active\" )\n\t\t\t\t\t.attr( \"aria-pressed\", \"false\" );\n\t\t\t});\n\t\t} else {\n\t\t\tthis.buttonElement\n\t\t\t\t.bind( \"mousedown\" + this.eventNamespace, function() {\n\t\t\t\t\tif ( options.disabled ) {\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t\t$( this ).addClass( \"ui-state-active\" );\n\t\t\t\t\tlastActive = this;\n\t\t\t\t\tthat.document.one( \"mouseup\", function() {\n\t\t\t\t\t\tlastActive = null;\n\t\t\t\t\t});\n\t\t\t\t})\n\t\t\t\t.bind( \"mouseup\" + this.eventNamespace, function() {\n\t\t\t\t\tif ( options.disabled ) {\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t\t$( this ).removeClass( \"ui-state-active\" );\n\t\t\t\t})\n\t\t\t\t.bind( \"keydown\" + this.eventNamespace, function(event) {\n\t\t\t\t\tif ( options.disabled ) {\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t\tif ( event.keyCode === $.ui.keyCode.SPACE || event.keyCode === $.ui.keyCode.ENTER ) {\n\t\t\t\t\t\t$( this ).addClass( \"ui-state-active\" );\n\t\t\t\t\t}\n\t\t\t\t})\n\t\t\t\t// see #8559, we bind to blur here in case the button element loses\n\t\t\t\t// focus between keydown and keyup, it would be left in an \"active\" state\n\t\t\t\t.bind( \"keyup\" + this.eventNamespace + \" blur\" + this.eventNamespace, function() {\n\t\t\t\t\t$( this ).removeClass( \"ui-state-active\" );\n\t\t\t\t});\n\n\t\t\tif ( this.buttonElement.is(\"a\") ) {\n\t\t\t\tthis.buttonElement.keyup(function(event) {\n\t\t\t\t\tif ( event.keyCode === $.ui.keyCode.SPACE ) {\n\t\t\t\t\t\t// TODO pass through original event correctly (just as 2nd argument doesn't work)\n\t\t\t\t\t\t$( this ).click();\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\n\t\tthis._setOption( \"disabled\", options.disabled );\n\t\tthis._resetButton();\n\t},\n\n\t_determineButtonType: function() {\n\t\tvar ancestor, labelSelector, checked;\n\n\t\tif ( this.element.is(\"[type=checkbox]\") ) {\n\t\t\tthis.type = \"checkbox\";\n\t\t} else if ( this.element.is(\"[type=radio]\") ) {\n\t\t\tthis.type = \"radio\";\n\t\t} else if ( this.element.is(\"input\") ) {\n\t\t\tthis.type = \"input\";\n\t\t} else {\n\t\t\tthis.type = \"button\";\n\t\t}\n\n\t\tif ( this.type === \"checkbox\" || this.type === \"radio\" ) {\n\t\t\t// we don't search against the document in case the element\n\t\t\t// is disconnected from the DOM\n\t\t\tancestor = this.element.parents().last();\n\t\t\tlabelSelector = \"label[for='\" + this.element.attr(\"id\") + \"']\";\n\t\t\tthis.buttonElement = ancestor.find( labelSelector );\n\t\t\tif ( !this.buttonElement.length ) {\n\t\t\t\tancestor = ancestor.length ? ancestor.siblings() : this.element.siblings();\n\t\t\t\tthis.buttonElement = ancestor.filter( labelSelector );\n\t\t\t\tif ( !this.buttonElement.length ) {\n\t\t\t\t\tthis.buttonElement = ancestor.find( labelSelector );\n\t\t\t\t}\n\t\t\t}\n\t\t\tthis.element.addClass( \"ui-helper-hidden-accessible\" );\n\n\t\t\tchecked = this.element.is( \":checked\" );\n\t\t\tif ( checked ) {\n\t\t\t\tthis.buttonElement.addClass( \"ui-state-active\" );\n\t\t\t}\n\t\t\tthis.buttonElement.prop( \"aria-pressed\", checked );\n\t\t} else {\n\t\t\tthis.buttonElement = this.element;\n\t\t}\n\t},\n\n\twidget: function() {\n\t\treturn this.buttonElement;\n\t},\n\n\t_destroy: function() {\n\t\tthis.element\n\t\t\t.removeClass( \"ui-helper-hidden-accessible\" );\n\t\tthis.buttonElement\n\t\t\t.removeClass( baseClasses + \" ui-state-active \" + typeClasses )\n\t\t\t.removeAttr( \"role\" )\n\t\t\t.removeAttr( \"aria-pressed\" )\n\t\t\t.html( this.buttonElement.find(\".ui-button-text\").html() );\n\n\t\tif ( !this.hasTitle ) {\n\t\t\tthis.buttonElement.removeAttr( \"title\" );\n\t\t}\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tthis._super( key, value );\n\t\tif ( key === \"disabled\" ) {\n\t\t\tthis.widget().toggleClass( \"ui-state-disabled\", !!value );\n\t\t\tthis.element.prop( \"disabled\", !!value );\n\t\t\tif ( value ) {\n\t\t\t\tif ( this.type === \"checkbox\" || this.type === \"radio\" ) {\n\t\t\t\t\tthis.buttonElement.removeClass( \"ui-state-focus\" );\n\t\t\t\t} else {\n\t\t\t\t\tthis.buttonElement.removeClass( \"ui-state-focus ui-state-active\" );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\t\tthis._resetButton();\n\t},\n\n\trefresh: function() {\n\t\t//See #8237 & #8828\n\t\tvar isDisabled = this.element.is( \"input, button\" ) ? this.element.is( \":disabled\" ) : this.element.hasClass( \"ui-button-disabled\" );\n\n\t\tif ( isDisabled !== this.options.disabled ) {\n\t\t\tthis._setOption( \"disabled\", isDisabled );\n\t\t}\n\t\tif ( this.type === \"radio\" ) {\n\t\t\tradioGroup( this.element[0] ).each(function() {\n\t\t\t\tif ( $( this ).is( \":checked\" ) ) {\n\t\t\t\t\t$( this ).button( \"widget\" )\n\t\t\t\t\t\t.addClass( \"ui-state-active\" )\n\t\t\t\t\t\t.attr( \"aria-pressed\", \"true\" );\n\t\t\t\t} else {\n\t\t\t\t\t$( this ).button( \"widget\" )\n\t\t\t\t\t\t.removeClass( \"ui-state-active\" )\n\t\t\t\t\t\t.attr( \"aria-pressed\", \"false\" );\n\t\t\t\t}\n\t\t\t});\n\t\t} else if ( this.type === \"checkbox\" ) {\n\t\t\tif ( this.element.is( \":checked\" ) ) {\n\t\t\t\tthis.buttonElement\n\t\t\t\t\t.addClass( \"ui-state-active\" )\n\t\t\t\t\t.attr( \"aria-pressed\", \"true\" );\n\t\t\t} else {\n\t\t\t\tthis.buttonElement\n\t\t\t\t\t.removeClass( \"ui-state-active\" )\n\t\t\t\t\t.attr( \"aria-pressed\", \"false\" );\n\t\t\t}\n\t\t}\n\t},\n\n\t_resetButton: function() {\n\t\tif ( this.type === \"input\" ) {\n\t\t\tif ( this.options.label ) {\n\t\t\t\tthis.element.val( this.options.label );\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\t\tvar buttonElement = this.buttonElement.removeClass( typeClasses ),\n\t\t\tbuttonText = $( \"<span></span>\", this.document[0] )\n\t\t\t\t.addClass( \"ui-button-text\" )\n\t\t\t\t.html( this.options.label )\n\t\t\t\t.appendTo( buttonElement.empty() )\n\t\t\t\t.text(),\n\t\t\ticons = this.options.icons,\n\t\t\tmultipleIcons = icons.primary && icons.secondary,\n\t\t\tbuttonClasses = [];\n\n\t\tif ( icons.primary || icons.secondary ) {\n\t\t\tif ( this.options.text ) {\n\t\t\t\tbuttonClasses.push( \"ui-button-text-icon\" + ( multipleIcons ? \"s\" : ( icons.primary ? \"-primary\" : \"-secondary\" ) ) );\n\t\t\t}\n\n\t\t\tif ( icons.primary ) {\n\t\t\t\tbuttonElement.prepend( \"<span class='ui-button-icon-primary ui-icon \" + icons.primary + \"'></span>\" );\n\t\t\t}\n\n\t\t\tif ( icons.secondary ) {\n\t\t\t\tbuttonElement.append( \"<span class='ui-button-icon-secondary ui-icon \" + icons.secondary + \"'></span>\" );\n\t\t\t}\n\n\t\t\tif ( !this.options.text ) {\n\t\t\t\tbuttonClasses.push( multipleIcons ? \"ui-button-icons-only\" : \"ui-button-icon-only\" );\n\n\t\t\t\tif ( !this.hasTitle ) {\n\t\t\t\t\tbuttonElement.attr( \"title\", $.trim( buttonText ) );\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tbuttonClasses.push( \"ui-button-text-only\" );\n\t\t}\n\t\tbuttonElement.addClass( buttonClasses.join( \" \" ) );\n\t}\n});\n\n$.widget( \"ui.buttonset\", {\n\tversion: \"1.11.4\",\n\toptions: {\n\t\titems: \"button, input[type=button], input[type=submit], input[type=reset], input[type=checkbox], input[type=radio], a, :data(ui-button)\"\n\t},\n\n\t_create: function() {\n\t\tthis.element.addClass( \"ui-buttonset\" );\n\t},\n\n\t_init: function() {\n\t\tthis.refresh();\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tif ( key === \"disabled\" ) {\n\t\t\tthis.buttons.button( \"option\", key, value );\n\t\t}\n\n\t\tthis._super( key, value );\n\t},\n\n\trefresh: function() {\n\t\tvar rtl = this.element.css( \"direction\" ) === \"rtl\",\n\t\t\tallButtons = this.element.find( this.options.items ),\n\t\t\texistingButtons = allButtons.filter( \":ui-button\" );\n\n\t\t// Initialize new buttons\n\t\tallButtons.not( \":ui-button\" ).button();\n\n\t\t// Refresh existing buttons\n\t\texistingButtons.button( \"refresh\" );\n\n\t\tthis.buttons = allButtons\n\t\t\t.map(function() {\n\t\t\t\treturn $( this ).button( \"widget\" )[ 0 ];\n\t\t\t})\n\t\t\t\t.removeClass( \"ui-corner-all ui-corner-left ui-corner-right\" )\n\t\t\t\t.filter( \":first\" )\n\t\t\t\t\t.addClass( rtl ? \"ui-corner-right\" : \"ui-corner-left\" )\n\t\t\t\t.end()\n\t\t\t\t.filter( \":last\" )\n\t\t\t\t\t.addClass( rtl ? \"ui-corner-left\" : \"ui-corner-right\" )\n\t\t\t\t.end()\n\t\t\t.end();\n\t},\n\n\t_destroy: function() {\n\t\tthis.element.removeClass( \"ui-buttonset\" );\n\t\tthis.buttons\n\t\t\t.map(function() {\n\t\t\t\treturn $( this ).button( \"widget\" )[ 0 ];\n\t\t\t})\n\t\t\t\t.removeClass( \"ui-corner-left ui-corner-right\" )\n\t\t\t.end()\n\t\t\t.button( \"destroy\" );\n\t}\n});\n\nvar button = $.ui.button;\n\n\n/*!\n * jQuery UI Dialog 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/dialog/\n */\n\n\nvar dialog = $.widget( \"ui.dialog\", {\n\tversion: \"1.11.4\",\n\toptions: {\n\t\tappendTo: \"body\",\n\t\tautoOpen: true,\n\t\tbuttons: [],\n\t\tcloseOnEscape: true,\n\t\tcloseText: \"Close\",\n\t\tdialogClass: \"\",\n\t\tdraggable: true,\n\t\thide: null,\n\t\theight: \"auto\",\n\t\tmaxHeight: null,\n\t\tmaxWidth: null,\n\t\tminHeight: 150,\n\t\tminWidth: 150,\n\t\tmodal: false,\n\t\tposition: {\n\t\t\tmy: \"center\",\n\t\t\tat: \"center\",\n\t\t\tof: window,\n\t\t\tcollision: \"fit\",\n\t\t\t// Ensure the titlebar is always visible\n\t\t\tusing: function( pos ) {\n\t\t\t\tvar topOffset = $( this ).css( pos ).offset().top;\n\t\t\t\tif ( topOffset < 0 ) {\n\t\t\t\t\t$( this ).css( \"top\", pos.top - topOffset );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\tresizable: true,\n\t\tshow: null,\n\t\ttitle: null,\n\t\twidth: 300,\n\n\t\t// callbacks\n\t\tbeforeClose: null,\n\t\tclose: null,\n\t\tdrag: null,\n\t\tdragStart: null,\n\t\tdragStop: null,\n\t\tfocus: null,\n\t\topen: null,\n\t\tresize: null,\n\t\tresizeStart: null,\n\t\tresizeStop: null\n\t},\n\n\tsizeRelatedOptions: {\n\t\tbuttons: true,\n\t\theight: true,\n\t\tmaxHeight: true,\n\t\tmaxWidth: true,\n\t\tminHeight: true,\n\t\tminWidth: true,\n\t\twidth: true\n\t},\n\n\tresizableRelatedOptions: {\n\t\tmaxHeight: true,\n\t\tmaxWidth: true,\n\t\tminHeight: true,\n\t\tminWidth: true\n\t},\n\n\t_create: function() {\n\t\tthis.originalCss = {\n\t\t\tdisplay: this.element[ 0 ].style.display,\n\t\t\twidth: this.element[ 0 ].style.width,\n\t\t\tminHeight: this.element[ 0 ].style.minHeight,\n\t\t\tmaxHeight: this.element[ 0 ].style.maxHeight,\n\t\t\theight: this.element[ 0 ].style.height\n\t\t};\n\t\tthis.originalPosition = {\n\t\t\tparent: this.element.parent(),\n\t\t\tindex: this.element.parent().children().index( this.element )\n\t\t};\n\t\tthis.originalTitle = this.element.attr( \"title\" );\n\t\tthis.options.title = this.options.title || this.originalTitle;\n\n\t\tthis._createWrapper();\n\n\t\tthis.element\n\t\t\t.show()\n\t\t\t.removeAttr( \"title\" )\n\t\t\t.addClass( \"ui-dialog-content ui-widget-content\" )\n\t\t\t.appendTo( this.uiDialog );\n\n\t\tthis._createTitlebar();\n\t\tthis._createButtonPane();\n\n\t\tif ( this.options.draggable && $.fn.draggable ) {\n\t\t\tthis._makeDraggable();\n\t\t}\n\t\tif ( this.options.resizable && $.fn.resizable ) {\n\t\t\tthis._makeResizable();\n\t\t}\n\n\t\tthis._isOpen = false;\n\n\t\tthis._trackFocus();\n\t},\n\n\t_init: function() {\n\t\tif ( this.options.autoOpen ) {\n\t\t\tthis.open();\n\t\t}\n\t},\n\n\t_appendTo: function() {\n\t\tvar element = this.options.appendTo;\n\t\tif ( element && (element.jquery || element.nodeType) ) {\n\t\t\treturn $( element );\n\t\t}\n\t\treturn this.document.find( element || \"body\" ).eq( 0 );\n\t},\n\n\t_destroy: function() {\n\t\tvar next,\n\t\t\toriginalPosition = this.originalPosition;\n\n\t\tthis._untrackInstance();\n\t\tthis._destroyOverlay();\n\n\t\tthis.element\n\t\t\t.removeUniqueId()\n\t\t\t.removeClass( \"ui-dialog-content ui-widget-content\" )\n\t\t\t.css( this.originalCss )\n\t\t\t// Without detaching first, the following becomes really slow\n\t\t\t.detach();\n\n\t\tthis.uiDialog.stop( true, true ).remove();\n\n\t\tif ( this.originalTitle ) {\n\t\t\tthis.element.attr( \"title\", this.originalTitle );\n\t\t}\n\n\t\tnext = originalPosition.parent.children().eq( originalPosition.index );\n\t\t// Don't try to place the dialog next to itself (#8613)\n\t\tif ( next.length && next[ 0 ] !== this.element[ 0 ] ) {\n\t\t\tnext.before( this.element );\n\t\t} else {\n\t\t\toriginalPosition.parent.append( this.element );\n\t\t}\n\t},\n\n\twidget: function() {\n\t\treturn this.uiDialog;\n\t},\n\n\tdisable: $.noop,\n\tenable: $.noop,\n\n\tclose: function( event ) {\n\t\tvar activeElement,\n\t\t\tthat = this;\n\n\t\tif ( !this._isOpen || this._trigger( \"beforeClose\", event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis._isOpen = false;\n\t\tthis._focusedElement = null;\n\t\tthis._destroyOverlay();\n\t\tthis._untrackInstance();\n\n\t\tif ( !this.opener.filter( \":focusable\" ).focus().length ) {\n\n\t\t\t// support: IE9\n\t\t\t// IE9 throws an \"Unspecified error\" accessing document.activeElement from an <iframe>\n\t\t\ttry {\n\t\t\t\tactiveElement = this.document[ 0 ].activeElement;\n\n\t\t\t\t// Support: IE9, IE10\n\t\t\t\t// If the <body> is blurred, IE will switch windows, see #4520\n\t\t\t\tif ( activeElement && activeElement.nodeName.toLowerCase() !== \"body\" ) {\n\n\t\t\t\t\t// Hiding a focused element doesn't trigger blur in WebKit\n\t\t\t\t\t// so in case we have nothing to focus on, explicitly blur the active element\n\t\t\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=47182\n\t\t\t\t\t$( activeElement ).blur();\n\t\t\t\t}\n\t\t\t} catch ( error ) {}\n\t\t}\n\n\t\tthis._hide( this.uiDialog, this.options.hide, function() {\n\t\t\tthat._trigger( \"close\", event );\n\t\t});\n\t},\n\n\tisOpen: function() {\n\t\treturn this._isOpen;\n\t},\n\n\tmoveToTop: function() {\n\t\tthis._moveToTop();\n\t},\n\n\t_moveToTop: function( event, silent ) {\n\t\tvar moved = false,\n\t\t\tzIndices = this.uiDialog.siblings( \".ui-front:visible\" ).map(function() {\n\t\t\t\treturn +$( this ).css( \"z-index\" );\n\t\t\t}).get(),\n\t\t\tzIndexMax = Math.max.apply( null, zIndices );\n\n\t\tif ( zIndexMax >= +this.uiDialog.css( \"z-index\" ) ) {\n\t\t\tthis.uiDialog.css( \"z-index\", zIndexMax + 1 );\n\t\t\tmoved = true;\n\t\t}\n\n\t\tif ( moved && !silent ) {\n\t\t\tthis._trigger( \"focus\", event );\n\t\t}\n\t\treturn moved;\n\t},\n\n\topen: function() {\n\t\tvar that = this;\n\t\tif ( this._isOpen ) {\n\t\t\tif ( this._moveToTop() ) {\n\t\t\t\tthis._focusTabbable();\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\n\t\tthis._isOpen = true;\n\t\tthis.opener = $( this.document[ 0 ].activeElement );\n\n\t\tthis._size();\n\t\tthis._position();\n\t\tthis._createOverlay();\n\t\tthis._moveToTop( null, true );\n\n\t\t// Ensure the overlay is moved to the top with the dialog, but only when\n\t\t// opening. The overlay shouldn't move after the dialog is open so that\n\t\t// modeless dialogs opened after the modal dialog stack properly.\n\t\tif ( this.overlay ) {\n\t\t\tthis.overlay.css( \"z-index\", this.uiDialog.css( \"z-index\" ) - 1 );\n\t\t}\n\n\t\tthis._show( this.uiDialog, this.options.show, function() {\n\t\t\tthat._focusTabbable();\n\t\t\tthat._trigger( \"focus\" );\n\t\t});\n\n\t\t// Track the dialog immediately upon openening in case a focus event\n\t\t// somehow occurs outside of the dialog before an element inside the\n\t\t// dialog is focused (#10152)\n\t\tthis._makeFocusTarget();\n\n\t\tthis._trigger( \"open\" );\n\t},\n\n\t_focusTabbable: function() {\n\t\t// Set focus to the first match:\n\t\t// 1. An element that was focused previously\n\t\t// 2. First element inside the dialog matching [autofocus]\n\t\t// 3. Tabbable element inside the content element\n\t\t// 4. Tabbable element inside the buttonpane\n\t\t// 5. The close button\n\t\t// 6. The dialog itself\n\t\tvar hasFocus = this._focusedElement;\n\t\tif ( !hasFocus ) {\n\t\t\thasFocus = this.element.find( \"[autofocus]\" );\n\t\t}\n\t\tif ( !hasFocus.length ) {\n\t\t\thasFocus = this.element.find( \":tabbable\" );\n\t\t}\n\t\tif ( !hasFocus.length ) {\n\t\t\thasFocus = this.uiDialogButtonPane.find( \":tabbable\" );\n\t\t}\n\t\tif ( !hasFocus.length ) {\n\t\t\thasFocus = this.uiDialogTitlebarClose.filter( \":tabbable\" );\n\t\t}\n\t\tif ( !hasFocus.length ) {\n\t\t\thasFocus = this.uiDialog;\n\t\t}\n\t\thasFocus.eq( 0 ).focus();\n\t},\n\n\t_keepFocus: function( event ) {\n\t\tfunction checkFocus() {\n\t\t\tvar activeElement = this.document[0].activeElement,\n\t\t\t\tisActive = this.uiDialog[0] === activeElement ||\n\t\t\t\t\t$.contains( this.uiDialog[0], activeElement );\n\t\t\tif ( !isActive ) {\n\t\t\t\tthis._focusTabbable();\n\t\t\t}\n\t\t}\n\t\tevent.preventDefault();\n\t\tcheckFocus.call( this );\n\t\t// support: IE\n\t\t// IE <= 8 doesn't prevent moving focus even with event.preventDefault()\n\t\t// so we check again later\n\t\tthis._delay( checkFocus );\n\t},\n\n\t_createWrapper: function() {\n\t\tthis.uiDialog = $(\"<div>\")\n\t\t\t.addClass( \"ui-dialog ui-widget ui-widget-content ui-corner-all ui-front \" +\n\t\t\t\tthis.options.dialogClass )\n\t\t\t.hide()\n\t\t\t.attr({\n\t\t\t\t// Setting tabIndex makes the div focusable\n\t\t\t\ttabIndex: -1,\n\t\t\t\trole: \"dialog\"\n\t\t\t})\n\t\t\t.appendTo( this._appendTo() );\n\n\t\tthis._on( this.uiDialog, {\n\t\t\tkeydown: function( event ) {\n\t\t\t\tif ( this.options.closeOnEscape && !event.isDefaultPrevented() && event.keyCode &&\n\t\t\t\t\t\tevent.keyCode === $.ui.keyCode.ESCAPE ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\tthis.close( event );\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// prevent tabbing out of dialogs\n\t\t\t\tif ( event.keyCode !== $.ui.keyCode.TAB || event.isDefaultPrevented() ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tvar tabbables = this.uiDialog.find( \":tabbable\" ),\n\t\t\t\t\tfirst = tabbables.filter( \":first\" ),\n\t\t\t\t\tlast = tabbables.filter( \":last\" );\n\n\t\t\t\tif ( ( event.target === last[0] || event.target === this.uiDialog[0] ) && !event.shiftKey ) {\n\t\t\t\t\tthis._delay(function() {\n\t\t\t\t\t\tfirst.focus();\n\t\t\t\t\t});\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t} else if ( ( event.target === first[0] || event.target === this.uiDialog[0] ) && event.shiftKey ) {\n\t\t\t\t\tthis._delay(function() {\n\t\t\t\t\t\tlast.focus();\n\t\t\t\t\t});\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t},\n\t\t\tmousedown: function( event ) {\n\t\t\t\tif ( this._moveToTop( event ) ) {\n\t\t\t\t\tthis._focusTabbable();\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\t// We assume that any existing aria-describedby attribute means\n\t\t// that the dialog content is marked up properly\n\t\t// otherwise we brute force the content as the description\n\t\tif ( !this.element.find( \"[aria-describedby]\" ).length ) {\n\t\t\tthis.uiDialog.attr({\n\t\t\t\t\"aria-describedby\": this.element.uniqueId().attr( \"id\" )\n\t\t\t});\n\t\t}\n\t},\n\n\t_createTitlebar: function() {\n\t\tvar uiDialogTitle;\n\n\t\tthis.uiDialogTitlebar = $( \"<div>\" )\n\t\t\t.addClass( \"ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix\" )\n\t\t\t.prependTo( this.uiDialog );\n\t\tthis._on( this.uiDialogTitlebar, {\n\t\t\tmousedown: function( event ) {\n\t\t\t\t// Don't prevent click on close button (#8838)\n\t\t\t\t// Focusing a dialog that is partially scrolled out of view\n\t\t\t\t// causes the browser to scroll it into view, preventing the click event\n\t\t\t\tif ( !$( event.target ).closest( \".ui-dialog-titlebar-close\" ) ) {\n\t\t\t\t\t// Dialog isn't getting focus when dragging (#8063)\n\t\t\t\t\tthis.uiDialog.focus();\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\t// support: IE\n\t\t// Use type=\"button\" to prevent enter keypresses in textboxes from closing the\n\t\t// dialog in IE (#9312)\n\t\tthis.uiDialogTitlebarClose = $( \"<button type='button'></button>\" )\n\t\t\t.button({\n\t\t\t\tlabel: this.options.closeText,\n\t\t\t\ticons: {\n\t\t\t\t\tprimary: \"ui-icon-closethick\"\n\t\t\t\t},\n\t\t\t\ttext: false\n\t\t\t})\n\t\t\t.addClass( \"ui-dialog-titlebar-close\" )\n\t\t\t.appendTo( this.uiDialogTitlebar );\n\t\tthis._on( this.uiDialogTitlebarClose, {\n\t\t\tclick: function( event ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t\tthis.close( event );\n\t\t\t}\n\t\t});\n\n\t\tuiDialogTitle = $( \"<span>\" )\n\t\t\t.uniqueId()\n\t\t\t.addClass( \"ui-dialog-title\" )\n\t\t\t.prependTo( this.uiDialogTitlebar );\n\t\tthis._title( uiDialogTitle );\n\n\t\tthis.uiDialog.attr({\n\t\t\t\"aria-labelledby\": uiDialogTitle.attr( \"id\" )\n\t\t});\n\t},\n\n\t_title: function( title ) {\n\t\tif ( !this.options.title ) {\n\t\t\ttitle.html( \"&#160;\" );\n\t\t}\n\t\ttitle.text( this.options.title );\n\t},\n\n\t_createButtonPane: function() {\n\t\tthis.uiDialogButtonPane = $( \"<div>\" )\n\t\t\t.addClass( \"ui-dialog-buttonpane ui-widget-content ui-helper-clearfix\" );\n\n\t\tthis.uiButtonSet = $( \"<div>\" )\n\t\t\t.addClass( \"ui-dialog-buttonset\" )\n\t\t\t.appendTo( this.uiDialogButtonPane );\n\n\t\tthis._createButtons();\n\t},\n\n\t_createButtons: function() {\n\t\tvar that = this,\n\t\t\tbuttons = this.options.buttons;\n\n\t\t// if we already have a button pane, remove it\n\t\tthis.uiDialogButtonPane.remove();\n\t\tthis.uiButtonSet.empty();\n\n\t\tif ( $.isEmptyObject( buttons ) || ($.isArray( buttons ) && !buttons.length) ) {\n\t\t\tthis.uiDialog.removeClass( \"ui-dialog-buttons\" );\n\t\t\treturn;\n\t\t}\n\n\t\t$.each( buttons, function( name, props ) {\n\t\t\tvar click, buttonOptions;\n\t\t\tprops = $.isFunction( props ) ?\n\t\t\t\t{ click: props, text: name } :\n\t\t\t\tprops;\n\t\t\t// Default to a non-submitting button\n\t\t\tprops = $.extend( { type: \"button\" }, props );\n\t\t\t// Change the context for the click callback to be the main element\n\t\t\tclick = props.click;\n\t\t\tprops.click = function() {\n\t\t\t\tclick.apply( that.element[ 0 ], arguments );\n\t\t\t};\n\t\t\tbuttonOptions = {\n\t\t\t\ticons: props.icons,\n\t\t\t\ttext: props.showText\n\t\t\t};\n\t\t\tdelete props.icons;\n\t\t\tdelete props.showText;\n\t\t\t$( \"<button></button>\", props )\n\t\t\t\t.button( buttonOptions )\n\t\t\t\t.appendTo( that.uiButtonSet );\n\t\t});\n\t\tthis.uiDialog.addClass( \"ui-dialog-buttons\" );\n\t\tthis.uiDialogButtonPane.appendTo( this.uiDialog );\n\t},\n\n\t_makeDraggable: function() {\n\t\tvar that = this,\n\t\t\toptions = this.options;\n\n\t\tfunction filteredUi( ui ) {\n\t\t\treturn {\n\t\t\t\tposition: ui.position,\n\t\t\t\toffset: ui.offset\n\t\t\t};\n\t\t}\n\n\t\tthis.uiDialog.draggable({\n\t\t\tcancel: \".ui-dialog-content, .ui-dialog-titlebar-close\",\n\t\t\thandle: \".ui-dialog-titlebar\",\n\t\t\tcontainment: \"document\",\n\t\t\tstart: function( event, ui ) {\n\t\t\t\t$( this ).addClass( \"ui-dialog-dragging\" );\n\t\t\t\tthat._blockFrames();\n\t\t\t\tthat._trigger( \"dragStart\", event, filteredUi( ui ) );\n\t\t\t},\n\t\t\tdrag: function( event, ui ) {\n\t\t\t\tthat._trigger( \"drag\", event, filteredUi( ui ) );\n\t\t\t},\n\t\t\tstop: function( event, ui ) {\n\t\t\t\tvar left = ui.offset.left - that.document.scrollLeft(),\n\t\t\t\t\ttop = ui.offset.top - that.document.scrollTop();\n\n\t\t\t\toptions.position = {\n\t\t\t\t\tmy: \"left top\",\n\t\t\t\t\tat: \"left\" + (left >= 0 ? \"+\" : \"\") + left + \" \" +\n\t\t\t\t\t\t\"top\" + (top >= 0 ? \"+\" : \"\") + top,\n\t\t\t\t\tof: that.window\n\t\t\t\t};\n\t\t\t\t$( this ).removeClass( \"ui-dialog-dragging\" );\n\t\t\t\tthat._unblockFrames();\n\t\t\t\tthat._trigger( \"dragStop\", event, filteredUi( ui ) );\n\t\t\t}\n\t\t});\n\t},\n\n\t_makeResizable: function() {\n\t\tvar that = this,\n\t\t\toptions = this.options,\n\t\t\thandles = options.resizable,\n\t\t\t// .ui-resizable has position: relative defined in the stylesheet\n\t\t\t// but dialogs have to use absolute or fixed positioning\n\t\t\tposition = this.uiDialog.css(\"position\"),\n\t\t\tresizeHandles = typeof handles === \"string\" ?\n\t\t\t\thandles\t:\n\t\t\t\t\"n,e,s,w,se,sw,ne,nw\";\n\n\t\tfunction filteredUi( ui ) {\n\t\t\treturn {\n\t\t\t\toriginalPosition: ui.originalPosition,\n\t\t\t\toriginalSize: ui.originalSize,\n\t\t\t\tposition: ui.position,\n\t\t\t\tsize: ui.size\n\t\t\t};\n\t\t}\n\n\t\tthis.uiDialog.resizable({\n\t\t\tcancel: \".ui-dialog-content\",\n\t\t\tcontainment: \"document\",\n\t\t\talsoResize: this.element,\n\t\t\tmaxWidth: options.maxWidth,\n\t\t\tmaxHeight: options.maxHeight,\n\t\t\tminWidth: options.minWidth,\n\t\t\tminHeight: this._minHeight(),\n\t\t\thandles: resizeHandles,\n\t\t\tstart: function( event, ui ) {\n\t\t\t\t$( this ).addClass( \"ui-dialog-resizing\" );\n\t\t\t\tthat._blockFrames();\n\t\t\t\tthat._trigger( \"resizeStart\", event, filteredUi( ui ) );\n\t\t\t},\n\t\t\tresize: function( event, ui ) {\n\t\t\t\tthat._trigger( \"resize\", event, filteredUi( ui ) );\n\t\t\t},\n\t\t\tstop: function( event, ui ) {\n\t\t\t\tvar offset = that.uiDialog.offset(),\n\t\t\t\t\tleft = offset.left - that.document.scrollLeft(),\n\t\t\t\t\ttop = offset.top - that.document.scrollTop();\n\n\t\t\t\toptions.height = that.uiDialog.height();\n\t\t\t\toptions.width = that.uiDialog.width();\n\t\t\t\toptions.position = {\n\t\t\t\t\tmy: \"left top\",\n\t\t\t\t\tat: \"left\" + (left >= 0 ? \"+\" : \"\") + left + \" \" +\n\t\t\t\t\t\t\"top\" + (top >= 0 ? \"+\" : \"\") + top,\n\t\t\t\t\tof: that.window\n\t\t\t\t};\n\t\t\t\t$( this ).removeClass( \"ui-dialog-resizing\" );\n\t\t\t\tthat._unblockFrames();\n\t\t\t\tthat._trigger( \"resizeStop\", event, filteredUi( ui ) );\n\t\t\t}\n\t\t})\n\t\t.css( \"position\", position );\n\t},\n\n\t_trackFocus: function() {\n\t\tthis._on( this.widget(), {\n\t\t\tfocusin: function( event ) {\n\t\t\t\tthis._makeFocusTarget();\n\t\t\t\tthis._focusedElement = $( event.target );\n\t\t\t}\n\t\t});\n\t},\n\n\t_makeFocusTarget: function() {\n\t\tthis._untrackInstance();\n\t\tthis._trackingInstances().unshift( this );\n\t},\n\n\t_untrackInstance: function() {\n\t\tvar instances = this._trackingInstances(),\n\t\t\texists = $.inArray( this, instances );\n\t\tif ( exists !== -1 ) {\n\t\t\tinstances.splice( exists, 1 );\n\t\t}\n\t},\n\n\t_trackingInstances: function() {\n\t\tvar instances = this.document.data( \"ui-dialog-instances\" );\n\t\tif ( !instances ) {\n\t\t\tinstances = [];\n\t\t\tthis.document.data( \"ui-dialog-instances\", instances );\n\t\t}\n\t\treturn instances;\n\t},\n\n\t_minHeight: function() {\n\t\tvar options = this.options;\n\n\t\treturn options.height === \"auto\" ?\n\t\t\toptions.minHeight :\n\t\t\tMath.min( options.minHeight, options.height );\n\t},\n\n\t_position: function() {\n\t\t// Need to show the dialog to get the actual offset in the position plugin\n\t\tvar isVisible = this.uiDialog.is( \":visible\" );\n\t\tif ( !isVisible ) {\n\t\t\tthis.uiDialog.show();\n\t\t}\n\t\tthis.uiDialog.position( this.options.position );\n\t\tif ( !isVisible ) {\n\t\t\tthis.uiDialog.hide();\n\t\t}\n\t},\n\n\t_setOptions: function( options ) {\n\t\tvar that = this,\n\t\t\tresize = false,\n\t\t\tresizableOptions = {};\n\n\t\t$.each( options, function( key, value ) {\n\t\t\tthat._setOption( key, value );\n\n\t\t\tif ( key in that.sizeRelatedOptions ) {\n\t\t\t\tresize = true;\n\t\t\t}\n\t\t\tif ( key in that.resizableRelatedOptions ) {\n\t\t\t\tresizableOptions[ key ] = value;\n\t\t\t}\n\t\t});\n\n\t\tif ( resize ) {\n\t\t\tthis._size();\n\t\t\tthis._position();\n\t\t}\n\t\tif ( this.uiDialog.is( \":data(ui-resizable)\" ) ) {\n\t\t\tthis.uiDialog.resizable( \"option\", resizableOptions );\n\t\t}\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tvar isDraggable, isResizable,\n\t\t\tuiDialog = this.uiDialog;\n\n\t\tif ( key === \"dialogClass\" ) {\n\t\t\tuiDialog\n\t\t\t\t.removeClass( this.options.dialogClass )\n\t\t\t\t.addClass( value );\n\t\t}\n\n\t\tif ( key === \"disabled\" ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis._super( key, value );\n\n\t\tif ( key === \"appendTo\" ) {\n\t\t\tthis.uiDialog.appendTo( this._appendTo() );\n\t\t}\n\n\t\tif ( key === \"buttons\" ) {\n\t\t\tthis._createButtons();\n\t\t}\n\n\t\tif ( key === \"closeText\" ) {\n\t\t\tthis.uiDialogTitlebarClose.button({\n\t\t\t\t// Ensure that we always pass a string\n\t\t\t\tlabel: \"\" + value\n\t\t\t});\n\t\t}\n\n\t\tif ( key === \"draggable\" ) {\n\t\t\tisDraggable = uiDialog.is( \":data(ui-draggable)\" );\n\t\t\tif ( isDraggable && !value ) {\n\t\t\t\tuiDialog.draggable( \"destroy\" );\n\t\t\t}\n\n\t\t\tif ( !isDraggable && value ) {\n\t\t\t\tthis._makeDraggable();\n\t\t\t}\n\t\t}\n\n\t\tif ( key === \"position\" ) {\n\t\t\tthis._position();\n\t\t}\n\n\t\tif ( key === \"resizable\" ) {\n\t\t\t// currently resizable, becoming non-resizable\n\t\t\tisResizable = uiDialog.is( \":data(ui-resizable)\" );\n\t\t\tif ( isResizable && !value ) {\n\t\t\t\tuiDialog.resizable( \"destroy\" );\n\t\t\t}\n\n\t\t\t// currently resizable, changing handles\n\t\t\tif ( isResizable && typeof value === \"string\" ) {\n\t\t\t\tuiDialog.resizable( \"option\", \"handles\", value );\n\t\t\t}\n\n\t\t\t// currently non-resizable, becoming resizable\n\t\t\tif ( !isResizable && value !== false ) {\n\t\t\t\tthis._makeResizable();\n\t\t\t}\n\t\t}\n\n\t\tif ( key === \"title\" ) {\n\t\t\tthis._title( this.uiDialogTitlebar.find( \".ui-dialog-title\" ) );\n\t\t}\n\t},\n\n\t_size: function() {\n\t\t// If the user has resized the dialog, the .ui-dialog and .ui-dialog-content\n\t\t// divs will both have width and height set, so we need to reset them\n\t\tvar nonContentHeight, minContentHeight, maxContentHeight,\n\t\t\toptions = this.options;\n\n\t\t// Reset content sizing\n\t\tthis.element.show().css({\n\t\t\twidth: \"auto\",\n\t\t\tminHeight: 0,\n\t\t\tmaxHeight: \"none\",\n\t\t\theight: 0\n\t\t});\n\n\t\tif ( options.minWidth > options.width ) {\n\t\t\toptions.width = options.minWidth;\n\t\t}\n\n\t\t// reset wrapper sizing\n\t\t// determine the height of all the non-content elements\n\t\tnonContentHeight = this.uiDialog.css({\n\t\t\t\theight: \"auto\",\n\t\t\t\twidth: options.width\n\t\t\t})\n\t\t\t.outerHeight();\n\t\tminContentHeight = Math.max( 0, options.minHeight - nonContentHeight );\n\t\tmaxContentHeight = typeof options.maxHeight === \"number\" ?\n\t\t\tMath.max( 0, options.maxHeight - nonContentHeight ) :\n\t\t\t\"none\";\n\n\t\tif ( options.height === \"auto\" ) {\n\t\t\tthis.element.css({\n\t\t\t\tminHeight: minContentHeight,\n\t\t\t\tmaxHeight: maxContentHeight,\n\t\t\t\theight: \"auto\"\n\t\t\t});\n\t\t} else {\n\t\t\tthis.element.height( Math.max( 0, options.height - nonContentHeight ) );\n\t\t}\n\n\t\tif ( this.uiDialog.is( \":data(ui-resizable)\" ) ) {\n\t\t\tthis.uiDialog.resizable( \"option\", \"minHeight\", this._minHeight() );\n\t\t}\n\t},\n\n\t_blockFrames: function() {\n\t\tthis.iframeBlocks = this.document.find( \"iframe\" ).map(function() {\n\t\t\tvar iframe = $( this );\n\n\t\t\treturn $( \"<div>\" )\n\t\t\t\t.css({\n\t\t\t\t\tposition: \"absolute\",\n\t\t\t\t\twidth: iframe.outerWidth(),\n\t\t\t\t\theight: iframe.outerHeight()\n\t\t\t\t})\n\t\t\t\t.appendTo( iframe.parent() )\n\t\t\t\t.offset( iframe.offset() )[0];\n\t\t});\n\t},\n\n\t_unblockFrames: function() {\n\t\tif ( this.iframeBlocks ) {\n\t\t\tthis.iframeBlocks.remove();\n\t\t\tdelete this.iframeBlocks;\n\t\t}\n\t},\n\n\t_allowInteraction: function( event ) {\n\t\tif ( $( event.target ).closest( \".ui-dialog\" ).length ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// TODO: Remove hack when datepicker implements\n\t\t// the .ui-front logic (#8989)\n\t\treturn !!$( event.target ).closest( \".ui-datepicker\" ).length;\n\t},\n\n\t_createOverlay: function() {\n\t\tif ( !this.options.modal ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// We use a delay in case the overlay is created from an\n\t\t// event that we're going to be cancelling (#2804)\n\t\tvar isOpening = true;\n\t\tthis._delay(function() {\n\t\t\tisOpening = false;\n\t\t});\n\n\t\tif ( !this.document.data( \"ui-dialog-overlays\" ) ) {\n\n\t\t\t// Prevent use of anchors and inputs\n\t\t\t// Using _on() for an event handler shared across many instances is\n\t\t\t// safe because the dialogs stack and must be closed in reverse order\n\t\t\tthis._on( this.document, {\n\t\t\t\tfocusin: function( event ) {\n\t\t\t\t\tif ( isOpening ) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\tif ( !this._allowInteraction( event ) ) {\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\tthis._trackingInstances()[ 0 ]._focusTabbable();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tthis.overlay = $( \"<div>\" )\n\t\t\t.addClass( \"ui-widget-overlay ui-front\" )\n\t\t\t.appendTo( this._appendTo() );\n\t\tthis._on( this.overlay, {\n\t\t\tmousedown: \"_keepFocus\"\n\t\t});\n\t\tthis.document.data( \"ui-dialog-overlays\",\n\t\t\t(this.document.data( \"ui-dialog-overlays\" ) || 0) + 1 );\n\t},\n\n\t_destroyOverlay: function() {\n\t\tif ( !this.options.modal ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( this.overlay ) {\n\t\t\tvar overlays = this.document.data( \"ui-dialog-overlays\" ) - 1;\n\n\t\t\tif ( !overlays ) {\n\t\t\t\tthis.document\n\t\t\t\t\t.unbind( \"focusin\" )\n\t\t\t\t\t.removeData( \"ui-dialog-overlays\" );\n\t\t\t} else {\n\t\t\t\tthis.document.data( \"ui-dialog-overlays\", overlays );\n\t\t\t}\n\n\t\t\tthis.overlay.remove();\n\t\t\tthis.overlay = null;\n\t\t}\n\t}\n});\n\n\n/*!\n * jQuery UI Progressbar 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/progressbar/\n */\n\n\nvar progressbar = $.widget( \"ui.progressbar\", {\n\tversion: \"1.11.4\",\n\toptions: {\n\t\tmax: 100,\n\t\tvalue: 0,\n\n\t\tchange: null,\n\t\tcomplete: null\n\t},\n\n\tmin: 0,\n\n\t_create: function() {\n\t\t// Constrain initial value\n\t\tthis.oldValue = this.options.value = this._constrainedValue();\n\n\t\tthis.element\n\t\t\t.addClass( \"ui-progressbar ui-widget ui-widget-content ui-corner-all\" )\n\t\t\t.attr({\n\t\t\t\t// Only set static values, aria-valuenow and aria-valuemax are\n\t\t\t\t// set inside _refreshValue()\n\t\t\t\trole: \"progressbar\",\n\t\t\t\t\"aria-valuemin\": this.min\n\t\t\t});\n\n\t\tthis.valueDiv = $( \"<div class='ui-progressbar-value ui-widget-header ui-corner-left'></div>\" )\n\t\t\t.appendTo( this.element );\n\n\t\tthis._refreshValue();\n\t},\n\n\t_destroy: function() {\n\t\tthis.element\n\t\t\t.removeClass( \"ui-progressbar ui-widget ui-widget-content ui-corner-all\" )\n\t\t\t.removeAttr( \"role\" )\n\t\t\t.removeAttr( \"aria-valuemin\" )\n\t\t\t.removeAttr( \"aria-valuemax\" )\n\t\t\t.removeAttr( \"aria-valuenow\" );\n\n\t\tthis.valueDiv.remove();\n\t},\n\n\tvalue: function( newValue ) {\n\t\tif ( newValue === undefined ) {\n\t\t\treturn this.options.value;\n\t\t}\n\n\t\tthis.options.value = this._constrainedValue( newValue );\n\t\tthis._refreshValue();\n\t},\n\n\t_constrainedValue: function( newValue ) {\n\t\tif ( newValue === undefined ) {\n\t\t\tnewValue = this.options.value;\n\t\t}\n\n\t\tthis.indeterminate = newValue === false;\n\n\t\t// sanitize value\n\t\tif ( typeof newValue !== \"number\" ) {\n\t\t\tnewValue = 0;\n\t\t}\n\n\t\treturn this.indeterminate ? false :\n\t\t\tMath.min( this.options.max, Math.max( this.min, newValue ) );\n\t},\n\n\t_setOptions: function( options ) {\n\t\t// Ensure \"value\" option is set after other values (like max)\n\t\tvar value = options.value;\n\t\tdelete options.value;\n\n\t\tthis._super( options );\n\n\t\tthis.options.value = this._constrainedValue( value );\n\t\tthis._refreshValue();\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tif ( key === \"max\" ) {\n\t\t\t// Don't allow a max less than min\n\t\t\tvalue = Math.max( this.min, value );\n\t\t}\n\t\tif ( key === \"disabled\" ) {\n\t\t\tthis.element\n\t\t\t\t.toggleClass( \"ui-state-disabled\", !!value )\n\t\t\t\t.attr( \"aria-disabled\", value );\n\t\t}\n\t\tthis._super( key, value );\n\t},\n\n\t_percentage: function() {\n\t\treturn this.indeterminate ? 100 : 100 * ( this.options.value - this.min ) / ( this.options.max - this.min );\n\t},\n\n\t_refreshValue: function() {\n\t\tvar value = this.options.value,\n\t\t\tpercentage = this._percentage();\n\n\t\tthis.valueDiv\n\t\t\t.toggle( this.indeterminate || value > this.min )\n\t\t\t.toggleClass( \"ui-corner-right\", value === this.options.max )\n\t\t\t.width( percentage.toFixed(0) + \"%\" );\n\n\t\tthis.element.toggleClass( \"ui-progressbar-indeterminate\", this.indeterminate );\n\n\t\tif ( this.indeterminate ) {\n\t\t\tthis.element.removeAttr( \"aria-valuenow\" );\n\t\t\tif ( !this.overlayDiv ) {\n\t\t\t\tthis.overlayDiv = $( \"<div class='ui-progressbar-overlay'></div>\" ).appendTo( this.valueDiv );\n\t\t\t}\n\t\t} else {\n\t\t\tthis.element.attr({\n\t\t\t\t\"aria-valuemax\": this.options.max,\n\t\t\t\t\"aria-valuenow\": value\n\t\t\t});\n\t\t\tif ( this.overlayDiv ) {\n\t\t\t\tthis.overlayDiv.remove();\n\t\t\t\tthis.overlayDiv = null;\n\t\t\t}\n\t\t}\n\n\t\tif ( this.oldValue !== value ) {\n\t\t\tthis.oldValue = value;\n\t\t\tthis._trigger( \"change\" );\n\t\t}\n\t\tif ( value === this.options.max ) {\n\t\t\tthis._trigger( \"complete\" );\n\t\t}\n\t}\n});\n\n\n/*!\n * jQuery UI Selectmenu 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/selectmenu\n */\n\n\nvar selectmenu = $.widget( \"ui.selectmenu\", {\n\tversion: \"1.11.4\",\n\tdefaultElement: \"<select>\",\n\toptions: {\n\t\tappendTo: null,\n\t\tdisabled: null,\n\t\ticons: {\n\t\t\tbutton: \"ui-icon-triangle-1-s\"\n\t\t},\n\t\tposition: {\n\t\t\tmy: \"left top\",\n\t\t\tat: \"left bottom\",\n\t\t\tcollision: \"none\"\n\t\t},\n\t\twidth: null,\n\n\t\t// callbacks\n\t\tchange: null,\n\t\tclose: null,\n\t\tfocus: null,\n\t\topen: null,\n\t\tselect: null\n\t},\n\n\t_create: function() {\n\t\tvar selectmenuId = this.element.uniqueId().attr( \"id\" );\n\t\tthis.ids = {\n\t\t\telement: selectmenuId,\n\t\t\tbutton: selectmenuId + \"-button\",\n\t\t\tmenu: selectmenuId + \"-menu\"\n\t\t};\n\n\t\tthis._drawButton();\n\t\tthis._drawMenu();\n\n\t\tif ( this.options.disabled ) {\n\t\t\tthis.disable();\n\t\t}\n\t},\n\n\t_drawButton: function() {\n\t\tvar that = this;\n\n\t\t// Associate existing label with the new button\n\t\tthis.label = $( \"label[for='\" + this.ids.element + \"']\" ).attr( \"for\", this.ids.button );\n\t\tthis._on( this.label, {\n\t\t\tclick: function( event ) {\n\t\t\t\tthis.button.focus();\n\t\t\t\tevent.preventDefault();\n\t\t\t}\n\t\t});\n\n\t\t// Hide original select element\n\t\tthis.element.hide();\n\n\t\t// Create button\n\t\tthis.button = $( \"<span>\", {\n\t\t\t\"class\": \"ui-selectmenu-button ui-widget ui-state-default ui-corner-all\",\n\t\t\ttabindex: this.options.disabled ? -1 : 0,\n\t\t\tid: this.ids.button,\n\t\t\trole: \"combobox\",\n\t\t\t\"aria-expanded\": \"false\",\n\t\t\t\"aria-autocomplete\": \"list\",\n\t\t\t\"aria-owns\": this.ids.menu,\n\t\t\t\"aria-haspopup\": \"true\"\n\t\t})\n\t\t\t.insertAfter( this.element );\n\n\t\t$( \"<span>\", {\n\t\t\t\"class\": \"ui-icon \" + this.options.icons.button\n\t\t})\n\t\t\t.prependTo( this.button );\n\n\t\tthis.buttonText = $( \"<span>\", {\n\t\t\t\"class\": \"ui-selectmenu-text\"\n\t\t})\n\t\t\t.appendTo( this.button );\n\n\t\tthis._setText( this.buttonText, this.element.find( \"option:selected\" ).text() );\n\t\tthis._resizeButton();\n\n\t\tthis._on( this.button, this._buttonEvents );\n\t\tthis.button.one( \"focusin\", function() {\n\n\t\t\t// Delay rendering the menu items until the button receives focus.\n\t\t\t// The menu may have already been rendered via a programmatic open.\n\t\t\tif ( !that.menuItems ) {\n\t\t\t\tthat._refreshMenu();\n\t\t\t}\n\t\t});\n\t\tthis._hoverable( this.button );\n\t\tthis._focusable( this.button );\n\t},\n\n\t_drawMenu: function() {\n\t\tvar that = this;\n\n\t\t// Create menu\n\t\tthis.menu = $( \"<ul>\", {\n\t\t\t\"aria-hidden\": \"true\",\n\t\t\t\"aria-labelledby\": this.ids.button,\n\t\t\tid: this.ids.menu\n\t\t});\n\n\t\t// Wrap menu\n\t\tthis.menuWrap = $( \"<div>\", {\n\t\t\t\"class\": \"ui-selectmenu-menu ui-front\"\n\t\t})\n\t\t\t.append( this.menu )\n\t\t\t.appendTo( this._appendTo() );\n\n\t\t// Initialize menu widget\n\t\tthis.menuInstance = this.menu\n\t\t\t.menu({\n\t\t\t\trole: \"listbox\",\n\t\t\t\tselect: function( event, ui ) {\n\t\t\t\t\tevent.preventDefault();\n\n\t\t\t\t\t// support: IE8\n\t\t\t\t\t// If the item was selected via a click, the text selection\n\t\t\t\t\t// will be destroyed in IE\n\t\t\t\t\tthat._setSelection();\n\n\t\t\t\t\tthat._select( ui.item.data( \"ui-selectmenu-item\" ), event );\n\t\t\t\t},\n\t\t\t\tfocus: function( event, ui ) {\n\t\t\t\t\tvar item = ui.item.data( \"ui-selectmenu-item\" );\n\n\t\t\t\t\t// Prevent inital focus from firing and check if its a newly focused item\n\t\t\t\t\tif ( that.focusIndex != null && item.index !== that.focusIndex ) {\n\t\t\t\t\t\tthat._trigger( \"focus\", event, { item: item } );\n\t\t\t\t\t\tif ( !that.isOpen ) {\n\t\t\t\t\t\t\tthat._select( item, event );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tthat.focusIndex = item.index;\n\n\t\t\t\t\tthat.button.attr( \"aria-activedescendant\",\n\t\t\t\t\t\tthat.menuItems.eq( item.index ).attr( \"id\" ) );\n\t\t\t\t}\n\t\t\t})\n\t\t\t.menu( \"instance\" );\n\n\t\t// Adjust menu styles to dropdown\n\t\tthis.menu\n\t\t\t.addClass( \"ui-corner-bottom\" )\n\t\t\t.removeClass( \"ui-corner-all\" );\n\n\t\t// Don't close the menu on mouseleave\n\t\tthis.menuInstance._off( this.menu, \"mouseleave\" );\n\n\t\t// Cancel the menu's collapseAll on document click\n\t\tthis.menuInstance._closeOnDocumentClick = function() {\n\t\t\treturn false;\n\t\t};\n\n\t\t// Selects often contain empty items, but never contain dividers\n\t\tthis.menuInstance._isDivider = function() {\n\t\t\treturn false;\n\t\t};\n\t},\n\n\trefresh: function() {\n\t\tthis._refreshMenu();\n\t\tthis._setText( this.buttonText, this._getSelectedItem().text() );\n\t\tif ( !this.options.width ) {\n\t\t\tthis._resizeButton();\n\t\t}\n\t},\n\n\t_refreshMenu: function() {\n\t\tthis.menu.empty();\n\n\t\tvar item,\n\t\t\toptions = this.element.find( \"option\" );\n\n\t\tif ( !options.length ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis._parseOptions( options );\n\t\tthis._renderMenu( this.menu, this.items );\n\n\t\tthis.menuInstance.refresh();\n\t\tthis.menuItems = this.menu.find( \"li\" ).not( \".ui-selectmenu-optgroup\" );\n\n\t\titem = this._getSelectedItem();\n\n\t\t// Update the menu to have the correct item focused\n\t\tthis.menuInstance.focus( null, item );\n\t\tthis._setAria( item.data( \"ui-selectmenu-item\" ) );\n\n\t\t// Set disabled state\n\t\tthis._setOption( \"disabled\", this.element.prop( \"disabled\" ) );\n\t},\n\n\topen: function( event ) {\n\t\tif ( this.options.disabled ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If this is the first time the menu is being opened, render the items\n\t\tif ( !this.menuItems ) {\n\t\t\tthis._refreshMenu();\n\t\t} else {\n\n\t\t\t// Menu clears focus on close, reset focus to selected item\n\t\t\tthis.menu.find( \".ui-state-focus\" ).removeClass( \"ui-state-focus\" );\n\t\t\tthis.menuInstance.focus( null, this._getSelectedItem() );\n\t\t}\n\n\t\tthis.isOpen = true;\n\t\tthis._toggleAttr();\n\t\tthis._resizeMenu();\n\t\tthis._position();\n\n\t\tthis._on( this.document, this._documentClick );\n\n\t\tthis._trigger( \"open\", event );\n\t},\n\n\t_position: function() {\n\t\tthis.menuWrap.position( $.extend( { of: this.button }, this.options.position ) );\n\t},\n\n\tclose: function( event ) {\n\t\tif ( !this.isOpen ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.isOpen = false;\n\t\tthis._toggleAttr();\n\n\t\tthis.range = null;\n\t\tthis._off( this.document );\n\n\t\tthis._trigger( \"close\", event );\n\t},\n\n\twidget: function() {\n\t\treturn this.button;\n\t},\n\n\tmenuWidget: function() {\n\t\treturn this.menu;\n\t},\n\n\t_renderMenu: function( ul, items ) {\n\t\tvar that = this,\n\t\t\tcurrentOptgroup = \"\";\n\n\t\t$.each( items, function( index, item ) {\n\t\t\tif ( item.optgroup !== currentOptgroup ) {\n\t\t\t\t$( \"<li>\", {\n\t\t\t\t\t\"class\": \"ui-selectmenu-optgroup ui-menu-divider\" +\n\t\t\t\t\t\t( item.element.parent( \"optgroup\" ).prop( \"disabled\" ) ?\n\t\t\t\t\t\t\t\" ui-state-disabled\" :\n\t\t\t\t\t\t\t\"\" ),\n\t\t\t\t\ttext: item.optgroup\n\t\t\t\t})\n\t\t\t\t\t.appendTo( ul );\n\n\t\t\t\tcurrentOptgroup = item.optgroup;\n\t\t\t}\n\n\t\t\tthat._renderItemData( ul, item );\n\t\t});\n\t},\n\n\t_renderItemData: function( ul, item ) {\n\t\treturn this._renderItem( ul, item ).data( \"ui-selectmenu-item\", item );\n\t},\n\n\t_renderItem: function( ul, item ) {\n\t\tvar li = $( \"<li>\" );\n\n\t\tif ( item.disabled ) {\n\t\t\tli.addClass( \"ui-state-disabled\" );\n\t\t}\n\t\tthis._setText( li, item.label );\n\n\t\treturn li.appendTo( ul );\n\t},\n\n\t_setText: function( element, value ) {\n\t\tif ( value ) {\n\t\t\telement.text( value );\n\t\t} else {\n\t\t\telement.html( \"&#160;\" );\n\t\t}\n\t},\n\n\t_move: function( direction, event ) {\n\t\tvar item, next,\n\t\t\tfilter = \".ui-menu-item\";\n\n\t\tif ( this.isOpen ) {\n\t\t\titem = this.menuItems.eq( this.focusIndex );\n\t\t} else {\n\t\t\titem = this.menuItems.eq( this.element[ 0 ].selectedIndex );\n\t\t\tfilter += \":not(.ui-state-disabled)\";\n\t\t}\n\n\t\tif ( direction === \"first\" || direction === \"last\" ) {\n\t\t\tnext = item[ direction === \"first\" ? \"prevAll\" : \"nextAll\" ]( filter ).eq( -1 );\n\t\t} else {\n\t\t\tnext = item[ direction + \"All\" ]( filter ).eq( 0 );\n\t\t}\n\n\t\tif ( next.length ) {\n\t\t\tthis.menuInstance.focus( event, next );\n\t\t}\n\t},\n\n\t_getSelectedItem: function() {\n\t\treturn this.menuItems.eq( this.element[ 0 ].selectedIndex );\n\t},\n\n\t_toggle: function( event ) {\n\t\tthis[ this.isOpen ? \"close\" : \"open\" ]( event );\n\t},\n\n\t_setSelection: function() {\n\t\tvar selection;\n\n\t\tif ( !this.range ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( window.getSelection ) {\n\t\t\tselection = window.getSelection();\n\t\t\tselection.removeAllRanges();\n\t\t\tselection.addRange( this.range );\n\n\t\t// support: IE8\n\t\t} else {\n\t\t\tthis.range.select();\n\t\t}\n\n\t\t// support: IE\n\t\t// Setting the text selection kills the button focus in IE, but\n\t\t// restoring the focus doesn't kill the selection.\n\t\tthis.button.focus();\n\t},\n\n\t_documentClick: {\n\t\tmousedown: function( event ) {\n\t\t\tif ( !this.isOpen ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( !$( event.target ).closest( \".ui-selectmenu-menu, #\" + this.ids.button ).length ) {\n\t\t\t\tthis.close( event );\n\t\t\t}\n\t\t}\n\t},\n\n\t_buttonEvents: {\n\n\t\t// Prevent text selection from being reset when interacting with the selectmenu (#10144)\n\t\tmousedown: function() {\n\t\t\tvar selection;\n\n\t\t\tif ( window.getSelection ) {\n\t\t\t\tselection = window.getSelection();\n\t\t\t\tif ( selection.rangeCount ) {\n\t\t\t\t\tthis.range = selection.getRangeAt( 0 );\n\t\t\t\t}\n\n\t\t\t// support: IE8\n\t\t\t} else {\n\t\t\t\tthis.range = document.selection.createRange();\n\t\t\t}\n\t\t},\n\n\t\tclick: function( event ) {\n\t\t\tthis._setSelection();\n\t\t\tthis._toggle( event );\n\t\t},\n\n\t\tkeydown: function( event ) {\n\t\t\tvar preventDefault = true;\n\t\t\tswitch ( event.keyCode ) {\n\t\t\t\tcase $.ui.keyCode.TAB:\n\t\t\t\tcase $.ui.keyCode.ESCAPE:\n\t\t\t\t\tthis.close( event );\n\t\t\t\t\tpreventDefault = false;\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.ENTER:\n\t\t\t\t\tif ( this.isOpen ) {\n\t\t\t\t\t\tthis._selectFocusedItem( event );\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.UP:\n\t\t\t\t\tif ( event.altKey ) {\n\t\t\t\t\t\tthis._toggle( event );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis._move( \"prev\", event );\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.DOWN:\n\t\t\t\t\tif ( event.altKey ) {\n\t\t\t\t\t\tthis._toggle( event );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis._move( \"next\", event );\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.SPACE:\n\t\t\t\t\tif ( this.isOpen ) {\n\t\t\t\t\t\tthis._selectFocusedItem( event );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis._toggle( event );\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.LEFT:\n\t\t\t\t\tthis._move( \"prev\", event );\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.RIGHT:\n\t\t\t\t\tthis._move( \"next\", event );\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.HOME:\n\t\t\t\tcase $.ui.keyCode.PAGE_UP:\n\t\t\t\t\tthis._move( \"first\", event );\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.END:\n\t\t\t\tcase $.ui.keyCode.PAGE_DOWN:\n\t\t\t\t\tthis._move( \"last\", event );\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\tthis.menu.trigger( event );\n\t\t\t\t\tpreventDefault = false;\n\t\t\t}\n\n\t\t\tif ( preventDefault ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t}\n\t\t}\n\t},\n\n\t_selectFocusedItem: function( event ) {\n\t\tvar item = this.menuItems.eq( this.focusIndex );\n\t\tif ( !item.hasClass( \"ui-state-disabled\" ) ) {\n\t\t\tthis._select( item.data( \"ui-selectmenu-item\" ), event );\n\t\t}\n\t},\n\n\t_select: function( item, event ) {\n\t\tvar oldIndex = this.element[ 0 ].selectedIndex;\n\n\t\t// Change native select element\n\t\tthis.element[ 0 ].selectedIndex = item.index;\n\t\tthis._setText( this.buttonText, item.label );\n\t\tthis._setAria( item );\n\t\tthis._trigger( \"select\", event, { item: item } );\n\n\t\tif ( item.index !== oldIndex ) {\n\t\t\tthis._trigger( \"change\", event, { item: item } );\n\t\t}\n\n\t\tthis.close( event );\n\t},\n\n\t_setAria: function( item ) {\n\t\tvar id = this.menuItems.eq( item.index ).attr( \"id\" );\n\n\t\tthis.button.attr({\n\t\t\t\"aria-labelledby\": id,\n\t\t\t\"aria-activedescendant\": id\n\t\t});\n\t\tthis.menu.attr( \"aria-activedescendant\", id );\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tif ( key === \"icons\" ) {\n\t\t\tthis.button.find( \"span.ui-icon\" )\n\t\t\t\t.removeClass( this.options.icons.button )\n\t\t\t\t.addClass( value.button );\n\t\t}\n\n\t\tthis._super( key, value );\n\n\t\tif ( key === \"appendTo\" ) {\n\t\t\tthis.menuWrap.appendTo( this._appendTo() );\n\t\t}\n\n\t\tif ( key === \"disabled\" ) {\n\t\t\tthis.menuInstance.option( \"disabled\", value );\n\t\t\tthis.button\n\t\t\t\t.toggleClass( \"ui-state-disabled\", value )\n\t\t\t\t.attr( \"aria-disabled\", value );\n\n\t\t\tthis.element.prop( \"disabled\", value );\n\t\t\tif ( value ) {\n\t\t\t\tthis.button.attr( \"tabindex\", -1 );\n\t\t\t\tthis.close();\n\t\t\t} else {\n\t\t\t\tthis.button.attr( \"tabindex\", 0 );\n\t\t\t}\n\t\t}\n\n\t\tif ( key === \"width\" ) {\n\t\t\tthis._resizeButton();\n\t\t}\n\t},\n\n\t_appendTo: function() {\n\t\tvar element = this.options.appendTo;\n\n\t\tif ( element ) {\n\t\t\telement = element.jquery || element.nodeType ?\n\t\t\t\t$( element ) :\n\t\t\t\tthis.document.find( element ).eq( 0 );\n\t\t}\n\n\t\tif ( !element || !element[ 0 ] ) {\n\t\t\telement = this.element.closest( \".ui-front\" );\n\t\t}\n\n\t\tif ( !element.length ) {\n\t\t\telement = this.document[ 0 ].body;\n\t\t}\n\n\t\treturn element;\n\t},\n\n\t_toggleAttr: function() {\n\t\tthis.button\n\t\t\t.toggleClass( \"ui-corner-top\", this.isOpen )\n\t\t\t.toggleClass( \"ui-corner-all\", !this.isOpen )\n\t\t\t.attr( \"aria-expanded\", this.isOpen );\n\t\tthis.menuWrap.toggleClass( \"ui-selectmenu-open\", this.isOpen );\n\t\tthis.menu.attr( \"aria-hidden\", !this.isOpen );\n\t},\n\n\t_resizeButton: function() {\n\t\tvar width = this.options.width;\n\n\t\tif ( !width ) {\n\t\t\twidth = this.element.show().outerWidth();\n\t\t\tthis.element.hide();\n\t\t}\n\n\t\tthis.button.outerWidth( width );\n\t},\n\n\t_resizeMenu: function() {\n\t\tthis.menu.outerWidth( Math.max(\n\t\t\tthis.button.outerWidth(),\n\n\t\t\t// support: IE10\n\t\t\t// IE10 wraps long text (possibly a rounding bug)\n\t\t\t// so we add 1px to avoid the wrapping\n\t\t\tthis.menu.width( \"\" ).outerWidth() + 1\n\t\t) );\n\t},\n\n\t_getCreateOptions: function() {\n\t\treturn { disabled: this.element.prop( \"disabled\" ) };\n\t},\n\n\t_parseOptions: function( options ) {\n\t\tvar data = [];\n\t\toptions.each(function( index, item ) {\n\t\t\tvar option = $( item ),\n\t\t\t\toptgroup = option.parent( \"optgroup\" );\n\t\t\tdata.push({\n\t\t\t\telement: option,\n\t\t\t\tindex: index,\n\t\t\t\tvalue: option.val(),\n\t\t\t\tlabel: option.text(),\n\t\t\t\toptgroup: optgroup.attr( \"label\" ) || \"\",\n\t\t\t\tdisabled: optgroup.prop( \"disabled\" ) || option.prop( \"disabled\" )\n\t\t\t});\n\t\t});\n\t\tthis.items = data;\n\t},\n\n\t_destroy: function() {\n\t\tthis.menuWrap.remove();\n\t\tthis.button.remove();\n\t\tthis.element.show();\n\t\tthis.element.removeUniqueId();\n\t\tthis.label.attr( \"for\", this.ids.element );\n\t}\n});\n\n\n/*!\n * jQuery UI Slider 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/slider/\n */\n\n\nvar slider = $.widget( \"ui.slider\", $.ui.mouse, {\n\tversion: \"1.11.4\",\n\twidgetEventPrefix: \"slide\",\n\n\toptions: {\n\t\tanimate: false,\n\t\tdistance: 0,\n\t\tmax: 100,\n\t\tmin: 0,\n\t\torientation: \"horizontal\",\n\t\trange: false,\n\t\tstep: 1,\n\t\tvalue: 0,\n\t\tvalues: null,\n\n\t\t// callbacks\n\t\tchange: null,\n\t\tslide: null,\n\t\tstart: null,\n\t\tstop: null\n\t},\n\n\t// number of pages in a slider\n\t// (how many times can you page up/down to go through the whole range)\n\tnumPages: 5,\n\n\t_create: function() {\n\t\tthis._keySliding = false;\n\t\tthis._mouseSliding = false;\n\t\tthis._animateOff = true;\n\t\tthis._handleIndex = null;\n\t\tthis._detectOrientation();\n\t\tthis._mouseInit();\n\t\tthis._calculateNewMax();\n\n\t\tthis.element\n\t\t\t.addClass( \"ui-slider\" +\n\t\t\t\t\" ui-slider-\" + this.orientation +\n\t\t\t\t\" ui-widget\" +\n\t\t\t\t\" ui-widget-content\" +\n\t\t\t\t\" ui-corner-all\");\n\n\t\tthis._refresh();\n\t\tthis._setOption( \"disabled\", this.options.disabled );\n\n\t\tthis._animateOff = false;\n\t},\n\n\t_refresh: function() {\n\t\tthis._createRange();\n\t\tthis._createHandles();\n\t\tthis._setupEvents();\n\t\tthis._refreshValue();\n\t},\n\n\t_createHandles: function() {\n\t\tvar i, handleCount,\n\t\t\toptions = this.options,\n\t\t\texistingHandles = this.element.find( \".ui-slider-handle\" ).addClass( \"ui-state-default ui-corner-all\" ),\n\t\t\thandle = \"<span class='ui-slider-handle ui-state-default ui-corner-all' tabindex='0'></span>\",\n\t\t\thandles = [];\n\n\t\thandleCount = ( options.values && options.values.length ) || 1;\n\n\t\tif ( existingHandles.length > handleCount ) {\n\t\t\texistingHandles.slice( handleCount ).remove();\n\t\t\texistingHandles = existingHandles.slice( 0, handleCount );\n\t\t}\n\n\t\tfor ( i = existingHandles.length; i < handleCount; i++ ) {\n\t\t\thandles.push( handle );\n\t\t}\n\n\t\tthis.handles = existingHandles.add( $( handles.join( \"\" ) ).appendTo( this.element ) );\n\n\t\tthis.handle = this.handles.eq( 0 );\n\n\t\tthis.handles.each(function( i ) {\n\t\t\t$( this ).data( \"ui-slider-handle-index\", i );\n\t\t});\n\t},\n\n\t_createRange: function() {\n\t\tvar options = this.options,\n\t\t\tclasses = \"\";\n\n\t\tif ( options.range ) {\n\t\t\tif ( options.range === true ) {\n\t\t\t\tif ( !options.values ) {\n\t\t\t\t\toptions.values = [ this._valueMin(), this._valueMin() ];\n\t\t\t\t} else if ( options.values.length && options.values.length !== 2 ) {\n\t\t\t\t\toptions.values = [ options.values[0], options.values[0] ];\n\t\t\t\t} else if ( $.isArray( options.values ) ) {\n\t\t\t\t\toptions.values = options.values.slice(0);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( !this.range || !this.range.length ) {\n\t\t\t\tthis.range = $( \"<div></div>\" )\n\t\t\t\t\t.appendTo( this.element );\n\n\t\t\t\tclasses = \"ui-slider-range\" +\n\t\t\t\t// note: this isn't the most fittingly semantic framework class for this element,\n\t\t\t\t// but worked best visually with a variety of themes\n\t\t\t\t\" ui-widget-header ui-corner-all\";\n\t\t\t} else {\n\t\t\t\tthis.range.removeClass( \"ui-slider-range-min ui-slider-range-max\" )\n\t\t\t\t\t// Handle range switching from true to min/max\n\t\t\t\t\t.css({\n\t\t\t\t\t\t\"left\": \"\",\n\t\t\t\t\t\t\"bottom\": \"\"\n\t\t\t\t\t});\n\t\t\t}\n\n\t\t\tthis.range.addClass( classes +\n\t\t\t\t( ( options.range === \"min\" || options.range === \"max\" ) ? \" ui-slider-range-\" + options.range : \"\" ) );\n\t\t} else {\n\t\t\tif ( this.range ) {\n\t\t\t\tthis.range.remove();\n\t\t\t}\n\t\t\tthis.range = null;\n\t\t}\n\t},\n\n\t_setupEvents: function() {\n\t\tthis._off( this.handles );\n\t\tthis._on( this.handles, this._handleEvents );\n\t\tthis._hoverable( this.handles );\n\t\tthis._focusable( this.handles );\n\t},\n\n\t_destroy: function() {\n\t\tthis.handles.remove();\n\t\tif ( this.range ) {\n\t\t\tthis.range.remove();\n\t\t}\n\n\t\tthis.element\n\t\t\t.removeClass( \"ui-slider\" +\n\t\t\t\t\" ui-slider-horizontal\" +\n\t\t\t\t\" ui-slider-vertical\" +\n\t\t\t\t\" ui-widget\" +\n\t\t\t\t\" ui-widget-content\" +\n\t\t\t\t\" ui-corner-all\" );\n\n\t\tthis._mouseDestroy();\n\t},\n\n\t_mouseCapture: function( event ) {\n\t\tvar position, normValue, distance, closestHandle, index, allowed, offset, mouseOverHandle,\n\t\t\tthat = this,\n\t\t\to = this.options;\n\n\t\tif ( o.disabled ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tthis.elementSize = {\n\t\t\twidth: this.element.outerWidth(),\n\t\t\theight: this.element.outerHeight()\n\t\t};\n\t\tthis.elementOffset = this.element.offset();\n\n\t\tposition = { x: event.pageX, y: event.pageY };\n\t\tnormValue = this._normValueFromMouse( position );\n\t\tdistance = this._valueMax() - this._valueMin() + 1;\n\t\tthis.handles.each(function( i ) {\n\t\t\tvar thisDistance = Math.abs( normValue - that.values(i) );\n\t\t\tif (( distance > thisDistance ) ||\n\t\t\t\t( distance === thisDistance &&\n\t\t\t\t\t(i === that._lastChangedValue || that.values(i) === o.min ))) {\n\t\t\t\tdistance = thisDistance;\n\t\t\t\tclosestHandle = $( this );\n\t\t\t\tindex = i;\n\t\t\t}\n\t\t});\n\n\t\tallowed = this._start( event, index );\n\t\tif ( allowed === false ) {\n\t\t\treturn false;\n\t\t}\n\t\tthis._mouseSliding = true;\n\n\t\tthis._handleIndex = index;\n\n\t\tclosestHandle\n\t\t\t.addClass( \"ui-state-active\" )\n\t\t\t.focus();\n\n\t\toffset = closestHandle.offset();\n\t\tmouseOverHandle = !$( event.target ).parents().addBack().is( \".ui-slider-handle\" );\n\t\tthis._clickOffset = mouseOverHandle ? { left: 0, top: 0 } : {\n\t\t\tleft: event.pageX - offset.left - ( closestHandle.width() / 2 ),\n\t\t\ttop: event.pageY - offset.top -\n\t\t\t\t( closestHandle.height() / 2 ) -\n\t\t\t\t( parseInt( closestHandle.css(\"borderTopWidth\"), 10 ) || 0 ) -\n\t\t\t\t( parseInt( closestHandle.css(\"borderBottomWidth\"), 10 ) || 0) +\n\t\t\t\t( parseInt( closestHandle.css(\"marginTop\"), 10 ) || 0)\n\t\t};\n\n\t\tif ( !this.handles.hasClass( \"ui-state-hover\" ) ) {\n\t\t\tthis._slide( event, index, normValue );\n\t\t}\n\t\tthis._animateOff = true;\n\t\treturn true;\n\t},\n\n\t_mouseStart: function() {\n\t\treturn true;\n\t},\n\n\t_mouseDrag: function( event ) {\n\t\tvar position = { x: event.pageX, y: event.pageY },\n\t\t\tnormValue = this._normValueFromMouse( position );\n\n\t\tthis._slide( event, this._handleIndex, normValue );\n\n\t\treturn false;\n\t},\n\n\t_mouseStop: function( event ) {\n\t\tthis.handles.removeClass( \"ui-state-active\" );\n\t\tthis._mouseSliding = false;\n\n\t\tthis._stop( event, this._handleIndex );\n\t\tthis._change( event, this._handleIndex );\n\n\t\tthis._handleIndex = null;\n\t\tthis._clickOffset = null;\n\t\tthis._animateOff = false;\n\n\t\treturn false;\n\t},\n\n\t_detectOrientation: function() {\n\t\tthis.orientation = ( this.options.orientation === \"vertical\" ) ? \"vertical\" : \"horizontal\";\n\t},\n\n\t_normValueFromMouse: function( position ) {\n\t\tvar pixelTotal,\n\t\t\tpixelMouse,\n\t\t\tpercentMouse,\n\t\t\tvalueTotal,\n\t\t\tvalueMouse;\n\n\t\tif ( this.orientation === \"horizontal\" ) {\n\t\t\tpixelTotal = this.elementSize.width;\n\t\t\tpixelMouse = position.x - this.elementOffset.left - ( this._clickOffset ? this._clickOffset.left : 0 );\n\t\t} else {\n\t\t\tpixelTotal = this.elementSize.height;\n\t\t\tpixelMouse = position.y - this.elementOffset.top - ( this._clickOffset ? this._clickOffset.top : 0 );\n\t\t}\n\n\t\tpercentMouse = ( pixelMouse / pixelTotal );\n\t\tif ( percentMouse > 1 ) {\n\t\t\tpercentMouse = 1;\n\t\t}\n\t\tif ( percentMouse < 0 ) {\n\t\t\tpercentMouse = 0;\n\t\t}\n\t\tif ( this.orientation === \"vertical\" ) {\n\t\t\tpercentMouse = 1 - percentMouse;\n\t\t}\n\n\t\tvalueTotal = this._valueMax() - this._valueMin();\n\t\tvalueMouse = this._valueMin() + percentMouse * valueTotal;\n\n\t\treturn this._trimAlignValue( valueMouse );\n\t},\n\n\t_start: function( event, index ) {\n\t\tvar uiHash = {\n\t\t\thandle: this.handles[ index ],\n\t\t\tvalue: this.value()\n\t\t};\n\t\tif ( this.options.values && this.options.values.length ) {\n\t\t\tuiHash.value = this.values( index );\n\t\t\tuiHash.values = this.values();\n\t\t}\n\t\treturn this._trigger( \"start\", event, uiHash );\n\t},\n\n\t_slide: function( event, index, newVal ) {\n\t\tvar otherVal,\n\t\t\tnewValues,\n\t\t\tallowed;\n\n\t\tif ( this.options.values && this.options.values.length ) {\n\t\t\totherVal = this.values( index ? 0 : 1 );\n\n\t\t\tif ( ( this.options.values.length === 2 && this.options.range === true ) &&\n\t\t\t\t\t( ( index === 0 && newVal > otherVal) || ( index === 1 && newVal < otherVal ) )\n\t\t\t\t) {\n\t\t\t\tnewVal = otherVal;\n\t\t\t}\n\n\t\t\tif ( newVal !== this.values( index ) ) {\n\t\t\t\tnewValues = this.values();\n\t\t\t\tnewValues[ index ] = newVal;\n\t\t\t\t// A slide can be canceled by returning false from the slide callback\n\t\t\t\tallowed = this._trigger( \"slide\", event, {\n\t\t\t\t\thandle: this.handles[ index ],\n\t\t\t\t\tvalue: newVal,\n\t\t\t\t\tvalues: newValues\n\t\t\t\t} );\n\t\t\t\totherVal = this.values( index ? 0 : 1 );\n\t\t\t\tif ( allowed !== false ) {\n\t\t\t\t\tthis.values( index, newVal );\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tif ( newVal !== this.value() ) {\n\t\t\t\t// A slide can be canceled by returning false from the slide callback\n\t\t\t\tallowed = this._trigger( \"slide\", event, {\n\t\t\t\t\thandle: this.handles[ index ],\n\t\t\t\t\tvalue: newVal\n\t\t\t\t} );\n\t\t\t\tif ( allowed !== false ) {\n\t\t\t\t\tthis.value( newVal );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t_stop: function( event, index ) {\n\t\tvar uiHash = {\n\t\t\thandle: this.handles[ index ],\n\t\t\tvalue: this.value()\n\t\t};\n\t\tif ( this.options.values && this.options.values.length ) {\n\t\t\tuiHash.value = this.values( index );\n\t\t\tuiHash.values = this.values();\n\t\t}\n\n\t\tthis._trigger( \"stop\", event, uiHash );\n\t},\n\n\t_change: function( event, index ) {\n\t\tif ( !this._keySliding && !this._mouseSliding ) {\n\t\t\tvar uiHash = {\n\t\t\t\thandle: this.handles[ index ],\n\t\t\t\tvalue: this.value()\n\t\t\t};\n\t\t\tif ( this.options.values && this.options.values.length ) {\n\t\t\t\tuiHash.value = this.values( index );\n\t\t\t\tuiHash.values = this.values();\n\t\t\t}\n\n\t\t\t//store the last changed value index for reference when handles overlap\n\t\t\tthis._lastChangedValue = index;\n\n\t\t\tthis._trigger( \"change\", event, uiHash );\n\t\t}\n\t},\n\n\tvalue: function( newValue ) {\n\t\tif ( arguments.length ) {\n\t\t\tthis.options.value = this._trimAlignValue( newValue );\n\t\t\tthis._refreshValue();\n\t\t\tthis._change( null, 0 );\n\t\t\treturn;\n\t\t}\n\n\t\treturn this._value();\n\t},\n\n\tvalues: function( index, newValue ) {\n\t\tvar vals,\n\t\t\tnewValues,\n\t\t\ti;\n\n\t\tif ( arguments.length > 1 ) {\n\t\t\tthis.options.values[ index ] = this._trimAlignValue( newValue );\n\t\t\tthis._refreshValue();\n\t\t\tthis._change( null, index );\n\t\t\treturn;\n\t\t}\n\n\t\tif ( arguments.length ) {\n\t\t\tif ( $.isArray( arguments[ 0 ] ) ) {\n\t\t\t\tvals = this.options.values;\n\t\t\t\tnewValues = arguments[ 0 ];\n\t\t\t\tfor ( i = 0; i < vals.length; i += 1 ) {\n\t\t\t\t\tvals[ i ] = this._trimAlignValue( newValues[ i ] );\n\t\t\t\t\tthis._change( null, i );\n\t\t\t\t}\n\t\t\t\tthis._refreshValue();\n\t\t\t} else {\n\t\t\t\tif ( this.options.values && this.options.values.length ) {\n\t\t\t\t\treturn this._values( index );\n\t\t\t\t} else {\n\t\t\t\t\treturn this.value();\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\treturn this._values();\n\t\t}\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tvar i,\n\t\t\tvalsLength = 0;\n\n\t\tif ( key === \"range\" && this.options.range === true ) {\n\t\t\tif ( value === \"min\" ) {\n\t\t\t\tthis.options.value = this._values( 0 );\n\t\t\t\tthis.options.values = null;\n\t\t\t} else if ( value === \"max\" ) {\n\t\t\t\tthis.options.value = this._values( this.options.values.length - 1 );\n\t\t\t\tthis.options.values = null;\n\t\t\t}\n\t\t}\n\n\t\tif ( $.isArray( this.options.values ) ) {\n\t\t\tvalsLength = this.options.values.length;\n\t\t}\n\n\t\tif ( key === \"disabled\" ) {\n\t\t\tthis.element.toggleClass( \"ui-state-disabled\", !!value );\n\t\t}\n\n\t\tthis._super( key, value );\n\n\t\tswitch ( key ) {\n\t\t\tcase \"orientation\":\n\t\t\t\tthis._detectOrientation();\n\t\t\t\tthis.element\n\t\t\t\t\t.removeClass( \"ui-slider-horizontal ui-slider-vertical\" )\n\t\t\t\t\t.addClass( \"ui-slider-\" + this.orientation );\n\t\t\t\tthis._refreshValue();\n\n\t\t\t\t// Reset positioning from previous orientation\n\t\t\t\tthis.handles.css( value === \"horizontal\" ? \"bottom\" : \"left\", \"\" );\n\t\t\t\tbreak;\n\t\t\tcase \"value\":\n\t\t\t\tthis._animateOff = true;\n\t\t\t\tthis._refreshValue();\n\t\t\t\tthis._change( null, 0 );\n\t\t\t\tthis._animateOff = false;\n\t\t\t\tbreak;\n\t\t\tcase \"values\":\n\t\t\t\tthis._animateOff = true;\n\t\t\t\tthis._refreshValue();\n\t\t\t\tfor ( i = 0; i < valsLength; i += 1 ) {\n\t\t\t\t\tthis._change( null, i );\n\t\t\t\t}\n\t\t\t\tthis._animateOff = false;\n\t\t\t\tbreak;\n\t\t\tcase \"step\":\n\t\t\tcase \"min\":\n\t\t\tcase \"max\":\n\t\t\t\tthis._animateOff = true;\n\t\t\t\tthis._calculateNewMax();\n\t\t\t\tthis._refreshValue();\n\t\t\t\tthis._animateOff = false;\n\t\t\t\tbreak;\n\t\t\tcase \"range\":\n\t\t\t\tthis._animateOff = true;\n\t\t\t\tthis._refresh();\n\t\t\t\tthis._animateOff = false;\n\t\t\t\tbreak;\n\t\t}\n\t},\n\n\t//internal value getter\n\t// _value() returns value trimmed by min and max, aligned by step\n\t_value: function() {\n\t\tvar val = this.options.value;\n\t\tval = this._trimAlignValue( val );\n\n\t\treturn val;\n\t},\n\n\t//internal values getter\n\t// _values() returns array of values trimmed by min and max, aligned by step\n\t// _values( index ) returns single value trimmed by min and max, aligned by step\n\t_values: function( index ) {\n\t\tvar val,\n\t\t\tvals,\n\t\t\ti;\n\n\t\tif ( arguments.length ) {\n\t\t\tval = this.options.values[ index ];\n\t\t\tval = this._trimAlignValue( val );\n\n\t\t\treturn val;\n\t\t} else if ( this.options.values && this.options.values.length ) {\n\t\t\t// .slice() creates a copy of the array\n\t\t\t// this copy gets trimmed by min and max and then returned\n\t\t\tvals = this.options.values.slice();\n\t\t\tfor ( i = 0; i < vals.length; i += 1) {\n\t\t\t\tvals[ i ] = this._trimAlignValue( vals[ i ] );\n\t\t\t}\n\n\t\t\treturn vals;\n\t\t} else {\n\t\t\treturn [];\n\t\t}\n\t},\n\n\t// returns the step-aligned value that val is closest to, between (inclusive) min and max\n\t_trimAlignValue: function( val ) {\n\t\tif ( val <= this._valueMin() ) {\n\t\t\treturn this._valueMin();\n\t\t}\n\t\tif ( val >= this._valueMax() ) {\n\t\t\treturn this._valueMax();\n\t\t}\n\t\tvar step = ( this.options.step > 0 ) ? this.options.step : 1,\n\t\t\tvalModStep = (val - this._valueMin()) % step,\n\t\t\talignValue = val - valModStep;\n\n\t\tif ( Math.abs(valModStep) * 2 >= step ) {\n\t\t\talignValue += ( valModStep > 0 ) ? step : ( -step );\n\t\t}\n\n\t\t// Since JavaScript has problems with large floats, round\n\t\t// the final value to 5 digits after the decimal point (see #4124)\n\t\treturn parseFloat( alignValue.toFixed(5) );\n\t},\n\n\t_calculateNewMax: function() {\n\t\tvar max = this.options.max,\n\t\t\tmin = this._valueMin(),\n\t\t\tstep = this.options.step,\n\t\t\taboveMin = Math.floor( ( +( max - min ).toFixed( this._precision() ) ) / step ) * step;\n\t\tmax = aboveMin + min;\n\t\tthis.max = parseFloat( max.toFixed( this._precision() ) );\n\t},\n\n\t_precision: function() {\n\t\tvar precision = this._precisionOf( this.options.step );\n\t\tif ( this.options.min !== null ) {\n\t\t\tprecision = Math.max( precision, this._precisionOf( this.options.min ) );\n\t\t}\n\t\treturn precision;\n\t},\n\n\t_precisionOf: function( num ) {\n\t\tvar str = num.toString(),\n\t\t\tdecimal = str.indexOf( \".\" );\n\t\treturn decimal === -1 ? 0 : str.length - decimal - 1;\n\t},\n\n\t_valueMin: function() {\n\t\treturn this.options.min;\n\t},\n\n\t_valueMax: function() {\n\t\treturn this.max;\n\t},\n\n\t_refreshValue: function() {\n\t\tvar lastValPercent, valPercent, value, valueMin, valueMax,\n\t\t\toRange = this.options.range,\n\t\t\to = this.options,\n\t\t\tthat = this,\n\t\t\tanimate = ( !this._animateOff ) ? o.animate : false,\n\t\t\t_set = {};\n\n\t\tif ( this.options.values && this.options.values.length ) {\n\t\t\tthis.handles.each(function( i ) {\n\t\t\t\tvalPercent = ( that.values(i) - that._valueMin() ) / ( that._valueMax() - that._valueMin() ) * 100;\n\t\t\t\t_set[ that.orientation === \"horizontal\" ? \"left\" : \"bottom\" ] = valPercent + \"%\";\n\t\t\t\t$( this ).stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( _set, o.animate );\n\t\t\t\tif ( that.options.range === true ) {\n\t\t\t\t\tif ( that.orientation === \"horizontal\" ) {\n\t\t\t\t\t\tif ( i === 0 ) {\n\t\t\t\t\t\t\tthat.range.stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( { left: valPercent + \"%\" }, o.animate );\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( i === 1 ) {\n\t\t\t\t\t\t\tthat.range[ animate ? \"animate\" : \"css\" ]( { width: ( valPercent - lastValPercent ) + \"%\" }, { queue: false, duration: o.animate } );\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif ( i === 0 ) {\n\t\t\t\t\t\t\tthat.range.stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( { bottom: ( valPercent ) + \"%\" }, o.animate );\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( i === 1 ) {\n\t\t\t\t\t\t\tthat.range[ animate ? \"animate\" : \"css\" ]( { height: ( valPercent - lastValPercent ) + \"%\" }, { queue: false, duration: o.animate } );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tlastValPercent = valPercent;\n\t\t\t});\n\t\t} else {\n\t\t\tvalue = this.value();\n\t\t\tvalueMin = this._valueMin();\n\t\t\tvalueMax = this._valueMax();\n\t\t\tvalPercent = ( valueMax !== valueMin ) ?\n\t\t\t\t\t( value - valueMin ) / ( valueMax - valueMin ) * 100 :\n\t\t\t\t\t0;\n\t\t\t_set[ this.orientation === \"horizontal\" ? \"left\" : \"bottom\" ] = valPercent + \"%\";\n\t\t\tthis.handle.stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( _set, o.animate );\n\n\t\t\tif ( oRange === \"min\" && this.orientation === \"horizontal\" ) {\n\t\t\t\tthis.range.stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( { width: valPercent + \"%\" }, o.animate );\n\t\t\t}\n\t\t\tif ( oRange === \"max\" && this.orientation === \"horizontal\" ) {\n\t\t\t\tthis.range[ animate ? \"animate\" : \"css\" ]( { width: ( 100 - valPercent ) + \"%\" }, { queue: false, duration: o.animate } );\n\t\t\t}\n\t\t\tif ( oRange === \"min\" && this.orientation === \"vertical\" ) {\n\t\t\t\tthis.range.stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( { height: valPercent + \"%\" }, o.animate );\n\t\t\t}\n\t\t\tif ( oRange === \"max\" && this.orientation === \"vertical\" ) {\n\t\t\t\tthis.range[ animate ? \"animate\" : \"css\" ]( { height: ( 100 - valPercent ) + \"%\" }, { queue: false, duration: o.animate } );\n\t\t\t}\n\t\t}\n\t},\n\n\t_handleEvents: {\n\t\tkeydown: function( event ) {\n\t\t\tvar allowed, curVal, newVal, step,\n\t\t\t\tindex = $( event.target ).data( \"ui-slider-handle-index\" );\n\n\t\t\tswitch ( event.keyCode ) {\n\t\t\t\tcase $.ui.keyCode.HOME:\n\t\t\t\tcase $.ui.keyCode.END:\n\t\t\t\tcase $.ui.keyCode.PAGE_UP:\n\t\t\t\tcase $.ui.keyCode.PAGE_DOWN:\n\t\t\t\tcase $.ui.keyCode.UP:\n\t\t\t\tcase $.ui.keyCode.RIGHT:\n\t\t\t\tcase $.ui.keyCode.DOWN:\n\t\t\t\tcase $.ui.keyCode.LEFT:\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\tif ( !this._keySliding ) {\n\t\t\t\t\t\tthis._keySliding = true;\n\t\t\t\t\t\t$( event.target ).addClass( \"ui-state-active\" );\n\t\t\t\t\t\tallowed = this._start( event, index );\n\t\t\t\t\t\tif ( allowed === false ) {\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tstep = this.options.step;\n\t\t\tif ( this.options.values && this.options.values.length ) {\n\t\t\t\tcurVal = newVal = this.values( index );\n\t\t\t} else {\n\t\t\t\tcurVal = newVal = this.value();\n\t\t\t}\n\n\t\t\tswitch ( event.keyCode ) {\n\t\t\t\tcase $.ui.keyCode.HOME:\n\t\t\t\t\tnewVal = this._valueMin();\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.END:\n\t\t\t\t\tnewVal = this._valueMax();\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.PAGE_UP:\n\t\t\t\t\tnewVal = this._trimAlignValue(\n\t\t\t\t\t\tcurVal + ( ( this._valueMax() - this._valueMin() ) / this.numPages )\n\t\t\t\t\t);\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.PAGE_DOWN:\n\t\t\t\t\tnewVal = this._trimAlignValue(\n\t\t\t\t\t\tcurVal - ( (this._valueMax() - this._valueMin()) / this.numPages ) );\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.UP:\n\t\t\t\tcase $.ui.keyCode.RIGHT:\n\t\t\t\t\tif ( curVal === this._valueMax() ) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\tnewVal = this._trimAlignValue( curVal + step );\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.DOWN:\n\t\t\t\tcase $.ui.keyCode.LEFT:\n\t\t\t\t\tif ( curVal === this._valueMin() ) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\tnewVal = this._trimAlignValue( curVal - step );\n\t\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tthis._slide( event, index, newVal );\n\t\t},\n\t\tkeyup: function( event ) {\n\t\t\tvar index = $( event.target ).data( \"ui-slider-handle-index\" );\n\n\t\t\tif ( this._keySliding ) {\n\t\t\t\tthis._keySliding = false;\n\t\t\t\tthis._stop( event, index );\n\t\t\t\tthis._change( event, index );\n\t\t\t\t$( event.target ).removeClass( \"ui-state-active\" );\n\t\t\t}\n\t\t}\n\t}\n});\n\n\n/*!\n * jQuery UI Spinner 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/spinner/\n */\n\n\nfunction spinner_modifier( fn ) {\n\treturn function() {\n\t\tvar previous = this.element.val();\n\t\tfn.apply( this, arguments );\n\t\tthis._refresh();\n\t\tif ( previous !== this.element.val() ) {\n\t\t\tthis._trigger( \"change\" );\n\t\t}\n\t};\n}\n\nvar spinner = $.widget( \"ui.spinner\", {\n\tversion: \"1.11.4\",\n\tdefaultElement: \"<input>\",\n\twidgetEventPrefix: \"spin\",\n\toptions: {\n\t\tculture: null,\n\t\ticons: {\n\t\t\tdown: \"ui-icon-triangle-1-s\",\n\t\t\tup: \"ui-icon-triangle-1-n\"\n\t\t},\n\t\tincremental: true,\n\t\tmax: null,\n\t\tmin: null,\n\t\tnumberFormat: null,\n\t\tpage: 10,\n\t\tstep: 1,\n\n\t\tchange: null,\n\t\tspin: null,\n\t\tstart: null,\n\t\tstop: null\n\t},\n\n\t_create: function() {\n\t\t// handle string values that need to be parsed\n\t\tthis._setOption( \"max\", this.options.max );\n\t\tthis._setOption( \"min\", this.options.min );\n\t\tthis._setOption( \"step\", this.options.step );\n\n\t\t// Only format if there is a value, prevents the field from being marked\n\t\t// as invalid in Firefox, see #9573.\n\t\tif ( this.value() !== \"\" ) {\n\t\t\t// Format the value, but don't constrain.\n\t\t\tthis._value( this.element.val(), true );\n\t\t}\n\n\t\tthis._draw();\n\t\tthis._on( this._events );\n\t\tthis._refresh();\n\n\t\t// turning off autocomplete prevents the browser from remembering the\n\t\t// value when navigating through history, so we re-enable autocomplete\n\t\t// if the page is unloaded before the widget is destroyed. #7790\n\t\tthis._on( this.window, {\n\t\t\tbeforeunload: function() {\n\t\t\t\tthis.element.removeAttr( \"autocomplete\" );\n\t\t\t}\n\t\t});\n\t},\n\n\t_getCreateOptions: function() {\n\t\tvar options = {},\n\t\t\telement = this.element;\n\n\t\t$.each( [ \"min\", \"max\", \"step\" ], function( i, option ) {\n\t\t\tvar value = element.attr( option );\n\t\t\tif ( value !== undefined && value.length ) {\n\t\t\t\toptions[ option ] = value;\n\t\t\t}\n\t\t});\n\n\t\treturn options;\n\t},\n\n\t_events: {\n\t\tkeydown: function( event ) {\n\t\t\tif ( this._start( event ) && this._keydown( event ) ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t}\n\t\t},\n\t\tkeyup: \"_stop\",\n\t\tfocus: function() {\n\t\t\tthis.previous = this.element.val();\n\t\t},\n\t\tblur: function( event ) {\n\t\t\tif ( this.cancelBlur ) {\n\t\t\t\tdelete this.cancelBlur;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tthis._stop();\n\t\t\tthis._refresh();\n\t\t\tif ( this.previous !== this.element.val() ) {\n\t\t\t\tthis._trigger( \"change\", event );\n\t\t\t}\n\t\t},\n\t\tmousewheel: function( event, delta ) {\n\t\t\tif ( !delta ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tif ( !this.spinning && !this._start( event ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\tthis._spin( (delta > 0 ? 1 : -1) * this.options.step, event );\n\t\t\tclearTimeout( this.mousewheelTimer );\n\t\t\tthis.mousewheelTimer = this._delay(function() {\n\t\t\t\tif ( this.spinning ) {\n\t\t\t\t\tthis._stop( event );\n\t\t\t\t}\n\t\t\t}, 100 );\n\t\t\tevent.preventDefault();\n\t\t},\n\t\t\"mousedown .ui-spinner-button\": function( event ) {\n\t\t\tvar previous;\n\n\t\t\t// We never want the buttons to have focus; whenever the user is\n\t\t\t// interacting with the spinner, the focus should be on the input.\n\t\t\t// If the input is focused then this.previous is properly set from\n\t\t\t// when the input first received focus. If the input is not focused\n\t\t\t// then we need to set this.previous based on the value before spinning.\n\t\t\tprevious = this.element[0] === this.document[0].activeElement ?\n\t\t\t\tthis.previous : this.element.val();\n\t\t\tfunction checkFocus() {\n\t\t\t\tvar isActive = this.element[0] === this.document[0].activeElement;\n\t\t\t\tif ( !isActive ) {\n\t\t\t\t\tthis.element.focus();\n\t\t\t\t\tthis.previous = previous;\n\t\t\t\t\t// support: IE\n\t\t\t\t\t// IE sets focus asynchronously, so we need to check if focus\n\t\t\t\t\t// moved off of the input because the user clicked on the button.\n\t\t\t\t\tthis._delay(function() {\n\t\t\t\t\t\tthis.previous = previous;\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// ensure focus is on (or stays on) the text field\n\t\t\tevent.preventDefault();\n\t\t\tcheckFocus.call( this );\n\n\t\t\t// support: IE\n\t\t\t// IE doesn't prevent moving focus even with event.preventDefault()\n\t\t\t// so we set a flag to know when we should ignore the blur event\n\t\t\t// and check (again) if focus moved off of the input.\n\t\t\tthis.cancelBlur = true;\n\t\t\tthis._delay(function() {\n\t\t\t\tdelete this.cancelBlur;\n\t\t\t\tcheckFocus.call( this );\n\t\t\t});\n\n\t\t\tif ( this._start( event ) === false ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tthis._repeat( null, $( event.currentTarget ).hasClass( \"ui-spinner-up\" ) ? 1 : -1, event );\n\t\t},\n\t\t\"mouseup .ui-spinner-button\": \"_stop\",\n\t\t\"mouseenter .ui-spinner-button\": function( event ) {\n\t\t\t// button will add ui-state-active if mouse was down while mouseleave and kept down\n\t\t\tif ( !$( event.currentTarget ).hasClass( \"ui-state-active\" ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( this._start( event ) === false ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tthis._repeat( null, $( event.currentTarget ).hasClass( \"ui-spinner-up\" ) ? 1 : -1, event );\n\t\t},\n\t\t// TODO: do we really want to consider this a stop?\n\t\t// shouldn't we just stop the repeater and wait until mouseup before\n\t\t// we trigger the stop event?\n\t\t\"mouseleave .ui-spinner-button\": \"_stop\"\n\t},\n\n\t_draw: function() {\n\t\tvar uiSpinner = this.uiSpinner = this.element\n\t\t\t.addClass( \"ui-spinner-input\" )\n\t\t\t.attr( \"autocomplete\", \"off\" )\n\t\t\t.wrap( this._uiSpinnerHtml() )\n\t\t\t.parent()\n\t\t\t\t// add buttons\n\t\t\t\t.append( this._buttonHtml() );\n\n\t\tthis.element.attr( \"role\", \"spinbutton\" );\n\n\t\t// button bindings\n\t\tthis.buttons = uiSpinner.find( \".ui-spinner-button\" )\n\t\t\t.attr( \"tabIndex\", -1 )\n\t\t\t.button()\n\t\t\t.removeClass( \"ui-corner-all\" );\n\n\t\t// IE 6 doesn't understand height: 50% for the buttons\n\t\t// unless the wrapper has an explicit height\n\t\tif ( this.buttons.height() > Math.ceil( uiSpinner.height() * 0.5 ) &&\n\t\t\t\tuiSpinner.height() > 0 ) {\n\t\t\tuiSpinner.height( uiSpinner.height() );\n\t\t}\n\n\t\t// disable spinner if element was already disabled\n\t\tif ( this.options.disabled ) {\n\t\t\tthis.disable();\n\t\t}\n\t},\n\n\t_keydown: function( event ) {\n\t\tvar options = this.options,\n\t\t\tkeyCode = $.ui.keyCode;\n\n\t\tswitch ( event.keyCode ) {\n\t\tcase keyCode.UP:\n\t\t\tthis._repeat( null, 1, event );\n\t\t\treturn true;\n\t\tcase keyCode.DOWN:\n\t\t\tthis._repeat( null, -1, event );\n\t\t\treturn true;\n\t\tcase keyCode.PAGE_UP:\n\t\t\tthis._repeat( null, options.page, event );\n\t\t\treturn true;\n\t\tcase keyCode.PAGE_DOWN:\n\t\t\tthis._repeat( null, -options.page, event );\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t},\n\n\t_uiSpinnerHtml: function() {\n\t\treturn \"<span class='ui-spinner ui-widget ui-widget-content ui-corner-all'></span>\";\n\t},\n\n\t_buttonHtml: function() {\n\t\treturn \"\" +\n\t\t\t\"<a class='ui-spinner-button ui-spinner-up ui-corner-tr'>\" +\n\t\t\t\t\"<span class='ui-icon \" + this.options.icons.up + \"'>&#9650;</span>\" +\n\t\t\t\"</a>\" +\n\t\t\t\"<a class='ui-spinner-button ui-spinner-down ui-corner-br'>\" +\n\t\t\t\t\"<span class='ui-icon \" + this.options.icons.down + \"'>&#9660;</span>\" +\n\t\t\t\"</a>\";\n\t},\n\n\t_start: function( event ) {\n\t\tif ( !this.spinning && this._trigger( \"start\", event ) === false ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif ( !this.counter ) {\n\t\t\tthis.counter = 1;\n\t\t}\n\t\tthis.spinning = true;\n\t\treturn true;\n\t},\n\n\t_repeat: function( i, steps, event ) {\n\t\ti = i || 500;\n\n\t\tclearTimeout( this.timer );\n\t\tthis.timer = this._delay(function() {\n\t\t\tthis._repeat( 40, steps, event );\n\t\t}, i );\n\n\t\tthis._spin( steps * this.options.step, event );\n\t},\n\n\t_spin: function( step, event ) {\n\t\tvar value = this.value() || 0;\n\n\t\tif ( !this.counter ) {\n\t\t\tthis.counter = 1;\n\t\t}\n\n\t\tvalue = this._adjustValue( value + step * this._increment( this.counter ) );\n\n\t\tif ( !this.spinning || this._trigger( \"spin\", event, { value: value } ) !== false) {\n\t\t\tthis._value( value );\n\t\t\tthis.counter++;\n\t\t}\n\t},\n\n\t_increment: function( i ) {\n\t\tvar incremental = this.options.incremental;\n\n\t\tif ( incremental ) {\n\t\t\treturn $.isFunction( incremental ) ?\n\t\t\t\tincremental( i ) :\n\t\t\t\tMath.floor( i * i * i / 50000 - i * i / 500 + 17 * i / 200 + 1 );\n\t\t}\n\n\t\treturn 1;\n\t},\n\n\t_precision: function() {\n\t\tvar precision = this._precisionOf( this.options.step );\n\t\tif ( this.options.min !== null ) {\n\t\t\tprecision = Math.max( precision, this._precisionOf( this.options.min ) );\n\t\t}\n\t\treturn precision;\n\t},\n\n\t_precisionOf: function( num ) {\n\t\tvar str = num.toString(),\n\t\t\tdecimal = str.indexOf( \".\" );\n\t\treturn decimal === -1 ? 0 : str.length - decimal - 1;\n\t},\n\n\t_adjustValue: function( value ) {\n\t\tvar base, aboveMin,\n\t\t\toptions = this.options;\n\n\t\t// make sure we're at a valid step\n\t\t// - find out where we are relative to the base (min or 0)\n\t\tbase = options.min !== null ? options.min : 0;\n\t\taboveMin = value - base;\n\t\t// - round to the nearest step\n\t\taboveMin = Math.round(aboveMin / options.step) * options.step;\n\t\t// - rounding is based on 0, so adjust back to our base\n\t\tvalue = base + aboveMin;\n\n\t\t// fix precision from bad JS floating point math\n\t\tvalue = parseFloat( value.toFixed( this._precision() ) );\n\n\t\t// clamp the value\n\t\tif ( options.max !== null && value > options.max) {\n\t\t\treturn options.max;\n\t\t}\n\t\tif ( options.min !== null && value < options.min ) {\n\t\t\treturn options.min;\n\t\t}\n\n\t\treturn value;\n\t},\n\n\t_stop: function( event ) {\n\t\tif ( !this.spinning ) {\n\t\t\treturn;\n\t\t}\n\n\t\tclearTimeout( this.timer );\n\t\tclearTimeout( this.mousewheelTimer );\n\t\tthis.counter = 0;\n\t\tthis.spinning = false;\n\t\tthis._trigger( \"stop\", event );\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tif ( key === \"culture\" || key === \"numberFormat\" ) {\n\t\t\tvar prevValue = this._parse( this.element.val() );\n\t\t\tthis.options[ key ] = value;\n\t\t\tthis.element.val( this._format( prevValue ) );\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key === \"max\" || key === \"min\" || key === \"step\" ) {\n\t\t\tif ( typeof value === \"string\" ) {\n\t\t\t\tvalue = this._parse( value );\n\t\t\t}\n\t\t}\n\t\tif ( key === \"icons\" ) {\n\t\t\tthis.buttons.first().find( \".ui-icon\" )\n\t\t\t\t.removeClass( this.options.icons.up )\n\t\t\t\t.addClass( value.up );\n\t\t\tthis.buttons.last().find( \".ui-icon\" )\n\t\t\t\t.removeClass( this.options.icons.down )\n\t\t\t\t.addClass( value.down );\n\t\t}\n\n\t\tthis._super( key, value );\n\n\t\tif ( key === \"disabled\" ) {\n\t\t\tthis.widget().toggleClass( \"ui-state-disabled\", !!value );\n\t\t\tthis.element.prop( \"disabled\", !!value );\n\t\t\tthis.buttons.button( value ? \"disable\" : \"enable\" );\n\t\t}\n\t},\n\n\t_setOptions: spinner_modifier(function( options ) {\n\t\tthis._super( options );\n\t}),\n\n\t_parse: function( val ) {\n\t\tif ( typeof val === \"string\" && val !== \"\" ) {\n\t\t\tval = window.Globalize && this.options.numberFormat ?\n\t\t\t\tGlobalize.parseFloat( val, 10, this.options.culture ) : +val;\n\t\t}\n\t\treturn val === \"\" || isNaN( val ) ? null : val;\n\t},\n\n\t_format: function( value ) {\n\t\tif ( value === \"\" ) {\n\t\t\treturn \"\";\n\t\t}\n\t\treturn window.Globalize && this.options.numberFormat ?\n\t\t\tGlobalize.format( value, this.options.numberFormat, this.options.culture ) :\n\t\t\tvalue;\n\t},\n\n\t_refresh: function() {\n\t\tthis.element.attr({\n\t\t\t\"aria-valuemin\": this.options.min,\n\t\t\t\"aria-valuemax\": this.options.max,\n\t\t\t// TODO: what should we do with values that can't be parsed?\n\t\t\t\"aria-valuenow\": this._parse( this.element.val() )\n\t\t});\n\t},\n\n\tisValid: function() {\n\t\tvar value = this.value();\n\n\t\t// null is invalid\n\t\tif ( value === null ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// if value gets adjusted, it's invalid\n\t\treturn value === this._adjustValue( value );\n\t},\n\n\t// update the value without triggering change\n\t_value: function( value, allowAny ) {\n\t\tvar parsed;\n\t\tif ( value !== \"\" ) {\n\t\t\tparsed = this._parse( value );\n\t\t\tif ( parsed !== null ) {\n\t\t\t\tif ( !allowAny ) {\n\t\t\t\t\tparsed = this._adjustValue( parsed );\n\t\t\t\t}\n\t\t\t\tvalue = this._format( parsed );\n\t\t\t}\n\t\t}\n\t\tthis.element.val( value );\n\t\tthis._refresh();\n\t},\n\n\t_destroy: function() {\n\t\tthis.element\n\t\t\t.removeClass( \"ui-spinner-input\" )\n\t\t\t.prop( \"disabled\", false )\n\t\t\t.removeAttr( \"autocomplete\" )\n\t\t\t.removeAttr( \"role\" )\n\t\t\t.removeAttr( \"aria-valuemin\" )\n\t\t\t.removeAttr( \"aria-valuemax\" )\n\t\t\t.removeAttr( \"aria-valuenow\" );\n\t\tthis.uiSpinner.replaceWith( this.element );\n\t},\n\n\tstepUp: spinner_modifier(function( steps ) {\n\t\tthis._stepUp( steps );\n\t}),\n\t_stepUp: function( steps ) {\n\t\tif ( this._start() ) {\n\t\t\tthis._spin( (steps || 1) * this.options.step );\n\t\t\tthis._stop();\n\t\t}\n\t},\n\n\tstepDown: spinner_modifier(function( steps ) {\n\t\tthis._stepDown( steps );\n\t}),\n\t_stepDown: function( steps ) {\n\t\tif ( this._start() ) {\n\t\t\tthis._spin( (steps || 1) * -this.options.step );\n\t\t\tthis._stop();\n\t\t}\n\t},\n\n\tpageUp: spinner_modifier(function( pages ) {\n\t\tthis._stepUp( (pages || 1) * this.options.page );\n\t}),\n\n\tpageDown: spinner_modifier(function( pages ) {\n\t\tthis._stepDown( (pages || 1) * this.options.page );\n\t}),\n\n\tvalue: function( newVal ) {\n\t\tif ( !arguments.length ) {\n\t\t\treturn this._parse( this.element.val() );\n\t\t}\n\t\tspinner_modifier( this._value ).call( this, newVal );\n\t},\n\n\twidget: function() {\n\t\treturn this.uiSpinner;\n\t}\n});\n\n\n/*!\n * jQuery UI Tabs 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/tabs/\n */\n\n\nvar tabs = $.widget( \"ui.tabs\", {\n\tversion: \"1.11.4\",\n\tdelay: 300,\n\toptions: {\n\t\tactive: null,\n\t\tcollapsible: false,\n\t\tevent: \"click\",\n\t\theightStyle: \"content\",\n\t\thide: null,\n\t\tshow: null,\n\n\t\t// callbacks\n\t\tactivate: null,\n\t\tbeforeActivate: null,\n\t\tbeforeLoad: null,\n\t\tload: null\n\t},\n\n\t_isLocal: (function() {\n\t\tvar rhash = /#.*$/;\n\n\t\treturn function( anchor ) {\n\t\t\tvar anchorUrl, locationUrl;\n\n\t\t\t// support: IE7\n\t\t\t// IE7 doesn't normalize the href property when set via script (#9317)\n\t\t\tanchor = anchor.cloneNode( false );\n\n\t\t\tanchorUrl = anchor.href.replace( rhash, \"\" );\n\t\t\tlocationUrl = location.href.replace( rhash, \"\" );\n\n\t\t\t// decoding may throw an error if the URL isn't UTF-8 (#9518)\n\t\t\ttry {\n\t\t\t\tanchorUrl = decodeURIComponent( anchorUrl );\n\t\t\t} catch ( error ) {}\n\t\t\ttry {\n\t\t\t\tlocationUrl = decodeURIComponent( locationUrl );\n\t\t\t} catch ( error ) {}\n\n\t\t\treturn anchor.hash.length > 1 && anchorUrl === locationUrl;\n\t\t};\n\t})(),\n\n\t_create: function() {\n\t\tvar that = this,\n\t\t\toptions = this.options;\n\n\t\tthis.running = false;\n\n\t\tthis.element\n\t\t\t.addClass( \"ui-tabs ui-widget ui-widget-content ui-corner-all\" )\n\t\t\t.toggleClass( \"ui-tabs-collapsible\", options.collapsible );\n\n\t\tthis._processTabs();\n\t\toptions.active = this._initialActive();\n\n\t\t// Take disabling tabs via class attribute from HTML\n\t\t// into account and update option properly.\n\t\tif ( $.isArray( options.disabled ) ) {\n\t\t\toptions.disabled = $.unique( options.disabled.concat(\n\t\t\t\t$.map( this.tabs.filter( \".ui-state-disabled\" ), function( li ) {\n\t\t\t\t\treturn that.tabs.index( li );\n\t\t\t\t})\n\t\t\t) ).sort();\n\t\t}\n\n\t\t// check for length avoids error when initializing empty list\n\t\tif ( this.options.active !== false && this.anchors.length ) {\n\t\t\tthis.active = this._findActive( options.active );\n\t\t} else {\n\t\t\tthis.active = $();\n\t\t}\n\n\t\tthis._refresh();\n\n\t\tif ( this.active.length ) {\n\t\t\tthis.load( options.active );\n\t\t}\n\t},\n\n\t_initialActive: function() {\n\t\tvar active = this.options.active,\n\t\t\tcollapsible = this.options.collapsible,\n\t\t\tlocationHash = location.hash.substring( 1 );\n\n\t\tif ( active === null ) {\n\t\t\t// check the fragment identifier in the URL\n\t\t\tif ( locationHash ) {\n\t\t\t\tthis.tabs.each(function( i, tab ) {\n\t\t\t\t\tif ( $( tab ).attr( \"aria-controls\" ) === locationHash ) {\n\t\t\t\t\t\tactive = i;\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t// check for a tab marked active via a class\n\t\t\tif ( active === null ) {\n\t\t\t\tactive = this.tabs.index( this.tabs.filter( \".ui-tabs-active\" ) );\n\t\t\t}\n\n\t\t\t// no active tab, set to false\n\t\t\tif ( active === null || active === -1 ) {\n\t\t\t\tactive = this.tabs.length ? 0 : false;\n\t\t\t}\n\t\t}\n\n\t\t// handle numbers: negative, out of range\n\t\tif ( active !== false ) {\n\t\t\tactive = this.tabs.index( this.tabs.eq( active ) );\n\t\t\tif ( active === -1 ) {\n\t\t\t\tactive = collapsible ? false : 0;\n\t\t\t}\n\t\t}\n\n\t\t// don't allow collapsible: false and active: false\n\t\tif ( !collapsible && active === false && this.anchors.length ) {\n\t\t\tactive = 0;\n\t\t}\n\n\t\treturn active;\n\t},\n\n\t_getCreateEventData: function() {\n\t\treturn {\n\t\t\ttab: this.active,\n\t\t\tpanel: !this.active.length ? $() : this._getPanelForTab( this.active )\n\t\t};\n\t},\n\n\t_tabKeydown: function( event ) {\n\t\tvar focusedTab = $( this.document[0].activeElement ).closest( \"li\" ),\n\t\t\tselectedIndex = this.tabs.index( focusedTab ),\n\t\t\tgoingForward = true;\n\n\t\tif ( this._handlePageNav( event ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tswitch ( event.keyCode ) {\n\t\t\tcase $.ui.keyCode.RIGHT:\n\t\t\tcase $.ui.keyCode.DOWN:\n\t\t\t\tselectedIndex++;\n\t\t\t\tbreak;\n\t\t\tcase $.ui.keyCode.UP:\n\t\t\tcase $.ui.keyCode.LEFT:\n\t\t\t\tgoingForward = false;\n\t\t\t\tselectedIndex--;\n\t\t\t\tbreak;\n\t\t\tcase $.ui.keyCode.END:\n\t\t\t\tselectedIndex = this.anchors.length - 1;\n\t\t\t\tbreak;\n\t\t\tcase $.ui.keyCode.HOME:\n\t\t\t\tselectedIndex = 0;\n\t\t\t\tbreak;\n\t\t\tcase $.ui.keyCode.SPACE:\n\t\t\t\t// Activate only, no collapsing\n\t\t\t\tevent.preventDefault();\n\t\t\t\tclearTimeout( this.activating );\n\t\t\t\tthis._activate( selectedIndex );\n\t\t\t\treturn;\n\t\t\tcase $.ui.keyCode.ENTER:\n\t\t\t\t// Toggle (cancel delayed activation, allow collapsing)\n\t\t\t\tevent.preventDefault();\n\t\t\t\tclearTimeout( this.activating );\n\t\t\t\t// Determine if we should collapse or activate\n\t\t\t\tthis._activate( selectedIndex === this.options.active ? false : selectedIndex );\n\t\t\t\treturn;\n\t\t\tdefault:\n\t\t\t\treturn;\n\t\t}\n\n\t\t// Focus the appropriate tab, based on which key was pressed\n\t\tevent.preventDefault();\n\t\tclearTimeout( this.activating );\n\t\tselectedIndex = this._focusNextTab( selectedIndex, goingForward );\n\n\t\t// Navigating with control/command key will prevent automatic activation\n\t\tif ( !event.ctrlKey && !event.metaKey ) {\n\n\t\t\t// Update aria-selected immediately so that AT think the tab is already selected.\n\t\t\t// Otherwise AT may confuse the user by stating that they need to activate the tab,\n\t\t\t// but the tab will already be activated by the time the announcement finishes.\n\t\t\tfocusedTab.attr( \"aria-selected\", \"false\" );\n\t\t\tthis.tabs.eq( selectedIndex ).attr( \"aria-selected\", \"true\" );\n\n\t\t\tthis.activating = this._delay(function() {\n\t\t\t\tthis.option( \"active\", selectedIndex );\n\t\t\t}, this.delay );\n\t\t}\n\t},\n\n\t_panelKeydown: function( event ) {\n\t\tif ( this._handlePageNav( event ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Ctrl+up moves focus to the current tab\n\t\tif ( event.ctrlKey && event.keyCode === $.ui.keyCode.UP ) {\n\t\t\tevent.preventDefault();\n\t\t\tthis.active.focus();\n\t\t}\n\t},\n\n\t// Alt+page up/down moves focus to the previous/next tab (and activates)\n\t_handlePageNav: function( event ) {\n\t\tif ( event.altKey && event.keyCode === $.ui.keyCode.PAGE_UP ) {\n\t\t\tthis._activate( this._focusNextTab( this.options.active - 1, false ) );\n\t\t\treturn true;\n\t\t}\n\t\tif ( event.altKey && event.keyCode === $.ui.keyCode.PAGE_DOWN ) {\n\t\t\tthis._activate( this._focusNextTab( this.options.active + 1, true ) );\n\t\t\treturn true;\n\t\t}\n\t},\n\n\t_findNextTab: function( index, goingForward ) {\n\t\tvar lastTabIndex = this.tabs.length - 1;\n\n\t\tfunction constrain() {\n\t\t\tif ( index > lastTabIndex ) {\n\t\t\t\tindex = 0;\n\t\t\t}\n\t\t\tif ( index < 0 ) {\n\t\t\t\tindex = lastTabIndex;\n\t\t\t}\n\t\t\treturn index;\n\t\t}\n\n\t\twhile ( $.inArray( constrain(), this.options.disabled ) !== -1 ) {\n\t\t\tindex = goingForward ? index + 1 : index - 1;\n\t\t}\n\n\t\treturn index;\n\t},\n\n\t_focusNextTab: function( index, goingForward ) {\n\t\tindex = this._findNextTab( index, goingForward );\n\t\tthis.tabs.eq( index ).focus();\n\t\treturn index;\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tif ( key === \"active\" ) {\n\t\t\t// _activate() will handle invalid values and update this.options\n\t\t\tthis._activate( value );\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key === \"disabled\" ) {\n\t\t\t// don't use the widget factory's disabled handling\n\t\t\tthis._setupDisabled( value );\n\t\t\treturn;\n\t\t}\n\n\t\tthis._super( key, value);\n\n\t\tif ( key === \"collapsible\" ) {\n\t\t\tthis.element.toggleClass( \"ui-tabs-collapsible\", value );\n\t\t\t// Setting collapsible: false while collapsed; open first panel\n\t\t\tif ( !value && this.options.active === false ) {\n\t\t\t\tthis._activate( 0 );\n\t\t\t}\n\t\t}\n\n\t\tif ( key === \"event\" ) {\n\t\t\tthis._setupEvents( value );\n\t\t}\n\n\t\tif ( key === \"heightStyle\" ) {\n\t\t\tthis._setupHeightStyle( value );\n\t\t}\n\t},\n\n\t_sanitizeSelector: function( hash ) {\n\t\treturn hash ? hash.replace( /[!\"$%&'()*+,.\\/:;<=>?@\\[\\]\\^`{|}~]/g, \"\\\\$&\" ) : \"\";\n\t},\n\n\trefresh: function() {\n\t\tvar options = this.options,\n\t\t\tlis = this.tablist.children( \":has(a[href])\" );\n\n\t\t// get disabled tabs from class attribute from HTML\n\t\t// this will get converted to a boolean if needed in _refresh()\n\t\toptions.disabled = $.map( lis.filter( \".ui-state-disabled\" ), function( tab ) {\n\t\t\treturn lis.index( tab );\n\t\t});\n\n\t\tthis._processTabs();\n\n\t\t// was collapsed or no tabs\n\t\tif ( options.active === false || !this.anchors.length ) {\n\t\t\toptions.active = false;\n\t\t\tthis.active = $();\n\t\t// was active, but active tab is gone\n\t\t} else if ( this.active.length && !$.contains( this.tablist[ 0 ], this.active[ 0 ] ) ) {\n\t\t\t// all remaining tabs are disabled\n\t\t\tif ( this.tabs.length === options.disabled.length ) {\n\t\t\t\toptions.active = false;\n\t\t\t\tthis.active = $();\n\t\t\t// activate previous tab\n\t\t\t} else {\n\t\t\t\tthis._activate( this._findNextTab( Math.max( 0, options.active - 1 ), false ) );\n\t\t\t}\n\t\t// was active, active tab still exists\n\t\t} else {\n\t\t\t// make sure active index is correct\n\t\t\toptions.active = this.tabs.index( this.active );\n\t\t}\n\n\t\tthis._refresh();\n\t},\n\n\t_refresh: function() {\n\t\tthis._setupDisabled( this.options.disabled );\n\t\tthis._setupEvents( this.options.event );\n\t\tthis._setupHeightStyle( this.options.heightStyle );\n\n\t\tthis.tabs.not( this.active ).attr({\n\t\t\t\"aria-selected\": \"false\",\n\t\t\t\"aria-expanded\": \"false\",\n\t\t\ttabIndex: -1\n\t\t});\n\t\tthis.panels.not( this._getPanelForTab( this.active ) )\n\t\t\t.hide()\n\t\t\t.attr({\n\t\t\t\t\"aria-hidden\": \"true\"\n\t\t\t});\n\n\t\t// Make sure one tab is in the tab order\n\t\tif ( !this.active.length ) {\n\t\t\tthis.tabs.eq( 0 ).attr( \"tabIndex\", 0 );\n\t\t} else {\n\t\t\tthis.active\n\t\t\t\t.addClass( \"ui-tabs-active ui-state-active\" )\n\t\t\t\t.attr({\n\t\t\t\t\t\"aria-selected\": \"true\",\n\t\t\t\t\t\"aria-expanded\": \"true\",\n\t\t\t\t\ttabIndex: 0\n\t\t\t\t});\n\t\t\tthis._getPanelForTab( this.active )\n\t\t\t\t.show()\n\t\t\t\t.attr({\n\t\t\t\t\t\"aria-hidden\": \"false\"\n\t\t\t\t});\n\t\t}\n\t},\n\n\t_processTabs: function() {\n\t\tvar that = this,\n\t\t\tprevTabs = this.tabs,\n\t\t\tprevAnchors = this.anchors,\n\t\t\tprevPanels = this.panels;\n\n\t\tthis.tablist = this._getList()\n\t\t\t.addClass( \"ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all\" )\n\t\t\t.attr( \"role\", \"tablist\" )\n\n\t\t\t// Prevent users from focusing disabled tabs via click\n\t\t\t.delegate( \"> li\", \"mousedown\" + this.eventNamespace, function( event ) {\n\t\t\t\tif ( $( this ).is( \".ui-state-disabled\" ) ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t})\n\n\t\t\t// support: IE <9\n\t\t\t// Preventing the default action in mousedown doesn't prevent IE\n\t\t\t// from focusing the element, so if the anchor gets focused, blur.\n\t\t\t// We don't have to worry about focusing the previously focused\n\t\t\t// element since clicking on a non-focusable element should focus\n\t\t\t// the body anyway.\n\t\t\t.delegate( \".ui-tabs-anchor\", \"focus\" + this.eventNamespace, function() {\n\t\t\t\tif ( $( this ).closest( \"li\" ).is( \".ui-state-disabled\" ) ) {\n\t\t\t\t\tthis.blur();\n\t\t\t\t}\n\t\t\t});\n\n\t\tthis.tabs = this.tablist.find( \"> li:has(a[href])\" )\n\t\t\t.addClass( \"ui-state-default ui-corner-top\" )\n\t\t\t.attr({\n\t\t\t\trole: \"tab\",\n\t\t\t\ttabIndex: -1\n\t\t\t});\n\n\t\tthis.anchors = this.tabs.map(function() {\n\t\t\t\treturn $( \"a\", this )[ 0 ];\n\t\t\t})\n\t\t\t.addClass( \"ui-tabs-anchor\" )\n\t\t\t.attr({\n\t\t\t\trole: \"presentation\",\n\t\t\t\ttabIndex: -1\n\t\t\t});\n\n\t\tthis.panels = $();\n\n\t\tthis.anchors.each(function( i, anchor ) {\n\t\t\tvar selector, panel, panelId,\n\t\t\t\tanchorId = $( anchor ).uniqueId().attr( \"id\" ),\n\t\t\t\ttab = $( anchor ).closest( \"li\" ),\n\t\t\t\toriginalAriaControls = tab.attr( \"aria-controls\" );\n\n\t\t\t// inline tab\n\t\t\tif ( that._isLocal( anchor ) ) {\n\t\t\t\tselector = anchor.hash;\n\t\t\t\tpanelId = selector.substring( 1 );\n\t\t\t\tpanel = that.element.find( that._sanitizeSelector( selector ) );\n\t\t\t// remote tab\n\t\t\t} else {\n\t\t\t\t// If the tab doesn't already have aria-controls,\n\t\t\t\t// generate an id by using a throw-away element\n\t\t\t\tpanelId = tab.attr( \"aria-controls\" ) || $( {} ).uniqueId()[ 0 ].id;\n\t\t\t\tselector = \"#\" + panelId;\n\t\t\t\tpanel = that.element.find( selector );\n\t\t\t\tif ( !panel.length ) {\n\t\t\t\t\tpanel = that._createPanel( panelId );\n\t\t\t\t\tpanel.insertAfter( that.panels[ i - 1 ] || that.tablist );\n\t\t\t\t}\n\t\t\t\tpanel.attr( \"aria-live\", \"polite\" );\n\t\t\t}\n\n\t\t\tif ( panel.length) {\n\t\t\t\tthat.panels = that.panels.add( panel );\n\t\t\t}\n\t\t\tif ( originalAriaControls ) {\n\t\t\t\ttab.data( \"ui-tabs-aria-controls\", originalAriaControls );\n\t\t\t}\n\t\t\ttab.attr({\n\t\t\t\t\"aria-controls\": panelId,\n\t\t\t\t\"aria-labelledby\": anchorId\n\t\t\t});\n\t\t\tpanel.attr( \"aria-labelledby\", anchorId );\n\t\t});\n\n\t\tthis.panels\n\t\t\t.addClass( \"ui-tabs-panel ui-widget-content ui-corner-bottom\" )\n\t\t\t.attr( \"role\", \"tabpanel\" );\n\n\t\t// Avoid memory leaks (#10056)\n\t\tif ( prevTabs ) {\n\t\t\tthis._off( prevTabs.not( this.tabs ) );\n\t\t\tthis._off( prevAnchors.not( this.anchors ) );\n\t\t\tthis._off( prevPanels.not( this.panels ) );\n\t\t}\n\t},\n\n\t// allow overriding how to find the list for rare usage scenarios (#7715)\n\t_getList: function() {\n\t\treturn this.tablist || this.element.find( \"ol,ul\" ).eq( 0 );\n\t},\n\n\t_createPanel: function( id ) {\n\t\treturn $( \"<div>\" )\n\t\t\t.attr( \"id\", id )\n\t\t\t.addClass( \"ui-tabs-panel ui-widget-content ui-corner-bottom\" )\n\t\t\t.data( \"ui-tabs-destroy\", true );\n\t},\n\n\t_setupDisabled: function( disabled ) {\n\t\tif ( $.isArray( disabled ) ) {\n\t\t\tif ( !disabled.length ) {\n\t\t\t\tdisabled = false;\n\t\t\t} else if ( disabled.length === this.anchors.length ) {\n\t\t\t\tdisabled = true;\n\t\t\t}\n\t\t}\n\n\t\t// disable tabs\n\t\tfor ( var i = 0, li; ( li = this.tabs[ i ] ); i++ ) {\n\t\t\tif ( disabled === true || $.inArray( i, disabled ) !== -1 ) {\n\t\t\t\t$( li )\n\t\t\t\t\t.addClass( \"ui-state-disabled\" )\n\t\t\t\t\t.attr( \"aria-disabled\", \"true\" );\n\t\t\t} else {\n\t\t\t\t$( li )\n\t\t\t\t\t.removeClass( \"ui-state-disabled\" )\n\t\t\t\t\t.removeAttr( \"aria-disabled\" );\n\t\t\t}\n\t\t}\n\n\t\tthis.options.disabled = disabled;\n\t},\n\n\t_setupEvents: function( event ) {\n\t\tvar events = {};\n\t\tif ( event ) {\n\t\t\t$.each( event.split(\" \"), function( index, eventName ) {\n\t\t\t\tevents[ eventName ] = \"_eventHandler\";\n\t\t\t});\n\t\t}\n\n\t\tthis._off( this.anchors.add( this.tabs ).add( this.panels ) );\n\t\t// Always prevent the default action, even when disabled\n\t\tthis._on( true, this.anchors, {\n\t\t\tclick: function( event ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t}\n\t\t});\n\t\tthis._on( this.anchors, events );\n\t\tthis._on( this.tabs, { keydown: \"_tabKeydown\" } );\n\t\tthis._on( this.panels, { keydown: \"_panelKeydown\" } );\n\n\t\tthis._focusable( this.tabs );\n\t\tthis._hoverable( this.tabs );\n\t},\n\n\t_setupHeightStyle: function( heightStyle ) {\n\t\tvar maxHeight,\n\t\t\tparent = this.element.parent();\n\n\t\tif ( heightStyle === \"fill\" ) {\n\t\t\tmaxHeight = parent.height();\n\t\t\tmaxHeight -= this.element.outerHeight() - this.element.height();\n\n\t\t\tthis.element.siblings( \":visible\" ).each(function() {\n\t\t\t\tvar elem = $( this ),\n\t\t\t\t\tposition = elem.css( \"position\" );\n\n\t\t\t\tif ( position === \"absolute\" || position === \"fixed\" ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tmaxHeight -= elem.outerHeight( true );\n\t\t\t});\n\n\t\t\tthis.element.children().not( this.panels ).each(function() {\n\t\t\t\tmaxHeight -= $( this ).outerHeight( true );\n\t\t\t});\n\n\t\t\tthis.panels.each(function() {\n\t\t\t\t$( this ).height( Math.max( 0, maxHeight -\n\t\t\t\t\t$( this ).innerHeight() + $( this ).height() ) );\n\t\t\t})\n\t\t\t.css( \"overflow\", \"auto\" );\n\t\t} else if ( heightStyle === \"auto\" ) {\n\t\t\tmaxHeight = 0;\n\t\t\tthis.panels.each(function() {\n\t\t\t\tmaxHeight = Math.max( maxHeight, $( this ).height( \"\" ).height() );\n\t\t\t}).height( maxHeight );\n\t\t}\n\t},\n\n\t_eventHandler: function( event ) {\n\t\tvar options = this.options,\n\t\t\tactive = this.active,\n\t\t\tanchor = $( event.currentTarget ),\n\t\t\ttab = anchor.closest( \"li\" ),\n\t\t\tclickedIsActive = tab[ 0 ] === active[ 0 ],\n\t\t\tcollapsing = clickedIsActive && options.collapsible,\n\t\t\ttoShow = collapsing ? $() : this._getPanelForTab( tab ),\n\t\t\ttoHide = !active.length ? $() : this._getPanelForTab( active ),\n\t\t\teventData = {\n\t\t\t\toldTab: active,\n\t\t\t\toldPanel: toHide,\n\t\t\t\tnewTab: collapsing ? $() : tab,\n\t\t\t\tnewPanel: toShow\n\t\t\t};\n\n\t\tevent.preventDefault();\n\n\t\tif ( tab.hasClass( \"ui-state-disabled\" ) ||\n\t\t\t\t// tab is already loading\n\t\t\t\ttab.hasClass( \"ui-tabs-loading\" ) ||\n\t\t\t\t// can't switch durning an animation\n\t\t\t\tthis.running ||\n\t\t\t\t// click on active header, but not collapsible\n\t\t\t\t( clickedIsActive && !options.collapsible ) ||\n\t\t\t\t// allow canceling activation\n\t\t\t\t( this._trigger( \"beforeActivate\", event, eventData ) === false ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\toptions.active = collapsing ? false : this.tabs.index( tab );\n\n\t\tthis.active = clickedIsActive ? $() : tab;\n\t\tif ( this.xhr ) {\n\t\t\tthis.xhr.abort();\n\t\t}\n\n\t\tif ( !toHide.length && !toShow.length ) {\n\t\t\t$.error( \"jQuery UI Tabs: Mismatching fragment identifier.\" );\n\t\t}\n\n\t\tif ( toShow.length ) {\n\t\t\tthis.load( this.tabs.index( tab ), event );\n\t\t}\n\t\tthis._toggle( event, eventData );\n\t},\n\n\t// handles show/hide for selecting tabs\n\t_toggle: function( event, eventData ) {\n\t\tvar that = this,\n\t\t\ttoShow = eventData.newPanel,\n\t\t\ttoHide = eventData.oldPanel;\n\n\t\tthis.running = true;\n\n\t\tfunction complete() {\n\t\t\tthat.running = false;\n\t\t\tthat._trigger( \"activate\", event, eventData );\n\t\t}\n\n\t\tfunction show() {\n\t\t\teventData.newTab.closest( \"li\" ).addClass( \"ui-tabs-active ui-state-active\" );\n\n\t\t\tif ( toShow.length && that.options.show ) {\n\t\t\t\tthat._show( toShow, that.options.show, complete );\n\t\t\t} else {\n\t\t\t\ttoShow.show();\n\t\t\t\tcomplete();\n\t\t\t}\n\t\t}\n\n\t\t// start out by hiding, then showing, then completing\n\t\tif ( toHide.length && this.options.hide ) {\n\t\t\tthis._hide( toHide, this.options.hide, function() {\n\t\t\t\teventData.oldTab.closest( \"li\" ).removeClass( \"ui-tabs-active ui-state-active\" );\n\t\t\t\tshow();\n\t\t\t});\n\t\t} else {\n\t\t\teventData.oldTab.closest( \"li\" ).removeClass( \"ui-tabs-active ui-state-active\" );\n\t\t\ttoHide.hide();\n\t\t\tshow();\n\t\t}\n\n\t\ttoHide.attr( \"aria-hidden\", \"true\" );\n\t\teventData.oldTab.attr({\n\t\t\t\"aria-selected\": \"false\",\n\t\t\t\"aria-expanded\": \"false\"\n\t\t});\n\t\t// If we're switching tabs, remove the old tab from the tab order.\n\t\t// If we're opening from collapsed state, remove the previous tab from the tab order.\n\t\t// If we're collapsing, then keep the collapsing tab in the tab order.\n\t\tif ( toShow.length && toHide.length ) {\n\t\t\teventData.oldTab.attr( \"tabIndex\", -1 );\n\t\t} else if ( toShow.length ) {\n\t\t\tthis.tabs.filter(function() {\n\t\t\t\treturn $( this ).attr( \"tabIndex\" ) === 0;\n\t\t\t})\n\t\t\t.attr( \"tabIndex\", -1 );\n\t\t}\n\n\t\ttoShow.attr( \"aria-hidden\", \"false\" );\n\t\teventData.newTab.attr({\n\t\t\t\"aria-selected\": \"true\",\n\t\t\t\"aria-expanded\": \"true\",\n\t\t\ttabIndex: 0\n\t\t});\n\t},\n\n\t_activate: function( index ) {\n\t\tvar anchor,\n\t\t\tactive = this._findActive( index );\n\n\t\t// trying to activate the already active panel\n\t\tif ( active[ 0 ] === this.active[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// trying to collapse, simulate a click on the current active header\n\t\tif ( !active.length ) {\n\t\t\tactive = this.active;\n\t\t}\n\n\t\tanchor = active.find( \".ui-tabs-anchor\" )[ 0 ];\n\t\tthis._eventHandler({\n\t\t\ttarget: anchor,\n\t\t\tcurrentTarget: anchor,\n\t\t\tpreventDefault: $.noop\n\t\t});\n\t},\n\n\t_findActive: function( index ) {\n\t\treturn index === false ? $() : this.tabs.eq( index );\n\t},\n\n\t_getIndex: function( index ) {\n\t\t// meta-function to give users option to provide a href string instead of a numerical index.\n\t\tif ( typeof index === \"string\" ) {\n\t\t\tindex = this.anchors.index( this.anchors.filter( \"[href$='\" + index + \"']\" ) );\n\t\t}\n\n\t\treturn index;\n\t},\n\n\t_destroy: function() {\n\t\tif ( this.xhr ) {\n\t\t\tthis.xhr.abort();\n\t\t}\n\n\t\tthis.element.removeClass( \"ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible\" );\n\n\t\tthis.tablist\n\t\t\t.removeClass( \"ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all\" )\n\t\t\t.removeAttr( \"role\" );\n\n\t\tthis.anchors\n\t\t\t.removeClass( \"ui-tabs-anchor\" )\n\t\t\t.removeAttr( \"role\" )\n\t\t\t.removeAttr( \"tabIndex\" )\n\t\t\t.removeUniqueId();\n\n\t\tthis.tablist.unbind( this.eventNamespace );\n\n\t\tthis.tabs.add( this.panels ).each(function() {\n\t\t\tif ( $.data( this, \"ui-tabs-destroy\" ) ) {\n\t\t\t\t$( this ).remove();\n\t\t\t} else {\n\t\t\t\t$( this )\n\t\t\t\t\t.removeClass( \"ui-state-default ui-state-active ui-state-disabled \" +\n\t\t\t\t\t\t\"ui-corner-top ui-corner-bottom ui-widget-content ui-tabs-active ui-tabs-panel\" )\n\t\t\t\t\t.removeAttr( \"tabIndex\" )\n\t\t\t\t\t.removeAttr( \"aria-live\" )\n\t\t\t\t\t.removeAttr( \"aria-busy\" )\n\t\t\t\t\t.removeAttr( \"aria-selected\" )\n\t\t\t\t\t.removeAttr( \"aria-labelledby\" )\n\t\t\t\t\t.removeAttr( \"aria-hidden\" )\n\t\t\t\t\t.removeAttr( \"aria-expanded\" )\n\t\t\t\t\t.removeAttr( \"role\" );\n\t\t\t}\n\t\t});\n\n\t\tthis.tabs.each(function() {\n\t\t\tvar li = $( this ),\n\t\t\t\tprev = li.data( \"ui-tabs-aria-controls\" );\n\t\t\tif ( prev ) {\n\t\t\t\tli\n\t\t\t\t\t.attr( \"aria-controls\", prev )\n\t\t\t\t\t.removeData( \"ui-tabs-aria-controls\" );\n\t\t\t} else {\n\t\t\t\tli.removeAttr( \"aria-controls\" );\n\t\t\t}\n\t\t});\n\n\t\tthis.panels.show();\n\n\t\tif ( this.options.heightStyle !== \"content\" ) {\n\t\t\tthis.panels.css( \"height\", \"\" );\n\t\t}\n\t},\n\n\tenable: function( index ) {\n\t\tvar disabled = this.options.disabled;\n\t\tif ( disabled === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( index === undefined ) {\n\t\t\tdisabled = false;\n\t\t} else {\n\t\t\tindex = this._getIndex( index );\n\t\t\tif ( $.isArray( disabled ) ) {\n\t\t\t\tdisabled = $.map( disabled, function( num ) {\n\t\t\t\t\treturn num !== index ? num : null;\n\t\t\t\t});\n\t\t\t} else {\n\t\t\t\tdisabled = $.map( this.tabs, function( li, num ) {\n\t\t\t\t\treturn num !== index ? num : null;\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t\tthis._setupDisabled( disabled );\n\t},\n\n\tdisable: function( index ) {\n\t\tvar disabled = this.options.disabled;\n\t\tif ( disabled === true ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( index === undefined ) {\n\t\t\tdisabled = true;\n\t\t} else {\n\t\t\tindex = this._getIndex( index );\n\t\t\tif ( $.inArray( index, disabled ) !== -1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tif ( $.isArray( disabled ) ) {\n\t\t\t\tdisabled = $.merge( [ index ], disabled ).sort();\n\t\t\t} else {\n\t\t\t\tdisabled = [ index ];\n\t\t\t}\n\t\t}\n\t\tthis._setupDisabled( disabled );\n\t},\n\n\tload: function( index, event ) {\n\t\tindex = this._getIndex( index );\n\t\tvar that = this,\n\t\t\ttab = this.tabs.eq( index ),\n\t\t\tanchor = tab.find( \".ui-tabs-anchor\" ),\n\t\t\tpanel = this._getPanelForTab( tab ),\n\t\t\teventData = {\n\t\t\t\ttab: tab,\n\t\t\t\tpanel: panel\n\t\t\t},\n\t\t\tcomplete = function( jqXHR, status ) {\n\t\t\t\tif ( status === \"abort\" ) {\n\t\t\t\t\tthat.panels.stop( false, true );\n\t\t\t\t}\n\n\t\t\t\ttab.removeClass( \"ui-tabs-loading\" );\n\t\t\t\tpanel.removeAttr( \"aria-busy\" );\n\n\t\t\t\tif ( jqXHR === that.xhr ) {\n\t\t\t\t\tdelete that.xhr;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// not remote\n\t\tif ( this._isLocal( anchor[ 0 ] ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.xhr = $.ajax( this._ajaxSettings( anchor, event, eventData ) );\n\n\t\t// support: jQuery <1.8\n\t\t// jQuery <1.8 returns false if the request is canceled in beforeSend,\n\t\t// but as of 1.8, $.ajax() always returns a jqXHR object.\n\t\tif ( this.xhr && this.xhr.statusText !== \"canceled\" ) {\n\t\t\ttab.addClass( \"ui-tabs-loading\" );\n\t\t\tpanel.attr( \"aria-busy\", \"true\" );\n\n\t\t\tthis.xhr\n\t\t\t\t.done(function( response, status, jqXHR ) {\n\t\t\t\t\t// support: jQuery <1.8\n\t\t\t\t\t// http://bugs.jquery.com/ticket/11778\n\t\t\t\t\tsetTimeout(function() {\n\t\t\t\t\t\tpanel.html( response );\n\t\t\t\t\t\tthat._trigger( \"load\", event, eventData );\n\n\t\t\t\t\t\tcomplete( jqXHR, status );\n\t\t\t\t\t}, 1 );\n\t\t\t\t})\n\t\t\t\t.fail(function( jqXHR, status ) {\n\t\t\t\t\t// support: jQuery <1.8\n\t\t\t\t\t// http://bugs.jquery.com/ticket/11778\n\t\t\t\t\tsetTimeout(function() {\n\t\t\t\t\t\tcomplete( jqXHR, status );\n\t\t\t\t\t}, 1 );\n\t\t\t\t});\n\t\t}\n\t},\n\n\t_ajaxSettings: function( anchor, event, eventData ) {\n\t\tvar that = this;\n\t\treturn {\n\t\t\turl: anchor.attr( \"href\" ),\n\t\t\tbeforeSend: function( jqXHR, settings ) {\n\t\t\t\treturn that._trigger( \"beforeLoad\", event,\n\t\t\t\t\t$.extend( { jqXHR: jqXHR, ajaxSettings: settings }, eventData ) );\n\t\t\t}\n\t\t};\n\t},\n\n\t_getPanelForTab: function( tab ) {\n\t\tvar id = $( tab ).attr( \"aria-controls\" );\n\t\treturn this.element.find( this._sanitizeSelector( \"#\" + id ) );\n\t}\n});\n\n\n/*!\n * jQuery UI Tooltip 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/tooltip/\n */\n\n\nvar tooltip = $.widget( \"ui.tooltip\", {\n\tversion: \"1.11.4\",\n\toptions: {\n\t\tcontent: function() {\n\t\t\t// support: IE<9, Opera in jQuery <1.7\n\t\t\t// .text() can't accept undefined, so coerce to a string\n\t\t\tvar title = $( this ).attr( \"title\" ) || \"\";\n\t\t\t// Escape title, since we're going from an attribute to raw HTML\n\t\t\treturn $( \"<a>\" ).text( title ).html();\n\t\t},\n\t\thide: true,\n\t\t// Disabled elements have inconsistent behavior across browsers (#8661)\n\t\titems: \"[title]:not([disabled])\",\n\t\tposition: {\n\t\t\tmy: \"left top+15\",\n\t\t\tat: \"left bottom\",\n\t\t\tcollision: \"flipfit flip\"\n\t\t},\n\t\tshow: true,\n\t\ttooltipClass: null,\n\t\ttrack: false,\n\n\t\t// callbacks\n\t\tclose: null,\n\t\topen: null\n\t},\n\n\t_addDescribedBy: function( elem, id ) {\n\t\tvar describedby = (elem.attr( \"aria-describedby\" ) || \"\").split( /\\s+/ );\n\t\tdescribedby.push( id );\n\t\telem\n\t\t\t.data( \"ui-tooltip-id\", id )\n\t\t\t.attr( \"aria-describedby\", $.trim( describedby.join( \" \" ) ) );\n\t},\n\n\t_removeDescribedBy: function( elem ) {\n\t\tvar id = elem.data( \"ui-tooltip-id\" ),\n\t\t\tdescribedby = (elem.attr( \"aria-describedby\" ) || \"\").split( /\\s+/ ),\n\t\t\tindex = $.inArray( id, describedby );\n\n\t\tif ( index !== -1 ) {\n\t\t\tdescribedby.splice( index, 1 );\n\t\t}\n\n\t\telem.removeData( \"ui-tooltip-id\" );\n\t\tdescribedby = $.trim( describedby.join( \" \" ) );\n\t\tif ( describedby ) {\n\t\t\telem.attr( \"aria-describedby\", describedby );\n\t\t} else {\n\t\t\telem.removeAttr( \"aria-describedby\" );\n\t\t}\n\t},\n\n\t_create: function() {\n\t\tthis._on({\n\t\t\tmouseover: \"open\",\n\t\t\tfocusin: \"open\"\n\t\t});\n\n\t\t// IDs of generated tooltips, needed for destroy\n\t\tthis.tooltips = {};\n\n\t\t// IDs of parent tooltips where we removed the title attribute\n\t\tthis.parents = {};\n\n\t\tif ( this.options.disabled ) {\n\t\t\tthis._disable();\n\t\t}\n\n\t\t// Append the aria-live region so tooltips announce correctly\n\t\tthis.liveRegion = $( \"<div>\" )\n\t\t\t.attr({\n\t\t\t\trole: \"log\",\n\t\t\t\t\"aria-live\": \"assertive\",\n\t\t\t\t\"aria-relevant\": \"additions\"\n\t\t\t})\n\t\t\t.addClass( \"ui-helper-hidden-accessible\" )\n\t\t\t.appendTo( this.document[ 0 ].body );\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tvar that = this;\n\n\t\tif ( key === \"disabled\" ) {\n\t\t\tthis[ value ? \"_disable\" : \"_enable\" ]();\n\t\t\tthis.options[ key ] = value;\n\t\t\t// disable element style changes\n\t\t\treturn;\n\t\t}\n\n\t\tthis._super( key, value );\n\n\t\tif ( key === \"content\" ) {\n\t\t\t$.each( this.tooltips, function( id, tooltipData ) {\n\t\t\t\tthat._updateContent( tooltipData.element );\n\t\t\t});\n\t\t}\n\t},\n\n\t_disable: function() {\n\t\tvar that = this;\n\n\t\t// close open tooltips\n\t\t$.each( this.tooltips, function( id, tooltipData ) {\n\t\t\tvar event = $.Event( \"blur\" );\n\t\t\tevent.target = event.currentTarget = tooltipData.element[ 0 ];\n\t\t\tthat.close( event, true );\n\t\t});\n\n\t\t// remove title attributes to prevent native tooltips\n\t\tthis.element.find( this.options.items ).addBack().each(function() {\n\t\t\tvar element = $( this );\n\t\t\tif ( element.is( \"[title]\" ) ) {\n\t\t\t\telement\n\t\t\t\t\t.data( \"ui-tooltip-title\", element.attr( \"title\" ) )\n\t\t\t\t\t.removeAttr( \"title\" );\n\t\t\t}\n\t\t});\n\t},\n\n\t_enable: function() {\n\t\t// restore title attributes\n\t\tthis.element.find( this.options.items ).addBack().each(function() {\n\t\t\tvar element = $( this );\n\t\t\tif ( element.data( \"ui-tooltip-title\" ) ) {\n\t\t\t\telement.attr( \"title\", element.data( \"ui-tooltip-title\" ) );\n\t\t\t}\n\t\t});\n\t},\n\n\topen: function( event ) {\n\t\tvar that = this,\n\t\t\ttarget = $( event ? event.target : this.element )\n\t\t\t\t// we need closest here due to mouseover bubbling,\n\t\t\t\t// but always pointing at the same event target\n\t\t\t\t.closest( this.options.items );\n\n\t\t// No element to show a tooltip for or the tooltip is already open\n\t\tif ( !target.length || target.data( \"ui-tooltip-id\" ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( target.attr( \"title\" ) ) {\n\t\t\ttarget.data( \"ui-tooltip-title\", target.attr( \"title\" ) );\n\t\t}\n\n\t\ttarget.data( \"ui-tooltip-open\", true );\n\n\t\t// kill parent tooltips, custom or native, for hover\n\t\tif ( event && event.type === \"mouseover\" ) {\n\t\t\ttarget.parents().each(function() {\n\t\t\t\tvar parent = $( this ),\n\t\t\t\t\tblurEvent;\n\t\t\t\tif ( parent.data( \"ui-tooltip-open\" ) ) {\n\t\t\t\t\tblurEvent = $.Event( \"blur\" );\n\t\t\t\t\tblurEvent.target = blurEvent.currentTarget = this;\n\t\t\t\t\tthat.close( blurEvent, true );\n\t\t\t\t}\n\t\t\t\tif ( parent.attr( \"title\" ) ) {\n\t\t\t\t\tparent.uniqueId();\n\t\t\t\t\tthat.parents[ this.id ] = {\n\t\t\t\t\t\telement: this,\n\t\t\t\t\t\ttitle: parent.attr( \"title\" )\n\t\t\t\t\t};\n\t\t\t\t\tparent.attr( \"title\", \"\" );\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tthis._registerCloseHandlers( event, target );\n\t\tthis._updateContent( target, event );\n\t},\n\n\t_updateContent: function( target, event ) {\n\t\tvar content,\n\t\t\tcontentOption = this.options.content,\n\t\t\tthat = this,\n\t\t\teventType = event ? event.type : null;\n\n\t\tif ( typeof contentOption === \"string\" ) {\n\t\t\treturn this._open( event, target, contentOption );\n\t\t}\n\n\t\tcontent = contentOption.call( target[0], function( response ) {\n\n\t\t\t// IE may instantly serve a cached response for ajax requests\n\t\t\t// delay this call to _open so the other call to _open runs first\n\t\t\tthat._delay(function() {\n\n\t\t\t\t// Ignore async response if tooltip was closed already\n\t\t\t\tif ( !target.data( \"ui-tooltip-open\" ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// jQuery creates a special event for focusin when it doesn't\n\t\t\t\t// exist natively. To improve performance, the native event\n\t\t\t\t// object is reused and the type is changed. Therefore, we can't\n\t\t\t\t// rely on the type being correct after the event finished\n\t\t\t\t// bubbling, so we set it back to the previous value. (#8740)\n\t\t\t\tif ( event ) {\n\t\t\t\t\tevent.type = eventType;\n\t\t\t\t}\n\t\t\t\tthis._open( event, target, response );\n\t\t\t});\n\t\t});\n\t\tif ( content ) {\n\t\t\tthis._open( event, target, content );\n\t\t}\n\t},\n\n\t_open: function( event, target, content ) {\n\t\tvar tooltipData, tooltip, delayedShow, a11yContent,\n\t\t\tpositionOption = $.extend( {}, this.options.position );\n\n\t\tif ( !content ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Content can be updated multiple times. If the tooltip already\n\t\t// exists, then just update the content and bail.\n\t\ttooltipData = this._find( target );\n\t\tif ( tooltipData ) {\n\t\t\ttooltipData.tooltip.find( \".ui-tooltip-content\" ).html( content );\n\t\t\treturn;\n\t\t}\n\n\t\t// if we have a title, clear it to prevent the native tooltip\n\t\t// we have to check first to avoid defining a title if none exists\n\t\t// (we don't want to cause an element to start matching [title])\n\t\t//\n\t\t// We use removeAttr only for key events, to allow IE to export the correct\n\t\t// accessible attributes. For mouse events, set to empty string to avoid\n\t\t// native tooltip showing up (happens only when removing inside mouseover).\n\t\tif ( target.is( \"[title]\" ) ) {\n\t\t\tif ( event && event.type === \"mouseover\" ) {\n\t\t\t\ttarget.attr( \"title\", \"\" );\n\t\t\t} else {\n\t\t\t\ttarget.removeAttr( \"title\" );\n\t\t\t}\n\t\t}\n\n\t\ttooltipData = this._tooltip( target );\n\t\ttooltip = tooltipData.tooltip;\n\t\tthis._addDescribedBy( target, tooltip.attr( \"id\" ) );\n\t\ttooltip.find( \".ui-tooltip-content\" ).html( content );\n\n\t\t// Support: Voiceover on OS X, JAWS on IE <= 9\n\t\t// JAWS announces deletions even when aria-relevant=\"additions\"\n\t\t// Voiceover will sometimes re-read the entire log region's contents from the beginning\n\t\tthis.liveRegion.children().hide();\n\t\tif ( content.clone ) {\n\t\t\ta11yContent = content.clone();\n\t\t\ta11yContent.removeAttr( \"id\" ).find( \"[id]\" ).removeAttr( \"id\" );\n\t\t} else {\n\t\t\ta11yContent = content;\n\t\t}\n\t\t$( \"<div>\" ).html( a11yContent ).appendTo( this.liveRegion );\n\n\t\tfunction position( event ) {\n\t\t\tpositionOption.of = event;\n\t\t\tif ( tooltip.is( \":hidden\" ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\ttooltip.position( positionOption );\n\t\t}\n\t\tif ( this.options.track && event && /^mouse/.test( event.type ) ) {\n\t\t\tthis._on( this.document, {\n\t\t\t\tmousemove: position\n\t\t\t});\n\t\t\t// trigger once to override element-relative positioning\n\t\t\tposition( event );\n\t\t} else {\n\t\t\ttooltip.position( $.extend({\n\t\t\t\tof: target\n\t\t\t}, this.options.position ) );\n\t\t}\n\n\t\ttooltip.hide();\n\n\t\tthis._show( tooltip, this.options.show );\n\t\t// Handle tracking tooltips that are shown with a delay (#8644). As soon\n\t\t// as the tooltip is visible, position the tooltip using the most recent\n\t\t// event.\n\t\tif ( this.options.show && this.options.show.delay ) {\n\t\t\tdelayedShow = this.delayedShow = setInterval(function() {\n\t\t\t\tif ( tooltip.is( \":visible\" ) ) {\n\t\t\t\t\tposition( positionOption.of );\n\t\t\t\t\tclearInterval( delayedShow );\n\t\t\t\t}\n\t\t\t}, $.fx.interval );\n\t\t}\n\n\t\tthis._trigger( \"open\", event, { tooltip: tooltip } );\n\t},\n\n\t_registerCloseHandlers: function( event, target ) {\n\t\tvar events = {\n\t\t\tkeyup: function( event ) {\n\t\t\t\tif ( event.keyCode === $.ui.keyCode.ESCAPE ) {\n\t\t\t\t\tvar fakeEvent = $.Event(event);\n\t\t\t\t\tfakeEvent.currentTarget = target[0];\n\t\t\t\t\tthis.close( fakeEvent, true );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\n\t\t// Only bind remove handler for delegated targets. Non-delegated\n\t\t// tooltips will handle this in destroy.\n\t\tif ( target[ 0 ] !== this.element[ 0 ] ) {\n\t\t\tevents.remove = function() {\n\t\t\t\tthis._removeTooltip( this._find( target ).tooltip );\n\t\t\t};\n\t\t}\n\n\t\tif ( !event || event.type === \"mouseover\" ) {\n\t\t\tevents.mouseleave = \"close\";\n\t\t}\n\t\tif ( !event || event.type === \"focusin\" ) {\n\t\t\tevents.focusout = \"close\";\n\t\t}\n\t\tthis._on( true, target, events );\n\t},\n\n\tclose: function( event ) {\n\t\tvar tooltip,\n\t\t\tthat = this,\n\t\t\ttarget = $( event ? event.currentTarget : this.element ),\n\t\t\ttooltipData = this._find( target );\n\n\t\t// The tooltip may already be closed\n\t\tif ( !tooltipData ) {\n\n\t\t\t// We set ui-tooltip-open immediately upon open (in open()), but only set the\n\t\t\t// additional data once there's actually content to show (in _open()). So even if the\n\t\t\t// tooltip doesn't have full data, we always remove ui-tooltip-open in case we're in\n\t\t\t// the period between open() and _open().\n\t\t\ttarget.removeData( \"ui-tooltip-open\" );\n\t\t\treturn;\n\t\t}\n\n\t\ttooltip = tooltipData.tooltip;\n\n\t\t// disabling closes the tooltip, so we need to track when we're closing\n\t\t// to avoid an infinite loop in case the tooltip becomes disabled on close\n\t\tif ( tooltipData.closing ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Clear the interval for delayed tracking tooltips\n\t\tclearInterval( this.delayedShow );\n\n\t\t// only set title if we had one before (see comment in _open())\n\t\t// If the title attribute has changed since open(), don't restore\n\t\tif ( target.data( \"ui-tooltip-title\" ) && !target.attr( \"title\" ) ) {\n\t\t\ttarget.attr( \"title\", target.data( \"ui-tooltip-title\" ) );\n\t\t}\n\n\t\tthis._removeDescribedBy( target );\n\n\t\ttooltipData.hiding = true;\n\t\ttooltip.stop( true );\n\t\tthis._hide( tooltip, this.options.hide, function() {\n\t\t\tthat._removeTooltip( $( this ) );\n\t\t});\n\n\t\ttarget.removeData( \"ui-tooltip-open\" );\n\t\tthis._off( target, \"mouseleave focusout keyup\" );\n\n\t\t// Remove 'remove' binding only on delegated targets\n\t\tif ( target[ 0 ] !== this.element[ 0 ] ) {\n\t\t\tthis._off( target, \"remove\" );\n\t\t}\n\t\tthis._off( this.document, \"mousemove\" );\n\n\t\tif ( event && event.type === \"mouseleave\" ) {\n\t\t\t$.each( this.parents, function( id, parent ) {\n\t\t\t\t$( parent.element ).attr( \"title\", parent.title );\n\t\t\t\tdelete that.parents[ id ];\n\t\t\t});\n\t\t}\n\n\t\ttooltipData.closing = true;\n\t\tthis._trigger( \"close\", event, { tooltip: tooltip } );\n\t\tif ( !tooltipData.hiding ) {\n\t\t\ttooltipData.closing = false;\n\t\t}\n\t},\n\n\t_tooltip: function( element ) {\n\t\tvar tooltip = $( \"<div>\" )\n\t\t\t\t.attr( \"role\", \"tooltip\" )\n\t\t\t\t.addClass( \"ui-tooltip ui-widget ui-corner-all ui-widget-content \" +\n\t\t\t\t\t( this.options.tooltipClass || \"\" ) ),\n\t\t\tid = tooltip.uniqueId().attr( \"id\" );\n\n\t\t$( \"<div>\" )\n\t\t\t.addClass( \"ui-tooltip-content\" )\n\t\t\t.appendTo( tooltip );\n\n\t\ttooltip.appendTo( this.document[0].body );\n\n\t\treturn this.tooltips[ id ] = {\n\t\t\telement: element,\n\t\t\ttooltip: tooltip\n\t\t};\n\t},\n\n\t_find: function( target ) {\n\t\tvar id = target.data( \"ui-tooltip-id\" );\n\t\treturn id ? this.tooltips[ id ] : null;\n\t},\n\n\t_removeTooltip: function( tooltip ) {\n\t\ttooltip.remove();\n\t\tdelete this.tooltips[ tooltip.attr( \"id\" ) ];\n\t},\n\n\t_destroy: function() {\n\t\tvar that = this;\n\n\t\t// close open tooltips\n\t\t$.each( this.tooltips, function( id, tooltipData ) {\n\t\t\t// Delegate to close method to handle common cleanup\n\t\t\tvar event = $.Event( \"blur\" ),\n\t\t\t\telement = tooltipData.element;\n\t\t\tevent.target = event.currentTarget = element[ 0 ];\n\t\t\tthat.close( event, true );\n\n\t\t\t// Remove immediately; destroying an open tooltip doesn't use the\n\t\t\t// hide animation\n\t\t\t$( \"#\" + id ).remove();\n\n\t\t\t// Restore the title\n\t\t\tif ( element.data( \"ui-tooltip-title\" ) ) {\n\t\t\t\t// If the title attribute has changed since open(), don't restore\n\t\t\t\tif ( !element.attr( \"title\" ) ) {\n\t\t\t\t\telement.attr( \"title\", element.data( \"ui-tooltip-title\" ) );\n\t\t\t\t}\n\t\t\t\telement.removeData( \"ui-tooltip-title\" );\n\t\t\t}\n\t\t});\n\t\tthis.liveRegion.remove();\n\t}\n});\n\n\n/*!\n * jQuery UI Effects 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/category/effects-core/\n */\n\n\nvar dataSpace = \"ui-effects-\",\n\n\t// Create a local jQuery because jQuery Color relies on it and the\n\t// global may not exist with AMD and a custom build (#10199)\n\tjQuery = $;\n\n$.effects = {\n\teffect: {}\n};\n\n/*!\n * jQuery Color Animations v2.1.2\n * https://github.com/jquery/jquery-color\n *\n * Copyright 2014 jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * Date: Wed Jan 16 08:47:09 2013 -0600\n */\n(function( jQuery, undefined ) {\n\n\tvar stepHooks = \"backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor\",\n\n\t// plusequals test for += 100 -= 100\n\trplusequals = /^([\\-+])=\\s*(\\d+\\.?\\d*)/,\n\t// a set of RE's that can match strings and generate color tuples.\n\tstringParsers = [ {\n\t\t\tre: /rgba?\\(\\s*(\\d{1,3})\\s*,\\s*(\\d{1,3})\\s*,\\s*(\\d{1,3})\\s*(?:,\\s*(\\d?(?:\\.\\d+)?)\\s*)?\\)/,\n\t\t\tparse: function( execResult ) {\n\t\t\t\treturn [\n\t\t\t\t\texecResult[ 1 ],\n\t\t\t\t\texecResult[ 2 ],\n\t\t\t\t\texecResult[ 3 ],\n\t\t\t\t\texecResult[ 4 ]\n\t\t\t\t];\n\t\t\t}\n\t\t}, {\n\t\t\tre: /rgba?\\(\\s*(\\d+(?:\\.\\d+)?)\\%\\s*,\\s*(\\d+(?:\\.\\d+)?)\\%\\s*,\\s*(\\d+(?:\\.\\d+)?)\\%\\s*(?:,\\s*(\\d?(?:\\.\\d+)?)\\s*)?\\)/,\n\t\t\tparse: function( execResult ) {\n\t\t\t\treturn [\n\t\t\t\t\texecResult[ 1 ] * 2.55,\n\t\t\t\t\texecResult[ 2 ] * 2.55,\n\t\t\t\t\texecResult[ 3 ] * 2.55,\n\t\t\t\t\texecResult[ 4 ]\n\t\t\t\t];\n\t\t\t}\n\t\t}, {\n\t\t\t// this regex ignores A-F because it's compared against an already lowercased string\n\t\t\tre: /#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/,\n\t\t\tparse: function( execResult ) {\n\t\t\t\treturn [\n\t\t\t\t\tparseInt( execResult[ 1 ], 16 ),\n\t\t\t\t\tparseInt( execResult[ 2 ], 16 ),\n\t\t\t\t\tparseInt( execResult[ 3 ], 16 )\n\t\t\t\t];\n\t\t\t}\n\t\t}, {\n\t\t\t// this regex ignores A-F because it's compared against an already lowercased string\n\t\t\tre: /#([a-f0-9])([a-f0-9])([a-f0-9])/,\n\t\t\tparse: function( execResult ) {\n\t\t\t\treturn [\n\t\t\t\t\tparseInt( execResult[ 1 ] + execResult[ 1 ], 16 ),\n\t\t\t\t\tparseInt( execResult[ 2 ] + execResult[ 2 ], 16 ),\n\t\t\t\t\tparseInt( execResult[ 3 ] + execResult[ 3 ], 16 )\n\t\t\t\t];\n\t\t\t}\n\t\t}, {\n\t\t\tre: /hsla?\\(\\s*(\\d+(?:\\.\\d+)?)\\s*,\\s*(\\d+(?:\\.\\d+)?)\\%\\s*,\\s*(\\d+(?:\\.\\d+)?)\\%\\s*(?:,\\s*(\\d?(?:\\.\\d+)?)\\s*)?\\)/,\n\t\t\tspace: \"hsla\",\n\t\t\tparse: function( execResult ) {\n\t\t\t\treturn [\n\t\t\t\t\texecResult[ 1 ],\n\t\t\t\t\texecResult[ 2 ] / 100,\n\t\t\t\t\texecResult[ 3 ] / 100,\n\t\t\t\t\texecResult[ 4 ]\n\t\t\t\t];\n\t\t\t}\n\t\t} ],\n\n\t// jQuery.Color( )\n\tcolor = jQuery.Color = function( color, green, blue, alpha ) {\n\t\treturn new jQuery.Color.fn.parse( color, green, blue, alpha );\n\t},\n\tspaces = {\n\t\trgba: {\n\t\t\tprops: {\n\t\t\t\tred: {\n\t\t\t\t\tidx: 0,\n\t\t\t\t\ttype: \"byte\"\n\t\t\t\t},\n\t\t\t\tgreen: {\n\t\t\t\t\tidx: 1,\n\t\t\t\t\ttype: \"byte\"\n\t\t\t\t},\n\t\t\t\tblue: {\n\t\t\t\t\tidx: 2,\n\t\t\t\t\ttype: \"byte\"\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\thsla: {\n\t\t\tprops: {\n\t\t\t\thue: {\n\t\t\t\t\tidx: 0,\n\t\t\t\t\ttype: \"degrees\"\n\t\t\t\t},\n\t\t\t\tsaturation: {\n\t\t\t\t\tidx: 1,\n\t\t\t\t\ttype: \"percent\"\n\t\t\t\t},\n\t\t\t\tlightness: {\n\t\t\t\t\tidx: 2,\n\t\t\t\t\ttype: \"percent\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\tpropTypes = {\n\t\t\"byte\": {\n\t\t\tfloor: true,\n\t\t\tmax: 255\n\t\t},\n\t\t\"percent\": {\n\t\t\tmax: 1\n\t\t},\n\t\t\"degrees\": {\n\t\t\tmod: 360,\n\t\t\tfloor: true\n\t\t}\n\t},\n\tsupport = color.support = {},\n\n\t// element for support tests\n\tsupportElem = jQuery( \"<p>\" )[ 0 ],\n\n\t// colors = jQuery.Color.names\n\tcolors,\n\n\t// local aliases of functions called often\n\teach = jQuery.each;\n\n// determine rgba support immediately\nsupportElem.style.cssText = \"background-color:rgba(1,1,1,.5)\";\nsupport.rgba = supportElem.style.backgroundColor.indexOf( \"rgba\" ) > -1;\n\n// define cache name and alpha properties\n// for rgba and hsla spaces\neach( spaces, function( spaceName, space ) {\n\tspace.cache = \"_\" + spaceName;\n\tspace.props.alpha = {\n\t\tidx: 3,\n\t\ttype: \"percent\",\n\t\tdef: 1\n\t};\n});\n\nfunction clamp( value, prop, allowEmpty ) {\n\tvar type = propTypes[ prop.type ] || {};\n\n\tif ( value == null ) {\n\t\treturn (allowEmpty || !prop.def) ? null : prop.def;\n\t}\n\n\t// ~~ is an short way of doing floor for positive numbers\n\tvalue = type.floor ? ~~value : parseFloat( value );\n\n\t// IE will pass in empty strings as value for alpha,\n\t// which will hit this case\n\tif ( isNaN( value ) ) {\n\t\treturn prop.def;\n\t}\n\n\tif ( type.mod ) {\n\t\t// we add mod before modding to make sure that negatives values\n\t\t// get converted properly: -10 -> 350\n\t\treturn (value + type.mod) % type.mod;\n\t}\n\n\t// for now all property types without mod have min and max\n\treturn 0 > value ? 0 : type.max < value ? type.max : value;\n}\n\nfunction stringParse( string ) {\n\tvar inst = color(),\n\t\trgba = inst._rgba = [];\n\n\tstring = string.toLowerCase();\n\n\teach( stringParsers, function( i, parser ) {\n\t\tvar parsed,\n\t\t\tmatch = parser.re.exec( string ),\n\t\t\tvalues = match && parser.parse( match ),\n\t\t\tspaceName = parser.space || \"rgba\";\n\n\t\tif ( values ) {\n\t\t\tparsed = inst[ spaceName ]( values );\n\n\t\t\t// if this was an rgba parse the assignment might happen twice\n\t\t\t// oh well....\n\t\t\tinst[ spaces[ spaceName ].cache ] = parsed[ spaces[ spaceName ].cache ];\n\t\t\trgba = inst._rgba = parsed._rgba;\n\n\t\t\t// exit each( stringParsers ) here because we matched\n\t\t\treturn false;\n\t\t}\n\t});\n\n\t// Found a stringParser that handled it\n\tif ( rgba.length ) {\n\n\t\t// if this came from a parsed string, force \"transparent\" when alpha is 0\n\t\t// chrome, (and maybe others) return \"transparent\" as rgba(0,0,0,0)\n\t\tif ( rgba.join() === \"0,0,0,0\" ) {\n\t\t\tjQuery.extend( rgba, colors.transparent );\n\t\t}\n\t\treturn inst;\n\t}\n\n\t// named colors\n\treturn colors[ string ];\n}\n\ncolor.fn = jQuery.extend( color.prototype, {\n\tparse: function( red, green, blue, alpha ) {\n\t\tif ( red === undefined ) {\n\t\t\tthis._rgba = [ null, null, null, null ];\n\t\t\treturn this;\n\t\t}\n\t\tif ( red.jquery || red.nodeType ) {\n\t\t\tred = jQuery( red ).css( green );\n\t\t\tgreen = undefined;\n\t\t}\n\n\t\tvar inst = this,\n\t\t\ttype = jQuery.type( red ),\n\t\t\trgba = this._rgba = [];\n\n\t\t// more than 1 argument specified - assume ( red, green, blue, alpha )\n\t\tif ( green !== undefined ) {\n\t\t\tred = [ red, green, blue, alpha ];\n\t\t\ttype = \"array\";\n\t\t}\n\n\t\tif ( type === \"string\" ) {\n\t\t\treturn this.parse( stringParse( red ) || colors._default );\n\t\t}\n\n\t\tif ( type === \"array\" ) {\n\t\t\teach( spaces.rgba.props, function( key, prop ) {\n\t\t\t\trgba[ prop.idx ] = clamp( red[ prop.idx ], prop );\n\t\t\t});\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( type === \"object\" ) {\n\t\t\tif ( red instanceof color ) {\n\t\t\t\teach( spaces, function( spaceName, space ) {\n\t\t\t\t\tif ( red[ space.cache ] ) {\n\t\t\t\t\t\tinst[ space.cache ] = red[ space.cache ].slice();\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t} else {\n\t\t\t\teach( spaces, function( spaceName, space ) {\n\t\t\t\t\tvar cache = space.cache;\n\t\t\t\t\teach( space.props, function( key, prop ) {\n\n\t\t\t\t\t\t// if the cache doesn't exist, and we know how to convert\n\t\t\t\t\t\tif ( !inst[ cache ] && space.to ) {\n\n\t\t\t\t\t\t\t// if the value was null, we don't need to copy it\n\t\t\t\t\t\t\t// if the key was alpha, we don't need to copy it either\n\t\t\t\t\t\t\tif ( key === \"alpha\" || red[ key ] == null ) {\n\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tinst[ cache ] = space.to( inst._rgba );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// this is the only case where we allow nulls for ALL properties.\n\t\t\t\t\t\t// call clamp with alwaysAllowEmpty\n\t\t\t\t\t\tinst[ cache ][ prop.idx ] = clamp( red[ key ], prop, true );\n\t\t\t\t\t});\n\n\t\t\t\t\t// everything defined but alpha?\n\t\t\t\t\tif ( inst[ cache ] && jQuery.inArray( null, inst[ cache ].slice( 0, 3 ) ) < 0 ) {\n\t\t\t\t\t\t// use the default of 1\n\t\t\t\t\t\tinst[ cache ][ 3 ] = 1;\n\t\t\t\t\t\tif ( space.from ) {\n\t\t\t\t\t\t\tinst._rgba = space.from( inst[ cache ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t},\n\tis: function( compare ) {\n\t\tvar is = color( compare ),\n\t\t\tsame = true,\n\t\t\tinst = this;\n\n\t\teach( spaces, function( _, space ) {\n\t\t\tvar localCache,\n\t\t\t\tisCache = is[ space.cache ];\n\t\t\tif (isCache) {\n\t\t\t\tlocalCache = inst[ space.cache ] || space.to && space.to( inst._rgba ) || [];\n\t\t\t\teach( space.props, function( _, prop ) {\n\t\t\t\t\tif ( isCache[ prop.idx ] != null ) {\n\t\t\t\t\t\tsame = ( isCache[ prop.idx ] === localCache[ prop.idx ] );\n\t\t\t\t\t\treturn same;\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t\treturn same;\n\t\t});\n\t\treturn same;\n\t},\n\t_space: function() {\n\t\tvar used = [],\n\t\t\tinst = this;\n\t\teach( spaces, function( spaceName, space ) {\n\t\t\tif ( inst[ space.cache ] ) {\n\t\t\t\tused.push( spaceName );\n\t\t\t}\n\t\t});\n\t\treturn used.pop();\n\t},\n\ttransition: function( other, distance ) {\n\t\tvar end = color( other ),\n\t\t\tspaceName = end._space(),\n\t\t\tspace = spaces[ spaceName ],\n\t\t\tstartColor = this.alpha() === 0 ? color( \"transparent\" ) : this,\n\t\t\tstart = startColor[ space.cache ] || space.to( startColor._rgba ),\n\t\t\tresult = start.slice();\n\n\t\tend = end[ space.cache ];\n\t\teach( space.props, function( key, prop ) {\n\t\t\tvar index = prop.idx,\n\t\t\t\tstartValue = start[ index ],\n\t\t\t\tendValue = end[ index ],\n\t\t\t\ttype = propTypes[ prop.type ] || {};\n\n\t\t\t// if null, don't override start value\n\t\t\tif ( endValue === null ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\t// if null - use end\n\t\t\tif ( startValue === null ) {\n\t\t\t\tresult[ index ] = endValue;\n\t\t\t} else {\n\t\t\t\tif ( type.mod ) {\n\t\t\t\t\tif ( endValue - startValue > type.mod / 2 ) {\n\t\t\t\t\t\tstartValue += type.mod;\n\t\t\t\t\t} else if ( startValue - endValue > type.mod / 2 ) {\n\t\t\t\t\t\tstartValue -= type.mod;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tresult[ index ] = clamp( ( endValue - startValue ) * distance + startValue, prop );\n\t\t\t}\n\t\t});\n\t\treturn this[ spaceName ]( result );\n\t},\n\tblend: function( opaque ) {\n\t\t// if we are already opaque - return ourself\n\t\tif ( this._rgba[ 3 ] === 1 ) {\n\t\t\treturn this;\n\t\t}\n\n\t\tvar rgb = this._rgba.slice(),\n\t\t\ta = rgb.pop(),\n\t\t\tblend = color( opaque )._rgba;\n\n\t\treturn color( jQuery.map( rgb, function( v, i ) {\n\t\t\treturn ( 1 - a ) * blend[ i ] + a * v;\n\t\t}));\n\t},\n\ttoRgbaString: function() {\n\t\tvar prefix = \"rgba(\",\n\t\t\trgba = jQuery.map( this._rgba, function( v, i ) {\n\t\t\t\treturn v == null ? ( i > 2 ? 1 : 0 ) : v;\n\t\t\t});\n\n\t\tif ( rgba[ 3 ] === 1 ) {\n\t\t\trgba.pop();\n\t\t\tprefix = \"rgb(\";\n\t\t}\n\n\t\treturn prefix + rgba.join() + \")\";\n\t},\n\ttoHslaString: function() {\n\t\tvar prefix = \"hsla(\",\n\t\t\thsla = jQuery.map( this.hsla(), function( v, i ) {\n\t\t\t\tif ( v == null ) {\n\t\t\t\t\tv = i > 2 ? 1 : 0;\n\t\t\t\t}\n\n\t\t\t\t// catch 1 and 2\n\t\t\t\tif ( i && i < 3 ) {\n\t\t\t\t\tv = Math.round( v * 100 ) + \"%\";\n\t\t\t\t}\n\t\t\t\treturn v;\n\t\t\t});\n\n\t\tif ( hsla[ 3 ] === 1 ) {\n\t\t\thsla.pop();\n\t\t\tprefix = \"hsl(\";\n\t\t}\n\t\treturn prefix + hsla.join() + \")\";\n\t},\n\ttoHexString: function( includeAlpha ) {\n\t\tvar rgba = this._rgba.slice(),\n\t\t\talpha = rgba.pop();\n\n\t\tif ( includeAlpha ) {\n\t\t\trgba.push( ~~( alpha * 255 ) );\n\t\t}\n\n\t\treturn \"#\" + jQuery.map( rgba, function( v ) {\n\n\t\t\t// default to 0 when nulls exist\n\t\t\tv = ( v || 0 ).toString( 16 );\n\t\t\treturn v.length === 1 ? \"0\" + v : v;\n\t\t}).join(\"\");\n\t},\n\ttoString: function() {\n\t\treturn this._rgba[ 3 ] === 0 ? \"transparent\" : this.toRgbaString();\n\t}\n});\ncolor.fn.parse.prototype = color.fn;\n\n// hsla conversions adapted from:\n// https://code.google.com/p/maashaack/source/browse/packages/graphics/trunk/src/graphics/colors/HUE2RGB.as?r=5021\n\nfunction hue2rgb( p, q, h ) {\n\th = ( h + 1 ) % 1;\n\tif ( h * 6 < 1 ) {\n\t\treturn p + ( q - p ) * h * 6;\n\t}\n\tif ( h * 2 < 1) {\n\t\treturn q;\n\t}\n\tif ( h * 3 < 2 ) {\n\t\treturn p + ( q - p ) * ( ( 2 / 3 ) - h ) * 6;\n\t}\n\treturn p;\n}\n\nspaces.hsla.to = function( rgba ) {\n\tif ( rgba[ 0 ] == null || rgba[ 1 ] == null || rgba[ 2 ] == null ) {\n\t\treturn [ null, null, null, rgba[ 3 ] ];\n\t}\n\tvar r = rgba[ 0 ] / 255,\n\t\tg = rgba[ 1 ] / 255,\n\t\tb = rgba[ 2 ] / 255,\n\t\ta = rgba[ 3 ],\n\t\tmax = Math.max( r, g, b ),\n\t\tmin = Math.min( r, g, b ),\n\t\tdiff = max - min,\n\t\tadd = max + min,\n\t\tl = add * 0.5,\n\t\th, s;\n\n\tif ( min === max ) {\n\t\th = 0;\n\t} else if ( r === max ) {\n\t\th = ( 60 * ( g - b ) / diff ) + 360;\n\t} else if ( g === max ) {\n\t\th = ( 60 * ( b - r ) / diff ) + 120;\n\t} else {\n\t\th = ( 60 * ( r - g ) / diff ) + 240;\n\t}\n\n\t// chroma (diff) == 0 means greyscale which, by definition, saturation = 0%\n\t// otherwise, saturation is based on the ratio of chroma (diff) to lightness (add)\n\tif ( diff === 0 ) {\n\t\ts = 0;\n\t} else if ( l <= 0.5 ) {\n\t\ts = diff / add;\n\t} else {\n\t\ts = diff / ( 2 - add );\n\t}\n\treturn [ Math.round(h) % 360, s, l, a == null ? 1 : a ];\n};\n\nspaces.hsla.from = function( hsla ) {\n\tif ( hsla[ 0 ] == null || hsla[ 1 ] == null || hsla[ 2 ] == null ) {\n\t\treturn [ null, null, null, hsla[ 3 ] ];\n\t}\n\tvar h = hsla[ 0 ] / 360,\n\t\ts = hsla[ 1 ],\n\t\tl = hsla[ 2 ],\n\t\ta = hsla[ 3 ],\n\t\tq = l <= 0.5 ? l * ( 1 + s ) : l + s - l * s,\n\t\tp = 2 * l - q;\n\n\treturn [\n\t\tMath.round( hue2rgb( p, q, h + ( 1 / 3 ) ) * 255 ),\n\t\tMath.round( hue2rgb( p, q, h ) * 255 ),\n\t\tMath.round( hue2rgb( p, q, h - ( 1 / 3 ) ) * 255 ),\n\t\ta\n\t];\n};\n\neach( spaces, function( spaceName, space ) {\n\tvar props = space.props,\n\t\tcache = space.cache,\n\t\tto = space.to,\n\t\tfrom = space.from;\n\n\t// makes rgba() and hsla()\n\tcolor.fn[ spaceName ] = function( value ) {\n\n\t\t// generate a cache for this space if it doesn't exist\n\t\tif ( to && !this[ cache ] ) {\n\t\t\tthis[ cache ] = to( this._rgba );\n\t\t}\n\t\tif ( value === undefined ) {\n\t\t\treturn this[ cache ].slice();\n\t\t}\n\n\t\tvar ret,\n\t\t\ttype = jQuery.type( value ),\n\t\t\tarr = ( type === \"array\" || type === \"object\" ) ? value : arguments,\n\t\t\tlocal = this[ cache ].slice();\n\n\t\teach( props, function( key, prop ) {\n\t\t\tvar val = arr[ type === \"object\" ? key : prop.idx ];\n\t\t\tif ( val == null ) {\n\t\t\t\tval = local[ prop.idx ];\n\t\t\t}\n\t\t\tlocal[ prop.idx ] = clamp( val, prop );\n\t\t});\n\n\t\tif ( from ) {\n\t\t\tret = color( from( local ) );\n\t\t\tret[ cache ] = local;\n\t\t\treturn ret;\n\t\t} else {\n\t\t\treturn color( local );\n\t\t}\n\t};\n\n\t// makes red() green() blue() alpha() hue() saturation() lightness()\n\teach( props, function( key, prop ) {\n\t\t// alpha is included in more than one space\n\t\tif ( color.fn[ key ] ) {\n\t\t\treturn;\n\t\t}\n\t\tcolor.fn[ key ] = function( value ) {\n\t\t\tvar vtype = jQuery.type( value ),\n\t\t\t\tfn = ( key === \"alpha\" ? ( this._hsla ? \"hsla\" : \"rgba\" ) : spaceName ),\n\t\t\t\tlocal = this[ fn ](),\n\t\t\t\tcur = local[ prop.idx ],\n\t\t\t\tmatch;\n\n\t\t\tif ( vtype === \"undefined\" ) {\n\t\t\t\treturn cur;\n\t\t\t}\n\n\t\t\tif ( vtype === \"function\" ) {\n\t\t\t\tvalue = value.call( this, cur );\n\t\t\t\tvtype = jQuery.type( value );\n\t\t\t}\n\t\t\tif ( value == null && prop.empty ) {\n\t\t\t\treturn this;\n\t\t\t}\n\t\t\tif ( vtype === \"string\" ) {\n\t\t\t\tmatch = rplusequals.exec( value );\n\t\t\t\tif ( match ) {\n\t\t\t\t\tvalue = cur + parseFloat( match[ 2 ] ) * ( match[ 1 ] === \"+\" ? 1 : -1 );\n\t\t\t\t}\n\t\t\t}\n\t\t\tlocal[ prop.idx ] = value;\n\t\t\treturn this[ fn ]( local );\n\t\t};\n\t});\n});\n\n// add cssHook and .fx.step function for each named hook.\n// accept a space separated string of properties\ncolor.hook = function( hook ) {\n\tvar hooks = hook.split( \" \" );\n\teach( hooks, function( i, hook ) {\n\t\tjQuery.cssHooks[ hook ] = {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar parsed, curElem,\n\t\t\t\t\tbackgroundColor = \"\";\n\n\t\t\t\tif ( value !== \"transparent\" && ( jQuery.type( value ) !== \"string\" || ( parsed = stringParse( value ) ) ) ) {\n\t\t\t\t\tvalue = color( parsed || value );\n\t\t\t\t\tif ( !support.rgba && value._rgba[ 3 ] !== 1 ) {\n\t\t\t\t\t\tcurElem = hook === \"backgroundColor\" ? elem.parentNode : elem;\n\t\t\t\t\t\twhile (\n\t\t\t\t\t\t\t(backgroundColor === \"\" || backgroundColor === \"transparent\") &&\n\t\t\t\t\t\t\tcurElem && curElem.style\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\tbackgroundColor = jQuery.css( curElem, \"backgroundColor\" );\n\t\t\t\t\t\t\t\tcurElem = curElem.parentNode;\n\t\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tvalue = value.blend( backgroundColor && backgroundColor !== \"transparent\" ?\n\t\t\t\t\t\t\tbackgroundColor :\n\t\t\t\t\t\t\t\"_default\" );\n\t\t\t\t\t}\n\n\t\t\t\t\tvalue = value.toRgbaString();\n\t\t\t\t}\n\t\t\t\ttry {\n\t\t\t\t\telem.style[ hook ] = value;\n\t\t\t\t} catch ( e ) {\n\t\t\t\t\t// wrapped to prevent IE from throwing errors on \"invalid\" values like 'auto' or 'inherit'\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t\tjQuery.fx.step[ hook ] = function( fx ) {\n\t\t\tif ( !fx.colorInit ) {\n\t\t\t\tfx.start = color( fx.elem, hook );\n\t\t\t\tfx.end = color( fx.end );\n\t\t\t\tfx.colorInit = true;\n\t\t\t}\n\t\t\tjQuery.cssHooks[ hook ].set( fx.elem, fx.start.transition( fx.end, fx.pos ) );\n\t\t};\n\t});\n\n};\n\ncolor.hook( stepHooks );\n\njQuery.cssHooks.borderColor = {\n\texpand: function( value ) {\n\t\tvar expanded = {};\n\n\t\teach( [ \"Top\", \"Right\", \"Bottom\", \"Left\" ], function( i, part ) {\n\t\t\texpanded[ \"border\" + part + \"Color\" ] = value;\n\t\t});\n\t\treturn expanded;\n\t}\n};\n\n// Basic color names only.\n// Usage of any of the other color names requires adding yourself or including\n// jquery.color.svg-names.js.\ncolors = jQuery.Color.names = {\n\t// 4.1. Basic color keywords\n\taqua: \"#00ffff\",\n\tblack: \"#000000\",\n\tblue: \"#0000ff\",\n\tfuchsia: \"#ff00ff\",\n\tgray: \"#808080\",\n\tgreen: \"#008000\",\n\tlime: \"#00ff00\",\n\tmaroon: \"#800000\",\n\tnavy: \"#000080\",\n\tolive: \"#808000\",\n\tpurple: \"#800080\",\n\tred: \"#ff0000\",\n\tsilver: \"#c0c0c0\",\n\tteal: \"#008080\",\n\twhite: \"#ffffff\",\n\tyellow: \"#ffff00\",\n\n\t// 4.2.3. \"transparent\" color keyword\n\ttransparent: [ null, null, null, 0 ],\n\n\t_default: \"#ffffff\"\n};\n\n})( jQuery );\n\n/******************************************************************************/\n/****************************** CLASS ANIMATIONS ******************************/\n/******************************************************************************/\n(function() {\n\nvar classAnimationActions = [ \"add\", \"remove\", \"toggle\" ],\n\tshorthandStyles = {\n\t\tborder: 1,\n\t\tborderBottom: 1,\n\t\tborderColor: 1,\n\t\tborderLeft: 1,\n\t\tborderRight: 1,\n\t\tborderTop: 1,\n\t\tborderWidth: 1,\n\t\tmargin: 1,\n\t\tpadding: 1\n\t};\n\n$.each([ \"borderLeftStyle\", \"borderRightStyle\", \"borderBottomStyle\", \"borderTopStyle\" ], function( _, prop ) {\n\t$.fx.step[ prop ] = function( fx ) {\n\t\tif ( fx.end !== \"none\" && !fx.setAttr || fx.pos === 1 && !fx.setAttr ) {\n\t\t\tjQuery.style( fx.elem, prop, fx.end );\n\t\t\tfx.setAttr = true;\n\t\t}\n\t};\n});\n\nfunction getElementStyles( elem ) {\n\tvar key, len,\n\t\tstyle = elem.ownerDocument.defaultView ?\n\t\t\telem.ownerDocument.defaultView.getComputedStyle( elem, null ) :\n\t\t\telem.currentStyle,\n\t\tstyles = {};\n\n\tif ( style && style.length && style[ 0 ] && style[ style[ 0 ] ] ) {\n\t\tlen = style.length;\n\t\twhile ( len-- ) {\n\t\t\tkey = style[ len ];\n\t\t\tif ( typeof style[ key ] === \"string\" ) {\n\t\t\t\tstyles[ $.camelCase( key ) ] = style[ key ];\n\t\t\t}\n\t\t}\n\t// support: Opera, IE <9\n\t} else {\n\t\tfor ( key in style ) {\n\t\t\tif ( typeof style[ key ] === \"string\" ) {\n\t\t\t\tstyles[ key ] = style[ key ];\n\t\t\t}\n\t\t}\n\t}\n\n\treturn styles;\n}\n\nfunction styleDifference( oldStyle, newStyle ) {\n\tvar diff = {},\n\t\tname, value;\n\n\tfor ( name in newStyle ) {\n\t\tvalue = newStyle[ name ];\n\t\tif ( oldStyle[ name ] !== value ) {\n\t\t\tif ( !shorthandStyles[ name ] ) {\n\t\t\t\tif ( $.fx.step[ name ] || !isNaN( parseFloat( value ) ) ) {\n\t\t\t\t\tdiff[ name ] = value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn diff;\n}\n\n// support: jQuery <1.8\nif ( !$.fn.addBack ) {\n\t$.fn.addBack = function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t};\n}\n\n$.effects.animateClass = function( value, duration, easing, callback ) {\n\tvar o = $.speed( duration, easing, callback );\n\n\treturn this.queue( function() {\n\t\tvar animated = $( this ),\n\t\t\tbaseClass = animated.attr( \"class\" ) || \"\",\n\t\t\tapplyClassChange,\n\t\t\tallAnimations = o.children ? animated.find( \"*\" ).addBack() : animated;\n\n\t\t// map the animated objects to store the original styles.\n\t\tallAnimations = allAnimations.map(function() {\n\t\t\tvar el = $( this );\n\t\t\treturn {\n\t\t\t\tel: el,\n\t\t\t\tstart: getElementStyles( this )\n\t\t\t};\n\t\t});\n\n\t\t// apply class change\n\t\tapplyClassChange = function() {\n\t\t\t$.each( classAnimationActions, function(i, action) {\n\t\t\t\tif ( value[ action ] ) {\n\t\t\t\t\tanimated[ action + \"Class\" ]( value[ action ] );\n\t\t\t\t}\n\t\t\t});\n\t\t};\n\t\tapplyClassChange();\n\n\t\t// map all animated objects again - calculate new styles and diff\n\t\tallAnimations = allAnimations.map(function() {\n\t\t\tthis.end = getElementStyles( this.el[ 0 ] );\n\t\t\tthis.diff = styleDifference( this.start, this.end );\n\t\t\treturn this;\n\t\t});\n\n\t\t// apply original class\n\t\tanimated.attr( \"class\", baseClass );\n\n\t\t// map all animated objects again - this time collecting a promise\n\t\tallAnimations = allAnimations.map(function() {\n\t\t\tvar styleInfo = this,\n\t\t\t\tdfd = $.Deferred(),\n\t\t\t\topts = $.extend({}, o, {\n\t\t\t\t\tqueue: false,\n\t\t\t\t\tcomplete: function() {\n\t\t\t\t\t\tdfd.resolve( styleInfo );\n\t\t\t\t\t}\n\t\t\t\t});\n\n\t\t\tthis.el.animate( this.diff, opts );\n\t\t\treturn dfd.promise();\n\t\t});\n\n\t\t// once all animations have completed:\n\t\t$.when.apply( $, allAnimations.get() ).done(function() {\n\n\t\t\t// set the final class\n\t\t\tapplyClassChange();\n\n\t\t\t// for each animated element,\n\t\t\t// clear all css properties that were animated\n\t\t\t$.each( arguments, function() {\n\t\t\t\tvar el = this.el;\n\t\t\t\t$.each( this.diff, function(key) {\n\t\t\t\t\tel.css( key, \"\" );\n\t\t\t\t});\n\t\t\t});\n\n\t\t\t// this is guarnteed to be there if you use jQuery.speed()\n\t\t\t// it also handles dequeuing the next anim...\n\t\t\to.complete.call( animated[ 0 ] );\n\t\t});\n\t});\n};\n\n$.fn.extend({\n\taddClass: (function( orig ) {\n\t\treturn function( classNames, speed, easing, callback ) {\n\t\t\treturn speed ?\n\t\t\t\t$.effects.animateClass.call( this,\n\t\t\t\t\t{ add: classNames }, speed, easing, callback ) :\n\t\t\t\torig.apply( this, arguments );\n\t\t};\n\t})( $.fn.addClass ),\n\n\tremoveClass: (function( orig ) {\n\t\treturn function( classNames, speed, easing, callback ) {\n\t\t\treturn arguments.length > 1 ?\n\t\t\t\t$.effects.animateClass.call( this,\n\t\t\t\t\t{ remove: classNames }, speed, easing, callback ) :\n\t\t\t\torig.apply( this, arguments );\n\t\t};\n\t})( $.fn.removeClass ),\n\n\ttoggleClass: (function( orig ) {\n\t\treturn function( classNames, force, speed, easing, callback ) {\n\t\t\tif ( typeof force === \"boolean\" || force === undefined ) {\n\t\t\t\tif ( !speed ) {\n\t\t\t\t\t// without speed parameter\n\t\t\t\t\treturn orig.apply( this, arguments );\n\t\t\t\t} else {\n\t\t\t\t\treturn $.effects.animateClass.call( this,\n\t\t\t\t\t\t(force ? { add: classNames } : { remove: classNames }),\n\t\t\t\t\t\tspeed, easing, callback );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// without force parameter\n\t\t\t\treturn $.effects.animateClass.call( this,\n\t\t\t\t\t{ toggle: classNames }, force, speed, easing );\n\t\t\t}\n\t\t};\n\t})( $.fn.toggleClass ),\n\n\tswitchClass: function( remove, add, speed, easing, callback) {\n\t\treturn $.effects.animateClass.call( this, {\n\t\t\tadd: add,\n\t\t\tremove: remove\n\t\t}, speed, easing, callback );\n\t}\n});\n\n})();\n\n/******************************************************************************/\n/*********************************** EFFECTS **********************************/\n/******************************************************************************/\n\n(function() {\n\n$.extend( $.effects, {\n\tversion: \"1.11.4\",\n\n\t// Saves a set of properties in a data storage\n\tsave: function( element, set ) {\n\t\tfor ( var i = 0; i < set.length; i++ ) {\n\t\t\tif ( set[ i ] !== null ) {\n\t\t\t\telement.data( dataSpace + set[ i ], element[ 0 ].style[ set[ i ] ] );\n\t\t\t}\n\t\t}\n\t},\n\n\t// Restores a set of previously saved properties from a data storage\n\trestore: function( element, set ) {\n\t\tvar val, i;\n\t\tfor ( i = 0; i < set.length; i++ ) {\n\t\t\tif ( set[ i ] !== null ) {\n\t\t\t\tval = element.data( dataSpace + set[ i ] );\n\t\t\t\t// support: jQuery 1.6.2\n\t\t\t\t// http://bugs.jquery.com/ticket/9917\n\t\t\t\t// jQuery 1.6.2 incorrectly returns undefined for any falsy value.\n\t\t\t\t// We can't differentiate between \"\" and 0 here, so we just assume\n\t\t\t\t// empty string since it's likely to be a more common value...\n\t\t\t\tif ( val === undefined ) {\n\t\t\t\t\tval = \"\";\n\t\t\t\t}\n\t\t\t\telement.css( set[ i ], val );\n\t\t\t}\n\t\t}\n\t},\n\n\tsetMode: function( el, mode ) {\n\t\tif (mode === \"toggle\") {\n\t\t\tmode = el.is( \":hidden\" ) ? \"show\" : \"hide\";\n\t\t}\n\t\treturn mode;\n\t},\n\n\t// Translates a [top,left] array into a baseline value\n\t// this should be a little more flexible in the future to handle a string & hash\n\tgetBaseline: function( origin, original ) {\n\t\tvar y, x;\n\t\tswitch ( origin[ 0 ] ) {\n\t\t\tcase \"top\": y = 0; break;\n\t\t\tcase \"middle\": y = 0.5; break;\n\t\t\tcase \"bottom\": y = 1; break;\n\t\t\tdefault: y = origin[ 0 ] / original.height;\n\t\t}\n\t\tswitch ( origin[ 1 ] ) {\n\t\t\tcase \"left\": x = 0; break;\n\t\t\tcase \"center\": x = 0.5; break;\n\t\t\tcase \"right\": x = 1; break;\n\t\t\tdefault: x = origin[ 1 ] / original.width;\n\t\t}\n\t\treturn {\n\t\t\tx: x,\n\t\t\ty: y\n\t\t};\n\t},\n\n\t// Wraps the element around a wrapper that copies position properties\n\tcreateWrapper: function( element ) {\n\n\t\t// if the element is already wrapped, return it\n\t\tif ( element.parent().is( \".ui-effects-wrapper\" )) {\n\t\t\treturn element.parent();\n\t\t}\n\n\t\t// wrap the element\n\t\tvar props = {\n\t\t\t\twidth: element.outerWidth(true),\n\t\t\t\theight: element.outerHeight(true),\n\t\t\t\t\"float\": element.css( \"float\" )\n\t\t\t},\n\t\t\twrapper = $( \"<div></div>\" )\n\t\t\t\t.addClass( \"ui-effects-wrapper\" )\n\t\t\t\t.css({\n\t\t\t\t\tfontSize: \"100%\",\n\t\t\t\t\tbackground: \"transparent\",\n\t\t\t\t\tborder: \"none\",\n\t\t\t\t\tmargin: 0,\n\t\t\t\t\tpadding: 0\n\t\t\t\t}),\n\t\t\t// Store the size in case width/height are defined in % - Fixes #5245\n\t\t\tsize = {\n\t\t\t\twidth: element.width(),\n\t\t\t\theight: element.height()\n\t\t\t},\n\t\t\tactive = document.activeElement;\n\n\t\t// support: Firefox\n\t\t// Firefox incorrectly exposes anonymous content\n\t\t// https://bugzilla.mozilla.org/show_bug.cgi?id=561664\n\t\ttry {\n\t\t\tactive.id;\n\t\t} catch ( e ) {\n\t\t\tactive = document.body;\n\t\t}\n\n\t\telement.wrap( wrapper );\n\n\t\t// Fixes #7595 - Elements lose focus when wrapped.\n\t\tif ( element[ 0 ] === active || $.contains( element[ 0 ], active ) ) {\n\t\t\t$( active ).focus();\n\t\t}\n\n\t\twrapper = element.parent(); //Hotfix for jQuery 1.4 since some change in wrap() seems to actually lose the reference to the wrapped element\n\n\t\t// transfer positioning properties to the wrapper\n\t\tif ( element.css( \"position\" ) === \"static\" ) {\n\t\t\twrapper.css({ position: \"relative\" });\n\t\t\telement.css({ position: \"relative\" });\n\t\t} else {\n\t\t\t$.extend( props, {\n\t\t\t\tposition: element.css( \"position\" ),\n\t\t\t\tzIndex: element.css( \"z-index\" )\n\t\t\t});\n\t\t\t$.each([ \"top\", \"left\", \"bottom\", \"right\" ], function(i, pos) {\n\t\t\t\tprops[ pos ] = element.css( pos );\n\t\t\t\tif ( isNaN( parseInt( props[ pos ], 10 ) ) ) {\n\t\t\t\t\tprops[ pos ] = \"auto\";\n\t\t\t\t}\n\t\t\t});\n\t\t\telement.css({\n\t\t\t\tposition: \"relative\",\n\t\t\t\ttop: 0,\n\t\t\t\tleft: 0,\n\t\t\t\tright: \"auto\",\n\t\t\t\tbottom: \"auto\"\n\t\t\t});\n\t\t}\n\t\telement.css(size);\n\n\t\treturn wrapper.css( props ).show();\n\t},\n\n\tremoveWrapper: function( element ) {\n\t\tvar active = document.activeElement;\n\n\t\tif ( element.parent().is( \".ui-effects-wrapper\" ) ) {\n\t\t\telement.parent().replaceWith( element );\n\n\t\t\t// Fixes #7595 - Elements lose focus when wrapped.\n\t\t\tif ( element[ 0 ] === active || $.contains( element[ 0 ], active ) ) {\n\t\t\t\t$( active ).focus();\n\t\t\t}\n\t\t}\n\n\t\treturn element;\n\t},\n\n\tsetTransition: function( element, list, factor, value ) {\n\t\tvalue = value || {};\n\t\t$.each( list, function( i, x ) {\n\t\t\tvar unit = element.cssUnit( x );\n\t\t\tif ( unit[ 0 ] > 0 ) {\n\t\t\t\tvalue[ x ] = unit[ 0 ] * factor + unit[ 1 ];\n\t\t\t}\n\t\t});\n\t\treturn value;\n\t}\n});\n\n// return an effect options object for the given parameters:\nfunction _normalizeArguments( effect, options, speed, callback ) {\n\n\t// allow passing all options as the first parameter\n\tif ( $.isPlainObject( effect ) ) {\n\t\toptions = effect;\n\t\teffect = effect.effect;\n\t}\n\n\t// convert to an object\n\teffect = { effect: effect };\n\n\t// catch (effect, null, ...)\n\tif ( options == null ) {\n\t\toptions = {};\n\t}\n\n\t// catch (effect, callback)\n\tif ( $.isFunction( options ) ) {\n\t\tcallback = options;\n\t\tspeed = null;\n\t\toptions = {};\n\t}\n\n\t// catch (effect, speed, ?)\n\tif ( typeof options === \"number\" || $.fx.speeds[ options ] ) {\n\t\tcallback = speed;\n\t\tspeed = options;\n\t\toptions = {};\n\t}\n\n\t// catch (effect, options, callback)\n\tif ( $.isFunction( speed ) ) {\n\t\tcallback = speed;\n\t\tspeed = null;\n\t}\n\n\t// add options to effect\n\tif ( options ) {\n\t\t$.extend( effect, options );\n\t}\n\n\tspeed = speed || options.duration;\n\teffect.duration = $.fx.off ? 0 :\n\t\ttypeof speed === \"number\" ? speed :\n\t\tspeed in $.fx.speeds ? $.fx.speeds[ speed ] :\n\t\t$.fx.speeds._default;\n\n\teffect.complete = callback || options.complete;\n\n\treturn effect;\n}\n\nfunction standardAnimationOption( option ) {\n\t// Valid standard speeds (nothing, number, named speed)\n\tif ( !option || typeof option === \"number\" || $.fx.speeds[ option ] ) {\n\t\treturn true;\n\t}\n\n\t// Invalid strings - treat as \"normal\" speed\n\tif ( typeof option === \"string\" && !$.effects.effect[ option ] ) {\n\t\treturn true;\n\t}\n\n\t// Complete callback\n\tif ( $.isFunction( option ) ) {\n\t\treturn true;\n\t}\n\n\t// Options hash (but not naming an effect)\n\tif ( typeof option === \"object\" && !option.effect ) {\n\t\treturn true;\n\t}\n\n\t// Didn't match any standard API\n\treturn false;\n}\n\n$.fn.extend({\n\teffect: function( /* effect, options, speed, callback */ ) {\n\t\tvar args = _normalizeArguments.apply( this, arguments ),\n\t\t\tmode = args.mode,\n\t\t\tqueue = args.queue,\n\t\t\teffectMethod = $.effects.effect[ args.effect ];\n\n\t\tif ( $.fx.off || !effectMethod ) {\n\t\t\t// delegate to the original method (e.g., .show()) if possible\n\t\t\tif ( mode ) {\n\t\t\t\treturn this[ mode ]( args.duration, args.complete );\n\t\t\t} else {\n\t\t\t\treturn this.each( function() {\n\t\t\t\t\tif ( args.complete ) {\n\t\t\t\t\t\targs.complete.call( this );\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\n\t\tfunction run( next ) {\n\t\t\tvar elem = $( this ),\n\t\t\t\tcomplete = args.complete,\n\t\t\t\tmode = args.mode;\n\n\t\t\tfunction done() {\n\t\t\t\tif ( $.isFunction( complete ) ) {\n\t\t\t\t\tcomplete.call( elem[0] );\n\t\t\t\t}\n\t\t\t\tif ( $.isFunction( next ) ) {\n\t\t\t\t\tnext();\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// If the element already has the correct final state, delegate to\n\t\t\t// the core methods so the internal tracking of \"olddisplay\" works.\n\t\t\tif ( elem.is( \":hidden\" ) ? mode === \"hide\" : mode === \"show\" ) {\n\t\t\t\telem[ mode ]();\n\t\t\t\tdone();\n\t\t\t} else {\n\t\t\t\teffectMethod.call( elem[0], args, done );\n\t\t\t}\n\t\t}\n\n\t\treturn queue === false ? this.each( run ) : this.queue( queue || \"fx\", run );\n\t},\n\n\tshow: (function( orig ) {\n\t\treturn function( option ) {\n\t\t\tif ( standardAnimationOption( option ) ) {\n\t\t\t\treturn orig.apply( this, arguments );\n\t\t\t} else {\n\t\t\t\tvar args = _normalizeArguments.apply( this, arguments );\n\t\t\t\targs.mode = \"show\";\n\t\t\t\treturn this.effect.call( this, args );\n\t\t\t}\n\t\t};\n\t})( $.fn.show ),\n\n\thide: (function( orig ) {\n\t\treturn function( option ) {\n\t\t\tif ( standardAnimationOption( option ) ) {\n\t\t\t\treturn orig.apply( this, arguments );\n\t\t\t} else {\n\t\t\t\tvar args = _normalizeArguments.apply( this, arguments );\n\t\t\t\targs.mode = \"hide\";\n\t\t\t\treturn this.effect.call( this, args );\n\t\t\t}\n\t\t};\n\t})( $.fn.hide ),\n\n\ttoggle: (function( orig ) {\n\t\treturn function( option ) {\n\t\t\tif ( standardAnimationOption( option ) || typeof option === \"boolean\" ) {\n\t\t\t\treturn orig.apply( this, arguments );\n\t\t\t} else {\n\t\t\t\tvar args = _normalizeArguments.apply( this, arguments );\n\t\t\t\targs.mode = \"toggle\";\n\t\t\t\treturn this.effect.call( this, args );\n\t\t\t}\n\t\t};\n\t})( $.fn.toggle ),\n\n\t// helper functions\n\tcssUnit: function(key) {\n\t\tvar style = this.css( key ),\n\t\t\tval = [];\n\n\t\t$.each( [ \"em\", \"px\", \"%\", \"pt\" ], function( i, unit ) {\n\t\t\tif ( style.indexOf( unit ) > 0 ) {\n\t\t\t\tval = [ parseFloat( style ), unit ];\n\t\t\t}\n\t\t});\n\t\treturn val;\n\t}\n});\n\n})();\n\n/******************************************************************************/\n/*********************************** EASING ***********************************/\n/******************************************************************************/\n\n(function() {\n\n// based on easing equations from Robert Penner (http://www.robertpenner.com/easing)\n\nvar baseEasings = {};\n\n$.each( [ \"Quad\", \"Cubic\", \"Quart\", \"Quint\", \"Expo\" ], function( i, name ) {\n\tbaseEasings[ name ] = function( p ) {\n\t\treturn Math.pow( p, i + 2 );\n\t};\n});\n\n$.extend( baseEasings, {\n\tSine: function( p ) {\n\t\treturn 1 - Math.cos( p * Math.PI / 2 );\n\t},\n\tCirc: function( p ) {\n\t\treturn 1 - Math.sqrt( 1 - p * p );\n\t},\n\tElastic: function( p ) {\n\t\treturn p === 0 || p === 1 ? p :\n\t\t\t-Math.pow( 2, 8 * (p - 1) ) * Math.sin( ( (p - 1) * 80 - 7.5 ) * Math.PI / 15 );\n\t},\n\tBack: function( p ) {\n\t\treturn p * p * ( 3 * p - 2 );\n\t},\n\tBounce: function( p ) {\n\t\tvar pow2,\n\t\t\tbounce = 4;\n\n\t\twhile ( p < ( ( pow2 = Math.pow( 2, --bounce ) ) - 1 ) / 11 ) {}\n\t\treturn 1 / Math.pow( 4, 3 - bounce ) - 7.5625 * Math.pow( ( pow2 * 3 - 2 ) / 22 - p, 2 );\n\t}\n});\n\n$.each( baseEasings, function( name, easeIn ) {\n\t$.easing[ \"easeIn\" + name ] = easeIn;\n\t$.easing[ \"easeOut\" + name ] = function( p ) {\n\t\treturn 1 - easeIn( 1 - p );\n\t};\n\t$.easing[ \"easeInOut\" + name ] = function( p ) {\n\t\treturn p < 0.5 ?\n\t\t\teaseIn( p * 2 ) / 2 :\n\t\t\t1 - easeIn( p * -2 + 2 ) / 2;\n\t};\n});\n\n})();\n\nvar effect = $.effects;\n\n\n/*!\n * jQuery UI Effects Blind 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/blind-effect/\n */\n\n\nvar effectBlind = $.effects.effect.blind = function( o, done ) {\n\t// Create element\n\tvar el = $( this ),\n\t\trvertical = /up|down|vertical/,\n\t\trpositivemotion = /up|left|vertical|horizontal/,\n\t\tprops = [ \"position\", \"top\", \"bottom\", \"left\", \"right\", \"height\", \"width\" ],\n\t\tmode = $.effects.setMode( el, o.mode || \"hide\" ),\n\t\tdirection = o.direction || \"up\",\n\t\tvertical = rvertical.test( direction ),\n\t\tref = vertical ? \"height\" : \"width\",\n\t\tref2 = vertical ? \"top\" : \"left\",\n\t\tmotion = rpositivemotion.test( direction ),\n\t\tanimation = {},\n\t\tshow = mode === \"show\",\n\t\twrapper, distance, margin;\n\n\t// if already wrapped, the wrapper's properties are my property. #6245\n\tif ( el.parent().is( \".ui-effects-wrapper\" ) ) {\n\t\t$.effects.save( el.parent(), props );\n\t} else {\n\t\t$.effects.save( el, props );\n\t}\n\tel.show();\n\twrapper = $.effects.createWrapper( el ).css({\n\t\toverflow: \"hidden\"\n\t});\n\n\tdistance = wrapper[ ref ]();\n\tmargin = parseFloat( wrapper.css( ref2 ) ) || 0;\n\n\tanimation[ ref ] = show ? distance : 0;\n\tif ( !motion ) {\n\t\tel\n\t\t\t.css( vertical ? \"bottom\" : \"right\", 0 )\n\t\t\t.css( vertical ? \"top\" : \"left\", \"auto\" )\n\t\t\t.css({ position: \"absolute\" });\n\n\t\tanimation[ ref2 ] = show ? margin : distance + margin;\n\t}\n\n\t// start at 0 if we are showing\n\tif ( show ) {\n\t\twrapper.css( ref, 0 );\n\t\tif ( !motion ) {\n\t\t\twrapper.css( ref2, margin + distance );\n\t\t}\n\t}\n\n\t// Animate\n\twrapper.animate( animation, {\n\t\tduration: o.duration,\n\t\teasing: o.easing,\n\t\tqueue: false,\n\t\tcomplete: function() {\n\t\t\tif ( mode === \"hide\" ) {\n\t\t\t\tel.hide();\n\t\t\t}\n\t\t\t$.effects.restore( el, props );\n\t\t\t$.effects.removeWrapper( el );\n\t\t\tdone();\n\t\t}\n\t});\n};\n\n\n/*!\n * jQuery UI Effects Bounce 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/bounce-effect/\n */\n\n\nvar effectBounce = $.effects.effect.bounce = function( o, done ) {\n\tvar el = $( this ),\n\t\tprops = [ \"position\", \"top\", \"bottom\", \"left\", \"right\", \"height\", \"width\" ],\n\n\t\t// defaults:\n\t\tmode = $.effects.setMode( el, o.mode || \"effect\" ),\n\t\thide = mode === \"hide\",\n\t\tshow = mode === \"show\",\n\t\tdirection = o.direction || \"up\",\n\t\tdistance = o.distance,\n\t\ttimes = o.times || 5,\n\n\t\t// number of internal animations\n\t\tanims = times * 2 + ( show || hide ? 1 : 0 ),\n\t\tspeed = o.duration / anims,\n\t\teasing = o.easing,\n\n\t\t// utility:\n\t\tref = ( direction === \"up\" || direction === \"down\" ) ? \"top\" : \"left\",\n\t\tmotion = ( direction === \"up\" || direction === \"left\" ),\n\t\ti,\n\t\tupAnim,\n\t\tdownAnim,\n\n\t\t// we will need to re-assemble the queue to stack our animations in place\n\t\tqueue = el.queue(),\n\t\tqueuelen = queue.length;\n\n\t// Avoid touching opacity to prevent clearType and PNG issues in IE\n\tif ( show || hide ) {\n\t\tprops.push( \"opacity\" );\n\t}\n\n\t$.effects.save( el, props );\n\tel.show();\n\t$.effects.createWrapper( el ); // Create Wrapper\n\n\t// default distance for the BIGGEST bounce is the outer Distance / 3\n\tif ( !distance ) {\n\t\tdistance = el[ ref === \"top\" ? \"outerHeight\" : \"outerWidth\" ]() / 3;\n\t}\n\n\tif ( show ) {\n\t\tdownAnim = { opacity: 1 };\n\t\tdownAnim[ ref ] = 0;\n\n\t\t// if we are showing, force opacity 0 and set the initial position\n\t\t// then do the \"first\" animation\n\t\tel.css( \"opacity\", 0 )\n\t\t\t.css( ref, motion ? -distance * 2 : distance * 2 )\n\t\t\t.animate( downAnim, speed, easing );\n\t}\n\n\t// start at the smallest distance if we are hiding\n\tif ( hide ) {\n\t\tdistance = distance / Math.pow( 2, times - 1 );\n\t}\n\n\tdownAnim = {};\n\tdownAnim[ ref ] = 0;\n\t// Bounces up/down/left/right then back to 0 -- times * 2 animations happen here\n\tfor ( i = 0; i < times; i++ ) {\n\t\tupAnim = {};\n\t\tupAnim[ ref ] = ( motion ? \"-=\" : \"+=\" ) + distance;\n\n\t\tel.animate( upAnim, speed, easing )\n\t\t\t.animate( downAnim, speed, easing );\n\n\t\tdistance = hide ? distance * 2 : distance / 2;\n\t}\n\n\t// Last Bounce when Hiding\n\tif ( hide ) {\n\t\tupAnim = { opacity: 0 };\n\t\tupAnim[ ref ] = ( motion ? \"-=\" : \"+=\" ) + distance;\n\n\t\tel.animate( upAnim, speed, easing );\n\t}\n\n\tel.queue(function() {\n\t\tif ( hide ) {\n\t\t\tel.hide();\n\t\t}\n\t\t$.effects.restore( el, props );\n\t\t$.effects.removeWrapper( el );\n\t\tdone();\n\t});\n\n\t// inject all the animations we just queued to be first in line (after \"inprogress\")\n\tif ( queuelen > 1) {\n\t\tqueue.splice.apply( queue,\n\t\t\t[ 1, 0 ].concat( queue.splice( queuelen, anims + 1 ) ) );\n\t}\n\tel.dequeue();\n\n};\n\n\n/*!\n * jQuery UI Effects Clip 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/clip-effect/\n */\n\n\nvar effectClip = $.effects.effect.clip = function( o, done ) {\n\t// Create element\n\tvar el = $( this ),\n\t\tprops = [ \"position\", \"top\", \"bottom\", \"left\", \"right\", \"height\", \"width\" ],\n\t\tmode = $.effects.setMode( el, o.mode || \"hide\" ),\n\t\tshow = mode === \"show\",\n\t\tdirection = o.direction || \"vertical\",\n\t\tvert = direction === \"vertical\",\n\t\tsize = vert ? \"height\" : \"width\",\n\t\tposition = vert ? \"top\" : \"left\",\n\t\tanimation = {},\n\t\twrapper, animate, distance;\n\n\t// Save & Show\n\t$.effects.save( el, props );\n\tel.show();\n\n\t// Create Wrapper\n\twrapper = $.effects.createWrapper( el ).css({\n\t\toverflow: \"hidden\"\n\t});\n\tanimate = ( el[0].tagName === \"IMG\" ) ? wrapper : el;\n\tdistance = animate[ size ]();\n\n\t// Shift\n\tif ( show ) {\n\t\tanimate.css( size, 0 );\n\t\tanimate.css( position, distance / 2 );\n\t}\n\n\t// Create Animation Object:\n\tanimation[ size ] = show ? distance : 0;\n\tanimation[ position ] = show ? 0 : distance / 2;\n\n\t// Animate\n\tanimate.animate( animation, {\n\t\tqueue: false,\n\t\tduration: o.duration,\n\t\teasing: o.easing,\n\t\tcomplete: function() {\n\t\t\tif ( !show ) {\n\t\t\t\tel.hide();\n\t\t\t}\n\t\t\t$.effects.restore( el, props );\n\t\t\t$.effects.removeWrapper( el );\n\t\t\tdone();\n\t\t}\n\t});\n\n};\n\n\n/*!\n * jQuery UI Effects Drop 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/drop-effect/\n */\n\n\nvar effectDrop = $.effects.effect.drop = function( o, done ) {\n\n\tvar el = $( this ),\n\t\tprops = [ \"position\", \"top\", \"bottom\", \"left\", \"right\", \"opacity\", \"height\", \"width\" ],\n\t\tmode = $.effects.setMode( el, o.mode || \"hide\" ),\n\t\tshow = mode === \"show\",\n\t\tdirection = o.direction || \"left\",\n\t\tref = ( direction === \"up\" || direction === \"down\" ) ? \"top\" : \"left\",\n\t\tmotion = ( direction === \"up\" || direction === \"left\" ) ? \"pos\" : \"neg\",\n\t\tanimation = {\n\t\t\topacity: show ? 1 : 0\n\t\t},\n\t\tdistance;\n\n\t// Adjust\n\t$.effects.save( el, props );\n\tel.show();\n\t$.effects.createWrapper( el );\n\n\tdistance = o.distance || el[ ref === \"top\" ? \"outerHeight\" : \"outerWidth\" ]( true ) / 2;\n\n\tif ( show ) {\n\t\tel\n\t\t\t.css( \"opacity\", 0 )\n\t\t\t.css( ref, motion === \"pos\" ? -distance : distance );\n\t}\n\n\t// Animation\n\tanimation[ ref ] = ( show ?\n\t\t( motion === \"pos\" ? \"+=\" : \"-=\" ) :\n\t\t( motion === \"pos\" ? \"-=\" : \"+=\" ) ) +\n\t\tdistance;\n\n\t// Animate\n\tel.animate( animation, {\n\t\tqueue: false,\n\t\tduration: o.duration,\n\t\teasing: o.easing,\n\t\tcomplete: function() {\n\t\t\tif ( mode === \"hide\" ) {\n\t\t\t\tel.hide();\n\t\t\t}\n\t\t\t$.effects.restore( el, props );\n\t\t\t$.effects.removeWrapper( el );\n\t\t\tdone();\n\t\t}\n\t});\n};\n\n\n/*!\n * jQuery UI Effects Explode 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/explode-effect/\n */\n\n\nvar effectExplode = $.effects.effect.explode = function( o, done ) {\n\n\tvar rows = o.pieces ? Math.round( Math.sqrt( o.pieces ) ) : 3,\n\t\tcells = rows,\n\t\tel = $( this ),\n\t\tmode = $.effects.setMode( el, o.mode || \"hide\" ),\n\t\tshow = mode === \"show\",\n\n\t\t// show and then visibility:hidden the element before calculating offset\n\t\toffset = el.show().css( \"visibility\", \"hidden\" ).offset(),\n\n\t\t// width and height of a piece\n\t\twidth = Math.ceil( el.outerWidth() / cells ),\n\t\theight = Math.ceil( el.outerHeight() / rows ),\n\t\tpieces = [],\n\n\t\t// loop\n\t\ti, j, left, top, mx, my;\n\n\t// children animate complete:\n\tfunction childComplete() {\n\t\tpieces.push( this );\n\t\tif ( pieces.length === rows * cells ) {\n\t\t\tanimComplete();\n\t\t}\n\t}\n\n\t// clone the element for each row and cell.\n\tfor ( i = 0; i < rows ; i++ ) { // ===>\n\t\ttop = offset.top + i * height;\n\t\tmy = i - ( rows - 1 ) / 2 ;\n\n\t\tfor ( j = 0; j < cells ; j++ ) { // |||\n\t\t\tleft = offset.left + j * width;\n\t\t\tmx = j - ( cells - 1 ) / 2 ;\n\n\t\t\t// Create a clone of the now hidden main element that will be absolute positioned\n\t\t\t// within a wrapper div off the -left and -top equal to size of our pieces\n\t\t\tel\n\t\t\t\t.clone()\n\t\t\t\t.appendTo( \"body\" )\n\t\t\t\t.wrap( \"<div></div>\" )\n\t\t\t\t.css({\n\t\t\t\t\tposition: \"absolute\",\n\t\t\t\t\tvisibility: \"visible\",\n\t\t\t\t\tleft: -j * width,\n\t\t\t\t\ttop: -i * height\n\t\t\t\t})\n\n\t\t\t// select the wrapper - make it overflow: hidden and absolute positioned based on\n\t\t\t// where the original was located +left and +top equal to the size of pieces\n\t\t\t\t.parent()\n\t\t\t\t.addClass( \"ui-effects-explode\" )\n\t\t\t\t.css({\n\t\t\t\t\tposition: \"absolute\",\n\t\t\t\t\toverflow: \"hidden\",\n\t\t\t\t\twidth: width,\n\t\t\t\t\theight: height,\n\t\t\t\t\tleft: left + ( show ? mx * width : 0 ),\n\t\t\t\t\ttop: top + ( show ? my * height : 0 ),\n\t\t\t\t\topacity: show ? 0 : 1\n\t\t\t\t}).animate({\n\t\t\t\t\tleft: left + ( show ? 0 : mx * width ),\n\t\t\t\t\ttop: top + ( show ? 0 : my * height ),\n\t\t\t\t\topacity: show ? 1 : 0\n\t\t\t\t}, o.duration || 500, o.easing, childComplete );\n\t\t}\n\t}\n\n\tfunction animComplete() {\n\t\tel.css({\n\t\t\tvisibility: \"visible\"\n\t\t});\n\t\t$( pieces ).remove();\n\t\tif ( !show ) {\n\t\t\tel.hide();\n\t\t}\n\t\tdone();\n\t}\n};\n\n\n/*!\n * jQuery UI Effects Fade 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/fade-effect/\n */\n\n\nvar effectFade = $.effects.effect.fade = function( o, done ) {\n\tvar el = $( this ),\n\t\tmode = $.effects.setMode( el, o.mode || \"toggle\" );\n\n\tel.animate({\n\t\topacity: mode\n\t}, {\n\t\tqueue: false,\n\t\tduration: o.duration,\n\t\teasing: o.easing,\n\t\tcomplete: done\n\t});\n};\n\n\n/*!\n * jQuery UI Effects Fold 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/fold-effect/\n */\n\n\nvar effectFold = $.effects.effect.fold = function( o, done ) {\n\n\t// Create element\n\tvar el = $( this ),\n\t\tprops = [ \"position\", \"top\", \"bottom\", \"left\", \"right\", \"height\", \"width\" ],\n\t\tmode = $.effects.setMode( el, o.mode || \"hide\" ),\n\t\tshow = mode === \"show\",\n\t\thide = mode === \"hide\",\n\t\tsize = o.size || 15,\n\t\tpercent = /([0-9]+)%/.exec( size ),\n\t\thorizFirst = !!o.horizFirst,\n\t\twidthFirst = show !== horizFirst,\n\t\tref = widthFirst ? [ \"width\", \"height\" ] : [ \"height\", \"width\" ],\n\t\tduration = o.duration / 2,\n\t\twrapper, distance,\n\t\tanimation1 = {},\n\t\tanimation2 = {};\n\n\t$.effects.save( el, props );\n\tel.show();\n\n\t// Create Wrapper\n\twrapper = $.effects.createWrapper( el ).css({\n\t\toverflow: \"hidden\"\n\t});\n\tdistance = widthFirst ?\n\t\t[ wrapper.width(), wrapper.height() ] :\n\t\t[ wrapper.height(), wrapper.width() ];\n\n\tif ( percent ) {\n\t\tsize = parseInt( percent[ 1 ], 10 ) / 100 * distance[ hide ? 0 : 1 ];\n\t}\n\tif ( show ) {\n\t\twrapper.css( horizFirst ? {\n\t\t\theight: 0,\n\t\t\twidth: size\n\t\t} : {\n\t\t\theight: size,\n\t\t\twidth: 0\n\t\t});\n\t}\n\n\t// Animation\n\tanimation1[ ref[ 0 ] ] = show ? distance[ 0 ] : size;\n\tanimation2[ ref[ 1 ] ] = show ? distance[ 1 ] : 0;\n\n\t// Animate\n\twrapper\n\t\t.animate( animation1, duration, o.easing )\n\t\t.animate( animation2, duration, o.easing, function() {\n\t\t\tif ( hide ) {\n\t\t\t\tel.hide();\n\t\t\t}\n\t\t\t$.effects.restore( el, props );\n\t\t\t$.effects.removeWrapper( el );\n\t\t\tdone();\n\t\t});\n\n};\n\n\n/*!\n * jQuery UI Effects Highlight 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/highlight-effect/\n */\n\n\nvar effectHighlight = $.effects.effect.highlight = function( o, done ) {\n\tvar elem = $( this ),\n\t\tprops = [ \"backgroundImage\", \"backgroundColor\", \"opacity\" ],\n\t\tmode = $.effects.setMode( elem, o.mode || \"show\" ),\n\t\tanimation = {\n\t\t\tbackgroundColor: elem.css( \"backgroundColor\" )\n\t\t};\n\n\tif (mode === \"hide\") {\n\t\tanimation.opacity = 0;\n\t}\n\n\t$.effects.save( elem, props );\n\n\telem\n\t\t.show()\n\t\t.css({\n\t\t\tbackgroundImage: \"none\",\n\t\t\tbackgroundColor: o.color || \"#ffff99\"\n\t\t})\n\t\t.animate( animation, {\n\t\t\tqueue: false,\n\t\t\tduration: o.duration,\n\t\t\teasing: o.easing,\n\t\t\tcomplete: function() {\n\t\t\t\tif ( mode === \"hide\" ) {\n\t\t\t\t\telem.hide();\n\t\t\t\t}\n\t\t\t\t$.effects.restore( elem, props );\n\t\t\t\tdone();\n\t\t\t}\n\t\t});\n};\n\n\n/*!\n * jQuery UI Effects Size 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/size-effect/\n */\n\n\nvar effectSize = $.effects.effect.size = function( o, done ) {\n\n\t// Create element\n\tvar original, baseline, factor,\n\t\tel = $( this ),\n\t\tprops0 = [ \"position\", \"top\", \"bottom\", \"left\", \"right\", \"width\", \"height\", \"overflow\", \"opacity\" ],\n\n\t\t// Always restore\n\t\tprops1 = [ \"position\", \"top\", \"bottom\", \"left\", \"right\", \"overflow\", \"opacity\" ],\n\n\t\t// Copy for children\n\t\tprops2 = [ \"width\", \"height\", \"overflow\" ],\n\t\tcProps = [ \"fontSize\" ],\n\t\tvProps = [ \"borderTopWidth\", \"borderBottomWidth\", \"paddingTop\", \"paddingBottom\" ],\n\t\thProps = [ \"borderLeftWidth\", \"borderRightWidth\", \"paddingLeft\", \"paddingRight\" ],\n\n\t\t// Set options\n\t\tmode = $.effects.setMode( el, o.mode || \"effect\" ),\n\t\trestore = o.restore || mode !== \"effect\",\n\t\tscale = o.scale || \"both\",\n\t\torigin = o.origin || [ \"middle\", \"center\" ],\n\t\tposition = el.css( \"position\" ),\n\t\tprops = restore ? props0 : props1,\n\t\tzero = {\n\t\t\theight: 0,\n\t\t\twidth: 0,\n\t\t\touterHeight: 0,\n\t\t\touterWidth: 0\n\t\t};\n\n\tif ( mode === \"show\" ) {\n\t\tel.show();\n\t}\n\toriginal = {\n\t\theight: el.height(),\n\t\twidth: el.width(),\n\t\touterHeight: el.outerHeight(),\n\t\touterWidth: el.outerWidth()\n\t};\n\n\tif ( o.mode === \"toggle\" && mode === \"show\" ) {\n\t\tel.from = o.to || zero;\n\t\tel.to = o.from || original;\n\t} else {\n\t\tel.from = o.from || ( mode === \"show\" ? zero : original );\n\t\tel.to = o.to || ( mode === \"hide\" ? zero : original );\n\t}\n\n\t// Set scaling factor\n\tfactor = {\n\t\tfrom: {\n\t\t\ty: el.from.height / original.height,\n\t\t\tx: el.from.width / original.width\n\t\t},\n\t\tto: {\n\t\t\ty: el.to.height / original.height,\n\t\t\tx: el.to.width / original.width\n\t\t}\n\t};\n\n\t// Scale the css box\n\tif ( scale === \"box\" || scale === \"both\" ) {\n\n\t\t// Vertical props scaling\n\t\tif ( factor.from.y !== factor.to.y ) {\n\t\t\tprops = props.concat( vProps );\n\t\t\tel.from = $.effects.setTransition( el, vProps, factor.from.y, el.from );\n\t\t\tel.to = $.effects.setTransition( el, vProps, factor.to.y, el.to );\n\t\t}\n\n\t\t// Horizontal props scaling\n\t\tif ( factor.from.x !== factor.to.x ) {\n\t\t\tprops = props.concat( hProps );\n\t\t\tel.from = $.effects.setTransition( el, hProps, factor.from.x, el.from );\n\t\t\tel.to = $.effects.setTransition( el, hProps, factor.to.x, el.to );\n\t\t}\n\t}\n\n\t// Scale the content\n\tif ( scale === \"content\" || scale === \"both\" ) {\n\n\t\t// Vertical props scaling\n\t\tif ( factor.from.y !== factor.to.y ) {\n\t\t\tprops = props.concat( cProps ).concat( props2 );\n\t\t\tel.from = $.effects.setTransition( el, cProps, factor.from.y, el.from );\n\t\t\tel.to = $.effects.setTransition( el, cProps, factor.to.y, el.to );\n\t\t}\n\t}\n\n\t$.effects.save( el, props );\n\tel.show();\n\t$.effects.createWrapper( el );\n\tel.css( \"overflow\", \"hidden\" ).css( el.from );\n\n\t// Adjust\n\tif (origin) { // Calculate baseline shifts\n\t\tbaseline = $.effects.getBaseline( origin, original );\n\t\tel.from.top = ( original.outerHeight - el.outerHeight() ) * baseline.y;\n\t\tel.from.left = ( original.outerWidth - el.outerWidth() ) * baseline.x;\n\t\tel.to.top = ( original.outerHeight - el.to.outerHeight ) * baseline.y;\n\t\tel.to.left = ( original.outerWidth - el.to.outerWidth ) * baseline.x;\n\t}\n\tel.css( el.from ); // set top & left\n\n\t// Animate\n\tif ( scale === \"content\" || scale === \"both\" ) { // Scale the children\n\n\t\t// Add margins/font-size\n\t\tvProps = vProps.concat([ \"marginTop\", \"marginBottom\" ]).concat(cProps);\n\t\thProps = hProps.concat([ \"marginLeft\", \"marginRight\" ]);\n\t\tprops2 = props0.concat(vProps).concat(hProps);\n\n\t\tel.find( \"*[width]\" ).each( function() {\n\t\t\tvar child = $( this ),\n\t\t\t\tc_original = {\n\t\t\t\t\theight: child.height(),\n\t\t\t\t\twidth: child.width(),\n\t\t\t\t\touterHeight: child.outerHeight(),\n\t\t\t\t\touterWidth: child.outerWidth()\n\t\t\t\t};\n\t\t\tif (restore) {\n\t\t\t\t$.effects.save(child, props2);\n\t\t\t}\n\n\t\t\tchild.from = {\n\t\t\t\theight: c_original.height * factor.from.y,\n\t\t\t\twidth: c_original.width * factor.from.x,\n\t\t\t\touterHeight: c_original.outerHeight * factor.from.y,\n\t\t\t\touterWidth: c_original.outerWidth * factor.from.x\n\t\t\t};\n\t\t\tchild.to = {\n\t\t\t\theight: c_original.height * factor.to.y,\n\t\t\t\twidth: c_original.width * factor.to.x,\n\t\t\t\touterHeight: c_original.height * factor.to.y,\n\t\t\t\touterWidth: c_original.width * factor.to.x\n\t\t\t};\n\n\t\t\t// Vertical props scaling\n\t\t\tif ( factor.from.y !== factor.to.y ) {\n\t\t\t\tchild.from = $.effects.setTransition( child, vProps, factor.from.y, child.from );\n\t\t\t\tchild.to = $.effects.setTransition( child, vProps, factor.to.y, child.to );\n\t\t\t}\n\n\t\t\t// Horizontal props scaling\n\t\t\tif ( factor.from.x !== factor.to.x ) {\n\t\t\t\tchild.from = $.effects.setTransition( child, hProps, factor.from.x, child.from );\n\t\t\t\tchild.to = $.effects.setTransition( child, hProps, factor.to.x, child.to );\n\t\t\t}\n\n\t\t\t// Animate children\n\t\t\tchild.css( child.from );\n\t\t\tchild.animate( child.to, o.duration, o.easing, function() {\n\n\t\t\t\t// Restore children\n\t\t\t\tif ( restore ) {\n\t\t\t\t\t$.effects.restore( child, props2 );\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t}\n\n\t// Animate\n\tel.animate( el.to, {\n\t\tqueue: false,\n\t\tduration: o.duration,\n\t\teasing: o.easing,\n\t\tcomplete: function() {\n\t\t\tif ( el.to.opacity === 0 ) {\n\t\t\t\tel.css( \"opacity\", el.from.opacity );\n\t\t\t}\n\t\t\tif ( mode === \"hide\" ) {\n\t\t\t\tel.hide();\n\t\t\t}\n\t\t\t$.effects.restore( el, props );\n\t\t\tif ( !restore ) {\n\n\t\t\t\t// we need to calculate our new positioning based on the scaling\n\t\t\t\tif ( position === \"static\" ) {\n\t\t\t\t\tel.css({\n\t\t\t\t\t\tposition: \"relative\",\n\t\t\t\t\t\ttop: el.to.top,\n\t\t\t\t\t\tleft: el.to.left\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\t$.each([ \"top\", \"left\" ], function( idx, pos ) {\n\t\t\t\t\t\tel.css( pos, function( _, str ) {\n\t\t\t\t\t\t\tvar val = parseInt( str, 10 ),\n\t\t\t\t\t\t\t\ttoRef = idx ? el.to.left : el.to.top;\n\n\t\t\t\t\t\t\t// if original was \"auto\", recalculate the new value from wrapper\n\t\t\t\t\t\t\tif ( str === \"auto\" ) {\n\t\t\t\t\t\t\t\treturn toRef + \"px\";\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\treturn val + toRef + \"px\";\n\t\t\t\t\t\t});\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t$.effects.removeWrapper( el );\n\t\t\tdone();\n\t\t}\n\t});\n\n};\n\n\n/*!\n * jQuery UI Effects Scale 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/scale-effect/\n */\n\n\nvar effectScale = $.effects.effect.scale = function( o, done ) {\n\n\t// Create element\n\tvar el = $( this ),\n\t\toptions = $.extend( true, {}, o ),\n\t\tmode = $.effects.setMode( el, o.mode || \"effect\" ),\n\t\tpercent = parseInt( o.percent, 10 ) ||\n\t\t\t( parseInt( o.percent, 10 ) === 0 ? 0 : ( mode === \"hide\" ? 0 : 100 ) ),\n\t\tdirection = o.direction || \"both\",\n\t\torigin = o.origin,\n\t\toriginal = {\n\t\t\theight: el.height(),\n\t\t\twidth: el.width(),\n\t\t\touterHeight: el.outerHeight(),\n\t\t\touterWidth: el.outerWidth()\n\t\t},\n\t\tfactor = {\n\t\t\ty: direction !== \"horizontal\" ? (percent / 100) : 1,\n\t\t\tx: direction !== \"vertical\" ? (percent / 100) : 1\n\t\t};\n\n\t// We are going to pass this effect to the size effect:\n\toptions.effect = \"size\";\n\toptions.queue = false;\n\toptions.complete = done;\n\n\t// Set default origin and restore for show/hide\n\tif ( mode !== \"effect\" ) {\n\t\toptions.origin = origin || [ \"middle\", \"center\" ];\n\t\toptions.restore = true;\n\t}\n\n\toptions.from = o.from || ( mode === \"show\" ? {\n\t\theight: 0,\n\t\twidth: 0,\n\t\touterHeight: 0,\n\t\touterWidth: 0\n\t} : original );\n\toptions.to = {\n\t\theight: original.height * factor.y,\n\t\twidth: original.width * factor.x,\n\t\touterHeight: original.outerHeight * factor.y,\n\t\touterWidth: original.outerWidth * factor.x\n\t};\n\n\t// Fade option to support puff\n\tif ( options.fade ) {\n\t\tif ( mode === \"show\" ) {\n\t\t\toptions.from.opacity = 0;\n\t\t\toptions.to.opacity = 1;\n\t\t}\n\t\tif ( mode === \"hide\" ) {\n\t\t\toptions.from.opacity = 1;\n\t\t\toptions.to.opacity = 0;\n\t\t}\n\t}\n\n\t// Animate\n\tel.effect( options );\n\n};\n\n\n/*!\n * jQuery UI Effects Puff 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/puff-effect/\n */\n\n\nvar effectPuff = $.effects.effect.puff = function( o, done ) {\n\tvar elem = $( this ),\n\t\tmode = $.effects.setMode( elem, o.mode || \"hide\" ),\n\t\thide = mode === \"hide\",\n\t\tpercent = parseInt( o.percent, 10 ) || 150,\n\t\tfactor = percent / 100,\n\t\toriginal = {\n\t\t\theight: elem.height(),\n\t\t\twidth: elem.width(),\n\t\t\touterHeight: elem.outerHeight(),\n\t\t\touterWidth: elem.outerWidth()\n\t\t};\n\n\t$.extend( o, {\n\t\teffect: \"scale\",\n\t\tqueue: false,\n\t\tfade: true,\n\t\tmode: mode,\n\t\tcomplete: done,\n\t\tpercent: hide ? percent : 100,\n\t\tfrom: hide ?\n\t\t\toriginal :\n\t\t\t{\n\t\t\t\theight: original.height * factor,\n\t\t\t\twidth: original.width * factor,\n\t\t\t\touterHeight: original.outerHeight * factor,\n\t\t\t\touterWidth: original.outerWidth * factor\n\t\t\t}\n\t});\n\n\telem.effect( o );\n};\n\n\n/*!\n * jQuery UI Effects Pulsate 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/pulsate-effect/\n */\n\n\nvar effectPulsate = $.effects.effect.pulsate = function( o, done ) {\n\tvar elem = $( this ),\n\t\tmode = $.effects.setMode( elem, o.mode || \"show\" ),\n\t\tshow = mode === \"show\",\n\t\thide = mode === \"hide\",\n\t\tshowhide = ( show || mode === \"hide\" ),\n\n\t\t// showing or hiding leaves of the \"last\" animation\n\t\tanims = ( ( o.times || 5 ) * 2 ) + ( showhide ? 1 : 0 ),\n\t\tduration = o.duration / anims,\n\t\tanimateTo = 0,\n\t\tqueue = elem.queue(),\n\t\tqueuelen = queue.length,\n\t\ti;\n\n\tif ( show || !elem.is(\":visible\")) {\n\t\telem.css( \"opacity\", 0 ).show();\n\t\tanimateTo = 1;\n\t}\n\n\t// anims - 1 opacity \"toggles\"\n\tfor ( i = 1; i < anims; i++ ) {\n\t\telem.animate({\n\t\t\topacity: animateTo\n\t\t}, duration, o.easing );\n\t\tanimateTo = 1 - animateTo;\n\t}\n\n\telem.animate({\n\t\topacity: animateTo\n\t}, duration, o.easing);\n\n\telem.queue(function() {\n\t\tif ( hide ) {\n\t\t\telem.hide();\n\t\t}\n\t\tdone();\n\t});\n\n\t// We just queued up \"anims\" animations, we need to put them next in the queue\n\tif ( queuelen > 1 ) {\n\t\tqueue.splice.apply( queue,\n\t\t\t[ 1, 0 ].concat( queue.splice( queuelen, anims + 1 ) ) );\n\t}\n\telem.dequeue();\n};\n\n\n/*!\n * jQuery UI Effects Shake 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/shake-effect/\n */\n\n\nvar effectShake = $.effects.effect.shake = function( o, done ) {\n\n\tvar el = $( this ),\n\t\tprops = [ \"position\", \"top\", \"bottom\", \"left\", \"right\", \"height\", \"width\" ],\n\t\tmode = $.effects.setMode( el, o.mode || \"effect\" ),\n\t\tdirection = o.direction || \"left\",\n\t\tdistance = o.distance || 20,\n\t\ttimes = o.times || 3,\n\t\tanims = times * 2 + 1,\n\t\tspeed = Math.round( o.duration / anims ),\n\t\tref = (direction === \"up\" || direction === \"down\") ? \"top\" : \"left\",\n\t\tpositiveMotion = (direction === \"up\" || direction === \"left\"),\n\t\tanimation = {},\n\t\tanimation1 = {},\n\t\tanimation2 = {},\n\t\ti,\n\n\t\t// we will need to re-assemble the queue to stack our animations in place\n\t\tqueue = el.queue(),\n\t\tqueuelen = queue.length;\n\n\t$.effects.save( el, props );\n\tel.show();\n\t$.effects.createWrapper( el );\n\n\t// Animation\n\tanimation[ ref ] = ( positiveMotion ? \"-=\" : \"+=\" ) + distance;\n\tanimation1[ ref ] = ( positiveMotion ? \"+=\" : \"-=\" ) + distance * 2;\n\tanimation2[ ref ] = ( positiveMotion ? \"-=\" : \"+=\" ) + distance * 2;\n\n\t// Animate\n\tel.animate( animation, speed, o.easing );\n\n\t// Shakes\n\tfor ( i = 1; i < times; i++ ) {\n\t\tel.animate( animation1, speed, o.easing ).animate( animation2, speed, o.easing );\n\t}\n\tel\n\t\t.animate( animation1, speed, o.easing )\n\t\t.animate( animation, speed / 2, o.easing )\n\t\t.queue(function() {\n\t\t\tif ( mode === \"hide\" ) {\n\t\t\t\tel.hide();\n\t\t\t}\n\t\t\t$.effects.restore( el, props );\n\t\t\t$.effects.removeWrapper( el );\n\t\t\tdone();\n\t\t});\n\n\t// inject all the animations we just queued to be first in line (after \"inprogress\")\n\tif ( queuelen > 1) {\n\t\tqueue.splice.apply( queue,\n\t\t\t[ 1, 0 ].concat( queue.splice( queuelen, anims + 1 ) ) );\n\t}\n\tel.dequeue();\n\n};\n\n\n/*!\n * jQuery UI Effects Slide 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/slide-effect/\n */\n\n\nvar effectSlide = $.effects.effect.slide = function( o, done ) {\n\n\t// Create element\n\tvar el = $( this ),\n\t\tprops = [ \"position\", \"top\", \"bottom\", \"left\", \"right\", \"width\", \"height\" ],\n\t\tmode = $.effects.setMode( el, o.mode || \"show\" ),\n\t\tshow = mode === \"show\",\n\t\tdirection = o.direction || \"left\",\n\t\tref = (direction === \"up\" || direction === \"down\") ? \"top\" : \"left\",\n\t\tpositiveMotion = (direction === \"up\" || direction === \"left\"),\n\t\tdistance,\n\t\tanimation = {};\n\n\t// Adjust\n\t$.effects.save( el, props );\n\tel.show();\n\tdistance = o.distance || el[ ref === \"top\" ? \"outerHeight\" : \"outerWidth\" ]( true );\n\n\t$.effects.createWrapper( el ).css({\n\t\toverflow: \"hidden\"\n\t});\n\n\tif ( show ) {\n\t\tel.css( ref, positiveMotion ? (isNaN(distance) ? \"-\" + distance : -distance) : distance );\n\t}\n\n\t// Animation\n\tanimation[ ref ] = ( show ?\n\t\t( positiveMotion ? \"+=\" : \"-=\") :\n\t\t( positiveMotion ? \"-=\" : \"+=\")) +\n\t\tdistance;\n\n\t// Animate\n\tel.animate( animation, {\n\t\tqueue: false,\n\t\tduration: o.duration,\n\t\teasing: o.easing,\n\t\tcomplete: function() {\n\t\t\tif ( mode === \"hide\" ) {\n\t\t\t\tel.hide();\n\t\t\t}\n\t\t\t$.effects.restore( el, props );\n\t\t\t$.effects.removeWrapper( el );\n\t\t\tdone();\n\t\t}\n\t});\n};\n\n\n/*!\n * jQuery UI Effects Transfer 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/transfer-effect/\n */\n\n\nvar effectTransfer = $.effects.effect.transfer = function( o, done ) {\n\tvar elem = $( this ),\n\t\ttarget = $( o.to ),\n\t\ttargetFixed = target.css( \"position\" ) === \"fixed\",\n\t\tbody = $(\"body\"),\n\t\tfixTop = targetFixed ? body.scrollTop() : 0,\n\t\tfixLeft = targetFixed ? body.scrollLeft() : 0,\n\t\tendPosition = target.offset(),\n\t\tanimation = {\n\t\t\ttop: endPosition.top - fixTop,\n\t\t\tleft: endPosition.left - fixLeft,\n\t\t\theight: target.innerHeight(),\n\t\t\twidth: target.innerWidth()\n\t\t},\n\t\tstartPosition = elem.offset(),\n\t\ttransfer = $( \"<div class='ui-effects-transfer'></div>\" )\n\t\t\t.appendTo( document.body )\n\t\t\t.addClass( o.className )\n\t\t\t.css({\n\t\t\t\ttop: startPosition.top - fixTop,\n\t\t\t\tleft: startPosition.left - fixLeft,\n\t\t\t\theight: elem.innerHeight(),\n\t\t\t\twidth: elem.innerWidth(),\n\t\t\t\tposition: targetFixed ? \"fixed\" : \"absolute\"\n\t\t\t})\n\t\t\t.animate( animation, o.duration, o.easing, function() {\n\t\t\t\ttransfer.remove();\n\t\t\t\tdone();\n\t\t\t});\n};\n\n\n\n}));"
  },
  {
    "path": "docs/site_libs/jqueryui-1.11.4/jquery-ui.structure.css",
    "content": "/*!\n * jQuery UI CSS Framework 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/category/theming/\n */\n\n/* Layout helpers\n----------------------------------*/\n.ui-helper-hidden {\n\tdisplay: none;\n}\n.ui-helper-hidden-accessible {\n\tborder: 0;\n\tclip: rect(0 0 0 0);\n\theight: 1px;\n\tmargin: -1px;\n\toverflow: hidden;\n\tpadding: 0;\n\tposition: absolute;\n\twidth: 1px;\n}\n.ui-helper-reset {\n\tmargin: 0;\n\tpadding: 0;\n\tborder: 0;\n\toutline: 0;\n\tline-height: 1.3;\n\ttext-decoration: none;\n\tfont-size: 100%;\n\tlist-style: none;\n}\n.ui-helper-clearfix:before,\n.ui-helper-clearfix:after {\n\tcontent: \"\";\n\tdisplay: table;\n\tborder-collapse: collapse;\n}\n.ui-helper-clearfix:after {\n\tclear: both;\n}\n.ui-helper-clearfix {\n\tmin-height: 0; /* support: IE7 */\n}\n.ui-helper-zfix {\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tleft: 0;\n\tposition: absolute;\n\topacity: 0;\n\tfilter:Alpha(Opacity=0); /* support: IE8 */\n}\n\n.ui-front {\n\tz-index: 100;\n}\n\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-disabled {\n\tcursor: default !important;\n}\n\n\n/* Icons\n----------------------------------*/\n\n/* states and images */\n.ui-icon {\n\tdisplay: block;\n\ttext-indent: -99999px;\n\toverflow: hidden;\n\tbackground-repeat: no-repeat;\n}\n\n\n/* Misc visuals\n----------------------------------*/\n\n/* Overlays */\n.ui-widget-overlay {\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n}\n.ui-draggable-handle {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n.ui-resizable {\n\tposition: relative;\n}\n.ui-resizable-handle {\n\tposition: absolute;\n\tfont-size: 0.1px;\n\tdisplay: block;\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n.ui-resizable-disabled .ui-resizable-handle,\n.ui-resizable-autohide .ui-resizable-handle {\n\tdisplay: none;\n}\n.ui-resizable-n {\n\tcursor: n-resize;\n\theight: 7px;\n\twidth: 100%;\n\ttop: -5px;\n\tleft: 0;\n}\n.ui-resizable-s {\n\tcursor: s-resize;\n\theight: 7px;\n\twidth: 100%;\n\tbottom: -5px;\n\tleft: 0;\n}\n.ui-resizable-e {\n\tcursor: e-resize;\n\twidth: 7px;\n\tright: -5px;\n\ttop: 0;\n\theight: 100%;\n}\n.ui-resizable-w {\n\tcursor: w-resize;\n\twidth: 7px;\n\tleft: -5px;\n\ttop: 0;\n\theight: 100%;\n}\n.ui-resizable-se {\n\tcursor: se-resize;\n\twidth: 12px;\n\theight: 12px;\n\tright: 1px;\n\tbottom: 1px;\n}\n.ui-resizable-sw {\n\tcursor: sw-resize;\n\twidth: 9px;\n\theight: 9px;\n\tleft: -5px;\n\tbottom: -5px;\n}\n.ui-resizable-nw {\n\tcursor: nw-resize;\n\twidth: 9px;\n\theight: 9px;\n\tleft: -5px;\n\ttop: -5px;\n}\n.ui-resizable-ne {\n\tcursor: ne-resize;\n\twidth: 9px;\n\theight: 9px;\n\tright: -5px;\n\ttop: -5px;\n}\n.ui-selectable {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n.ui-selectable-helper {\n\tposition: absolute;\n\tz-index: 100;\n\tborder: 1px dotted black;\n}\n.ui-sortable-handle {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n.ui-accordion .ui-accordion-header {\n\tdisplay: block;\n\tcursor: pointer;\n\tposition: relative;\n\tmargin: 2px 0 0 0;\n\tpadding: .5em .5em .5em .7em;\n\tmin-height: 0; /* support: IE7 */\n\tfont-size: 100%;\n}\n.ui-accordion .ui-accordion-icons {\n\tpadding-left: 2.2em;\n}\n.ui-accordion .ui-accordion-icons .ui-accordion-icons {\n\tpadding-left: 2.2em;\n}\n.ui-accordion .ui-accordion-header .ui-accordion-header-icon {\n\tposition: absolute;\n\tleft: .5em;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n.ui-accordion .ui-accordion-content {\n\tpadding: 1em 2.2em;\n\tborder-top: 0;\n\toverflow: auto;\n}\n.ui-autocomplete {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tcursor: default;\n}\n.ui-button {\n\tdisplay: inline-block;\n\tposition: relative;\n\tpadding: 0;\n\tline-height: normal;\n\tmargin-right: .1em;\n\tcursor: pointer;\n\tvertical-align: middle;\n\ttext-align: center;\n\toverflow: visible; /* removes extra width in IE */\n}\n.ui-button,\n.ui-button:link,\n.ui-button:visited,\n.ui-button:hover,\n.ui-button:active {\n\ttext-decoration: none;\n}\n/* to make room for the icon, a width needs to be set here */\n.ui-button-icon-only {\n\twidth: 2.2em;\n}\n/* button elements seem to need a little more width */\nbutton.ui-button-icon-only {\n\twidth: 2.4em;\n}\n.ui-button-icons-only {\n\twidth: 3.4em;\n}\nbutton.ui-button-icons-only {\n\twidth: 3.7em;\n}\n\n/* button text element */\n.ui-button .ui-button-text {\n\tdisplay: block;\n\tline-height: normal;\n}\n.ui-button-text-only .ui-button-text {\n\tpadding: .4em 1em;\n}\n.ui-button-icon-only .ui-button-text,\n.ui-button-icons-only .ui-button-text {\n\tpadding: .4em;\n\ttext-indent: -9999999px;\n}\n.ui-button-text-icon-primary .ui-button-text,\n.ui-button-text-icons .ui-button-text {\n\tpadding: .4em 1em .4em 2.1em;\n}\n.ui-button-text-icon-secondary .ui-button-text,\n.ui-button-text-icons .ui-button-text {\n\tpadding: .4em 2.1em .4em 1em;\n}\n.ui-button-text-icons .ui-button-text {\n\tpadding-left: 2.1em;\n\tpadding-right: 2.1em;\n}\n/* no icon support for input elements, provide padding by default */\ninput.ui-button {\n\tpadding: .4em 1em;\n}\n\n/* button icon element(s) */\n.ui-button-icon-only .ui-icon,\n.ui-button-text-icon-primary .ui-icon,\n.ui-button-text-icon-secondary .ui-icon,\n.ui-button-text-icons .ui-icon,\n.ui-button-icons-only .ui-icon {\n\tposition: absolute;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n.ui-button-icon-only .ui-icon {\n\tleft: 50%;\n\tmargin-left: -8px;\n}\n.ui-button-text-icon-primary .ui-button-icon-primary,\n.ui-button-text-icons .ui-button-icon-primary,\n.ui-button-icons-only .ui-button-icon-primary {\n\tleft: .5em;\n}\n.ui-button-text-icon-secondary .ui-button-icon-secondary,\n.ui-button-text-icons .ui-button-icon-secondary,\n.ui-button-icons-only .ui-button-icon-secondary {\n\tright: .5em;\n}\n\n/* button sets */\n.ui-buttonset {\n\tmargin-right: 7px;\n}\n.ui-buttonset .ui-button {\n\tmargin-left: 0;\n\tmargin-right: -.3em;\n}\n\n/* workarounds */\n/* reset extra padding in Firefox, see h5bp.com/l */\ninput.ui-button::-moz-focus-inner,\nbutton.ui-button::-moz-focus-inner {\n\tborder: 0;\n\tpadding: 0;\n}\n.ui-dialog {\n\toverflow: hidden;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tpadding: .2em;\n\toutline: 0;\n}\n.ui-dialog .ui-dialog-titlebar {\n\tpadding: .4em 1em;\n\tposition: relative;\n}\n.ui-dialog .ui-dialog-title {\n\tfloat: left;\n\tmargin: .1em 0;\n\twhite-space: nowrap;\n\twidth: 90%;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n}\n.ui-dialog .ui-dialog-titlebar-close {\n\tposition: absolute;\n\tright: .3em;\n\ttop: 50%;\n\twidth: 20px;\n\tmargin: -10px 0 0 0;\n\tpadding: 1px;\n\theight: 20px;\n}\n.ui-dialog .ui-dialog-content {\n\tposition: relative;\n\tborder: 0;\n\tpadding: .5em 1em;\n\tbackground: none;\n\toverflow: auto;\n}\n.ui-dialog .ui-dialog-buttonpane {\n\ttext-align: left;\n\tborder-width: 1px 0 0 0;\n\tbackground-image: none;\n\tmargin-top: .5em;\n\tpadding: .3em 1em .5em .4em;\n}\n.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {\n\tfloat: right;\n}\n.ui-dialog .ui-dialog-buttonpane button {\n\tmargin: .5em .4em .5em 0;\n\tcursor: pointer;\n}\n.ui-dialog .ui-resizable-se {\n\twidth: 12px;\n\theight: 12px;\n\tright: -5px;\n\tbottom: -5px;\n\tbackground-position: 16px 16px;\n}\n.ui-draggable .ui-dialog-titlebar {\n\tcursor: move;\n}\n.ui-menu {\n\tlist-style: none;\n\tpadding: 0;\n\tmargin: 0;\n\tdisplay: block;\n\toutline: none;\n}\n.ui-menu .ui-menu {\n\tposition: absolute;\n}\n.ui-menu .ui-menu-item {\n\tposition: relative;\n\tmargin: 0;\n\tpadding: 3px 1em 3px .4em;\n\tcursor: pointer;\n\tmin-height: 0; /* support: IE7 */\n\t/* support: IE10, see #8844 */\n\tlist-style-image: url(\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\");\n}\n.ui-menu .ui-menu-divider {\n\tmargin: 5px 0;\n\theight: 0;\n\tfont-size: 0;\n\tline-height: 0;\n\tborder-width: 1px 0 0 0;\n}\n.ui-menu .ui-state-focus,\n.ui-menu .ui-state-active {\n\tmargin: -1px;\n}\n\n/* icon support */\n.ui-menu-icons {\n\tposition: relative;\n}\n.ui-menu-icons .ui-menu-item {\n\tpadding-left: 2em;\n}\n\n/* left-aligned */\n.ui-menu .ui-icon {\n\tposition: absolute;\n\ttop: 0;\n\tbottom: 0;\n\tleft: .2em;\n\tmargin: auto 0;\n}\n\n/* right-aligned */\n.ui-menu .ui-menu-icon {\n\tleft: auto;\n\tright: 0;\n}\n.ui-progressbar {\n\theight: 2em;\n\ttext-align: left;\n\toverflow: hidden;\n}\n.ui-progressbar .ui-progressbar-value {\n\tmargin: -1px;\n\theight: 100%;\n}\n.ui-progressbar .ui-progressbar-overlay {\n\tbackground: url(\"data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==\");\n\theight: 100%;\n\tfilter: alpha(opacity=25); /* support: IE8 */\n\topacity: 0.25;\n}\n.ui-progressbar-indeterminate .ui-progressbar-value {\n\tbackground-image: none;\n}\n.ui-selectmenu-menu {\n\tpadding: 0;\n\tmargin: 0;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tdisplay: none;\n}\n.ui-selectmenu-menu .ui-menu {\n\toverflow: auto;\n\t/* Support: IE7 */\n\toverflow-x: hidden;\n\tpadding-bottom: 1px;\n}\n.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {\n\tfont-size: 1em;\n\tfont-weight: bold;\n\tline-height: 1.5;\n\tpadding: 2px 0.4em;\n\tmargin: 0.5em 0 0 0;\n\theight: auto;\n\tborder: 0;\n}\n.ui-selectmenu-open {\n\tdisplay: block;\n}\n.ui-selectmenu-button {\n\tdisplay: inline-block;\n\toverflow: hidden;\n\tposition: relative;\n\ttext-decoration: none;\n\tcursor: pointer;\n}\n.ui-selectmenu-button span.ui-icon {\n\tright: 0.5em;\n\tleft: auto;\n\tmargin-top: -8px;\n\tposition: absolute;\n\ttop: 50%;\n}\n.ui-selectmenu-button span.ui-selectmenu-text {\n\ttext-align: left;\n\tpadding: 0.4em 2.1em 0.4em 1em;\n\tdisplay: block;\n\tline-height: 1.4;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n\twhite-space: nowrap;\n}\n.ui-slider {\n\tposition: relative;\n\ttext-align: left;\n}\n.ui-slider .ui-slider-handle {\n\tposition: absolute;\n\tz-index: 2;\n\twidth: 1.2em;\n\theight: 1.2em;\n\tcursor: default;\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n.ui-slider .ui-slider-range {\n\tposition: absolute;\n\tz-index: 1;\n\tfont-size: .7em;\n\tdisplay: block;\n\tborder: 0;\n\tbackground-position: 0 0;\n}\n\n/* support: IE8 - See #6727 */\n.ui-slider.ui-state-disabled .ui-slider-handle,\n.ui-slider.ui-state-disabled .ui-slider-range {\n\tfilter: inherit;\n}\n\n.ui-slider-horizontal {\n\theight: .8em;\n}\n.ui-slider-horizontal .ui-slider-handle {\n\ttop: -.3em;\n\tmargin-left: -.6em;\n}\n.ui-slider-horizontal .ui-slider-range {\n\ttop: 0;\n\theight: 100%;\n}\n.ui-slider-horizontal .ui-slider-range-min {\n\tleft: 0;\n}\n.ui-slider-horizontal .ui-slider-range-max {\n\tright: 0;\n}\n\n.ui-slider-vertical {\n\twidth: .8em;\n\theight: 100px;\n}\n.ui-slider-vertical .ui-slider-handle {\n\tleft: -.3em;\n\tmargin-left: 0;\n\tmargin-bottom: -.6em;\n}\n.ui-slider-vertical .ui-slider-range {\n\tleft: 0;\n\twidth: 100%;\n}\n.ui-slider-vertical .ui-slider-range-min {\n\tbottom: 0;\n}\n.ui-slider-vertical .ui-slider-range-max {\n\ttop: 0;\n}\n.ui-spinner {\n\tposition: relative;\n\tdisplay: inline-block;\n\toverflow: hidden;\n\tpadding: 0;\n\tvertical-align: middle;\n}\n.ui-spinner-input {\n\tborder: none;\n\tbackground: none;\n\tcolor: inherit;\n\tpadding: 0;\n\tmargin: .2em 0;\n\tvertical-align: middle;\n\tmargin-left: .4em;\n\tmargin-right: 22px;\n}\n.ui-spinner-button {\n\twidth: 16px;\n\theight: 50%;\n\tfont-size: .5em;\n\tpadding: 0;\n\tmargin: 0;\n\ttext-align: center;\n\tposition: absolute;\n\tcursor: default;\n\tdisplay: block;\n\toverflow: hidden;\n\tright: 0;\n}\n/* more specificity required here to override default borders */\n.ui-spinner a.ui-spinner-button {\n\tborder-top: none;\n\tborder-bottom: none;\n\tborder-right: none;\n}\n/* vertically center icon */\n.ui-spinner .ui-icon {\n\tposition: absolute;\n\tmargin-top: -8px;\n\ttop: 50%;\n\tleft: 0;\n}\n.ui-spinner-up {\n\ttop: 0;\n}\n.ui-spinner-down {\n\tbottom: 0;\n}\n\n/* TR overrides */\n.ui-spinner .ui-icon-triangle-1-s {\n\t/* need to fix icons sprite */\n\tbackground-position: -65px -16px;\n}\n.ui-tabs {\n\tposition: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as \"fixed\") */\n\tpadding: .2em;\n}\n.ui-tabs .ui-tabs-nav {\n\tmargin: 0;\n\tpadding: .2em .2em 0;\n}\n.ui-tabs .ui-tabs-nav li {\n\tlist-style: none;\n\tfloat: left;\n\tposition: relative;\n\ttop: 0;\n\tmargin: 1px .2em 0 0;\n\tborder-bottom-width: 0;\n\tpadding: 0;\n\twhite-space: nowrap;\n}\n.ui-tabs .ui-tabs-nav .ui-tabs-anchor {\n\tfloat: left;\n\tpadding: .5em 1em;\n\ttext-decoration: none;\n}\n.ui-tabs .ui-tabs-nav li.ui-tabs-active {\n\tmargin-bottom: -1px;\n\tpadding-bottom: 1px;\n}\n.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,\n.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,\n.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {\n\tcursor: text;\n}\n.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {\n\tcursor: pointer;\n}\n.ui-tabs .ui-tabs-panel {\n\tdisplay: block;\n\tborder-width: 0;\n\tpadding: 1em 1.4em;\n\tbackground: none;\n}\n.ui-tooltip {\n\tpadding: 8px;\n\tposition: absolute;\n\tz-index: 9999;\n\tmax-width: 300px;\n\t-webkit-box-shadow: 0 0 5px #aaa;\n\tbox-shadow: 0 0 5px #aaa;\n}\nbody .ui-tooltip {\n\tborder-width: 2px;\n}\n"
  },
  {
    "path": "docs/site_libs/jqueryui-1.11.4/jquery-ui.theme.css",
    "content": "/*!\n * jQuery UI CSS Framework 1.11.4\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * http://api.jqueryui.com/category/theming/\n *\n * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px\n */\n\n\n/* Component containers\n----------------------------------*/\n.ui-widget {\n\tfont-family: Arial,Helvetica,sans-serif;\n\tfont-size: 1em;\n}\n.ui-widget .ui-widget {\n\tfont-size: 1em;\n}\n.ui-widget input,\n.ui-widget select,\n.ui-widget textarea,\n.ui-widget button {\n\tfont-family: Arial,Helvetica,sans-serif;\n\tfont-size: 1em;\n}\n.ui-widget-content {\n\tborder: 1px solid #dddddd;\n\tbackground: #ffffff;\n\tcolor: #333333;\n}\n.ui-widget-content a {\n\tcolor: #333333;\n}\n.ui-widget-header {\n\tborder: 1px solid #dddddd;\n\tbackground: #e9e9e9;\n\tcolor: #333333;\n\tfont-weight: bold;\n}\n.ui-widget-header a {\n\tcolor: #333333;\n}\n\n/* Interaction states\n----------------------------------*/\n.ui-state-default,\n.ui-widget-content .ui-state-default,\n.ui-widget-header .ui-state-default {\n\tborder: 1px solid #c5c5c5;\n\tbackground: #f6f6f6;\n\tfont-weight: normal;\n\tcolor: #454545;\n}\n.ui-state-default a,\n.ui-state-default a:link,\n.ui-state-default a:visited {\n\tcolor: #454545;\n\ttext-decoration: none;\n}\n.ui-state-hover,\n.ui-widget-content .ui-state-hover,\n.ui-widget-header .ui-state-hover,\n.ui-state-focus,\n.ui-widget-content .ui-state-focus,\n.ui-widget-header .ui-state-focus {\n\tborder: 1px solid #cccccc;\n\tbackground: #ededed;\n\tfont-weight: normal;\n\tcolor: #2b2b2b;\n}\n.ui-state-hover a,\n.ui-state-hover a:hover,\n.ui-state-hover a:link,\n.ui-state-hover a:visited,\n.ui-state-focus a,\n.ui-state-focus a:hover,\n.ui-state-focus a:link,\n.ui-state-focus a:visited {\n\tcolor: #2b2b2b;\n\ttext-decoration: none;\n}\n.ui-state-active,\n.ui-widget-content .ui-state-active,\n.ui-widget-header .ui-state-active {\n\tborder: 1px solid #003eff;\n\tbackground: #007fff;\n\tfont-weight: normal;\n\tcolor: #ffffff;\n}\n.ui-state-active a,\n.ui-state-active a:link,\n.ui-state-active a:visited {\n\tcolor: #ffffff;\n\ttext-decoration: none;\n}\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-highlight,\n.ui-widget-content .ui-state-highlight,\n.ui-widget-header .ui-state-highlight {\n\tborder: 1px solid #dad55e;\n\tbackground: #fffa90;\n\tcolor: #777620;\n}\n.ui-state-highlight a,\n.ui-widget-content .ui-state-highlight a,\n.ui-widget-header .ui-state-highlight a {\n\tcolor: #777620;\n}\n.ui-state-error,\n.ui-widget-content .ui-state-error,\n.ui-widget-header .ui-state-error {\n\tborder: 1px solid #f1a899;\n\tbackground: #fddfdf;\n\tcolor: #5f3f3f;\n}\n.ui-state-error a,\n.ui-widget-content .ui-state-error a,\n.ui-widget-header .ui-state-error a {\n\tcolor: #5f3f3f;\n}\n.ui-state-error-text,\n.ui-widget-content .ui-state-error-text,\n.ui-widget-header .ui-state-error-text {\n\tcolor: #5f3f3f;\n}\n.ui-priority-primary,\n.ui-widget-content .ui-priority-primary,\n.ui-widget-header .ui-priority-primary {\n\tfont-weight: bold;\n}\n.ui-priority-secondary,\n.ui-widget-content .ui-priority-secondary,\n.ui-widget-header .ui-priority-secondary {\n\topacity: .7;\n\tfilter:Alpha(Opacity=70); /* support: IE8 */\n\tfont-weight: normal;\n}\n.ui-state-disabled,\n.ui-widget-content .ui-state-disabled,\n.ui-widget-header .ui-state-disabled {\n\topacity: .35;\n\tfilter:Alpha(Opacity=35); /* support: IE8 */\n\tbackground-image: none;\n}\n.ui-state-disabled .ui-icon {\n\tfilter:Alpha(Opacity=35); /* support: IE8 - See #6059 */\n}\n\n/* Icons\n----------------------------------*/\n\n/* states and images */\n.ui-icon {\n\twidth: 16px;\n\theight: 16px;\n}\n.ui-icon,\n.ui-widget-content .ui-icon {\n\tbackground-image: url(\"images/ui-icons_444444_256x240.png\");\n}\n.ui-widget-header .ui-icon {\n\tbackground-image: url(\"images/ui-icons_444444_256x240.png\");\n}\n.ui-state-default .ui-icon {\n\tbackground-image: url(\"images/ui-icons_777777_256x240.png\");\n}\n.ui-state-hover .ui-icon,\n.ui-state-focus .ui-icon {\n\tbackground-image: url(\"images/ui-icons_555555_256x240.png\");\n}\n.ui-state-active .ui-icon {\n\tbackground-image: url(\"images/ui-icons_ffffff_256x240.png\");\n}\n.ui-state-highlight .ui-icon {\n\tbackground-image: url(\"images/ui-icons_777620_256x240.png\");\n}\n.ui-state-error .ui-icon,\n.ui-state-error-text .ui-icon {\n\tbackground-image: url(\"images/ui-icons_cc0000_256x240.png\");\n}\n\n/* positioning */\n.ui-icon-blank { background-position: 16px 16px; }\n.ui-icon-carat-1-n { background-position: 0 0; }\n.ui-icon-carat-1-ne { background-position: -16px 0; }\n.ui-icon-carat-1-e { background-position: -32px 0; }\n.ui-icon-carat-1-se { background-position: -48px 0; }\n.ui-icon-carat-1-s { background-position: -64px 0; }\n.ui-icon-carat-1-sw { background-position: -80px 0; }\n.ui-icon-carat-1-w { background-position: -96px 0; }\n.ui-icon-carat-1-nw { background-position: -112px 0; }\n.ui-icon-carat-2-n-s { background-position: -128px 0; }\n.ui-icon-carat-2-e-w { background-position: -144px 0; }\n.ui-icon-triangle-1-n { background-position: 0 -16px; }\n.ui-icon-triangle-1-ne { background-position: -16px -16px; }\n.ui-icon-triangle-1-e { background-position: -32px -16px; }\n.ui-icon-triangle-1-se { background-position: -48px -16px; }\n.ui-icon-triangle-1-s { background-position: -64px -16px; }\n.ui-icon-triangle-1-sw { background-position: -80px -16px; }\n.ui-icon-triangle-1-w { background-position: -96px -16px; }\n.ui-icon-triangle-1-nw { background-position: -112px -16px; }\n.ui-icon-triangle-2-n-s { background-position: -128px -16px; }\n.ui-icon-triangle-2-e-w { background-position: -144px -16px; }\n.ui-icon-arrow-1-n { background-position: 0 -32px; }\n.ui-icon-arrow-1-ne { background-position: -16px -32px; }\n.ui-icon-arrow-1-e { background-position: -32px -32px; }\n.ui-icon-arrow-1-se { background-position: -48px -32px; }\n.ui-icon-arrow-1-s { background-position: -64px -32px; }\n.ui-icon-arrow-1-sw { background-position: -80px -32px; }\n.ui-icon-arrow-1-w { background-position: -96px -32px; }\n.ui-icon-arrow-1-nw { background-position: -112px -32px; }\n.ui-icon-arrow-2-n-s { background-position: -128px -32px; }\n.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }\n.ui-icon-arrow-2-e-w { background-position: -160px -32px; }\n.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }\n.ui-icon-arrowstop-1-n { background-position: -192px -32px; }\n.ui-icon-arrowstop-1-e { background-position: -208px -32px; }\n.ui-icon-arrowstop-1-s { background-position: -224px -32px; }\n.ui-icon-arrowstop-1-w { background-position: -240px -32px; }\n.ui-icon-arrowthick-1-n { background-position: 0 -48px; }\n.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }\n.ui-icon-arrowthick-1-e { background-position: -32px -48px; }\n.ui-icon-arrowthick-1-se { background-position: -48px -48px; }\n.ui-icon-arrowthick-1-s { background-position: -64px -48px; }\n.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }\n.ui-icon-arrowthick-1-w { background-position: -96px -48px; }\n.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }\n.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }\n.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }\n.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }\n.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }\n.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }\n.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }\n.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }\n.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }\n.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }\n.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }\n.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }\n.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }\n.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }\n.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }\n.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }\n.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }\n.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }\n.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }\n.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }\n.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }\n.ui-icon-arrow-4 { background-position: 0 -80px; }\n.ui-icon-arrow-4-diag { background-position: -16px -80px; }\n.ui-icon-extlink { background-position: -32px -80px; }\n.ui-icon-newwin { background-position: -48px -80px; }\n.ui-icon-refresh { background-position: -64px -80px; }\n.ui-icon-shuffle { background-position: -80px -80px; }\n.ui-icon-transfer-e-w { background-position: -96px -80px; }\n.ui-icon-transferthick-e-w { background-position: -112px -80px; }\n.ui-icon-folder-collapsed { background-position: 0 -96px; }\n.ui-icon-folder-open { background-position: -16px -96px; }\n.ui-icon-document { background-position: -32px -96px; }\n.ui-icon-document-b { background-position: -48px -96px; }\n.ui-icon-note { background-position: -64px -96px; }\n.ui-icon-mail-closed { background-position: -80px -96px; }\n.ui-icon-mail-open { background-position: -96px -96px; }\n.ui-icon-suitcase { background-position: -112px -96px; }\n.ui-icon-comment { background-position: -128px -96px; }\n.ui-icon-person { background-position: -144px -96px; }\n.ui-icon-print { background-position: -160px -96px; }\n.ui-icon-trash { background-position: -176px -96px; }\n.ui-icon-locked { background-position: -192px -96px; }\n.ui-icon-unlocked { background-position: -208px -96px; }\n.ui-icon-bookmark { background-position: -224px -96px; }\n.ui-icon-tag { background-position: -240px -96px; }\n.ui-icon-home { background-position: 0 -112px; }\n.ui-icon-flag { background-position: -16px -112px; }\n.ui-icon-calendar { background-position: -32px -112px; }\n.ui-icon-cart { background-position: -48px -112px; }\n.ui-icon-pencil { background-position: -64px -112px; }\n.ui-icon-clock { background-position: -80px -112px; }\n.ui-icon-disk { background-position: -96px -112px; }\n.ui-icon-calculator { background-position: -112px -112px; }\n.ui-icon-zoomin { background-position: -128px -112px; }\n.ui-icon-zoomout { background-position: -144px -112px; }\n.ui-icon-search { background-position: -160px -112px; }\n.ui-icon-wrench { background-position: -176px -112px; }\n.ui-icon-gear { background-position: -192px -112px; }\n.ui-icon-heart { background-position: -208px -112px; }\n.ui-icon-star { background-position: -224px -112px; }\n.ui-icon-link { background-position: -240px -112px; }\n.ui-icon-cancel { background-position: 0 -128px; }\n.ui-icon-plus { background-position: -16px -128px; }\n.ui-icon-plusthick { background-position: -32px -128px; }\n.ui-icon-minus { background-position: -48px -128px; }\n.ui-icon-minusthick { background-position: -64px -128px; }\n.ui-icon-close { background-position: -80px -128px; }\n.ui-icon-closethick { background-position: -96px -128px; }\n.ui-icon-key { background-position: -112px -128px; }\n.ui-icon-lightbulb { background-position: -128px -128px; }\n.ui-icon-scissors { background-position: -144px -128px; }\n.ui-icon-clipboard { background-position: -160px -128px; }\n.ui-icon-copy { background-position: -176px -128px; }\n.ui-icon-contact { background-position: -192px -128px; }\n.ui-icon-image { background-position: -208px -128px; }\n.ui-icon-video { background-position: -224px -128px; }\n.ui-icon-script { background-position: -240px -128px; }\n.ui-icon-alert { background-position: 0 -144px; }\n.ui-icon-info { background-position: -16px -144px; }\n.ui-icon-notice { background-position: -32px -144px; }\n.ui-icon-help { background-position: -48px -144px; }\n.ui-icon-check { background-position: -64px -144px; }\n.ui-icon-bullet { background-position: -80px -144px; }\n.ui-icon-radio-on { background-position: -96px -144px; }\n.ui-icon-radio-off { background-position: -112px -144px; }\n.ui-icon-pin-w { background-position: -128px -144px; }\n.ui-icon-pin-s { background-position: -144px -144px; }\n.ui-icon-play { background-position: 0 -160px; }\n.ui-icon-pause { background-position: -16px -160px; }\n.ui-icon-seek-next { background-position: -32px -160px; }\n.ui-icon-seek-prev { background-position: -48px -160px; }\n.ui-icon-seek-end { background-position: -64px -160px; }\n.ui-icon-seek-start { background-position: -80px -160px; }\n/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */\n.ui-icon-seek-first { background-position: -80px -160px; }\n.ui-icon-stop { background-position: -96px -160px; }\n.ui-icon-eject { background-position: -112px -160px; }\n.ui-icon-volume-off { background-position: -128px -160px; }\n.ui-icon-volume-on { background-position: -144px -160px; }\n.ui-icon-power { background-position: 0 -176px; }\n.ui-icon-signal-diag { background-position: -16px -176px; }\n.ui-icon-signal { background-position: -32px -176px; }\n.ui-icon-battery-0 { background-position: -48px -176px; }\n.ui-icon-battery-1 { background-position: -64px -176px; }\n.ui-icon-battery-2 { background-position: -80px -176px; }\n.ui-icon-battery-3 { background-position: -96px -176px; }\n.ui-icon-circle-plus { background-position: 0 -192px; }\n.ui-icon-circle-minus { background-position: -16px -192px; }\n.ui-icon-circle-close { background-position: -32px -192px; }\n.ui-icon-circle-triangle-e { background-position: -48px -192px; }\n.ui-icon-circle-triangle-s { background-position: -64px -192px; }\n.ui-icon-circle-triangle-w { background-position: -80px -192px; }\n.ui-icon-circle-triangle-n { background-position: -96px -192px; }\n.ui-icon-circle-arrow-e { background-position: -112px -192px; }\n.ui-icon-circle-arrow-s { background-position: -128px -192px; }\n.ui-icon-circle-arrow-w { background-position: -144px -192px; }\n.ui-icon-circle-arrow-n { background-position: -160px -192px; }\n.ui-icon-circle-zoomin { background-position: -176px -192px; }\n.ui-icon-circle-zoomout { background-position: -192px -192px; }\n.ui-icon-circle-check { background-position: -208px -192px; }\n.ui-icon-circlesmall-plus { background-position: 0 -208px; }\n.ui-icon-circlesmall-minus { background-position: -16px -208px; }\n.ui-icon-circlesmall-close { background-position: -32px -208px; }\n.ui-icon-squaresmall-plus { background-position: -48px -208px; }\n.ui-icon-squaresmall-minus { background-position: -64px -208px; }\n.ui-icon-squaresmall-close { background-position: -80px -208px; }\n.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }\n.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }\n.ui-icon-grip-solid-vertical { background-position: -32px -224px; }\n.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }\n.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }\n.ui-icon-grip-diagonal-se { background-position: -80px -224px; }\n\n\n/* Misc visuals\n----------------------------------*/\n\n/* Corner radius */\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-left,\n.ui-corner-tl {\n\tborder-top-left-radius: 3px;\n}\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-right,\n.ui-corner-tr {\n\tborder-top-right-radius: 3px;\n}\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-left,\n.ui-corner-bl {\n\tborder-bottom-left-radius: 3px;\n}\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-right,\n.ui-corner-br {\n\tborder-bottom-right-radius: 3px;\n}\n\n/* Overlays */\n.ui-widget-overlay {\n\tbackground: #aaaaaa;\n\topacity: .3;\n\tfilter: Alpha(Opacity=30); /* support: IE8 */\n}\n.ui-widget-shadow {\n\tmargin: 0px 0 0 0px;\n\tpadding: 5px;\n\tbackground: #666666;\n\topacity: .3;\n\tfilter: Alpha(Opacity=30); /* support: IE8 */\n\tborder-radius: 8px;\n}\n"
  },
  {
    "path": "docs/site_libs/navigation-1.1/codefolding.js",
    "content": "\nwindow.initializeCodeFolding = function(show) {\n\n  // handlers for show-all and hide all\n  $(\"#rmd-show-all-code\").click(function() {\n    $('div.r-code-collapse').each(function() {\n      $(this).collapse('show');\n    });\n  });\n  $(\"#rmd-hide-all-code\").click(function() {\n    $('div.r-code-collapse').each(function() {\n      $(this).collapse('hide');\n    });\n  });\n\n  // index for unique code element ids\n  var currentIndex = 1;\n\n  // select all R code blocks\n  var rCodeBlocks = $('pre.r, pre.python, pre.bash, pre.sql, pre.cpp, pre.stan, pre.julia, pre.foldable');\n  rCodeBlocks.each(function() {\n\n    // create a collapsable div to wrap the code in\n    var div = $('<div class=\"collapse r-code-collapse\"></div>');\n    var showThis = (show || $(this).hasClass('fold-show')) && !$(this).hasClass('fold-hide');\n    var id = 'rcode-643E0F36' + currentIndex++;\n    div.attr('id', id);\n    $(this).before(div);\n    $(this).detach().appendTo(div);\n\n    // add a show code button right above\n    var showCodeText = $('<span>' + (showThis ? 'Hide' : 'Code') + '</span>');\n    var showCodeButton = $('<button type=\"button\" class=\"btn btn-default btn-xs btn-secondary btn-sm code-folding-btn pull-right float-right\"></button>');\n    showCodeButton.append(showCodeText);\n    showCodeButton\n        .attr('data-toggle', 'collapse')\n        .attr('data-bs-toggle', 'collapse') // BS5\n        .attr('data-target', '#' + id)\n        .attr('data-bs-target', '#' + id)   // BS5\n        .attr('aria-expanded', showThis)\n        .attr('aria-controls', id);\n\n    var buttonRow = $('<div class=\"row\"></div>');\n    var buttonCol = $('<div class=\"col-md-12\"></div>');\n\n    buttonCol.append(showCodeButton);\n    buttonRow.append(buttonCol);\n\n    div.before(buttonRow);\n\n    // show the div if necessary\n    if (showThis) div.collapse('show');\n\n    // update state of button on show/hide\n    //   * Change text\n    //   * add a class for intermediate states styling\n    div.on('hide.bs.collapse', function () {\n      showCodeText.text('Code');\n      showCodeButton.addClass('btn-collapsing');\n    });\n    div.on('hidden.bs.collapse', function () {\n      showCodeButton.removeClass('btn-collapsing');\n    });\n    div.on('show.bs.collapse', function () {\n      showCodeText.text('Hide');\n      showCodeButton.addClass('btn-expanding');\n    });\n    div.on('shown.bs.collapse', function () {\n      showCodeButton.removeClass('btn-expanding');\n    });\n\n  });\n\n}\n"
  },
  {
    "path": "docs/site_libs/navigation-1.1/sourceembed.js",
    "content": "\nwindow.initializeSourceEmbed = function(filename) {\n  $(\"#rmd-download-source\").click(function() {\n    var src = $(\"#rmd-source-code\").html();\n    var a = document.createElement('a');\n    a.href = \"data:text/x-r-markdown;base64,\" + src;\n    a.download = filename;\n    document.body.appendChild(a);\n    a.click();\n    document.body.removeChild(a);\n  });\n};\n"
  },
  {
    "path": "docs/site_libs/navigation-1.1/tabsets.js",
    "content": "\n\n/**\n * jQuery Plugin: Sticky Tabs\n *\n * @author Aidan Lister <aidan@php.net>\n * adapted by Ruben Arslan to activate parent tabs too\n * http://www.aidanlister.com/2014/03/persisting-the-tab-state-in-bootstrap/\n */\n(function($) {\n  \"use strict\";\n  $.fn.rmarkdownStickyTabs = function() {\n    var context = this;\n    // Show the tab corresponding with the hash in the URL, or the first tab\n    var showStuffFromHash = function() {\n      var hash = window.location.hash;\n      var selector = hash ? 'a[href=\"' + hash + '\"]' : 'li.active > a';\n      var $selector = $(selector, context);\n      if($selector.data('toggle') === \"tab\") {\n        $selector.tab('show');\n        // walk up the ancestors of this element, show any hidden tabs\n        $selector.parents('.section.tabset').each(function(i, elm) {\n          var link = $('a[href=\"#' + $(elm).attr('id') + '\"]');\n          if(link.data('toggle') === \"tab\") {\n            link.tab(\"show\");\n          }\n        });\n      }\n    };\n\n\n    // Set the correct tab when the page loads\n    showStuffFromHash(context);\n\n    // Set the correct tab when a user uses their back/forward button\n    $(window).on('hashchange', function() {\n      showStuffFromHash(context);\n    });\n\n    // Change the URL when tabs are clicked\n    $('a', context).on('click', function(e) {\n      history.pushState(null, null, this.href);\n      showStuffFromHash(context);\n    });\n\n    return this;\n  };\n}(jQuery));\n\nwindow.buildTabsets = function(tocID) {\n\n  // build a tabset from a section div with the .tabset class\n  function buildTabset(tabset) {\n\n    // check for fade and pills options\n    var fade = tabset.hasClass(\"tabset-fade\");\n    var pills = tabset.hasClass(\"tabset-pills\");\n    var navClass = pills ? \"nav-pills\" : \"nav-tabs\";\n\n    // determine the heading level of the tabset and tabs\n    var match = tabset.attr('class').match(/level(\\d) /);\n    if (match === null)\n      return;\n    var tabsetLevel = Number(match[1]);\n    var tabLevel = tabsetLevel + 1;\n\n    // find all subheadings immediately below\n    var tabs = tabset.find(\"div.section.level\" + tabLevel);\n    if (!tabs.length)\n      return;\n\n    // create tablist and tab-content elements\n    var tabList = $('<ul class=\"nav ' + navClass + '\" role=\"tablist\"></ul>');\n    $(tabs[0]).before(tabList);\n    var tabContent = $('<div class=\"tab-content\"></div>');\n    $(tabs[0]).before(tabContent);\n\n    // build the tabset\n    var activeTab = 0;\n    tabs.each(function(i) {\n\n      // get the tab div\n      var tab = $(tabs[i]);\n\n      // get the id then sanitize it for use with bootstrap tabs\n      var id = tab.attr('id');\n\n      // see if this is marked as the active tab\n      if (tab.hasClass('active'))\n        activeTab = i;\n\n      // remove any table of contents entries associated with\n      // this ID (since we'll be removing the heading element)\n      $(\"div#\" + tocID + \" li a[href='#\" + id + \"']\").parent().remove();\n\n      // sanitize the id for use with bootstrap tabs\n      id = id.replace(/[.\\/?&!#<>]/g, '').replace(/\\s/g, '_');\n      tab.attr('id', id);\n\n      // get the heading element within it, grab it's text, then remove it\n      var heading = tab.find('h' + tabLevel + ':first');\n      var headingText = heading.html();\n      heading.remove();\n\n      // build and append the tab list item\n      var a = $('<a role=\"tab\" data-toggle=\"tab\">' + headingText + '</a>');\n      a.attr('href', '#' + id);\n      a.attr('aria-controls', id);\n      var li = $('<li role=\"presentation\"></li>');\n      li.append(a);\n      tabList.append(li);\n\n      // set it's attributes\n      tab.attr('role', 'tabpanel');\n      tab.addClass('tab-pane');\n      tab.addClass('tabbed-pane');\n      if (fade)\n        tab.addClass('fade');\n\n      // move it into the tab content div\n      tab.detach().appendTo(tabContent);\n    });\n\n    // set active tab\n    $(tabList.children('li')[activeTab]).addClass('active');\n    var active = $(tabContent.children('div.section')[activeTab]);\n    active.addClass('active');\n    if (fade)\n      active.addClass('in');\n\n    if (tabset.hasClass(\"tabset-sticky\"))\n      tabset.rmarkdownStickyTabs();\n  }\n\n  // convert section divs with the .tabset class to tabsets\n  var tabsets = $(\"div.section.tabset\");\n  tabsets.each(function(i) {\n    buildTabset($(tabsets[i]));\n  });\n};\n\n"
  },
  {
    "path": "docs/site_libs/plotly-binding-4.10.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    // Plotly.relayout() mutates the plot input object, so make sure to \n    // keep a reference to the user-supplied width/height *before*\n    // we call Plotly.plot();\n    var lay = x.layout || {};\n    instance.width = lay.width;\n    instance.height = lay.height;\n    instance.autosize = lay.autosize || true;\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if ((x.selectize || x.highlight.dynamic) && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.newPlot(graphDiv, x);\n      instance.plotly = true;\n      \n    } else if (x.layout.transition) {\n      \n      var plot = Plotly.react(graphDiv, x);\n    \n    } else {\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.newPlot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n            if (typeof pt.pointNumber === \"number\") {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber];\n            } else if (Array.isArray(pt.pointNumber)) {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber[0]][pt.pointNumber[1]];\n            } else if (Array.isArray(pt.pointNumbers)) {\n              obj[attrsToAttach[i]] = pt.pointNumbers.map(function(idx) { return attr[idx]; });\n            }\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode && Shiny.setInputValue) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_sunburstclick: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "docs/site_libs/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "docs/site_libs/tocify-1.9.1/jquery.tocify.css",
    "content": "/*\n * jquery.tocify.css 1.9.1\n * Author: @gregfranko\n */\n\n/* The Table of Contents container element */\n.tocify {\n    width: 20%;\n    max-height: 90%;\n    overflow: auto;\n    margin-left: 2%;\n    position: fixed;\n    border: 1px solid #ccc;\n    border-radius: 6px;\n}\n\n/* The Table of Contents is composed of multiple nested unordered lists.  These styles remove the default styling of an unordered list because it is ugly. */\n.tocify ul, .tocify li {\n    list-style: none;\n    margin: 0;\n    padding: 0;\n    border: none;\n    line-height: 30px;\n}\n\n/* Top level header elements */\n.tocify-header {\n    text-indent: 10px;\n}\n\n/* Top level subheader elements.  These are the first nested items underneath a header element. */\n.tocify-subheader {\n    text-indent: 20px;\n    display: none;\n}\n\n/* Makes the font smaller for all subheader elements. */\n.tocify-subheader li {\n    font-size: 12px;\n}\n\n/* Further indents second level subheader elements. */\n.tocify-subheader .tocify-subheader {\n    text-indent: 30px;\n}\n.tocify-subheader .tocify-subheader .tocify-subheader {\n    text-indent: 40px;\n}\n.tocify-subheader .tocify-subheader .tocify-subheader .tocify-subheader {\n    text-indent: 50px;\n}\n.tocify-subheader .tocify-subheader .tocify-subheader .tocify-subheader .tocify-subheader {\n    text-indent: 60px;\n}\n\n/* Twitter Bootstrap Override Style */\n.tocify .tocify-item > a, .tocify .nav-list .nav-header {\n    margin: 0px;\n}\n\n/* Twitter Bootstrap Override Styles */\n.tocify .tocify-item a, .tocify .list-group-item {\n    padding: 5px;\n}\n\n.tocify .nav-pills > li {\n    float: none;\n}\n\n/* We don't override the bootstrap colors because this gives us the\n   wrong selection colors when using bootstrap themes\n\n.tocify .list-group-item:hover, .tocify .list-group-item:focus {\n    background-color: #f5f5f5;\n}\n\n.tocify .list-group-item.active:hover, .tocify .list-group-item.active:focus {\n    background-color: #428bca;\n}\n*/\n\n /* End Twitter Bootstrap Override Styles */\n"
  },
  {
    "path": "docs/site_libs/tocify-1.9.1/jquery.tocify.js",
    "content": "/* jquery Tocify - v1.9.1 - 2013-10-22\n * http://www.gregfranko.com/jquery.tocify.js/\n * Copyright (c) 2013 Greg Franko; Licensed MIT */\n\n// Immediately-Invoked Function Expression (IIFE) [Ben Alman Blog Post](http://benalman.com/news/2010/11/immediately-invoked-function-expression/) that calls another IIFE that contains all of the plugin logic.  I used this pattern so that anyone viewing this code would not have to scroll to the bottom of the page to view the local parameters that were passed to the main IIFE.\n(function(tocify) {\n\n    // ECMAScript 5 Strict Mode: [John Resig Blog Post](http://ejohn.org/blog/ecmascript-5-strict-mode-json-and-more/)\n    \"use strict\";\n\n    // Calls the second IIFE and locally passes in the global jQuery, window, and document objects\n    tocify(window.jQuery, window, document);\n\n  }\n\n  // Locally passes in `jQuery`, the `window` object, the `document` object, and an `undefined` variable.  The `jQuery`, `window` and `document` objects are passed in locally, to improve performance, since javascript first searches for a variable match within the local variables set before searching the global variables set.  All of the global variables are also passed in locally to be minifier friendly. `undefined` can be passed in locally, because it is not a reserved word in JavaScript.\n  (function($, window, document, undefined) {\n\n    // ECMAScript 5 Strict Mode: [John Resig Blog Post](http://ejohn.org/blog/ecmascript-5-strict-mode-json-and-more/)\n    \"use strict\";\n\n    var tocClassName = \"tocify\",\n      tocClass = \".\" + tocClassName,\n      tocFocusClassName = \"tocify-focus\",\n      tocHoverClassName = \"tocify-hover\",\n      hideTocClassName = \"tocify-hide\",\n      hideTocClass = \".\" + hideTocClassName,\n      headerClassName = \"tocify-header\",\n      headerClass = \".\" + headerClassName,\n      subheaderClassName = \"tocify-subheader\",\n      subheaderClass = \".\" + subheaderClassName,\n      itemClassName = \"tocify-item\",\n      itemClass = \".\" + itemClassName,\n      extendPageClassName = \"tocify-extend-page\",\n      extendPageClass = \".\" + extendPageClassName;\n\n    // Calling the jQueryUI Widget Factory Method\n    $.widget(\"toc.tocify\", {\n\n      //Plugin version\n      version: \"1.9.1\",\n\n      // These options will be used as defaults\n      options: {\n\n        // **context**: Accepts String: Any jQuery selector\n        // The container element that holds all of the elements used to generate the table of contents\n        context: \"body\",\n\n        // **ignoreSelector**: Accepts String: Any jQuery selector\n        // A selector to any element that would be matched by selectors that you wish to be ignored\n        ignoreSelector: null,\n\n        // **selectors**: Accepts an Array of Strings: Any jQuery selectors\n        // The element's used to generate the table of contents.  The order is very important since it will determine the table of content's nesting structure\n        selectors: \"h1, h2, h3\",\n\n        // **showAndHide**: Accepts a boolean: true or false\n        // Used to determine if elements should be shown and hidden\n        showAndHide: true,\n\n        // **showEffect**: Accepts String: \"none\", \"fadeIn\", \"show\", or \"slideDown\"\n        // Used to display any of the table of contents nested items\n        showEffect: \"slideDown\",\n\n        // **showEffectSpeed**: Accepts Number (milliseconds) or String: \"slow\", \"medium\", or \"fast\"\n        // The time duration of the show animation\n        showEffectSpeed: \"medium\",\n\n        // **hideEffect**: Accepts String: \"none\", \"fadeOut\", \"hide\", or \"slideUp\"\n        // Used to hide any of the table of contents nested items\n        hideEffect: \"slideUp\",\n\n        // **hideEffectSpeed**: Accepts Number (milliseconds) or String: \"slow\", \"medium\", or \"fast\"\n        // The time duration of the hide animation\n        hideEffectSpeed: \"medium\",\n\n        // **smoothScroll**: Accepts a boolean: true or false\n        // Determines if a jQuery animation should be used to scroll to specific table of contents items on the page\n        smoothScroll: true,\n\n        // **smoothScrollSpeed**: Accepts Number (milliseconds) or String: \"slow\", \"medium\", or \"fast\"\n        // The time duration of the smoothScroll animation\n        smoothScrollSpeed: \"medium\",\n\n        // **scrollTo**: Accepts Number (pixels)\n        // The amount of space between the top of page and the selected table of contents item after the page has been scrolled\n        scrollTo: 0,\n\n        // **showAndHideOnScroll**: Accepts a boolean: true or false\n        // Determines if table of contents nested items should be shown and hidden while scrolling\n        showAndHideOnScroll: true,\n\n        // **highlightOnScroll**: Accepts a boolean: true or false\n        // Determines if table of contents nested items should be highlighted (set to a different color) while scrolling\n        highlightOnScroll: true,\n\n        // **highlightOffset**: Accepts a number\n        // The offset distance in pixels to trigger the next active table of contents item\n        highlightOffset: 40,\n\n        // **theme**: Accepts a string: \"bootstrap\", \"jqueryui\", or \"none\"\n        // Determines if Twitter Bootstrap, jQueryUI, or Tocify classes should be added to the table of contents\n        theme: \"bootstrap\",\n\n        // **extendPage**: Accepts a boolean: true or false\n        // If a user scrolls to the bottom of the page and the page is not tall enough to scroll to the last table of contents item, then the page height is increased\n        extendPage: true,\n\n        // **extendPageOffset**: Accepts a number: pixels\n        // How close to the bottom of the page a user must scroll before the page is extended\n        extendPageOffset: 100,\n\n        // **history**: Accepts a boolean: true or false\n        // Adds a hash to the page url to maintain history\n        history: true,\n\n        // **scrollHistory**: Accepts a boolean: true or false\n        // Adds a hash to the page url, to maintain history, when scrolling to a TOC item\n        scrollHistory: false,\n\n        // **hashGenerator**: How the hash value (the anchor segment of the URL, following the\n        // # character) will be generated.\n        //\n        // \"compact\" (default) - #CompressesEverythingTogether\n        // \"pretty\" - #looks-like-a-nice-url-and-is-easily-readable\n        // function(text, element){} - Your own hash generation function that accepts the text as an\n        // argument, and returns the hash value.\n        hashGenerator: \"compact\",\n\n        // **highlightDefault**: Accepts a boolean: true or false\n        // Set's the first TOC item as active if no other TOC item is active.\n        highlightDefault: true\n\n      },\n\n      // _Create\n      // -------\n      //      Constructs the plugin.  Only called once.\n      _create: function() {\n\n        var self = this;\n\n        self.extendPageScroll = true;\n\n        // Internal array that keeps track of all TOC items (Helps to recognize if there are duplicate TOC item strings)\n        self.items = [];\n\n        // Generates the HTML for the dynamic table of contents\n        self._generateToc();\n\n        // Adds CSS classes to the newly generated table of contents HTML\n        self._addCSSClasses();\n\n        self.webkit = (function() {\n\n          for (var prop in window) {\n\n            if (prop) {\n\n              if (prop.toLowerCase().indexOf(\"webkit\") !== -1) {\n\n                return true;\n\n              }\n\n            }\n\n          }\n\n          return false;\n\n        }());\n\n        // Adds jQuery event handlers to the newly generated table of contents\n        self._setEventHandlers();\n\n        // Binding to the Window load event to make sure the correct scrollTop is calculated\n        $(window).on(\"load\", function() {\n\n          // Sets the active TOC item\n          self._setActiveElement(true);\n\n          // Once all animations on the page are complete, this callback function will be called\n          $(\"html, body\").promise().done(function() {\n\n            setTimeout(function() {\n\n              self.extendPageScroll = false;\n\n            }, 0);\n\n          });\n\n        });\n\n      },\n\n      // _generateToc\n      // ------------\n      //      Generates the HTML for the dynamic table of contents\n      _generateToc: function() {\n\n        // _Local variables_\n\n        // Stores the plugin context in the self variable\n        var self = this,\n\n          // All of the HTML tags found within the context provided (i.e. body) that match the top level jQuery selector above\n          firstElem,\n\n          // Instantiated variable that will store the top level newly created unordered list DOM element\n          ul,\n          ignoreSelector = self.options.ignoreSelector;\n\n\n        // Determine the element to start the toc with\n        // get all the top level selectors\n        firstElem = [];\n        var selectors = this.options.selectors.replace(/ /g, \"\").split(\",\");\n        // find the first set that have at least one non-ignored element\n        for(var i = 0; i < selectors.length; i++) {\n          var foundSelectors = $(this.options.context).find(selectors[i]);\n          for (var s = 0; s < foundSelectors.length; s++) {\n            if (!$(foundSelectors[s]).is(ignoreSelector)) {\n              firstElem = foundSelectors;\n              break;\n            }\n          }\n          if (firstElem.length> 0)\n            break;\n        }\n\n        if (!firstElem.length) {\n\n          self.element.addClass(hideTocClassName);\n\n          return;\n\n        }\n\n        self.element.addClass(tocClassName);\n\n        // Loops through each top level selector\n        firstElem.each(function(index) {\n\n          //If the element matches the ignoreSelector then we skip it\n          if ($(this).is(ignoreSelector)) {\n            return;\n          }\n\n          // Creates an unordered list HTML element and adds a dynamic ID and standard class name\n          ul = $(\"<ul/>\", {\n            \"id\": headerClassName + index,\n            \"class\": headerClassName\n          }).\n\n          // Appends a top level list item HTML element to the previously created HTML header\n          append(self._nestElements($(this), index));\n\n          // Add the created unordered list element to the HTML element calling the plugin\n          self.element.append(ul);\n\n          // Finds all of the HTML tags between the header and subheader elements\n          $(this).nextUntil(this.nodeName.toLowerCase()).each(function() {\n\n            // If there are no nested subheader elemements\n            if ($(this).find(self.options.selectors).length === 0) {\n\n              // Loops through all of the subheader elements\n              $(this).filter(self.options.selectors).each(function() {\n\n                //If the element matches the ignoreSelector then we skip it\n                if ($(this).is(ignoreSelector)) {\n                  return;\n                }\n\n                self._appendSubheaders.call(this, self, ul);\n\n              });\n\n            }\n\n            // If there are nested subheader elements\n            else {\n\n              // Loops through all of the subheader elements\n              $(this).find(self.options.selectors).each(function() {\n\n                //If the element matches the ignoreSelector then we skip it\n                if ($(this).is(ignoreSelector)) {\n                  return;\n                }\n\n                self._appendSubheaders.call(this, self, ul);\n\n              });\n\n            }\n\n          });\n\n        });\n\n      },\n\n      _setActiveElement: function(pageload) {\n\n        var self = this,\n\n          hash = window.location.hash.substring(1),\n\n          elem = self.element.find('li[data-unique=\"' + hash + '\"]');\n\n        if (hash.length) {\n\n          // Removes highlighting from all of the list item's\n          self.element.find(\".\" + self.focusClass).removeClass(self.focusClass);\n\n          // Highlights the current list item that was clicked\n          elem.addClass(self.focusClass);\n\n          // Triggers the click event on the currently focused TOC item\n          elem.click();\n\n        } else {\n\n          // Removes highlighting from all of the list item's\n          self.element.find(\".\" + self.focusClass).removeClass(self.focusClass);\n\n          if (!hash.length && pageload && self.options.highlightDefault) {\n\n            // Highlights the first TOC item if no other items are highlighted\n            self.element.find(itemClass).first().addClass(self.focusClass);\n\n          }\n\n        }\n\n        return self;\n\n      },\n\n      // _nestElements\n      // -------------\n      //      Helps create the table of contents list by appending nested list items\n      _nestElements: function(self, index) {\n\n        var arr, item, hashValue;\n\n        arr = $.grep(this.items, function(item) {\n\n          return item === self.text();\n\n        });\n\n        // If there is already a duplicate TOC item\n        if (arr.length) {\n\n          // Adds the current TOC item text and index (for slight randomization) to the internal array\n          this.items.push(self.text() + index);\n\n        }\n\n        // If there not a duplicate TOC item\n        else {\n\n          // Adds the current TOC item text to the internal array\n          this.items.push(self.text());\n\n        }\n\n        hashValue = this._generateHashValue(arr, self, index);\n\n        // Appends a list item HTML element to the last unordered list HTML element found within the HTML element calling the plugin\n        item = $(\"<li/>\", {\n\n          // Sets a common class name to the list item\n          \"class\": itemClassName,\n\n          \"data-unique\": hashValue\n\n        });\n\n        if (this.options.theme !== \"bootstrap3\") {\n\n          item.append($(\"<a/>\", {\n\n            \"html\": self.html()\n\n          }));\n\n        } else {\n\n          item.html(self.html());\n\n        }\n\n        // Adds an HTML anchor tag before the currently traversed HTML element\n        self.before($(\"<div/>\", {\n\n          // Sets a name attribute on the anchor tag to the text of the currently traversed HTML element (also making sure that all whitespace is replaced with an underscore)\n          \"name\": hashValue,\n\n          \"data-unique\": hashValue\n\n        }));\n\n        return item;\n\n      },\n\n      // _generateHashValue\n      // ------------------\n      //      Generates the hash value that will be used to refer to each item.\n      _generateHashValue: function(arr, self, index) {\n\n        var hashValue = \"\",\n          hashGeneratorOption = this.options.hashGenerator;\n\n        if (hashGeneratorOption === \"pretty\") {\n\n          // prettify the text\n          hashValue = self.text().toLowerCase().replace(/\\s/g, \"-\");\n\n          // fix double hyphens\n          while (hashValue.indexOf(\"--\") > -1) {\n            hashValue = hashValue.replace(/--/g, \"-\");\n          }\n\n          // fix colon-space instances\n          while (hashValue.indexOf(\":-\") > -1) {\n            hashValue = hashValue.replace(/:-/g, \"-\");\n          }\n\n        } else if (typeof hashGeneratorOption === \"function\") {\n\n          // call the function\n          hashValue = hashGeneratorOption(self.text(), self);\n\n        } else {\n\n          // compact - the default\n          hashValue = self.text().replace(/\\s/g, \"\");\n\n        }\n\n        // add the index if we need to\n        if (arr.length) {\n          hashValue += \"\" + index;\n        }\n\n        // return the value\n        return hashValue;\n\n      },\n\n      // _appendElements\n      // ---------------\n      //      Helps create the table of contents list by appending subheader elements\n\n      _appendSubheaders: function(self, ul) {\n\n        // The current element index\n        var index = $(this).index(self.options.selectors),\n\n          // Finds the previous header DOM element\n          previousHeader = $(self.options.selectors).eq(index - 1),\n\n          currentTagName = +$(this).prop(\"tagName\").charAt(1),\n\n          previousTagName = +previousHeader.prop(\"tagName\").charAt(1),\n\n          lastSubheader;\n\n        // If the current header DOM element is smaller than the previous header DOM element or the first subheader\n        if (currentTagName < previousTagName) {\n\n          // Selects the last unordered list HTML found within the HTML element calling the plugin\n          self.element.find(subheaderClass + \"[data-tag=\" + currentTagName + \"]\").last().append(self._nestElements($(this), index));\n\n        }\n\n        // If the current header DOM element is the same type of header(eg. h4) as the previous header DOM element\n        else if (currentTagName === previousTagName) {\n\n          ul.find(itemClass).last().after(self._nestElements($(this), index));\n\n        } else {\n\n          // Selects the last unordered list HTML found within the HTML element calling the plugin\n          ul.find(itemClass).last().\n\n          // Appends an unorderedList HTML element to the dynamic `unorderedList` variable and sets a common class name\n          after($(\"<ul/>\", {\n\n            \"class\": subheaderClassName,\n\n            \"data-tag\": currentTagName\n\n          })).next(subheaderClass).\n\n          // Appends a list item HTML element to the last unordered list HTML element found within the HTML element calling the plugin\n          append(self._nestElements($(this), index));\n        }\n\n      },\n\n      // _setEventHandlers\n      // ----------------\n      //      Adds jQuery event handlers to the newly generated table of contents\n      _setEventHandlers: function() {\n\n        // _Local variables_\n\n        // Stores the plugin context in the self variable\n        var self = this,\n\n          // Instantiates a new variable that will be used to hold a specific element's context\n          $self,\n\n          // Instantiates a new variable that will be used to determine the smoothScroll animation time duration\n          duration;\n\n        // Event delegation that looks for any clicks on list item elements inside of the HTML element calling the plugin\n        this.element.on(\"click.tocify\", \"li\", function(event) {\n\n          if (self.options.history) {\n\n            window.location.hash = $(this).attr(\"data-unique\");\n\n          }\n\n          // Removes highlighting from all of the list item's\n          self.element.find(\".\" + self.focusClass).removeClass(self.focusClass);\n\n          // Highlights the current list item that was clicked\n          $(this).addClass(self.focusClass);\n\n          // If the showAndHide option is true\n          if (self.options.showAndHide) {\n\n            var elem = $('li[data-unique=\"' + $(this).attr(\"data-unique\") + '\"]');\n\n            self._triggerShow(elem);\n\n          }\n\n          self._scrollTo($(this));\n\n        });\n\n        // Mouseenter and Mouseleave event handlers for the list item's within the HTML element calling the plugin\n        this.element.find(\"li\").on({\n\n          // Mouseenter event handler\n          \"mouseenter.tocify\": function() {\n\n            // Adds a hover CSS class to the current list item\n            $(this).addClass(self.hoverClass);\n\n            // Makes sure the cursor is set to the pointer icon\n            $(this).css(\"cursor\", \"pointer\");\n\n          },\n\n          // Mouseleave event handler\n          \"mouseleave.tocify\": function() {\n\n            if (self.options.theme !== \"bootstrap\") {\n\n              // Removes the hover CSS class from the current list item\n              $(this).removeClass(self.hoverClass);\n\n            }\n\n          }\n        });\n\n        // only attach handler if needed (expensive in IE)\n        if (self.options.extendPage || self.options.highlightOnScroll || self.options.scrollHistory || self.options.showAndHideOnScroll) {\n          // Window scroll event handler\n          $(window).on(\"scroll.tocify\", function() {\n\n            // Once all animations on the page are complete, this callback function will be called\n            $(\"html, body\").promise().done(function() {\n\n              // Local variables\n\n              // Stores how far the user has scrolled\n              var winScrollTop = $(window).scrollTop(),\n\n                // Stores the height of the window\n                winHeight = $(window).height(),\n\n                // Stores the height of the document\n                docHeight = $(document).height(),\n\n                scrollHeight = $(\"body\")[0].scrollHeight,\n\n                // Instantiates a variable that will be used to hold a selected HTML element\n                elem,\n\n                lastElem,\n\n                lastElemOffset,\n\n                currentElem;\n\n              if (self.options.extendPage) {\n\n                // If the user has scrolled to the bottom of the page and the last toc item is not focused\n                if ((self.webkit && winScrollTop >= scrollHeight - winHeight - self.options.extendPageOffset) || (!self.webkit && winHeight + winScrollTop > docHeight - self.options.extendPageOffset)) {\n\n                  if (!$(extendPageClass).length) {\n\n                    lastElem = $('div[data-unique=\"' + $(itemClass).last().attr(\"data-unique\") + '\"]');\n\n                    if (!lastElem.length) return;\n\n                    // Gets the top offset of the page header that is linked to the last toc item\n                    lastElemOffset = lastElem.offset().top;\n\n                    // Appends a div to the bottom of the page and sets the height to the difference of the window scrollTop and the last element's position top offset\n                    $(self.options.context).append($(\"<div/>\", {\n\n                      \"class\": extendPageClassName,\n\n                      \"height\": Math.abs(lastElemOffset - winScrollTop) + \"px\",\n\n                      \"data-unique\": extendPageClassName\n\n                    }));\n\n                    if (self.extendPageScroll) {\n\n                      currentElem = self.element.find('li.' + self.focusClass);\n\n                      self._scrollTo($('div[data-unique=\"' + currentElem.attr(\"data-unique\") + '\"]'));\n\n                    }\n\n                  }\n\n                }\n\n              }\n\n              // The zero timeout ensures the following code is run after the scroll events\n              setTimeout(function() {\n\n                // _Local variables_\n\n                // Stores the distance to the closest anchor\n                var closestAnchorDistance = null,\n\n                  // Stores the index of the closest anchor\n                  closestAnchorIdx = null,\n\n                  // Keeps a reference to all anchors\n                  anchors = $(self.options.context).find(\"div[data-unique]\"),\n\n                  anchorText;\n\n                // Determines the index of the closest anchor\n                anchors.each(function(idx) {\n                  var distance = Math.abs(($(this).next().length ? $(this).next() : $(this)).offset().top - winScrollTop - self.options.highlightOffset);\n                  if (closestAnchorDistance == null || distance < closestAnchorDistance) {\n                    closestAnchorDistance = distance;\n                    closestAnchorIdx = idx;\n                  } else {\n                    return false;\n                  }\n                });\n\n                anchorText = $(anchors[closestAnchorIdx]).attr(\"data-unique\");\n\n                // Stores the list item HTML element that corresponds to the currently traversed anchor tag\n                elem = $('li[data-unique=\"' + anchorText + '\"]');\n\n                // If the `highlightOnScroll` option is true and a next element is found\n                if (self.options.highlightOnScroll && elem.length) {\n\n                  // Removes highlighting from all of the list item's\n                  self.element.find(\".\" + self.focusClass).removeClass(self.focusClass);\n\n                  // Highlights the corresponding list item\n                  elem.addClass(self.focusClass);\n\n                }\n\n                if (self.options.scrollHistory) {\n\n                  if (window.location.hash !== \"#\" + anchorText) {\n\n                    window.location.replace(\"#\" + anchorText);\n\n                  }\n                }\n\n                // If the `showAndHideOnScroll` option is true\n                if (self.options.showAndHideOnScroll && self.options.showAndHide) {\n\n                  self._triggerShow(elem, true);\n\n                }\n\n              }, 0);\n\n            });\n\n          });\n        }\n\n      },\n\n      // Show\n      // ----\n      //      Opens the current sub-header\n      show: function(elem, scroll) {\n\n        // Stores the plugin context in the `self` variable\n        var self = this,\n          element = elem;\n\n        // If the sub-header is not already visible\n        if (!elem.is(\":visible\")) {\n\n          // If the current element does not have any nested subheaders, is not a header, and its parent is not visible\n          if (!elem.find(subheaderClass).length && !elem.parent().is(headerClass) && !elem.parent().is(\":visible\")) {\n\n            // Sets the current element to all of the subheaders within the current header\n            elem = elem.parents(subheaderClass).add(elem);\n\n          }\n\n          // If the current element does not have any nested subheaders and is not a header\n          else if (!elem.children(subheaderClass).length && !elem.parent().is(headerClass)) {\n\n            // Sets the current element to the closest subheader\n            elem = elem.closest(subheaderClass);\n\n          }\n\n          //Determines what jQuery effect to use\n          switch (self.options.showEffect) {\n\n            //Uses `no effect`\n            case \"none\":\n\n              elem.show();\n\n              break;\n\n              //Uses the jQuery `show` special effect\n            case \"show\":\n\n              elem.show(self.options.showEffectSpeed);\n\n              break;\n\n              //Uses the jQuery `slideDown` special effect\n            case \"slideDown\":\n\n              elem.slideDown(self.options.showEffectSpeed);\n\n              break;\n\n              //Uses the jQuery `fadeIn` special effect\n            case \"fadeIn\":\n\n              elem.fadeIn(self.options.showEffectSpeed);\n\n              break;\n\n              //If none of the above options were passed, then a `jQueryUI show effect` is expected\n            default:\n\n              elem.show();\n\n              break;\n\n          }\n\n        }\n\n        // If the current subheader parent element is a header\n        if (elem.parent().is(headerClass)) {\n\n          // Hides all non-active sub-headers\n          self.hide($(subheaderClass).not(elem));\n\n        }\n\n        // If the current subheader parent element is not a header\n        else {\n\n          // Hides all non-active sub-headers\n          self.hide($(subheaderClass).not(elem.closest(headerClass).find(subheaderClass).not(elem.siblings())));\n\n        }\n\n        // Maintains chainablity\n        return self;\n\n      },\n\n      // Hide\n      // ----\n      //      Closes the current sub-header\n      hide: function(elem) {\n\n        // Stores the plugin context in the `self` variable\n        var self = this;\n\n        //Determines what jQuery effect to use\n        switch (self.options.hideEffect) {\n\n          // Uses `no effect`\n          case \"none\":\n\n            elem.hide();\n\n            break;\n\n            // Uses the jQuery `hide` special effect\n          case \"hide\":\n\n            elem.hide(self.options.hideEffectSpeed);\n\n            break;\n\n            // Uses the jQuery `slideUp` special effect\n          case \"slideUp\":\n\n            elem.slideUp(self.options.hideEffectSpeed);\n\n            break;\n\n            // Uses the jQuery `fadeOut` special effect\n          case \"fadeOut\":\n\n            elem.fadeOut(self.options.hideEffectSpeed);\n\n            break;\n\n            // If none of the above options were passed, then a `jqueryUI hide effect` is expected\n          default:\n\n            elem.hide();\n\n            break;\n\n        }\n\n        // Maintains chainablity\n        return self;\n      },\n\n      // _triggerShow\n      // ------------\n      //      Determines what elements get shown on scroll and click\n      _triggerShow: function(elem, scroll) {\n\n        var self = this;\n\n        // If the current element's parent is a header element or the next element is a nested subheader element\n        if (elem.parent().is(headerClass) || elem.next().is(subheaderClass)) {\n\n          // Shows the next sub-header element\n          self.show(elem.next(subheaderClass), scroll);\n\n        }\n\n        // If the current element's parent is a subheader element\n        else if (elem.parent().is(subheaderClass)) {\n\n          // Shows the parent sub-header element\n          self.show(elem.parent(), scroll);\n\n        }\n\n        // Maintains chainability\n        return self;\n\n      },\n\n      // _addCSSClasses\n      // --------------\n      //      Adds CSS classes to the newly generated table of contents HTML\n      _addCSSClasses: function() {\n\n        // If the user wants a jqueryUI theme\n        if (this.options.theme === \"jqueryui\") {\n\n          this.focusClass = \"ui-state-default\";\n\n          this.hoverClass = \"ui-state-hover\";\n\n          //Adds the default styling to the dropdown list\n          this.element.addClass(\"ui-widget\").find(\".toc-title\").addClass(\"ui-widget-header\").end().find(\"li\").addClass(\"ui-widget-content\");\n\n        }\n\n        // If the user wants a twitterBootstrap theme\n        else if (this.options.theme === \"bootstrap\") {\n\n          this.element.find(headerClass + \",\" + subheaderClass).addClass(\"nav nav-list\");\n\n          this.focusClass = \"active\";\n\n        }\n\n        // If the user wants a twitterBootstrap theme\n        else if (this.options.theme === \"bootstrap3\") {\n\n          this.element.find(headerClass + \",\" + subheaderClass).addClass(\"list-group\");\n\n          this.element.find(itemClass).addClass(\"list-group-item\");\n\n          this.focusClass = \"active\";\n\n        }\n\n        // If a user does not want a prebuilt theme\n        else {\n\n          // Adds more neutral classes (instead of jqueryui)\n\n          this.focusClass = tocFocusClassName;\n\n          this.hoverClass = tocHoverClassName;\n\n        }\n\n        //Maintains chainability\n        return this;\n\n      },\n\n      // setOption\n      // ---------\n      //      Sets a single Tocify option after the plugin is invoked\n      setOption: function() {\n\n        // Calls the jQueryUI Widget Factory setOption method\n        $.Widget.prototype._setOption.apply(this, arguments);\n\n      },\n\n      // setOptions\n      // ----------\n      //      Sets a single or multiple Tocify options after the plugin is invoked\n      setOptions: function() {\n\n        // Calls the jQueryUI Widget Factory setOptions method\n        $.Widget.prototype._setOptions.apply(this, arguments);\n\n      },\n\n      // _scrollTo\n      // ---------\n      //      Scrolls to a specific element\n      _scrollTo: function(elem) {\n\n        var self = this,\n          duration = self.options.smoothScroll || 0,\n          scrollTo = self.options.scrollTo,\n          currentDiv = $('div[data-unique=\"' + elem.attr(\"data-unique\") + '\"]');\n\n        if (!currentDiv.length) {\n\n          return self;\n\n        }\n\n        // Once all animations on the page are complete, this callback function will be called\n        $(\"html, body\").promise().done(function() {\n\n          // Animates the html and body element scrolltops\n          $(\"html, body\").animate({\n\n            // Sets the jQuery `scrollTop` to the top offset of the HTML div tag that matches the current list item's `data-unique` tag\n            \"scrollTop\": currentDiv.offset().top - ($.isFunction(scrollTo) ? scrollTo.call() : scrollTo) + \"px\"\n\n          }, {\n\n            // Sets the smoothScroll animation time duration to the smoothScrollSpeed option\n            \"duration\": duration\n\n          });\n\n        });\n\n        // Maintains chainability\n        return self;\n\n      }\n\n    });\n\n  })); //end of plugin\n"
  },
  {
    "path": "five_points_scatter.R",
    "content": "\n\nlibrary(ggplot2)\nset.seed(12)\nx1 <- rnorm(50, 10, 2)\n\nx2 <- scale(matrix(rnorm(50), ncol=1))\nx12 <- cbind(scale(x1),x2)\n\nc1 <- var(x12)\nchol1 <- solve(chol(c1))\nnewx <-  x12 %*% chol1\n\nnewc <- matrix(c(1,-0.52, -0.52, 1), ncol=2)\nchol2 <- chol(newc)\nfinalx <- newx %*% chol2 * sd(x1) + mean(x1)\n\nfinalx[,2] <- (2*finalx[,2]-5)\n\ngiraffe_data <- finalx\ncolnames(giraffe_data) <- c(\"Heights\", \"Celery_Eaten\")\n\ngiraffe_data <- as.data.frame(giraffe_data)\n\n(points <- giraffe_data[c(12, 50, 14, 43, 32),])\n\n\np <-  ggplot(data= points, aes(x= Heights, y=Celery_Eaten)) +\n  geom_point() + geom_vline(xintercept = mean(giraffe_data$Heights)) + geom_hline(yintercept = mean(giraffe_data$Celery_Eaten))\n\np\n\n\np <-  ggplot(data= points, aes(x= Heights, y=Celery_Eaten)) +\n  geom_point(size = 3) + geom_vline(xintercept = mean(giraffe_data$Heights), col=\"grey50\", linetype=\"dashed\", size = 2) + geom_hline(yintercept = mean(giraffe_data$Celery_Eaten), col= \"grey81\", linetype=\"dashed\", size= 2) + xlim(5.5, 14.4) + ylim(5.3, 23)\n\n\np <- p + theme_light() + theme(panel.border = element_blank(), panel.grid.minor=element_blank())\n\np\n\nggsave(filename = \"/Users/Desiree/Documents/New R Projects/Cars/points.png\", width=10, height=6, p)\n\n#xlim(5.7, 14.4) + ylim(5.3, 22.5)\n\n\nggplot_build(p)\n\nxlim(5.5,15)\nylim(5,24)"
  },
  {
    "path": "images/02_bellCurve/lib/crosstalk-1.0.0/css/crosstalk.css",
    "content": "/* Adjust margins outwards, so column contents line up with the edges of the\n   parent of container-fluid. */\n.container-fluid.crosstalk-bscols {\n  margin-left: -30px;\n  margin-right: -30px;\n  white-space: normal;\n}\n\n/* But don't adjust the margins outwards if we're directly under the body,\n   i.e. we were the top-level of something at the console. */\nbody > .container-fluid.crosstalk-bscols {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n  display: inline-block;\n  padding-right: 12px;\n  vertical-align: top;\n}\n\n@media only screen and (max-width:480px) {\n  .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n    display: block;\n    padding-right: inherit;\n  }\n}\n"
  },
  {
    "path": "images/02_bellCurve/lib/crosstalk-1.0.0/js/crosstalk.js",
    "content": "(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Events = function () {\n  function Events() {\n    _classCallCheck(this, Events);\n\n    this._types = {};\n    this._seq = 0;\n  }\n\n  _createClass(Events, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var subs = this._types[eventType];\n      if (!subs) {\n        subs = this._types[eventType] = {};\n      }\n      var sub = \"sub\" + this._seq++;\n      subs[sub] = listener;\n      return sub;\n    }\n\n    // Returns false if no match, or string for sub name if matched\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var subs = this._types[eventType];\n      if (typeof listener === \"function\") {\n        for (var key in subs) {\n          if (subs.hasOwnProperty(key)) {\n            if (subs[key] === listener) {\n              delete subs[key];\n              return key;\n            }\n          }\n        }\n        return false;\n      } else if (typeof listener === \"string\") {\n        if (subs && subs[listener]) {\n          delete subs[listener];\n          return listener;\n        }\n        return false;\n      } else {\n        throw new Error(\"Unexpected type for listener\");\n      }\n    }\n  }, {\n    key: \"trigger\",\n    value: function trigger(eventType, arg, thisObj) {\n      var subs = this._types[eventType];\n      for (var key in subs) {\n        if (subs.hasOwnProperty(key)) {\n          subs[key].call(thisObj, arg);\n        }\n      }\n    }\n  }]);\n\n  return Events;\n}();\n\nexports.default = Events;\n\n},{}],2:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.FilterHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _filterset = require(\"./filterset\");\n\nvar _filterset2 = _interopRequireDefault(_filterset);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction getFilterSet(group) {\n  var fsVar = group.var(\"filterset\");\n  var result = fsVar.get();\n  if (!result) {\n    result = new _filterset2.default();\n    fsVar.set(result);\n  }\n  return result;\n}\n\nvar id = 1;\nfunction nextId() {\n  return id++;\n}\n\nvar FilterHandle = exports.FilterHandle = function () {\n  /**\n   * @classdesc\n   * Use this class to contribute to, and listen for changes to, the filter set\n   * for the given group of widgets. Filter input controls should create one\n   * `FilterHandle` and only call {@link FilterHandle#set}. Output widgets that\n   * wish to displayed filtered data should create one `FilterHandle` and use\n   * the {@link FilterHandle#filteredKeys} property and listen for change\n   * events.\n   *\n   * If two (or more) `FilterHandle` instances in the same webpage share the\n   * same group name, they will contribute to a single \"filter set\". Each\n   * `FilterHandle` starts out with a `null` value, which means they take\n   * nothing away from the set of data that should be shown. To make a\n   * `FilterHandle` actually remove data from the filter set, set its value to\n   * an array of keys which should be displayed. Crosstalk will aggregate the\n   * various key arrays by finding their intersection; only keys that are\n   * present in all non-null filter handles are considered part of the filter\n   * set.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the @{link FilterHandle#setGroup} method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function FilterHandle(group, extraInfo) {\n    _classCallCheck(this, FilterHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The filterSet that we're tracking, if any. Can change over time.\n    this._filterSet = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._filterVar = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this._id = \"filter\" + nextId();\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this FilterHandle. If `set()` was\n   * previously called on this handle, switching groups will clear those keys\n   * from the old group's filter set. These keys will not be applied to the new\n   * group's filter set either. In other words, `setGroup()` effectively calls\n   * `clear()` before switching groups.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(FilterHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._filterVar) {\n        this._filterVar.off(\"change\", this._varOnChangeSub);\n        this.clear();\n        this._varOnChangeSub = null;\n        this._filterVar = null;\n        this._filterSet = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        group = (0, _group2.default)(group);\n        this._filterSet = getFilterSet(group);\n        this._filterVar = (0, _group2.default)(group).var(\"filter\");\n        var sub = this._filterVar.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Combine the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n    value: function _mergeExtraInfo(extraInfo) {\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Close the handle. This clears this handle's contribution to the filter set,\n     * and unsubscribes all event listeners.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.clear();\n      this.setGroup(null);\n    }\n\n    /**\n     * Clear this handle's contribution to the filter set.\n     *\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.clear(this._id);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * Set this handle's contribution to the filter set. This array should consist\n     * of the keys of the rows that _should_ be displayed; any keys that are not\n     * present in the array will be considered _filtered out_. Note that multiple\n     * `FilterHandle` instances in the group may each contribute an array of keys,\n     * and only those keys that appear in _all_ of the arrays make it through the\n     * filter.\n     *\n     * @param {string[]} keys - Empty array, or array of keys. To clear the\n     *   filter, don't pass an empty array; instead, use the\n     *   {@link FilterHandle#clear} method.\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(keys, extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.update(this._id, keys);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * @return {string[]|null} - Either: 1) an array of keys that made it through\n     *   all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n     *   is being applied (all data should be displayed).\n     */\n\n  }, {\n    key: \"on\",\n\n\n    /**\n     * Subscribe to events on this `FilterHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {FilterHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n     *   this subscription.\n     */\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancel event subscriptions created by {@link FilterHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|FilterHandle~listener} listener - Either the callback\n     *   function previously passed into {@link FilterHandle#on}, or the\n     *   string that was returned from {@link FilterHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n  }, {\n    key: \"_onChange\",\n    value: function _onChange(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * @callback FilterHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the filter set, or `null` if no filter set is active),\n     *   `oldValue` (the previous value of the filter set), and `sender` (the\n     *   `FilterHandle` instance that made the change).\n     */\n\n    /**\n     * @event FilterHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the filter set, or `null`\n     *   if no filter set is active.\n     * @property {object} oldValue - The previous value of the filter set.\n     * @property {FilterHandle} sender - The `FilterHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"filteredKeys\",\n    get: function get() {\n      return this._filterSet ? this._filterSet.value : null;\n    }\n  }]);\n\n  return FilterHandle;\n}();\n\n},{\"./events\":1,\"./filterset\":3,\"./group\":4,\"./util\":11}],3:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _util = require(\"./util\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction naturalComparator(a, b) {\n  if (a === b) {\n    return 0;\n  } else if (a < b) {\n    return -1;\n  } else if (a > b) {\n    return 1;\n  }\n}\n\n/**\n * @private\n */\n\nvar FilterSet = function () {\n  function FilterSet() {\n    _classCallCheck(this, FilterSet);\n\n    this.reset();\n  }\n\n  _createClass(FilterSet, [{\n    key: \"reset\",\n    value: function reset() {\n      // Key: handle ID, Value: array of selected keys, or null\n      this._handles = {};\n      // Key: key string, Value: count of handles that include it\n      this._keys = {};\n      this._value = null;\n      this._activeHandles = 0;\n    }\n  }, {\n    key: \"update\",\n    value: function update(handleId, keys) {\n      if (keys !== null) {\n        keys = keys.slice(0); // clone before sorting\n        keys.sort(naturalComparator);\n      }\n\n      var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys),\n          added = _diffSortedLists.added,\n          removed = _diffSortedLists.removed;\n\n      this._handles[handleId] = keys;\n\n      for (var i = 0; i < added.length; i++) {\n        this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n      }\n      for (var _i = 0; _i < removed.length; _i++) {\n        this._keys[removed[_i]]--;\n      }\n\n      this._updateValue(keys);\n    }\n\n    /**\n     * @param {string[]} keys Sorted array of strings that indicate\n     * a superset of possible keys.\n     * @private\n     */\n\n  }, {\n    key: \"_updateValue\",\n    value: function _updateValue() {\n      var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys;\n\n      var handleCount = Object.keys(this._handles).length;\n      if (handleCount === 0) {\n        this._value = null;\n      } else {\n        this._value = [];\n        for (var i = 0; i < keys.length; i++) {\n          var count = this._keys[keys[i]];\n          if (count === handleCount) {\n            this._value.push(keys[i]);\n          }\n        }\n      }\n    }\n  }, {\n    key: \"clear\",\n    value: function clear(handleId) {\n      if (typeof this._handles[handleId] === \"undefined\") {\n        return;\n      }\n\n      var keys = this._handles[handleId];\n      if (!keys) {\n        keys = [];\n      }\n\n      for (var i = 0; i < keys.length; i++) {\n        this._keys[keys[i]]--;\n      }\n      delete this._handles[handleId];\n\n      this._updateValue();\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"_allKeys\",\n    get: function get() {\n      var allKeys = Object.keys(this._keys);\n      allKeys.sort(naturalComparator);\n      return allKeys;\n    }\n  }]);\n\n  return FilterSet;\n}();\n\nexports.default = FilterSet;\n\n},{\"./util\":11}],4:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.default = group;\n\nvar _var2 = require(\"./var\");\n\nvar _var3 = _interopRequireDefault(_var2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nvar groups = global.__crosstalk_groups;\n\nfunction group(groupName) {\n  if (groupName && typeof groupName === \"string\") {\n    if (!groups.hasOwnProperty(groupName)) {\n      groups[groupName] = new Group(groupName);\n    }\n    return groups[groupName];\n  } else if ((typeof groupName === \"undefined\" ? \"undefined\" : _typeof(groupName)) === \"object\" && groupName._vars && groupName.var) {\n    // Appears to already be a group object\n    return groupName;\n  } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === \"string\") {\n    return group(groupName[0]);\n  } else {\n    throw new Error(\"Invalid groupName argument\");\n  }\n}\n\nvar Group = function () {\n  function Group(name) {\n    _classCallCheck(this, Group);\n\n    this.name = name;\n    this._vars = {};\n  }\n\n  _createClass(Group, [{\n    key: \"var\",\n    value: function _var(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name);\n      return this._vars[name];\n    }\n  }, {\n    key: \"has\",\n    value: function has(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      return this._vars.hasOwnProperty(name);\n    }\n  }]);\n\n  return Group;\n}();\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./var\":12}],5:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _selection = require(\"./selection\");\n\nvar _filter = require(\"./filter\");\n\nrequire(\"./input\");\n\nrequire(\"./input_selectize\");\n\nrequire(\"./input_checkboxgroup\");\n\nrequire(\"./input_slider\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar defaultGroup = (0, _group2.default)(\"default\");\n\nfunction var_(name) {\n  return defaultGroup.var(name);\n}\n\nfunction has(name) {\n  return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n  global.Shiny.addCustomMessageHandler(\"update-client-value\", function (message) {\n    if (typeof message.group === \"string\") {\n      (0, _group2.default)(message.group).var(message.name).set(message.value);\n    } else {\n      var_(message.name).set(message.value);\n    }\n  });\n}\n\nvar crosstalk = {\n  group: _group2.default,\n  var: var_,\n  has: has,\n  SelectionHandle: _selection.SelectionHandle,\n  FilterHandle: _filter.FilterHandle\n};\n\n/**\n * @namespace crosstalk\n */\nexports.default = crosstalk;\n\nglobal.crosstalk = crosstalk;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./group\":4,\"./input\":6,\"./input_checkboxgroup\":7,\"./input_selectize\":8,\"./input_slider\":9,\"./selection\":10}],6:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.register = register;\nvar $ = global.jQuery;\n\nvar bindings = {};\n\nfunction register(reg) {\n  bindings[reg.className] = reg;\n  if (global.document && global.document.readyState !== \"complete\") {\n    $(function () {\n      bind();\n    });\n  } else if (global.document) {\n    setTimeout(bind, 100);\n  }\n}\n\nfunction bind() {\n  Object.keys(bindings).forEach(function (className) {\n    var binding = bindings[className];\n    $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function (i, el) {\n      bindInstance(binding, el);\n    });\n  });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n  return val.replace(/([!\"#$%&'()*+,.\\/:;<=>?@\\[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n  var $el = $(el);\n  Object.keys(bindings).forEach(function (className) {\n    if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n      var binding = bindings[className];\n      bindInstance(binding, el);\n    }\n  });\n}\n\nfunction bindInstance(binding, el) {\n  var jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n  var data = JSON.parse(jsonEl[0].innerText);\n\n  var instance = binding.factory(el, data);\n  $(el).data(\"crosstalk-instance\", instance);\n  $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n  (function () {\n    var inputBinding = new global.Shiny.InputBinding();\n    var $ = global.jQuery;\n    $.extend(inputBinding, {\n      find: function find(scope) {\n        return $(scope).find(\".crosstalk-input\");\n      },\n      initialize: function initialize(el) {\n        if (!$(el).hasClass(\"crosstalk-input-bound\")) {\n          bindEl(el);\n        }\n      },\n      getId: function getId(el) {\n        return el.id;\n      },\n      getValue: function getValue(el) {},\n      setValue: function setValue(el, value) {},\n      receiveMessage: function receiveMessage(el, data) {},\n      subscribe: function subscribe(el, callback) {\n        $(el).data(\"crosstalk-instance\").resume();\n      },\n      unsubscribe: function unsubscribe(el) {\n        $(el).data(\"crosstalk-instance\").suspend();\n      }\n    });\n    global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n  })();\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{}],7:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-checkboxgroup\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    var $el = $(el);\n    $el.on(\"change\", \"input[type='checkbox']\", function () {\n      var checked = $el.find(\"input[type='checkbox']:checked\");\n      if (checked.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          checked.each(function () {\n            data.map[this.value].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],8:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-select\",\n\n  factory: function factory(el, data) {\n    /*\n     * items: {value: [...], label: [...]}\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n\n    var first = [{ value: \"\", label: \"(All)\" }];\n    var items = util.dataframeToD3(data.items);\n    var opts = {\n      options: first.concat(items),\n      valueField: \"value\",\n      labelField: \"label\",\n      searchField: \"label\"\n    };\n\n    var select = $(el).find(\"select\")[0];\n\n    var selectize = $(select).selectize(opts)[0].selectize;\n\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    selectize.on(\"change\", function () {\n      if (selectize.items.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          selectize.items.forEach(function (group) {\n            data.map[group].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6,\"./util\":11}],9:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\nvar strftime = global.strftime;\n\ninput.register({\n  className: \"crosstalk-input-slider\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var opts = {};\n    var $el = $(el).find(\"input\");\n    var dataType = $el.data(\"data-type\");\n    var timeFormat = $el.data(\"time-format\");\n    var timeFormatter = void 0;\n\n    // Set up formatting functions\n    if (dataType === \"date\") {\n      timeFormatter = strftime.utc();\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"datetime\") {\n      var timezone = $el.data(\"timezone\");\n      if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime;\n\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    }\n\n    $el.ionRangeSlider(opts);\n\n    function getValue() {\n      var result = $el.data(\"ionRangeSlider\").result;\n\n      // Function for converting numeric value from slider to appropriate type.\n      var convert = void 0;\n      var dataType = $el.data(\"data-type\");\n      if (dataType === \"date\") {\n        convert = function convert(val) {\n          return formatDateUTC(new Date(+val));\n        };\n      } else if (dataType === \"datetime\") {\n        convert = function convert(val) {\n          // Convert ms to s\n          return +val / 1000;\n        };\n      } else {\n        convert = function convert(val) {\n          return +val;\n        };\n      }\n\n      if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n        return [convert(result.from), convert(result.to)];\n      } else {\n        return convert(result.from);\n      }\n    }\n\n    var lastKnownKeys = null;\n\n    $el.on(\"change.crosstalkSliderInput\", function (event) {\n      if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n        var _getValue = getValue(),\n            _getValue2 = _slicedToArray(_getValue, 2),\n            from = _getValue2[0],\n            to = _getValue2[1];\n\n        var keys = [];\n        for (var i = 0; i < data.values.length; i++) {\n          var val = data.values[i];\n          if (val >= from && val <= to) {\n            keys.push(data.keys[i]);\n          }\n        }\n        keys.sort();\n        ctHandle.set(keys);\n        lastKnownKeys = keys;\n      }\n    });\n\n    // let $el = $(el);\n    // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n    //   let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n    //   if (checked.length === 0) {\n    //     ctHandle.clear();\n    //   } else {\n    //     let keys = {};\n    //     checked.each(function() {\n    //       data.map[this.value].forEach(function(key) {\n    //         keys[key] = true;\n    //       });\n    //     });\n    //     let keyArray = Object.keys(keys);\n    //     keyArray.sort();\n    //     ctHandle.set(keyArray);\n    //   }\n    // });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n  var str = n.toString();\n  while (str.length < digits) {\n    str = \"0\" + str;\n  }return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n  if (date instanceof Date) {\n    return date.getUTCFullYear() + \"-\" + padZeros(date.getUTCMonth() + 1, 2) + \"-\" + padZeros(date.getUTCDate(), 2);\n  } else {\n    return null;\n  }\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],10:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.SelectionHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar SelectionHandle = exports.SelectionHandle = function () {\n\n  /**\n   * @classdesc\n   * Use this class to read and write (and listen for changes to) the selection\n   * for a Crosstalk group. This is intended to be used for linked brushing.\n   *\n   * If two (or more) `SelectionHandle` instances in the same webpage share the\n   * same group name, they will share the same state. Setting the selection using\n   * one `SelectionHandle` instance will result in the `value` property instantly\n   * changing across the others, and `\"change\"` event listeners on all instances\n   * (including the one that initiated the sending) will fire.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the [SelectionHandle#setGroup](#setGroup) method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function SelectionHandle() {\n    var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n    var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n\n    _classCallCheck(this, SelectionHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._var = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this SelectionHandle. The group\n   * being switched away from (if any) will not have its selection value\n   * modified as a result of calling `setGroup`, even if this handle was the\n   * most recent handle to set the selection of the group.\n   *\n   * The group being switched to (if any) will also not have its selection value\n   * modified as a result of calling `setGroup`. If you want to set the\n   * selection value of the new group, call `set` explicitly.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(SelectionHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._var) {\n        this._var.off(\"change\", this._varOnChangeSub);\n        this._var = null;\n        this._varOnChangeSub = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        this._var = (0, _group2.default)(group).var(\"selection\");\n        var sub = this._var.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Retrieves the current selection for the group represented by this\n     * `SelectionHandle`.\n     *\n     * - If no selection is active, then this value will be falsy.\n     * - If a selection is active, but no data points are selected, then this\n     *   value will be an empty array.\n     * - If a selection is active, and data points are selected, then the keys\n     *   of the selected data points will be present in the array.\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n\n\n    /**\n     * Combines the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n    value: function _mergeExtraInfo(extraInfo) {\n      // Important incidental effect: shallow clone is returned\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n     *   {@link SelectionHandle#value}).\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(selectedKeys, extraInfo) {\n      if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any that were passed\n     *   into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Subscribes to events on this `SelectionHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {SelectionHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n     *   this subscription.\n     */\n\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancels event subscriptions created by {@link SelectionHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|SelectionHandle~listener} listener - Either the callback\n     *   function previously passed into {@link SelectionHandle#on}, or the\n     *   string that was returned from {@link SelectionHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n\n    /**\n     * Shuts down the `SelectionHandle` object.\n     *\n     * Removes all event listeners that were added through this handle.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.setGroup(null);\n    }\n\n    /**\n     * @callback SelectionHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the selection, or `undefined` if no selection is active),\n     *   `oldValue` (the previous value of the selection), and `sender` (the\n     *   `SelectionHandle` instance that made the change).\n     */\n\n    /**\n     * @event SelectionHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the selection, or `undefined`\n     *   if no selection is active.\n     * @property {object} oldValue - The previous value of the selection.\n     * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._var ? this._var.get() : null;\n    }\n  }]);\n\n  return SelectionHandle;\n}();\n\n},{\"./events\":1,\"./group\":4,\"./util\":11}],11:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.extend = extend;\nexports.checkSorted = checkSorted;\nexports.diffSortedLists = diffSortedLists;\nexports.dataframeToD3 = dataframeToD3;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction extend(target) {\n  for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n    sources[_key - 1] = arguments[_key];\n  }\n\n  for (var i = 0; i < sources.length; i++) {\n    var src = sources[i];\n    if (typeof src === \"undefined\" || src === null) continue;\n\n    for (var key in src) {\n      if (src.hasOwnProperty(key)) {\n        target[key] = src[key];\n      }\n    }\n  }\n  return target;\n}\n\nfunction checkSorted(list) {\n  for (var i = 1; i < list.length; i++) {\n    if (list[i] <= list[i - 1]) {\n      throw new Error(\"List is not sorted or contains duplicate\");\n    }\n  }\n}\n\nfunction diffSortedLists(a, b) {\n  var i_a = 0;\n  var i_b = 0;\n\n  if (!a) a = [];\n  if (!b) b = [];\n\n  var a_only = [];\n  var b_only = [];\n\n  checkSorted(a);\n  checkSorted(b);\n\n  while (i_a < a.length && i_b < b.length) {\n    if (a[i_a] === b[i_b]) {\n      i_a++;\n      i_b++;\n    } else if (a[i_a] < b[i_b]) {\n      a_only.push(a[i_a++]);\n    } else {\n      b_only.push(b[i_b++]);\n    }\n  }\n\n  if (i_a < a.length) a_only = a_only.concat(a.slice(i_a));\n  if (i_b < b.length) b_only = b_only.concat(b.slice(i_b));\n  return {\n    removed: a_only,\n    added: b_only\n  };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nfunction dataframeToD3(df) {\n  var names = [];\n  var length = void 0;\n  for (var name in df) {\n    if (df.hasOwnProperty(name)) names.push(name);\n    if (_typeof(df[name]) !== \"object\" || typeof df[name].length === \"undefined\") {\n      throw new Error(\"All fields must be arrays\");\n    } else if (typeof length !== \"undefined\" && length !== df[name].length) {\n      throw new Error(\"All fields must be arrays of the same length\");\n    }\n    length = df[name].length;\n  }\n  var results = [];\n  var item = void 0;\n  for (var row = 0; row < length; row++) {\n    item = {};\n    for (var col = 0; col < names.length; col++) {\n      item[names[col]] = df[names[col]][row];\n    }\n    results.push(item);\n  }\n  return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\n\nvar SubscriptionTracker = exports.SubscriptionTracker = function () {\n  function SubscriptionTracker(emitter) {\n    _classCallCheck(this, SubscriptionTracker);\n\n    this._emitter = emitter;\n    this._subs = {};\n  }\n\n  _createClass(SubscriptionTracker, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var sub = this._emitter.on(eventType, listener);\n      this._subs[sub] = eventType;\n      return sub;\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var sub = this._emitter.off(eventType, listener);\n      if (sub) {\n        delete this._subs[sub];\n      }\n      return sub;\n    }\n  }, {\n    key: \"removeAllListeners\",\n    value: function removeAllListeners() {\n      var _this = this;\n\n      var current_subs = this._subs;\n      this._subs = {};\n      Object.keys(current_subs).forEach(function (sub) {\n        _this._emitter.off(current_subs[sub], sub);\n      });\n    }\n  }]);\n\n  return SubscriptionTracker;\n}();\n\n},{}],12:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Var = function () {\n  function Var(group, name, /*optional*/value) {\n    _classCallCheck(this, Var);\n\n    this._group = group;\n    this._name = name;\n    this._value = value;\n    this._events = new _events2.default();\n  }\n\n  _createClass(Var, [{\n    key: \"get\",\n    value: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"set\",\n    value: function set(value, /*optional*/event) {\n      if (this._value === value) {\n        // Do nothing; the value hasn't changed\n        return;\n      }\n      var oldValue = this._value;\n      this._value = value;\n      // Alert JavaScript listeners that the value has changed\n      var evt = {};\n      if (event && (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\") {\n        for (var k in event) {\n          if (event.hasOwnProperty(k)) evt[k] = event[k];\n        }\n      }\n      evt.oldValue = oldValue;\n      evt.value = value;\n      this._events.trigger(\"change\", evt, this);\n\n      // TODO: Make this extensible, to let arbitrary back-ends know that\n      // something has changed\n      if (global.Shiny && global.Shiny.onInputChange) {\n        global.Shiny.onInputChange(\".clientValue-\" + (this._group.name !== null ? this._group.name + \"-\" : \"\") + this._name, typeof value === \"undefined\" ? null : value);\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._events.on(eventType, listener);\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._events.off(eventType, listener);\n    }\n  }]);\n\n  return Var;\n}();\n\nexports.default = Var;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./events\":1}]},{},[5])\n//# sourceMappingURL=crosstalk.js.map\n"
  },
  {
    "path": "images/02_bellCurve/lib/crosstalk-1.2.0/js/crosstalk.js",
    "content": "(function(){function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s}return e})()({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Events = function () {\n  function Events() {\n    _classCallCheck(this, Events);\n\n    this._types = {};\n    this._seq = 0;\n  }\n\n  _createClass(Events, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var subs = this._types[eventType];\n      if (!subs) {\n        subs = this._types[eventType] = {};\n      }\n      var sub = \"sub\" + this._seq++;\n      subs[sub] = listener;\n      return sub;\n    }\n\n    // Returns false if no match, or string for sub name if matched\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var subs = this._types[eventType];\n      if (typeof listener === \"function\") {\n        for (var key in subs) {\n          if (subs.hasOwnProperty(key)) {\n            if (subs[key] === listener) {\n              delete subs[key];\n              return key;\n            }\n          }\n        }\n        return false;\n      } else if (typeof listener === \"string\") {\n        if (subs && subs[listener]) {\n          delete subs[listener];\n          return listener;\n        }\n        return false;\n      } else {\n        throw new Error(\"Unexpected type for listener\");\n      }\n    }\n  }, {\n    key: \"trigger\",\n    value: function trigger(eventType, arg, thisObj) {\n      var subs = this._types[eventType];\n      for (var key in subs) {\n        if (subs.hasOwnProperty(key)) {\n          subs[key].call(thisObj, arg);\n        }\n      }\n    }\n  }]);\n\n  return Events;\n}();\n\nexports.default = Events;\n\n},{}],2:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.FilterHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _filterset = require(\"./filterset\");\n\nvar _filterset2 = _interopRequireDefault(_filterset);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction getFilterSet(group) {\n  var fsVar = group.var(\"filterset\");\n  var result = fsVar.get();\n  if (!result) {\n    result = new _filterset2.default();\n    fsVar.set(result);\n  }\n  return result;\n}\n\nvar id = 1;\nfunction nextId() {\n  return id++;\n}\n\n/**\n * Use this class to contribute to, and listen for changes to, the filter set\n * for the given group of widgets. Filter input controls should create one\n * `FilterHandle` and only call {@link FilterHandle#set}. Output widgets that\n * wish to displayed filtered data should create one `FilterHandle` and use\n * the {@link FilterHandle#filteredKeys} property and listen for change\n * events.\n *\n * If two (or more) `FilterHandle` instances in the same webpage share the\n * same group name, they will contribute to a single \"filter set\". Each\n * `FilterHandle` starts out with a `null` value, which means they take\n * nothing away from the set of data that should be shown. To make a\n * `FilterHandle` actually remove data from the filter set, set its value to\n * an array of keys which should be displayed. Crosstalk will aggregate the\n * various key arrays by finding their intersection; only keys that are\n * present in all non-null filter handles are considered part of the filter\n * set.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n *   null or undefined (or any other falsy value). This can be changed later\n *   via the {@link FilterHandle#setGroup} method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n *   the event object whenever an event is emitted.\n */\n\nvar FilterHandle = exports.FilterHandle = function () {\n  function FilterHandle(group, extraInfo) {\n    _classCallCheck(this, FilterHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The filterSet that we're tracking, if any. Can change over time.\n    this._filterSet = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._filterVar = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this._id = \"filter\" + nextId();\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this FilterHandle. If `set()` was\n   * previously called on this handle, switching groups will clear those keys\n   * from the old group's filter set. These keys will not be applied to the new\n   * group's filter set either. In other words, `setGroup()` effectively calls\n   * `clear()` before switching groups.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(FilterHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._filterVar) {\n        this._filterVar.off(\"change\", this._varOnChangeSub);\n        this.clear();\n        this._varOnChangeSub = null;\n        this._filterVar = null;\n        this._filterSet = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        group = (0, _group2.default)(group);\n        this._filterSet = getFilterSet(group);\n        this._filterVar = (0, _group2.default)(group).var(\"filter\");\n        var sub = this._filterVar.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Combine the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n    value: function _mergeExtraInfo(extraInfo) {\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Close the handle. This clears this handle's contribution to the filter set,\n     * and unsubscribes all event listeners.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.clear();\n      this.setGroup(null);\n    }\n\n    /**\n     * Clear this handle's contribution to the filter set.\n     *\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     * \n     * @fires FilterHandle#change\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.clear(this._id);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * Set this handle's contribution to the filter set. This array should consist\n     * of the keys of the rows that _should_ be displayed; any keys that are not\n     * present in the array will be considered _filtered out_. Note that multiple\n     * `FilterHandle` instances in the group may each contribute an array of keys,\n     * and only those keys that appear in _all_ of the arrays make it through the\n     * filter.\n     *\n     * @param {string[]} keys - Empty array, or array of keys. To clear the\n     *   filter, don't pass an empty array; instead, use the\n     *   {@link FilterHandle#clear} method.\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     * \n     * @fires FilterHandle#change\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(keys, extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.update(this._id, keys);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * @return {string[]|null} - Either: 1) an array of keys that made it through\n     *   all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n     *   is being applied (all data should be displayed).\n     */\n\n  }, {\n    key: \"on\",\n\n\n    /**\n     * Subscribe to events on this `FilterHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {FilterHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n     *   this subscription.\n     */\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancel event subscriptions created by {@link FilterHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|FilterHandle~listener} listener - Either the callback\n     *   function previously passed into {@link FilterHandle#on}, or the\n     *   string that was returned from {@link FilterHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n  }, {\n    key: \"_onChange\",\n    value: function _onChange(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * @callback FilterHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the filter set, or `null` if no filter set is active),\n     *   `oldValue` (the previous value of the filter set), and `sender` (the\n     *   `FilterHandle` instance that made the change).\n     */\n\n  }, {\n    key: \"filteredKeys\",\n    get: function get() {\n      return this._filterSet ? this._filterSet.value : null;\n    }\n  }]);\n\n  return FilterHandle;\n}();\n\n/**\n * @event FilterHandle#change\n * @type {object}\n * @property {object} value - The new value of the filter set, or `null`\n *   if no filter set is active.\n * @property {object} oldValue - The previous value of the filter set.\n * @property {FilterHandle} sender - The `FilterHandle` instance that\n *   changed the value.\n */\n\n},{\"./events\":1,\"./filterset\":3,\"./group\":4,\"./util\":11}],3:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _util = require(\"./util\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction naturalComparator(a, b) {\n  if (a === b) {\n    return 0;\n  } else if (a < b) {\n    return -1;\n  } else if (a > b) {\n    return 1;\n  }\n}\n\n/**\n * @private\n */\n\nvar FilterSet = function () {\n  function FilterSet() {\n    _classCallCheck(this, FilterSet);\n\n    this.reset();\n  }\n\n  _createClass(FilterSet, [{\n    key: \"reset\",\n    value: function reset() {\n      // Key: handle ID, Value: array of selected keys, or null\n      this._handles = {};\n      // Key: key string, Value: count of handles that include it\n      this._keys = {};\n      this._value = null;\n      this._activeHandles = 0;\n    }\n  }, {\n    key: \"update\",\n    value: function update(handleId, keys) {\n      if (keys !== null) {\n        keys = keys.slice(0); // clone before sorting\n        keys.sort(naturalComparator);\n      }\n\n      var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys),\n          added = _diffSortedLists.added,\n          removed = _diffSortedLists.removed;\n\n      this._handles[handleId] = keys;\n\n      for (var i = 0; i < added.length; i++) {\n        this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n      }\n      for (var _i = 0; _i < removed.length; _i++) {\n        this._keys[removed[_i]]--;\n      }\n\n      this._updateValue(keys);\n    }\n\n    /**\n     * @param {string[]} keys Sorted array of strings that indicate\n     * a superset of possible keys.\n     * @private\n     */\n\n  }, {\n    key: \"_updateValue\",\n    value: function _updateValue() {\n      var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys;\n\n      var handleCount = Object.keys(this._handles).length;\n      if (handleCount === 0) {\n        this._value = null;\n      } else {\n        this._value = [];\n        for (var i = 0; i < keys.length; i++) {\n          var count = this._keys[keys[i]];\n          if (count === handleCount) {\n            this._value.push(keys[i]);\n          }\n        }\n      }\n    }\n  }, {\n    key: \"clear\",\n    value: function clear(handleId) {\n      if (typeof this._handles[handleId] === \"undefined\") {\n        return;\n      }\n\n      var keys = this._handles[handleId];\n      if (!keys) {\n        keys = [];\n      }\n\n      for (var i = 0; i < keys.length; i++) {\n        this._keys[keys[i]]--;\n      }\n      delete this._handles[handleId];\n\n      this._updateValue();\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"_allKeys\",\n    get: function get() {\n      var allKeys = Object.keys(this._keys);\n      allKeys.sort(naturalComparator);\n      return allKeys;\n    }\n  }]);\n\n  return FilterSet;\n}();\n\nexports.default = FilterSet;\n\n},{\"./util\":11}],4:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.default = group;\n\nvar _var2 = require(\"./var\");\n\nvar _var3 = _interopRequireDefault(_var2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nvar groups = global.__crosstalk_groups;\n\nfunction group(groupName) {\n  if (groupName && typeof groupName === \"string\") {\n    if (!groups.hasOwnProperty(groupName)) {\n      groups[groupName] = new Group(groupName);\n    }\n    return groups[groupName];\n  } else if ((typeof groupName === \"undefined\" ? \"undefined\" : _typeof(groupName)) === \"object\" && groupName._vars && groupName.var) {\n    // Appears to already be a group object\n    return groupName;\n  } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === \"string\") {\n    return group(groupName[0]);\n  } else {\n    throw new Error(\"Invalid groupName argument\");\n  }\n}\n\nvar Group = function () {\n  function Group(name) {\n    _classCallCheck(this, Group);\n\n    this.name = name;\n    this._vars = {};\n  }\n\n  _createClass(Group, [{\n    key: \"var\",\n    value: function _var(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name);\n      return this._vars[name];\n    }\n  }, {\n    key: \"has\",\n    value: function has(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      return this._vars.hasOwnProperty(name);\n    }\n  }]);\n\n  return Group;\n}();\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./var\":12}],5:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _selection = require(\"./selection\");\n\nvar _filter = require(\"./filter\");\n\nvar _input = require(\"./input\");\n\nrequire(\"./input_selectize\");\n\nrequire(\"./input_checkboxgroup\");\n\nrequire(\"./input_slider\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar defaultGroup = (0, _group2.default)(\"default\");\n\nfunction var_(name) {\n  return defaultGroup.var(name);\n}\n\nfunction has(name) {\n  return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n  global.Shiny.addCustomMessageHandler(\"update-client-value\", function (message) {\n    if (typeof message.group === \"string\") {\n      (0, _group2.default)(message.group).var(message.name).set(message.value);\n    } else {\n      var_(message.name).set(message.value);\n    }\n  });\n}\n\nvar crosstalk = {\n  group: _group2.default,\n  var: var_,\n  has: has,\n  SelectionHandle: _selection.SelectionHandle,\n  FilterHandle: _filter.FilterHandle,\n  bind: _input.bind\n};\n\n/**\n * @namespace crosstalk\n */\nexports.default = crosstalk;\n\nglobal.crosstalk = crosstalk;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./group\":4,\"./input\":6,\"./input_checkboxgroup\":7,\"./input_selectize\":8,\"./input_slider\":9,\"./selection\":10}],6:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.register = register;\nexports.bind = bind;\nvar $ = global.jQuery;\n\nvar bindings = {};\n\nfunction register(reg) {\n  bindings[reg.className] = reg;\n  if (global.document && global.document.readyState !== \"complete\") {\n    $(function () {\n      bind();\n    });\n  } else if (global.document) {\n    setTimeout(bind, 100);\n  }\n}\n\nfunction bind() {\n  Object.keys(bindings).forEach(function (className) {\n    var binding = bindings[className];\n    $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function (i, el) {\n      bindInstance(binding, el);\n    });\n  });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n  return val.replace(/([!\"#$%&'()*+,./:;<=>?@[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n  var $el = $(el);\n  Object.keys(bindings).forEach(function (className) {\n    if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n      var binding = bindings[className];\n      bindInstance(binding, el);\n    }\n  });\n}\n\nfunction bindInstance(binding, el) {\n  var jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n  var data = JSON.parse(jsonEl[0].innerText);\n\n  var instance = binding.factory(el, data);\n  $(el).data(\"crosstalk-instance\", instance);\n  $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n  var inputBinding = new global.Shiny.InputBinding();\n  var _$ = global.jQuery;\n  _$.extend(inputBinding, {\n    find: function find(scope) {\n      return _$(scope).find(\".crosstalk-input\");\n    },\n    initialize: function initialize(el) {\n      if (!_$(el).hasClass(\"crosstalk-input-bound\")) {\n        bindEl(el);\n      }\n    },\n    getId: function getId(el) {\n      return el.id;\n    },\n    getValue: function getValue(el) {},\n    setValue: function setValue(el, value) {},\n    receiveMessage: function receiveMessage(el, data) {},\n    subscribe: function subscribe(el, callback) {\n      _$(el).data(\"crosstalk-instance\").resume();\n    },\n    unsubscribe: function unsubscribe(el) {\n      _$(el).data(\"crosstalk-instance\").suspend();\n    }\n  });\n  global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{}],7:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-checkboxgroup\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    var $el = $(el);\n    $el.on(\"change\", \"input[type='checkbox']\", function () {\n      var checked = $el.find(\"input[type='checkbox']:checked\");\n      if (checked.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        var keys = {};\n        checked.each(function () {\n          data.map[this.value].forEach(function (key) {\n            keys[key] = true;\n          });\n        });\n        var keyArray = Object.keys(keys);\n        keyArray.sort();\n        lastKnownKeys = keyArray;\n        ctHandle.set(keyArray);\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],8:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-select\",\n\n  factory: function factory(el, data) {\n    /*\n     * items: {value: [...], label: [...]}\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n\n    var first = [{ value: \"\", label: \"(All)\" }];\n    var items = util.dataframeToD3(data.items);\n    var opts = {\n      options: first.concat(items),\n      valueField: \"value\",\n      labelField: \"label\",\n      searchField: \"label\"\n    };\n\n    var select = $(el).find(\"select\")[0];\n\n    var selectize = $(select).selectize(opts)[0].selectize;\n\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    selectize.on(\"change\", function () {\n      if (selectize.items.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        var keys = {};\n        selectize.items.forEach(function (group) {\n          data.map[group].forEach(function (key) {\n            keys[key] = true;\n          });\n        });\n        var keyArray = Object.keys(keys);\n        keyArray.sort();\n        lastKnownKeys = keyArray;\n        ctHandle.set(keyArray);\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6,\"./util\":11}],9:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\nvar strftime = global.strftime;\n\ninput.register({\n  className: \"crosstalk-input-slider\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var opts = {};\n    var $el = $(el).find(\"input\");\n    var dataType = $el.data(\"data-type\");\n    var timeFormat = $el.data(\"time-format\");\n    var round = $el.data(\"round\");\n    var timeFormatter = void 0;\n\n    // Set up formatting functions\n    if (dataType === \"date\") {\n      timeFormatter = strftime.utc();\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"datetime\") {\n      var timezone = $el.data(\"timezone\");\n      if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime;\n\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"number\") {\n      if (typeof round !== \"undefined\") opts.prettify = function (num) {\n        var factor = Math.pow(10, round);\n        return Math.round(num * factor) / factor;\n      };\n    }\n\n    $el.ionRangeSlider(opts);\n\n    function getValue() {\n      var result = $el.data(\"ionRangeSlider\").result;\n\n      // Function for converting numeric value from slider to appropriate type.\n      var convert = void 0;\n      var dataType = $el.data(\"data-type\");\n      if (dataType === \"date\") {\n        convert = function convert(val) {\n          return formatDateUTC(new Date(+val));\n        };\n      } else if (dataType === \"datetime\") {\n        convert = function convert(val) {\n          // Convert ms to s\n          return +val / 1000;\n        };\n      } else {\n        convert = function convert(val) {\n          return +val;\n        };\n      }\n\n      if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n        return [convert(result.from), convert(result.to)];\n      } else {\n        return convert(result.from);\n      }\n    }\n\n    var lastKnownKeys = null;\n\n    $el.on(\"change.crosstalkSliderInput\", function (event) {\n      if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n        var _getValue = getValue(),\n            _getValue2 = _slicedToArray(_getValue, 2),\n            from = _getValue2[0],\n            to = _getValue2[1];\n\n        var keys = [];\n        for (var i = 0; i < data.values.length; i++) {\n          var val = data.values[i];\n          if (val >= from && val <= to) {\n            keys.push(data.keys[i]);\n          }\n        }\n        keys.sort();\n        ctHandle.set(keys);\n        lastKnownKeys = keys;\n      }\n    });\n\n    // let $el = $(el);\n    // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n    //   let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n    //   if (checked.length === 0) {\n    //     ctHandle.clear();\n    //   } else {\n    //     let keys = {};\n    //     checked.each(function() {\n    //       data.map[this.value].forEach(function(key) {\n    //         keys[key] = true;\n    //       });\n    //     });\n    //     let keyArray = Object.keys(keys);\n    //     keyArray.sort();\n    //     ctHandle.set(keyArray);\n    //   }\n    // });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n  var str = n.toString();\n  while (str.length < digits) {\n    str = \"0\" + str;\n  }return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n  if (date instanceof Date) {\n    return date.getUTCFullYear() + \"-\" + padZeros(date.getUTCMonth() + 1, 2) + \"-\" + padZeros(date.getUTCDate(), 2);\n  } else {\n    return null;\n  }\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],10:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.SelectionHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n/**\n * Use this class to read and write (and listen for changes to) the selection\n * for a Crosstalk group. This is intended to be used for linked brushing.\n *\n * If two (or more) `SelectionHandle` instances in the same webpage share the\n * same group name, they will share the same state. Setting the selection using\n * one `SelectionHandle` instance will result in the `value` property instantly\n * changing across the others, and `\"change\"` event listeners on all instances\n * (including the one that initiated the sending) will fire.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n *   null or undefined (or any other falsy value). This can be changed later\n *   via the [SelectionHandle#setGroup](#setGroup) method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n *   the event object whenever an event is emitted.\n */\nvar SelectionHandle = exports.SelectionHandle = function () {\n  function SelectionHandle() {\n    var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n    var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n\n    _classCallCheck(this, SelectionHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._var = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this SelectionHandle. The group\n   * being switched away from (if any) will not have its selection value\n   * modified as a result of calling `setGroup`, even if this handle was the\n   * most recent handle to set the selection of the group.\n   *\n   * The group being switched to (if any) will also not have its selection value\n   * modified as a result of calling `setGroup`. If you want to set the\n   * selection value of the new group, call `set` explicitly.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(SelectionHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._var) {\n        this._var.off(\"change\", this._varOnChangeSub);\n        this._var = null;\n        this._varOnChangeSub = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        this._var = (0, _group2.default)(group).var(\"selection\");\n        var sub = this._var.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Retrieves the current selection for the group represented by this\n     * `SelectionHandle`.\n     *\n     * - If no selection is active, then this value will be falsy.\n     * - If a selection is active, but no data points are selected, then this\n     *   value will be an empty array.\n     * - If a selection is active, and data points are selected, then the keys\n     *   of the selected data points will be present in the array.\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n\n\n    /**\n     * Combines the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n    value: function _mergeExtraInfo(extraInfo) {\n      // Important incidental effect: shallow clone is returned\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n     *   {@link SelectionHandle#value}).\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(selectedKeys, extraInfo) {\n      if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any that were passed\n     *   into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Subscribes to events on this `SelectionHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {SelectionHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n     *   this subscription.\n     */\n\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancels event subscriptions created by {@link SelectionHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|SelectionHandle~listener} listener - Either the callback\n     *   function previously passed into {@link SelectionHandle#on}, or the\n     *   string that was returned from {@link SelectionHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n\n    /**\n     * Shuts down the `SelectionHandle` object.\n     *\n     * Removes all event listeners that were added through this handle.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.setGroup(null);\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._var ? this._var.get() : null;\n    }\n  }]);\n\n  return SelectionHandle;\n}();\n\n/**\n * @callback SelectionHandle~listener\n * @param {Object} event - An object containing details of the event. For\n *   `\"change\"` events, this includes the properties `value` (the new\n *   value of the selection, or `undefined` if no selection is active),\n *   `oldValue` (the previous value of the selection), and `sender` (the\n *   `SelectionHandle` instance that made the change).\n */\n\n/**\n * @event SelectionHandle#change\n * @type {object}\n * @property {object} value - The new value of the selection, or `undefined`\n *   if no selection is active.\n * @property {object} oldValue - The previous value of the selection.\n * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n *   changed the value.\n */\n\n},{\"./events\":1,\"./group\":4,\"./util\":11}],11:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.extend = extend;\nexports.checkSorted = checkSorted;\nexports.diffSortedLists = diffSortedLists;\nexports.dataframeToD3 = dataframeToD3;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction extend(target) {\n  for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n    sources[_key - 1] = arguments[_key];\n  }\n\n  for (var i = 0; i < sources.length; i++) {\n    var src = sources[i];\n    if (typeof src === \"undefined\" || src === null) continue;\n\n    for (var key in src) {\n      if (src.hasOwnProperty(key)) {\n        target[key] = src[key];\n      }\n    }\n  }\n  return target;\n}\n\nfunction checkSorted(list) {\n  for (var i = 1; i < list.length; i++) {\n    if (list[i] <= list[i - 1]) {\n      throw new Error(\"List is not sorted or contains duplicate\");\n    }\n  }\n}\n\nfunction diffSortedLists(a, b) {\n  var i_a = 0;\n  var i_b = 0;\n\n  if (!a) a = [];\n  if (!b) b = [];\n\n  var a_only = [];\n  var b_only = [];\n\n  checkSorted(a);\n  checkSorted(b);\n\n  while (i_a < a.length && i_b < b.length) {\n    if (a[i_a] === b[i_b]) {\n      i_a++;\n      i_b++;\n    } else if (a[i_a] < b[i_b]) {\n      a_only.push(a[i_a++]);\n    } else {\n      b_only.push(b[i_b++]);\n    }\n  }\n\n  if (i_a < a.length) a_only = a_only.concat(a.slice(i_a));\n  if (i_b < b.length) b_only = b_only.concat(b.slice(i_b));\n  return {\n    removed: a_only,\n    added: b_only\n  };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nfunction dataframeToD3(df) {\n  var names = [];\n  var length = void 0;\n  for (var name in df) {\n    if (df.hasOwnProperty(name)) names.push(name);\n    if (_typeof(df[name]) !== \"object\" || typeof df[name].length === \"undefined\") {\n      throw new Error(\"All fields must be arrays\");\n    } else if (typeof length !== \"undefined\" && length !== df[name].length) {\n      throw new Error(\"All fields must be arrays of the same length\");\n    }\n    length = df[name].length;\n  }\n  var results = [];\n  var item = void 0;\n  for (var row = 0; row < length; row++) {\n    item = {};\n    for (var col = 0; col < names.length; col++) {\n      item[names[col]] = df[names[col]][row];\n    }\n    results.push(item);\n  }\n  return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\n\nvar SubscriptionTracker = exports.SubscriptionTracker = function () {\n  function SubscriptionTracker(emitter) {\n    _classCallCheck(this, SubscriptionTracker);\n\n    this._emitter = emitter;\n    this._subs = {};\n  }\n\n  _createClass(SubscriptionTracker, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var sub = this._emitter.on(eventType, listener);\n      this._subs[sub] = eventType;\n      return sub;\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var sub = this._emitter.off(eventType, listener);\n      if (sub) {\n        delete this._subs[sub];\n      }\n      return sub;\n    }\n  }, {\n    key: \"removeAllListeners\",\n    value: function removeAllListeners() {\n      var _this = this;\n\n      var current_subs = this._subs;\n      this._subs = {};\n      Object.keys(current_subs).forEach(function (sub) {\n        _this._emitter.off(current_subs[sub], sub);\n      });\n    }\n  }]);\n\n  return SubscriptionTracker;\n}();\n\n},{}],12:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Var = function () {\n  function Var(group, name, /*optional*/value) {\n    _classCallCheck(this, Var);\n\n    this._group = group;\n    this._name = name;\n    this._value = value;\n    this._events = new _events2.default();\n  }\n\n  _createClass(Var, [{\n    key: \"get\",\n    value: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"set\",\n    value: function set(value, /*optional*/event) {\n      if (this._value === value) {\n        // Do nothing; the value hasn't changed\n        return;\n      }\n      var oldValue = this._value;\n      this._value = value;\n      // Alert JavaScript listeners that the value has changed\n      var evt = {};\n      if (event && (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\") {\n        for (var k in event) {\n          if (event.hasOwnProperty(k)) evt[k] = event[k];\n        }\n      }\n      evt.oldValue = oldValue;\n      evt.value = value;\n      this._events.trigger(\"change\", evt, this);\n\n      // TODO: Make this extensible, to let arbitrary back-ends know that\n      // something has changed\n      if (global.Shiny && global.Shiny.onInputChange) {\n        global.Shiny.onInputChange(\".clientValue-\" + (this._group.name !== null ? this._group.name + \"-\" : \"\") + this._name, typeof value === \"undefined\" ? null : value);\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._events.on(eventType, listener);\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._events.off(eventType, listener);\n    }\n  }]);\n\n  return Var;\n}();\n\nexports.default = Var;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./events\":1}]},{},[5])\n//# sourceMappingURL=crosstalk.js.map\n"
  },
  {
    "path": "images/02_bellCurve/lib/crosstalk-1.2.0/scss/crosstalk.scss",
    "content": "/* Adjust margins outwards, so column contents line up with the edges of the\n   parent of container-fluid. */\n.container-fluid.crosstalk-bscols {\n  margin-left: -30px;\n  margin-right: -30px;\n  white-space: normal;\n}\n\n/* But don't adjust the margins outwards if we're directly under the body,\n   i.e. we were the top-level of something at the console. */\nbody > .container-fluid.crosstalk-bscols {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n  display: inline-block;\n  padding-right: 12px;\n  vertical-align: top;\n}\n\n@media only screen and (max-width:480px) {\n  .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n    display: block;\n    padding-right: inherit;\n  }\n}\n\n/* Relevant BS3 styles to make filter_checkbox() look reasonable without Bootstrap */\n.crosstalk-input {\n  margin-bottom: 15px; /* a la .form-group */\n  .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  input[type=\"checkbox\"] {\n    margin: 4px 0 0;\n    margin-top: 1px;\n    line-height: normal;\n  }\n  .checkbox {\n    position: relative;\n    display: block;\n    margin-top: 10px;\n    margin-bottom: 10px;\n  }\n  .checkbox > label{\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: 400;\n    cursor: pointer;\n  }\n  .checkbox input[type=\"checkbox\"],\n  .checkbox-inline input[type=\"checkbox\"] {\n    position: absolute;\n    margin-top: 2px;\n    margin-left: -20px;\n  }\n  .checkbox + .checkbox {\n    margin-top: -5px;\n  }\n  .checkbox-inline {\n    position: relative;\n    display: inline-block;\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: 400;\n    vertical-align: middle;\n    cursor: pointer;\n  }\n  .checkbox-inline + .checkbox-inline {\n    margin-top: 0;\n    margin-left: 10px;\n  }\n}\n"
  },
  {
    "path": "images/02_bellCurve/lib/htmlwidgets-1.3/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = eval(\"(\" + task + \")\");\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n  // Wait until after the document has loaded to render the widgets.\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      window.HTMLWidgets.staticRender();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        window.HTMLWidgets.staticRender();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = eval(\"(\" + o[part] + \")\");\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "images/02_bellCurve/lib/htmlwidgets-1.5.1/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = tryEval(task);\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  // Attempt eval() both with and without enclosing in parentheses.\n  // Note that enclosing coerces a function declaration into\n  // an expression that eval() can parse\n  // (otherwise, a SyntaxError is thrown)\n  function tryEval(code) {\n    var result = null;\n    try {\n      result = eval(code);\n    } catch(error) {\n      if (!error instanceof SyntaxError) {\n        throw error;\n      }\n      try {\n        result = eval(\"(\" + code + \")\");\n      } catch(e) {\n        if (e instanceof SyntaxError) {\n          throw error;\n        } else {\n          throw e;\n        }\n      }\n    }\n    return result;\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n\n  function has_jQuery3() {\n    if (!window.jQuery) {\n      return false;\n    }\n    var $version = window.jQuery.fn.jquery;\n    var $major_version = parseInt($version.split(\".\")[0]);\n    return $major_version >= 3;\n  }\n\n  /*\n  / Shiny 1.4 bumped jQuery from 1.x to 3.x which means jQuery's\n  / on-ready handler (i.e., $(fn)) is now asyncronous (i.e., it now\n  / really means $(setTimeout(fn)).\n  / https://jquery.com/upgrade-guide/3.0/#breaking-change-document-ready-handlers-are-now-asynchronous\n  /\n  / Since Shiny uses $() to schedule initShiny, shiny>=1.4 calls initShiny\n  / one tick later than it did before, which means staticRender() is\n  / called renderValue() earlier than (advanced) widget authors might be expecting.\n  / https://github.com/rstudio/shiny/issues/2630\n  /\n  / For a concrete example, leaflet has some methods (e.g., updateBounds)\n  / which reference Shiny methods registered in initShiny (e.g., setInputValue).\n  / Since leaflet is privy to this life-cycle, it knows to use setTimeout() to\n  / delay execution of those methods (until Shiny methods are ready)\n  / https://github.com/rstudio/leaflet/blob/18ec981/javascript/src/index.js#L266-L268\n  /\n  / Ideally widget authors wouldn't need to use this setTimeout() hack that\n  / leaflet uses to call Shiny methods on a staticRender(). In the long run,\n  / the logic initShiny should be broken up so that method registration happens\n  / right away, but binding happens later.\n  */\n  function maybeStaticRenderLater() {\n    if (shinyMode && has_jQuery3()) {\n      window.jQuery(window.HTMLWidgets.staticRender);\n    } else {\n      window.HTMLWidgets.staticRender();\n    }\n  }\n\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      maybeStaticRenderLater();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        maybeStaticRenderLater();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = tryEval(o[part]);\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "images/02_bellCurve/lib/htmlwidgets-1.5.4/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = tryEval(task);\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  // Attempt eval() both with and without enclosing in parentheses.\n  // Note that enclosing coerces a function declaration into\n  // an expression that eval() can parse\n  // (otherwise, a SyntaxError is thrown)\n  function tryEval(code) {\n    var result = null;\n    try {\n      result = eval(\"(\" + code + \")\");\n    } catch(error) {\n      if (!(error instanceof SyntaxError)) {\n        throw error;\n      }\n      try {\n        result = eval(code);\n      } catch(e) {\n        if (e instanceof SyntaxError) {\n          throw error;\n        } else {\n          throw e;\n        }\n      }\n    }\n    return result;\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n\n  function has_jQuery3() {\n    if (!window.jQuery) {\n      return false;\n    }\n    var $version = window.jQuery.fn.jquery;\n    var $major_version = parseInt($version.split(\".\")[0]);\n    return $major_version >= 3;\n  }\n\n  /*\n  / Shiny 1.4 bumped jQuery from 1.x to 3.x which means jQuery's\n  / on-ready handler (i.e., $(fn)) is now asyncronous (i.e., it now\n  / really means $(setTimeout(fn)).\n  / https://jquery.com/upgrade-guide/3.0/#breaking-change-document-ready-handlers-are-now-asynchronous\n  /\n  / Since Shiny uses $() to schedule initShiny, shiny>=1.4 calls initShiny\n  / one tick later than it did before, which means staticRender() is\n  / called renderValue() earlier than (advanced) widget authors might be expecting.\n  / https://github.com/rstudio/shiny/issues/2630\n  /\n  / For a concrete example, leaflet has some methods (e.g., updateBounds)\n  / which reference Shiny methods registered in initShiny (e.g., setInputValue).\n  / Since leaflet is privy to this life-cycle, it knows to use setTimeout() to\n  / delay execution of those methods (until Shiny methods are ready)\n  / https://github.com/rstudio/leaflet/blob/18ec981/javascript/src/index.js#L266-L268\n  /\n  / Ideally widget authors wouldn't need to use this setTimeout() hack that\n  / leaflet uses to call Shiny methods on a staticRender(). In the long run,\n  / the logic initShiny should be broken up so that method registration happens\n  / right away, but binding happens later.\n  */\n  function maybeStaticRenderLater() {\n    if (shinyMode && has_jQuery3()) {\n      window.jQuery(window.HTMLWidgets.staticRender);\n    } else {\n      window.HTMLWidgets.staticRender();\n    }\n  }\n\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      maybeStaticRenderLater();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        maybeStaticRenderLater();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = tryEval(o[part]);\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "images/02_bellCurve/lib/jquery-1.11.3/jquery-AUTHORS.txt",
    "content": "Authors ordered by first contribution.\n\nJohn Resig <jeresig@gmail.com>\nGilles van den Hoven <gilles0181@gmail.com>\nMichael Geary <mike@geary.com>\nStefan Petre <stefan.petre@gmail.com>\nYehuda Katz <wycats@gmail.com>\nCorey Jewett <cj@syntheticplayground.com>\nKlaus Hartl <klaus.hartl@googlemail.com>\nFranck Marcia <franck.marcia@gmail.com>\nJörn Zaefferer <joern.zaefferer@gmail.com>\nPaul Bakaus <paul.bakaus@googlemail.com>\nBrandon Aaron <brandon.aaron@gmail.com>\nMike Alsup <malsup@gmail.com>\nDave Methvin <dave.methvin@gmail.com>\nEd Engelhardt <edengelhardt@gmail.com>\nSean Catchpole <littlecooldude@gmail.com>\nPaul Mclanahan <pmclanahan@gmail.com>\nDavid Serduke <davidserduke@gmail.com>\nRichard D. Worth <rdworth@gmail.com>\nScott González <scott.gonzalez@gmail.com>\nAriel Flesler <aflesler@gmail.com>\nJon Evans <jon@springyweb.com>\nTJ Holowaychuk <tj@vision-media.ca>\nMichael Bensoussan <mickey@seesmic.com>\nRobert Katić <robert.katic@gmail.com>\nLouis-Rémi Babé <lrbabe@gmail.com>\nEarle Castledine <mrspeaker@gmail.com>\nDamian Janowski <damian.janowski@gmail.com>\nRich Dougherty <rich@rd.gen.nz>\nKim Dalsgaard <kim@kimdalsgaard.com>\nAndrea Giammarchi <andrea.giammarchi@gmail.com>\nMark Gibson <jollytoad@gmail.com>\nKarl Swedberg <kswedberg@gmail.com>\nJustin Meyer <justinbmeyer@gmail.com>\nBen Alman <cowboy@rj3.net>\nJames Padolsey <cla@padolsey.net>\nDavid Petersen <public@petersendidit.com>\nBatiste Bieler <batiste@gmail.com>\nAlexander Farkas <info@corrupt-system.de>\nRick Waldron <waldron.rick@gmail.com>\nFilipe Fortes <filipe@fortes.com>\nNeeraj Singh <neerajdotname@gmail.com>\nPaul Irish <paul.irish@gmail.com>\nIraê Carvalho <irae@irae.pro.br>\nMatt Curry <matt@pseudocoder.com>\nMichael Monteleone <michael@michaelmonteleone.net>\nNoah Sloan <noah.sloan@gmail.com>\nTom Viner <github@viner.tv>\nDouglas Neiner <doug@pixelgraphics.us>\nAdam J. Sontag <ajpiano@ajpiano.com>\nDave Reed <dareed@microsoft.com>\nRalph Whitbeck <ralph.whitbeck@gmail.com>\nCarl Fürstenberg <azatoth@gmail.com>\nJacob Wright <jacwright@gmail.com>\nJ. Ryan Stinnett <jryans@gmail.com>\nunknown <Igen005@.upcorp.ad.uprr.com>\ntemp01 <temp01irc@gmail.com>\nHeungsub Lee <h@subl.ee>\nColin Snover <colin@alpha.zetafleet.com>\nRyan W Tenney <ryan@10e.us>\nPinhook <contact@pinhooklabs.com>\nRon Otten <r.j.g.otten@gmail.com>\nJephte Clain <Jephte.Clain@univ-reunion.fr>\nAnton Matzneller <obhvsbypqghgc@gmail.com>\nAlex Sexton <AlexSexton@gmail.com>\nDan Heberden <danheberden@gmail.com>\nHenri Wiechers <hwiechers@gmail.com>\nRussell Holbrook <russell.holbrook@patch.com>\nJulian Aubourg <aubourg.julian@gmail.com>\nGianni Alessandro Chiappetta <gianni@runlevel6.org>\nScott Jehl <scott@scottjehl.com>\nJames Burke <jrburke@gmail.com>\nJonas Pfenniger <jonas@pfenniger.name>\nXavi Ramirez <xavi.rmz@gmail.com>\nJared Grippe <jared@deadlyicon.com>\nSylvester Keil <sylvester@keil.or.at>\nBrandon Sterne <bsterne@mozilla.com>\nMathias Bynens <mathias@qiwi.be>\nTimmy Willison <timmywillisn@gmail.com>\nCorey Frang <gnarf@gnarf.net>\nDigitalxero <digitalxero>\nAnton Kovalyov <anton@kovalyov.net>\nDavid Murdoch <musicisair@yahoo.com>\nJosh Varner <josh.varner@gmail.com>\nCharles McNulty <cmcnulty@kznf.com>\nJordan Boesch <jboesch26@gmail.com>\nJess Thrysoee <jess@thrysoee.dk>\nMichael Murray <m@murz.net>\nLee Carpenter <elcarpie@gmail.com>\nAlexis Abril <me@alexisabril.com>\nRob Morgan <robbym@gmail.com>\nJohn Firebaugh <john_firebaugh@bigfix.com>\nSam Bisbee <sam@sbisbee.com>\nGilmore Davidson <gilmoreorless@gmail.com>\nBrian Brennan <me@brianlovesthings.com>\nXavier Montillet <xavierm02.net@gmail.com>\nDaniel Pihlstrom <sciolist.se@gmail.com>\nSahab Yazdani <sahab.yazdani+github@gmail.com>\navaly <github-com@agachi.name>\nScott Hughes <hi@scott-hughes.me>\nMike Sherov <mike.sherov@gmail.com>\nGreg Hazel <ghazel@gmail.com>\nSchalk Neethling <schalk@ossreleasefeed.com>\nDenis Knauf <Denis.Knauf@gmail.com>\nTimo Tijhof <krinklemail@gmail.com>\nSteen Nielsen <swinedk@gmail.com>\nAnton Ryzhov <anton@ryzhov.me>\nShi Chuan <shichuanr@gmail.com>\nBerker Peksag <berker.peksag@gmail.com>\nToby Brain <tobyb@freshview.com>\nMatt Mueller <mattmuelle@gmail.com>\nJustin <drakefjustin@gmail.com>\nDaniel Herman <daniel.c.herman@gmail.com>\nOleg Gaidarenko <markelog@gmail.com>\nRichard Gibson <richard.gibson@gmail.com>\nRafaël Blais Masson <rafbmasson@gmail.com>\ncmc3cn <59194618@qq.com>\nJoe Presbrey <presbrey@gmail.com>\nSindre Sorhus <sindresorhus@gmail.com>\nArne de Bree <arne@bukkie.nl>\nVladislav Zarakovsky <vlad.zar@gmail.com>\nAndrew E Monat <amonat@gmail.com>\nOskari <admin@o-programs.com>\nJoao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>\ntsinha <tsinha@Anthonys-MacBook-Pro.local>\nMatt Farmer <matt@frmr.me>\nTrey Hunner <treyhunner@gmail.com>\nJason Moon <jmoon@socialcast.com>\nJeffery To <jeffery.to@gmail.com>\nKris Borchers <kris.borchers@gmail.com>\nVladimir Zhuravlev <private.face@gmail.com>\nJacob Thornton <jacobthornton@gmail.com>\nChad Killingsworth <chadkillingsworth@missouristate.edu>\nNowres Rafid <nowres.rafed@gmail.com>\nDavid Benjamin <davidben@mit.edu>\nUri Gilad <antishok@gmail.com>\nChris Faulkner <thefaulkner@gmail.com>\nElijah Manor <elijah.manor@gmail.com>\nDaniel Chatfield <chatfielddaniel@gmail.com>\nNikita Govorov <nikita.govorov@gmail.com>\nWesley Walser <wwalser@atlassian.com>\nMike Pennisi <mike@mikepennisi.com>\nMarkus Staab <markus.staab@redaxo.de>\nDave Riddle <david@joyvuu.com>\nCallum Macrae <callum@lynxphp.com>\nBenjamin Truyman <bentruyman@gmail.com>\nJames Huston <james@jameshuston.net>\nErick Ruiz de Chávez <erickrdch@gmail.com>\nDavid Bonner <dbonner@cogolabs.com>\nAkintayo Akinwunmi <aakinwunmi@judge.com>\nMORGAN <morgan@morgangraphics.com>\nIsmail Khair <ismail.khair@gmail.com>\nCarl Danley <carldanley@gmail.com>\nMike Petrovich <michael.c.petrovich@gmail.com>\nGreg Lavallee <greglavallee@wapolabs.com>\nDaniel Gálvez <dgalvez@editablething.com>\nSai Lung Wong <sai.wong@huffingtonpost.com>\nTom H Fuertes <TomFuertes@gmail.com>\nRoland Eckl <eckl.roland@googlemail.com>\nJay Merrifield <fracmak@gmail.com>\nAllen J Schmidt Jr <cobrasoft@gmail.com>\nJonathan Sampson <jjdsampson@gmail.com>\nMarcel Greter <marcel.greter@ocbnet.ch>\nMatthias Jäggli <matthias.jaeggli@gmail.com>\nDavid Fox <dfoxinator@gmail.com>\nYiming He <yiminghe@gmail.com>\nDevin Cooper <cooper.semantics@gmail.com>\nPaul Ramos <paul.b.ramos@gmail.com>\nRod Vagg <rod@vagg.org>\nBennett Sorbo <bsorbo@gmail.com>\nSebastian Burkhard <sebi.burkhard@gmail.com>\nnanto <nanto@moon.email.ne.jp>\nDanil Somsikov <danilasomsikov@gmail.com>\nRyunosuke SATO <tricknotes.rs@gmail.com>\nJean Boussier <jean.boussier@gmail.com>\nAdam Coulombe <me@adam.co>\nAndrew Plummer <plummer.andrew@gmail.com>\nMark Raddatz <mraddatz@gmail.com>\nDmitry Gusev <dmitry.gusev@gmail.com>\nMichał Gołębiowski <m.goleb@gmail.com>\nNguyen Phuc Lam <ruado1987@gmail.com>\nTom H Fuertes <tomfuertes@gmail.com>\nBrandon Johnson <bjohn465+github@gmail.com>\nJason Bedard <jason+jquery@jbedard.ca>\nKyle Robinson Young <kyle@dontkry.com>\nRenato Oliveira dos Santos <ros3@cin.ufpe.br>\nChris Talkington <chris@talkingtontech.com>\nEddie Monge <eddie@eddiemonge.com>\nTerry Jones <terry@jon.es>\nJason Merino <jasonmerino@gmail.com>\nJeremy Dunck <jdunck@gmail.com>\nChris Price <price.c@gmail.com>\nAmey Sakhadeo <me@ameyms.com>\nAnthony Ryan <anthonyryan1@gmail.com>\nDominik D. Geyer <dominik.geyer@gmail.com>\nGeorge Kats <katsgeorgeek@gmail.com>\nLihan Li <frankieteardrop@gmail.com>\nRonny Springer <springer.ronny@gmail.com>\nMarian Sollmann <marian.sollmann@cargomedia.ch>\nCorey Frang <gnarf37@gmail.com>\nChris Antaki <ChrisAntaki@gmail.com>\nNoah Hamann <njhamann@gmail.com>\nDavid Hong <d.hong@me.com>\nJakob Stoeck <jakob@pokermania.de>\nChristopher Jones <christopherjonesqed@gmail.com>\nForbes Lindesay <forbes@lindesay.co.uk>\nJohn Paul <john@johnkpaul.com>\nS. Andrew Sheppard <andrew@wq.io>\nLeonardo Balter <leonardo.balter@gmail.com>\nRoman Reiß <me@silverwind.io>\nBenjy Cui <benjytrys@gmail.com>\nRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>\nJohn Hoven <hovenj@gmail.com>\nChristian Kosmowski <ksmwsk@gmail.com>\nLiang Peng <poppinlp@gmail.com>\nTJ VanToll <tj.vantoll@gmail.com>\n"
  },
  {
    "path": "images/02_bellCurve/lib/jquery-1.11.3/jquery.js",
    "content": "/*!\n * jQuery JavaScript Library v1.11.3\n * http://jquery.com/\n *\n * Includes Sizzle.js\n * http://sizzlejs.com/\n *\n * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2015-04-28T16:19Z\n */\n\n(function( global, factory ) {\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\t\t// For CommonJS and CommonJS-like environments where a proper window is present,\n\t\t// execute the factory and get jQuery\n\t\t// For environments that do not inherently posses a window with a document\n\t\t// (such as Node.js), expose a jQuery-making factory as module.exports\n\t\t// This accentuates the need for the creation of a real window\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n}(typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Can't do this because several apps including ASP.NET trace\n// the stack via arguments.caller.callee and Firefox dies if\n// you try to trace through \"use strict\" call chains. (#13335)\n// Support: Firefox 18+\n//\n\nvar deletedIds = [];\n\nvar slice = deletedIds.slice;\n\nvar concat = deletedIds.concat;\n\nvar push = deletedIds.push;\n\nvar indexOf = deletedIds.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar support = {};\n\n\n\nvar\n\tversion = \"1.11.3\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t},\n\n\t// Support: Android<4.1, IE<9\n\t// Make sure we trim BOM and NBSP\n\trtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g,\n\n\t// Matches dashed string for camelizing\n\trmsPrefix = /^-ms-/,\n\trdashAlpha = /-([\\da-z])/gi,\n\n\t// Used by jQuery.camelCase as callback to replace()\n\tfcamelCase = function( all, letter ) {\n\t\treturn letter.toUpperCase();\n\t};\n\njQuery.fn = jQuery.prototype = {\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// Start with an empty selector\n\tselector: \"\",\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\t\treturn num != null ?\n\n\t\t\t// Return just the one element from the set\n\t\t\t( num < 0 ? this[ num + this.length ] : this[ num ] ) :\n\n\t\t\t// Return all the elements in a clean array\n\t\t\tslice.call( this );\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\t\tret.context = this.context;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\t// (You can seed the arguments with an array of args, but this is\n\t// only used internally.)\n\teach: function( callback, args ) {\n\t\treturn jQuery.each( this, callback, args );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map(this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t}));\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor(null);\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: deletedIds.sort,\n\tsplice: deletedIds.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar src, copyIsArray, copy, name, options, clone,\n\t\ttarget = arguments[0] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !jQuery.isFunction(target) ) {\n\t\ttarget = {};\n\t}\n\n\t// extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\t\t// Only deal with non-null/undefined values\n\t\tif ( (options = arguments[ i ]) != null ) {\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tsrc = target[ name ];\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {\n\t\t\t\t\tif ( copyIsArray ) {\n\t\t\t\t\t\tcopyIsArray = false;\n\t\t\t\t\t\tclone = src && jQuery.isArray(src) ? src : [];\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src && jQuery.isPlainObject(src) ? src : {};\n\t\t\t\t\t}\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend({\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\t// See test/unit/core.js for details concerning isFunction.\n\t// Since version 1.3, DOM methods and functions like alert\n\t// aren't supported. They return false on IE (#2968).\n\tisFunction: function( obj ) {\n\t\treturn jQuery.type(obj) === \"function\";\n\t},\n\n\tisArray: Array.isArray || function( obj ) {\n\t\treturn jQuery.type(obj) === \"array\";\n\t},\n\n\tisWindow: function( obj ) {\n\t\t/* jshint eqeqeq: false */\n\t\treturn obj != null && obj == obj.window;\n\t},\n\n\tisNumeric: function( obj ) {\n\t\t// parseFloat NaNs numeric-cast false positives (null|true|false|\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t// adding 1 corrects loss of precision from parseFloat (#15100)\n\t\treturn !jQuery.isArray( obj ) && (obj - parseFloat( obj ) + 1) >= 0;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\tisPlainObject: function( obj ) {\n\t\tvar key;\n\n\t\t// Must be an Object.\n\t\t// Because of IE, we also have to check the presence of the constructor property.\n\t\t// Make sure that DOM nodes and window objects don't pass through, as well\n\t\tif ( !obj || jQuery.type(obj) !== \"object\" || obj.nodeType || jQuery.isWindow( obj ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\ttry {\n\t\t\t// Not own constructor property must be Object\n\t\t\tif ( obj.constructor &&\n\t\t\t\t!hasOwn.call(obj, \"constructor\") &&\n\t\t\t\t!hasOwn.call(obj.constructor.prototype, \"isPrototypeOf\") ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\t// IE8,9 Will throw exceptions on certain host objects #9897\n\t\t\treturn false;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Handle iteration over inherited properties before own properties.\n\t\tif ( support.ownLast ) {\n\t\t\tfor ( key in obj ) {\n\t\t\t\treturn hasOwn.call( obj, key );\n\t\t\t}\n\t\t}\n\n\t\t// Own properties are enumerated firstly, so to speed up,\n\t\t// if last one is own, then all properties are own.\n\t\tfor ( key in obj ) {}\n\n\t\treturn key === undefined || hasOwn.call( obj, key );\n\t},\n\n\ttype: function( obj ) {\n\t\tif ( obj == null ) {\n\t\t\treturn obj + \"\";\n\t\t}\n\t\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\t\tclass2type[ toString.call(obj) ] || \"object\" :\n\t\t\ttypeof obj;\n\t},\n\n\t// Evaluates a script in a global context\n\t// Workarounds based on findings by Jim Driscoll\n\t// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context\n\tglobalEval: function( data ) {\n\t\tif ( data && jQuery.trim( data ) ) {\n\t\t\t// We use execScript on Internet Explorer\n\t\t\t// We use an anonymous function so that context is window\n\t\t\t// rather than jQuery in Firefox\n\t\t\t( window.execScript || function( data ) {\n\t\t\t\twindow[ \"eval\" ].call( window, data );\n\t\t\t} )( data );\n\t\t}\n\t},\n\n\t// Convert dashed to camelCase; used by the css and data modules\n\t// Microsoft forgot to hump their vendor prefix (#9572)\n\tcamelCase: function( string ) {\n\t\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n\t},\n\n\tnodeName: function( elem, name ) {\n\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\t},\n\n\t// args is for internal usage only\n\teach: function( obj, callback, args ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = obj.length,\n\t\t\tisArray = isArraylike( obj );\n\n\t\tif ( args ) {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// A special, fast, case for the most common use of each\n\t\t} else {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// Support: Android<4.1, IE<9\n\ttrim: function( text ) {\n\t\treturn text == null ?\n\t\t\t\"\" :\n\t\t\t( text + \"\" ).replace( rtrim, \"\" );\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArraylike( Object(arr) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\tvar len;\n\n\t\tif ( arr ) {\n\t\t\tif ( indexOf ) {\n\t\t\t\treturn indexOf.call( arr, elem, i );\n\t\t\t}\n\n\t\t\tlen = arr.length;\n\t\t\ti = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t// Skip accessing in sparse arrays\n\t\t\t\tif ( i in arr && arr[ i ] === elem ) {\n\t\t\t\t\treturn i;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn -1;\n\t},\n\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\twhile ( j < len ) {\n\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Workaround casting of .length to NaN on otherwise arraylike objects (e.g., NodeLists)\n\t\tif ( len !== len ) {\n\t\t\twhile ( second[j] !== undefined ) {\n\t\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t\t}\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tisArray = isArraylike( elems ),\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArray ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn concat.apply( [], ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// Bind a function to a context, optionally partially applying any\n\t// arguments.\n\tproxy: function( fn, context ) {\n\t\tvar args, proxy, tmp;\n\n\t\tif ( typeof context === \"string\" ) {\n\t\t\ttmp = fn[ context ];\n\t\t\tcontext = fn;\n\t\t\tfn = tmp;\n\t\t}\n\n\t\t// Quick check to determine if target is callable, in the spec\n\t\t// this throws a TypeError, but we will just return undefined.\n\t\tif ( !jQuery.isFunction( fn ) ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\t// Simulated bind\n\t\targs = slice.call( arguments, 2 );\n\t\tproxy = function() {\n\t\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t\t};\n\n\t\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\t\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\t\treturn proxy;\n\t},\n\n\tnow: function() {\n\t\treturn +( new Date() );\n\t},\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n});\n\n// Populate the class2type map\njQuery.each(\"Boolean Number String Function Array Date RegExp Object Error\".split(\" \"), function(i, name) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n});\n\nfunction isArraylike( obj ) {\n\n\t// Support: iOS 8.2 (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = \"length\" in obj && obj.length,\n\t\ttype = jQuery.type( obj );\n\n\tif ( type === \"function\" || jQuery.isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\tif ( obj.nodeType === 1 && length ) {\n\t\treturn true;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.2.0-pre\n * http://sizzlejs.com/\n *\n * Copyright 2008, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2014-12-16\n */\n(function( window ) {\n\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// General-purpose constants\n\tMAX_NEGATIVE = 1 << 31,\n\n\t// Instance methods\n\thasOwn = ({}).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpush_native = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\t// Use a stripped-down indexOf as it's faster than native\n\t// http://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[i] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\t// http://www.w3.org/TR/css3-syntax/#characters\n\tcharacterEncoding = \"(?:\\\\\\\\.|[\\\\w-]|[^\\\\x00-\\\\xa0])+\",\n\n\t// Loosely modeled on CSS identifier characters\n\t// An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors\n\t// Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier\n\tidentifier = characterEncoding.replace( \"w\", \"w#\" ),\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + characterEncoding + \")(?:\" + whitespace +\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\t\t// \"Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" + whitespace +\n\t\t\"*\\\\]\",\n\n\tpseudos = \":(\" + characterEncoding + \")(?:\\\\((\" +\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" + whitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace + \"*\" ),\n\n\trattributeQuotes = new RegExp( \"=\" + whitespace + \"*([^\\\\]'\\\"]*?)\" + whitespace + \"*\\\\]\", \"g\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + characterEncoding + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + characterEncoding + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + characterEncoding.replace( \"w\", \"w*\" ) + \")\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" + whitespace +\n\t\t\t\"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" + whitespace +\n\t\t\t\"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace + \"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" +\n\t\t\twhitespace + \"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\trescape = /'|\\\\/g,\n\n\t// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\([\\\\da-f]{1,6}\" + whitespace + \"?|(\" + whitespace + \")|.)\", \"ig\" ),\n\tfunescape = function( _, escaped, escapedWhitespace ) {\n\t\tvar high = \"0x\" + escaped - 0x10000;\n\t\t// NaN means non-codepoint\n\t\t// Support: Firefox<24\n\t\t// Workaround erroneous numeric interpretation of +\"0x\"\n\t\treturn high !== high || escapedWhitespace ?\n\t\t\tescaped :\n\t\t\thigh < 0 ?\n\t\t\t\t// BMP codepoint\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\t// Supplemental Plane codepoint (surrogate pair)\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t};\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t(arr = slice.call( preferredDoc.childNodes )),\n\t\tpreferredDoc.childNodes\n\t);\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpush_native.apply( target, slice.call(els) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( (target[j++] = els[i++]) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar match, elem, m, nodeType,\n\t\t// QSA vars\n\t\ti, groups, old, nid, newContext, newSelector;\n\n\tif ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\n\tcontext = context || document;\n\tresults = results || [];\n\tnodeType = context.nodeType;\n\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\tif ( !seed && documentIsHTML ) {\n\n\t\t// Try to shortcut find operations when possible (e.g., not under DocumentFragment)\n\t\tif ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {\n\t\t\t// Speed-up: Sizzle(\"#ID\")\n\t\t\tif ( (m = match[1]) ) {\n\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\telem = context.getElementById( m );\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document (jQuery #6963)\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE, Opera, and Webkit return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t// Context is not a document\n\t\t\t\t\tif ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&\n\t\t\t\t\t\tcontains( context, elem ) && elem.id === m ) {\n\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Speed-up: Sizzle(\"TAG\")\n\t\t\t} else if ( match[2] ) {\n\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\treturn results;\n\n\t\t\t// Speed-up: Sizzle(\".CLASS\")\n\t\t\t} else if ( (m = match[3]) && support.getElementsByClassName ) {\n\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\treturn results;\n\t\t\t}\n\t\t}\n\n\t\t// QSA path\n\t\tif ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {\n\t\t\tnid = old = expando;\n\t\t\tnewContext = context;\n\t\t\tnewSelector = nodeType !== 1 && selector;\n\n\t\t\t// qSA works strangely on Element-rooted queries\n\t\t\t// We can work around this by specifying an extra ID on the root\n\t\t\t// and working up from there (Thanks to Andrew Dupont for the technique)\n\t\t\t// IE 8 doesn't work on object elements\n\t\t\tif ( nodeType === 1 && context.nodeName.toLowerCase() !== \"object\" ) {\n\t\t\t\tgroups = tokenize( selector );\n\n\t\t\t\tif ( (old = context.getAttribute(\"id\")) ) {\n\t\t\t\t\tnid = old.replace( rescape, \"\\\\$&\" );\n\t\t\t\t} else {\n\t\t\t\t\tcontext.setAttribute( \"id\", nid );\n\t\t\t\t}\n\t\t\t\tnid = \"[id='\" + nid + \"'] \";\n\n\t\t\t\ti = groups.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tgroups[i] = nid + toSelector( groups[i] );\n\t\t\t\t}\n\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) || context;\n\t\t\t\tnewSelector = groups.join(\",\");\n\t\t\t}\n\n\t\t\tif ( newSelector ) {\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch(qsaError) {\n\t\t\t\t} finally {\n\t\t\t\t\tif ( !old ) {\n\t\t\t\t\t\tcontext.removeAttribute(\"id\");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {Function(string, Object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn (cache[ key + \" \" ] = value);\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created div and expects a boolean result\n */\nfunction assert( fn ) {\n\tvar div = document.createElement(\"div\");\n\n\ttry {\n\t\treturn !!fn( div );\n\t} catch (e) {\n\t\treturn false;\n\t} finally {\n\t\t// Remove from its parent by default\n\t\tif ( div.parentNode ) {\n\t\t\tdiv.parentNode.removeChild( div );\n\t\t}\n\t\t// release memory in IE\n\t\tdiv = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split(\"|\"),\n\t\ti = attrs.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[i] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\t( ~b.sourceIndex || MAX_NEGATIVE ) -\n\t\t\t( ~a.sourceIndex || MAX_NEGATIVE );\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( (cur = cur.nextSibling) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn (name === \"input\" || name === \"button\") && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction(function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction(function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ (j = matchIndexes[i]) ] ) {\n\t\t\t\t\tseed[j] = !(matches[j] = seed[j]);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t});\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\t// documentElement is verified for cases where it doesn't yet exist\n\t// (such as loading iframes in IE - #4833)\n\tvar documentElement = elem && (elem.ownerDocument || elem).documentElement;\n\treturn documentElement ? documentElement.nodeName !== \"HTML\" : false;\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, parent,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// If no document and documentElement is available, return\n\tif ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Set our document\n\tdocument = doc;\n\tdocElem = doc.documentElement;\n\tparent = doc.defaultView;\n\n\t// Support: IE>8\n\t// If iframe document is assigned to \"document\" variable and if iframe has been reloaded,\n\t// IE will throw \"permission denied\" error when accessing \"document\" variable, see jQuery #13936\n\t// IE6-8 do not support the defaultView property so parent will be undefined\n\tif ( parent && parent !== parent.top ) {\n\t\t// IE11 does not have attachEvent, so all must suffer\n\t\tif ( parent.addEventListener ) {\n\t\t\tparent.addEventListener( \"unload\", unloadHandler, false );\n\t\t} else if ( parent.attachEvent ) {\n\t\t\tparent.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t/* Support tests\n\t---------------------------------------------------------------------- */\n\tdocumentIsHTML = !isXML( doc );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert(function( div ) {\n\t\tdiv.className = \"i\";\n\t\treturn !div.getAttribute(\"className\");\n\t});\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert(function( div ) {\n\t\tdiv.appendChild( doc.createComment(\"\") );\n\t\treturn !div.getElementsByTagName(\"*\").length;\n\t});\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( doc.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert(function( div ) {\n\t\tdocElem.appendChild( div ).id = expando;\n\t\treturn !doc.getElementsByName || !doc.getElementsByName( expando ).length;\n\t});\n\n\t// ID find and filter\n\tif ( support.getById ) {\n\t\tExpr.find[\"ID\"] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar m = context.getElementById( id );\n\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\treturn m && m.parentNode ? [ m ] : [];\n\t\t\t}\n\t\t};\n\t\tExpr.filter[\"ID\"] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute(\"id\") === attrId;\n\t\t\t};\n\t\t};\n\t} else {\n\t\t// Support: IE6/7\n\t\t// getElementById is not reliable as a find shortcut\n\t\tdelete Expr.find[\"ID\"];\n\n\t\tExpr.filter[\"ID\"] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" && elem.getAttributeNode(\"id\");\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[\"TAG\"] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( (elem = results[i++]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[\"CLASS\"] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See http://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert(function( div ) {\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// http://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( div ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\f]' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( div.querySelectorAll(\"[msallowcapture^='']\").length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !div.querySelectorAll(\"[selected]\").length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.2+, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.7+\n\t\t\tif ( !div.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push(\"~=\");\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":checked\").length ) {\n\t\t\t\trbuggyQSA.push(\":checked\");\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibing-combinator selector` fails\n\t\t\tif ( !div.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push(\".#.+[+~]\");\n\t\t\t}\n\t\t});\n\n\t\tassert(function( div ) {\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = doc.createElement(\"input\");\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tdiv.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( div.querySelectorAll(\"[name=d]\").length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":enabled\").length ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tdiv.querySelectorAll(\"*,:x\");\n\t\t\trbuggyQSA.push(\",.*:\");\n\t\t});\n\t}\n\n\tif ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector) )) ) {\n\n\t\tassert(function( div ) {\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( div, \"div\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( div, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t});\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join(\"|\") );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join(\"|\") );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully does not implement inclusive descendent\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t));\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( (b = b.parentNode) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\tcompare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\tif ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t\tif ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\t\t\treturn a === doc ? -1 :\n\t\t\t\tb === doc ? 1 :\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[i] === bp[i] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[i], bp[i] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\tap[i] === preferredDoc ? -1 :\n\t\t\tbp[i] === preferredDoc ? 1 :\n\t\t\t0;\n\t};\n\n\treturn doc;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\t// Make sure that attribute selectors are quoted\n\texpr = expr.replace( rattributeQuotes, \"='$1']\" );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t// fragment in IE 9\n\t\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch (e) {}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\t// Set document vars if needed\n\tif ( ( context.ownerDocument || context ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t(val = elem.getAttributeNode(name)) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( (elem = results[i++]) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( (node = elem[i++]) ) {\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[1] = match[1].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[3] = ( match[3] || match[4] || match[5] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[2] === \"~=\" ) {\n\t\t\t\tmatch[3] = \" \" + match[3] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[1] = match[1].toLowerCase();\n\n\t\t\tif ( match[1].slice( 0, 3 ) === \"nth\" ) {\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[3] ) {\n\t\t\t\t\tSizzle.error( match[0] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === \"even\" || match[3] === \"odd\" ) );\n\t\t\t\tmatch[5] = +( ( match[7] + match[8] ) || match[3] === \"odd\" );\n\n\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[3] ) {\n\t\t\t\tSizzle.error( match[0] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[6] && match[2];\n\n\t\t\tif ( matchExpr[\"CHILD\"].test( match[0] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[3] ) {\n\t\t\t\tmatch[2] = match[4] || match[5] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t(excess = tokenize( unquoted, true )) &&\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t(excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[0] = match[0].slice( 0, excess );\n\t\t\t\tmatch[2] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() { return true; } :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t(pattern = new RegExp( \"(^|\" + whitespace + \")\" + className + \"(\" + whitespace + \"|$)\" )) &&\n\t\t\t\tclassCache( className, function( elem ) {\n\t\t\t\t\treturn pattern.test( typeof elem.className === \"string\" && elem.className || typeof elem.getAttribute !== \"undefined\" && elem.getAttribute(\"class\") || \"\" );\n\t\t\t\t});\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tvar cache, outerCache, node, diff, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( (node = node[ dir ]) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\t\t\t\t\t\t\touterCache = parent[ expando ] || (parent[ expando ] = {});\n\t\t\t\t\t\t\tcache = outerCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[0] === dirruns && cache[1];\n\t\t\t\t\t\t\tdiff = cache[0] === dirruns && cache[2];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\touterCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t} else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {\n\t\t\t\t\t\t\tdiff = cache[1];\n\n\t\t\t\t\t\t// xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\tif ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {\n\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t(node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction(function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[i] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[i] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction(function( selector ) {\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction(function( seed, matches, context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = unmatched[i]) ) {\n\t\t\t\t\t\t\tseed[i] = !(matches[i] = elem);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}) :\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tinput[0] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[0] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t}),\n\n\t\t\"has\": markFunction(function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t}),\n\n\t\t\"contains\": markFunction(function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t}),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test(lang || \"\") ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( (elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute(\"xml:lang\") || elem.getAttribute(\"lang\")) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( (elem = elem.parentNode) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t}),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": function( elem ) {\n\t\t\treturn elem.disabled === false;\n\t\t},\n\n\t\t\"disabled\": function( elem ) {\n\t\t\treturn elem.disabled === true;\n\t\t},\n\n\t\t\"checked\": function( elem ) {\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn (nodeName === \"input\" && !!elem.checked) || (nodeName === \"option\" && !!elem.selected);\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[\"empty\"]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( (attr = elem.getAttribute(\"type\")) == null || attr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo(function() {\n\t\t\treturn [ 0 ];\n\t\t}),\n\n\t\t\"last\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t}),\n\n\t\t\"eq\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t}),\n\n\t\t\"even\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"odd\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"lt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"gt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t})\n\t}\n};\n\nExpr.pseudos[\"nth\"] = Expr.pseudos[\"eq\"];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || (match = rcomma.exec( soFar )) ) {\n\t\t\tif ( match ) {\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[0].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( (tokens = []) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( (match = rcombinators.exec( soFar )) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push({\n\t\t\t\tvalue: matched,\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[0].replace( rtrim, \" \" )\n\t\t\t});\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||\n\t\t\t\t(match = preFilters[ type ]( match ))) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push({\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t});\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[i].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tcheckNonElements = base && dir === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from dir caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || (elem[ expando ] = {});\n\t\t\t\t\t\tif ( (oldCache = outerCache[ dir ]) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn (newCache[ 2 ] = oldCache[ 2 ]);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\touterCache[ dir ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[i]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[0];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[i], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (elem = unmatched[i]) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction(function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts( selector || \"*\", context.nodeType ? [ context ] : context, [] ),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( (elem = temp[i]) ) {\n\t\t\t\t\tmatcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = matcherOut[i]) ) {\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( (matcherIn[i] = elem) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, (matcherOut = []), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( (elem = matcherOut[i]) &&\n\t\t\t\t\t\t(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {\n\n\t\t\t\t\t\tseed[temp] = !(results[temp] = elem);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t});\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[0].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[\" \"],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t(checkContext = context).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (matcher = Expr.relative[ tokens[i].type ]) ) {\n\t\t\tmatchers = [ addCombinator(elementMatcher( matchers ), matcher) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[j].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\t\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\t\ttokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" })\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( (tokens = tokens.slice( j )) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[\"TAG\"]( \"*\", outermost ),\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\t\t\t\toutermostContext = context !== document && context;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Keep `i` a string if there are no elements so `matchedCount` will be \"00\" below\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && (elem = elems[i]) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (matcher = elementMatchers[j++]) ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( (elem = !matcher && elem) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\tmatchedCount += i;\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (matcher = setMatchers[j++]) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !(unmatched[i] || setMatched[i]) ) {\n\t\t\t\t\t\t\t\tsetMatched[i] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[i] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( (selector = compiled.selector || selector) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is no seed and only one group\n\tif ( match.length === 1 ) {\n\n\t\t// Take a shortcut and set the context if the root selector is an ID\n\t\ttokens = match[0] = match[0].slice( 0 );\n\t\tif ( tokens.length > 2 && (token = tokens[0]).type === \"ID\" &&\n\t\t\t\tsupport.getById && context.nodeType === 9 && documentIsHTML &&\n\t\t\t\tExpr.relative[ tokens[1].type ] ) {\n\n\t\t\tcontext = ( Expr.find[\"ID\"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[\"needsContext\"].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[i];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ (type = token.type) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( (find = Expr.find[ type ]) ) {\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( (seed = find(\n\t\t\t\t\ttoken.matches[0].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context\n\t\t\t\t)) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\trsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split(\"\").sort( sortOrder ).join(\"\") === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert(function( div1 ) {\n\t// Should return 1, but returns 4 (following)\n\treturn div1.compareDocumentPosition( document.createElement(\"div\") ) & 1;\n});\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert(function( div ) {\n\tdiv.innerHTML = \"<a href='#'></a>\";\n\treturn div.firstChild.getAttribute(\"href\") === \"#\" ;\n}) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert(function( div ) {\n\tdiv.innerHTML = \"<input/>\";\n\tdiv.firstChild.setAttribute( \"value\", \"\" );\n\treturn div.firstChild.getAttribute( \"value\" ) === \"\";\n}) ) {\n\taddHandle( \"value\", function( elem, name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert(function( div ) {\n\treturn div.getAttribute(\"disabled\") == null;\n}) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t\t(val = elem.getAttributeNode( name )) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\tnull;\n\t\t}\n\t});\n}\n\nreturn Sizzle;\n\n})( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\njQuery.expr[\":\"] = jQuery.expr.pseudos;\njQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\n\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\nvar rsingleTag = (/^<(\\w+)\\s*\\/?>(?:<\\/\\1>|)$/);\n\n\n\nvar risSimple = /^.[^:#\\[\\.,]*$/;\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( jQuery.isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\t/* jshint -W018 */\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t});\n\n\t}\n\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t});\n\n\t}\n\n\tif ( typeof qualifier === \"string\" ) {\n\t\tif ( risSimple.test( qualifier ) ) {\n\t\t\treturn jQuery.filter( qualifier, elements, not );\n\t\t}\n\n\t\tqualifier = jQuery.filter( qualifier, elements );\n\t}\n\n\treturn jQuery.grep( elements, function( elem ) {\n\t\treturn ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not;\n\t});\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\treturn elems.length === 1 && elem.nodeType === 1 ?\n\t\tjQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :\n\t\tjQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\t\treturn elem.nodeType === 1;\n\t\t}));\n};\n\njQuery.fn.extend({\n\tfind: function( selector ) {\n\t\tvar i,\n\t\t\tret = [],\n\t\t\tself = this,\n\t\t\tlen = self.length;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter(function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}) );\n\t\t}\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\t// Needed because $( selector, context ) becomes $( context ).find( selector )\n\t\tret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );\n\t\tret.selector = this.selector ? this.selector + \" \" + selector : selector;\n\t\treturn ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], false) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], true) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n});\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// Use the correct document accordingly with window argument (sandbox)\n\tdocument = window.document,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]*))$/,\n\n\tinit = jQuery.fn.init = function( selector, context ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector.charAt(0) === \"<\" && selector.charAt( selector.length - 1 ) === \">\" && selector.length >= 3 ) {\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && (match[1] || !context) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[1] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[0] : context;\n\n\t\t\t\t\t// scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[1],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( jQuery.isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[2] );\n\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE and Opera return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id !== match[2] ) {\n\t\t\t\t\t\t\treturn rootjQuery.find( selector );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Otherwise, we inject the element directly into the jQuery object\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t\tthis[0] = elem;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.context = document;\n\t\t\t\t\tthis.selector = selector;\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || rootjQuery ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis.context = this[0] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( jQuery.isFunction( selector ) ) {\n\t\t\treturn typeof rootjQuery.ready !== \"undefined\" ?\n\t\t\t\trootjQuery.ready( selector ) :\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\tif ( selector.selector !== undefined ) {\n\t\t\tthis.selector = selector.selector;\n\t\t\tthis.context = selector.context;\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\t// methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.extend({\n\tdir: function( elem, dir, until ) {\n\t\tvar matched = [],\n\t\t\tcur = elem[ dir ];\n\n\t\twhile ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {\n\t\t\tif ( cur.nodeType === 1 ) {\n\t\t\t\tmatched.push( cur );\n\t\t\t}\n\t\t\tcur = cur[dir];\n\t\t}\n\t\treturn matched;\n\t},\n\n\tsibling: function( n, elem ) {\n\t\tvar r = [];\n\n\t\tfor ( ; n; n = n.nextSibling ) {\n\t\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\t\tr.push( n );\n\t\t\t}\n\t\t}\n\n\t\treturn r;\n\t}\n});\n\njQuery.fn.extend({\n\thas: function( target ) {\n\t\tvar i,\n\t\t\ttargets = jQuery( target, this ),\n\t\t\tlen = targets.length;\n\n\t\treturn this.filter(function() {\n\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[i] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\tpos = rneedsContext.test( selectors ) || typeof selectors !== \"string\" ?\n\t\t\t\tjQuery( selectors, context || this.context ) :\n\t\t\t\t0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tfor ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) {\n\t\t\t\t// Always skip document fragments\n\t\t\t\tif ( cur.nodeType < 11 && (pos ?\n\t\t\t\t\tpos.index(cur) > -1 :\n\n\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\tjQuery.find.matchesSelector(cur, selectors)) ) {\n\n\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within\n\t// the matched set of elements\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn jQuery.inArray( this[0], jQuery( elem ) );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn jQuery.inArray(\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[0] : elem, this );\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.unique(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter(selector)\n\t\t);\n\t}\n});\n\nfunction sibling( cur, dir ) {\n\tdo {\n\t\tcur = cur[ dir ];\n\t} while ( cur && cur.nodeType !== 1 );\n\n\treturn cur;\n}\n\njQuery.each({\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn jQuery.dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn jQuery.sibling( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\treturn jQuery.nodeName( elem, \"iframe\" ) ?\n\t\t\telem.contentDocument || elem.contentWindow.document :\n\t\t\tjQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar ret = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tret = jQuery.filter( selector, ret );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tret = jQuery.unique( ret );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tret = ret.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\nvar rnotwhite = (/\\S+/g);\n\n\n\n// String to Object options format cache\nvar optionsCache = {};\n\n// Convert String-formatted options into Object-formatted ones and store in cache\nfunction createOptions( options ) {\n\tvar object = optionsCache[ options ] = {};\n\tjQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t});\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\t( optionsCache[ options ] || createOptions( options ) ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\t\t// Last fire value (for non-forgettable lists)\n\t\tmemory,\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\t\t// End of the loop when firing\n\t\tfiringLength,\n\t\t// Index of currently firing callback (modified by remove if needed)\n\t\tfiringIndex,\n\t\t// First callback to fire (used internally by add and fireWith)\n\t\tfiringStart,\n\t\t// Actual callback list\n\t\tlist = [],\n\t\t// Stack of fire calls for repeatable lists\n\t\tstack = !options.once && [],\n\t\t// Fire callbacks\n\t\tfire = function( data ) {\n\t\t\tmemory = options.memory && data;\n\t\t\tfired = true;\n\t\t\tfiringIndex = firingStart || 0;\n\t\t\tfiringStart = 0;\n\t\t\tfiringLength = list.length;\n\t\t\tfiring = true;\n\t\t\tfor ( ; list && firingIndex < firingLength; firingIndex++ ) {\n\t\t\t\tif ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {\n\t\t\t\t\tmemory = false; // To prevent further calls using add\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tfiring = false;\n\t\t\tif ( list ) {\n\t\t\t\tif ( stack ) {\n\t\t\t\t\tif ( stack.length ) {\n\t\t\t\t\t\tfire( stack.shift() );\n\t\t\t\t\t}\n\t\t\t\t} else if ( memory ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t} else {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t// Actual Callbacks object\n\t\tself = {\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\t// First, we save the current length\n\t\t\t\t\tvar start = list.length;\n\t\t\t\t\t(function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tvar type = jQuery.type( arg );\n\t\t\t\t\t\t\tif ( type === \"function\" ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && type !== \"string\" ) {\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t})( arguments );\n\t\t\t\t\t// Do we need to add the callbacks to the\n\t\t\t\t\t// current firing batch?\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tfiringLength = list.length;\n\t\t\t\t\t// With memory, if we're not firing then\n\t\t\t\t\t// we should call right away\n\t\t\t\t\t} else if ( memory ) {\n\t\t\t\t\t\tfiringStart = start;\n\t\t\t\t\t\tfire( memory );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\t\tvar index;\n\t\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\t\tlist.splice( index, 1 );\n\t\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\t\t\tif ( index <= firingLength ) {\n\t\t\t\t\t\t\t\t\tfiringLength--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );\n\t\t\t},\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tlist = [];\n\t\t\t\tfiringLength = 0;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Have the list do nothing anymore\n\t\t\tdisable: function() {\n\t\t\t\tlist = stack = memory = undefined;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it disabled?\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\t\t\t// Lock the list in its current state\n\t\t\tlock: function() {\n\t\t\t\tstack = undefined;\n\t\t\t\tif ( !memory ) {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it locked?\n\t\t\tlocked: function() {\n\t\t\t\treturn !stack;\n\t\t\t},\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( list && ( !fired || stack ) ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tstack.push( args );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tfire( args );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\njQuery.extend({\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\t\t\t\t// action, add listener, listener list, final state\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks(\"once memory\"), \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks(\"once memory\"), \"rejected\" ],\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks(\"memory\") ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\tthen: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\t\t\t\t\treturn jQuery.Deferred(function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\t\t\t\t\tvar fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];\n\t\t\t\t\t\t\t// deferred[ done | fail | progress ] for forwarding actions to newDefer\n\t\t\t\t\t\t\tdeferred[ tuple[1] ](function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && jQuery.isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject )\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t});\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t}).promise();\n\t\t\t\t},\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Keep pipe for back-compat\n\t\tpromise.pipe = promise.then;\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 3 ];\n\n\t\t\t// promise[ done | fail | progress ] = list.add\n\t\t\tpromise[ tuple[1] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(function() {\n\t\t\t\t\t// state = [ resolved | rejected ]\n\t\t\t\t\tstate = stateString;\n\n\t\t\t\t// [ reject_list | resolve_list ].disable; progress_list.lock\n\t\t\t\t}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );\n\t\t\t}\n\n\t\t\t// deferred[ resolve | reject | notify ]\n\t\t\tdeferred[ tuple[0] ] = function() {\n\t\t\t\tdeferred[ tuple[0] + \"With\" ]( this === deferred ? promise : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\t\t\tdeferred[ tuple[0] + \"With\" ] = list.fireWith;\n\t\t});\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( subordinate /* , ..., subordinateN */ ) {\n\t\tvar i = 0,\n\t\t\tresolveValues = slice.call( arguments ),\n\t\t\tlength = resolveValues.length,\n\n\t\t\t// the count of uncompleted subordinates\n\t\t\tremaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,\n\n\t\t\t// the master Deferred. If resolveValues consist of only a single Deferred, just use that.\n\t\t\tdeferred = remaining === 1 ? subordinate : jQuery.Deferred(),\n\n\t\t\t// Update function for both resolve and progress values\n\t\t\tupdateFunc = function( i, contexts, values ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tcontexts[ i ] = this;\n\t\t\t\t\tvalues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( values === progressValues ) {\n\t\t\t\t\t\tdeferred.notifyWith( contexts, values );\n\n\t\t\t\t\t} else if ( !(--remaining) ) {\n\t\t\t\t\t\tdeferred.resolveWith( contexts, values );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t},\n\n\t\t\tprogressValues, progressContexts, resolveContexts;\n\n\t\t// add listeners to Deferred subordinates; treat others as resolved\n\t\tif ( length > 1 ) {\n\t\t\tprogressValues = new Array( length );\n\t\t\tprogressContexts = new Array( length );\n\t\t\tresolveContexts = new Array( length );\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {\n\t\t\t\t\tresolveValues[ i ].promise()\n\t\t\t\t\t\t.done( updateFunc( i, resolveContexts, resolveValues ) )\n\t\t\t\t\t\t.fail( deferred.reject )\n\t\t\t\t\t\t.progress( updateFunc( i, progressContexts, progressValues ) );\n\t\t\t\t} else {\n\t\t\t\t\t--remaining;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// if we're not waiting on anything, resolve the master\n\t\tif ( !remaining ) {\n\t\t\tdeferred.resolveWith( resolveContexts, resolveValues );\n\t\t}\n\n\t\treturn deferred.promise();\n\t}\n});\n\n\n// The deferred used on DOM ready\nvar readyList;\n\njQuery.fn.ready = function( fn ) {\n\t// Add the callback\n\tjQuery.ready.promise().done( fn );\n\n\treturn this;\n};\n\njQuery.extend({\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Hold (or release) the ready event\n\tholdReady: function( hold ) {\n\t\tif ( hold ) {\n\t\t\tjQuery.readyWait++;\n\t\t} else {\n\t\t\tjQuery.ready( true );\n\t\t}\n\t},\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).\n\t\tif ( !document.body ) {\n\t\t\treturn setTimeout( jQuery.ready );\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\n\t\t// Trigger any bound ready events\n\t\tif ( jQuery.fn.triggerHandler ) {\n\t\t\tjQuery( document ).triggerHandler( \"ready\" );\n\t\t\tjQuery( document ).off( \"ready\" );\n\t\t}\n\t}\n});\n\n/**\n * Clean-up method for dom ready events\n */\nfunction detach() {\n\tif ( document.addEventListener ) {\n\t\tdocument.removeEventListener( \"DOMContentLoaded\", completed, false );\n\t\twindow.removeEventListener( \"load\", completed, false );\n\n\t} else {\n\t\tdocument.detachEvent( \"onreadystatechange\", completed );\n\t\twindow.detachEvent( \"onload\", completed );\n\t}\n}\n\n/**\n * The ready event handler and self cleanup method\n */\nfunction completed() {\n\t// readyState === \"complete\" is good enough for us to call the dom ready in oldIE\n\tif ( document.addEventListener || event.type === \"load\" || document.readyState === \"complete\" ) {\n\t\tdetach();\n\t\tjQuery.ready();\n\t}\n}\n\njQuery.ready.promise = function( obj ) {\n\tif ( !readyList ) {\n\n\t\treadyList = jQuery.Deferred();\n\n\t\t// Catch cases where $(document).ready() is called after the browser event has already occurred.\n\t\t// we once tried to use readyState \"interactive\" here, but it caused issues like the one\n\t\t// discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15\n\t\tif ( document.readyState === \"complete\" ) {\n\t\t\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\t\t\tsetTimeout( jQuery.ready );\n\n\t\t// Standards-based browsers support DOMContentLoaded\n\t\t} else if ( document.addEventListener ) {\n\t\t\t// Use the handy event callback\n\t\t\tdocument.addEventListener( \"DOMContentLoaded\", completed, false );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.addEventListener( \"load\", completed, false );\n\n\t\t// If IE event model is used\n\t\t} else {\n\t\t\t// Ensure firing before onload, maybe late but safe also for iframes\n\t\t\tdocument.attachEvent( \"onreadystatechange\", completed );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.attachEvent( \"onload\", completed );\n\n\t\t\t// If IE and not a frame\n\t\t\t// continually check to see if the document is ready\n\t\t\tvar top = false;\n\n\t\t\ttry {\n\t\t\t\ttop = window.frameElement == null && document.documentElement;\n\t\t\t} catch(e) {}\n\n\t\t\tif ( top && top.doScroll ) {\n\t\t\t\t(function doScrollCheck() {\n\t\t\t\t\tif ( !jQuery.isReady ) {\n\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t// Use the trick by Diego Perini\n\t\t\t\t\t\t\t// http://javascript.nwbox.com/IEContentLoaded/\n\t\t\t\t\t\t\ttop.doScroll(\"left\");\n\t\t\t\t\t\t} catch(e) {\n\t\t\t\t\t\t\treturn setTimeout( doScrollCheck, 50 );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// detach all dom ready events\n\t\t\t\t\t\tdetach();\n\n\t\t\t\t\t\t// and execute any waiting functions\n\t\t\t\t\t\tjQuery.ready();\n\t\t\t\t\t}\n\t\t\t\t})();\n\t\t\t}\n\t\t}\n\t}\n\treturn readyList.promise( obj );\n};\n\n\nvar strundefined = typeof undefined;\n\n\n\n// Support: IE<9\n// Iteration over object's inherited properties before its own\nvar i;\nfor ( i in jQuery( support ) ) {\n\tbreak;\n}\nsupport.ownLast = i !== \"0\";\n\n// Note: most support tests are defined in their respective modules.\n// false until the test is run\nsupport.inlineBlockNeedsLayout = false;\n\n// Execute ASAP in case we need to set body.style.zoom\njQuery(function() {\n\t// Minified: var a,b,c,d\n\tvar val, div, body, container;\n\n\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\tif ( !body || !body.style ) {\n\t\t// Return for frameset docs that don't have a body\n\t\treturn;\n\t}\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tcontainer = document.createElement( \"div\" );\n\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\tbody.appendChild( container ).appendChild( div );\n\n\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t// Support: IE<8\n\t\t// Check if natively block-level elements act like inline-block\n\t\t// elements when setting their display to 'inline' and giving\n\t\t// them layout\n\t\tdiv.style.cssText = \"display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1\";\n\n\t\tsupport.inlineBlockNeedsLayout = val = div.offsetWidth === 3;\n\t\tif ( val ) {\n\t\t\t// Prevent IE 6 from affecting layout for positioned elements #11048\n\t\t\t// Prevent IE from shrinking the body in IE 7 mode #12869\n\t\t\t// Support: IE<8\n\t\t\tbody.style.zoom = 1;\n\t\t}\n\t}\n\n\tbody.removeChild( container );\n});\n\n\n\n\n(function() {\n\tvar div = document.createElement( \"div\" );\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\n/**\n * Determines whether an object can have data\n */\njQuery.acceptData = function( elem ) {\n\tvar noData = jQuery.noData[ (elem.nodeName + \" \").toLowerCase() ],\n\t\tnodeType = +elem.nodeType || 1;\n\n\t// Do not set data on non-element DOM nodes because it will not be cleared (#8335).\n\treturn nodeType !== 1 && nodeType !== 9 ?\n\t\tfalse :\n\n\t\t// Nodes accept data unless otherwise specified; rejection can be conditional\n\t\t!noData || noData !== true && elem.getAttribute(\"classid\") === noData;\n};\n\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /([A-Z])/g;\n\nfunction dataAttr( elem, key, data ) {\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\n\t\tvar name = \"data-\" + key.replace( rmultiDash, \"-$1\" ).toLowerCase();\n\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = data === \"true\" ? true :\n\t\t\t\t\tdata === \"false\" ? false :\n\t\t\t\t\tdata === \"null\" ? null :\n\t\t\t\t\t// Only convert to a number if it doesn't change the string\n\t\t\t\t\t+data + \"\" === data ? +data :\n\t\t\t\t\trbrace.test( data ) ? jQuery.parseJSON( data ) :\n\t\t\t\t\tdata;\n\t\t\t} catch( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tjQuery.data( elem, key, data );\n\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\n\treturn data;\n}\n\n// checks a cache object for emptiness\nfunction isEmptyDataObject( obj ) {\n\tvar name;\n\tfor ( name in obj ) {\n\n\t\t// if the public data object is empty, the private is still empty\n\t\tif ( name === \"data\" && jQuery.isEmptyObject( obj[name] ) ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( name !== \"toJSON\" ) {\n\t\t\treturn false;\n\t\t}\n\t}\n\n\treturn true;\n}\n\nfunction internalData( elem, name, data, pvt /* Internal Use Only */ ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar ret, thisCache,\n\t\tinternalKey = jQuery.expando,\n\n\t\t// We have to handle DOM nodes and JS objects differently because IE6-7\n\t\t// can't GC object references properly across the DOM-JS boundary\n\t\tisNode = elem.nodeType,\n\n\t\t// Only DOM nodes need the global jQuery cache; JS object data is\n\t\t// attached directly to the object so GC can occur automatically\n\t\tcache = isNode ? jQuery.cache : elem,\n\n\t\t// Only defining an ID for JS objects if its cache already exists allows\n\t\t// the code to shortcut on the same path as a DOM node with no cache\n\t\tid = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;\n\n\t// Avoid doing any more work than we need to when trying to get data on an\n\t// object that has no data at all\n\tif ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === \"string\" ) {\n\t\treturn;\n\t}\n\n\tif ( !id ) {\n\t\t// Only DOM nodes need a new unique ID for each element since their data\n\t\t// ends up in the global cache\n\t\tif ( isNode ) {\n\t\t\tid = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++;\n\t\t} else {\n\t\t\tid = internalKey;\n\t\t}\n\t}\n\n\tif ( !cache[ id ] ) {\n\t\t// Avoid exposing jQuery metadata on plain JS objects when the object\n\t\t// is serialized using JSON.stringify\n\t\tcache[ id ] = isNode ? {} : { toJSON: jQuery.noop };\n\t}\n\n\t// An object can be passed to jQuery.data instead of a key/value pair; this gets\n\t// shallow copied over onto the existing cache\n\tif ( typeof name === \"object\" || typeof name === \"function\" ) {\n\t\tif ( pvt ) {\n\t\t\tcache[ id ] = jQuery.extend( cache[ id ], name );\n\t\t} else {\n\t\t\tcache[ id ].data = jQuery.extend( cache[ id ].data, name );\n\t\t}\n\t}\n\n\tthisCache = cache[ id ];\n\n\t// jQuery data() is stored in a separate object inside the object's internal data\n\t// cache in order to avoid key collisions between internal data and user-defined\n\t// data.\n\tif ( !pvt ) {\n\t\tif ( !thisCache.data ) {\n\t\t\tthisCache.data = {};\n\t\t}\n\n\t\tthisCache = thisCache.data;\n\t}\n\n\tif ( data !== undefined ) {\n\t\tthisCache[ jQuery.camelCase( name ) ] = data;\n\t}\n\n\t// Check for both converted-to-camel and non-converted data property names\n\t// If a data property was specified\n\tif ( typeof name === \"string\" ) {\n\n\t\t// First Try to find as-is property data\n\t\tret = thisCache[ name ];\n\n\t\t// Test for null|undefined property data\n\t\tif ( ret == null ) {\n\n\t\t\t// Try to find the camelCased property\n\t\t\tret = thisCache[ jQuery.camelCase( name ) ];\n\t\t}\n\t} else {\n\t\tret = thisCache;\n\t}\n\n\treturn ret;\n}\n\nfunction internalRemoveData( elem, name, pvt ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar thisCache, i,\n\t\tisNode = elem.nodeType,\n\n\t\t// See jQuery.data for more information\n\t\tcache = isNode ? jQuery.cache : elem,\n\t\tid = isNode ? elem[ jQuery.expando ] : jQuery.expando;\n\n\t// If there is already no cache entry for this object, there is no\n\t// purpose in continuing\n\tif ( !cache[ id ] ) {\n\t\treturn;\n\t}\n\n\tif ( name ) {\n\n\t\tthisCache = pvt ? cache[ id ] : cache[ id ].data;\n\n\t\tif ( thisCache ) {\n\n\t\t\t// Support array or space separated string names for data keys\n\t\t\tif ( !jQuery.isArray( name ) ) {\n\n\t\t\t\t// try the string as a key before any manipulation\n\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\tname = [ name ];\n\t\t\t\t} else {\n\n\t\t\t\t\t// split the camel cased version by spaces unless a key with the spaces exists\n\t\t\t\t\tname = jQuery.camelCase( name );\n\t\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\t\tname = [ name ];\n\t\t\t\t\t} else {\n\t\t\t\t\t\tname = name.split(\" \");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// If \"name\" is an array of keys...\n\t\t\t\t// When data is initially created, via (\"key\", \"val\") signature,\n\t\t\t\t// keys will be converted to camelCase.\n\t\t\t\t// Since there is no way to tell _how_ a key was added, remove\n\t\t\t\t// both plain key and camelCase key. #12786\n\t\t\t\t// This will only penalize the array argument path.\n\t\t\t\tname = name.concat( jQuery.map( name, jQuery.camelCase ) );\n\t\t\t}\n\n\t\t\ti = name.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete thisCache[ name[i] ];\n\t\t\t}\n\n\t\t\t// If there is no data left in the cache, we want to continue\n\t\t\t// and let the cache object itself get destroyed\n\t\t\tif ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t}\n\n\t// See jQuery.data for more information\n\tif ( !pvt ) {\n\t\tdelete cache[ id ].data;\n\n\t\t// Don't destroy the parent cache unless the internal data object\n\t\t// had been the only thing left in it\n\t\tif ( !isEmptyDataObject( cache[ id ] ) ) {\n\t\t\treturn;\n\t\t}\n\t}\n\n\t// Destroy the cache\n\tif ( isNode ) {\n\t\tjQuery.cleanData( [ elem ], true );\n\n\t// Use delete when supported for expandos or `cache` is not a window per isWindow (#10080)\n\t/* jshint eqeqeq: false */\n\t} else if ( support.deleteExpando || cache != cache.window ) {\n\t\t/* jshint eqeqeq: true */\n\t\tdelete cache[ id ];\n\n\t// When all else fails, null\n\t} else {\n\t\tcache[ id ] = null;\n\t}\n}\n\njQuery.extend({\n\tcache: {},\n\n\t// The following elements (space-suffixed to avoid Object.prototype collisions)\n\t// throw uncatchable exceptions if you attempt to set expando properties\n\tnoData: {\n\t\t\"applet \": true,\n\t\t\"embed \": true,\n\t\t// ...but Flash objects (which have this classid) *can* handle expandos\n\t\t\"object \": \"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"\n\t},\n\n\thasData: function( elem ) {\n\t\telem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];\n\t\treturn !!elem && !isEmptyDataObject( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name );\n\t},\n\n\t// For internal use only.\n\t_data: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data, true );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name, true );\n\t}\n});\n\njQuery.fn.extend({\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[0],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Special expections of .data basically thwart jQuery.access,\n\t\t// so implement the relevant behavior ourselves\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = jQuery.data( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !jQuery._data( elem, \"parsedAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE11+\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = jQuery.camelCase( name.slice(5) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tjQuery._data( elem, \"parsedAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each(function() {\n\t\t\t\tjQuery.data( this, key );\n\t\t\t});\n\t\t}\n\n\t\treturn arguments.length > 1 ?\n\n\t\t\t// Sets one value\n\t\t\tthis.each(function() {\n\t\t\t\tjQuery.data( this, key, value );\n\t\t\t}) :\n\n\t\t\t// Gets one value\n\t\t\t// Try to fetch any internally stored data first\n\t\t\telem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined;\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeData( this, key );\n\t\t});\n\t}\n});\n\n\njQuery.extend({\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = jQuery._data( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || jQuery.isArray(data) ) {\n\t\t\t\t\tqueue = jQuery._data( elem, type, jQuery.makeArray(data) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// not intended for public consumption - generates a queueHooks object, or returns the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn jQuery._data( elem, key ) || jQuery._data( elem, key, {\n\t\t\tempty: jQuery.Callbacks(\"once memory\").add(function() {\n\t\t\t\tjQuery._removeData( elem, type + \"queue\" );\n\t\t\t\tjQuery._removeData( elem, key );\n\t\t\t})\n\t\t});\n\t}\n});\n\njQuery.fn.extend({\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[0], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each(function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[0] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t});\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t});\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = jQuery._data( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n});\nvar pnum = (/[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/).source;\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar isHidden = function( elem, el ) {\n\t\t// isHidden might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\t\treturn jQuery.css( elem, \"display\" ) === \"none\" || !jQuery.contains( elem.ownerDocument, elem );\n\t};\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlength = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( jQuery.type( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\tjQuery.access( elems, fn, i, key[i], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !jQuery.isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tfn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn chainable ?\n\t\telems :\n\n\t\t// Gets\n\t\tbulk ?\n\t\t\tfn.call( elems ) :\n\t\t\tlength ? fn( elems[0], key ) : emptyGet;\n};\nvar rcheckableType = (/^(?:checkbox|radio)$/i);\n\n\n\n(function() {\n\t// Minified: var a,b,c\n\tvar input = document.createElement( \"input\" ),\n\t\tdiv = document.createElement( \"div\" ),\n\t\tfragment = document.createDocumentFragment();\n\n\t// Setup\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\n\t// IE strips leading whitespace when .innerHTML is used\n\tsupport.leadingWhitespace = div.firstChild.nodeType === 3;\n\n\t// Make sure that tbody elements aren't automatically inserted\n\t// IE will insert them into empty tables\n\tsupport.tbody = !div.getElementsByTagName( \"tbody\" ).length;\n\n\t// Make sure that link elements get serialized correctly by innerHTML\n\t// This requires a wrapper element in IE\n\tsupport.htmlSerialize = !!div.getElementsByTagName( \"link\" ).length;\n\n\t// Makes sure cloning an html5 element does not cause problems\n\t// Where outerHTML is undefined, this still works\n\tsupport.html5Clone =\n\t\tdocument.createElement( \"nav\" ).cloneNode( true ).outerHTML !== \"<:nav></:nav>\";\n\n\t// Check if a disconnected checkbox will retain its checked\n\t// value of true after appended to the DOM (IE6/7)\n\tinput.type = \"checkbox\";\n\tinput.checked = true;\n\tfragment.appendChild( input );\n\tsupport.appendChecked = input.checked;\n\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\t// Support: IE6-IE11+\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// #11217 - WebKit loses check when the name is after the checked attribute\n\tfragment.appendChild( div );\n\tdiv.innerHTML = \"<input type='radio' checked='checked' name='t'/>\";\n\n\t// Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3\n\t// old WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE<9\n\t// Opera does not clone events (and typeof div.attachEvent === undefined).\n\t// IE9-10 clones events bound via attachEvent, but they don't trigger with .click()\n\tsupport.noCloneEvent = true;\n\tif ( div.attachEvent ) {\n\t\tdiv.attachEvent( \"onclick\", function() {\n\t\t\tsupport.noCloneEvent = false;\n\t\t});\n\n\t\tdiv.cloneNode( true ).click();\n\t}\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n})();\n\n\n(function() {\n\tvar i, eventName,\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Support: IE<9 (lack submit/change bubble), Firefox 23+ (lack focusin event)\n\tfor ( i in { submit: true, change: true, focusin: true }) {\n\t\teventName = \"on\" + i;\n\n\t\tif ( !(support[ i + \"Bubbles\" ] = eventName in window) ) {\n\t\t\t// Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP)\n\t\t\tdiv.setAttribute( eventName, \"t\" );\n\t\t\tsupport[ i + \"Bubbles\" ] = div.attributes[ eventName ].expando === false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\nvar rformElems = /^(?:input|select|textarea)$/i,\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu)|click/,\n\trfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)$/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\t\tvar tmp, events, t, handleObjIn,\n\t\t\tspecial, eventHandle, handleObj,\n\t\t\thandlers, type, namespaces, origType,\n\t\t\telemData = jQuery._data( elem );\n\n\t\t// Don't attach events to noData or text/comment nodes (but allow plain objects)\n\t\tif ( !elemData ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !(events = elemData.events) ) {\n\t\t\tevents = elemData.events = {};\n\t\t}\n\t\tif ( !(eventHandle = elemData.handle) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== strundefined && (!e || jQuery.event.triggered !== e.type) ?\n\t\t\t\t\tjQuery.event.dispatch.apply( eventHandle.elem, arguments ) :\n\t\t\t\t\tundefined;\n\t\t\t};\n\t\t\t// Add elem as a property of the handle fn to prevent a memory leak with IE non-native events\n\t\t\teventHandle.elem = elem;\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend({\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join(\".\")\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !(handlers = events[ type ]) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener/attachEvent if the special events handler returns false\n\t\t\t\tif ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\t\t\t\t\t// Bind the global event handler to the element\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle, false );\n\n\t\t\t\t\t} else if ( elem.attachEvent ) {\n\t\t\t\t\t\telem.attachEvent( \"on\" + type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t\t// Nullify elem to prevent memory leaks in IE\n\t\telem = null;\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\t\tvar j, handleObj, tmp,\n\t\t\torigCount, t, events,\n\t\t\tspecial, handlers, type,\n\t\t\tnamespaces, origType,\n\t\t\telemData = jQuery.hasData( elem ) && jQuery._data( elem );\n\n\t\tif ( !elemData || !(events = elemData.events) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[2] && new RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector || selector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdelete elemData.handle;\n\n\t\t\t// removeData also checks for emptiness and clears the expando if empty\n\t\t\t// so use it instead of delete\n\t\t\tjQuery._removeData( elem, \"events\" );\n\t\t}\n\t},\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\t\tvar handle, ontype, cur,\n\t\t\tbubbleType, special, tmp, i,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split(\".\") : [];\n\n\t\tcur = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf(\".\") >= 0 ) {\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split(\".\");\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf(\":\") < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join(\".\");\n\t\tevent.namespace_re = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === (elem.ownerDocument || document) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {\n\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = ( jQuery._data( cur, \"events\" ) || {} )[ event.type ] && jQuery._data( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && jQuery.acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) &&\n\t\t\t\tjQuery.acceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name name as the event.\n\t\t\t\t// Can't use an .isFunction() check here because IE6/7 fails that test.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\t\t\t\t\ttry {\n\t\t\t\t\t\telem[ type ]();\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// IE<9 dies on focus/blur to hidden element (#1486,#12518)\n\t\t\t\t\t\t// only reproducible on winXP IE8 native, not IE9 in IE8 mode\n\t\t\t\t\t}\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\tdispatch: function( event ) {\n\n\t\t// Make a writable jQuery.Event from the native event object\n\t\tevent = jQuery.event.fix( event );\n\n\t\tvar i, ret, handleObj, matched, j,\n\t\t\thandlerQueue = [],\n\t\t\targs = slice.call( arguments ),\n\t\t\thandlers = ( jQuery._data( this, \"events\" ) || {} )[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[0] = event;\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// Triggered event must either 1) have no namespace, or\n\t\t\t\t// 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).\n\t\t\t\tif ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )\n\t\t\t\t\t\t\t.apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( (event.result = ret) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar sel, handleObj, matches, i,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\t// Black-hole SVG <use> instance trees (#13180)\n\t\t// Avoid non-left-click bubbling in Firefox (#3861)\n\t\tif ( delegateCount && cur.nodeType && (!event.button || event.type !== \"click\") ) {\n\n\t\t\t/* jshint eqeqeq: false */\n\t\t\tfor ( ; cur != this; cur = cur.parentNode || this ) {\n\t\t\t\t/* jshint eqeqeq: true */\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== \"click\") ) {\n\t\t\t\t\tmatches = [];\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matches[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatches[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) >= 0 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matches[ sel ] ) {\n\t\t\t\t\t\t\tmatches.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matches.length ) {\n\t\t\t\t\t\thandlerQueue.push({ elem: cur, handlers: matches });\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\tfix: function( event ) {\n\t\tif ( event[ jQuery.expando ] ) {\n\t\t\treturn event;\n\t\t}\n\n\t\t// Create a writable copy of the event object and normalize some properties\n\t\tvar i, prop, copy,\n\t\t\ttype = event.type,\n\t\t\toriginalEvent = event,\n\t\t\tfixHook = this.fixHooks[ type ];\n\n\t\tif ( !fixHook ) {\n\t\t\tthis.fixHooks[ type ] = fixHook =\n\t\t\t\trmouseEvent.test( type ) ? this.mouseHooks :\n\t\t\t\trkeyEvent.test( type ) ? this.keyHooks :\n\t\t\t\t{};\n\t\t}\n\t\tcopy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;\n\n\t\tevent = new jQuery.Event( originalEvent );\n\n\t\ti = copy.length;\n\t\twhile ( i-- ) {\n\t\t\tprop = copy[ i ];\n\t\t\tevent[ prop ] = originalEvent[ prop ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Fix target property (#1925)\n\t\tif ( !event.target ) {\n\t\t\tevent.target = originalEvent.srcElement || document;\n\t\t}\n\n\t\t// Support: Chrome 23+, Safari?\n\t\t// Target should not be a text node (#504, #13143)\n\t\tif ( event.target.nodeType === 3 ) {\n\t\t\tevent.target = event.target.parentNode;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// For mouse/key events, metaKey==false if it's undefined (#3368, #11328)\n\t\tevent.metaKey = !!event.metaKey;\n\n\t\treturn fixHook.filter ? fixHook.filter( event, originalEvent ) : event;\n\t},\n\n\t// Includes some event props shared by KeyEvent and MouseEvent\n\tprops: \"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which\".split(\" \"),\n\n\tfixHooks: {},\n\n\tkeyHooks: {\n\t\tprops: \"char charCode key keyCode\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\n\t\t\t// Add which for key events\n\t\t\tif ( event.which == null ) {\n\t\t\t\tevent.which = original.charCode != null ? original.charCode : original.keyCode;\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tmouseHooks: {\n\t\tprops: \"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\t\t\tvar body, eventDoc, doc,\n\t\t\t\tbutton = original.button,\n\t\t\t\tfromElement = original.fromElement;\n\n\t\t\t// Calculate pageX/Y if missing and clientX/Y available\n\t\t\tif ( event.pageX == null && original.clientX != null ) {\n\t\t\t\teventDoc = event.target.ownerDocument || document;\n\t\t\t\tdoc = eventDoc.documentElement;\n\t\t\t\tbody = eventDoc.body;\n\n\t\t\t\tevent.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );\n\t\t\t\tevent.pageY = original.clientY + ( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) - ( doc && doc.clientTop  || body && body.clientTop  || 0 );\n\t\t\t}\n\n\t\t\t// Add relatedTarget, if necessary\n\t\t\tif ( !event.relatedTarget && fromElement ) {\n\t\t\t\tevent.relatedTarget = fromElement === event.target ? original.toElement : fromElement;\n\t\t\t}\n\n\t\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\t\t// Note: button is not normalized, so don't use it\n\t\t\tif ( !event.which && button !== undefined ) {\n\t\t\t\tevent.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tspecial: {\n\t\tload: {\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tfocus: {\n\t\t\t// Fire native event if possible so blur/focus sequence is correct\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this !== safeActiveElement() && this.focus ) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tthis.focus();\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// If we error on focus to hidden element (#1486, #12518),\n\t\t\t\t\t\t// let .trigger() run the handlers\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusin\"\n\t\t},\n\t\tblur: {\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this === safeActiveElement() && this.blur ) {\n\t\t\t\t\tthis.blur();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusout\"\n\t\t},\n\t\tclick: {\n\t\t\t// For checkbox, fire native event so checked state will be right\n\t\t\ttrigger: function() {\n\t\t\t\tif ( jQuery.nodeName( this, \"input\" ) && this.type === \"checkbox\" && this.click ) {\n\t\t\t\t\tthis.click();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, don't fire native .click() on links\n\t\t\t_default: function( event ) {\n\t\t\t\treturn jQuery.nodeName( event.target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tsimulate: function( type, elem, event, bubble ) {\n\t\t// Piggyback on a donor event to simulate a different one.\n\t\t// Fake originalEvent to avoid donor's stopPropagation, but if the\n\t\t// simulated event prevents default then we do the same on the donor.\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true,\n\t\t\t\toriginalEvent: {}\n\t\t\t}\n\t\t);\n\t\tif ( bubble ) {\n\t\t\tjQuery.event.trigger( e, null, elem );\n\t\t} else {\n\t\t\tjQuery.event.dispatch.call( elem, e );\n\t\t}\n\t\tif ( e.isDefaultPrevented() ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\t}\n};\n\njQuery.removeEvent = document.removeEventListener ?\n\tfunction( elem, type, handle ) {\n\t\tif ( elem.removeEventListener ) {\n\t\t\telem.removeEventListener( type, handle, false );\n\t\t}\n\t} :\n\tfunction( elem, type, handle ) {\n\t\tvar name = \"on\" + type;\n\n\t\tif ( elem.detachEvent ) {\n\n\t\t\t// #8545, #7054, preventing memory leaks for custom events in IE6-8\n\t\t\t// detachEvent needed property on element, by name of that event, to properly expose it to GC\n\t\t\tif ( typeof elem[ name ] === strundefined ) {\n\t\t\t\telem[ name ] = null;\n\t\t\t}\n\n\t\t\telem.detachEvent( name, handle );\n\t\t}\n\t};\n\njQuery.Event = function( src, props ) {\n\t// Allow instantiation without the 'new' keyword\n\tif ( !(this instanceof jQuery.Event) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\t\t\t\t// Support: IE < 9, Android < 4.0\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || jQuery.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If preventDefault exists, run it on the original event\n\t\tif ( e.preventDefault ) {\n\t\t\te.preventDefault();\n\n\t\t// Support: IE\n\t\t// Otherwise set the returnValue property of the original event to false\n\t\t} else {\n\t\t\te.returnValue = false;\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\t\t// If stopPropagation exists, run it on the original event\n\t\tif ( e.stopPropagation ) {\n\t\t\te.stopPropagation();\n\t\t}\n\n\t\t// Support: IE\n\t\t// Set the cancelBubble property of the original event to true\n\t\te.cancelBubble = true;\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && e.stopImmediatePropagation ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\njQuery.each({\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mousenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || (related !== target && !jQuery.contains( target, related )) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n});\n\n// IE submit delegation\nif ( !support.submitBubbles ) {\n\n\tjQuery.event.special.submit = {\n\t\tsetup: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Lazy-add a submit handler when a descendant form may potentially be submitted\n\t\t\tjQuery.event.add( this, \"click._submit keypress._submit\", function( e ) {\n\t\t\t\t// Node name check avoids a VML-related crash in IE (#9807)\n\t\t\t\tvar elem = e.target,\n\t\t\t\t\tform = jQuery.nodeName( elem, \"input\" ) || jQuery.nodeName( elem, \"button\" ) ? elem.form : undefined;\n\t\t\t\tif ( form && !jQuery._data( form, \"submitBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( form, \"submit._submit\", function( event ) {\n\t\t\t\t\t\tevent._submit_bubble = true;\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( form, \"submitBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t\t// return undefined since we don't need an event listener\n\t\t},\n\n\t\tpostDispatch: function( event ) {\n\t\t\t// If form was submitted by the user, bubble the event up the tree\n\t\t\tif ( event._submit_bubble ) {\n\t\t\t\tdelete event._submit_bubble;\n\t\t\t\tif ( this.parentNode && !event.isTrigger ) {\n\t\t\t\t\tjQuery.event.simulate( \"submit\", this.parentNode, event, true );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Remove delegated handlers; cleanData eventually reaps submit handlers attached above\n\t\t\tjQuery.event.remove( this, \"._submit\" );\n\t\t}\n\t};\n}\n\n// IE change delegation and checkbox/radio fix\nif ( !support.changeBubbles ) {\n\n\tjQuery.event.special.change = {\n\n\t\tsetup: function() {\n\n\t\t\tif ( rformElems.test( this.nodeName ) ) {\n\t\t\t\t// IE doesn't fire change on a check/radio until blur; trigger it on click\n\t\t\t\t// after a propertychange. Eat the blur-change in special.change.handle.\n\t\t\t\t// This still fires onchange a second time for check/radio after blur.\n\t\t\t\tif ( this.type === \"checkbox\" || this.type === \"radio\" ) {\n\t\t\t\t\tjQuery.event.add( this, \"propertychange._change\", function( event ) {\n\t\t\t\t\t\tif ( event.originalEvent.propertyName === \"checked\" ) {\n\t\t\t\t\t\t\tthis._just_changed = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery.event.add( this, \"click._change\", function( event ) {\n\t\t\t\t\t\tif ( this._just_changed && !event.isTrigger ) {\n\t\t\t\t\t\t\tthis._just_changed = false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// Allow triggered, simulated change events (#11500)\n\t\t\t\t\t\tjQuery.event.simulate( \"change\", this, event, true );\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t// Delegated event; lazy-add a change handler on descendant inputs\n\t\t\tjQuery.event.add( this, \"beforeactivate._change\", function( e ) {\n\t\t\t\tvar elem = e.target;\n\n\t\t\t\tif ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, \"changeBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( elem, \"change._change\", function( event ) {\n\t\t\t\t\t\tif ( this.parentNode && !event.isSimulated && !event.isTrigger ) {\n\t\t\t\t\t\t\tjQuery.event.simulate( \"change\", this.parentNode, event, true );\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( elem, \"changeBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t},\n\n\t\thandle: function( event ) {\n\t\t\tvar elem = event.target;\n\n\t\t\t// Swallow native change events from checkbox/radio, we already triggered them above\n\t\t\tif ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== \"radio\" && elem.type !== \"checkbox\") ) {\n\t\t\t\treturn event.handleObj.handler.apply( this, arguments );\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\tjQuery.event.remove( this, \"._change\" );\n\n\t\t\treturn !rformElems.test( this.nodeName );\n\t\t}\n\t};\n}\n\n// Create \"bubbling\" focus and blur events\nif ( !support.focusinBubbles ) {\n\tjQuery.each({ focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );\n\t\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tjQuery._data( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tjQuery._removeData( doc, fix );\n\t\t\t\t} else {\n\t\t\t\t\tjQuery._data( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\njQuery.fn.extend({\n\n\ton: function( types, selector, data, fn, /*INTERNAL*/ one ) {\n\t\tvar type, origFn;\n\n\t\t// Types can be a map of types/handlers\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-Object, selector, data )\n\t\t\tif ( typeof selector !== \"string\" ) {\n\t\t\t\t// ( types-Object, data )\n\t\t\t\tdata = data || selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.on( type, selector, data, types[ type ], one );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( data == null && fn == null ) {\n\t\t\t// ( types, fn )\n\t\t\tfn = selector;\n\t\t\tdata = selector = undefined;\n\t\t} else if ( fn == null ) {\n\t\t\tif ( typeof selector === \"string\" ) {\n\t\t\t\t// ( types, selector, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = undefined;\n\t\t\t} else {\n\t\t\t\t// ( types, data, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t} else if ( !fn ) {\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( one === 1 ) {\n\t\t\torigFn = fn;\n\t\t\tfn = function( event ) {\n\t\t\t\t// Can use an empty set, since event contains the info\n\t\t\t\tjQuery().off( event );\n\t\t\t\treturn origFn.apply( this, arguments );\n\t\t\t};\n\t\t\t// Use same guid so caller can remove using origFn\n\t\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.add( this, types, fn, data, selector );\n\t\t});\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn this.on( types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ? handleObj.origType + \".\" + handleObj.namespace : handleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t});\n\t},\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t});\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[0];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n});\n\n\nfunction createSafeFragment( document ) {\n\tvar list = nodeNames.split( \"|\" ),\n\t\tsafeFrag = document.createDocumentFragment();\n\n\tif ( safeFrag.createElement ) {\n\t\twhile ( list.length ) {\n\t\t\tsafeFrag.createElement(\n\t\t\t\tlist.pop()\n\t\t\t);\n\t\t}\n\t}\n\treturn safeFrag;\n}\n\nvar nodeNames = \"abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|\" +\n\t\t\"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video\",\n\trinlinejQuery = / jQuery\\d+=\"(?:null|\\d+)\"/g,\n\trnoshimcache = new RegExp(\"<(?:\" + nodeNames + \")[\\\\s/>]\", \"i\"),\n\trleadingWhitespace = /^\\s+/,\n\trxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>]*)\\/>/gi,\n\trtagName = /<([\\w:]+)/,\n\trtbody = /<tbody/i,\n\trhtml = /<|&#?\\w+;/,\n\trnoInnerhtml = /<(?:script|style|link)/i,\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trscriptType = /^$|\\/(?:java|ecma)script/i,\n\trscriptTypeMasked = /^true\\/(.*)/,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g,\n\n\t// We have to close these tags to support XHTML (#13200)\n\twrapMap = {\n\t\toption: [ 1, \"<select multiple='multiple'>\", \"</select>\" ],\n\t\tlegend: [ 1, \"<fieldset>\", \"</fieldset>\" ],\n\t\tarea: [ 1, \"<map>\", \"</map>\" ],\n\t\tparam: [ 1, \"<object>\", \"</object>\" ],\n\t\tthead: [ 1, \"<table>\", \"</table>\" ],\n\t\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\t\tcol: [ 2, \"<table><tbody></tbody><colgroup>\", \"</colgroup></table>\" ],\n\t\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t\t// IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags,\n\t\t// unless wrapped in a div with non-breaking characters in front of it.\n\t\t_default: support.htmlSerialize ? [ 0, \"\", \"\" ] : [ 1, \"X<div>\", \"</div>\"  ]\n\t},\n\tsafeFragment = createSafeFragment( document ),\n\tfragmentDiv = safeFragment.appendChild( document.createElement(\"div\") );\n\nwrapMap.optgroup = wrapMap.option;\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\nfunction getAll( context, tag ) {\n\tvar elems, elem,\n\t\ti = 0,\n\t\tfound = typeof context.getElementsByTagName !== strundefined ? context.getElementsByTagName( tag || \"*\" ) :\n\t\t\ttypeof context.querySelectorAll !== strundefined ? context.querySelectorAll( tag || \"*\" ) :\n\t\t\tundefined;\n\n\tif ( !found ) {\n\t\tfor ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( !tag || jQuery.nodeName( elem, tag ) ) {\n\t\t\t\tfound.push( elem );\n\t\t\t} else {\n\t\t\t\tjQuery.merge( found, getAll( elem, tag ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn tag === undefined || tag && jQuery.nodeName( context, tag ) ?\n\t\tjQuery.merge( [ context ], found ) :\n\t\tfound;\n}\n\n// Used in buildFragment, fixes the defaultChecked property\nfunction fixDefaultChecked( elem ) {\n\tif ( rcheckableType.test( elem.type ) ) {\n\t\telem.defaultChecked = elem.checked;\n\t}\n}\n\n// Support: IE<8\n// Manipulating tables requires a tbody\nfunction manipulationTarget( elem, content ) {\n\treturn jQuery.nodeName( elem, \"table\" ) &&\n\t\tjQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ?\n\n\t\telem.getElementsByTagName(\"tbody\")[0] ||\n\t\t\telem.appendChild( elem.ownerDocument.createElement(\"tbody\") ) :\n\t\telem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = (jQuery.find.attr( elem, \"type\" ) !== null) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tvar match = rscriptTypeMasked.exec( elem.type );\n\tif ( match ) {\n\t\telem.type = match[1];\n\t} else {\n\t\telem.removeAttribute(\"type\");\n\t}\n\treturn elem;\n}\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar elem,\n\t\ti = 0;\n\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\tjQuery._data( elem, \"globalEval\", !refElements || jQuery._data( refElements[i], \"globalEval\" ) );\n\t}\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\n\tif ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {\n\t\treturn;\n\t}\n\n\tvar type, i, l,\n\t\toldData = jQuery._data( src ),\n\t\tcurData = jQuery._data( dest, oldData ),\n\t\tevents = oldData.events;\n\n\tif ( events ) {\n\t\tdelete curData.handle;\n\t\tcurData.events = {};\n\n\t\tfor ( type in events ) {\n\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t}\n\t\t}\n\t}\n\n\t// make the cloned public data object a copy from the original\n\tif ( curData.data ) {\n\t\tcurData.data = jQuery.extend( {}, curData.data );\n\t}\n}\n\nfunction fixCloneNodeIssues( src, dest ) {\n\tvar nodeName, e, data;\n\n\t// We do not need to do anything for non-Elements\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\tnodeName = dest.nodeName.toLowerCase();\n\n\t// IE6-8 copies events bound via attachEvent when using cloneNode.\n\tif ( !support.noCloneEvent && dest[ jQuery.expando ] ) {\n\t\tdata = jQuery._data( dest );\n\n\t\tfor ( e in data.events ) {\n\t\t\tjQuery.removeEvent( dest, e, data.handle );\n\t\t}\n\n\t\t// Event data gets referenced instead of copied if the expando gets copied too\n\t\tdest.removeAttribute( jQuery.expando );\n\t}\n\n\t// IE blanks contents when cloning scripts, and tries to evaluate newly-set text\n\tif ( nodeName === \"script\" && dest.text !== src.text ) {\n\t\tdisableScript( dest ).text = src.text;\n\t\trestoreScript( dest );\n\n\t// IE6-10 improperly clones children of object elements using classid.\n\t// IE10 throws NoModificationAllowedError if parent is null, #12132.\n\t} else if ( nodeName === \"object\" ) {\n\t\tif ( dest.parentNode ) {\n\t\t\tdest.outerHTML = src.outerHTML;\n\t\t}\n\n\t\t// This path appears unavoidable for IE9. When cloning an object\n\t\t// element in IE9, the outerHTML strategy above is not sufficient.\n\t\t// If the src has innerHTML and the destination does not,\n\t\t// copy the src.innerHTML into the dest.innerHTML. #10324\n\t\tif ( support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) {\n\t\t\tdest.innerHTML = src.innerHTML;\n\t\t}\n\n\t} else if ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\t// IE6-8 fails to persist the checked state of a cloned checkbox\n\t\t// or radio button. Worse, IE6-7 fail to give the cloned element\n\t\t// a checked appearance if the defaultChecked value isn't also set\n\n\t\tdest.defaultChecked = dest.checked = src.checked;\n\n\t\t// IE6-7 get confused and end up setting the value of a cloned\n\t\t// checkbox/radio button to an empty string instead of \"on\"\n\t\tif ( dest.value !== src.value ) {\n\t\t\tdest.value = src.value;\n\t\t}\n\n\t// IE6-8 fails to return the selected option to the default selected\n\t// state when cloning options\n\t} else if ( nodeName === \"option\" ) {\n\t\tdest.defaultSelected = dest.selected = src.defaultSelected;\n\n\t// IE6-8 fails to set the defaultValue to the correct value when\n\t// cloning other types of input fields\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\njQuery.extend({\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar destElements, node, clone, i, srcElements,\n\t\t\tinPage = jQuery.contains( elem.ownerDocument, elem );\n\n\t\tif ( support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( \"<\" + elem.nodeName + \">\" ) ) {\n\t\t\tclone = elem.cloneNode( true );\n\n\t\t// IE<=8 does not properly clone detached, unknown element nodes\n\t\t} else {\n\t\t\tfragmentDiv.innerHTML = elem.outerHTML;\n\t\t\tfragmentDiv.removeChild( clone = fragmentDiv.firstChild );\n\t\t}\n\n\t\tif ( (!support.noCloneEvent || !support.noCloneChecked) &&\n\t\t\t\t(elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\t// Fix all IE cloning issues\n\t\t\tfor ( i = 0; (node = srcElements[i]) != null; ++i ) {\n\t\t\t\t// Ensure that the destination node is not null; Fixes #9587\n\t\t\t\tif ( destElements[i] ) {\n\t\t\t\t\tfixCloneNodeIssues( node, destElements[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0; (node = srcElements[i]) != null; i++ ) {\n\t\t\t\t\tcloneCopyEvent( node, destElements[i] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\tdestElements = srcElements = node = null;\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tbuildFragment: function( elems, context, scripts, selection ) {\n\t\tvar j, elem, contains,\n\t\t\ttmp, tag, tbody, wrap,\n\t\t\tl = elems.length,\n\n\t\t\t// Ensure a safe fragment\n\t\t\tsafe = createSafeFragment( context ),\n\n\t\t\tnodes = [],\n\t\t\ti = 0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\telem = elems[ i ];\n\n\t\t\tif ( elem || elem === 0 ) {\n\n\t\t\t\t// Add nodes directly\n\t\t\t\tif ( jQuery.type( elem ) === \"object\" ) {\n\t\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t\t// Convert non-html into a text node\n\t\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t\t// Convert html into DOM nodes\n\t\t\t\t} else {\n\t\t\t\t\ttmp = tmp || safe.appendChild( context.createElement(\"div\") );\n\n\t\t\t\t\t// Deserialize a standard representation\n\t\t\t\t\ttag = (rtagName.exec( elem ) || [ \"\", \"\" ])[ 1 ].toLowerCase();\n\t\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\n\t\t\t\t\ttmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, \"<$1></$2>\" ) + wrap[2];\n\n\t\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\t\tj = wrap[0];\n\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Manually add leading whitespace removed by IE\n\t\t\t\t\tif ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {\n\t\t\t\t\t\tnodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove IE's autoinserted <tbody> from table fragments\n\t\t\t\t\tif ( !support.tbody ) {\n\n\t\t\t\t\t\t// String was a <table>, *may* have spurious <tbody>\n\t\t\t\t\t\telem = tag === \"table\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\ttmp.firstChild :\n\n\t\t\t\t\t\t\t// String was a bare <thead> or <tfoot>\n\t\t\t\t\t\t\twrap[1] === \"<table>\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\t\ttmp :\n\t\t\t\t\t\t\t\t0;\n\n\t\t\t\t\t\tj = elem && elem.childNodes.length;\n\t\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\t\tif ( jQuery.nodeName( (tbody = elem.childNodes[j]), \"tbody\" ) && !tbody.childNodes.length ) {\n\t\t\t\t\t\t\t\telem.removeChild( tbody );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t\t// Fix #12392 for WebKit and IE > 9\n\t\t\t\t\ttmp.textContent = \"\";\n\n\t\t\t\t\t// Fix #12392 for oldIE\n\t\t\t\t\twhile ( tmp.firstChild ) {\n\t\t\t\t\t\ttmp.removeChild( tmp.firstChild );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remember the top-level container for proper cleanup\n\t\t\t\t\ttmp = safe.lastChild;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Fix #11356: Clear elements from fragment\n\t\tif ( tmp ) {\n\t\t\tsafe.removeChild( tmp );\n\t\t}\n\n\t\t// Reset defaultChecked for any radios and checkboxes\n\t\t// about to be appended to the DOM in IE 6/7 (#8060)\n\t\tif ( !support.appendChecked ) {\n\t\t\tjQuery.grep( getAll( nodes, \"input\" ), fixDefaultChecked );\n\t\t}\n\n\t\ti = 0;\n\t\twhile ( (elem = nodes[ i++ ]) ) {\n\n\t\t\t// #4087 - If origin and destination elements are the same, and this is\n\t\t\t// that element, do not do anything\n\t\t\tif ( selection && jQuery.inArray( elem, selection ) !== -1 ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tcontains = jQuery.contains( elem.ownerDocument, elem );\n\n\t\t\t// Append to fragment\n\t\t\ttmp = getAll( safe.appendChild( elem ), \"script\" );\n\n\t\t\t// Preserve script evaluation history\n\t\t\tif ( contains ) {\n\t\t\t\tsetGlobalEval( tmp );\n\t\t\t}\n\n\t\t\t// Capture executables\n\t\t\tif ( scripts ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (elem = tmp[ j++ ]) ) {\n\t\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\t\tscripts.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\ttmp = null;\n\n\t\treturn safe;\n\t},\n\n\tcleanData: function( elems, /* internal */ acceptData ) {\n\t\tvar elem, type, id, data,\n\t\t\ti = 0,\n\t\t\tinternalKey = jQuery.expando,\n\t\t\tcache = jQuery.cache,\n\t\t\tdeleteExpando = support.deleteExpando,\n\t\t\tspecial = jQuery.event.special;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( acceptData || jQuery.acceptData( elem ) ) {\n\n\t\t\t\tid = elem[ internalKey ];\n\t\t\t\tdata = id && cache[ id ];\n\n\t\t\t\tif ( data ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove cache only if it was not already removed by jQuery.event.remove\n\t\t\t\t\tif ( cache[ id ] ) {\n\n\t\t\t\t\t\tdelete cache[ id ];\n\n\t\t\t\t\t\t// IE does not allow us to delete expando properties from nodes,\n\t\t\t\t\t\t// nor does it have a removeAttribute function on Document nodes;\n\t\t\t\t\t\t// we must handle all of these cases\n\t\t\t\t\t\tif ( deleteExpando ) {\n\t\t\t\t\t\t\tdelete elem[ internalKey ];\n\n\t\t\t\t\t\t} else if ( typeof elem.removeAttribute !== strundefined ) {\n\t\t\t\t\t\t\telem.removeAttribute( internalKey );\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\telem[ internalKey ] = null;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tdeletedIds.push( id );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\njQuery.fn.extend({\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t});\n\t},\n\n\tprepend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t});\n\t},\n\n\tbefore: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t});\n\t},\n\n\tafter: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t});\n\t},\n\n\tremove: function( selector, keepData /* Internal Use Only */ ) {\n\t\tvar elem,\n\t\t\telems = selector ? jQuery.filter( selector, this ) : this,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\n\t\t\tif ( !keepData && elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem ) );\n\t\t\t}\n\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\tif ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\t\tsetGlobalEval( getAll( elem, \"script\" ) );\n\t\t\t\t}\n\t\t\t\telem.parentNode.removeChild( elem );\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = this[i]) != null; i++ ) {\n\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t}\n\n\t\t\t// Remove any remaining nodes\n\t\t\twhile ( elem.firstChild ) {\n\t\t\t\telem.removeChild( elem.firstChild );\n\t\t\t}\n\n\t\t\t// If this is a select, ensure that it displays empty (#12336)\n\t\t\t// Support: IE<9\n\t\t\tif ( elem.options && jQuery.nodeName( elem, \"select\" ) ) {\n\t\t\t\telem.options.length = 0;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map(function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t});\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined ) {\n\t\t\t\treturn elem.nodeType === 1 ?\n\t\t\t\t\telem.innerHTML.replace( rinlinejQuery, \"\" ) :\n\t\t\t\t\tundefined;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t( support.htmlSerialize || !rnoshimcache.test( value )  ) &&\n\t\t\t\t( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&\n\t\t\t\t!wrapMap[ (rtagName.exec( value ) || [ \"\", \"\" ])[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = value.replace( rxhtmlTag, \"<$1></$2>\" );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor (; i < l; i++ ) {\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\telem = this[i] || {};\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar arg = arguments[ 0 ];\n\n\t\t// Make the changes, replacing each context element with the new content\n\t\tthis.domManip( arguments, function( elem ) {\n\t\t\targ = this.parentNode;\n\n\t\t\tjQuery.cleanData( getAll( this ) );\n\n\t\t\tif ( arg ) {\n\t\t\t\targ.replaceChild( elem, this );\n\t\t\t}\n\t\t});\n\n\t\t// Force removal if there was no new content (e.g., from empty arguments)\n\t\treturn arg && (arg.length || arg.nodeType) ? this : this.remove();\n\t},\n\n\tdetach: function( selector ) {\n\t\treturn this.remove( selector, true );\n\t},\n\n\tdomManip: function( args, callback ) {\n\n\t\t// Flatten any nested arrays\n\t\targs = concat.apply( [], args );\n\n\t\tvar first, node, hasScripts,\n\t\t\tscripts, doc, fragment,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tset = this,\n\t\t\tiNoClone = l - 1,\n\t\t\tvalue = args[0],\n\t\t\tisFunction = jQuery.isFunction( value );\n\n\t\t// We can't cloneNode fragments that contain checked, in WebKit\n\t\tif ( isFunction ||\n\t\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\t\treturn this.each(function( index ) {\n\t\t\t\tvar self = set.eq( index );\n\t\t\t\tif ( isFunction ) {\n\t\t\t\t\targs[0] = value.call( this, index, self.html() );\n\t\t\t\t}\n\t\t\t\tself.domManip( args, callback );\n\t\t\t});\n\t\t}\n\n\t\tif ( l ) {\n\t\t\tfragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );\n\t\t\tfirst = fragment.firstChild;\n\n\t\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\t\tfragment = first;\n\t\t\t}\n\n\t\t\tif ( first ) {\n\t\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\t\thasScripts = scripts.length;\n\n\t\t\t\t// Use the original fragment for the last item instead of the first because it can end up\n\t\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\tnode = fragment;\n\n\t\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tcallback.call( this[i], node, i );\n\t\t\t\t}\n\n\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t\t// Reenable scripts\n\t\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t\t!jQuery._data( node, \"globalEval\" ) && jQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\t\tif ( node.src ) {\n\t\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\t\tif ( jQuery._evalUrl ) {\n\t\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.globalEval( ( node.text || node.textContent || node.innerHTML || \"\" ).replace( rcleanScript, \"\" ) );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Fix #11809: Avoid leaking memory\n\t\t\t\tfragment = first = null;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t}\n});\n\njQuery.each({\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\ti = 0,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone(true);\n\t\t\tjQuery( insert[i] )[ original ]( elems );\n\n\t\t\t// Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get()\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\n\n\nvar iframe,\n\telemdisplay = {};\n\n/**\n * Retrieve the actual display of a element\n * @param {String} name nodeName of the element\n * @param {Object} doc Document object\n */\n// Called only from within defaultDisplay\nfunction actualDisplay( name, doc ) {\n\tvar style,\n\t\telem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),\n\n\t\t// getDefaultComputedStyle might be reliably used only on attached element\n\t\tdisplay = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ?\n\n\t\t\t// Use of this method is a temporary fix (more like optmization) until something better comes along,\n\t\t\t// since it was removed from specification and supported only in FF\n\t\t\tstyle.display : jQuery.css( elem[ 0 ], \"display\" );\n\n\t// We don't have any data stored on the element,\n\t// so use \"detach\" method as fast way to get rid of the element\n\telem.detach();\n\n\treturn display;\n}\n\n/**\n * Try to determine the default display value of an element\n * @param {String} nodeName\n */\nfunction defaultDisplay( nodeName ) {\n\tvar doc = document,\n\t\tdisplay = elemdisplay[ nodeName ];\n\n\tif ( !display ) {\n\t\tdisplay = actualDisplay( nodeName, doc );\n\n\t\t// If the simple way fails, read from inside an iframe\n\t\tif ( display === \"none\" || !display ) {\n\n\t\t\t// Use the already-created iframe if possible\n\t\t\tiframe = (iframe || jQuery( \"<iframe frameborder='0' width='0' height='0'/>\" )).appendTo( doc.documentElement );\n\n\t\t\t// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse\n\t\t\tdoc = ( iframe[ 0 ].contentWindow || iframe[ 0 ].contentDocument ).document;\n\n\t\t\t// Support: IE\n\t\t\tdoc.write();\n\t\t\tdoc.close();\n\n\t\t\tdisplay = actualDisplay( nodeName, doc );\n\t\t\tiframe.detach();\n\t\t}\n\n\t\t// Store the correct default display\n\t\telemdisplay[ nodeName ] = display;\n\t}\n\n\treturn display;\n}\n\n\n(function() {\n\tvar shrinkWrapBlocksVal;\n\n\tsupport.shrinkWrapBlocks = function() {\n\t\tif ( shrinkWrapBlocksVal != null ) {\n\t\t\treturn shrinkWrapBlocksVal;\n\t\t}\n\n\t\t// Will be changed later if needed.\n\t\tshrinkWrapBlocksVal = false;\n\n\t\t// Minified: var b,c,d\n\t\tvar div, body, container;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\t// Support: IE6\n\t\t// Check if elements with layout shrink-wrap their children\n\t\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t\t// Reset CSS: box-sizing; display; margin; border\n\t\t\tdiv.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;\" +\n\t\t\t\t\"padding:1px;width:1px;zoom:1\";\n\t\t\tdiv.appendChild( document.createElement( \"div\" ) ).style.width = \"5px\";\n\t\t\tshrinkWrapBlocksVal = div.offsetWidth !== 3;\n\t\t}\n\n\t\tbody.removeChild( container );\n\n\t\treturn shrinkWrapBlocksVal;\n\t};\n\n})();\nvar rmargin = (/^margin/);\n\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\n\n\nvar getStyles, curCSS,\n\trposition = /^(top|right|bottom|left)$/;\n\nif ( window.getComputedStyle ) {\n\tgetStyles = function( elem ) {\n\t\t// Support: IE<=11+, Firefox<=30+ (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tif ( elem.ownerDocument.defaultView.opener ) {\n\t\t\treturn elem.ownerDocument.defaultView.getComputedStyle( elem, null );\n\t\t}\n\n\t\treturn window.getComputedStyle( elem, null );\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar width, minWidth, maxWidth, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\n\t\t// getPropertyValue is only needed for .css('filter') in IE9, see #12537\n\t\tret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;\n\n\t\tif ( computed ) {\n\n\t\t\tif ( ret === \"\" && !jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\tret = jQuery.style( elem, name );\n\t\t\t}\n\n\t\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t\t// Chrome < 17 and Safari 5.0 uses \"computed value\" instead of \"used value\" for margin-right\n\t\t\t// Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels\n\t\t\t// this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values\n\t\t\tif ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {\n\n\t\t\t\t// Remember the original values\n\t\t\t\twidth = style.width;\n\t\t\t\tminWidth = style.minWidth;\n\t\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t\t// Put in the new values to get a computed value out\n\t\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\t\tret = computed.width;\n\n\t\t\t\t// Revert the changed values\n\t\t\t\tstyle.width = width;\n\t\t\t\tstyle.minWidth = minWidth;\n\t\t\t\tstyle.maxWidth = maxWidth;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\";\n\t};\n} else if ( document.documentElement.currentStyle ) {\n\tgetStyles = function( elem ) {\n\t\treturn elem.currentStyle;\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar left, rs, rsLeft, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\t\tret = computed ? computed[ name ] : undefined;\n\n\t\t// Avoid setting ret to empty string here\n\t\t// so we don't default to auto\n\t\tif ( ret == null && style && style[ name ] ) {\n\t\t\tret = style[ name ];\n\t\t}\n\n\t\t// From the awesome hack by Dean Edwards\n\t\t// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291\n\n\t\t// If we're not dealing with a regular pixel number\n\t\t// but a number that has a weird ending, we need to convert it to pixels\n\t\t// but not position css attributes, as those are proportional to the parent element instead\n\t\t// and we can't measure the parent instead because it might trigger a \"stacking dolls\" problem\n\t\tif ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\tleft = style.left;\n\t\t\trs = elem.runtimeStyle;\n\t\t\trsLeft = rs && rs.left;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = elem.currentStyle.left;\n\t\t\t}\n\t\t\tstyle.left = name === \"fontSize\" ? \"1em\" : ret;\n\t\t\tret = style.pixelLeft + \"px\";\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.left = left;\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = rsLeft;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\" || \"auto\";\n\t};\n}\n\n\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tvar condition = conditionFn();\n\n\t\t\tif ( condition == null ) {\n\t\t\t\t// The test was not ready at this point; screw the hook this time\n\t\t\t\t// but check again when needed next time.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( condition ) {\n\t\t\t\t// Hook not needed (or it's not possible to use it due to missing dependency),\n\t\t\t\t// remove it.\n\t\t\t\t// Since there are no other hooks for marginRight, remove the whole object.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\n\t\t\treturn (this.get = hookFn).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\n(function() {\n\t// Minified: var b,c,d,e,f,g, h,i\n\tvar div, style, a, pixelPositionVal, boxSizingReliableVal,\n\t\treliableHiddenOffsetsVal, reliableMarginRightVal;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName( \"a\" )[ 0 ];\n\tstyle = a && a.style;\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !style ) {\n\t\treturn;\n\t}\n\n\tstyle.cssText = \"float:left;opacity:.5\";\n\n\t// Support: IE<9\n\t// Make sure that element opacity exists (as opposed to filter)\n\tsupport.opacity = style.opacity === \"0.5\";\n\n\t// Verify style float existence\n\t// (IE uses styleFloat instead of cssFloat)\n\tsupport.cssFloat = !!style.cssFloat;\n\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\t// Support: Firefox<29, Android 2.3\n\t// Vendor-prefix box-sizing\n\tsupport.boxSizing = style.boxSizing === \"\" || style.MozBoxSizing === \"\" ||\n\t\tstyle.WebkitBoxSizing === \"\";\n\n\tjQuery.extend(support, {\n\t\treliableHiddenOffsets: function() {\n\t\t\tif ( reliableHiddenOffsetsVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableHiddenOffsetsVal;\n\t\t},\n\n\t\tboxSizingReliable: function() {\n\t\t\tif ( boxSizingReliableVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\n\t\tpixelPosition: function() {\n\t\t\tif ( pixelPositionVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn pixelPositionVal;\n\t\t},\n\n\t\t// Support: Android 2.3\n\t\treliableMarginRight: function() {\n\t\t\tif ( reliableMarginRightVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableMarginRightVal;\n\t\t}\n\t});\n\n\tfunction computeStyleTests() {\n\t\t// Minified: var b,c,d,j\n\t\tvar div, body, container, contents;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\tdiv.style.cssText =\n\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t// Vendor-prefix box-sizing\n\t\t\t\"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;\" +\n\t\t\t\"box-sizing:border-box;display:block;margin-top:1%;top:1%;\" +\n\t\t\t\"border:1px;padding:1px;width:4px;position:absolute\";\n\n\t\t// Support: IE<9\n\t\t// Assume reasonable values in the absence of getComputedStyle\n\t\tpixelPositionVal = boxSizingReliableVal = false;\n\t\treliableMarginRightVal = true;\n\n\t\t// Check for getComputedStyle so that this code is not run in IE<9.\n\t\tif ( window.getComputedStyle ) {\n\t\t\tpixelPositionVal = ( window.getComputedStyle( div, null ) || {} ).top !== \"1%\";\n\t\t\tboxSizingReliableVal =\n\t\t\t\t( window.getComputedStyle( div, null ) || { width: \"4px\" } ).width === \"4px\";\n\n\t\t\t// Support: Android 2.3\n\t\t\t// Div with explicit width and no margin-right incorrectly\n\t\t\t// gets computed margin-right based on width of container (#3333)\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\tcontents = div.appendChild( document.createElement( \"div\" ) );\n\n\t\t\t// Reset CSS: box-sizing; display; margin; border; padding\n\t\t\tcontents.style.cssText = div.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;padding:0\";\n\t\t\tcontents.style.marginRight = contents.style.width = \"0\";\n\t\t\tdiv.style.width = \"1px\";\n\n\t\t\treliableMarginRightVal =\n\t\t\t\t!parseFloat( ( window.getComputedStyle( contents, null ) || {} ).marginRight );\n\n\t\t\tdiv.removeChild( contents );\n\t\t}\n\n\t\t// Support: IE8\n\t\t// Check if table cells still have offsetWidth/Height when they are set\n\t\t// to display:none and there are still other visible table cells in a\n\t\t// table row; if so, offsetWidth/Height are not reliable for use when\n\t\t// determining if an element has been hidden directly using\n\t\t// display:none (it is still safe to use offsets if a parent element is\n\t\t// hidden; don safety goggles and see bug #4512 for more information).\n\t\tdiv.innerHTML = \"<table><tr><td></td><td>t</td></tr></table>\";\n\t\tcontents = div.getElementsByTagName( \"td\" );\n\t\tcontents[ 0 ].style.cssText = \"margin:0;border:0;padding:0;display:none\";\n\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\tif ( reliableHiddenOffsetsVal ) {\n\t\t\tcontents[ 0 ].style.display = \"\";\n\t\t\tcontents[ 1 ].style.display = \"none\";\n\t\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\t}\n\n\t\tbody.removeChild( container );\n\t}\n\n})();\n\n\n// A method for quickly swapping in/out CSS properties to get correct calculations.\njQuery.swap = function( elem, options, callback, args ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.apply( elem, args || [] );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar\n\t\tralpha = /alpha\\([^)]*\\)/i,\n\tropacity = /opacity\\s*=\\s*([^)]*)/,\n\n\t// swappable if display is none or starts with table except \"table\", \"table-cell\", or \"table-caption\"\n\t// see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trnumsplit = new RegExp( \"^(\" + pnum + \")(.*)$\", \"i\" ),\n\trrelNum = new RegExp( \"^([+-])=(\" + pnum + \")\", \"i\" ),\n\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t},\n\n\tcssPrefixes = [ \"Webkit\", \"O\", \"Moz\", \"ms\" ];\n\n\n// return a css property mapped to a potentially vendor prefixed property\nfunction vendorPropName( style, name ) {\n\n\t// shortcut for names that are not vendor prefixed\n\tif ( name in style ) {\n\t\treturn name;\n\t}\n\n\t// check for vendor prefixed names\n\tvar capName = name.charAt(0).toUpperCase() + name.slice(1),\n\t\torigName = name,\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in style ) {\n\t\t\treturn name;\n\t\t}\n\t}\n\n\treturn origName;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem, hidden,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\" );\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\t\t\t// Reset the inline display of this element to learn if it is\n\t\t\t// being hidden by cascaded rules or not\n\t\t\tif ( !values[ index ] && display === \"none\" ) {\n\t\t\t\telem.style.display = \"\";\n\t\t\t}\n\n\t\t\t// Set elements which have been overridden with display: none\n\t\t\t// in a stylesheet to whatever the default browser style is\n\t\t\t// for such an element\n\t\t\tif ( elem.style.display === \"\" && isHidden( elem ) ) {\n\t\t\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\", defaultDisplay(elem.nodeName) );\n\t\t\t}\n\t\t} else {\n\t\t\thidden = isHidden( elem );\n\n\t\t\tif ( display && display !== \"none\" || !hidden ) {\n\t\t\t\tjQuery._data( elem, \"olddisplay\", hidden ? display : jQuery.css( elem, \"display\" ) );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of most of the elements in a second loop\n\t// to avoid the constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( !show || elem.style.display === \"none\" || elem.style.display === \"\" ) {\n\t\t\telem.style.display = show ? values[ index ] || \"\" : \"none\";\n\t\t}\n\t}\n\n\treturn elements;\n}\n\nfunction setPositiveNumber( elem, value, subtract ) {\n\tvar matches = rnumsplit.exec( value );\n\treturn matches ?\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {\n\tvar i = extra === ( isBorderBox ? \"border\" : \"content\" ) ?\n\t\t// If we already have the right measurement, avoid augmentation\n\t\t4 :\n\t\t// Otherwise initialize for horizontal or vertical properties\n\t\tname === \"width\" ? 1 : 0,\n\n\t\tval = 0;\n\n\tfor ( ; i < 4; i += 2 ) {\n\t\t// both box models exclude margin, so add it if we want it\n\t\tif ( extra === \"margin\" ) {\n\t\t\tval += jQuery.css( elem, extra + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\tif ( isBorderBox ) {\n\t\t\t// border-box includes padding, so remove it if we want content\n\t\t\tif ( extra === \"content\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// at this point, extra isn't border nor margin, so remove border\n\t\t\tif ( extra !== \"margin\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t} else {\n\t\t\t// at this point, extra isn't content, so add padding\n\t\t\tval += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// at this point, extra isn't content nor padding, so add border\n\t\t\tif ( extra !== \"padding\" ) {\n\t\t\t\tval += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn val;\n}\n\nfunction getWidthOrHeight( elem, name, extra ) {\n\n\t// Start with offset property, which is equivalent to the border-box value\n\tvar valueIsBorderBox = true,\n\t\tval = name === \"width\" ? elem.offsetWidth : elem.offsetHeight,\n\t\tstyles = getStyles( elem ),\n\t\tisBorderBox = support.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t// some non-html elements return undefined for offsetWidth, so check for null/undefined\n\t// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285\n\t// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668\n\tif ( val <= 0 || val == null ) {\n\t\t// Fall back to computed then uncomputed css if necessary\n\t\tval = curCSS( elem, name, styles );\n\t\tif ( val < 0 || val == null ) {\n\t\t\tval = elem.style[ name ];\n\t\t}\n\n\t\t// Computed unit is not pixels. Stop here and return.\n\t\tif ( rnumnonpx.test(val) ) {\n\t\t\treturn val;\n\t\t}\n\n\t\t// we need the check for style in case a browser which returns unreliable values\n\t\t// for getComputedStyle silently falls back to the reliable elem.style\n\t\tvalueIsBorderBox = isBorderBox && ( support.boxSizingReliable() || val === elem.style[ name ] );\n\n\t\t// Normalize \"\", auto, and prepare for extra\n\t\tval = parseFloat( val ) || 0;\n\t}\n\n\t// use the active box-sizing model to add/subtract irrelevant styles\n\treturn ( val +\n\t\taugmentWidthOrHeight(\n\t\t\telem,\n\t\t\tname,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend({\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {\n\t\t// normalize float css property\n\t\t\"float\": support.cssFloat ? \"cssFloat\" : \"styleFloat\"\n\t},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = jQuery.camelCase( name ),\n\t\t\tstyle = elem.style;\n\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// convert relative number strings (+= or -=) to relative numbers. #7345\n\t\t\tif ( type === \"string\" && (ret = rrelNum.exec( value )) ) {\n\t\t\t\tvalue = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set. See: #7116\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add 'px' to the (except for certain CSS properties)\n\t\t\tif ( type === \"number\" && !jQuery.cssNumber[ origName ] ) {\n\t\t\t\tvalue += \"px\";\n\t\t\t}\n\n\t\t\t// Fixes #8908, it can be done more correctly by specifing setters in cssHooks,\n\t\t\t// but it would mean to define eight (for every problematic property) identical functions\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf(\"background\") === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !(\"set\" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {\n\n\t\t\t\t// Support: IE\n\t\t\t\t// Swallow errors from 'invalid' CSS values (#5509)\n\t\t\t\ttry {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t} else {\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar num, val, hooks,\n\t\t\torigName = jQuery.camelCase( name );\n\n\t\t// Make sure that we're working with the right name\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t//convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Return, converting to number if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || jQuery.isNumeric( num ) ? num || 0 : val;\n\t\t}\n\t\treturn val;\n\t}\n});\n\njQuery.each([ \"height\", \"width\" ], function( i, name ) {\n\tjQuery.cssHooks[ name ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\t\t\t\t// certain elements can have dimension info if we invisibly show them\n\t\t\t\t// however, it must have a current display style that would benefit from this\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) && elem.offsetWidth === 0 ?\n\t\t\t\t\tjQuery.swap( elem, cssShow, function() {\n\t\t\t\t\t\treturn getWidthOrHeight( elem, name, extra );\n\t\t\t\t\t}) :\n\t\t\t\t\tgetWidthOrHeight( elem, name, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar styles = extra && getStyles( elem );\n\t\t\treturn setPositiveNumber( elem, value, extra ?\n\t\t\t\taugmentWidthOrHeight(\n\t\t\t\t\telem,\n\t\t\t\t\tname,\n\t\t\t\t\textra,\n\t\t\t\t\tsupport.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\t\tstyles\n\t\t\t\t) : 0\n\t\t\t);\n\t\t}\n\t};\n});\n\nif ( !support.opacity ) {\n\tjQuery.cssHooks.opacity = {\n\t\tget: function( elem, computed ) {\n\t\t\t// IE uses filters for opacity\n\t\t\treturn ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || \"\" ) ?\n\t\t\t\t( 0.01 * parseFloat( RegExp.$1 ) ) + \"\" :\n\t\t\t\tcomputed ? \"1\" : \"\";\n\t\t},\n\n\t\tset: function( elem, value ) {\n\t\t\tvar style = elem.style,\n\t\t\t\tcurrentStyle = elem.currentStyle,\n\t\t\t\topacity = jQuery.isNumeric( value ) ? \"alpha(opacity=\" + value * 100 + \")\" : \"\",\n\t\t\t\tfilter = currentStyle && currentStyle.filter || style.filter || \"\";\n\n\t\t\t// IE has trouble with opacity if it does not have layout\n\t\t\t// Force it by setting the zoom level\n\t\t\tstyle.zoom = 1;\n\n\t\t\t// if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652\n\t\t\t// if value === \"\", then remove inline opacity #12685\n\t\t\tif ( ( value >= 1 || value === \"\" ) &&\n\t\t\t\t\tjQuery.trim( filter.replace( ralpha, \"\" ) ) === \"\" &&\n\t\t\t\t\tstyle.removeAttribute ) {\n\n\t\t\t\t// Setting style.filter to null, \"\" & \" \" still leave \"filter:\" in the cssText\n\t\t\t\t// if \"filter:\" is present at all, clearType is disabled, we want to avoid this\n\t\t\t\t// style.removeAttribute is IE Only, but so apparently is this code path...\n\t\t\t\tstyle.removeAttribute( \"filter\" );\n\n\t\t\t\t// if there is no filter style applied in a css rule or unset inline opacity, we are done\n\t\t\t\tif ( value === \"\" || currentStyle && !currentStyle.filter ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// otherwise, set new filter values\n\t\t\tstyle.filter = ralpha.test( filter ) ?\n\t\t\t\tfilter.replace( ralpha, opacity ) :\n\t\t\t\tfilter + \" \" + opacity;\n\t\t}\n\t};\n}\n\njQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\t// Work around by temporarily setting element display to inline-block\n\t\t\treturn jQuery.swap( elem, { \"display\": \"inline-block\" },\n\t\t\t\tcurCSS, [ elem, \"marginRight\" ] );\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each({\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split(\" \") : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( !rmargin.test( prefix ) ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n});\n\njQuery.fn.extend({\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( jQuery.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t},\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( isHidden( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t});\n\t}\n});\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || \"swing\";\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\tif ( tween.elem[ tween.prop ] != null &&\n\t\t\t\t(!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails\n\t\t\t// so, simple values such as \"10px\" are parsed to Float.\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\t\t\t// use step hook for back compat - use cssHook if its there - use .style if its\n\t\t\t// available and use plain properties where available\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9\n// Panic based approach to setting things on disconnected nodes\n\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t}\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back Compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, timerId,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trfxnum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" ),\n\trrun = /queueHooks$/,\n\tanimationPrefilters = [ defaultPrefilter ],\n\ttweeners = {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value ),\n\t\t\t\ttarget = tween.cur(),\n\t\t\t\tparts = rfxnum.exec( value ),\n\t\t\t\tunit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t\t\t// Starting value computation is required for potential unit mismatches\n\t\t\t\tstart = ( jQuery.cssNumber[ prop ] || unit !== \"px\" && +target ) &&\n\t\t\t\t\trfxnum.exec( jQuery.css( tween.elem, prop ) ),\n\t\t\t\tscale = 1,\n\t\t\t\tmaxIterations = 20;\n\n\t\t\tif ( start && start[ 3 ] !== unit ) {\n\t\t\t\t// Trust units reported by jQuery.css\n\t\t\t\tunit = unit || start[ 3 ];\n\n\t\t\t\t// Make sure we update the tween properties later on\n\t\t\t\tparts = parts || [];\n\n\t\t\t\t// Iteratively approximate from a nonzero starting point\n\t\t\t\tstart = +target || 1;\n\n\t\t\t\tdo {\n\t\t\t\t\t// If previous iteration zeroed out, double until we get *something*\n\t\t\t\t\t// Use a string for doubling factor so we don't accidentally see scale as unchanged below\n\t\t\t\t\tscale = scale || \".5\";\n\n\t\t\t\t\t// Adjust and apply\n\t\t\t\t\tstart = start / scale;\n\t\t\t\t\tjQuery.style( tween.elem, prop, start + unit );\n\n\t\t\t\t// Update scale, tolerating zero or NaN from tween.cur()\n\t\t\t\t// And breaking the loop if scale is unchanged or perfect, or if we've just had enough\n\t\t\t\t} while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );\n\t\t\t}\n\n\t\t\t// Update tween properties\n\t\t\tif ( parts ) {\n\t\t\t\tstart = tween.start = +start || +target || 0;\n\t\t\t\ttween.unit = unit;\n\t\t\t\t// If a +=/-= token was provided, we're doing a relative animation\n\t\t\t\ttween.end = parts[ 1 ] ?\n\t\t\t\t\tstart + ( parts[ 1 ] + 1 ) * parts[ 2 ] :\n\t\t\t\t\t+parts[ 2 ];\n\t\t\t}\n\n\t\t\treturn tween;\n\t\t} ]\n\t};\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\tsetTimeout(function() {\n\t\tfxNow = undefined;\n\t});\n\treturn ( fxNow = jQuery.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\tattrs = { height: type },\n\t\ti = 0;\n\n\t// if we include width, step value is 1 to do all cssExpand values,\n\t// if we don't include width, step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4 ; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( tweeners[ prop ] || [] ).concat( tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( (tween = collection[ index ].call( animation, prop, value )) ) {\n\n\t\t\t// we're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\t/* jshint validthis: true */\n\tvar prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHidden( elem ),\n\t\tdataShow = jQuery._data( elem, \"fxshow\" );\n\n\t// handle queue: false promises\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always(function() {\n\t\t\t// doing this makes sure that the complete handler will be called\n\t\t\t// before this completes\n\t\t\tanim.always(function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t}\n\n\t// height/width overflow pass\n\tif ( elem.nodeType === 1 && ( \"height\" in props || \"width\" in props ) ) {\n\t\t// Make sure that nothing sneaks out\n\t\t// Record all 3 overflow attributes because IE does not\n\t\t// change the overflow attribute when overflowX and\n\t\t// overflowY are set to the same value\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Set display property to inline-block for height/width\n\t\t// animations on inline elements that are having width/height animated\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\n\t\t// Test default display if display is currently \"none\"\n\t\tcheckDisplay = display === \"none\" ?\n\t\t\tjQuery._data( elem, \"olddisplay\" ) || defaultDisplay( elem.nodeName ) : display;\n\n\t\tif ( checkDisplay === \"inline\" && jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t// inline-level elements accept inline-block;\n\t\t\t// block-level elements need to be inline with layout\n\t\t\tif ( !support.inlineBlockNeedsLayout || defaultDisplay( elem.nodeName ) === \"inline\" ) {\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t} else {\n\t\t\t\tstyle.zoom = 1;\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tif ( !support.shrinkWrapBlocks() ) {\n\t\t\tanim.always(function() {\n\t\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t\t});\n\t\t}\n\t}\n\n\t// show/hide pass\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.exec( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\n\t\t// Any non-fx value stops us from restoring the original display value\n\t\t} else {\n\t\t\tdisplay = undefined;\n\t\t}\n\t}\n\n\tif ( !jQuery.isEmptyObject( orig ) ) {\n\t\tif ( dataShow ) {\n\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\thidden = dataShow.hidden;\n\t\t\t}\n\t\t} else {\n\t\t\tdataShow = jQuery._data( elem, \"fxshow\", {} );\n\t\t}\n\n\t\t// store state if its toggle - enables .stop().toggle() to \"reverse\"\n\t\tif ( toggle ) {\n\t\t\tdataShow.hidden = !hidden;\n\t\t}\n\t\tif ( hidden ) {\n\t\t\tjQuery( elem ).show();\n\t\t} else {\n\t\t\tanim.done(function() {\n\t\t\t\tjQuery( elem ).hide();\n\t\t\t});\n\t\t}\n\t\tanim.done(function() {\n\t\t\tvar prop;\n\t\t\tjQuery._removeData( elem, \"fxshow\" );\n\t\t\tfor ( prop in orig ) {\n\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t}\n\t\t});\n\t\tfor ( prop in orig ) {\n\t\t\ttween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\n\t\t\tif ( !( prop in dataShow ) ) {\n\t\t\t\tdataShow[ prop ] = tween.start;\n\t\t\t\tif ( hidden ) {\n\t\t\t\t\ttween.end = tween.start;\n\t\t\t\t\ttween.start = prop === \"width\" || prop === \"height\" ? 1 : 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t// If this is a noop like .hide().hide(), restore an overwritten display value\n\t} else if ( (display === \"none\" ? defaultDisplay( elem.nodeName ) : display) === \"inline\" ) {\n\t\tstyle.display = display;\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = jQuery.camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( jQuery.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// not quite $.extend, this wont overwrite keys already present.\n\t\t\t// also - reusing 'index' from above because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = animationPrefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\t\t\t// don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t}),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\t\t\t\t// archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ]);\n\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t} else {\n\t\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\t\tanimation = deferred.promise({\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, { specialEasing: {} }, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\t\t\t\t\t// if we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// resolve when we played the last frame\n\t\t\t\t// otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t}),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length ; index++ ) {\n\t\tresult = animationPrefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( jQuery.isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t})\n\t);\n\n\t// attach callbacks from options\n\treturn animation.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\ttweener: function( props, callback ) {\n\t\tif ( jQuery.isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.split(\" \");\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length ; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\ttweeners[ prop ] = tweeners[ prop ] || [];\n\t\t\ttweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tanimationPrefilters.unshift( callback );\n\t\t} else {\n\t\t\tanimationPrefilters.push( callback );\n\t\t}\n\t}\n});\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tjQuery.isFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !jQuery.isFunction( easing ) && easing\n\t};\n\n\topt.duration = jQuery.fx.off ? 0 : typeof opt.duration === \"number\" ? opt.duration :\n\t\topt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;\n\n\t// normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( jQuery.isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend({\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHidden ).css( \"opacity\", 0 ).show()\n\n\t\t\t// animate to the value specified\n\t\t\t.end().animate({ opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || jQuery._data( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue && type !== false ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = jQuery._data( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// start the next in the queue if the last step wasn't forced\n\t\t\t// timers currently will call their complete callbacks, which will dequeue\n\t\t\t// but only if they were gotoEnd\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t});\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tvar index,\n\t\t\t\tdata = jQuery._data( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t});\n\t}\n});\n\njQuery.each([ \"toggle\", \"show\", \"hide\" ], function( i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n});\n\n// Generate shortcuts for custom animations\njQuery.each({\n\tslideDown: genFx(\"show\"),\n\tslideUp: genFx(\"hide\"),\n\tslideToggle: genFx(\"toggle\"),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n});\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ttimers = jQuery.timers,\n\t\ti = 0;\n\n\tfxNow = jQuery.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\t\t// Checks the timer has not already been removed\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tif ( timer() ) {\n\t\tjQuery.fx.start();\n\t} else {\n\t\tjQuery.timers.pop();\n\t}\n};\n\njQuery.fx.interval = 13;\n\njQuery.fx.start = function() {\n\tif ( !timerId ) {\n\t\ttimerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );\n\t}\n};\n\njQuery.fx.stop = function() {\n\tclearInterval( timerId );\n\ttimerId = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\tclearTimeout( timeout );\n\t\t};\n\t});\n};\n\n\n(function() {\n\t// Minified: var a,b,c,d,e\n\tvar input, div, select, a, opt;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.setAttribute( \"className\", \"t\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName(\"a\")[ 0 ];\n\n\t// First batch of tests.\n\tselect = document.createElement(\"select\");\n\topt = select.appendChild( document.createElement(\"option\") );\n\tinput = div.getElementsByTagName(\"input\")[ 0 ];\n\n\ta.style.cssText = \"top:1px\";\n\n\t// Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)\n\tsupport.getSetAttribute = div.className !== \"t\";\n\n\t// Get the style information from getAttribute\n\t// (IE uses .cssText instead)\n\tsupport.style = /top/.test( a.getAttribute(\"style\") );\n\n\t// Make sure that URLs aren't manipulated\n\t// (IE normalizes it by default)\n\tsupport.hrefNormalized = a.getAttribute(\"href\") === \"/a\";\n\n\t// Check the default checkbox/radio value (\"\" on WebKit; \"on\" elsewhere)\n\tsupport.checkOn = !!input.value;\n\n\t// Make sure that a selected-by-default option has a working selected property.\n\t// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)\n\tsupport.optSelected = opt.selected;\n\n\t// Tests for enctype support on a form (#6743)\n\tsupport.enctype = !!document.createElement(\"form\").enctype;\n\n\t// Make sure that the options inside disabled selects aren't marked as disabled\n\t// (WebKit marks them as disabled)\n\tselect.disabled = true;\n\tsupport.optDisabled = !opt.disabled;\n\n\t// Support: IE8 only\n\t// Check if we can trust getAttribute(\"value\")\n\tinput = document.createElement( \"input\" );\n\tinput.setAttribute( \"value\", \"\" );\n\tsupport.input = input.getAttribute( \"value\" ) === \"\";\n\n\t// Check if an input maintains its value after becoming a radio\n\tinput.value = \"t\";\n\tinput.setAttribute( \"type\", \"radio\" );\n\tsupport.radioValue = input.value === \"t\";\n})();\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend({\n\tval: function( value ) {\n\t\tvar hooks, ret, isFunction,\n\t\t\telem = this[0];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, \"value\" )) !== undefined ) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\treturn typeof ret === \"string\" ?\n\t\t\t\t\t// handle most common string cases\n\t\t\t\t\tret.replace(rreturn, \"\") :\n\t\t\t\t\t// handle cases where value is null/undef or number\n\t\t\t\t\tret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tisFunction = jQuery.isFunction( value );\n\n\t\treturn this.each(function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( isFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\t\t\t} else if ( jQuery.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t});\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !(\"set\" in hooks) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\t\t\t\t\t// Support: IE10-11+\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\tjQuery.trim( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\" || index < 0,\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length,\n\t\t\t\t\ti = index < 0 ?\n\t\t\t\t\t\tmax :\n\t\t\t\t\t\tone ? index : 0;\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// oldIE doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t( support.optDisabled ? !option.disabled : option.getAttribute(\"disabled\") === null ) &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\tif ( jQuery.inArray( jQuery.valHooks.option.get( option ), values ) >= 0 ) {\n\n\t\t\t\t\t\t// Support: IE6\n\t\t\t\t\t\t// When new option element is added to select box we need to\n\t\t\t\t\t\t// force reflow of newly added node in order to workaround delay\n\t\t\t\t\t\t// of initialization properties\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\toption.selected = optionSet = true;\n\n\t\t\t\t\t\t} catch ( _ ) {\n\n\t\t\t\t\t\t\t// Will be executed only in IE6\n\t\t\t\t\t\t\toption.scrollHeight;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\toption.selected = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\n\t\t\t\treturn options;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Radios and checkboxes getter/setter\njQuery.each([ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( jQuery.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\t// Support: Webkit\n\t\t\t// \"\" is returned instead of \"on\" if a value isn't specified\n\t\t\treturn elem.getAttribute(\"value\") === null ? \"on\" : elem.value;\n\t\t};\n\t}\n});\n\n\n\n\nvar nodeHook, boolHook,\n\tattrHandle = jQuery.expr.attrHandle,\n\truseDefault = /^(?:checked|selected)$/i,\n\tgetSetAttribute = support.getSetAttribute,\n\tgetSetInput = support.input;\n\njQuery.fn.extend({\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tattr: function( elem, name, value ) {\n\t\tvar hooks, ret,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set attributes on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === strundefined ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// All attributes are lowercase\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\tname = name.toLowerCase();\n\t\t\thooks = jQuery.attrHooks[ name ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\n\t\t\t} else if ( hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {\n\t\t\t\treturn ret;\n\n\t\t\t} else {\n\t\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\t\treturn value;\n\t\t\t}\n\n\t\t} else if ( hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ) {\n\t\t\treturn ret;\n\n\t\t} else {\n\t\t\tret = jQuery.find.attr( elem, name );\n\n\t\t\t// Non-existent attributes return null, we normalize to undefined\n\t\t\treturn ret == null ?\n\t\t\t\tundefined :\n\t\t\t\tret;\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name, propName,\n\t\t\ti = 0,\n\t\t\tattrNames = value && value.match( rnotwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( (name = attrNames[i++]) ) {\n\t\t\t\tpropName = jQuery.propFix[ name ] || name;\n\n\t\t\t\t// Boolean attributes get special treatment (#10870)\n\t\t\t\tif ( jQuery.expr.match.bool.test( name ) ) {\n\t\t\t\t\t// Set corresponding property to false\n\t\t\t\t\tif ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t// Also clear defaultChecked/defaultSelected (if appropriate)\n\t\t\t\t\t} else {\n\t\t\t\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] =\n\t\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t}\n\n\t\t\t\t// See #9699 for explanation of this approach (setting first, then removal)\n\t\t\t\t} else {\n\t\t\t\t\tjQuery.attr( elem, name, \"\" );\n\t\t\t\t}\n\n\t\t\t\telem.removeAttribute( getSetAttribute ? name : propName );\n\t\t\t}\n\t\t}\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" && jQuery.nodeName(elem, \"input\") ) {\n\t\t\t\t\t// Setting the type on a radio button after the value resets the value in IE6-9\n\t\t\t\t\t// Reset value to default in case type is set after value during creation\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Hook for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t// IE<8 needs the *property* name\n\t\t\telem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name );\n\n\t\t// Use defaultChecked and defaultSelected for oldIE\n\t\t} else {\n\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] = elem[ name ] = true;\n\t\t}\n\n\t\treturn name;\n\t}\n};\n\n// Retrieve booleans specially\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( i, name ) {\n\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ?\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret, handle;\n\t\t\tif ( !isXML ) {\n\t\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\t\thandle = attrHandle[ name ];\n\t\t\t\tattrHandle[ name ] = ret;\n\t\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t\tattrHandle[ name ] = handle;\n\t\t\t}\n\t\t\treturn ret;\n\t\t} :\n\t\tfunction( elem, name, isXML ) {\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn elem[ jQuery.camelCase( \"default-\" + name ) ] ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n});\n\n// fix oldIE attroperties\nif ( !getSetInput || !getSetAttribute ) {\n\tjQuery.attrHooks.value = {\n\t\tset: function( elem, value, name ) {\n\t\t\tif ( jQuery.nodeName( elem, \"input\" ) ) {\n\t\t\t\t// Does not return so that setAttribute is also used\n\t\t\t\telem.defaultValue = value;\n\t\t\t} else {\n\t\t\t\t// Use nodeHook if defined (#1954); otherwise setAttribute is fine\n\t\t\t\treturn nodeHook && nodeHook.set( elem, value, name );\n\t\t\t}\n\t\t}\n\t};\n}\n\n// IE6/7 do not support getting/setting some attributes with get/setAttribute\nif ( !getSetAttribute ) {\n\n\t// Use this for any attribute in IE6/7\n\t// This fixes almost every IE6/7 issue\n\tnodeHook = {\n\t\tset: function( elem, value, name ) {\n\t\t\t// Set the existing or create a new attribute node\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( !ret ) {\n\t\t\t\telem.setAttributeNode(\n\t\t\t\t\t(ret = elem.ownerDocument.createAttribute( name ))\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tret.value = value += \"\";\n\n\t\t\t// Break association with cloned elements by also using setAttribute (#9646)\n\t\t\tif ( name === \"value\" || value === elem.getAttribute( name ) ) {\n\t\t\t\treturn value;\n\t\t\t}\n\t\t}\n\t};\n\n\t// Some attributes are constructed with empty-string values when not defined\n\tattrHandle.id = attrHandle.name = attrHandle.coords =\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret;\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn (ret = elem.getAttributeNode( name )) && ret.value !== \"\" ?\n\t\t\t\t\tret.value :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n\n\t// Fixing value retrieval on a button requires this module\n\tjQuery.valHooks.button = {\n\t\tget: function( elem, name ) {\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( ret && ret.specified ) {\n\t\t\t\treturn ret.value;\n\t\t\t}\n\t\t},\n\t\tset: nodeHook.set\n\t};\n\n\t// Set contenteditable to false on removals(#10429)\n\t// Setting to empty string throws an error as an invalid value\n\tjQuery.attrHooks.contenteditable = {\n\t\tset: function( elem, value, name ) {\n\t\t\tnodeHook.set( elem, value === \"\" ? false : value, name );\n\t\t}\n\t};\n\n\t// Set width and height to auto instead of 0 on empty string( Bug #8150 )\n\t// This is for removals\n\tjQuery.each([ \"width\", \"height\" ], function( i, name ) {\n\t\tjQuery.attrHooks[ name ] = {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( value === \"\" ) {\n\t\t\t\t\telem.setAttribute( name, \"auto\" );\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\nif ( !support.style ) {\n\tjQuery.attrHooks.style = {\n\t\tget: function( elem ) {\n\t\t\t// Return undefined in the case of empty string\n\t\t\t// Note: IE uppercases css property names, but if we were to .toLowerCase()\n\t\t\t// .cssText, that would destroy case senstitivity in URL's, like in \"background\"\n\t\t\treturn elem.style.cssText || undefined;\n\t\t},\n\t\tset: function( elem, value ) {\n\t\t\treturn ( elem.style.cssText = value + \"\" );\n\t\t}\n\t};\n}\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button|object)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend({\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\tname = jQuery.propFix[ name ] || name;\n\t\treturn this.each(function() {\n\t\t\t// try/catch handles cases where IE balks (such as removing a property on window)\n\t\t\ttry {\n\t\t\t\tthis[ name ] = undefined;\n\t\t\t\tdelete this[ name ];\n\t\t\t} catch( e ) {}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t},\n\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks, notxml,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set properties on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tnotxml = nType !== 1 || !jQuery.isXMLDoc( elem );\n\n\t\tif ( notxml ) {\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\treturn hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?\n\t\t\t\tret :\n\t\t\t\t( elem[ name ] = value );\n\n\t\t} else {\n\t\t\treturn hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ?\n\t\t\t\tret :\n\t\t\t\telem[ name ];\n\t\t}\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\t\t\t\t// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set\n\t\t\t\t// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\treturn tabindex ?\n\t\t\t\t\tparseInt( tabindex, 10 ) :\n\t\t\t\t\trfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?\n\t\t\t\t\t\t0 :\n\t\t\t\t\t\t-1;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Some attributes require a special call on IE\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !support.hrefNormalized ) {\n\t// href/src property should get the full normalized URL (#10299/#12915)\n\tjQuery.each([ \"href\", \"src\" ], function( i, name ) {\n\t\tjQuery.propHooks[ name ] = {\n\t\t\tget: function( elem ) {\n\t\t\t\treturn elem.getAttribute( name, 4 );\n\t\t\t}\n\t\t};\n\t});\n}\n\n// Support: Safari, IE9+\n// mis-reports the default selected property of an option\n// Accessing the parent's selectedIndex property fixes it\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\t// Make sure that it also works with optgroups, see #5701\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\t};\n}\n\njQuery.each([\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n});\n\n// IE6/7 call enctype encoding\nif ( !support.enctype ) {\n\tjQuery.propFix.enctype = \"encoding\";\n}\n\n\n\n\nvar rclass = /[\\t\\r\\n\\f]/g;\n\njQuery.fn.extend({\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\n\t\tif ( proceed ) {\n\t\t\t// The disjunction here is for better compressibility (see removeClass)\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\" \"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = jQuery.trim( cur );\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = arguments.length === 0 || typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\t\tif ( proceed ) {\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\"\"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) >= 0 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = value ? jQuery.trim( cur ) : \"\";\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value;\n\n\t\tif ( typeof stateVal === \"boolean\" && type === \"string\" ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tjQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( type === \"string\" ) {\n\t\t\t\t// toggle individual class names\n\t\t\t\tvar className,\n\t\t\t\t\ti = 0,\n\t\t\t\t\tself = jQuery( this ),\n\t\t\t\t\tclassNames = value.match( rnotwhite ) || [];\n\n\t\t\t\twhile ( (className = classNames[ i++ ]) ) {\n\t\t\t\t\t// check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( type === strundefined || type === \"boolean\" ) {\n\t\t\t\tif ( this.className ) {\n\t\t\t\t\t// store className if set\n\t\t\t\t\tjQuery._data( this, \"__className__\", this.className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed \"false\",\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tthis.className = this.className || value === false ? \"\" : jQuery._data( this, \"__className__\" ) || \"\";\n\t\t\t}\n\t\t});\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className = \" \" + selector + \" \",\n\t\t\ti = 0,\n\t\t\tl = this.length;\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tif ( this[i].nodeType === 1 && (\" \" + this[i].className + \" \").replace(rclass, \" \").indexOf( className ) >= 0 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n});\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\njQuery.each( (\"blur focus focusin focusout load resize scroll unload click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup error contextmenu\").split(\" \"), function( i, name ) {\n\n\t// Handle event binding\n\tjQuery.fn[ name ] = function( data, fn ) {\n\t\treturn arguments.length > 0 ?\n\t\t\tthis.on( name, null, data, fn ) :\n\t\t\tthis.trigger( name );\n\t};\n});\n\njQuery.fn.extend({\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t},\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ? this.off( selector, \"**\" ) : this.off( types, selector || \"**\", fn );\n\t}\n});\n\n\nvar nonce = jQuery.now();\n\nvar rquery = (/\\?/);\n\n\n\nvar rvalidtokens = /(,)|(\\[|{)|(}|])|\"(?:[^\"\\\\\\r\\n]|\\\\[\"\\\\\\/bfnrt]|\\\\u[\\da-fA-F]{4})*\"\\s*:?|true|false|null|-?(?!0\\d)\\d+(?:\\.\\d+|)(?:[eE][+-]?\\d+|)/g;\n\njQuery.parseJSON = function( data ) {\n\t// Attempt to parse using the native JSON parser first\n\tif ( window.JSON && window.JSON.parse ) {\n\t\t// Support: Android 2.3\n\t\t// Workaround failure to string-cast null input\n\t\treturn window.JSON.parse( data + \"\" );\n\t}\n\n\tvar requireNonComma,\n\t\tdepth = null,\n\t\tstr = jQuery.trim( data + \"\" );\n\n\t// Guard against invalid (and possibly dangerous) input by ensuring that nothing remains\n\t// after removing valid tokens\n\treturn str && !jQuery.trim( str.replace( rvalidtokens, function( token, comma, open, close ) {\n\n\t\t// Force termination if we see a misplaced comma\n\t\tif ( requireNonComma && comma ) {\n\t\t\tdepth = 0;\n\t\t}\n\n\t\t// Perform no more replacements after returning to outermost depth\n\t\tif ( depth === 0 ) {\n\t\t\treturn token;\n\t\t}\n\n\t\t// Commas must not follow \"[\", \"{\", or \",\"\n\t\trequireNonComma = open || comma;\n\n\t\t// Determine new depth\n\t\t// array/object open (\"[\" or \"{\"): depth += true - false (increment)\n\t\t// array/object close (\"]\" or \"}\"): depth += false - true (decrement)\n\t\t// other cases (\",\" or primitive): depth += true - true (numeric cast)\n\t\tdepth += !close - !open;\n\n\t\t// Remove this token\n\t\treturn \"\";\n\t}) ) ?\n\t\t( Function( \"return \" + str ) )() :\n\t\tjQuery.error( \"Invalid JSON: \" + data );\n};\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml, tmp;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\ttry {\n\t\tif ( window.DOMParser ) { // Standard\n\t\t\ttmp = new DOMParser();\n\t\t\txml = tmp.parseFromString( data, \"text/xml\" );\n\t\t} else { // IE\n\t\t\txml = new ActiveXObject( \"Microsoft.XMLDOM\" );\n\t\t\txml.async = \"false\";\n\t\t\txml.loadXML( data );\n\t\t}\n\t} catch( e ) {\n\t\txml = undefined;\n\t}\n\tif ( !xml || !xml.documentElement || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\t// Document location\n\tajaxLocParts,\n\tajaxLocation,\n\n\trhash = /#.*$/,\n\trts = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)\\r?$/mg, // IE leaves an \\r character at EOL\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\trurl = /^([\\w.+-]+:)(?:\\/\\/(?:[^\\/?#]*@|)([^\\/?#:]*)(?::(\\d+)|)|)/,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat(\"*\");\n\n// #8138, IE may throw an exception when accessing\n// a field from window.location if document.domain has been set\ntry {\n\tajaxLocation = location.href;\n} catch( e ) {\n\t// Use the href attribute of an A element\n\t// since IE will modify it given document.location\n\tajaxLocation = document.createElement( \"a\" );\n\tajaxLocation.href = \"\";\n\tajaxLocation = ajaxLocation.href;\n}\n\n// Segment location into parts\najaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];\n\n\t\tif ( jQuery.isFunction( func ) ) {\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( (dataType = dataTypes[i++]) ) {\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType.charAt( 0 ) === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t});\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar deep, key,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\tvar firstDataType, ct, finalDataType, type,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader(\"Content-Type\");\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[0] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s[ \"throws\" ] ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn { state: \"parsererror\", error: conv ? e : \"No conversion from \" + prev + \" to \" + current };\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend({\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: ajaxLocation,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /xml/,\n\t\t\thtml: /html/,\n\t\t\tjson: /json/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": jQuery.parseJSON,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar // Cross-domain detection vars\n\t\t\tparts,\n\t\t\t// Loop variable\n\t\t\ti,\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\t\t\t// Response headers as string\n\t\t\tresponseHeadersString,\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\ttransport,\n\t\t\t// Response headers\n\t\t\tresponseHeaders,\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\tjQuery.event,\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks(\"once memory\"),\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\t\t\t// The jqXHR state\n\t\t\tstate = 0,\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( state === 2 ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( (match = rheaders.exec( responseHeadersString )) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[1].toLowerCase() ] = match[ 2 ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match;\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn state === 2 ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tvar lname = name.toLowerCase();\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\tname = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\t// Lazy-add the new callback in a way that preserves old ones\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR ).complete = completeDeferred.add;\n\t\tjqXHR.success = jqXHR.done;\n\t\tjqXHR.error = jqXHR.fail;\n\n\t\t// Remove hash character (#7531: and string promotion)\n\t\t// Add protocol if not provided (#5866: IE7 issue with protocol-less urls)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || ajaxLocation ) + \"\" ).replace( rhash, \"\" ).replace( rprotocol, ajaxLocParts[ 1 ] + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = jQuery.trim( s.dataType || \"*\" ).toLowerCase().match( rnotwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when we have a protocol:host:port mismatch\n\t\tif ( s.crossDomain == null ) {\n\t\t\tparts = rurl.exec( s.url.toLowerCase() );\n\t\t\ts.crossDomain = !!( parts &&\n\t\t\t\t( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||\n\t\t\t\t\t( parts[ 3 ] || ( parts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) !==\n\t\t\t\t\t\t( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) )\n\t\t\t);\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( state === 2 ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger(\"ajaxStart\");\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\tcacheURL = s.url;\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// If data is available, append data to url\n\t\t\tif ( s.data ) {\n\t\t\t\tcacheURL = ( s.url += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data );\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add anti-cache in url if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\ts.url = rts.test( cacheURL ) ?\n\n\t\t\t\t\t// If there is already a '_' parameter, set its value\n\t\t\t\t\tcacheURL.replace( rts, \"$1_=\" + nonce++ ) :\n\n\t\t\t\t\t// Otherwise add one to the end\n\t\t\t\t\tcacheURL + ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + nonce++;\n\t\t\t}\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tfor ( i in { success: 1, error: 1, complete: 1 } ) {\n\t\t\tjqXHR[ i ]( s[ i ] );\n\t\t}\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = setTimeout(function() {\n\t\t\t\t\tjqXHR.abort(\"timeout\");\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tstate = 1;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\t\t\t\t// Propagate exception as error if not done\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tdone( -1, e );\n\t\t\t\t// Simply rethrow otherwise\n\t\t\t\t} else {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Called once\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// State is \"done\" now\n\t\t\tstate = 2;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\tclearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"Last-Modified\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"etag\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// We extract error from statusText\n\t\t\t\t// then normalize statusText and status for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger(\"ajaxStop\");\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n});\n\njQuery.each( [ \"get\", \"post\" ], function( i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\t\t// shift arguments if data argument was omitted\n\t\tif ( jQuery.isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\treturn jQuery.ajax({\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t});\n\t};\n});\n\n\njQuery._evalUrl = function( url ) {\n\treturn jQuery.ajax({\n\t\turl: url,\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tasync: false,\n\t\tglobal: false,\n\t\t\"throws\": true\n\t});\n};\n\n\njQuery.fn.extend({\n\twrapAll: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapAll( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\tif ( this[0] ) {\n\t\t\t// The elements to wrap the target around\n\t\t\tvar wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);\n\n\t\t\tif ( this[0].parentNode ) {\n\t\t\t\twrap.insertBefore( this[0] );\n\t\t\t}\n\n\t\t\twrap.map(function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstChild && elem.firstChild.nodeType === 1 ) {\n\t\t\t\t\telem = elem.firstChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t}).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapInner( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t});\n\t},\n\n\twrap: function( html ) {\n\t\tvar isFunction = jQuery.isFunction( html );\n\n\t\treturn this.each(function(i) {\n\t\t\tjQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );\n\t\t});\n\t},\n\n\tunwrap: function() {\n\t\treturn this.parent().each(function() {\n\t\t\tif ( !jQuery.nodeName( this, \"body\" ) ) {\n\t\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t\t}\n\t\t}).end();\n\t}\n});\n\n\njQuery.expr.filters.hidden = function( elem ) {\n\t// Support: Opera <= 12.12\n\t// Opera reports offsetWidths and offsetHeights less than zero on some elements\n\treturn elem.offsetWidth <= 0 && elem.offsetHeight <= 0 ||\n\t\t(!support.reliableHiddenOffsets() &&\n\t\t\t((elem.style && elem.style.display) || jQuery.css( elem, \"display\" )) === \"none\");\n};\n\njQuery.expr.filters.visible = function( elem ) {\n\treturn !jQuery.expr.filters.hidden( elem );\n};\n\n\n\n\nvar r20 = /%20/g,\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( jQuery.isArray( obj ) ) {\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams( prefix + \"[\" + ( typeof v === \"object\" ? i : \"\" ) + \"]\", v, traditional, add );\n\t\t\t}\n\t\t});\n\n\t} else if ( !traditional && jQuery.type( obj ) === \"object\" ) {\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, value ) {\n\t\t\t// If value is a function, invoke it and return its value\n\t\t\tvalue = jQuery.isFunction( value ) ? value() : ( value == null ? \"\" : value );\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" + encodeURIComponent( value );\n\t\t};\n\n\t// Set traditional to true for jQuery <= 1.3.2 behavior.\n\tif ( traditional === undefined ) {\n\t\ttraditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t});\n\n\t} else {\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" ).replace( r20, \"+\" );\n};\n\njQuery.fn.extend({\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map(function() {\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t})\n\t\t.filter(function() {\n\t\t\tvar type = this.type;\n\t\t\t// Use .is(\":disabled\") so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t})\n\t\t.map(function( i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\treturn val == null ?\n\t\t\t\tnull :\n\t\t\t\tjQuery.isArray( val ) ?\n\t\t\t\t\tjQuery.map( val, function( val ) {\n\t\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t\t}) :\n\t\t\t\t\t{ name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t}).get();\n\t}\n});\n\n\n// Create the request object\n// (This is still attached to ajaxSettings for backward compatibility)\njQuery.ajaxSettings.xhr = window.ActiveXObject !== undefined ?\n\t// Support: IE6+\n\tfunction() {\n\n\t\t// XHR cannot access local files, always use ActiveX for that case\n\t\treturn !this.isLocal &&\n\n\t\t\t// Support: IE7-8\n\t\t\t// oldIE XHR does not support non-RFC2616 methods (#13240)\n\t\t\t// See http://msdn.microsoft.com/en-us/library/ie/ms536648(v=vs.85).aspx\n\t\t\t// and http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9\n\t\t\t// Although this check for six methods instead of eight\n\t\t\t// since IE also does not support \"trace\" and \"connect\"\n\t\t\t/^(get|post|head|put|delete|options)$/i.test( this.type ) &&\n\n\t\t\tcreateStandardXHR() || createActiveXHR();\n\t} :\n\t// For all other browsers, use the standard XMLHttpRequest object\n\tcreateStandardXHR;\n\nvar xhrId = 0,\n\txhrCallbacks = {},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\n// Support: IE<10\n// Open requests must be manually aborted on unload (#5280)\n// See https://support.microsoft.com/kb/2856746 for more info\nif ( window.attachEvent ) {\n\twindow.attachEvent( \"onunload\", function() {\n\t\tfor ( var key in xhrCallbacks ) {\n\t\t\txhrCallbacks[ key ]( undefined, true );\n\t\t}\n\t});\n}\n\n// Determine support properties\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nxhrSupported = support.ajax = !!xhrSupported;\n\n// Create transport if the browser can provide an xhr\nif ( xhrSupported ) {\n\n\tjQuery.ajaxTransport(function( options ) {\n\t\t// Cross domain only allowed if supported through XMLHttpRequest\n\t\tif ( !options.crossDomain || support.cors ) {\n\n\t\t\tvar callback;\n\n\t\t\treturn {\n\t\t\t\tsend: function( headers, complete ) {\n\t\t\t\t\tvar i,\n\t\t\t\t\t\txhr = options.xhr(),\n\t\t\t\t\t\tid = ++xhrId;\n\n\t\t\t\t\t// Open the socket\n\t\t\t\t\txhr.open( options.type, options.url, options.async, options.username, options.password );\n\n\t\t\t\t\t// Apply custom fields if provided\n\t\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Override mime type if needed\n\t\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t\t}\n\n\t\t\t\t\t// X-Requested-With header\n\t\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\t\tif ( !options.crossDomain && !headers[\"X-Requested-With\"] ) {\n\t\t\t\t\t\theaders[\"X-Requested-With\"] = \"XMLHttpRequest\";\n\t\t\t\t\t}\n\n\t\t\t\t\t// Set headers\n\t\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// IE's ActiveXObject throws a 'Type Mismatch' exception when setting\n\t\t\t\t\t\t// request header to a null-value.\n\t\t\t\t\t\t//\n\t\t\t\t\t\t// To keep consistent with other XHR implementations, cast the value\n\t\t\t\t\t\t// to string and ignore `undefined`.\n\t\t\t\t\t\tif ( headers[ i ] !== undefined ) {\n\t\t\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] + \"\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Do send the request\n\t\t\t\t\t// This may raise an exception which is actually\n\t\t\t\t\t// handled in jQuery.ajax (so no try/catch here)\n\t\t\t\t\txhr.send( ( options.hasContent && options.data ) || null );\n\n\t\t\t\t\t// Listener\n\t\t\t\t\tcallback = function( _, isAbort ) {\n\t\t\t\t\t\tvar status, statusText, responses;\n\n\t\t\t\t\t\t// Was never called and is aborted or complete\n\t\t\t\t\t\tif ( callback && ( isAbort || xhr.readyState === 4 ) ) {\n\t\t\t\t\t\t\t// Clean up\n\t\t\t\t\t\t\tdelete xhrCallbacks[ id ];\n\t\t\t\t\t\t\tcallback = undefined;\n\t\t\t\t\t\t\txhr.onreadystatechange = jQuery.noop;\n\n\t\t\t\t\t\t\t// Abort manually if needed\n\t\t\t\t\t\t\tif ( isAbort ) {\n\t\t\t\t\t\t\t\tif ( xhr.readyState !== 4 ) {\n\t\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tresponses = {};\n\t\t\t\t\t\t\t\tstatus = xhr.status;\n\n\t\t\t\t\t\t\t\t// Support: IE<10\n\t\t\t\t\t\t\t\t// Accessing binary-data responseText throws an exception\n\t\t\t\t\t\t\t\t// (#11426)\n\t\t\t\t\t\t\t\tif ( typeof xhr.responseText === \"string\" ) {\n\t\t\t\t\t\t\t\t\tresponses.text = xhr.responseText;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Firefox throws an exception when accessing\n\t\t\t\t\t\t\t\t// statusText for faulty cross-domain requests\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tstatusText = xhr.statusText;\n\t\t\t\t\t\t\t\t} catch( e ) {\n\t\t\t\t\t\t\t\t\t// We normalize with Webkit giving an empty statusText\n\t\t\t\t\t\t\t\t\tstatusText = \"\";\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Filter status for non standard behaviors\n\n\t\t\t\t\t\t\t\t// If the request is local and we have data: assume a success\n\t\t\t\t\t\t\t\t// (success with no data won't get notified, that's the best we\n\t\t\t\t\t\t\t\t// can do given current implementations)\n\t\t\t\t\t\t\t\tif ( !status && options.isLocal && !options.crossDomain ) {\n\t\t\t\t\t\t\t\t\tstatus = responses.text ? 200 : 404;\n\t\t\t\t\t\t\t\t// IE - #1450: sometimes returns 1223 when it should be 204\n\t\t\t\t\t\t\t\t} else if ( status === 1223 ) {\n\t\t\t\t\t\t\t\t\tstatus = 204;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Call complete if needed\n\t\t\t\t\t\tif ( responses ) {\n\t\t\t\t\t\t\tcomplete( status, statusText, responses, xhr.getAllResponseHeaders() );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\tif ( !options.async ) {\n\t\t\t\t\t\t// if we're in sync mode we fire the callback\n\t\t\t\t\t\tcallback();\n\t\t\t\t\t} else if ( xhr.readyState === 4 ) {\n\t\t\t\t\t\t// (IE6 & IE7) if it's in cache and has been\n\t\t\t\t\t\t// retrieved directly we need to fire the callback\n\t\t\t\t\t\tsetTimeout( callback );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// Add to the list of active xhr callbacks\n\t\t\t\t\t\txhr.onreadystatechange = xhrCallbacks[ id ] = callback;\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tabort: function() {\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tcallback( undefined, true );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t});\n}\n\n// Functions to create xhrs\nfunction createStandardXHR() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch( e ) {}\n}\n\nfunction createActiveXHR() {\n\ttry {\n\t\treturn new window.ActiveXObject( \"Microsoft.XMLHTTP\" );\n\t} catch( e ) {}\n}\n\n\n\n\n// Install script dataType\njQuery.ajaxSetup({\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /(?:java|ecma)script/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n});\n\n// Handle cache's special case and global\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t\ts.global = false;\n\t}\n});\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function(s) {\n\n\t// This transport only deals with cross domain requests\n\tif ( s.crossDomain ) {\n\n\t\tvar script,\n\t\t\thead = document.head || jQuery(\"head\")[0] || document.documentElement;\n\n\t\treturn {\n\n\t\t\tsend: function( _, callback ) {\n\n\t\t\t\tscript = document.createElement(\"script\");\n\n\t\t\t\tscript.async = true;\n\n\t\t\t\tif ( s.scriptCharset ) {\n\t\t\t\t\tscript.charset = s.scriptCharset;\n\t\t\t\t}\n\n\t\t\t\tscript.src = s.url;\n\n\t\t\t\t// Attach handlers for all browsers\n\t\t\t\tscript.onload = script.onreadystatechange = function( _, isAbort ) {\n\n\t\t\t\t\tif ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {\n\n\t\t\t\t\t\t// Handle memory leak in IE\n\t\t\t\t\t\tscript.onload = script.onreadystatechange = null;\n\n\t\t\t\t\t\t// Remove the script\n\t\t\t\t\t\tif ( script.parentNode ) {\n\t\t\t\t\t\t\tscript.parentNode.removeChild( script );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Dereference the script\n\t\t\t\t\t\tscript = null;\n\n\t\t\t\t\t\t// Callback if not abort\n\t\t\t\t\t\tif ( !isAbort ) {\n\t\t\t\t\t\t\tcallback( 200, \"success\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\t// Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\thead.insertBefore( script, head.firstChild );\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( script ) {\n\t\t\t\t\tscript.onload( undefined, true );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n});\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup({\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n});\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" && !( s.contentType || \"\" ).indexOf(\"application/x-www-form-urlencoded\") && rjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[\"script json\"] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always(function() {\n\t\t\t// Restore preexisting value\n\t\t\twindow[ callbackName ] = overwritten;\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\t\t\t\t// make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && jQuery.isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t});\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n});\n\n\n\n\n// data: string of html\n// context (optional): If specified, the fragment will be created in this context, defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\tcontext = context || document;\n\n\tvar parsed = rsingleTag.exec( data ),\n\t\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[1] ) ];\n\t}\n\n\tparsed = jQuery.buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n// Keep a copy of the old load method\nvar _load = jQuery.fn.load;\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tif ( typeof url !== \"string\" && _load ) {\n\t\treturn _load.apply( this, arguments );\n\t}\n\n\tvar selector, response, type,\n\t\tself = this,\n\t\toff = url.indexOf(\" \");\n\n\tif ( off >= 0 ) {\n\t\tselector = jQuery.trim( url.slice( off, url.length ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( jQuery.isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax({\n\t\t\turl: url,\n\n\t\t\t// if \"type\" variable is undefined, then \"GET\" method will be used\n\t\t\ttype: type,\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t}).done(function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery(\"<div>\").append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t}).complete( callback && function( jqXHR, status ) {\n\t\t\tself.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t});\n\t}\n\n\treturn this;\n};\n\n\n\n\n// Attach a bunch of functions for handling common AJAX events\njQuery.each( [ \"ajaxStart\", \"ajaxStop\", \"ajaxComplete\", \"ajaxError\", \"ajaxSuccess\", \"ajaxSend\" ], function( i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n});\n\n\n\n\njQuery.expr.filters.animated = function( elem ) {\n\treturn jQuery.grep(jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t}).length;\n};\n\n\n\n\n\nvar docElem = window.document.documentElement;\n\n/**\n * Gets a window from an element\n */\nfunction getWindow( elem ) {\n\treturn jQuery.isWindow( elem ) ?\n\t\telem :\n\t\telem.nodeType === 9 ?\n\t\t\telem.defaultView || elem.parentWindow :\n\t\t\tfalse;\n}\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\tjQuery.inArray(\"auto\", [ curCSSTop, curCSSLeft ] ) > -1;\n\n\t\t// need to be able to calculate position if either top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( jQuery.isFunction( options ) ) {\n\t\t\toptions = options.call( elem, i, curOffset );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend({\n\toffset: function( options ) {\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each(function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t});\n\t\t}\n\n\t\tvar docElem, win,\n\t\t\tbox = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ],\n\t\t\tdoc = elem && elem.ownerDocument;\n\n\t\tif ( !doc ) {\n\t\t\treturn;\n\t\t}\n\n\t\tdocElem = doc.documentElement;\n\n\t\t// Make sure it's not a disconnected DOM node\n\t\tif ( !jQuery.contains( docElem, elem ) ) {\n\t\t\treturn box;\n\t\t}\n\n\t\t// If we don't have gBCR, just use 0,0 rather than error\n\t\t// BlackBerry 5, iOS 3 (original iPhone)\n\t\tif ( typeof elem.getBoundingClientRect !== strundefined ) {\n\t\t\tbox = elem.getBoundingClientRect();\n\t\t}\n\t\twin = getWindow( doc );\n\t\treturn {\n\t\t\ttop: box.top  + ( win.pageYOffset || docElem.scrollTop )  - ( docElem.clientTop  || 0 ),\n\t\t\tleft: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 )\n\t\t};\n\t},\n\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset,\n\t\t\tparentOffset = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ];\n\n\t\t// fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is its only offset parent\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\t\t\t// we assume that getBoundingClientRect is available when computed position is fixed\n\t\t\toffset = elem.getBoundingClientRect();\n\t\t} else {\n\t\t\t// Get *real* offsetParent\n\t\t\toffsetParent = this.offsetParent();\n\n\t\t\t// Get correct offsets\n\t\t\toffset = this.offset();\n\t\t\tif ( !jQuery.nodeName( offsetParent[ 0 ], \"html\" ) ) {\n\t\t\t\tparentOffset = offsetParent.offset();\n\t\t\t}\n\n\t\t\t// Add offsetParent borders\n\t\t\tparentOffset.top  += jQuery.css( offsetParent[ 0 ], \"borderTopWidth\", true );\n\t\t\tparentOffset.left += jQuery.css( offsetParent[ 0 ], \"borderLeftWidth\", true );\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\t// note: when an element has margin: auto the offsetLeft and marginLeft\n\t\t// are the same in Safari causing offset.left to incorrectly be 0\n\t\treturn {\n\t\t\ttop:  offset.top  - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true)\n\t\t};\n\t},\n\n\toffsetParent: function() {\n\t\treturn this.map(function() {\n\t\t\tvar offsetParent = this.offsetParent || docElem;\n\n\t\t\twhile ( offsetParent && ( !jQuery.nodeName( offsetParent, \"html\" ) && jQuery.css( offsetParent, \"position\" ) === \"static\" ) ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\t\t\treturn offsetParent || docElem;\n\t\t});\n\t}\n});\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = /Y/.test( prop );\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\t\t\tvar win = getWindow( elem );\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? (prop in win) ? win[ prop ] :\n\t\t\t\t\twin.document.documentElement[ method ] :\n\t\t\t\t\telem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : jQuery( win ).scrollLeft(),\n\t\t\t\t\ttop ? val : jQuery( win ).scrollTop()\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length, null );\n\t};\n});\n\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// getComputedStyle returns percent when specified for top/left/bottom/right\n// rather than make the css module depend on the offset module, we just check for it here\njQuery.each( [ \"top\", \"left\" ], function( i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\t\t\t\t// if curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n});\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name }, function( defaultExtra, funcName ) {\n\t\t// margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( jQuery.isWindow( elem ) ) {\n\t\t\t\t\t// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there\n\t\t\t\t\t// isn't a whole lot we can do. See pull request at this URL for discussion:\n\t\t\t\t\t// https://github.com/jquery/jquery/pull/764\n\t\t\t\t\treturn elem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest\n\t\t\t\t\t// unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it.\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable, null );\n\t\t};\n\t});\n});\n\n\n// The number of elements contained in the matched element set\njQuery.fn.size = function() {\n\treturn this.length;\n};\n\njQuery.fn.andSelf = jQuery.fn.addBack;\n\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t});\n}\n\n\n\n\nvar\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in\n// AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === strundefined ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n\n}));\n"
  },
  {
    "path": "images/02_bellCurve/lib/jquery-3.5.1/jquery-AUTHORS.txt",
    "content": "Authors ordered by first contribution.\n\nJohn Resig <jeresig@gmail.com>\nGilles van den Hoven <gilles0181@gmail.com>\nMichael Geary <mike@geary.com>\nStefan Petre <stefan.petre@gmail.com>\nYehuda Katz <wycats@gmail.com>\nCorey Jewett <cj@syntheticplayground.com>\nKlaus Hartl <klaus.hartl@gmail.com>\nFranck Marcia <franck.marcia@gmail.com>\nJörn Zaefferer <joern.zaefferer@gmail.com>\nPaul Bakaus <paul.bakaus@gmail.com>\nBrandon Aaron <brandon.aaron@gmail.com>\nMike Alsup <malsup@gmail.com>\nDave Methvin <dave.methvin@gmail.com>\nEd Engelhardt <edengelhardt@gmail.com>\nSean Catchpole <littlecooldude@gmail.com>\nPaul Mclanahan <pmclanahan@gmail.com>\nDavid Serduke <davidserduke@gmail.com>\nRichard D. Worth <rdworth@gmail.com>\nScott González <scott.gonzalez@gmail.com>\nAriel Flesler <aflesler@gmail.com>\nCheah Chu Yeow <chuyeow@gmail.com>\nAndrew Chalkley <andrew@chalkley.org>\nFabio Buffoni <fabio.buffoni@bitmaster.it>\nStefan Bauckmeier  <stefan@bauckmeier.de>\nJon Evans <jon@springyweb.com>\nTJ Holowaychuk <tj@vision-media.ca>\nRiccardo De Agostini <rdeago@gmail.com>\nMichael Bensoussan <mickey@seesmic.com>\nLouis-Rémi Babé <lrbabe@gmail.com>\nRobert Katić <robert.katic@gmail.com>\nDamian Janowski <damian.janowski@gmail.com>\nAnton Kovalyov <anton@kovalyov.net>\nDušan B. Jovanovic <dbjdbj@gmail.com>\nEarle Castledine <mrspeaker@gmail.com>\nRich Dougherty <rich@rd.gen.nz>\nKim Dalsgaard <kim@kimdalsgaard.com>\nAndrea Giammarchi <andrea.giammarchi@gmail.com>\nFabian Jakobs <fabian.jakobs@web.de>\nMark Gibson <jollytoad@gmail.com>\nKarl Swedberg <kswedberg@gmail.com>\nJustin Meyer <justinbmeyer@gmail.com>\nBen Alman <cowboy@rj3.net>\nJames Padolsey <cla@padolsey.net>\nDavid Petersen <public@petersendidit.com>\nBatiste Bieler <batiste.bieler@gmail.com>\nJake Archibald <jake.archibald@bbc.co.uk>\nAlexander Farkas <info@corrupt-system.de>\nFilipe Fortes <filipe@fortes.com>\nRick Waldron <waldron.rick@gmail.com>\nNeeraj Singh <neerajdotname@gmail.com>\nPaul Irish <paul.irish@gmail.com>\nIraê Carvalho <irae@irae.pro.br>\nMatt Curry <matt@pseudocoder.com>\nMichael Monteleone <michael@michaelmonteleone.net>\nNoah Sloan <noah.sloan@gmail.com>\nTom Viner <github@viner.tv>\nJ. Ryan Stinnett <jryans@gmail.com>\nDouglas Neiner <doug@dougneiner.com>\nAdam J. Sontag <ajpiano@ajpiano.com>\nHeungsub Lee <h@subl.ee>\nDave Reed <dareed@microsoft.com>\nCarl Fürstenberg <azatoth@gmail.com>\nJacob Wright <jacwright@gmail.com>\nRalph Whitbeck <ralph.whitbeck@gmail.com>\nunknown <Igen005@.upcorp.ad.uprr.com>\ntemp01 <temp01irc@gmail.com>\nColin Snover <github.com@zetafleet.com>\nJared Grippe <jared@deadlyicon.com>\nRyan W Tenney <ryan@10e.us>\nAlex Sexton <AlexSexton@gmail.com>\nPinhook <contact@pinhooklabs.com>\nRon Otten <r.j.g.otten@gmail.com>\nJephte Clain <Jephte.Clain@univ-reunion.fr>\nAnton Matzneller <obhvsbypqghgc@gmail.com>\nDan Heberden <danheberden@gmail.com>\nHenri Wiechers <hwiechers@gmail.com>\nRussell Holbrook <russell.holbrook@patch.com>\nJulian Aubourg <aubourg.julian@gmail.com>\nGianni Alessandro Chiappetta <gianni@runlevel6.org>\nScott Jehl <scottjehl@gmail.com>\nJames Burke <jrburke@gmail.com>\nJonas Pfenniger <jonas@pfenniger.name>\nXavi Ramirez <xavi.rmz@gmail.com>\nSylvester Keil <sylvester@keil.or.at>\nBrandon Sterne <bsterne@mozilla.com>\nMathias Bynens <mathias@qiwi.be>\nLee Carpenter <elcarpie@gmail.com>\nTimmy Willison <4timmywil@gmail.com>\nCorey Frang <gnarf37@gmail.com>\nDigitalxero <digitalxero>\nDavid Murdoch <david@davidmurdoch.com>\nJosh Varner <josh.varner@gmail.com>\nCharles McNulty <cmcnulty@kznf.com>\nJordan Boesch <jboesch26@gmail.com>\nJess Thrysoee <jess@thrysoee.dk>\nMichael Murray <m@murz.net>\nAlexis Abril <me@alexisabril.com>\nRob Morgan <robbym@gmail.com>\nJohn Firebaugh <john_firebaugh@bigfix.com>\nSam Bisbee <sam@sbisbee.com>\nGilmore Davidson <gilmoreorless@gmail.com>\nBrian Brennan <me@brianlovesthings.com>\nXavier Montillet <xavierm02.net@gmail.com>\nDaniel Pihlstrom <sciolist.se@gmail.com>\nSahab Yazdani <sahab.yazdani+github@gmail.com>\navaly <github-com@agachi.name>\nScott Hughes <hi@scott-hughes.me>\nMike Sherov <mike.sherov@gmail.com>\nGreg Hazel <ghazel@gmail.com>\nSchalk Neethling <schalk@ossreleasefeed.com>\nDenis Knauf <Denis.Knauf@gmail.com>\nTimo Tijhof <krinklemail@gmail.com>\nSteen Nielsen <swinedk@gmail.com>\nAnton Ryzhov <anton@ryzhov.me>\nShi Chuan <shichuanr@gmail.com>\nMatt Mueller <mattmuelle@gmail.com>\nBerker Peksag <berker.peksag@gmail.com>\nToby Brain <tobyb@freshview.com>\nJustin <drakefjustin@gmail.com>\nDaniel Herman <daniel.c.herman@gmail.com>\nOleg Gaidarenko <markelog@gmail.com>\nRock Hymas <rock@fogcreek.com>\nRichard Gibson <richard.gibson@gmail.com>\nRafaël Blais Masson <rafbmasson@gmail.com>\ncmc3cn <59194618@qq.com>\nJoe Presbrey <presbrey@gmail.com>\nSindre Sorhus <sindresorhus@gmail.com>\nArne de Bree <arne@bukkie.nl>\nVladislav Zarakovsky <vlad.zar@gmail.com>\nAndrew E Monat <amonat@gmail.com>\nOskari <admin@o-programs.com>\nJoao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>\ntsinha <tsinha@Anthonys-MacBook-Pro.local>\nDominik D. Geyer <dominik.geyer@gmail.com>\nMatt Farmer <matt@frmr.me>\nTrey Hunner <treyhunner@gmail.com>\nJason Moon <jmoon@socialcast.com>\nJeffery To <jeffery.to@gmail.com>\nKris Borchers <kris.borchers@gmail.com>\nVladimir Zhuravlev <private.face@gmail.com>\nJacob Thornton <jacobthornton@gmail.com>\nChad Killingsworth <chadkillingsworth@missouristate.edu>\nVitya Muhachev <vic99999@yandex.ru>\nNowres Rafid <nowres.rafed@gmail.com>\nDavid Benjamin <davidben@mit.edu>\nAlan Plum <github@ap.apsq.de>\nUri Gilad <antishok@gmail.com>\nChris Faulkner <thefaulkner@gmail.com>\nMarcel Greter <marcel.greter@ocbnet.ch>\nElijah Manor <elijah.manor@gmail.com>\nDaniel Chatfield <chatfielddaniel@gmail.com>\nDaniel Gálvez <dgalvez@editablething.com>\nNikita Govorov <nikita.govorov@gmail.com>\nWesley Walser <waw325@gmail.com>\nMike Pennisi <mike@mikepennisi.com>\nMatthias Jäggli <matthias.jaeggli@gmail.com>\nDevin Cooper <cooper.semantics@gmail.com>\nMarkus Staab <markus.staab@redaxo.de>\nDave Riddle <david@joyvuu.com>\nCallum Macrae <callum@lynxphp.com>\nJonathan Sampson <jjdsampson@gmail.com>\nBenjamin Truyman <bentruyman@gmail.com>\nJay Merrifield <fracmak@gmail.com>\nJames Huston <james@jameshuston.net>\nSai Lung Wong <sai.wong@huffingtonpost.com>\nErick Ruiz de Chávez <erickrdch@gmail.com>\nDavid Bonner <dbonner@cogolabs.com>\nAllen J Schmidt Jr <cobrasoft@gmail.com>\nAkintayo Akinwunmi <aakinwunmi@judge.com>\nMORGAN <morgan@morgangraphics.com>\nIsmail Khair <ismail.khair@gmail.com>\nCarl Danley <carldanley@gmail.com>\nMike Petrovich <michael.c.petrovich@gmail.com>\nGreg Lavallee <greglavallee@wapolabs.com>\nTom H Fuertes <TomFuertes@gmail.com>\nRoland Eckl <eckl.roland@googlemail.com>\nYiming He <yiminghe@gmail.com>\nDavid Fox <dfoxinator@gmail.com>\nBennett Sorbo <bsorbo@gmail.com>\nPaul Ramos <paul.b.ramos@gmail.com>\nRod Vagg <rod@vagg.org>\nSebastian Burkhard <sebi.burkhard@gmail.com>\nZachary Adam Kaplan <razic@viralkitty.com>\nAdam Coulombe <me@adam.co>\nnanto_vi <nanto@moon.email.ne.jp>\nnanto <nanto@moon.email.ne.jp>\nDanil Somsikov <danilasomsikov@gmail.com>\nRyunosuke SATO <tricknotes.rs@gmail.com>\nDiego Tres <diegotres@gmail.com>\nJean Boussier <jean.boussier@gmail.com>\nAndrew Plummer <plummer.andrew@gmail.com>\nMark Raddatz <mraddatz@gmail.com>\nPascal Borreli <pascal@borreli.com>\nIsaac Z. Schlueter <i@izs.me>\nKarl Sieburg <ksieburg@yahoo.com>\nNguyen Phuc Lam <ruado1987@gmail.com>\nDmitry Gusev <dmitry.gusev@gmail.com>\nSteven Benner <admin@stevenbenner.com>\nLi Xudong <istonelee@gmail.com>\nMichał Gołębiowski-Owczarek <m.goleb@gmail.com>\nRenato Oliveira dos Santos <ros3@cin.ufpe.br>\nFrederic Junod <frederic.junod@camptocamp.com>\nTom H Fuertes <tomfuertes@gmail.com>\nMitch Foley <mitch@thefoley.net>\nros3cin <ros3@cin.ufpe.br>\nKyle Robinson Young <kyle@dontkry.com>\nJohn Paul <john@johnkpaul.com>\nJason Bedard <jason+jquery@jbedard.ca>\nChris Talkington <chris@talkingtontech.com>\nEddie Monge <eddie@eddiemonge.com>\nTerry Jones <terry@jon.es>\nJason Merino <jasonmerino@gmail.com>\nDan Burzo <danburzo@gmail.com>\nJeremy Dunck <jdunck@gmail.com>\nChris Price <price.c@gmail.com>\nGuy Bedford <guybedford@gmail.com>\nnjhamann <njhamann@gmail.com>\nGoare Mao <mygoare@gmail.com>\nAmey Sakhadeo <me@ameyms.com>\nMike Sidorov <mikes.ekb@gmail.com>\nAnthony Ryan <anthonyryan1@gmail.com>\nLihan Li <frankieteardrop@gmail.com>\nGeorge Kats <katsgeorgeek@gmail.com>\nDongseok Paeng <dongseok83.paeng@lge.com>\nRonny Springer <springer.ronny@gmail.com>\nIlya Kantor <iliakan@gmail.com>\nMarian Sollmann <marian.sollmann@cargomedia.ch>\nChris Antaki <ChrisAntaki@gmail.com>\nDavid Hong <d.hong@me.com>\nJakob Stoeck <jakob@pokermania.de>\nChristopher Jones <chris@cjqed.com>\nForbes Lindesay <forbes@lindesay.co.uk>\nS. Andrew Sheppard <andrew@wq.io>\nLeonardo Balter <leonardo.balter@gmail.com>\nRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>\nDaniel Husar <dano.husar@gmail.com>\nPhilip Jägenstedt <philip@foolip.org>\nJohn Hoven <hovenj@gmail.com>\nRoman Reiß <me@silverwind.io>\nBenjy Cui <benjytrys@gmail.com>\nChristian Kosmowski <ksmwsk@gmail.com>\nDavid Corbacho <davidcorbacho@gmail.com>\nLiang Peng <poppinlp@gmail.com>\nTJ VanToll <tj.vantoll@gmail.com>\nAurelio De Rosa <aurelioderosa@gmail.com>\nSenya Pugach <upisfree@outlook.com>\nDan Hart <danhart@notonthehighstreet.com>\nNazar Mokrynskyi <nazar@mokrynskyi.com>\nBenjamin Tan <demoneaux@gmail.com>\nAmit Merchant <bullredeyes@gmail.com>\nJason Bedard <jason+github@jbedard.ca>\nVeaceslav Grimalschi <grimalschi@yandex.ru>\nRichard McDaniel <rm0026@uah.edu>\nArthur Verschaeve <contact@arthurverschaeve.be>\nShivaji Varma <contact@shivajivarma.com>\nBen Toews <mastahyeti@gmail.com>\nBin Xin <rhyzix@gmail.com>\nNeftaly Hernandez <neftaly.hernandez@gmail.com>\nT.J. Crowder <tj.crowder@farsightsoftware.com>\nNicolas HENRY <icewil@gmail.com>\nFrederic Hemberger <mail@frederic-hemberger.de>\nVictor Homyakov <vkhomyackov@gmail.com>\nAditya Raghavan <araghavan3@gmail.com>\nAnne-Gaelle Colom <coloma@westminster.ac.uk>\nLeonardo Braga <leonardo.braga@gmail.com>\nGeorge Mauer <gmauer@gmail.com>\nStephen Edgar <stephen@netweb.com.au>\nThomas Tortorini <thomastortorini@gmail.com>\nJörn Wagner <joern.wagner@explicatis.com>\nJon Hester <jon.d.hester@gmail.com>\nColin Frick <colin@bash.li>\nWinston Howes <winstonhowes@gmail.com>\nAlexander O'Mara <me@alexomara.com>\nChris Rebert <github@rebertia.com>\nBastian Buchholz <buchholz.bastian@googlemail.com>\nMu Haibao <mhbseal@163.com>\nCalvin Metcalf <calvin.metcalf@gmail.com>\nArthur Stolyar <nekr.fabula@gmail.com>\nGabriel Schulhof <gabriel.schulhof@intel.com>\nGilad Peleg <giladp007@gmail.com>\nJulian Alexander Murillo <julian.alexander.murillo@gmail.com>\nKevin Kirsche <Kev.Kirsche+GitHub@gmail.com>\nMartin Naumann <martin@geekonaut.de>\nYongwoo Jeon <yongwoo.jeon@navercorp.com>\nJohn-David Dalton <john.david.dalton@gmail.com>\nMarek Lewandowski <m.lewandowski@cksource.com>\nBruno Pérel <brunoperel@gmail.com>\nDaniel Nill <daniellnill@gmail.com>\nReed Loden <reed@reedloden.com>\nSean Henderson <seanh.za@gmail.com>\nGary Ye <garysye@gmail.com>\nRichard Kraaijenhagen <stdin+git@riichard.com>\nConnor Atherton <c.liam.atherton@gmail.com>\nChristian Grete <webmaster@christiangrete.com>\nTom von Clef <thomas.vonclef@gmail.com>\nLiza Ramo <liza.h.ramo@gmail.com>\nJoelle Fleurantin <joasqueeniebee@gmail.com>\nSteve Mao <maochenyan@gmail.com>\nJon Dufresne <jon.dufresne@gmail.com>\nJae Sung Park <alberto.park@gmail.com>\nJosh Soref <apache@soref.com>\nSaptak Sengupta <saptak013@gmail.com>\nHenry Wong <henryw4k@gmail.com>\nJun Sun <klsforever@gmail.com>\nMartijn W. van der Lee <martijn@vanderlee.com>\nDevin Wilson <dwilson6.github@gmail.com>\nDamian Senn <jquery@topaxi.codes>\nZack Hall <zackhall@outlook.com>\nVitaliy Terziev <vitaliyterziev@gmail.com>\nTodor Prikumov <tono_pr@abv.bg>\nBernhard M. Wiedemann <jquerybmw@lsmod.de>\nJha Naman <createnaman@gmail.com>\nAlexander Lisianoi <all3fox@gmail.com>\nWilliam Robinet <william.robinet@conostix.com>\nJoe Trumbull <trumbull.j@gmail.com>\nAlexander K <xpyro@ya.ru>\nRalin Chimev <ralin.chimev@gmail.com>\nFelipe Sateler <fsateler@gmail.com>\nChristophe Tafani-Dereeper <christophetd@hotmail.fr>\nManoj Kumar <nithmanoj@gmail.com>\nDavid Broder-Rodgers <broder93@gmail.com>\nAlex Louden <alex@louden.com>\nAlex Padilla <alexonezero@outlook.com>\nkaran-96 <karanbatra96@gmail.com>\n南漂一卒 <shiy007@qq.com>\nErik Lax <erik@datahack.se>\nBoom Lee <teabyii@gmail.com>\nAndreas Solleder <asol@num42.de>\nPierre Spring <pierre@nelm.io>\nShashanka Nataraj <shashankan.10@gmail.com>\nCDAGaming <cstack2011@yahoo.com>\nMatan Kotler-Berkowitz <205matan@gmail.com>\nJordan Beland <jordan.beland@gmail.com>\nHenry Zhu <hi@henryzoo.com>\nNilton Cesar <niltoncms@gmail.com>\nbasil.belokon <basil.belokon@gmail.com>\nAndrey Meshkov <ay.meshkov@gmail.com>\ntmybr11 <tomas.perone@gmail.com>\nLuis Emilio Velasco Sanchez <emibloque@gmail.com>\nEd S <ejsanders@gmail.com>\nBert Zhang <enbo@users.noreply.github.com>\nSébastien Règne <regseb@users.noreply.github.com>\nwartmanm <3869625+wartmanm@users.noreply.github.com>\nSiddharth Dungarwal <sd5869@gmail.com>\nabnud1 <ahmad13932013@hotmail.com>\nAndrei Fangli <andrei_fangli@outlook.com>\nMarja Hölttä <marja.holtta@gmail.com>\nbuddh4 <mail@jharrer.de>\nHoang <dangkyokhoang@gmail.com>\nWonseop Kim <wonseop.kim@samsung.com>\nPat O'Callaghan <patocallaghan@gmail.com>\nJuanMa Ruiz <ruizjuanma@gmail.com>\nAhmed.S.ElAfifi <ahmed.s.elafifi@gmail.com>\nSean Robinson <sean.robinson@scottsdalecc.edu>\nChristian Oliff <christianoliff@pm.me>\n"
  },
  {
    "path": "images/02_bellCurve/lib/jquery-3.5.1/jquery.js",
    "content": "/*!\n * jQuery JavaScript Library v3.5.1\n * https://jquery.com/\n *\n * Includes Sizzle.js\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://jquery.org/license\n *\n * Date: 2020-05-04T22:49Z\n */\n( function( global, factory ) {\n\n\t\"use strict\";\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\n\t\t// For CommonJS and CommonJS-like environments where a proper `window`\n\t\t// is present, execute the factory and get jQuery.\n\t\t// For environments that do not have a `window` with a `document`\n\t\t// (such as Node.js), expose a factory as module.exports.\n\t\t// This accentuates the need for the creation of a real `window`.\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info.\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n} )( typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1\n// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode\n// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common\n// enough that all such attempts are guarded in a try block.\n\"use strict\";\n\nvar arr = [];\n\nvar getProto = Object.getPrototypeOf;\n\nvar slice = arr.slice;\n\nvar flat = arr.flat ? function( array ) {\n\treturn arr.flat.call( array );\n} : function( array ) {\n\treturn arr.concat.apply( [], array );\n};\n\n\nvar push = arr.push;\n\nvar indexOf = arr.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar fnToString = hasOwn.toString;\n\nvar ObjectFunctionString = fnToString.call( Object );\n\nvar support = {};\n\nvar isFunction = function isFunction( obj ) {\n\n      // Support: Chrome <=57, Firefox <=52\n      // In some browsers, typeof returns \"function\" for HTML <object> elements\n      // (i.e., `typeof document.createElement( \"object\" ) === \"function\"`).\n      // We don't want to classify *any* DOM node as a function.\n      return typeof obj === \"function\" && typeof obj.nodeType !== \"number\";\n  };\n\n\nvar isWindow = function isWindow( obj ) {\n\t\treturn obj != null && obj === obj.window;\n\t};\n\n\nvar document = window.document;\n\n\n\n\tvar preservedScriptAttributes = {\n\t\ttype: true,\n\t\tsrc: true,\n\t\tnonce: true,\n\t\tnoModule: true\n\t};\n\n\tfunction DOMEval( code, node, doc ) {\n\t\tdoc = doc || document;\n\n\t\tvar i, val,\n\t\t\tscript = doc.createElement( \"script\" );\n\n\t\tscript.text = code;\n\t\tif ( node ) {\n\t\t\tfor ( i in preservedScriptAttributes ) {\n\n\t\t\t\t// Support: Firefox 64+, Edge 18+\n\t\t\t\t// Some browsers don't support the \"nonce\" property on scripts.\n\t\t\t\t// On the other hand, just using `getAttribute` is not enough as\n\t\t\t\t// the `nonce` attribute is reset to an empty string whenever it\n\t\t\t\t// becomes browsing-context connected.\n\t\t\t\t// See https://github.com/whatwg/html/issues/2369\n\t\t\t\t// See https://html.spec.whatwg.org/#nonce-attributes\n\t\t\t\t// The `node.getAttribute` check was added for the sake of\n\t\t\t\t// `jQuery.globalEval` so that it can fake a nonce-containing node\n\t\t\t\t// via an object.\n\t\t\t\tval = node[ i ] || node.getAttribute && node.getAttribute( i );\n\t\t\t\tif ( val ) {\n\t\t\t\t\tscript.setAttribute( i, val );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tdoc.head.appendChild( script ).parentNode.removeChild( script );\n\t}\n\n\nfunction toType( obj ) {\n\tif ( obj == null ) {\n\t\treturn obj + \"\";\n\t}\n\n\t// Support: Android <=2.3 only (functionish RegExp)\n\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\tclass2type[ toString.call( obj ) ] || \"object\" :\n\t\ttypeof obj;\n}\n/* global Symbol */\n// Defining this global in .eslintrc.json would create a danger of using the global\n// unguarded in another place, it seems safer to define global only for this module\n\n\n\nvar\n\tversion = \"3.5.1\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t};\n\njQuery.fn = jQuery.prototype = {\n\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\n\t\t// Return all the elements in a clean array\n\t\tif ( num == null ) {\n\t\t\treturn slice.call( this );\n\t\t}\n\n\t\t// Return just the one element from the set\n\t\treturn num < 0 ? this[ num + this.length ] : this[ num ];\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\teach: function( callback ) {\n\t\treturn jQuery.each( this, callback );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map( this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t} ) );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teven: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn ( i + 1 ) % 2;\n\t\t} ) );\n\t},\n\n\todd: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn i % 2;\n\t\t} ) );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor();\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: arr.sort,\n\tsplice: arr.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[ 0 ] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// Skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !isFunction( target ) ) {\n\t\ttarget = {};\n\t}\n\n\t// Extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\n\t\t// Only deal with non-null/undefined values\n\t\tif ( ( options = arguments[ i ] ) != null ) {\n\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent Object.prototype pollution\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( name === \"__proto__\" || target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject( copy ) ||\n\t\t\t\t\t( copyIsArray = Array.isArray( copy ) ) ) ) {\n\t\t\t\t\tsrc = target[ name ];\n\n\t\t\t\t\t// Ensure proper type for the source value\n\t\t\t\t\tif ( copyIsArray && !Array.isArray( src ) ) {\n\t\t\t\t\t\tclone = [];\n\t\t\t\t\t} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {\n\t\t\t\t\t\tclone = {};\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src;\n\t\t\t\t\t}\n\t\t\t\t\tcopyIsArray = false;\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend( {\n\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\tisPlainObject: function( obj ) {\n\t\tvar proto, Ctor;\n\n\t\t// Detect obvious negatives\n\t\t// Use toString instead of jQuery.type to catch host objects\n\t\tif ( !obj || toString.call( obj ) !== \"[object Object]\" ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tproto = getProto( obj );\n\n\t\t// Objects with no prototype (e.g., `Object.create( null )`) are plain\n\t\tif ( !proto ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Objects with prototype are plain iff they were constructed by a global Object function\n\t\tCtor = hasOwn.call( proto, \"constructor\" ) && proto.constructor;\n\t\treturn typeof Ctor === \"function\" && fnToString.call( Ctor ) === ObjectFunctionString;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\t// Evaluates a script in a provided context; falls back to the global one\n\t// if not specified.\n\tglobalEval: function( code, options, doc ) {\n\t\tDOMEval( code, { nonce: options && options.nonce }, doc );\n\t},\n\n\teach: function( obj, callback ) {\n\t\tvar length, i = 0;\n\n\t\tif ( isArrayLike( obj ) ) {\n\t\t\tlength = obj.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tfor ( i in obj ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArrayLike( Object( arr ) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\treturn arr == null ? -1 : indexOf.call( arr, elem, i );\n\t},\n\n\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t// push.apply(_, arraylike) throws on ancient WebKit\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\tfor ( ; j < len; j++ ) {\n\t\t\tfirst[ i++ ] = second[ j ];\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar length, value,\n\t\t\ti = 0,\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArrayLike( elems ) ) {\n\t\t\tlength = elems.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn flat( ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n} );\n\nif ( typeof Symbol === \"function\" ) {\n\tjQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];\n}\n\n// Populate the class2type map\njQuery.each( \"Boolean Number String Function Array Date RegExp Object Error Symbol\".split( \" \" ),\nfunction( _i, name ) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n} );\n\nfunction isArrayLike( obj ) {\n\n\t// Support: real iOS 8.2 only (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = !!obj && \"length\" in obj && obj.length,\n\t\ttype = toType( obj );\n\n\tif ( isFunction( obj ) || isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.3.5\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://js.foundation/\n *\n * Date: 2020-03-14\n */\n( function( window ) {\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tnonnativeSelectorCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// Instance methods\n\thasOwn = ( {} ).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpushNative = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\n\t// Use a stripped-down indexOf as it's faster than native\n\t// https://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[ i ] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|\" +\n\t\t\"ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\n\t// https://www.w3.org/TR/css-syntax-3/#ident-token-diagram\n\tidentifier = \"(?:\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace +\n\t\t\"?|\\\\\\\\[^\\\\r\\\\n\\\\f]|[\\\\w-]|[^\\0-\\\\x7f])+\",\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + identifier + \")(?:\" + whitespace +\n\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\n\t\t// \"Attribute values must be CSS identifiers [capture 5]\n\t\t// or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" +\n\t\twhitespace + \"*\\\\]\",\n\n\tpseudos = \":(\" + identifier + \")(?:\\\\((\" +\n\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" +\n\t\twhitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace +\n\t\t\"*\" ),\n\trdescend = new RegExp( whitespace + \"|>\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + identifier + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + identifier + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + identifier + \"|[*])\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" +\n\t\t\twhitespace + \"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" +\n\t\t\twhitespace + \"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace +\n\t\t\t\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" + whitespace +\n\t\t\t\"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trhtml = /HTML$/i,\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\n\t// CSS escapes\n\t// http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace + \"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\", \"g\" ),\n\tfunescape = function( escape, nonHex ) {\n\t\tvar high = \"0x\" + escape.slice( 1 ) - 0x10000;\n\n\t\treturn nonHex ?\n\n\t\t\t// Strip the backslash prefix from a non-hex escape sequence\n\t\t\tnonHex :\n\n\t\t\t// Replace a hexadecimal escape sequence with the encoded Unicode code point\n\t\t\t// Support: IE <=11+\n\t\t\t// For values outside the Basic Multilingual Plane (BMP), manually construct a\n\t\t\t// surrogate pair\n\t\t\thigh < 0 ?\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// CSS string/identifier serialization\n\t// https://drafts.csswg.org/cssom/#common-serializing-idioms\n\trcssescape = /([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,\n\tfcssescape = function( ch, asCodePoint ) {\n\t\tif ( asCodePoint ) {\n\n\t\t\t// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER\n\t\t\tif ( ch === \"\\0\" ) {\n\t\t\t\treturn \"\\uFFFD\";\n\t\t\t}\n\n\t\t\t// Control characters and (dependent upon position) numbers get escaped as code points\n\t\t\treturn ch.slice( 0, -1 ) + \"\\\\\" +\n\t\t\t\tch.charCodeAt( ch.length - 1 ).toString( 16 ) + \" \";\n\t\t}\n\n\t\t// Other potentially-special ASCII characters get backslash-escaped\n\t\treturn \"\\\\\" + ch;\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t},\n\n\tinDisabledFieldset = addCombinator(\n\t\tfunction( elem ) {\n\t\t\treturn elem.disabled === true && elem.nodeName.toLowerCase() === \"fieldset\";\n\t\t},\n\t\t{ dir: \"parentNode\", next: \"legend\" }\n\t);\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t( arr = slice.call( preferredDoc.childNodes ) ),\n\t\tpreferredDoc.childNodes\n\t);\n\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\t// eslint-disable-next-line no-unused-expressions\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpushNative.apply( target, slice.call( els ) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( ( target[ j++ ] = els[ i++ ] ) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar m, i, elem, nid, match, groups, newSelector,\n\t\tnewContext = context && context.ownerDocument,\n\n\t\t// nodeType defaults to 9, since context defaults to document\n\t\tnodeType = context ? context.nodeType : 9;\n\n\tresults = results || [];\n\n\t// Return early from calls with invalid selector or context\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\t// Try to shortcut find operations (as opposed to filters) in HTML documents\n\tif ( !seed ) {\n\t\tsetDocument( context );\n\t\tcontext = context || document;\n\n\t\tif ( documentIsHTML ) {\n\n\t\t\t// If the selector is sufficiently simple, try using a \"get*By*\" DOM method\n\t\t\t// (excepting DocumentFragment context, where the methods don't exist)\n\t\t\tif ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) {\n\n\t\t\t\t// ID selector\n\t\t\t\tif ( ( m = match[ 1 ] ) ) {\n\n\t\t\t\t\t// Document context\n\t\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\t\tif ( ( elem = context.getElementById( m ) ) ) {\n\n\t\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// Element context\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\tif ( newContext && ( elem = newContext.getElementById( m ) ) &&\n\t\t\t\t\t\t\tcontains( context, elem ) &&\n\t\t\t\t\t\t\telem.id === m ) {\n\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t// Type selector\n\t\t\t\t} else if ( match[ 2 ] ) {\n\t\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\t\treturn results;\n\n\t\t\t\t// Class selector\n\t\t\t\t} else if ( ( m = match[ 3 ] ) && support.getElementsByClassName &&\n\t\t\t\t\tcontext.getElementsByClassName ) {\n\n\t\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\t\treturn results;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Take advantage of querySelectorAll\n\t\t\tif ( support.qsa &&\n\t\t\t\t!nonnativeSelectorCache[ selector + \" \" ] &&\n\t\t\t\t( !rbuggyQSA || !rbuggyQSA.test( selector ) ) &&\n\n\t\t\t\t// Support: IE 8 only\n\t\t\t\t// Exclude object elements\n\t\t\t\t( nodeType !== 1 || context.nodeName.toLowerCase() !== \"object\" ) ) {\n\n\t\t\t\tnewSelector = selector;\n\t\t\t\tnewContext = context;\n\n\t\t\t\t// qSA considers elements outside a scoping root when evaluating child or\n\t\t\t\t// descendant combinators, which is not what we want.\n\t\t\t\t// In such cases, we work around the behavior by prefixing every selector in the\n\t\t\t\t// list with an ID selector referencing the scope context.\n\t\t\t\t// The technique has to be used as well when a leading combinator is used\n\t\t\t\t// as such selectors are not recognized by querySelectorAll.\n\t\t\t\t// Thanks to Andrew Dupont for this technique.\n\t\t\t\tif ( nodeType === 1 &&\n\t\t\t\t\t( rdescend.test( selector ) || rcombinators.test( selector ) ) ) {\n\n\t\t\t\t\t// Expand context for sibling selectors\n\t\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext;\n\n\t\t\t\t\t// We can use :scope instead of the ID hack if the browser\n\t\t\t\t\t// supports it & if we're not changing the context.\n\t\t\t\t\tif ( newContext !== context || !support.scope ) {\n\n\t\t\t\t\t\t// Capture the context ID, setting it first if necessary\n\t\t\t\t\t\tif ( ( nid = context.getAttribute( \"id\" ) ) ) {\n\t\t\t\t\t\t\tnid = nid.replace( rcssescape, fcssescape );\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tcontext.setAttribute( \"id\", ( nid = expando ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prefix every selector in the list\n\t\t\t\t\tgroups = tokenize( selector );\n\t\t\t\t\ti = groups.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tgroups[ i ] = ( nid ? \"#\" + nid : \":scope\" ) + \" \" +\n\t\t\t\t\t\t\ttoSelector( groups[ i ] );\n\t\t\t\t\t}\n\t\t\t\t\tnewSelector = groups.join( \",\" );\n\t\t\t\t}\n\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch ( qsaError ) {\n\t\t\t\t\tnonnativeSelectorCache( selector, true );\n\t\t\t\t} finally {\n\t\t\t\t\tif ( nid === expando ) {\n\t\t\t\t\t\tcontext.removeAttribute( \"id\" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {function(string, object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn ( cache[ key + \" \" ] = value );\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created element and returns a boolean result\n */\nfunction assert( fn ) {\n\tvar el = document.createElement( \"fieldset\" );\n\n\ttry {\n\t\treturn !!fn( el );\n\t} catch ( e ) {\n\t\treturn false;\n\t} finally {\n\n\t\t// Remove from its parent by default\n\t\tif ( el.parentNode ) {\n\t\t\tel.parentNode.removeChild( el );\n\t\t}\n\n\t\t// release memory in IE\n\t\tel = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split( \"|\" ),\n\t\ti = arr.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[ i ] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\ta.sourceIndex - b.sourceIndex;\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( ( cur = cur.nextSibling ) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn ( name === \"input\" || name === \"button\" ) && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for :enabled/:disabled\n * @param {Boolean} disabled true for :disabled; false for :enabled\n */\nfunction createDisabledPseudo( disabled ) {\n\n\t// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable\n\treturn function( elem ) {\n\n\t\t// Only certain elements can match :enabled or :disabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled\n\t\tif ( \"form\" in elem ) {\n\n\t\t\t// Check for inherited disabledness on relevant non-disabled elements:\n\t\t\t// * listed form-associated elements in a disabled fieldset\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#category-listed\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled\n\t\t\t// * option elements in a disabled optgroup\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled\n\t\t\t// All such elements have a \"form\" property.\n\t\t\tif ( elem.parentNode && elem.disabled === false ) {\n\n\t\t\t\t// Option elements defer to a parent optgroup if present\n\t\t\t\tif ( \"label\" in elem ) {\n\t\t\t\t\tif ( \"label\" in elem.parentNode ) {\n\t\t\t\t\t\treturn elem.parentNode.disabled === disabled;\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn elem.disabled === disabled;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Support: IE 6 - 11\n\t\t\t\t// Use the isDisabled shortcut property to check for disabled fieldset ancestors\n\t\t\t\treturn elem.isDisabled === disabled ||\n\n\t\t\t\t\t// Where there is no isDisabled, check manually\n\t\t\t\t\t/* jshint -W018 */\n\t\t\t\t\telem.isDisabled !== !disabled &&\n\t\t\t\t\tinDisabledFieldset( elem ) === disabled;\n\t\t\t}\n\n\t\t\treturn elem.disabled === disabled;\n\n\t\t// Try to winnow out elements that can't be disabled before trusting the disabled property.\n\t\t// Some victims get caught in our net (label, legend, menu, track), but it shouldn't\n\t\t// even exist on them, let alone have a boolean value.\n\t\t} else if ( \"label\" in elem ) {\n\t\t\treturn elem.disabled === disabled;\n\t\t}\n\n\t\t// Remaining elements are neither :enabled nor :disabled\n\t\treturn false;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction( function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction( function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ ( j = matchIndexes[ i ] ) ] ) {\n\t\t\t\t\tseed[ j ] = !( matches[ j ] = seed[ j ] );\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t} );\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\tvar namespace = elem.namespaceURI,\n\t\tdocElem = ( elem.ownerDocument || elem ).documentElement;\n\n\t// Support: IE <=8\n\t// Assume HTML when documentElement doesn't yet exist, such as inside loading iframes\n\t// https://bugs.jquery.com/ticket/4833\n\treturn !rhtml.test( namespace || docElem && docElem.nodeName || \"HTML\" );\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, subWindow,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// Return early if doc is invalid or already selected\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Update global variables\n\tdocument = doc;\n\tdocElem = document.documentElement;\n\tdocumentIsHTML = !isXML( document );\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t// Accessing iframe documents after unload throws \"permission denied\" errors (jQuery #13936)\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( preferredDoc != document &&\n\t\t( subWindow = document.defaultView ) && subWindow.top !== subWindow ) {\n\n\t\t// Support: IE 11, Edge\n\t\tif ( subWindow.addEventListener ) {\n\t\t\tsubWindow.addEventListener( \"unload\", unloadHandler, false );\n\n\t\t// Support: IE 9 - 10 only\n\t\t} else if ( subWindow.attachEvent ) {\n\t\t\tsubWindow.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t// Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only,\n\t// Safari 4 - 5 only, Opera <=11.6 - 12.x only\n\t// IE/Edge & older browsers don't support the :scope pseudo-class.\n\t// Support: Safari 6.0 only\n\t// Safari 6.0 supports :scope but it's an alias of :root there.\n\tsupport.scope = assert( function( el ) {\n\t\tdocElem.appendChild( el ).appendChild( document.createElement( \"div\" ) );\n\t\treturn typeof el.querySelectorAll !== \"undefined\" &&\n\t\t\t!el.querySelectorAll( \":scope fieldset div\" ).length;\n\t} );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert( function( el ) {\n\t\tel.className = \"i\";\n\t\treturn !el.getAttribute( \"className\" );\n\t} );\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert( function( el ) {\n\t\tel.appendChild( document.createComment( \"\" ) );\n\t\treturn !el.getElementsByTagName( \"*\" ).length;\n\t} );\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( document.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programmatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert( function( el ) {\n\t\tdocElem.appendChild( el ).id = expando;\n\t\treturn !document.getElementsByName || !document.getElementsByName( expando ).length;\n\t} );\n\n\t// ID filter and find\n\tif ( support.getById ) {\n\t\tExpr.filter[ \"ID\" ] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute( \"id\" ) === attrId;\n\t\t\t};\n\t\t};\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar elem = context.getElementById( id );\n\t\t\t\treturn elem ? [ elem ] : [];\n\t\t\t}\n\t\t};\n\t} else {\n\t\tExpr.filter[ \"ID\" ] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" &&\n\t\t\t\t\telem.getAttributeNode( \"id\" );\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\n\t\t// Support: IE 6 - 7 only\n\t\t// getElementById is not reliable as a find shortcut\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar node, i, elems,\n\t\t\t\t\telem = context.getElementById( id );\n\n\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t// Verify the id attribute\n\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t}\n\n\t\t\t\t\t// Fall back on getElementsByName\n\t\t\t\t\telems = context.getElementsByName( id );\n\t\t\t\t\ti = 0;\n\t\t\t\t\twhile ( ( elem = elems[ i++ ] ) ) {\n\t\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn [];\n\t\t\t}\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[ \"TAG\" ] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[ \"CLASS\" ] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See https://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) {\n\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert( function( el ) {\n\n\t\t\tvar input;\n\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// https://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( el ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\r\\\\' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( el.querySelectorAll( \"[msallowcapture^='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !el.querySelectorAll( \"[selected]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+\n\t\t\tif ( !el.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"~=\" );\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 15 - 18+\n\t\t\t// IE 11/Edge don't find elements on a `[name='']` query in some cases.\n\t\t\t// Adding a temporary attribute to the document before the selection works\n\t\t\t// around the issue.\n\t\t\t// Interestingly, IE 10 & older don't seem to have the issue.\n\t\t\tinput = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"name\", \"\" );\n\t\t\tel.appendChild( input );\n\t\t\tif ( !el.querySelectorAll( \"[name='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*name\" + whitespace + \"*=\" +\n\t\t\t\t\twhitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !el.querySelectorAll( \":checked\" ).length ) {\n\t\t\t\trbuggyQSA.push( \":checked\" );\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibling-combinator selector` fails\n\t\t\tif ( !el.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push( \".#.+[+~]\" );\n\t\t\t}\n\n\t\t\t// Support: Firefox <=3.6 - 5 only\n\t\t\t// Old Firefox doesn't throw on a badly-escaped identifier.\n\t\t\tel.querySelectorAll( \"\\\\\\f\" );\n\t\t\trbuggyQSA.push( \"[\\\\r\\\\n\\\\f]\" );\n\t\t} );\n\n\t\tassert( function( el ) {\n\t\t\tel.innerHTML = \"<a href='' disabled='disabled'></a>\" +\n\t\t\t\t\"<select disabled='disabled'><option/></select>\";\n\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tel.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( el.querySelectorAll( \"[name=d]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( el.querySelectorAll( \":enabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: IE9-11+\n\t\t\t// IE's :disabled selector does not pick up the children of disabled fieldsets\n\t\t\tdocElem.appendChild( el ).disabled = true;\n\t\t\tif ( el.querySelectorAll( \":disabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: Opera 10 - 11 only\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tel.querySelectorAll( \"*,:x\" );\n\t\t\trbuggyQSA.push( \",.*:\" );\n\t\t} );\n\t}\n\n\tif ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector ) ) ) ) {\n\n\t\tassert( function( el ) {\n\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( el, \"*\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( el, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t} );\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( \"|\" ) );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( \"|\" ) );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully self-exclusive\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t) );\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( ( b = b.parentNode ) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t// two documents; shallow comparisons work.\n\t\t// eslint-disable-next-line eqeqeq\n\t\tcompare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( a == document || a.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, a ) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( b == document || b.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, b ) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\treturn a == document ? -1 :\n\t\t\t\tb == document ? 1 :\n\t\t\t\t/* eslint-enable eqeqeq */\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[ i ] === bp[ i ] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[ i ], bp[ i ] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\tap[ i ] == preferredDoc ? -1 :\n\t\t\tbp[ i ] == preferredDoc ? 1 :\n\t\t\t/* eslint-enable eqeqeq */\n\t\t\t0;\n\t};\n\n\treturn document;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\tsetDocument( elem );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t!nonnativeSelectorCache[ expr + \" \" ] &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\n\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t// fragment in IE 9\n\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\tnonnativeSelectorCache( expr, true );\n\t\t}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( context.ownerDocument || context ) != document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( elem.ownerDocument || elem ) != document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.escape = function( sel ) {\n\treturn ( sel + \"\" ).replace( rcssescape, fcssescape );\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( ( node = elem[ i++ ] ) ) {\n\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[ 1 ] = match[ 1 ].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[ 3 ] = ( match[ 3 ] || match[ 4 ] ||\n\t\t\t\tmatch[ 5 ] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[ 2 ] === \"~=\" ) {\n\t\t\t\tmatch[ 3 ] = \" \" + match[ 3 ] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[ 1 ] = match[ 1 ].toLowerCase();\n\n\t\t\tif ( match[ 1 ].slice( 0, 3 ) === \"nth\" ) {\n\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[ 3 ] ) {\n\t\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[ 4 ] = +( match[ 4 ] ?\n\t\t\t\t\tmatch[ 5 ] + ( match[ 6 ] || 1 ) :\n\t\t\t\t\t2 * ( match[ 3 ] === \"even\" || match[ 3 ] === \"odd\" ) );\n\t\t\t\tmatch[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === \"odd\" );\n\n\t\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[ 3 ] ) {\n\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[ 6 ] && match[ 2 ];\n\n\t\t\tif ( matchExpr[ \"CHILD\" ].test( match[ 0 ] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[ 3 ] ) {\n\t\t\t\tmatch[ 2 ] = match[ 4 ] || match[ 5 ] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t( excess = tokenize( unquoted, true ) ) &&\n\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t( excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length ) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[ 0 ] = match[ 0 ].slice( 0, excess );\n\t\t\t\tmatch[ 2 ] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() {\n\t\t\t\t\treturn true;\n\t\t\t\t} :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t( pattern = new RegExp( \"(^|\" + whitespace +\n\t\t\t\t\t\")\" + className + \"(\" + whitespace + \"|$)\" ) ) && classCache(\n\t\t\t\t\t\tclassName, function( elem ) {\n\t\t\t\t\t\t\treturn pattern.test(\n\t\t\t\t\t\t\t\ttypeof elem.className === \"string\" && elem.className ||\n\t\t\t\t\t\t\t\ttypeof elem.getAttribute !== \"undefined\" &&\n\t\t\t\t\t\t\t\t\telem.getAttribute( \"class\" ) ||\n\t\t\t\t\t\t\t\t\"\"\n\t\t\t\t\t\t\t);\n\t\t\t\t} );\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\t/* eslint-disable max-len */\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t\t/* eslint-enable max-len */\n\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, _argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tvar cache, uniqueCache, outerCache, node, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType,\n\t\t\t\t\t\tdiff = false;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( ( node = node[ dir ] ) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) {\n\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\n\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\tnode = parent;\n\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\tdiff = nodeIndex && cache[ 2 ];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t\tif ( useCache ) {\n\n\t\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\t\tdiff = nodeIndex;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// xml :nth-child(...)\n\t\t\t\t\t\t\t// or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t\tif ( diff === false ) {\n\n\t\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t\tif ( ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) &&\n\t\t\t\t\t\t\t\t\t\t++diff ) {\n\n\t\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t\touterCache = node[ expando ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction( function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[ i ] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[ i ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t} ) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction( function( selector ) {\n\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction( function( seed, matches, _context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\t\t\t\t\tseed[ i ] = !( matches[ i ] = elem );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} ) :\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tinput[ 0 ] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[ 0 ] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t} ),\n\n\t\t\"has\": markFunction( function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t} ),\n\n\t\t\"contains\": markFunction( function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t} ),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test( lang || \"\" ) ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( ( elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute( \"xml:lang\" ) || elem.getAttribute( \"lang\" ) ) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( ( elem = elem.parentNode ) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t} ),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement &&\n\t\t\t\t( !document.hasFocus || document.hasFocus() ) &&\n\t\t\t\t!!( elem.type || elem.href || ~elem.tabIndex );\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": createDisabledPseudo( false ),\n\t\t\"disabled\": createDisabledPseudo( true ),\n\n\t\t\"checked\": function( elem ) {\n\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn ( nodeName === \"input\" && !!elem.checked ) ||\n\t\t\t\t( nodeName === \"option\" && !!elem.selected );\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\t// eslint-disable-next-line no-unused-expressions\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[ \"empty\" ]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( ( attr = elem.getAttribute( \"type\" ) ) == null ||\n\t\t\t\t\tattr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo( function() {\n\t\t\treturn [ 0 ];\n\t\t} ),\n\n\t\t\"last\": createPositionalPseudo( function( _matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t} ),\n\n\t\t\"eq\": createPositionalPseudo( function( _matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t} ),\n\n\t\t\"even\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"odd\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"lt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ?\n\t\t\t\targument + length :\n\t\t\t\targument > length ?\n\t\t\t\t\tlength :\n\t\t\t\t\targument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"gt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} )\n\t}\n};\n\nExpr.pseudos[ \"nth\" ] = Expr.pseudos[ \"eq\" ];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || ( match = rcomma.exec( soFar ) ) ) {\n\t\t\tif ( match ) {\n\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[ 0 ].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( ( tokens = [] ) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( ( match = rcombinators.exec( soFar ) ) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push( {\n\t\t\t\tvalue: matched,\n\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[ 0 ].replace( rtrim, \" \" )\n\t\t\t} );\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] ||\n\t\t\t\t( match = preFilters[ type ]( match ) ) ) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push( {\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t} );\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[ i ].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tskip = combinator.next,\n\t\tkey = skip || dir,\n\t\tcheckNonElements = base && key === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, uniqueCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || ( elem[ expando ] = {} );\n\n\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\tuniqueCache = outerCache[ elem.uniqueID ] ||\n\t\t\t\t\t\t\t( outerCache[ elem.uniqueID ] = {} );\n\n\t\t\t\t\t\tif ( skip && skip === elem.nodeName.toLowerCase() ) {\n\t\t\t\t\t\t\telem = elem[ dir ] || elem;\n\t\t\t\t\t\t} else if ( ( oldCache = uniqueCache[ key ] ) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn ( newCache[ 2 ] = oldCache[ 2 ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\tuniqueCache[ key ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[ i ]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[ 0 ];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[ i ], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction( function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts(\n\t\t\t\tselector || \"*\",\n\t\t\t\tcontext.nodeType ? [ context ] : context,\n\t\t\t\t[]\n\t\t\t),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( ( elem = temp[ i ] ) ) {\n\t\t\t\t\tmatcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) ) {\n\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( ( matcherIn[ i ] = elem ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, ( matcherOut = [] ), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) &&\n\t\t\t\t\t\t( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) {\n\n\t\t\t\t\t\tseed[ temp ] = !( results[ temp ] = elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t} );\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[ 0 ].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[ \" \" ],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t( checkContext = context ).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) {\n\t\t\tmatchers = [ addCombinator( elementMatcher( matchers ), matcher ) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[ j ].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\n\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\ttokens\n\t\t\t\t\t\t.slice( 0, i - 1 )\n\t\t\t\t\t\t.concat( { value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" } )\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[ \"TAG\" ]( \"*\", outermost ),\n\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\n\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\toutermostContext = context == document || context || outermost;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\n\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\tif ( !context && elem.ownerDocument != document ) {\n\t\t\t\t\t\tsetDocument( elem );\n\t\t\t\t\t\txml = !documentIsHTML;\n\t\t\t\t\t}\n\t\t\t\t\twhile ( ( matcher = elementMatchers[ j++ ] ) ) {\n\t\t\t\t\t\tif ( matcher( elem, context || document, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( ( elem = !matcher && elem ) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// `i` is now the count of elements visited above, and adding it to `matchedCount`\n\t\t\t// makes the latter nonnegative.\n\t\t\tmatchedCount += i;\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\t// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n\t\t\t// equals `i`), unless we didn't visit _any_ elements in the above loop because we have\n\t\t\t// no element matchers and no seed.\n\t\t\t// Incrementing an initially-string \"0\" `i` allows `i` to remain a string only in that\n\t\t\t// case, which will result in a \"00\" `matchedCount` that differs from `i` but is also\n\t\t\t// numerically zero.\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( ( matcher = setMatchers[ j++ ] ) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !( unmatched[ i ] || setMatched[ i ] ) ) {\n\t\t\t\t\t\t\t\tsetMatched[ i ] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[ i ] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache(\n\t\t\tselector,\n\t\t\tmatcherFromGroupMatchers( elementMatchers, setMatchers )\n\t\t);\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( ( selector = compiled.selector || selector ) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is only one selector in the list and no seed\n\t// (the latter of which guarantees us context)\n\tif ( match.length === 1 ) {\n\n\t\t// Reduce context if the leading compound selector is an ID\n\t\ttokens = match[ 0 ] = match[ 0 ].slice( 0 );\n\t\tif ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === \"ID\" &&\n\t\t\tcontext.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) {\n\n\t\t\tcontext = ( Expr.find[ \"ID\" ]( token.matches[ 0 ]\n\t\t\t\t.replace( runescape, funescape ), context ) || [] )[ 0 ];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[ \"needsContext\" ].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[ i ];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ ( type = token.type ) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( ( find = Expr.find[ type ] ) ) {\n\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( ( seed = find(\n\t\t\t\t\ttoken.matches[ 0 ].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext\n\t\t\t\t) ) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\t!context || rsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split( \"\" ).sort( sortOrder ).join( \"\" ) === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert( function( el ) {\n\n\t// Should return 1, but returns 4 (following)\n\treturn el.compareDocumentPosition( document.createElement( \"fieldset\" ) ) & 1;\n} );\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert( function( el ) {\n\tel.innerHTML = \"<a href='#'></a>\";\n\treturn el.firstChild.getAttribute( \"href\" ) === \"#\";\n} ) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert( function( el ) {\n\tel.innerHTML = \"<input/>\";\n\tel.firstChild.setAttribute( \"value\", \"\" );\n\treturn el.firstChild.getAttribute( \"value\" ) === \"\";\n} ) ) {\n\taddHandle( \"value\", function( elem, _name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert( function( el ) {\n\treturn el.getAttribute( \"disabled\" ) == null;\n} ) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\t\tnull;\n\t\t}\n\t} );\n}\n\nreturn Sizzle;\n\n} )( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\n\n// Deprecated\njQuery.expr[ \":\" ] = jQuery.expr.pseudos;\njQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\njQuery.escapeSelector = Sizzle.escape;\n\n\n\n\nvar dir = function( elem, dir, until ) {\n\tvar matched = [],\n\t\ttruncate = until !== undefined;\n\n\twhile ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {\n\t\tif ( elem.nodeType === 1 ) {\n\t\t\tif ( truncate && jQuery( elem ).is( until ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tmatched.push( elem );\n\t\t}\n\t}\n\treturn matched;\n};\n\n\nvar siblings = function( n, elem ) {\n\tvar matched = [];\n\n\tfor ( ; n; n = n.nextSibling ) {\n\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\tmatched.push( n );\n\t\t}\n\t}\n\n\treturn matched;\n};\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\n\n\nfunction nodeName( elem, name ) {\n\n  return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\n};\nvar rsingleTag = ( /^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i );\n\n\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t} );\n\t}\n\n\t// Single element\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t} );\n\t}\n\n\t// Arraylike of elements (jQuery, arguments, Array)\n\tif ( typeof qualifier !== \"string\" ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( indexOf.call( qualifier, elem ) > -1 ) !== not;\n\t\t} );\n\t}\n\n\t// Filtered directly for both simple and complex selectors\n\treturn jQuery.filter( qualifier, elements, not );\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\tif ( elems.length === 1 && elem.nodeType === 1 ) {\n\t\treturn jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];\n\t}\n\n\treturn jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\treturn elem.nodeType === 1;\n\t} ) );\n};\n\njQuery.fn.extend( {\n\tfind: function( selector ) {\n\t\tvar i, ret,\n\t\t\tlen = this.length,\n\t\t\tself = this;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter( function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} ) );\n\t\t}\n\n\t\tret = this.pushStack( [] );\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\treturn len > 1 ? jQuery.uniqueSort( ret ) : ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], false ) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], true ) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n} );\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\t// Shortcut simple #id case for speed\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/,\n\n\tinit = jQuery.fn.init = function( selector, context, root ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Method init() accepts an alternate rootjQuery\n\t\t// so migrate can support jQuery.sub (gh-2101)\n\t\troot = root || rootjQuery;\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector[ 0 ] === \"<\" &&\n\t\t\t\tselector[ selector.length - 1 ] === \">\" &&\n\t\t\t\tselector.length >= 3 ) {\n\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && ( match[ 1 ] || !context ) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[ 1 ] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[ 0 ] : context;\n\n\t\t\t\t\t// Option to run scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[ 1 ],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[ 2 ] );\n\n\t\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t\t// Inject the element directly into the jQuery object\n\t\t\t\t\t\tthis[ 0 ] = elem;\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || root ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis[ 0 ] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( isFunction( selector ) ) {\n\t\t\treturn root.ready !== undefined ?\n\t\t\t\troot.ready( selector ) :\n\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\n\t// Methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend( {\n\thas: function( target ) {\n\t\tvar targets = jQuery( target, this ),\n\t\t\tl = targets.length;\n\n\t\treturn this.filter( function() {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[ i ] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\ttargets = typeof selectors !== \"string\" && jQuery( selectors );\n\n\t\t// Positional selectors never match, since there's no _selection_ context\n\t\tif ( !rneedsContext.test( selectors ) ) {\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tfor ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {\n\n\t\t\t\t\t// Always skip document fragments\n\t\t\t\t\tif ( cur.nodeType < 11 && ( targets ?\n\t\t\t\t\t\ttargets.index( cur ) > -1 :\n\n\t\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\t\tjQuery.find.matchesSelector( cur, selectors ) ) ) {\n\n\t\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within the set\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// Index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn indexOf.call( jQuery( elem ), this[ 0 ] );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn indexOf.call( this,\n\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[ 0 ] : elem\n\t\t);\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.uniqueSort(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t}\n} );\n\nfunction sibling( cur, dir ) {\n\twhile ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}\n\treturn cur;\n}\n\njQuery.each( {\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn siblings( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn siblings( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\tif ( elem.contentDocument != null &&\n\n\t\t\t// Support: IE 11+\n\t\t\t// <object> elements with no `data` attribute has an object\n\t\t\t// `contentDocument` with a `null` prototype.\n\t\t\tgetProto( elem.contentDocument ) ) {\n\n\t\t\treturn elem.contentDocument;\n\t\t}\n\n\t\t// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only\n\t\t// Treat the template element as a regular one in browsers that\n\t\t// don't support it.\n\t\tif ( nodeName( elem, \"template\" ) ) {\n\t\t\telem = elem.content || elem;\n\t\t}\n\n\t\treturn jQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar matched = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tmatched = jQuery.filter( selector, matched );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tjQuery.uniqueSort( matched );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tmatched.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched );\n\t};\n} );\nvar rnothtmlwhite = ( /[^\\x20\\t\\r\\n\\f]+/g );\n\n\n\n// Convert String-formatted options into Object-formatted ones\nfunction createOptions( options ) {\n\tvar object = {};\n\tjQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t} );\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\tcreateOptions( options ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\n\t\t// Last fire value for non-forgettable lists\n\t\tmemory,\n\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\n\t\t// Flag to prevent firing\n\t\tlocked,\n\n\t\t// Actual callback list\n\t\tlist = [],\n\n\t\t// Queue of execution data for repeatable lists\n\t\tqueue = [],\n\n\t\t// Index of currently firing callback (modified by add/remove as needed)\n\t\tfiringIndex = -1,\n\n\t\t// Fire callbacks\n\t\tfire = function() {\n\n\t\t\t// Enforce single-firing\n\t\t\tlocked = locked || options.once;\n\n\t\t\t// Execute callbacks for all pending executions,\n\t\t\t// respecting firingIndex overrides and runtime changes\n\t\t\tfired = firing = true;\n\t\t\tfor ( ; queue.length; firingIndex = -1 ) {\n\t\t\t\tmemory = queue.shift();\n\t\t\t\twhile ( ++firingIndex < list.length ) {\n\n\t\t\t\t\t// Run callback and check for early termination\n\t\t\t\t\tif ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&\n\t\t\t\t\t\toptions.stopOnFalse ) {\n\n\t\t\t\t\t\t// Jump to end and forget the data so .add doesn't re-fire\n\t\t\t\t\t\tfiringIndex = list.length;\n\t\t\t\t\t\tmemory = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Forget the data if we're done with it\n\t\t\tif ( !options.memory ) {\n\t\t\t\tmemory = false;\n\t\t\t}\n\n\t\t\tfiring = false;\n\n\t\t\t// Clean up if we're done firing for good\n\t\t\tif ( locked ) {\n\n\t\t\t\t// Keep an empty list if we have data for future add calls\n\t\t\t\tif ( memory ) {\n\t\t\t\t\tlist = [];\n\n\t\t\t\t// Otherwise, this object is spent\n\t\t\t\t} else {\n\t\t\t\t\tlist = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t// Actual Callbacks object\n\t\tself = {\n\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\n\t\t\t\t\t// If we have memory from a past run, we should fire after adding\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfiringIndex = list.length - 1;\n\t\t\t\t\t\tqueue.push( memory );\n\t\t\t\t\t}\n\n\t\t\t\t\t( function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tif ( isFunction( arg ) ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && toType( arg ) !== \"string\" ) {\n\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t} )( arguments );\n\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\tvar index;\n\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\tlist.splice( index, 1 );\n\n\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ?\n\t\t\t\t\tjQuery.inArray( fn, list ) > -1 :\n\t\t\t\t\tlist.length > 0;\n\t\t\t},\n\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Disable .fire and .add\n\t\t\t// Abort any current/pending executions\n\t\t\t// Clear all callbacks and values\n\t\t\tdisable: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tlist = memory = \"\";\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\n\t\t\t// Disable .fire\n\t\t\t// Also disable .add unless we have memory (since it would have no effect)\n\t\t\t// Abort any pending executions\n\t\t\tlock: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tif ( !memory && !firing ) {\n\t\t\t\t\tlist = memory = \"\";\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tlocked: function() {\n\t\t\t\treturn !!locked;\n\t\t\t},\n\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( !locked ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tqueue.push( args );\n\t\t\t\t\tif ( !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\nfunction Identity( v ) {\n\treturn v;\n}\nfunction Thrower( ex ) {\n\tthrow ex;\n}\n\nfunction adoptValue( value, resolve, reject, noValue ) {\n\tvar method;\n\n\ttry {\n\n\t\t// Check for promise aspect first to privilege synchronous behavior\n\t\tif ( value && isFunction( ( method = value.promise ) ) ) {\n\t\t\tmethod.call( value ).done( resolve ).fail( reject );\n\n\t\t// Other thenables\n\t\t} else if ( value && isFunction( ( method = value.then ) ) ) {\n\t\t\tmethod.call( value, resolve, reject );\n\n\t\t// Other non-thenables\n\t\t} else {\n\n\t\t\t// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:\n\t\t\t// * false: [ value ].slice( 0 ) => resolve( value )\n\t\t\t// * true: [ value ].slice( 1 ) => resolve()\n\t\t\tresolve.apply( undefined, [ value ].slice( noValue ) );\n\t\t}\n\n\t// For Promises/A+, convert exceptions into rejections\n\t// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in\n\t// Deferred#then to conditionally suppress rejection.\n\t} catch ( value ) {\n\n\t\t// Support: Android 4.0 only\n\t\t// Strict mode functions invoked without .call/.apply get global-object context\n\t\treject.apply( undefined, [ value ] );\n\t}\n}\n\njQuery.extend( {\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\n\t\t\t\t// action, add listener, callbacks,\n\t\t\t\t// ... .then handlers, argument index, [final state]\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks( \"memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"memory\" ), 2 ],\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 0, \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 1, \"rejected\" ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\t\"catch\": function( fn ) {\n\t\t\t\t\treturn promise.then( null, fn );\n\t\t\t\t},\n\n\t\t\t\t// Keep pipe for back-compat\n\t\t\t\tpipe: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( _i, tuple ) {\n\n\t\t\t\t\t\t\t// Map tuples (progress, done, fail) to arguments (done, fail, progress)\n\t\t\t\t\t\t\tvar fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];\n\n\t\t\t\t\t\t\t// deferred.progress(function() { bind to newDefer or newDefer.notify })\n\t\t\t\t\t\t\t// deferred.done(function() { bind to newDefer or newDefer.resolve })\n\t\t\t\t\t\t\t// deferred.fail(function() { bind to newDefer or newDefer.reject })\n\t\t\t\t\t\t\tdeferred[ tuple[ 1 ] ]( function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify )\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ](\n\t\t\t\t\t\t\t\t\t\tthis,\n\t\t\t\t\t\t\t\t\t\tfn ? [ returned ] : arguments\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t} );\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\t\t\t\tthen: function( onFulfilled, onRejected, onProgress ) {\n\t\t\t\t\tvar maxDepth = 0;\n\t\t\t\t\tfunction resolve( depth, deferred, handler, special ) {\n\t\t\t\t\t\treturn function() {\n\t\t\t\t\t\t\tvar that = this,\n\t\t\t\t\t\t\t\targs = arguments,\n\t\t\t\t\t\t\t\tmightThrow = function() {\n\t\t\t\t\t\t\t\t\tvar returned, then;\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.3\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-59\n\t\t\t\t\t\t\t\t\t// Ignore double-resolution attempts\n\t\t\t\t\t\t\t\t\tif ( depth < maxDepth ) {\n\t\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\treturned = handler.apply( that, args );\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.1\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-48\n\t\t\t\t\t\t\t\t\tif ( returned === deferred.promise() ) {\n\t\t\t\t\t\t\t\t\t\tthrow new TypeError( \"Thenable self-resolution\" );\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ sections 2.3.3.1, 3.5\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-54\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-75\n\t\t\t\t\t\t\t\t\t// Retrieve `then` only once\n\t\t\t\t\t\t\t\t\tthen = returned &&\n\n\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.4\n\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-64\n\t\t\t\t\t\t\t\t\t\t// Only check objects and functions for thenability\n\t\t\t\t\t\t\t\t\t\t( typeof returned === \"object\" ||\n\t\t\t\t\t\t\t\t\t\t\ttypeof returned === \"function\" ) &&\n\t\t\t\t\t\t\t\t\t\treturned.then;\n\n\t\t\t\t\t\t\t\t\t// Handle a returned thenable\n\t\t\t\t\t\t\t\t\tif ( isFunction( then ) ) {\n\n\t\t\t\t\t\t\t\t\t\t// Special processors (notify) just wait for resolution\n\t\t\t\t\t\t\t\t\t\tif ( special ) {\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special )\n\t\t\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\t\t// Normal processors (resolve) also hook into progress\n\t\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t\t// ...and disregard older resolution values\n\t\t\t\t\t\t\t\t\t\t\tmaxDepth++;\n\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdeferred.notifyWith )\n\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Handle all other returned values\n\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\tif ( handler !== Identity ) {\n\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\targs = [ returned ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t// Process the value(s)\n\t\t\t\t\t\t\t\t\t\t// Default process is resolve\n\t\t\t\t\t\t\t\t\t\t( special || deferred.resolveWith )( that, args );\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},\n\n\t\t\t\t\t\t\t\t// Only normal processors (resolve) catch and reject exceptions\n\t\t\t\t\t\t\t\tprocess = special ?\n\t\t\t\t\t\t\t\t\tmightThrow :\n\t\t\t\t\t\t\t\t\tfunction() {\n\t\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\t\tmightThrow();\n\t\t\t\t\t\t\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t\t\t\t\t\t\tif ( jQuery.Deferred.exceptionHook ) {\n\t\t\t\t\t\t\t\t\t\t\t\tjQuery.Deferred.exceptionHook( e,\n\t\t\t\t\t\t\t\t\t\t\t\t\tprocess.stackTrace );\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.4.1\n\t\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-61\n\t\t\t\t\t\t\t\t\t\t\t// Ignore post-resolution exceptions\n\t\t\t\t\t\t\t\t\t\t\tif ( depth + 1 >= maxDepth ) {\n\n\t\t\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\t\t\tif ( handler !== Thrower ) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\t\t\targs = [ e ];\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tdeferred.rejectWith( that, args );\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t};\n\n\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.1\n\t\t\t\t\t\t\t// https://promisesaplus.com/#point-57\n\t\t\t\t\t\t\t// Re-resolve promises immediately to dodge false rejection from\n\t\t\t\t\t\t\t// subsequent errors\n\t\t\t\t\t\t\tif ( depth ) {\n\t\t\t\t\t\t\t\tprocess();\n\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t// Call an optional hook to record the stack, in case of exception\n\t\t\t\t\t\t\t\t// since it's otherwise lost when execution goes async\n\t\t\t\t\t\t\t\tif ( jQuery.Deferred.getStackHook ) {\n\t\t\t\t\t\t\t\t\tprocess.stackTrace = jQuery.Deferred.getStackHook();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\twindow.setTimeout( process );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\n\t\t\t\t\t\t// progress_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 0 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onProgress ) ?\n\t\t\t\t\t\t\t\t\tonProgress :\n\t\t\t\t\t\t\t\t\tIdentity,\n\t\t\t\t\t\t\t\tnewDefer.notifyWith\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// fulfilled_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 1 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onFulfilled ) ?\n\t\t\t\t\t\t\t\t\tonFulfilled :\n\t\t\t\t\t\t\t\t\tIdentity\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// rejected_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 2 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onRejected ) ?\n\t\t\t\t\t\t\t\t\tonRejected :\n\t\t\t\t\t\t\t\t\tThrower\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 5 ];\n\n\t\t\t// promise.progress = list.add\n\t\t\t// promise.done = list.add\n\t\t\t// promise.fail = list.add\n\t\t\tpromise[ tuple[ 1 ] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(\n\t\t\t\t\tfunction() {\n\n\t\t\t\t\t\t// state = \"resolved\" (i.e., fulfilled)\n\t\t\t\t\t\t// state = \"rejected\"\n\t\t\t\t\t\tstate = stateString;\n\t\t\t\t\t},\n\n\t\t\t\t\t// rejected_callbacks.disable\n\t\t\t\t\t// fulfilled_callbacks.disable\n\t\t\t\t\ttuples[ 3 - i ][ 2 ].disable,\n\n\t\t\t\t\t// rejected_handlers.disable\n\t\t\t\t\t// fulfilled_handlers.disable\n\t\t\t\t\ttuples[ 3 - i ][ 3 ].disable,\n\n\t\t\t\t\t// progress_callbacks.lock\n\t\t\t\t\ttuples[ 0 ][ 2 ].lock,\n\n\t\t\t\t\t// progress_handlers.lock\n\t\t\t\t\ttuples[ 0 ][ 3 ].lock\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// progress_handlers.fire\n\t\t\t// fulfilled_handlers.fire\n\t\t\t// rejected_handlers.fire\n\t\t\tlist.add( tuple[ 3 ].fire );\n\n\t\t\t// deferred.notify = function() { deferred.notifyWith(...) }\n\t\t\t// deferred.resolve = function() { deferred.resolveWith(...) }\n\t\t\t// deferred.reject = function() { deferred.rejectWith(...) }\n\t\t\tdeferred[ tuple[ 0 ] ] = function() {\n\t\t\t\tdeferred[ tuple[ 0 ] + \"With\" ]( this === deferred ? undefined : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\n\t\t\t// deferred.notifyWith = list.fireWith\n\t\t\t// deferred.resolveWith = list.fireWith\n\t\t\t// deferred.rejectWith = list.fireWith\n\t\t\tdeferred[ tuple[ 0 ] + \"With\" ] = list.fireWith;\n\t\t} );\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( singleValue ) {\n\t\tvar\n\n\t\t\t// count of uncompleted subordinates\n\t\t\tremaining = arguments.length,\n\n\t\t\t// count of unprocessed arguments\n\t\t\ti = remaining,\n\n\t\t\t// subordinate fulfillment data\n\t\t\tresolveContexts = Array( i ),\n\t\t\tresolveValues = slice.call( arguments ),\n\n\t\t\t// the master Deferred\n\t\t\tmaster = jQuery.Deferred(),\n\n\t\t\t// subordinate callback factory\n\t\t\tupdateFunc = function( i ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tresolveContexts[ i ] = this;\n\t\t\t\t\tresolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( !( --remaining ) ) {\n\t\t\t\t\t\tmaster.resolveWith( resolveContexts, resolveValues );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t};\n\n\t\t// Single- and empty arguments are adopted like Promise.resolve\n\t\tif ( remaining <= 1 ) {\n\t\t\tadoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject,\n\t\t\t\t!remaining );\n\n\t\t\t// Use .then() to unwrap secondary thenables (cf. gh-3000)\n\t\t\tif ( master.state() === \"pending\" ||\n\t\t\t\tisFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {\n\n\t\t\t\treturn master.then();\n\t\t\t}\n\t\t}\n\n\t\t// Multiple arguments are aggregated like Promise.all array elements\n\t\twhile ( i-- ) {\n\t\t\tadoptValue( resolveValues[ i ], updateFunc( i ), master.reject );\n\t\t}\n\n\t\treturn master.promise();\n\t}\n} );\n\n\n// These usually indicate a programmer mistake during development,\n// warn about them ASAP rather than swallowing them by default.\nvar rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;\n\njQuery.Deferred.exceptionHook = function( error, stack ) {\n\n\t// Support: IE 8 - 9 only\n\t// Console exists when dev tools are open, which can happen at any time\n\tif ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {\n\t\twindow.console.warn( \"jQuery.Deferred exception: \" + error.message, error.stack, stack );\n\t}\n};\n\n\n\n\njQuery.readyException = function( error ) {\n\twindow.setTimeout( function() {\n\t\tthrow error;\n\t} );\n};\n\n\n\n\n// The deferred used on DOM ready\nvar readyList = jQuery.Deferred();\n\njQuery.fn.ready = function( fn ) {\n\n\treadyList\n\t\t.then( fn )\n\n\t\t// Wrap jQuery.readyException in a function so that the lookup\n\t\t// happens at the time of error handling instead of callback\n\t\t// registration.\n\t\t.catch( function( error ) {\n\t\t\tjQuery.readyException( error );\n\t\t} );\n\n\treturn this;\n};\n\njQuery.extend( {\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\t}\n} );\n\njQuery.ready.then = readyList.then;\n\n// The ready event handler and self cleanup method\nfunction completed() {\n\tdocument.removeEventListener( \"DOMContentLoaded\", completed );\n\twindow.removeEventListener( \"load\", completed );\n\tjQuery.ready();\n}\n\n// Catch cases where $(document).ready() is called\n// after the browser event has already occurred.\n// Support: IE <=9 - 10 only\n// Older IE sometimes signals \"interactive\" too soon\nif ( document.readyState === \"complete\" ||\n\t( document.readyState !== \"loading\" && !document.documentElement.doScroll ) ) {\n\n\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\twindow.setTimeout( jQuery.ready );\n\n} else {\n\n\t// Use the handy event callback\n\tdocument.addEventListener( \"DOMContentLoaded\", completed );\n\n\t// A fallback to window.onload, that will always work\n\twindow.addEventListener( \"load\", completed );\n}\n\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlen = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( toType( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\taccess( elems, fn, i, key[ i ], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, _key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\tfn(\n\t\t\t\t\telems[ i ], key, raw ?\n\t\t\t\t\tvalue :\n\t\t\t\t\tvalue.call( elems[ i ], i, fn( elems[ i ], key ) )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( chainable ) {\n\t\treturn elems;\n\t}\n\n\t// Gets\n\tif ( bulk ) {\n\t\treturn fn.call( elems );\n\t}\n\n\treturn len ? fn( elems[ 0 ], key ) : emptyGet;\n};\n\n\n// Matches dashed string for camelizing\nvar rmsPrefix = /^-ms-/,\n\trdashAlpha = /-([a-z])/g;\n\n// Used by camelCase as callback to replace()\nfunction fcamelCase( _all, letter ) {\n\treturn letter.toUpperCase();\n}\n\n// Convert dashed to camelCase; used by the css and data modules\n// Support: IE <=9 - 11, Edge 12 - 15\n// Microsoft forgot to hump their vendor prefix (#9572)\nfunction camelCase( string ) {\n\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n}\nvar acceptData = function( owner ) {\n\n\t// Accepts only:\n\t//  - Node\n\t//    - Node.ELEMENT_NODE\n\t//    - Node.DOCUMENT_NODE\n\t//  - Object\n\t//    - Any\n\treturn owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );\n};\n\n\n\n\nfunction Data() {\n\tthis.expando = jQuery.expando + Data.uid++;\n}\n\nData.uid = 1;\n\nData.prototype = {\n\n\tcache: function( owner ) {\n\n\t\t// Check if the owner object already has a cache\n\t\tvar value = owner[ this.expando ];\n\n\t\t// If not, create one\n\t\tif ( !value ) {\n\t\t\tvalue = {};\n\n\t\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t\t// but we should not, see #8335.\n\t\t\t// Always return an empty object.\n\t\t\tif ( acceptData( owner ) ) {\n\n\t\t\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t\t\t// use plain assignment\n\t\t\t\tif ( owner.nodeType ) {\n\t\t\t\t\towner[ this.expando ] = value;\n\n\t\t\t\t// Otherwise secure it in a non-enumerable property\n\t\t\t\t// configurable must be true to allow the property to be\n\t\t\t\t// deleted when data is removed\n\t\t\t\t} else {\n\t\t\t\t\tObject.defineProperty( owner, this.expando, {\n\t\t\t\t\t\tvalue: value,\n\t\t\t\t\t\tconfigurable: true\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn value;\n\t},\n\tset: function( owner, data, value ) {\n\t\tvar prop,\n\t\t\tcache = this.cache( owner );\n\n\t\t// Handle: [ owner, key, value ] args\n\t\t// Always use camelCase key (gh-2257)\n\t\tif ( typeof data === \"string\" ) {\n\t\t\tcache[ camelCase( data ) ] = value;\n\n\t\t// Handle: [ owner, { properties } ] args\n\t\t} else {\n\n\t\t\t// Copy the properties one-by-one to the cache object\n\t\t\tfor ( prop in data ) {\n\t\t\t\tcache[ camelCase( prop ) ] = data[ prop ];\n\t\t\t}\n\t\t}\n\t\treturn cache;\n\t},\n\tget: function( owner, key ) {\n\t\treturn key === undefined ?\n\t\t\tthis.cache( owner ) :\n\n\t\t\t// Always use camelCase key (gh-2257)\n\t\t\towner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];\n\t},\n\taccess: function( owner, key, value ) {\n\n\t\t// In cases where either:\n\t\t//\n\t\t//   1. No key was specified\n\t\t//   2. A string key was specified, but no value provided\n\t\t//\n\t\t// Take the \"read\" path and allow the get method to determine\n\t\t// which value to return, respectively either:\n\t\t//\n\t\t//   1. The entire cache object\n\t\t//   2. The data stored at the key\n\t\t//\n\t\tif ( key === undefined ||\n\t\t\t\t( ( key && typeof key === \"string\" ) && value === undefined ) ) {\n\n\t\t\treturn this.get( owner, key );\n\t\t}\n\n\t\t// When the key is not a string, or both a key and value\n\t\t// are specified, set or extend (existing objects) with either:\n\t\t//\n\t\t//   1. An object of properties\n\t\t//   2. A key and value\n\t\t//\n\t\tthis.set( owner, key, value );\n\n\t\t// Since the \"set\" path can have two possible entry points\n\t\t// return the expected data based on which path was taken[*]\n\t\treturn value !== undefined ? value : key;\n\t},\n\tremove: function( owner, key ) {\n\t\tvar i,\n\t\t\tcache = owner[ this.expando ];\n\n\t\tif ( cache === undefined ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key !== undefined ) {\n\n\t\t\t// Support array or space separated string of keys\n\t\t\tif ( Array.isArray( key ) ) {\n\n\t\t\t\t// If key is an array of keys...\n\t\t\t\t// We always set camelCase keys, so remove that.\n\t\t\t\tkey = key.map( camelCase );\n\t\t\t} else {\n\t\t\t\tkey = camelCase( key );\n\n\t\t\t\t// If a key with the spaces exists, use it.\n\t\t\t\t// Otherwise, create an array by matching non-whitespace\n\t\t\t\tkey = key in cache ?\n\t\t\t\t\t[ key ] :\n\t\t\t\t\t( key.match( rnothtmlwhite ) || [] );\n\t\t\t}\n\n\t\t\ti = key.length;\n\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete cache[ key[ i ] ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if there's no more data\n\t\tif ( key === undefined || jQuery.isEmptyObject( cache ) ) {\n\n\t\t\t// Support: Chrome <=35 - 45\n\t\t\t// Webkit & Blink performance suffers when deleting properties\n\t\t\t// from DOM nodes, so set to undefined instead\n\t\t\t// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)\n\t\t\tif ( owner.nodeType ) {\n\t\t\t\towner[ this.expando ] = undefined;\n\t\t\t} else {\n\t\t\t\tdelete owner[ this.expando ];\n\t\t\t}\n\t\t}\n\t},\n\thasData: function( owner ) {\n\t\tvar cache = owner[ this.expando ];\n\t\treturn cache !== undefined && !jQuery.isEmptyObject( cache );\n\t}\n};\nvar dataPriv = new Data();\n\nvar dataUser = new Data();\n\n\n\n//\tImplementation Summary\n//\n//\t1. Enforce API surface and semantic compatibility with 1.9.x branch\n//\t2. Improve the module's maintainability by reducing the storage\n//\t\tpaths to a single mechanism.\n//\t3. Use the same single mechanism to support \"private\" and \"user\" data.\n//\t4. _Never_ expose \"private\" data to user code (TODO: Drop _data, _removeData)\n//\t5. Avoid exposing implementation details on user objects (eg. expando properties)\n//\t6. Provide a clear path for implementation upgrade to WeakMap in 2014\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /[A-Z]/g;\n\nfunction getData( data ) {\n\tif ( data === \"true\" ) {\n\t\treturn true;\n\t}\n\n\tif ( data === \"false\" ) {\n\t\treturn false;\n\t}\n\n\tif ( data === \"null\" ) {\n\t\treturn null;\n\t}\n\n\t// Only convert to a number if it doesn't change the string\n\tif ( data === +data + \"\" ) {\n\t\treturn +data;\n\t}\n\n\tif ( rbrace.test( data ) ) {\n\t\treturn JSON.parse( data );\n\t}\n\n\treturn data;\n}\n\nfunction dataAttr( elem, key, data ) {\n\tvar name;\n\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\t\tname = \"data-\" + key.replace( rmultiDash, \"-$&\" ).toLowerCase();\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = getData( data );\n\t\t\t} catch ( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tdataUser.set( elem, key, data );\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\treturn data;\n}\n\njQuery.extend( {\n\thasData: function( elem ) {\n\t\treturn dataUser.hasData( elem ) || dataPriv.hasData( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn dataUser.access( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\tdataUser.remove( elem, name );\n\t},\n\n\t// TODO: Now that all calls to _data and _removeData have been replaced\n\t// with direct calls to dataPriv methods, these can be deprecated.\n\t_data: function( elem, name, data ) {\n\t\treturn dataPriv.access( elem, name, data );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\tdataPriv.remove( elem, name );\n\t}\n} );\n\njQuery.fn.extend( {\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[ 0 ],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = dataUser.get( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !dataPriv.get( elem, \"hasDataAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE 11 only\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = camelCase( name.slice( 5 ) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tdataPriv.set( elem, \"hasDataAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tdataUser.set( this, key );\n\t\t\t} );\n\t\t}\n\n\t\treturn access( this, function( value ) {\n\t\t\tvar data;\n\n\t\t\t// The calling jQuery object (element matches) is not empty\n\t\t\t// (and therefore has an element appears at this[ 0 ]) and the\n\t\t\t// `value` parameter was not undefined. An empty jQuery object\n\t\t\t// will result in `undefined` for elem = this[ 0 ] which will\n\t\t\t// throw an exception if an attempt to read a data cache is made.\n\t\t\tif ( elem && value === undefined ) {\n\n\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t// The key will always be camelCased in Data\n\t\t\t\tdata = dataUser.get( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Attempt to \"discover\" the data in\n\t\t\t\t// HTML5 custom data-* attrs\n\t\t\t\tdata = dataAttr( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// We tried really hard, but the data doesn't exist.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Set the data...\n\t\t\tthis.each( function() {\n\n\t\t\t\t// We always store the camelCased key\n\t\t\t\tdataUser.set( this, key, value );\n\t\t\t} );\n\t\t}, null, value, arguments.length > 1, null, true );\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each( function() {\n\t\t\tdataUser.remove( this, key );\n\t\t} );\n\t}\n} );\n\n\njQuery.extend( {\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = dataPriv.get( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || Array.isArray( data ) ) {\n\t\t\t\t\tqueue = dataPriv.access( elem, type, jQuery.makeArray( data ) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// Clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// Not public - generate a queueHooks object, or return the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn dataPriv.get( elem, key ) || dataPriv.access( elem, key, {\n\t\t\tempty: jQuery.Callbacks( \"once memory\" ).add( function() {\n\t\t\t\tdataPriv.remove( elem, [ type + \"queue\", key ] );\n\t\t\t} )\n\t\t} );\n\t}\n} );\n\njQuery.fn.extend( {\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[ 0 ], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each( function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// Ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[ 0 ] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t} );\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t} );\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = dataPriv.get( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n} );\nvar pnum = ( /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/ ).source;\n\nvar rcssNum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" );\n\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar documentElement = document.documentElement;\n\n\n\n\tvar isAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem );\n\t\t},\n\t\tcomposed = { composed: true };\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only\n\t// Check attachment across shadow DOM boundaries when possible (gh-3504)\n\t// Support: iOS 10.0-10.2 only\n\t// Early iOS 10 versions support `attachShadow` but not `getRootNode`,\n\t// leading to errors. We need to check for `getRootNode`.\n\tif ( documentElement.getRootNode ) {\n\t\tisAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem ) ||\n\t\t\t\telem.getRootNode( composed ) === elem.ownerDocument;\n\t\t};\n\t}\nvar isHiddenWithinTree = function( elem, el ) {\n\n\t\t// isHiddenWithinTree might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\n\t\t// Inline style trumps all\n\t\treturn elem.style.display === \"none\" ||\n\t\t\telem.style.display === \"\" &&\n\n\t\t\t// Otherwise, check computed style\n\t\t\t// Support: Firefox <=43 - 45\n\t\t\t// Disconnected elements can have computed display: none, so first confirm that elem is\n\t\t\t// in the document.\n\t\t\tisAttached( elem ) &&\n\n\t\t\tjQuery.css( elem, \"display\" ) === \"none\";\n\t};\n\n\n\nfunction adjustCSS( elem, prop, valueParts, tween ) {\n\tvar adjusted, scale,\n\t\tmaxIterations = 20,\n\t\tcurrentValue = tween ?\n\t\t\tfunction() {\n\t\t\t\treturn tween.cur();\n\t\t\t} :\n\t\t\tfunction() {\n\t\t\t\treturn jQuery.css( elem, prop, \"\" );\n\t\t\t},\n\t\tinitial = currentValue(),\n\t\tunit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t// Starting value computation is required for potential unit mismatches\n\t\tinitialInUnit = elem.nodeType &&\n\t\t\t( jQuery.cssNumber[ prop ] || unit !== \"px\" && +initial ) &&\n\t\t\trcssNum.exec( jQuery.css( elem, prop ) );\n\n\tif ( initialInUnit && initialInUnit[ 3 ] !== unit ) {\n\n\t\t// Support: Firefox <=54\n\t\t// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)\n\t\tinitial = initial / 2;\n\n\t\t// Trust units reported by jQuery.css\n\t\tunit = unit || initialInUnit[ 3 ];\n\n\t\t// Iteratively approximate from a nonzero starting point\n\t\tinitialInUnit = +initial || 1;\n\n\t\twhile ( maxIterations-- ) {\n\n\t\t\t// Evaluate and update our best guess (doubling guesses that zero out).\n\t\t\t// Finish if the scale equals or crosses 1 (making the old*new product non-positive).\n\t\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\t\t\tif ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {\n\t\t\t\tmaxIterations = 0;\n\t\t\t}\n\t\t\tinitialInUnit = initialInUnit / scale;\n\n\t\t}\n\n\t\tinitialInUnit = initialInUnit * 2;\n\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\n\t\t// Make sure we update the tween properties later on\n\t\tvalueParts = valueParts || [];\n\t}\n\n\tif ( valueParts ) {\n\t\tinitialInUnit = +initialInUnit || +initial || 0;\n\n\t\t// Apply relative offset (+=/-=) if specified\n\t\tadjusted = valueParts[ 1 ] ?\n\t\t\tinitialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :\n\t\t\t+valueParts[ 2 ];\n\t\tif ( tween ) {\n\t\t\ttween.unit = unit;\n\t\t\ttween.start = initialInUnit;\n\t\t\ttween.end = adjusted;\n\t\t}\n\t}\n\treturn adjusted;\n}\n\n\nvar defaultDisplayMap = {};\n\nfunction getDefaultDisplay( elem ) {\n\tvar temp,\n\t\tdoc = elem.ownerDocument,\n\t\tnodeName = elem.nodeName,\n\t\tdisplay = defaultDisplayMap[ nodeName ];\n\n\tif ( display ) {\n\t\treturn display;\n\t}\n\n\ttemp = doc.body.appendChild( doc.createElement( nodeName ) );\n\tdisplay = jQuery.css( temp, \"display\" );\n\n\ttemp.parentNode.removeChild( temp );\n\n\tif ( display === \"none\" ) {\n\t\tdisplay = \"block\";\n\t}\n\tdefaultDisplayMap[ nodeName ] = display;\n\n\treturn display;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\t// Determine new display value for elements that need to change\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\n\t\t\t// Since we force visibility upon cascade-hidden elements, an immediate (and slow)\n\t\t\t// check is required in this first loop unless we have a nonempty display value (either\n\t\t\t// inline or about-to-be-restored)\n\t\t\tif ( display === \"none\" ) {\n\t\t\t\tvalues[ index ] = dataPriv.get( elem, \"display\" ) || null;\n\t\t\t\tif ( !values[ index ] ) {\n\t\t\t\t\telem.style.display = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( elem.style.display === \"\" && isHiddenWithinTree( elem ) ) {\n\t\t\t\tvalues[ index ] = getDefaultDisplay( elem );\n\t\t\t}\n\t\t} else {\n\t\t\tif ( display !== \"none\" ) {\n\t\t\t\tvalues[ index ] = \"none\";\n\n\t\t\t\t// Remember what we're overwriting\n\t\t\t\tdataPriv.set( elem, \"display\", display );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of the elements in a second loop to avoid constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\tif ( values[ index ] != null ) {\n\t\t\telements[ index ].style.display = values[ index ];\n\t\t}\n\t}\n\n\treturn elements;\n}\n\njQuery.fn.extend( {\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tif ( isHiddenWithinTree( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t} );\n\t}\n} );\nvar rcheckableType = ( /^(?:checkbox|radio)$/i );\n\nvar rtagName = ( /<([a-z][^\\/\\0>\\x20\\t\\r\\n\\f]*)/i );\n\nvar rscriptType = ( /^$|^module$|\\/(?:java|ecma)script/i );\n\n\n\n( function() {\n\tvar fragment = document.createDocumentFragment(),\n\t\tdiv = fragment.appendChild( document.createElement( \"div\" ) ),\n\t\tinput = document.createElement( \"input\" );\n\n\t// Support: Android 4.0 - 4.3 only\n\t// Check state lost if the name is set (#11217)\n\t// Support: Windows Web Apps (WWA)\n\t// `name` and `type` must use .setAttribute for WWA (#14901)\n\tinput.setAttribute( \"type\", \"radio\" );\n\tinput.setAttribute( \"checked\", \"checked\" );\n\tinput.setAttribute( \"name\", \"t\" );\n\n\tdiv.appendChild( input );\n\n\t// Support: Android <=4.1 only\n\t// Older WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE <=11 only\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// Support: IE <=9 only\n\t// IE <=9 replaces <option> tags with their contents when inserted outside of\n\t// the select element.\n\tdiv.innerHTML = \"<option></option>\";\n\tsupport.option = !!div.lastChild;\n} )();\n\n\n// We have to close these tags to support XHTML (#13200)\nvar wrapMap = {\n\n\t// XHTML parsers do not magically insert elements in the\n\t// same way that tag soup parsers do. So we cannot shorten\n\t// this by omitting <tbody> or other required elements.\n\tthead: [ 1, \"<table>\", \"</table>\" ],\n\tcol: [ 2, \"<table><colgroup>\", \"</colgroup></table>\" ],\n\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t_default: [ 0, \"\", \"\" ]\n};\n\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n// Support: IE <=9 only\nif ( !support.option ) {\n\twrapMap.optgroup = wrapMap.option = [ 1, \"<select multiple='multiple'>\", \"</select>\" ];\n}\n\n\nfunction getAll( context, tag ) {\n\n\t// Support: IE <=9 - 11 only\n\t// Use typeof to avoid zero-argument method invocation on host objects (#15151)\n\tvar ret;\n\n\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\tret = context.getElementsByTagName( tag || \"*\" );\n\n\t} else if ( typeof context.querySelectorAll !== \"undefined\" ) {\n\t\tret = context.querySelectorAll( tag || \"*\" );\n\n\t} else {\n\t\tret = [];\n\t}\n\n\tif ( tag === undefined || tag && nodeName( context, tag ) ) {\n\t\treturn jQuery.merge( [ context ], ret );\n\t}\n\n\treturn ret;\n}\n\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar i = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\tdataPriv.set(\n\t\t\telems[ i ],\n\t\t\t\"globalEval\",\n\t\t\t!refElements || dataPriv.get( refElements[ i ], \"globalEval\" )\n\t\t);\n\t}\n}\n\n\nvar rhtml = /<|&#?\\w+;/;\n\nfunction buildFragment( elems, context, scripts, selection, ignored ) {\n\tvar elem, tmp, tag, wrap, attached, j,\n\t\tfragment = context.createDocumentFragment(),\n\t\tnodes = [],\n\t\ti = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\telem = elems[ i ];\n\n\t\tif ( elem || elem === 0 ) {\n\n\t\t\t// Add nodes directly\n\t\t\tif ( toType( elem ) === \"object\" ) {\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t// Convert non-html into a text node\n\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t// Convert html into DOM nodes\n\t\t\t} else {\n\t\t\t\ttmp = tmp || fragment.appendChild( context.createElement( \"div\" ) );\n\n\t\t\t\t// Deserialize a standard representation\n\t\t\t\ttag = ( rtagName.exec( elem ) || [ \"\", \"\" ] )[ 1 ].toLowerCase();\n\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\t\t\t\ttmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];\n\n\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\tj = wrap[ 0 ];\n\t\t\t\twhile ( j-- ) {\n\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t}\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t// Remember the top-level container\n\t\t\t\ttmp = fragment.firstChild;\n\n\t\t\t\t// Ensure the created nodes are orphaned (#12392)\n\t\t\t\ttmp.textContent = \"\";\n\t\t\t}\n\t\t}\n\t}\n\n\t// Remove wrapper from fragment\n\tfragment.textContent = \"\";\n\n\ti = 0;\n\twhile ( ( elem = nodes[ i++ ] ) ) {\n\n\t\t// Skip elements already in the context collection (trac-4087)\n\t\tif ( selection && jQuery.inArray( elem, selection ) > -1 ) {\n\t\t\tif ( ignored ) {\n\t\t\t\tignored.push( elem );\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tattached = isAttached( elem );\n\n\t\t// Append to fragment\n\t\ttmp = getAll( fragment.appendChild( elem ), \"script\" );\n\n\t\t// Preserve script evaluation history\n\t\tif ( attached ) {\n\t\t\tsetGlobalEval( tmp );\n\t\t}\n\n\t\t// Capture executables\n\t\tif ( scripts ) {\n\t\t\tj = 0;\n\t\t\twhile ( ( elem = tmp[ j++ ] ) ) {\n\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\tscripts.push( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn fragment;\n}\n\n\nvar\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\n// Support: IE <=9 - 11+\n// focus() and blur() are asynchronous, except when they are no-op.\n// So expect focus to be synchronous when the element is already active,\n// and blur to be synchronous when the element is not already active.\n// (focus and blur are always synchronous in other supported browsers,\n// this just defines when we can count on it).\nfunction expectSync( elem, type ) {\n\treturn ( elem === safeActiveElement() ) === ( type === \"focus\" );\n}\n\n// Support: IE <=9 only\n// Accessing document.activeElement can throw unexpectedly\n// https://bugs.jquery.com/ticket/13393\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\nfunction on( elem, types, selector, data, fn, one ) {\n\tvar origFn, type;\n\n\t// Types can be a map of types/handlers\n\tif ( typeof types === \"object\" ) {\n\n\t\t// ( types-Object, selector, data )\n\t\tif ( typeof selector !== \"string\" ) {\n\n\t\t\t// ( types-Object, data )\n\t\t\tdata = data || selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tfor ( type in types ) {\n\t\t\ton( elem, type, selector, data, types[ type ], one );\n\t\t}\n\t\treturn elem;\n\t}\n\n\tif ( data == null && fn == null ) {\n\n\t\t// ( types, fn )\n\t\tfn = selector;\n\t\tdata = selector = undefined;\n\t} else if ( fn == null ) {\n\t\tif ( typeof selector === \"string\" ) {\n\n\t\t\t// ( types, selector, fn )\n\t\t\tfn = data;\n\t\t\tdata = undefined;\n\t\t} else {\n\n\t\t\t// ( types, data, fn )\n\t\t\tfn = data;\n\t\t\tdata = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t}\n\tif ( fn === false ) {\n\t\tfn = returnFalse;\n\t} else if ( !fn ) {\n\t\treturn elem;\n\t}\n\n\tif ( one === 1 ) {\n\t\torigFn = fn;\n\t\tfn = function( event ) {\n\n\t\t\t// Can use an empty set, since event contains the info\n\t\t\tjQuery().off( event );\n\t\t\treturn origFn.apply( this, arguments );\n\t\t};\n\n\t\t// Use same guid so caller can remove using origFn\n\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t}\n\treturn elem.each( function() {\n\t\tjQuery.event.add( this, types, fn, data, selector );\n\t} );\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\n\t\tvar handleObjIn, eventHandle, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.get( elem );\n\n\t\t// Only attach events to objects that accept data\n\t\tif ( !acceptData( elem ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Ensure that invalid selectors throw exceptions at attach time\n\t\t// Evaluate against documentElement in case elem is a non-element node (e.g., document)\n\t\tif ( selector ) {\n\t\t\tjQuery.find.matchesSelector( documentElement, selector );\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !( events = elemData.events ) ) {\n\t\t\tevents = elemData.events = Object.create( null );\n\t\t}\n\t\tif ( !( eventHandle = elemData.handle ) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" && jQuery.event.triggered !== e.type ?\n\t\t\t\t\tjQuery.event.dispatch.apply( elem, arguments ) : undefined;\n\t\t\t};\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend( {\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join( \".\" )\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !( handlers = events[ type ] ) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener if the special events handler returns false\n\t\t\t\tif ( !special.setup ||\n\t\t\t\t\tspecial.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\n\t\tvar j, origCount, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.hasData( elem ) && dataPriv.get( elem );\n\n\t\tif ( !elemData || !( events = elemData.events ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[ 2 ] &&\n\t\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector ||\n\t\t\t\t\t\tselector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown ||\n\t\t\t\t\tspecial.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove data and the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdataPriv.remove( elem, \"handle events\" );\n\t\t}\n\t},\n\n\tdispatch: function( nativeEvent ) {\n\n\t\tvar i, j, ret, matched, handleObj, handlerQueue,\n\t\t\targs = new Array( arguments.length ),\n\n\t\t\t// Make a writable jQuery.Event from the native event object\n\t\t\tevent = jQuery.event.fix( nativeEvent ),\n\n\t\t\thandlers = (\n\t\t\t\t\tdataPriv.get( this, \"events\" ) || Object.create( null )\n\t\t\t\t)[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[ 0 ] = event;\n\n\t\tfor ( i = 1; i < arguments.length; i++ ) {\n\t\t\targs[ i ] = arguments[ i ];\n\t\t}\n\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( ( handleObj = matched.handlers[ j++ ] ) &&\n\t\t\t\t!event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// If the event is namespaced, then each handler is only invoked if it is\n\t\t\t\t// specially universal or its namespaces are a superset of the event's.\n\t\t\t\tif ( !event.rnamespace || handleObj.namespace === false ||\n\t\t\t\t\tevent.rnamespace.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||\n\t\t\t\t\t\thandleObj.handler ).apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( ( event.result = ret ) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar i, handleObj, sel, matchedHandlers, matchedSelectors,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\tif ( delegateCount &&\n\n\t\t\t// Support: IE <=9\n\t\t\t// Black-hole SVG <use> instance trees (trac-13180)\n\t\t\tcur.nodeType &&\n\n\t\t\t// Support: Firefox <=42\n\t\t\t// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)\n\t\t\t// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click\n\t\t\t// Support: IE 11 only\n\t\t\t// ...but not arrow key \"clicks\" of radio inputs, which can have `button` -1 (gh-2343)\n\t\t\t!( event.type === \"click\" && event.button >= 1 ) ) {\n\n\t\t\tfor ( ; cur !== this; cur = cur.parentNode || this ) {\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && !( event.type === \"click\" && cur.disabled === true ) ) {\n\t\t\t\t\tmatchedHandlers = [];\n\t\t\t\t\tmatchedSelectors = {};\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatchedSelectors[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) > -1 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] ) {\n\t\t\t\t\t\t\tmatchedHandlers.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matchedHandlers.length ) {\n\t\t\t\t\t\thandlerQueue.push( { elem: cur, handlers: matchedHandlers } );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tcur = this;\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\taddProp: function( name, hook ) {\n\t\tObject.defineProperty( jQuery.Event.prototype, name, {\n\t\t\tenumerable: true,\n\t\t\tconfigurable: true,\n\n\t\t\tget: isFunction( hook ) ?\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\t\treturn hook( this.originalEvent );\n\t\t\t\t\t}\n\t\t\t\t} :\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\t\treturn this.originalEvent[ name ];\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\tset: function( value ) {\n\t\t\t\tObject.defineProperty( this, name, {\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tconfigurable: true,\n\t\t\t\t\twritable: true,\n\t\t\t\t\tvalue: value\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\t},\n\n\tfix: function( originalEvent ) {\n\t\treturn originalEvent[ jQuery.expando ] ?\n\t\t\toriginalEvent :\n\t\t\tnew jQuery.Event( originalEvent );\n\t},\n\n\tspecial: {\n\t\tload: {\n\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tclick: {\n\n\t\t\t// Utilize native event to ensure correct state for checkable inputs\n\t\t\tsetup: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Claim the first handler\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\t// dataPriv.set( el, \"click\", ... )\n\t\t\t\t\tleverageNative( el, \"click\", returnTrue );\n\t\t\t\t}\n\n\t\t\t\t// Return false to allow normal processing in the caller\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\ttrigger: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Force setup before triggering a click\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\tleverageNative( el, \"click\" );\n\t\t\t\t}\n\n\t\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\t\treturn true;\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, suppress native .click() on links\n\t\t\t// Also prevent it if we're currently inside a leveraged native-event stack\n\t\t\t_default: function( event ) {\n\t\t\t\tvar target = event.target;\n\t\t\t\treturn rcheckableType.test( target.type ) &&\n\t\t\t\t\ttarget.click && nodeName( target, \"input\" ) &&\n\t\t\t\t\tdataPriv.get( target, \"click\" ) ||\n\t\t\t\t\tnodeName( target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Ensure the presence of an event listener that handles manually-triggered\n// synthetic events by interrupting progress until reinvoked in response to\n// *native* events that it fires directly, ensuring that state changes have\n// already occurred before other listeners are invoked.\nfunction leverageNative( el, type, expectSync ) {\n\n\t// Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add\n\tif ( !expectSync ) {\n\t\tif ( dataPriv.get( el, type ) === undefined ) {\n\t\t\tjQuery.event.add( el, type, returnTrue );\n\t\t}\n\t\treturn;\n\t}\n\n\t// Register the controller as a special universal handler for all event namespaces\n\tdataPriv.set( el, type, false );\n\tjQuery.event.add( el, type, {\n\t\tnamespace: false,\n\t\thandler: function( event ) {\n\t\t\tvar notAsync, result,\n\t\t\t\tsaved = dataPriv.get( this, type );\n\n\t\t\tif ( ( event.isTrigger & 1 ) && this[ type ] ) {\n\n\t\t\t\t// Interrupt processing of the outer synthetic .trigger()ed event\n\t\t\t\t// Saved data should be false in such cases, but might be a leftover capture object\n\t\t\t\t// from an async native handler (gh-4350)\n\t\t\t\tif ( !saved.length ) {\n\n\t\t\t\t\t// Store arguments for use when handling the inner native event\n\t\t\t\t\t// There will always be at least one argument (an event object), so this array\n\t\t\t\t\t// will not be confused with a leftover capture object.\n\t\t\t\t\tsaved = slice.call( arguments );\n\t\t\t\t\tdataPriv.set( this, type, saved );\n\n\t\t\t\t\t// Trigger the native event and capture its result\n\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t// focus() and blur() are asynchronous\n\t\t\t\t\tnotAsync = expectSync( this, type );\n\t\t\t\t\tthis[ type ]();\n\t\t\t\t\tresult = dataPriv.get( this, type );\n\t\t\t\t\tif ( saved !== result || notAsync ) {\n\t\t\t\t\t\tdataPriv.set( this, type, false );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = {};\n\t\t\t\t\t}\n\t\t\t\t\tif ( saved !== result ) {\n\n\t\t\t\t\t\t// Cancel the outer synthetic event\n\t\t\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\treturn result.value;\n\t\t\t\t\t}\n\n\t\t\t\t// If this is an inner synthetic event for an event with a bubbling surrogate\n\t\t\t\t// (focus or blur), assume that the surrogate already propagated from triggering the\n\t\t\t\t// native event and prevent that from happening again here.\n\t\t\t\t// This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the\n\t\t\t\t// bubbling surrogate propagates *after* the non-bubbling base), but that seems\n\t\t\t\t// less bad than duplication.\n\t\t\t\t} else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {\n\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t}\n\n\t\t\t// If this is a native event triggered above, everything is now in order\n\t\t\t// Fire an inner synthetic event with the original arguments\n\t\t\t} else if ( saved.length ) {\n\n\t\t\t\t// ...and capture the result\n\t\t\t\tdataPriv.set( this, type, {\n\t\t\t\t\tvalue: jQuery.event.trigger(\n\n\t\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t\t// Extend with the prototype to reset the above stopImmediatePropagation()\n\t\t\t\t\t\tjQuery.extend( saved[ 0 ], jQuery.Event.prototype ),\n\t\t\t\t\t\tsaved.slice( 1 ),\n\t\t\t\t\t\tthis\n\t\t\t\t\t)\n\t\t\t\t} );\n\n\t\t\t\t// Abort handling of the native event\n\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t}\n\t\t}\n\t} );\n}\n\njQuery.removeEvent = function( elem, type, handle ) {\n\n\t// This \"if\" is needed for plain objects\n\tif ( elem.removeEventListener ) {\n\t\telem.removeEventListener( type, handle );\n\t}\n};\n\njQuery.Event = function( src, props ) {\n\n\t// Allow instantiation without the 'new' keyword\n\tif ( !( this instanceof jQuery.Event ) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\n\t\t\t\t// Support: Android <=2.3 only\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t\t// Create target properties\n\t\t// Support: Safari <=6 - 7 only\n\t\t// Target should not be a text node (#504, #13143)\n\t\tthis.target = ( src.target && src.target.nodeType === 3 ) ?\n\t\t\tsrc.target.parentNode :\n\t\t\tsrc.target;\n\n\t\tthis.currentTarget = src.currentTarget;\n\t\tthis.relatedTarget = src.relatedTarget;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || Date.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tconstructor: jQuery.Event,\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\tisSimulated: false,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.preventDefault();\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopPropagation();\n\t\t}\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Includes all common event props including KeyEvent and MouseEvent specific props\njQuery.each( {\n\taltKey: true,\n\tbubbles: true,\n\tcancelable: true,\n\tchangedTouches: true,\n\tctrlKey: true,\n\tdetail: true,\n\teventPhase: true,\n\tmetaKey: true,\n\tpageX: true,\n\tpageY: true,\n\tshiftKey: true,\n\tview: true,\n\t\"char\": true,\n\tcode: true,\n\tcharCode: true,\n\tkey: true,\n\tkeyCode: true,\n\tbutton: true,\n\tbuttons: true,\n\tclientX: true,\n\tclientY: true,\n\toffsetX: true,\n\toffsetY: true,\n\tpointerId: true,\n\tpointerType: true,\n\tscreenX: true,\n\tscreenY: true,\n\ttargetTouches: true,\n\ttoElement: true,\n\ttouches: true,\n\n\twhich: function( event ) {\n\t\tvar button = event.button;\n\n\t\t// Add which for key events\n\t\tif ( event.which == null && rkeyEvent.test( event.type ) ) {\n\t\t\treturn event.charCode != null ? event.charCode : event.keyCode;\n\t\t}\n\n\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\tif ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) {\n\t\t\tif ( button & 1 ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\tif ( button & 2 ) {\n\t\t\t\treturn 3;\n\t\t\t}\n\n\t\t\tif ( button & 4 ) {\n\t\t\t\treturn 2;\n\t\t\t}\n\n\t\t\treturn 0;\n\t\t}\n\n\t\treturn event.which;\n\t}\n}, jQuery.event.addProp );\n\njQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( type, delegateType ) {\n\tjQuery.event.special[ type ] = {\n\n\t\t// Utilize native event if possible so blur/focus sequence is correct\n\t\tsetup: function() {\n\n\t\t\t// Claim the first handler\n\t\t\t// dataPriv.set( this, \"focus\", ... )\n\t\t\t// dataPriv.set( this, \"blur\", ... )\n\t\t\tleverageNative( this, type, expectSync );\n\n\t\t\t// Return false to allow normal processing in the caller\n\t\t\treturn false;\n\t\t},\n\t\ttrigger: function() {\n\n\t\t\t// Force setup before trigger\n\t\t\tleverageNative( this, type );\n\n\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\treturn true;\n\t\t},\n\n\t\tdelegateType: delegateType\n\t};\n} );\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\n// so that event delegation works in jQuery.\n// Do the same for pointerenter/pointerleave and pointerover/pointerout\n//\n// Support: Safari 7 only\n// Safari sends mouseenter too often; see:\n// https://bugs.chromium.org/p/chromium/issues/detail?id=470258\n// for the description of the bug (it existed in older Chrome versions as well).\njQuery.each( {\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mouseenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n} );\n\njQuery.fn.extend( {\n\n\ton: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn );\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ?\n\t\t\t\t\thandleObj.origType + \".\" + handleObj.namespace :\n\t\t\t\t\thandleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t} );\n\t}\n} );\n\n\nvar\n\n\t// Support: IE <=10 - 11, Edge 12 - 13 only\n\t// In IE/Edge using regex groups here causes severe slowdowns.\n\t// See https://connect.microsoft.com/IE/feedback/details/1736512/\n\trnoInnerhtml = /<script|<style|<link/i,\n\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g;\n\n// Prefer a tbody over its parent table for containing new rows\nfunction manipulationTarget( elem, content ) {\n\tif ( nodeName( elem, \"table\" ) &&\n\t\tnodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ) {\n\n\t\treturn jQuery( elem ).children( \"tbody\" )[ 0 ] || elem;\n\t}\n\n\treturn elem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = ( elem.getAttribute( \"type\" ) !== null ) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tif ( ( elem.type || \"\" ).slice( 0, 5 ) === \"true/\" ) {\n\t\telem.type = elem.type.slice( 5 );\n\t} else {\n\t\telem.removeAttribute( \"type\" );\n\t}\n\n\treturn elem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\tvar i, l, type, pdataOld, udataOld, udataCur, events;\n\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\t// 1. Copy private data: events, handlers, etc.\n\tif ( dataPriv.hasData( src ) ) {\n\t\tpdataOld = dataPriv.get( src );\n\t\tevents = pdataOld.events;\n\n\t\tif ( events ) {\n\t\t\tdataPriv.remove( dest, \"handle events\" );\n\n\t\t\tfor ( type in events ) {\n\t\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// 2. Copy user data\n\tif ( dataUser.hasData( src ) ) {\n\t\tudataOld = dataUser.access( src );\n\t\tudataCur = jQuery.extend( {}, udataOld );\n\n\t\tdataUser.set( dest, udataCur );\n\t}\n}\n\n// Fix IE bugs, see support tests\nfunction fixInput( src, dest ) {\n\tvar nodeName = dest.nodeName.toLowerCase();\n\n\t// Fails to persist the checked state of a cloned checkbox or radio button.\n\tif ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\tdest.checked = src.checked;\n\n\t// Fails to return the selected option to the default selected state when cloning options\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\nfunction domManip( collection, args, callback, ignored ) {\n\n\t// Flatten any nested arrays\n\targs = flat( args );\n\n\tvar fragment, first, scripts, hasScripts, node, doc,\n\t\ti = 0,\n\t\tl = collection.length,\n\t\tiNoClone = l - 1,\n\t\tvalue = args[ 0 ],\n\t\tvalueIsFunction = isFunction( value );\n\n\t// We can't cloneNode fragments that contain checked, in WebKit\n\tif ( valueIsFunction ||\n\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\treturn collection.each( function( index ) {\n\t\t\tvar self = collection.eq( index );\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\targs[ 0 ] = value.call( this, index, self.html() );\n\t\t\t}\n\t\t\tdomManip( self, args, callback, ignored );\n\t\t} );\n\t}\n\n\tif ( l ) {\n\t\tfragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );\n\t\tfirst = fragment.firstChild;\n\n\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\tfragment = first;\n\t\t}\n\n\t\t// Require either new content or an interest in ignored elements to invoke the callback\n\t\tif ( first || ignored ) {\n\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\thasScripts = scripts.length;\n\n\t\t\t// Use the original fragment for the last item\n\t\t\t// instead of the first because it can end up\n\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tnode = fragment;\n\n\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\tif ( hasScripts ) {\n\n\t\t\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcallback.call( collection[ i ], node, i );\n\t\t\t}\n\n\t\t\tif ( hasScripts ) {\n\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t// Reenable scripts\n\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t!dataPriv.access( node, \"globalEval\" ) &&\n\t\t\t\t\t\tjQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\tif ( node.src && ( node.type || \"\" ).toLowerCase()  !== \"module\" ) {\n\n\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\tif ( jQuery._evalUrl && !node.noModule ) {\n\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src, {\n\t\t\t\t\t\t\t\t\tnonce: node.nonce || node.getAttribute( \"nonce\" )\n\t\t\t\t\t\t\t\t}, doc );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tDOMEval( node.textContent.replace( rcleanScript, \"\" ), node, doc );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn collection;\n}\n\nfunction remove( elem, selector, keepData ) {\n\tvar node,\n\t\tnodes = selector ? jQuery.filter( selector, elem ) : elem,\n\t\ti = 0;\n\n\tfor ( ; ( node = nodes[ i ] ) != null; i++ ) {\n\t\tif ( !keepData && node.nodeType === 1 ) {\n\t\t\tjQuery.cleanData( getAll( node ) );\n\t\t}\n\n\t\tif ( node.parentNode ) {\n\t\t\tif ( keepData && isAttached( node ) ) {\n\t\t\t\tsetGlobalEval( getAll( node, \"script\" ) );\n\t\t\t}\n\t\t\tnode.parentNode.removeChild( node );\n\t\t}\n\t}\n\n\treturn elem;\n}\n\njQuery.extend( {\n\thtmlPrefilter: function( html ) {\n\t\treturn html;\n\t},\n\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar i, l, srcElements, destElements,\n\t\t\tclone = elem.cloneNode( true ),\n\t\t\tinPage = isAttached( elem );\n\n\t\t// Fix IE cloning issues\n\t\tif ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&\n\t\t\t\t!jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\tfixInput( srcElements[ i ], destElements[ i ] );\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\t\tcloneCopyEvent( srcElements[ i ], destElements[ i ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tcleanData: function( elems ) {\n\t\tvar data, elem, type,\n\t\t\tspecial = jQuery.event.special,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {\n\t\t\tif ( acceptData( elem ) ) {\n\t\t\t\tif ( ( data = elem[ dataPriv.expando ] ) ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataPriv.expando ] = undefined;\n\t\t\t\t}\n\t\t\t\tif ( elem[ dataUser.expando ] ) {\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataUser.expando ] = undefined;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n} );\n\njQuery.fn.extend( {\n\tdetach: function( selector ) {\n\t\treturn remove( this, selector, true );\n\t},\n\n\tremove: function( selector ) {\n\t\treturn remove( this, selector );\n\t},\n\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().each( function() {\n\t\t\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\t\t\tthis.textContent = value;\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t} );\n\t},\n\n\tprepend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t} );\n\t},\n\n\tbefore: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t} );\n\t},\n\n\tafter: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t} );\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = this[ i ] ) != null; i++ ) {\n\t\t\tif ( elem.nodeType === 1 ) {\n\n\t\t\t\t// Prevent memory leaks\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\n\t\t\t\t// Remove any remaining nodes\n\t\t\t\telem.textContent = \"\";\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t} );\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined && elem.nodeType === 1 ) {\n\t\t\t\treturn elem.innerHTML;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t!wrapMap[ ( rtagName.exec( value ) || [ \"\", \"\" ] )[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = jQuery.htmlPrefilter( value );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\t\telem = this[ i ] || {};\n\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch ( e ) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar ignored = [];\n\n\t\t// Make the changes, replacing each non-ignored context element with the new content\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tvar parent = this.parentNode;\n\n\t\t\tif ( jQuery.inArray( this, ignored ) < 0 ) {\n\t\t\t\tjQuery.cleanData( getAll( this ) );\n\t\t\t\tif ( parent ) {\n\t\t\t\t\tparent.replaceChild( elem, this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Force callback invocation\n\t\t}, ignored );\n\t}\n} );\n\njQuery.each( {\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1,\n\t\t\ti = 0;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone( true );\n\t\t\tjQuery( insert[ i ] )[ original ]( elems );\n\n\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t// .get() because push.apply(_, arraylike) throws on ancient WebKit\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n} );\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\nvar getStyles = function( elem ) {\n\n\t\t// Support: IE <=11 only, Firefox <=30 (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tvar view = elem.ownerDocument.defaultView;\n\n\t\tif ( !view || !view.opener ) {\n\t\t\tview = window;\n\t\t}\n\n\t\treturn view.getComputedStyle( elem );\n\t};\n\nvar swap = function( elem, options, callback ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.call( elem );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar rboxStyle = new RegExp( cssExpand.join( \"|\" ), \"i\" );\n\n\n\n( function() {\n\n\t// Executing both pixelPosition & boxSizingReliable tests require only one layout\n\t// so they're executed at the same time to save the second computation.\n\tfunction computeStyleTests() {\n\n\t\t// This is a singleton, we need to execute it only once\n\t\tif ( !div ) {\n\t\t\treturn;\n\t\t}\n\n\t\tcontainer.style.cssText = \"position:absolute;left:-11111px;width:60px;\" +\n\t\t\t\"margin-top:1px;padding:0;border:0\";\n\t\tdiv.style.cssText =\n\t\t\t\"position:relative;display:block;box-sizing:border-box;overflow:scroll;\" +\n\t\t\t\"margin:auto;border:1px;padding:1px;\" +\n\t\t\t\"width:60%;top:1%\";\n\t\tdocumentElement.appendChild( container ).appendChild( div );\n\n\t\tvar divStyle = window.getComputedStyle( div );\n\t\tpixelPositionVal = divStyle.top !== \"1%\";\n\n\t\t// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44\n\t\treliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;\n\n\t\t// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3\n\t\t// Some styles come back with percentage values, even though they shouldn't\n\t\tdiv.style.right = \"60%\";\n\t\tpixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;\n\n\t\t// Support: IE 9 - 11 only\n\t\t// Detect misreporting of content dimensions for box-sizing:border-box elements\n\t\tboxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;\n\n\t\t// Support: IE 9 only\n\t\t// Detect overflow:scroll screwiness (gh-3699)\n\t\t// Support: Chrome <=64\n\t\t// Don't get tricked when zoom affects offsetWidth (gh-4029)\n\t\tdiv.style.position = \"absolute\";\n\t\tscrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12;\n\n\t\tdocumentElement.removeChild( container );\n\n\t\t// Nullify the div so it wouldn't be stored in the memory and\n\t\t// it will also be a sign that checks already performed\n\t\tdiv = null;\n\t}\n\n\tfunction roundPixelMeasures( measure ) {\n\t\treturn Math.round( parseFloat( measure ) );\n\t}\n\n\tvar pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,\n\t\treliableTrDimensionsVal, reliableMarginLeftVal,\n\t\tcontainer = document.createElement( \"div\" ),\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !div.style ) {\n\t\treturn;\n\t}\n\n\t// Support: IE <=9 - 11 only\n\t// Style of cloned element affects source element cloned (#8908)\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\tjQuery.extend( support, {\n\t\tboxSizingReliable: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\t\tpixelBoxStyles: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelBoxStylesVal;\n\t\t},\n\t\tpixelPosition: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelPositionVal;\n\t\t},\n\t\treliableMarginLeft: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn reliableMarginLeftVal;\n\t\t},\n\t\tscrollboxSize: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn scrollboxSizeVal;\n\t\t},\n\n\t\t// Support: IE 9 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Behavior in IE 9 is more subtle than in newer versions & it passes\n\t\t// some versions of this test; make sure not to make it pass there!\n\t\treliableTrDimensions: function() {\n\t\t\tvar table, tr, trChild, trStyle;\n\t\t\tif ( reliableTrDimensionsVal == null ) {\n\t\t\t\ttable = document.createElement( \"table\" );\n\t\t\t\ttr = document.createElement( \"tr\" );\n\t\t\t\ttrChild = document.createElement( \"div\" );\n\n\t\t\t\ttable.style.cssText = \"position:absolute;left:-11111px\";\n\t\t\t\ttr.style.height = \"1px\";\n\t\t\t\ttrChild.style.height = \"9px\";\n\n\t\t\t\tdocumentElement\n\t\t\t\t\t.appendChild( table )\n\t\t\t\t\t.appendChild( tr )\n\t\t\t\t\t.appendChild( trChild );\n\n\t\t\t\ttrStyle = window.getComputedStyle( tr );\n\t\t\t\treliableTrDimensionsVal = parseInt( trStyle.height ) > 3;\n\n\t\t\t\tdocumentElement.removeChild( table );\n\t\t\t}\n\t\t\treturn reliableTrDimensionsVal;\n\t\t}\n\t} );\n} )();\n\n\nfunction curCSS( elem, name, computed ) {\n\tvar width, minWidth, maxWidth, ret,\n\n\t\t// Support: Firefox 51+\n\t\t// Retrieving style before computed somehow\n\t\t// fixes an issue with getting wrong values\n\t\t// on detached elements\n\t\tstyle = elem.style;\n\n\tcomputed = computed || getStyles( elem );\n\n\t// getPropertyValue is needed for:\n\t//   .css('filter') (IE 9 only, #12537)\n\t//   .css('--customProperty) (#3144)\n\tif ( computed ) {\n\t\tret = computed.getPropertyValue( name ) || computed[ name ];\n\n\t\tif ( ret === \"\" && !isAttached( elem ) ) {\n\t\t\tret = jQuery.style( elem, name );\n\t\t}\n\n\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t// Android Browser returns percentage for some values,\n\t\t// but width seems to be reliably pixels.\n\t\t// This is against the CSSOM draft spec:\n\t\t// https://drafts.csswg.org/cssom/#resolved-values\n\t\tif ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\twidth = style.width;\n\t\t\tminWidth = style.minWidth;\n\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\tret = computed.width;\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.width = width;\n\t\t\tstyle.minWidth = minWidth;\n\t\t\tstyle.maxWidth = maxWidth;\n\t\t}\n\t}\n\n\treturn ret !== undefined ?\n\n\t\t// Support: IE <=9 - 11 only\n\t\t// IE returns zIndex value as an integer.\n\t\tret + \"\" :\n\t\tret;\n}\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tif ( conditionFn() ) {\n\n\t\t\t\t// Hook not needed (or it's not possible to use it due\n\t\t\t\t// to missing dependency), remove it.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\t\t\treturn ( this.get = hookFn ).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\nvar cssPrefixes = [ \"Webkit\", \"Moz\", \"ms\" ],\n\temptyStyle = document.createElement( \"div\" ).style,\n\tvendorProps = {};\n\n// Return a vendor-prefixed property or undefined\nfunction vendorPropName( name ) {\n\n\t// Check for vendor prefixed names\n\tvar capName = name[ 0 ].toUpperCase() + name.slice( 1 ),\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in emptyStyle ) {\n\t\t\treturn name;\n\t\t}\n\t}\n}\n\n// Return a potentially-mapped jQuery.cssProps or vendor prefixed property\nfunction finalPropName( name ) {\n\tvar final = jQuery.cssProps[ name ] || vendorProps[ name ];\n\n\tif ( final ) {\n\t\treturn final;\n\t}\n\tif ( name in emptyStyle ) {\n\t\treturn name;\n\t}\n\treturn vendorProps[ name ] = vendorPropName( name ) || name;\n}\n\n\nvar\n\n\t// Swappable if display is none or starts with table\n\t// except \"table\", \"table-cell\", or \"table-caption\"\n\t// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trcustomProp = /^--/,\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t};\n\nfunction setPositiveNumber( _elem, value, subtract ) {\n\n\t// Any relative (+/-) values have already been\n\t// normalized at this point\n\tvar matches = rcssNum.exec( value );\n\treturn matches ?\n\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {\n\tvar i = dimension === \"width\" ? 1 : 0,\n\t\textra = 0,\n\t\tdelta = 0;\n\n\t// Adjustment may not be necessary\n\tif ( box === ( isBorderBox ? \"border\" : \"content\" ) ) {\n\t\treturn 0;\n\t}\n\n\tfor ( ; i < 4; i += 2 ) {\n\n\t\t// Both box models exclude margin\n\t\tif ( box === \"margin\" ) {\n\t\t\tdelta += jQuery.css( elem, box + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\t// If we get here with a content-box, we're seeking \"padding\" or \"border\" or \"margin\"\n\t\tif ( !isBorderBox ) {\n\n\t\t\t// Add padding\n\t\t\tdelta += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// For \"border\" or \"margin\", add border\n\t\t\tif ( box !== \"padding\" ) {\n\t\t\t\tdelta += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\n\t\t\t// But still keep track of it otherwise\n\t\t\t} else {\n\t\t\t\textra += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\n\t\t// If we get here with a border-box (content + padding + border), we're seeking \"content\" or\n\t\t// \"padding\" or \"margin\"\n\t\t} else {\n\n\t\t\t// For \"content\", subtract padding\n\t\t\tif ( box === \"content\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// For \"content\" or \"padding\", subtract border\n\t\t\tif ( box !== \"margin\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Account for positive content-box scroll gutter when requested by providing computedVal\n\tif ( !isBorderBox && computedVal >= 0 ) {\n\n\t\t// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border\n\t\t// Assuming integer scroll gutter, subtract the rest and round down\n\t\tdelta += Math.max( 0, Math.ceil(\n\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\tcomputedVal -\n\t\t\tdelta -\n\t\t\textra -\n\t\t\t0.5\n\n\t\t// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter\n\t\t// Use an explicit zero to avoid NaN (gh-3964)\n\t\t) ) || 0;\n\t}\n\n\treturn delta;\n}\n\nfunction getWidthOrHeight( elem, dimension, extra ) {\n\n\t// Start with computed style\n\tvar styles = getStyles( elem ),\n\n\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).\n\t\t// Fake content-box until we know it's needed to know the true value.\n\t\tboxSizingNeeded = !support.boxSizingReliable() || extra,\n\t\tisBorderBox = boxSizingNeeded &&\n\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\tvalueIsBorderBox = isBorderBox,\n\n\t\tval = curCSS( elem, dimension, styles ),\n\t\toffsetProp = \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 );\n\n\t// Support: Firefox <=54\n\t// Return a confounding non-pixel value or feign ignorance, as appropriate.\n\tif ( rnumnonpx.test( val ) ) {\n\t\tif ( !extra ) {\n\t\t\treturn val;\n\t\t}\n\t\tval = \"auto\";\n\t}\n\n\n\t// Support: IE 9 - 11 only\n\t// Use offsetWidth/offsetHeight for when box sizing is unreliable.\n\t// In those cases, the computed value can be trusted to be border-box.\n\tif ( ( !support.boxSizingReliable() && isBorderBox ||\n\n\t\t// Support: IE 10 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Interestingly, in some cases IE 9 doesn't suffer from this issue.\n\t\t!support.reliableTrDimensions() && nodeName( elem, \"tr\" ) ||\n\n\t\t// Fall back to offsetWidth/offsetHeight when value is \"auto\"\n\t\t// This happens for inline elements with no explicit setting (gh-3571)\n\t\tval === \"auto\" ||\n\n\t\t// Support: Android <=4.1 - 4.3 only\n\t\t// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)\n\t\t!parseFloat( val ) && jQuery.css( elem, \"display\", false, styles ) === \"inline\" ) &&\n\n\t\t// Make sure the element is visible & connected\n\t\telem.getClientRects().length ) {\n\n\t\tisBorderBox = jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t\t// Where available, offsetWidth/offsetHeight approximate border box dimensions.\n\t\t// Where not available (e.g., SVG), assume unreliable box-sizing and interpret the\n\t\t// retrieved value as a content box dimension.\n\t\tvalueIsBorderBox = offsetProp in elem;\n\t\tif ( valueIsBorderBox ) {\n\t\t\tval = elem[ offsetProp ];\n\t\t}\n\t}\n\n\t// Normalize \"\" and auto\n\tval = parseFloat( val ) || 0;\n\n\t// Adjust for the element's box model\n\treturn ( val +\n\t\tboxModelAdjustment(\n\t\t\telem,\n\t\t\tdimension,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles,\n\n\t\t\t// Provide the current computed size to request scroll gutter calculation (gh-3589)\n\t\t\tval\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend( {\n\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"animationIterationCount\": true,\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"gridArea\": true,\n\t\t\"gridColumn\": true,\n\t\t\"gridColumnEnd\": true,\n\t\t\"gridColumnStart\": true,\n\t\t\"gridRow\": true,\n\t\t\"gridRowEnd\": true,\n\t\t\"gridRowStart\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name ),\n\t\t\tstyle = elem.style;\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to query the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Gets hook for the prefixed version, then unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// Convert \"+=\" or \"-=\" to relative numbers (#7345)\n\t\t\tif ( type === \"string\" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {\n\t\t\t\tvalue = adjustCSS( elem, name, ret );\n\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set (#7116)\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add the unit (except for certain CSS properties)\n\t\t\t// The isCustomProp check can be removed in jQuery 4.0 when we only auto-append\n\t\t\t// \"px\" to a few hardcoded values.\n\t\t\tif ( type === \"number\" && !isCustomProp ) {\n\t\t\t\tvalue += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? \"\" : \"px\" );\n\t\t\t}\n\n\t\t\t// background-* props affect original clone's values\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf( \"background\" ) === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !( \"set\" in hooks ) ||\n\t\t\t\t( value = hooks.set( elem, value, extra ) ) !== undefined ) {\n\n\t\t\t\tif ( isCustomProp ) {\n\t\t\t\t\tstyle.setProperty( name, value );\n\t\t\t\t} else {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else {\n\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks &&\n\t\t\t\t( ret = hooks.get( elem, false, extra ) ) !== undefined ) {\n\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar val, num, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name );\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to modify the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Try prefixed name followed by the unprefixed name\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t// Convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Make numeric if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || isFinite( num ) ? num || 0 : val;\n\t\t}\n\n\t\treturn val;\n\t}\n} );\n\njQuery.each( [ \"height\", \"width\" ], function( _i, dimension ) {\n\tjQuery.cssHooks[ dimension ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\n\t\t\t\t// Certain elements can have dimension info if we invisibly show them\n\t\t\t\t// but it must have a current display style that would benefit\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) &&\n\n\t\t\t\t\t// Support: Safari 8+\n\t\t\t\t\t// Table columns in Safari have non-zero offsetWidth & zero\n\t\t\t\t\t// getBoundingClientRect().width unless display is changed.\n\t\t\t\t\t// Support: IE <=11 only\n\t\t\t\t\t// Running getBoundingClientRect on a disconnected node\n\t\t\t\t\t// in IE throws an error.\n\t\t\t\t\t( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?\n\t\t\t\t\t\tswap( elem, cssShow, function() {\n\t\t\t\t\t\t\treturn getWidthOrHeight( elem, dimension, extra );\n\t\t\t\t\t\t} ) :\n\t\t\t\t\t\tgetWidthOrHeight( elem, dimension, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar matches,\n\t\t\t\tstyles = getStyles( elem ),\n\n\t\t\t\t// Only read styles.position if the test has a chance to fail\n\t\t\t\t// to avoid forcing a reflow.\n\t\t\t\tscrollboxSizeBuggy = !support.scrollboxSize() &&\n\t\t\t\t\tstyles.position === \"absolute\",\n\n\t\t\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)\n\t\t\t\tboxSizingNeeded = scrollboxSizeBuggy || extra,\n\t\t\t\tisBorderBox = boxSizingNeeded &&\n\t\t\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\tsubtract = extra ?\n\t\t\t\t\tboxModelAdjustment(\n\t\t\t\t\t\telem,\n\t\t\t\t\t\tdimension,\n\t\t\t\t\t\textra,\n\t\t\t\t\t\tisBorderBox,\n\t\t\t\t\t\tstyles\n\t\t\t\t\t) :\n\t\t\t\t\t0;\n\n\t\t\t// Account for unreliable border-box dimensions by comparing offset* to computed and\n\t\t\t// faking a content-box to get border and padding (gh-3699)\n\t\t\tif ( isBorderBox && scrollboxSizeBuggy ) {\n\t\t\t\tsubtract -= Math.ceil(\n\t\t\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\t\t\tparseFloat( styles[ dimension ] ) -\n\t\t\t\t\tboxModelAdjustment( elem, dimension, \"border\", false, styles ) -\n\t\t\t\t\t0.5\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Convert to pixels if value adjustment is needed\n\t\t\tif ( subtract && ( matches = rcssNum.exec( value ) ) &&\n\t\t\t\t( matches[ 3 ] || \"px\" ) !== \"px\" ) {\n\n\t\t\t\telem.style[ dimension ] = value;\n\t\t\t\tvalue = jQuery.css( elem, dimension );\n\t\t\t}\n\n\t\t\treturn setPositiveNumber( elem, value, subtract );\n\t\t}\n\t};\n} );\n\njQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn ( parseFloat( curCSS( elem, \"marginLeft\" ) ) ||\n\t\t\t\telem.getBoundingClientRect().left -\n\t\t\t\t\tswap( elem, { marginLeft: 0 }, function() {\n\t\t\t\t\t\treturn elem.getBoundingClientRect().left;\n\t\t\t\t\t} )\n\t\t\t\t) + \"px\";\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each( {\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// Assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split( \" \" ) : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( prefix !== \"margin\" ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n} );\n\njQuery.fn.extend( {\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( Array.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t}\n} );\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || jQuery.easing._default;\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\t// Use a property on the element directly when it is not a DOM element,\n\t\t\t// or when there is no matching style property that exists.\n\t\t\tif ( tween.elem.nodeType !== 1 ||\n\t\t\t\ttween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// Passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails.\n\t\t\t// Simple values such as \"10px\" are parsed to Float;\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as-is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\n\t\t\t// Use step hook for back compat.\n\t\t\t// Use cssHook if its there.\n\t\t\t// Use .style if available and use plain properties where available.\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.nodeType === 1 && (\n\t\t\t\t\tjQuery.cssHooks[ tween.prop ] ||\n\t\t\t\t\ttween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9 only\n// Panic based approach to setting things on disconnected nodes\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t},\n\t_default: \"swing\"\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, inProgress,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trrun = /queueHooks$/;\n\nfunction schedule() {\n\tif ( inProgress ) {\n\t\tif ( document.hidden === false && window.requestAnimationFrame ) {\n\t\t\twindow.requestAnimationFrame( schedule );\n\t\t} else {\n\t\t\twindow.setTimeout( schedule, jQuery.fx.interval );\n\t\t}\n\n\t\tjQuery.fx.tick();\n\t}\n}\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\twindow.setTimeout( function() {\n\t\tfxNow = undefined;\n\t} );\n\treturn ( fxNow = Date.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\ti = 0,\n\t\tattrs = { height: type };\n\n\t// If we include width, step value is 1 to do all cssExpand values,\n\t// otherwise step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {\n\n\t\t\t// We're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\tvar prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,\n\t\tisBox = \"width\" in props || \"height\" in props,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHiddenWithinTree( elem ),\n\t\tdataShow = dataPriv.get( elem, \"fxshow\" );\n\n\t// Queue-skipping animations hijack the fx hooks\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always( function() {\n\n\t\t\t// Ensure the complete handler is called before this completes\n\t\t\tanim.always( function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\t}\n\n\t// Detect show/hide animations\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.test( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// Pretend to be hidden if this is a \"show\" and\n\t\t\t\t// there is still data from a stopped show/hide\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\n\t\t\t\t// Ignore all other no-op show/hide data\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\t\t}\n\t}\n\n\t// Bail out if this is a no-op like .hide().hide()\n\tpropTween = !jQuery.isEmptyObject( props );\n\tif ( !propTween && jQuery.isEmptyObject( orig ) ) {\n\t\treturn;\n\t}\n\n\t// Restrict \"overflow\" and \"display\" styles during box animations\n\tif ( isBox && elem.nodeType === 1 ) {\n\n\t\t// Support: IE <=9 - 11, Edge 12 - 15\n\t\t// Record all 3 overflow attributes because IE does not infer the shorthand\n\t\t// from identically-valued overflowX and overflowY and Edge just mirrors\n\t\t// the overflowX value there.\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Identify a display type, preferring old show/hide data over the CSS cascade\n\t\trestoreDisplay = dataShow && dataShow.display;\n\t\tif ( restoreDisplay == null ) {\n\t\t\trestoreDisplay = dataPriv.get( elem, \"display\" );\n\t\t}\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\tif ( display === \"none\" ) {\n\t\t\tif ( restoreDisplay ) {\n\t\t\t\tdisplay = restoreDisplay;\n\t\t\t} else {\n\n\t\t\t\t// Get nonempty value(s) by temporarily forcing visibility\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t\trestoreDisplay = elem.style.display || restoreDisplay;\n\t\t\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\t\t\tshowHide( [ elem ] );\n\t\t\t}\n\t\t}\n\n\t\t// Animate inline elements as inline-block\n\t\tif ( display === \"inline\" || display === \"inline-block\" && restoreDisplay != null ) {\n\t\t\tif ( jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t\t// Restore the original display value at the end of pure show/hide animations\n\t\t\t\tif ( !propTween ) {\n\t\t\t\t\tanim.done( function() {\n\t\t\t\t\t\tstyle.display = restoreDisplay;\n\t\t\t\t\t} );\n\t\t\t\t\tif ( restoreDisplay == null ) {\n\t\t\t\t\t\tdisplay = style.display;\n\t\t\t\t\t\trestoreDisplay = display === \"none\" ? \"\" : display;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tanim.always( function() {\n\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t} );\n\t}\n\n\t// Implement show/hide animations\n\tpropTween = false;\n\tfor ( prop in orig ) {\n\n\t\t// General show/hide setup for this element animation\n\t\tif ( !propTween ) {\n\t\t\tif ( dataShow ) {\n\t\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\t\thidden = dataShow.hidden;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdataShow = dataPriv.access( elem, \"fxshow\", { display: restoreDisplay } );\n\t\t\t}\n\n\t\t\t// Store hidden/visible for toggle so `.stop().toggle()` \"reverses\"\n\t\t\tif ( toggle ) {\n\t\t\t\tdataShow.hidden = !hidden;\n\t\t\t}\n\n\t\t\t// Show elements before animating them\n\t\t\tif ( hidden ) {\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t}\n\n\t\t\t/* eslint-disable no-loop-func */\n\n\t\t\tanim.done( function() {\n\n\t\t\t/* eslint-enable no-loop-func */\n\n\t\t\t\t// The final step of a \"hide\" animation is actually hiding the element\n\t\t\t\tif ( !hidden ) {\n\t\t\t\t\tshowHide( [ elem ] );\n\t\t\t\t}\n\t\t\t\tdataPriv.remove( elem, \"fxshow\" );\n\t\t\t\tfor ( prop in orig ) {\n\t\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Per-property setup\n\t\tpropTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\t\tif ( !( prop in dataShow ) ) {\n\t\t\tdataShow[ prop ] = propTween.start;\n\t\t\tif ( hidden ) {\n\t\t\t\tpropTween.end = propTween.start;\n\t\t\t\tpropTween.start = 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( Array.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// Not quite $.extend, this won't overwrite existing keys.\n\t\t\t// Reusing 'index' because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = Animation.prefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\n\t\t\t// Don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t} ),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\n\t\t\t\t// Support: Android 2.3 only\n\t\t\t\t// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ] );\n\n\t\t\t// If there's more to do, yield\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t}\n\n\t\t\t// If this was an empty animation, synthesize a final progress notification\n\t\t\tif ( !length ) {\n\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t}\n\n\t\t\t// Resolve the animation and report its conclusion\n\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\treturn false;\n\t\t},\n\t\tanimation = deferred.promise( {\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, {\n\t\t\t\tspecialEasing: {},\n\t\t\t\teasing: jQuery.easing._default\n\t\t\t}, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\n\t\t\t\t\t// If we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// Resolve when we played the last frame; otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t} ),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length; index++ ) {\n\t\tresult = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\tif ( isFunction( result.stop ) ) {\n\t\t\t\tjQuery._queueHooks( animation.elem, animation.opts.queue ).stop =\n\t\t\t\t\tresult.stop.bind( result );\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\t// Attach callbacks from options\n\tanimation\n\t\t.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t} )\n\t);\n\n\treturn animation;\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\n\ttweeners: {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value );\n\t\t\tadjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );\n\t\t\treturn tween;\n\t\t} ]\n\t},\n\n\ttweener: function( props, callback ) {\n\t\tif ( isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.match( rnothtmlwhite );\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\tAnimation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];\n\t\t\tAnimation.tweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilters: [ defaultPrefilter ],\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tAnimation.prefilters.unshift( callback );\n\t\t} else {\n\t\t\tAnimation.prefilters.push( callback );\n\t\t}\n\t}\n} );\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tisFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !isFunction( easing ) && easing\n\t};\n\n\t// Go to the end state if fx are off\n\tif ( jQuery.fx.off ) {\n\t\topt.duration = 0;\n\n\t} else {\n\t\tif ( typeof opt.duration !== \"number\" ) {\n\t\t\tif ( opt.duration in jQuery.fx.speeds ) {\n\t\t\t\topt.duration = jQuery.fx.speeds[ opt.duration ];\n\n\t\t\t} else {\n\t\t\t\topt.duration = jQuery.fx.speeds._default;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend( {\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// Show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHiddenWithinTree ).css( \"opacity\", 0 ).show()\n\n\t\t\t// Animate to the value specified\n\t\t\t.end().animate( { opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || dataPriv.get( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = dataPriv.get( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this &&\n\t\t\t\t\t( type == null || timers[ index ].queue === type ) ) {\n\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Start the next in the queue if the last step wasn't forced.\n\t\t\t// Timers currently will call their complete callbacks, which\n\t\t\t// will dequeue but only if they were gotoEnd.\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t} );\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tvar index,\n\t\t\t\tdata = dataPriv.get( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// Enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// Empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// Look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t} );\n\t}\n} );\n\njQuery.each( [ \"toggle\", \"show\", \"hide\" ], function( _i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n} );\n\n// Generate shortcuts for custom animations\njQuery.each( {\n\tslideDown: genFx( \"show\" ),\n\tslideUp: genFx( \"hide\" ),\n\tslideToggle: genFx( \"toggle\" ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n} );\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ti = 0,\n\t\ttimers = jQuery.timers;\n\n\tfxNow = Date.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\n\t\t// Run the timer and safely remove it when done (allowing for external removal)\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tjQuery.fx.start();\n};\n\njQuery.fx.interval = 13;\njQuery.fx.start = function() {\n\tif ( inProgress ) {\n\t\treturn;\n\t}\n\n\tinProgress = true;\n\tschedule();\n};\n\njQuery.fx.stop = function() {\n\tinProgress = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = window.setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\twindow.clearTimeout( timeout );\n\t\t};\n\t} );\n};\n\n\n( function() {\n\tvar input = document.createElement( \"input\" ),\n\t\tselect = document.createElement( \"select\" ),\n\t\topt = select.appendChild( document.createElement( \"option\" ) );\n\n\tinput.type = \"checkbox\";\n\n\t// Support: Android <=4.3 only\n\t// Default value for a checkbox should be \"on\"\n\tsupport.checkOn = input.value !== \"\";\n\n\t// Support: IE <=11 only\n\t// Must access selectedIndex to make default options select\n\tsupport.optSelected = opt.selected;\n\n\t// Support: IE <=11 only\n\t// An input loses its value after becoming a radio\n\tinput = document.createElement( \"input\" );\n\tinput.value = \"t\";\n\tinput.type = \"radio\";\n\tsupport.radioValue = input.value === \"t\";\n} )();\n\n\nvar boolHook,\n\tattrHandle = jQuery.expr.attrHandle;\n\njQuery.fn.extend( {\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tattr: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set attributes on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// Attribute hooks are determined by the lowercase version\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\thooks = jQuery.attrHooks[ name.toLowerCase() ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\treturn value;\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tret = jQuery.find.attr( elem, name );\n\n\t\t// Non-existent attributes return null, we normalize to undefined\n\t\treturn ret == null ? undefined : ret;\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" &&\n\t\t\t\t\tnodeName( elem, \"input\" ) ) {\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name,\n\t\t\ti = 0,\n\n\t\t\t// Attribute names can contain non-HTML whitespace characters\n\t\t\t// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n\t\t\tattrNames = value && value.match( rnothtmlwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( ( name = attrNames[ i++ ] ) ) {\n\t\t\t\telem.removeAttribute( name );\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Hooks for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else {\n\t\t\telem.setAttribute( name, name );\n\t\t}\n\t\treturn name;\n\t}\n};\n\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( _i, name ) {\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = function( elem, name, isXML ) {\n\t\tvar ret, handle,\n\t\t\tlowercaseName = name.toLowerCase();\n\n\t\tif ( !isXML ) {\n\n\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\thandle = attrHandle[ lowercaseName ];\n\t\t\tattrHandle[ lowercaseName ] = ret;\n\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\tlowercaseName :\n\t\t\t\tnull;\n\t\t\tattrHandle[ lowercaseName ] = handle;\n\t\t}\n\t\treturn ret;\n\t};\n} );\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend( {\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tdelete this[ jQuery.propFix[ name ] || name ];\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set properties on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\treturn ( elem[ name ] = value );\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\treturn elem[ name ];\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\t// Support: IE <=9 - 11 only\n\t\t\t\t// elem.tabIndex doesn't always return the\n\t\t\t\t// correct value when it hasn't been explicitly set\n\t\t\t\t// https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\tif ( tabindex ) {\n\t\t\t\t\treturn parseInt( tabindex, 10 );\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\trfocusable.test( elem.nodeName ) ||\n\t\t\t\t\trclickable.test( elem.nodeName ) &&\n\t\t\t\t\telem.href\n\t\t\t\t) {\n\t\t\t\t\treturn 0;\n\t\t\t\t}\n\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t}\n} );\n\n// Support: IE <=11 only\n// Accessing the selectedIndex property\n// forces the browser to respect setting selected\n// on the option\n// The getter ensures a default option is selected\n// when in an optgroup\n// eslint rule \"no-unused-expressions\" is disabled for this code\n// since it considers such accessions noop\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent && parent.parentNode ) {\n\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\t\tset: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\njQuery.each( [\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n} );\n\n\n\n\n\t// Strip and collapse whitespace according to HTML spec\n\t// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace\n\tfunction stripAndCollapse( value ) {\n\t\tvar tokens = value.match( rnothtmlwhite ) || [];\n\t\treturn tokens.join( \" \" );\n\t}\n\n\nfunction getClass( elem ) {\n\treturn elem.getAttribute && elem.getAttribute( \"class\" ) || \"\";\n}\n\nfunction classesToArray( value ) {\n\tif ( Array.isArray( value ) ) {\n\t\treturn value;\n\t}\n\tif ( typeof value === \"string\" ) {\n\t\treturn value.match( rnothtmlwhite ) || [];\n\t}\n\treturn [];\n}\n\njQuery.fn.extend( {\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( !arguments.length ) {\n\t\t\treturn this.attr( \"class\", \"\" );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) > -1 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value,\n\t\t\tisValidValue = type === \"string\" || Array.isArray( value );\n\n\t\tif ( typeof stateVal === \"boolean\" && isValidValue ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).toggleClass(\n\t\t\t\t\tvalue.call( this, i, getClass( this ), stateVal ),\n\t\t\t\t\tstateVal\n\t\t\t\t);\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar className, i, self, classNames;\n\n\t\t\tif ( isValidValue ) {\n\n\t\t\t\t// Toggle individual class names\n\t\t\t\ti = 0;\n\t\t\t\tself = jQuery( this );\n\t\t\t\tclassNames = classesToArray( value );\n\n\t\t\t\twhile ( ( className = classNames[ i++ ] ) ) {\n\n\t\t\t\t\t// Check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( value === undefined || type === \"boolean\" ) {\n\t\t\t\tclassName = getClass( this );\n\t\t\t\tif ( className ) {\n\n\t\t\t\t\t// Store className if set\n\t\t\t\t\tdataPriv.set( this, \"__className__\", className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed `false`,\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tif ( this.setAttribute ) {\n\t\t\t\t\tthis.setAttribute( \"class\",\n\t\t\t\t\t\tclassName || value === false ?\n\t\t\t\t\t\t\"\" :\n\t\t\t\t\t\tdataPriv.get( this, \"__className__\" ) || \"\"\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className, elem,\n\t\t\ti = 0;\n\n\t\tclassName = \" \" + selector + \" \";\n\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\tif ( elem.nodeType === 1 &&\n\t\t\t\t( \" \" + stripAndCollapse( getClass( elem ) ) + \" \" ).indexOf( className ) > -1 ) {\n\t\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n} );\n\n\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend( {\n\tval: function( value ) {\n\t\tvar hooks, ret, valueIsFunction,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] ||\n\t\t\t\t\tjQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks &&\n\t\t\t\t\t\"get\" in hooks &&\n\t\t\t\t\t( ret = hooks.get( elem, \"value\" ) ) !== undefined\n\t\t\t\t) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\t// Handle most common string cases\n\t\t\t\tif ( typeof ret === \"string\" ) {\n\t\t\t\t\treturn ret.replace( rreturn, \"\" );\n\t\t\t\t}\n\n\t\t\t\t// Handle cases where value is null/undef or number\n\t\t\t\treturn ret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tvalueIsFunction = isFunction( value );\n\n\t\treturn this.each( function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\n\t\t\t} else if ( Array.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !( \"set\" in hooks ) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\n\t\t\t\t\t// Support: IE <=10 - 11 only\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\t// Strip and collapse whitespace\n\t\t\t\t\t// https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n\t\t\t\t\tstripAndCollapse( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option, i,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\",\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length;\n\n\t\t\t\tif ( index < 0 ) {\n\t\t\t\t\ti = max;\n\n\t\t\t\t} else {\n\t\t\t\t\ti = one ? index : 0;\n\t\t\t\t}\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t// IE8-9 doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t!option.disabled &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled ||\n\t\t\t\t\t\t\t\t!nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t/* eslint-disable no-cond-assign */\n\n\t\t\t\t\tif ( option.selected =\n\t\t\t\t\t\tjQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1\n\t\t\t\t\t) {\n\t\t\t\t\t\toptionSet = true;\n\t\t\t\t\t}\n\n\t\t\t\t\t/* eslint-enable no-cond-assign */\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\t\t\t\treturn values;\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Radios and checkboxes getter/setter\njQuery.each( [ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( Array.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\treturn elem.getAttribute( \"value\" ) === null ? \"on\" : elem.value;\n\t\t};\n\t}\n} );\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\nsupport.focusin = \"onfocusin\" in window;\n\n\nvar rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\tstopPropagationCallback = function( e ) {\n\t\te.stopPropagation();\n\t};\n\njQuery.extend( jQuery.event, {\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\n\t\tvar i, cur, tmp, bubbleType, ontype, handle, special, lastElement,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split( \".\" ) : [];\n\n\t\tcur = lastElement = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) > -1 ) {\n\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split( \".\" );\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf( \":\" ) < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.rnamespace = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === ( elem.ownerDocument || document ) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tlastElement = cur;\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = (\n\t\t\t\t\tdataPriv.get( cur, \"events\" ) || Object.create( null )\n\t\t\t\t)[ event.type ] &&\n\t\t\t\tdataPriv.get( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( ( !special._default ||\n\t\t\t\tspecial._default.apply( eventPath.pop(), data ) === false ) &&\n\t\t\t\tacceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name as the event.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.addEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\telem[ type ]();\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.removeEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\t// Piggyback on a donor event to simulate a different one\n\t// Used only for `focus(in | out)` events\n\tsimulate: function( type, elem, event ) {\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true\n\t\t\t}\n\t\t);\n\n\t\tjQuery.event.trigger( e, null, elem );\n\t}\n\n} );\n\njQuery.fn.extend( {\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t} );\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[ 0 ];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n} );\n\n\n// Support: Firefox <=44\n// Firefox doesn't have focus(in | out) events\n// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n//\n// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1\n// focus(in | out) events fire after focus & blur events,\n// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857\nif ( !support.focusin ) {\n\tjQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );\n\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\n\t\t\t\t// Handle: regular nodes (via `this.ownerDocument`), window\n\t\t\t\t// (via `this.document`) & document (via `this`).\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tdataPriv.access( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tdataPriv.remove( doc, fix );\n\n\t\t\t\t} else {\n\t\t\t\t\tdataPriv.access( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t} );\n}\nvar location = window.location;\n\nvar nonce = { guid: Date.now() };\n\nvar rquery = ( /\\?/ );\n\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\n\t// Support: IE 9 - 11 only\n\t// IE throws on parseFromString with invalid input.\n\ttry {\n\t\txml = ( new window.DOMParser() ).parseFromString( data, \"text/xml\" );\n\t} catch ( e ) {\n\t\txml = undefined;\n\t}\n\n\tif ( !xml || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( Array.isArray( obj ) ) {\n\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams(\n\t\t\t\t\tprefix + \"[\" + ( typeof v === \"object\" && v != null ? i : \"\" ) + \"]\",\n\t\t\t\t\tv,\n\t\t\t\t\ttraditional,\n\t\t\t\t\tadd\n\t\t\t\t);\n\t\t\t}\n\t\t} );\n\n\t} else if ( !traditional && toType( obj ) === \"object\" ) {\n\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, valueOrFunction ) {\n\n\t\t\t// If value is a function, invoke it and use its return value\n\t\t\tvar value = isFunction( valueOrFunction ) ?\n\t\t\t\tvalueOrFunction() :\n\t\t\t\tvalueOrFunction;\n\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" +\n\t\t\t\tencodeURIComponent( value == null ? \"\" : value );\n\t\t};\n\n\tif ( a == null ) {\n\t\treturn \"\";\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t} );\n\n\t} else {\n\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" );\n};\n\njQuery.fn.extend( {\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map( function() {\n\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t} )\n\t\t.filter( function() {\n\t\t\tvar type = this.type;\n\n\t\t\t// Use .is( \":disabled\" ) so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t} )\n\t\t.map( function( _i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\tif ( val == null ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tif ( Array.isArray( val ) ) {\n\t\t\t\treturn jQuery.map( val, function( val ) {\n\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t} ).get();\n\t}\n} );\n\n\nvar\n\tr20 = /%20/g,\n\trhash = /#.*$/,\n\trantiCache = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)$/mg,\n\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat( \"*\" ),\n\n\t// Anchor tag for parsing the document origin\n\toriginAnchor = document.createElement( \"a\" );\n\toriginAnchor.href = location.href;\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];\n\n\t\tif ( isFunction( func ) ) {\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( ( dataType = dataTypes[ i++ ] ) ) {\n\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType[ 0 ] === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" &&\n\t\t\t\t!seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t} );\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar key, deep,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\n\tvar ct, type, finalDataType, firstDataType,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"Content-Type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[ 0 ] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s.throws ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tstate: \"parsererror\",\n\t\t\t\t\t\t\t\terror: conv ? e : \"No conversion from \" + prev + \" to \" + current\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend( {\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: location.href,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( location.protocol ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /\\bxml\\b/,\n\t\t\thtml: /\\bhtml/,\n\t\t\tjson: /\\bjson\\b/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": JSON.parse,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar transport,\n\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\n\t\t\t// Response headers\n\t\t\tresponseHeadersString,\n\t\t\tresponseHeaders,\n\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// Url cleanup var\n\t\t\turlAnchor,\n\n\t\t\t// Request state (becomes false upon send and true upon completion)\n\t\t\tcompleted,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\t// Loop variable\n\t\t\ti,\n\n\t\t\t// uncached part of the url\n\t\t\tuncached,\n\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context &&\n\t\t\t\t( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\t\tjQuery.event,\n\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( completed ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[ 1 ].toLowerCase() + \" \" ] =\n\t\t\t\t\t\t\t\t\t( responseHeaders[ match[ 1 ].toLowerCase() + \" \" ] || [] )\n\t\t\t\t\t\t\t\t\t\t.concat( match[ 2 ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() + \" \" ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match.join( \", \" );\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn completed ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\tname = requestHeadersNames[ name.toLowerCase() ] =\n\t\t\t\t\t\t\trequestHeadersNames[ name.toLowerCase() ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( completed ) {\n\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Lazy-add the new callbacks in a way that preserves old ones\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR );\n\n\t\t// Add protocol if not provided (prefilters might expect it)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || location.href ) + \"\" )\n\t\t\t.replace( rprotocol, location.protocol + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = ( s.dataType || \"*\" ).toLowerCase().match( rnothtmlwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when the origin doesn't match the current origin.\n\t\tif ( s.crossDomain == null ) {\n\t\t\turlAnchor = document.createElement( \"a\" );\n\n\t\t\t// Support: IE <=8 - 11, Edge 12 - 15\n\t\t\t// IE throws exception on accessing the href property if url is malformed,\n\t\t\t// e.g. http://example.com:80x/\n\t\t\ttry {\n\t\t\t\turlAnchor.href = s.url;\n\n\t\t\t\t// Support: IE <=8 - 11 only\n\t\t\t\t// Anchor's host property isn't correctly set when s.url is relative\n\t\t\t\turlAnchor.href = urlAnchor.href;\n\t\t\t\ts.crossDomain = originAnchor.protocol + \"//\" + originAnchor.host !==\n\t\t\t\t\turlAnchor.protocol + \"//\" + urlAnchor.host;\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// If there is an error parsing the URL, assume it is crossDomain,\n\t\t\t\t// it can be rejected by the transport if it is invalid\n\t\t\t\ts.crossDomain = true;\n\t\t\t}\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( completed ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\t// Remove hash to simplify url manipulation\n\t\tcacheURL = s.url.replace( rhash, \"\" );\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// Remember the hash so we can put it back\n\t\t\tuncached = s.url.slice( cacheURL.length );\n\n\t\t\t// If data is available and should be processed, append data to url\n\t\t\tif ( s.data && ( s.processData || typeof s.data === \"string\" ) ) {\n\t\t\t\tcacheURL += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data;\n\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add or update anti-cache param if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\tcacheURL = cacheURL.replace( rantiCache, \"$1\" );\n\t\t\t\tuncached = ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + ( nonce.guid++ ) +\n\t\t\t\t\tuncached;\n\t\t\t}\n\n\t\t\t// Put hash and anti-cache on the URL that will be requested (gh-1732)\n\t\t\ts.url = cacheURL + uncached;\n\n\t\t// Change '%20' to '+' if this is encoded form body content (gh-2658)\n\t\t} else if ( s.data && s.processData &&\n\t\t\t( s.contentType || \"\" ).indexOf( \"application/x-www-form-urlencoded\" ) === 0 ) {\n\t\t\ts.data = s.data.replace( r20, \"+\" );\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[ 0 ] ] +\n\t\t\t\t\t( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend &&\n\t\t\t( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {\n\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// Aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tcompleteDeferred.add( s.complete );\n\t\tjqXHR.done( s.success );\n\t\tjqXHR.fail( s.error );\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\n\t\t\t// If request was aborted inside ajaxSend, stop there\n\t\t\tif ( completed ) {\n\t\t\t\treturn jqXHR;\n\t\t\t}\n\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = window.setTimeout( function() {\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tcompleted = false;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// Rethrow post-completion exceptions\n\t\t\t\tif ( completed ) {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\n\t\t\t\t// Propagate others as results\n\t\t\t\tdone( -1, e );\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Ignore repeat invocations\n\t\t\tif ( completed ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tcompleted = true;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\twindow.clearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Use a noop converter for missing script\n\t\t\tif ( !isSuccess && jQuery.inArray( \"script\", s.dataTypes ) > -1 ) {\n\t\t\t\ts.converters[ \"text script\" ] = function() {};\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"Last-Modified\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"etag\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Extract error from statusText and normalize for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n} );\n\njQuery.each( [ \"get\", \"post\" ], function( _i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\n\t\t// Shift arguments if data argument was omitted\n\t\tif ( isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\t// The url can be an options object (which then must have .url)\n\t\treturn jQuery.ajax( jQuery.extend( {\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t}, jQuery.isPlainObject( url ) && url ) );\n\t};\n} );\n\njQuery.ajaxPrefilter( function( s ) {\n\tvar i;\n\tfor ( i in s.headers ) {\n\t\tif ( i.toLowerCase() === \"content-type\" ) {\n\t\t\ts.contentType = s.headers[ i ] || \"\";\n\t\t}\n\t}\n} );\n\n\njQuery._evalUrl = function( url, options, doc ) {\n\treturn jQuery.ajax( {\n\t\turl: url,\n\n\t\t// Make this explicit, since user can override this through ajaxSetup (#11264)\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tcache: true,\n\t\tasync: false,\n\t\tglobal: false,\n\n\t\t// Only evaluate the response if it is successful (gh-4126)\n\t\t// dataFilter is not invoked for failure responses, so using it instead\n\t\t// of the default converter is kludgy but it works.\n\t\tconverters: {\n\t\t\t\"text script\": function() {}\n\t\t},\n\t\tdataFilter: function( response ) {\n\t\t\tjQuery.globalEval( response, options, doc );\n\t\t}\n\t} );\n};\n\n\njQuery.fn.extend( {\n\twrapAll: function( html ) {\n\t\tvar wrap;\n\n\t\tif ( this[ 0 ] ) {\n\t\t\tif ( isFunction( html ) ) {\n\t\t\t\thtml = html.call( this[ 0 ] );\n\t\t\t}\n\n\t\t\t// The elements to wrap the target around\n\t\t\twrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );\n\n\t\t\tif ( this[ 0 ].parentNode ) {\n\t\t\t\twrap.insertBefore( this[ 0 ] );\n\t\t\t}\n\n\t\t\twrap.map( function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstElementChild ) {\n\t\t\t\t\telem = elem.firstElementChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t} ).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapInner( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t} );\n\t},\n\n\twrap: function( html ) {\n\t\tvar htmlIsFunction = isFunction( html );\n\n\t\treturn this.each( function( i ) {\n\t\t\tjQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );\n\t\t} );\n\t},\n\n\tunwrap: function( selector ) {\n\t\tthis.parent( selector ).not( \"body\" ).each( function() {\n\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t} );\n\t\treturn this;\n\t}\n} );\n\n\njQuery.expr.pseudos.hidden = function( elem ) {\n\treturn !jQuery.expr.pseudos.visible( elem );\n};\njQuery.expr.pseudos.visible = function( elem ) {\n\treturn !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );\n};\n\n\n\n\njQuery.ajaxSettings.xhr = function() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch ( e ) {}\n};\n\nvar xhrSuccessStatus = {\n\n\t\t// File protocol always yields status code 0, assume 200\n\t\t0: 200,\n\n\t\t// Support: IE <=9 only\n\t\t// #1450: sometimes IE returns 1223 when it should be 204\n\t\t1223: 204\n\t},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nsupport.ajax = xhrSupported = !!xhrSupported;\n\njQuery.ajaxTransport( function( options ) {\n\tvar callback, errorCallback;\n\n\t// Cross domain only allowed if supported through XMLHttpRequest\n\tif ( support.cors || xhrSupported && !options.crossDomain ) {\n\t\treturn {\n\t\t\tsend: function( headers, complete ) {\n\t\t\t\tvar i,\n\t\t\t\t\txhr = options.xhr();\n\n\t\t\t\txhr.open(\n\t\t\t\t\toptions.type,\n\t\t\t\t\toptions.url,\n\t\t\t\t\toptions.async,\n\t\t\t\t\toptions.username,\n\t\t\t\t\toptions.password\n\t\t\t\t);\n\n\t\t\t\t// Apply custom fields if provided\n\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Override mime type if needed\n\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t}\n\n\t\t\t\t// X-Requested-With header\n\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\tif ( !options.crossDomain && !headers[ \"X-Requested-With\" ] ) {\n\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t}\n\n\t\t\t\t// Set headers\n\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] );\n\t\t\t\t}\n\n\t\t\t\t// Callback\n\t\t\t\tcallback = function( type ) {\n\t\t\t\t\treturn function() {\n\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\tcallback = errorCallback = xhr.onload =\n\t\t\t\t\t\t\t\txhr.onerror = xhr.onabort = xhr.ontimeout =\n\t\t\t\t\t\t\t\t\txhr.onreadystatechange = null;\n\n\t\t\t\t\t\t\tif ( type === \"abort\" ) {\n\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t} else if ( type === \"error\" ) {\n\n\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t// On a manual native abort, IE9 throws\n\t\t\t\t\t\t\t\t// errors on any property access that is not readyState\n\t\t\t\t\t\t\t\tif ( typeof xhr.status !== \"number\" ) {\n\t\t\t\t\t\t\t\t\tcomplete( 0, \"error\" );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcomplete(\n\n\t\t\t\t\t\t\t\t\t\t// File: protocol always yields status 0; see #8605, #14207\n\t\t\t\t\t\t\t\t\t\txhr.status,\n\t\t\t\t\t\t\t\t\t\txhr.statusText\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tcomplete(\n\t\t\t\t\t\t\t\t\txhrSuccessStatus[ xhr.status ] || xhr.status,\n\t\t\t\t\t\t\t\t\txhr.statusText,\n\n\t\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t\t// IE9 has no XHR2 but throws on binary (trac-11426)\n\t\t\t\t\t\t\t\t\t// For XHR2 non-text, let the caller handle it (gh-2498)\n\t\t\t\t\t\t\t\t\t( xhr.responseType || \"text\" ) !== \"text\"  ||\n\t\t\t\t\t\t\t\t\ttypeof xhr.responseText !== \"string\" ?\n\t\t\t\t\t\t\t\t\t\t{ binary: xhr.response } :\n\t\t\t\t\t\t\t\t\t\t{ text: xhr.responseText },\n\t\t\t\t\t\t\t\t\txhr.getAllResponseHeaders()\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t};\n\n\t\t\t\t// Listen to events\n\t\t\t\txhr.onload = callback();\n\t\t\t\terrorCallback = xhr.onerror = xhr.ontimeout = callback( \"error\" );\n\n\t\t\t\t// Support: IE 9 only\n\t\t\t\t// Use onreadystatechange to replace onabort\n\t\t\t\t// to handle uncaught aborts\n\t\t\t\tif ( xhr.onabort !== undefined ) {\n\t\t\t\t\txhr.onabort = errorCallback;\n\t\t\t\t} else {\n\t\t\t\t\txhr.onreadystatechange = function() {\n\n\t\t\t\t\t\t// Check readyState before timeout as it changes\n\t\t\t\t\t\tif ( xhr.readyState === 4 ) {\n\n\t\t\t\t\t\t\t// Allow onerror to be called first,\n\t\t\t\t\t\t\t// but that will not handle a native abort\n\t\t\t\t\t\t\t// Also, save errorCallback to a variable\n\t\t\t\t\t\t\t// as xhr.onerror cannot be accessed\n\t\t\t\t\t\t\twindow.setTimeout( function() {\n\t\t\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\t\t\terrorCallback();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\t// Create the abort callback\n\t\t\t\tcallback = callback( \"abort\" );\n\n\t\t\t\ttry {\n\n\t\t\t\t\t// Do send the request (this may raise an exception)\n\t\t\t\t\txhr.send( options.hasContent && options.data || null );\n\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t// #14683: Only rethrow if this hasn't been notified as an error yet\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tthrow e;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\n// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)\njQuery.ajaxPrefilter( function( s ) {\n\tif ( s.crossDomain ) {\n\t\ts.contents.script = false;\n\t}\n} );\n\n// Install script dataType\njQuery.ajaxSetup( {\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, \" +\n\t\t\t\"application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /\\b(?:java|ecma)script\\b/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n} );\n\n// Handle cache's special case and crossDomain\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t}\n} );\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function( s ) {\n\n\t// This transport only deals with cross domain or forced-by-attrs requests\n\tif ( s.crossDomain || s.scriptAttrs ) {\n\t\tvar script, callback;\n\t\treturn {\n\t\t\tsend: function( _, complete ) {\n\t\t\t\tscript = jQuery( \"<script>\" )\n\t\t\t\t\t.attr( s.scriptAttrs || {} )\n\t\t\t\t\t.prop( { charset: s.scriptCharset, src: s.url } )\n\t\t\t\t\t.on( \"load error\", callback = function( evt ) {\n\t\t\t\t\t\tscript.remove();\n\t\t\t\t\t\tcallback = null;\n\t\t\t\t\t\tif ( evt ) {\n\t\t\t\t\t\t\tcomplete( evt.type === \"error\" ? 404 : 200, evt.type );\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\tdocument.head.appendChild( script[ 0 ] );\n\t\t\t},\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup( {\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce.guid++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n} );\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" &&\n\t\t\t\t( s.contentType || \"\" )\n\t\t\t\t\t.indexOf( \"application/x-www-form-urlencoded\" ) === 0 &&\n\t\t\t\trjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[ \"script json\" ] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// Force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always( function() {\n\n\t\t\t// If previous value didn't exist - remove it\n\t\t\tif ( overwritten === undefined ) {\n\t\t\t\tjQuery( window ).removeProp( callbackName );\n\n\t\t\t// Otherwise restore preexisting value\n\t\t\t} else {\n\t\t\t\twindow[ callbackName ] = overwritten;\n\t\t\t}\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\n\t\t\t\t// Make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// Save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t} );\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n} );\n\n\n\n\n// Support: Safari 8 only\n// In Safari 8 documents created via document.implementation.createHTMLDocument\n// collapse sibling forms: the second one becomes a child of the first one.\n// Because of that, this security measure has to be disabled in Safari 8.\n// https://bugs.webkit.org/show_bug.cgi?id=137337\nsupport.createHTMLDocument = ( function() {\n\tvar body = document.implementation.createHTMLDocument( \"\" ).body;\n\tbody.innerHTML = \"<form></form><form></form>\";\n\treturn body.childNodes.length === 2;\n} )();\n\n\n// Argument \"data\" should be string of html\n// context (optional): If specified, the fragment will be created in this context,\n// defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( typeof data !== \"string\" ) {\n\t\treturn [];\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\n\tvar base, parsed, scripts;\n\n\tif ( !context ) {\n\n\t\t// Stop scripts or inline event handlers from being executed immediately\n\t\t// by using document.implementation\n\t\tif ( support.createHTMLDocument ) {\n\t\t\tcontext = document.implementation.createHTMLDocument( \"\" );\n\n\t\t\t// Set the base href for the created document\n\t\t\t// so any parsed elements with URLs\n\t\t\t// are based on the document's URL (gh-2965)\n\t\t\tbase = context.createElement( \"base\" );\n\t\t\tbase.href = document.location.href;\n\t\t\tcontext.head.appendChild( base );\n\t\t} else {\n\t\t\tcontext = document;\n\t\t}\n\t}\n\n\tparsed = rsingleTag.exec( data );\n\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[ 1 ] ) ];\n\t}\n\n\tparsed = buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tvar selector, type, response,\n\t\tself = this,\n\t\toff = url.indexOf( \" \" );\n\n\tif ( off > -1 ) {\n\t\tselector = stripAndCollapse( url.slice( off ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax( {\n\t\t\turl: url,\n\n\t\t\t// If \"type\" variable is undefined, then \"GET\" method will be used.\n\t\t\t// Make value of this field explicit since\n\t\t\t// user can override it through ajaxSetup method\n\t\t\ttype: type || \"GET\",\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t} ).done( function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery( \"<div>\" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t// If the request succeeds, this function gets \"data\", \"status\", \"jqXHR\"\n\t\t// but they are ignored because response was set above.\n\t\t// If it fails, this function gets \"jqXHR\", \"status\", \"error\"\n\t\t} ).always( callback && function( jqXHR, status ) {\n\t\t\tself.each( function() {\n\t\t\t\tcallback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t\t} );\n\t\t} );\n\t}\n\n\treturn this;\n};\n\n\n\n\njQuery.expr.pseudos.animated = function( elem ) {\n\treturn jQuery.grep( jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t} ).length;\n};\n\n\n\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// Set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\t( curCSSTop + curCSSLeft ).indexOf( \"auto\" ) > -1;\n\n\t\t// Need to be able to calculate position if either\n\t\t// top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( isFunction( options ) ) {\n\n\t\t\t// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)\n\t\t\toptions = options.call( elem, i, jQuery.extend( {}, curOffset ) );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\n\t\t} else {\n\t\t\tif ( typeof props.top === \"number\" ) {\n\t\t\t\tprops.top += \"px\";\n\t\t\t}\n\t\t\tif ( typeof props.left === \"number\" ) {\n\t\t\t\tprops.left += \"px\";\n\t\t\t}\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend( {\n\n\t// offset() relates an element's border box to the document origin\n\toffset: function( options ) {\n\n\t\t// Preserve chaining for setter\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each( function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t} );\n\t\t}\n\n\t\tvar rect, win,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !elem ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Return zeros for disconnected and hidden (display: none) elements (gh-2310)\n\t\t// Support: IE <=11 only\n\t\t// Running getBoundingClientRect on a\n\t\t// disconnected node in IE throws an error\n\t\tif ( !elem.getClientRects().length ) {\n\t\t\treturn { top: 0, left: 0 };\n\t\t}\n\n\t\t// Get document-relative position by adding viewport scroll to viewport-relative gBCR\n\t\trect = elem.getBoundingClientRect();\n\t\twin = elem.ownerDocument.defaultView;\n\t\treturn {\n\t\t\ttop: rect.top + win.pageYOffset,\n\t\t\tleft: rect.left + win.pageXOffset\n\t\t};\n\t},\n\n\t// position() relates an element's margin box to its offset parent's padding box\n\t// This corresponds to the behavior of CSS absolute positioning\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset, doc,\n\t\t\telem = this[ 0 ],\n\t\t\tparentOffset = { top: 0, left: 0 };\n\n\t\t// position:fixed elements are offset from the viewport, which itself always has zero offset\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\n\t\t\t// Assume position:fixed implies availability of getBoundingClientRect\n\t\t\toffset = elem.getBoundingClientRect();\n\n\t\t} else {\n\t\t\toffset = this.offset();\n\n\t\t\t// Account for the *real* offset parent, which can be the document or its root element\n\t\t\t// when a statically positioned element is identified\n\t\t\tdoc = elem.ownerDocument;\n\t\t\toffsetParent = elem.offsetParent || doc.documentElement;\n\t\t\twhile ( offsetParent &&\n\t\t\t\t( offsetParent === doc.body || offsetParent === doc.documentElement ) &&\n\t\t\t\tjQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\n\t\t\t\toffsetParent = offsetParent.parentNode;\n\t\t\t}\n\t\t\tif ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {\n\n\t\t\t\t// Incorporate borders into its offset, since they are outside its content origin\n\t\t\t\tparentOffset = jQuery( offsetParent ).offset();\n\t\t\t\tparentOffset.top += jQuery.css( offsetParent, \"borderTopWidth\", true );\n\t\t\t\tparentOffset.left += jQuery.css( offsetParent, \"borderLeftWidth\", true );\n\t\t\t}\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\treturn {\n\t\t\ttop: offset.top - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true )\n\t\t};\n\t},\n\n\t// This method will return documentElement in the following cases:\n\t// 1) For the element inside the iframe without offsetParent, this method will return\n\t//    documentElement of the parent window\n\t// 2) For the hidden or detached element\n\t// 3) For body or html element, i.e. in case of the html node - it will return itself\n\t//\n\t// but those exceptions were never presented as a real life use-cases\n\t// and might be considered as more preferable results.\n\t//\n\t// This logic, however, is not guaranteed and can change at any point in the future\n\toffsetParent: function() {\n\t\treturn this.map( function() {\n\t\t\tvar offsetParent = this.offsetParent;\n\n\t\t\twhile ( offsetParent && jQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\n\t\t\treturn offsetParent || documentElement;\n\t\t} );\n\t}\n} );\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = \"pageYOffset\" === prop;\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\n\t\t\t// Coalesce documents and windows\n\t\t\tvar win;\n\t\t\tif ( isWindow( elem ) ) {\n\t\t\t\twin = elem;\n\t\t\t} else if ( elem.nodeType === 9 ) {\n\t\t\t\twin = elem.defaultView;\n\t\t\t}\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? win[ prop ] : elem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : win.pageXOffset,\n\t\t\t\t\ttop ? val : win.pageYOffset\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length );\n\t};\n} );\n\n// Support: Safari <=7 - 9.1, Chrome <=37 - 49\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347\n// getComputedStyle returns percent when specified for top/left/bottom/right;\n// rather than make the css module depend on the offset module, just check for it here\njQuery.each( [ \"top\", \"left\" ], function( _i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\n\t\t\t\t// If curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n} );\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name },\n\t\tfunction( defaultExtra, funcName ) {\n\n\t\t// Margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( isWindow( elem ) ) {\n\n\t\t\t\t\t// $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)\n\t\t\t\t\treturn funcName.indexOf( \"outer\" ) === 0 ?\n\t\t\t\t\t\telem[ \"inner\" + name ] :\n\t\t\t\t\t\telem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],\n\t\t\t\t\t// whichever is greatest\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable );\n\t\t};\n\t} );\n} );\n\n\njQuery.each( [\n\t\"ajaxStart\",\n\t\"ajaxStop\",\n\t\"ajaxComplete\",\n\t\"ajaxError\",\n\t\"ajaxSuccess\",\n\t\"ajaxSend\"\n], function( _i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n} );\n\n\n\n\njQuery.fn.extend( {\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ?\n\t\t\tthis.off( selector, \"**\" ) :\n\t\t\tthis.off( types, selector || \"**\", fn );\n\t},\n\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t}\n} );\n\njQuery.each( ( \"blur focus focusin focusout resize scroll click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup contextmenu\" ).split( \" \" ),\n\tfunction( _i, name ) {\n\n\t\t// Handle event binding\n\t\tjQuery.fn[ name ] = function( data, fn ) {\n\t\t\treturn arguments.length > 0 ?\n\t\t\t\tthis.on( name, null, data, fn ) :\n\t\t\t\tthis.trigger( name );\n\t\t};\n\t} );\n\n\n\n\n// Support: Android <=4.0 only\n// Make sure we trim BOM and NBSP\nvar rtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g;\n\n// Bind a function to a context, optionally partially applying any\n// arguments.\n// jQuery.proxy is deprecated to promote standards (specifically Function#bind)\n// However, it is not slated for removal any time soon\njQuery.proxy = function( fn, context ) {\n\tvar tmp, args, proxy;\n\n\tif ( typeof context === \"string\" ) {\n\t\ttmp = fn[ context ];\n\t\tcontext = fn;\n\t\tfn = tmp;\n\t}\n\n\t// Quick check to determine if target is callable, in the spec\n\t// this throws a TypeError, but we will just return undefined.\n\tif ( !isFunction( fn ) ) {\n\t\treturn undefined;\n\t}\n\n\t// Simulated bind\n\targs = slice.call( arguments, 2 );\n\tproxy = function() {\n\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t};\n\n\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\treturn proxy;\n};\n\njQuery.holdReady = function( hold ) {\n\tif ( hold ) {\n\t\tjQuery.readyWait++;\n\t} else {\n\t\tjQuery.ready( true );\n\t}\n};\njQuery.isArray = Array.isArray;\njQuery.parseJSON = JSON.parse;\njQuery.nodeName = nodeName;\njQuery.isFunction = isFunction;\njQuery.isWindow = isWindow;\njQuery.camelCase = camelCase;\njQuery.type = toType;\n\njQuery.now = Date.now;\n\njQuery.isNumeric = function( obj ) {\n\n\t// As of jQuery 3.0, isNumeric is limited to\n\t// strings and numbers (primitives or objects)\n\t// that can be coerced to finite numbers (gh-2662)\n\tvar type = jQuery.type( obj );\n\treturn ( type === \"number\" || type === \"string\" ) &&\n\n\t\t// parseFloat NaNs numeric-cast false positives (\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t!isNaN( obj - parseFloat( obj ) );\n};\n\njQuery.trim = function( text ) {\n\treturn text == null ?\n\t\t\"\" :\n\t\t( text + \"\" ).replace( rtrim, \"\" );\n};\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t} );\n}\n\n\n\n\nvar\n\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in AMD\n// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === \"undefined\" ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n} );\n"
  },
  {
    "path": "images/02_bellCurve/lib/plotly-binding-4.10.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    // Plotly.relayout() mutates the plot input object, so make sure to \n    // keep a reference to the user-supplied width/height *before*\n    // we call Plotly.plot();\n    var lay = x.layout || {};\n    instance.width = lay.width;\n    instance.height = lay.height;\n    instance.autosize = lay.autosize || true;\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if ((x.selectize || x.highlight.dynamic) && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.newPlot(graphDiv, x);\n      instance.plotly = true;\n      \n    } else if (x.layout.transition) {\n      \n      var plot = Plotly.react(graphDiv, x);\n    \n    } else {\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.newPlot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n            if (typeof pt.pointNumber === \"number\") {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber];\n            } else if (Array.isArray(pt.pointNumber)) {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber[0]][pt.pointNumber[1]];\n            } else if (Array.isArray(pt.pointNumbers)) {\n              obj[attrsToAttach[i]] = pt.pointNumbers.map(function(idx) { return attr[idx]; });\n            }\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode && Shiny.setInputValue) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_sunburstclick: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "images/02_bellCurve/lib/plotly-binding-4.9.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if (x.selectize || x.highlight.dynamic && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.plot(graphDiv, x);\n      instance.plotly = true;\n      instance.autosize = x.layout.autosize || true;\n      instance.width = x.layout.width;\n      instance.height = x.layout.height;\n      \n    } else {\n      \n      // new x data could contain a new height/width...\n      // attach to instance so that resize logic knows about the new size\n      instance.width = x.layout.width || instance.width;\n      instance.height = x.layout.height || instance.height;\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.plot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n              // pointNumber can be an array (e.g., heatmaps)\n              // TODO: can pointNumber be 3D?\n              obj[attrsToAttach[i]] = typeof pt.pointNumber === \"number\" ? \n                attr[pt.pointNumber] : attr[pt.pointNumber[0]][pt.pointNumber[1]];\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "images/02_bellCurve/lib/plotly-binding-4.9.1/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    // Plotly.relayout() mutates the plot input object, so make sure to \n    // keep a reference to the user-supplied width/height *before*\n    // we call Plotly.plot();\n    var lay = x.layout || {};\n    instance.width = lay.width;\n    instance.height = lay.height;\n    instance.autosize = lay.autosize || true;\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if (x.selectize || x.highlight.dynamic && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.plot(graphDiv, x);\n      instance.plotly = true;\n      \n    } else {\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.plot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n            if (typeof pt.pointNumber === \"number\") {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber];\n            } else if (Array.isArray(pt.pointNumber)) {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber[0]][pt.pointNumber[1]];\n            } else if (Array.isArray(pt.pointNumbers)) {\n              obj[attrsToAttach[i]] = pt.pointNumbers.map(function(idx) { return attr[idx]; });\n            }\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode && Shiny.setInputValue) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_sunburstclick: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "images/02_bellCurve/lib/plotly-htmlwidgets-css-1.46.1/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "images/02_bellCurve/lib/plotly-htmlwidgets-css-1.49.4/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "images/02_bellCurve/lib/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "images/02_bellCurve/two_animated_hist.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<meta charset=\"utf-8\"/>\n<style>body{background-color:white;}</style>\n<script src=\"lib/htmlwidgets-1.5.4/htmlwidgets.js\"></script>\n<script src=\"lib/plotly-binding-4.10.0/plotly.js\"></script>\n<script src=\"lib/typedarray-0.1/typedarray.min.js\"></script>\n<script src=\"lib/jquery-3.5.1/jquery.min.js\"></script>\n<link href=\"lib/crosstalk-1.2.0/css/crosstalk.min.css\" rel=\"stylesheet\" />\n<script src=\"lib/crosstalk-1.2.0/js/crosstalk.min.js\"></script>\n<link href=\"lib/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css\" rel=\"stylesheet\" />\n<script src=\"lib/plotly-main-2.5.1/plotly-latest.min.js\"></script>\n\n</head>\n<body>\n<div id=\"htmlwidget-f4ba4c274a3e03827e75\" style=\"width:630px;height:390px;\" class=\"plotly html-widget\"></div>\n<script type=\"application/json\" data-for=\"htmlwidget-f4ba4c274a3e03827e75\">{\"x\":{\"visdat\":{\"1574221918c17\":[\"function () \",\"plotlyVisDat\"]},\"cur_data\":\"1574221918c17\",\"attrs\":{\"1574221918c17\":{\"x\":{},\"y\":{},\"marker\":{\"size\":16},\"color\":{},\"frame\":{},\"colors\":[\"green3\",\"turquoise3\"],\"alpha_stroke\":1,\"sizes\":[10,100],\"spans\":[1,20]}},\"layout\":{\"width\":630,\"height\":390,\"margin\":{\"b\":10,\"l\":50,\"t\":10,\"r\":50,\"pad\":4},\"xaxis\":{\"domain\":[0,1],\"automargin\":true,\"range\":[4,23],\"title\":\"Teacup Giraffe heights\",\"zeroline\":false},\"yaxis\":{\"domain\":[0,1],\"automargin\":true,\"range\":[-0.5,21],\"title\":\"Frequency\",\"zeroline\":false},\"legend\":{\"x\":0.075,\"y\":0.91},\"autosize\":false,\"hovermode\":\"closest\",\"showlegend\":true,\"sliders\":[],\"updatemenus\":[{\"type\":\"buttons\",\"direction\":\"right\",\"showactive\":false,\"y\":0,\"x\":1,\"yanchor\":\"bottom\",\"xanchor\":\"right\",\"pad\":{\"t\":60,\"r\":5},\"buttons\":[{\"label\":\"Play\",\"method\":\"animate\",\"args\":[null,{\"fromcurrent\":true,\"mode\":\"immediate\",\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":50,\"redraw\":false}}]}]}]},\"source\":\"A\",\"config\":{\"modeBarButtonsToAdd\":[\"hoverclosest\",\"hovercompare\"],\"showSendToCloud\":false,\"displayModeBar\":false},\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"1\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"1\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"highlight\":{\"on\":\"plotly_click\",\"persistent\":false,\"dynamic\":false,\"selectize\":false,\"opacityDim\":0.2,\"selected\":{\"opacity\":1},\"debounce\":0},\"frames\":[{\"name\":\"1\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"1\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"1\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"2\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"2\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"2\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"3\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"3\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"3\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"4\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"4\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"4\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"5\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"5\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"5\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"6\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"6\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"6\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"7\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"7\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"7\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"8\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"8\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"8\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"9\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"9\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"9\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"10\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"10\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"10\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"11\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"11\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"11\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"12\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"12\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"12\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"13\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"13\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"13\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"14\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"14\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"14\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"15\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"15\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"15\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"16\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"16\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"16\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"17\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"17\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"17\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"18\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"18\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"18\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"19\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"19\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"19\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"20\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"20\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"20\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"21\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"21\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"21\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"22\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"22\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"22\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"23\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"23\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"23\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"24\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"24\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"24\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"25\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"25\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"25\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"26\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"26\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"26\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"27\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"27\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"27\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"28\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"28\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"28\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"29\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"29\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"29\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"30\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"30\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"30\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"31\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,20,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"31\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"31\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"32\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"32\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"32\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"33\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"33\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"33\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"34\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"34\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"34\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"35\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"35\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"35\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"36\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"36\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"36\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"37\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"37\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"37\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"38\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"38\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"38\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"39\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"39\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"39\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"40\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"40\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"40\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"41\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"41\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"41\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"42\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"42\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"42\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"43\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,20,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"43\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"43\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"44\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"44\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"44\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"45\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"45\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"45\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"46\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"46\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"46\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"47\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"47\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"47\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"48\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"48\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"48\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"49\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"49\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"49\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"50\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,22.203125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"50\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"50\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"51\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,20.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"51\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"51\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"52\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,14.484375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"52\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"52\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"53\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"53\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"53\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"54\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"54\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"54\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"55\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"55\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"55\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"56\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"56\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"56\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"57\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"57\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"57\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"58\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"58\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"58\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"59\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,20,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"59\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"59\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"60\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"60\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"60\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"61\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"61\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"61\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"62\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,22.203125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"62\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"62\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"63\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,20.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"63\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"63\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"64\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,14.484375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"64\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"64\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"65\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"65\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"65\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"66\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"66\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"66\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"67\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"67\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"67\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"68\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"68\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"68\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"69\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"69\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"69\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"70\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"70\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"70\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"71\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"71\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"71\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"72\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"72\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"72\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"73\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"73\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"73\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"74\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"74\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"74\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"75\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,20,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"75\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"75\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"76\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"76\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"76\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"77\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"77\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"77\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"78\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,22.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"78\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"78\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"79\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,20.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"79\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"79\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"80\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,14.90625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"80\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"80\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"81\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"81\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"81\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"82\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,22.203125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"82\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"82\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"83\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,20.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"83\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"83\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"84\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,14.484375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"84\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"84\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"85\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"85\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"85\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"86\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"86\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"86\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"87\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"87\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"87\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"88\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"88\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"88\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"89\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"89\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"89\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"90\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"90\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"90\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"91\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"91\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"91\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"92\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"92\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"92\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"93\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"93\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"93\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"94\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,22.234375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"94\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"94\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"95\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,20.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"95\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"95\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"96\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,15.328125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"96\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"96\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"97\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"97\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"97\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"98\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,22.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"98\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"98\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"99\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,20.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"99\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"99\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"100\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,14.90625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"100\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"100\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"101\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"101\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"101\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"102\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,22.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"102\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"102\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"103\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,20.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"103\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"103\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"104\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,15.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"104\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"104\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"105\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"105\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"105\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"106\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,22.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"106\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"106\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"107\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,20.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"107\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"107\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"108\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,14.90625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"108\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"108\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"109\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"109\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"109\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"110\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,22.234375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"110\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"110\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"111\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,20.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"111\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"111\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"112\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,15.328125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"112\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"112\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"113\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"113\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"113\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"114\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,22.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"114\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"114\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"115\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,20.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"115\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"115\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"116\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,15.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"116\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"116\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"117\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"117\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"117\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"118\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,22.203125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"118\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"118\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"119\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,20.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"119\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"119\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"120\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,14.484375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"120\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"120\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"121\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"121\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"121\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"122\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,22.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"122\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"122\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"123\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,20.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"123\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"123\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"124\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,14.90625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"124\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"124\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"125\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"125\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"125\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"126\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"126\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"126\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"127\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"127\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"127\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"128\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"128\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"128\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"129\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"129\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"129\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"130\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,22.265625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"130\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"130\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"131\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,20.625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"131\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"131\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"132\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,16.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"132\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"132\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"133\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"133\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"133\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"134\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,22.234375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"134\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"134\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"135\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,20.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"135\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"135\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"136\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,15.328125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"136\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"136\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"137\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"137\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"137\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"138\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,22.28125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"138\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"138\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"139\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,20.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"139\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"139\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"140\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,16.59375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"140\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"140\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"141\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"141\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"141\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"142\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,22.296875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"142\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"142\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"143\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,20.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"143\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"143\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"144\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,17.015625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"144\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"144\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"145\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"145\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"145\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"146\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,22.234375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"146\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"146\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"147\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,20.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"147\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"147\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"148\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,15.328125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"148\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"148\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"149\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"149\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"149\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"150\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,22.3125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"150\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"150\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"151\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,21,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"151\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"151\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"152\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,17.4375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"152\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"152\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"153\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"153\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"153\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"154\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"154\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"154\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"155\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,20,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"155\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"155\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"156\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"156\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"156\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"157\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"157\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"157\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"158\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,22.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"158\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"158\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"159\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,20.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"159\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"159\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"160\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,15.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"160\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"160\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"161\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"161\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"161\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"162\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,22.265625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"162\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"162\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"163\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,20.625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"163\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"163\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"164\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,16.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"164\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"164\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"165\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"165\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"165\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"166\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,22.265625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"166\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"166\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"167\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,20.625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"167\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"167\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"168\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,16.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"168\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"168\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"169\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"169\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"169\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"170\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,22.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"170\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"170\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"171\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,20.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"171\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"171\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"172\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,15.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"172\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"172\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"173\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"173\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"173\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"174\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"174\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"174\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"175\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,20,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"175\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"175\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"176\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"176\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"176\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"177\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"177\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"177\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"178\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,22.328125,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"178\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"178\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"179\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,21.125,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"179\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"179\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"180\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,17.859375,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"180\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"180\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"181\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"181\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"181\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"182\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,22.265625,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"182\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"182\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"183\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,20.625,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"183\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"183\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"184\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,16.171875,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"184\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"184\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"185\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"185\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"185\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"186\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,22.28125,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"186\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"186\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"187\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,20.75,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"187\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"187\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"188\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,16.59375,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"188\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"188\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"189\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"189\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"189\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"190\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,22.28125,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"190\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"190\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"191\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,20.75,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"191\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"191\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"192\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,16.59375,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"192\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"192\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"193\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"193\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"193\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"194\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,22.28125,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"194\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"194\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"195\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,20.75,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"195\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"195\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"196\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,16.59375,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"196\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"196\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"197\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,22.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"197\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"197\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"198\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,22.34375],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"198\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"198\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"199\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,21.25],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"199\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"199\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"200\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,18.28125],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"200\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"200\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"201\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"201\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"201\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"202\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"202\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"202\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"203\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"203\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"203\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"204\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"204\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"204\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"205\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"205\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"205\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"206\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"206\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"206\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"207\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"207\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"207\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"208\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"208\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"208\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"209\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"209\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"209\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"210\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"210\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"210\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"211\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"211\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"211\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"212\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"212\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"212\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"213\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"213\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"213\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"214\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"214\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"214\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"215\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"215\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"215\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"216\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"216\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"216\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"217\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"217\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"217\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"218\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"218\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"218\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"219\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"219\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"219\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"220\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"220\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"220\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"221\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"221\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"221\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"222\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"222\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"222\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"223\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"223\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"223\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"224\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"224\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"224\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"225\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"225\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"225\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"226\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"226\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"226\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"227\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"227\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,20,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"227\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"228\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"228\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"228\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"229\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"229\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"229\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"230\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"230\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"230\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"231\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"231\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"231\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"232\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"232\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"232\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"233\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"233\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"233\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"234\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"234\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"234\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"235\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"235\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,20,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"235\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"236\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"236\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"236\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"237\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"237\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"237\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"238\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"238\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,22.203125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"238\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"239\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"239\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,20.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"239\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"240\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"240\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,14.484375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"240\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"241\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"241\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"241\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"242\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"242\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,22.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"242\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"243\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"243\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,20.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"243\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"244\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"244\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,14.90625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"244\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"245\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"245\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"245\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"246\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"246\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,22.203125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"246\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"247\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"247\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,20.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"247\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"248\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"248\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,14.484375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"248\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"249\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"249\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"249\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"250\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"250\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,22.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"250\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"251\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"251\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,20.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"251\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"252\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"252\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,14.90625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"252\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"253\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"253\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"253\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"254\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"254\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,22.234375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"254\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"255\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"255\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,20.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"255\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"256\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"256\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,15.328125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"256\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"257\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"257\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"257\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"258\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"258\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,22.234375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"258\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"259\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"259\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,20.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"259\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"260\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"260\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,15.328125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"260\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"261\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"261\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"261\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"262\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"262\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,22.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"262\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"263\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"263\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,20.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"263\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"264\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"264\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,15.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"264\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"265\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"265\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"265\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"266\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"266\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"266\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"267\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"267\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"267\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"268\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"268\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"268\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"269\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"269\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"269\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"270\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"270\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,22.15625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"270\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"271\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"271\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,19.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"271\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"272\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"272\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,13.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"272\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"273\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"273\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"273\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"274\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"274\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,22.265625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"274\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"275\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"275\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,20.625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"275\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"276\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"276\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,16.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"276\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"277\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"277\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"277\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"278\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"278\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,22.28125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"278\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"279\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"279\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,20.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"279\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"280\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"280\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,16.59375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"280\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"281\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"281\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"281\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"282\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"282\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"282\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"283\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"283\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"283\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"284\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"284\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"284\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"285\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"285\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"285\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"286\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"286\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,22.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"286\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"287\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"287\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,20.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"287\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"288\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"288\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,15.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"288\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"289\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"289\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"289\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"290\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"290\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"290\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"291\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"291\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,20,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"291\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"292\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"292\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"292\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"293\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"293\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"293\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"294\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"294\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,22.265625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"294\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"295\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"295\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,20.625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"295\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"296\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"296\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,16.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"296\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"297\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"297\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"297\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"298\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"298\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,22.28125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"298\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"299\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"299\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,20.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"299\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"300\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"300\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,16.59375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"300\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"301\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"301\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"301\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"302\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"302\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,22.203125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"302\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"303\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"303\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,20.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"303\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"304\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"304\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,14.484375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"304\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"305\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"305\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"305\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"306\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"306\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,22.171875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"306\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"307\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"307\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,19.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"307\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"308\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"308\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,13.640625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"308\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"309\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"309\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"309\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"310\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"310\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,22.296875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"310\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"311\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"311\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,20.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"311\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"312\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"312\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,17.015625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"312\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"313\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"313\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"313\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"314\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"314\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,22.296875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"314\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"315\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"315\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,20.875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"315\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"316\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"316\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,17.015625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"316\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"317\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"317\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"317\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"318\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"318\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,22.3125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"318\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"319\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"319\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,21,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"319\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"320\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"320\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,17.4375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"320\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"321\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"321\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"321\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"322\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"322\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,22.328125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"322\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"323\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"323\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,21.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"323\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"324\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"324\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,17.859375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"324\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"325\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"325\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"325\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"326\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"326\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,22.1875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"326\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"327\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"327\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,20,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"327\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"328\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"328\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,14.0625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"328\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"329\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"329\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"329\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"330\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"330\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,22.34375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"330\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"331\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"331\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,21.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"331\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"332\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"332\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,18.28125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"332\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"333\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"333\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"333\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"334\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"334\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,22.3125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"334\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"335\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"335\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,21,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"335\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"336\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"336\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,17.4375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"336\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"337\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"337\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"337\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"338\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"338\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,22.359375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"338\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"339\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"339\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,21.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"339\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"340\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"340\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,18.703125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"340\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"341\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"341\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"341\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"342\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"342\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,22.328125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"342\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"343\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"343\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,21.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"343\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"344\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"344\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,17.859375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"344\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"345\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"345\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"345\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"346\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"346\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,22.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"346\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"347\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"347\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,21.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"347\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"348\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"348\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,19.125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"348\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"349\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"349\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"349\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"350\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"350\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,22.34375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"350\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"351\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"351\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,21.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"351\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"352\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"352\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,18.28125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"352\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"353\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"353\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"353\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"354\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"354\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,22.21875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"354\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"355\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"355\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,20.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"355\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"356\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"356\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,14.90625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"356\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"357\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"357\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"357\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"358\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"358\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,22.234375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"358\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"359\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"359\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,20.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"359\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"360\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"360\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,15.328125,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"360\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"361\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"361\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"361\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"362\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"362\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,22.390625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"362\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"363\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"363\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,21.625,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"363\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"364\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"364\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,19.546875,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"364\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"365\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"365\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"365\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"366\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"366\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,22.25,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"366\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"367\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"367\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,20.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"367\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"368\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"368\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,15.75,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"368\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"369\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"369\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"369\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"370\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"370\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,22.359375,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"370\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"371\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"371\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,21.375,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"371\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"372\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"372\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,18.703125,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"372\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"373\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"373\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"373\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"374\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"374\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,22.40625,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"374\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"375\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"375\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,21.75,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"375\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"376\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"376\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,19.96875,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"376\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"377\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"377\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,22.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"377\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"378\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"378\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,22.375,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"378\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"379\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"379\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,21.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"379\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"380\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"380\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,19.125,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"380\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"381\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"381\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,22.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"381\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"382\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"382\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,22.421875,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"382\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"383\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"383\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,21.875,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"383\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"384\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"384\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,20.390625,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"384\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"385\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"385\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,22.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"385\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"386\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"386\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,22.390625,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"386\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"387\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"387\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,21.625,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"387\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"388\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"388\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,19.546875,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"388\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"389\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"389\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,22.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"389\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"390\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"390\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,22.265625,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"390\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"391\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"391\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,20.625,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"391\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"392\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"392\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,16.171875,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"392\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"393\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"393\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,22.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"393\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"394\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"394\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,22.4375,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"394\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"395\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"395\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,22,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"395\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"396\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"396\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,20.8125,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"396\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"397\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"397\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,22.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"397\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"398\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"398\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,22.28125],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"398\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"399\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"399\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,20.75],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"399\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"400\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"400\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,16.59375],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"400\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"401\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"401\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"401\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"402\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"402\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"402\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"403\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"403\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"403\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"404\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"404\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"404\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"405\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"405\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"405\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"406\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"406\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"406\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"407\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"407\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"407\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"408\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"408\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"408\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"409\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"409\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"409\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"410\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"410\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"410\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"411\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"411\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"411\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]},{\"name\":\"412\",\"data\":[{\"x\":[7,13,8,8,6,9,9,9,10,11,8,7,8,10,10,9,12,11,11,9,10,14,12,9,8,9,10,10,10,11,11,14,9,8,9,9,11,9,12,8,10,8,11,7,9,11,8,10,11,9],\"y\":[0.5,0.5,0.5,1.5,0.5,0.5,1.5,2.5,0.5,0.5,2.5,1.5,3.5,1.5,2.5,3.5,0.5,1.5,2.5,4.5,3.5,0.5,1.5,5.5,4.5,6.5,4.5,5.5,6.5,3.5,4.5,1.5,7.5,5.5,8.5,9.5,5.5,10.5,2.5,6.5,7.5,7.5,6.5,2.5,11.5,7.5,8.5,8.5,8.5,12.5],\"marker\":{\"color\":\"rgba(0,205,0,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,205,0,1)\"}},\"frame\":\"412\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #1\",\"textfont\":{\"color\":\"rgba(0,205,0,1)\"},\"error_y\":{\"color\":\"rgba(0,205,0,1)\"},\"error_x\":{\"color\":\"rgba(0,205,0,1)\"},\"line\":{\"color\":\"rgba(0,205,0,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[18,18,19,20,17,19,19,16,18,18,18,19,19,18,19,19,20,15,19,19,17,18,17,18,18,17,16,18,19,18,18,16,18,19,18,19,18,19,17,17,18,17,19,18,19,18,19,17,18,17],\"y\":[0.5,1.5,0.5,0.5,0.5,1.5,2.5,0.5,2.5,3.5,4.5,3.5,4.5,5.5,5.5,6.5,1.5,0.5,7.5,8.5,1.5,6.5,2.5,7.5,8.5,3.5,1.5,9.5,9.5,10.5,11.5,2.5,12.5,10.5,13.5,11.5,14.5,12.5,4.5,5.5,15.5,6.5,13.5,16.5,14.5,17.5,15.5,7.5,18.5,8.5],\"marker\":{\"color\":\"rgba(0,197,205,1)\",\"size\":16,\"line\":{\"color\":\"rgba(0,197,205,1)\"}},\"frame\":\"412\",\"type\":\"scatter\",\"mode\":\"markers\",\"name\":\"Island #2\",\"textfont\":{\"color\":\"rgba(0,197,205,1)\"},\"error_y\":{\"color\":\"rgba(0,197,205,1)\"},\"error_x\":{\"color\":\"rgba(0,197,205,1)\"},\"line\":{\"color\":\"rgba(0,197,205,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0,1]}],\"shinyEvents\":[\"plotly_hover\",\"plotly_click\",\"plotly_selected\",\"plotly_relayout\",\"plotly_brushed\",\"plotly_brushing\",\"plotly_clickannotation\",\"plotly_doubleclick\",\"plotly_deselect\",\"plotly_afterplot\",\"plotly_sunburstclick\"],\"base_url\":\"https://plot.ly\"},\"evals\":[],\"jsHooks\":[]}</script>\n</body>\n</html>\n"
  },
  {
    "path": "images/03_mean/Law_of_large_numbers.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<meta charset=\"utf-8\"/>\n<style>body{background-color:white;}</style>\n<script src=\"lib/htmlwidgets-1.5.4/htmlwidgets.js\"></script>\n<script src=\"lib/plotly-binding-4.10.0/plotly.js\"></script>\n<script src=\"lib/typedarray-0.1/typedarray.min.js\"></script>\n<script src=\"lib/jquery-3.5.1/jquery.min.js\"></script>\n<link href=\"lib/crosstalk-1.2.0/css/crosstalk.min.css\" rel=\"stylesheet\" />\n<script src=\"lib/crosstalk-1.2.0/js/crosstalk.min.js\"></script>\n<link href=\"lib/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css\" rel=\"stylesheet\" />\n<script src=\"lib/plotly-main-2.5.1/plotly-latest.min.js\"></script>\n\n</head>\n<body>\n<div id=\"htmlwidget-729b8228c9c3bee3571d\" style=\"width:550px;height:350px;\" class=\"plotly html-widget\"></div>\n<script type=\"application/json\" data-for=\"htmlwidget-729b8228c9c3bee3571d\">{\"x\":{\"visdat\":{\"1437b552ced64\":[\"function () \",\"plotlyVisDat\"]},\"cur_data\":\"1437b552ced64\",\"attrs\":{\"1437b552ced64\":{\"x\":{},\"y\":{},\"mode\":\"lines\",\"line\":{\"simplyfy\":false,\"color\":\"orangered\"},\"frame\":{},\"alpha_stroke\":1,\"sizes\":[10,100],\"spans\":[1,20],\"type\":\"scatter\"}},\"layout\":{\"width\":550,\"height\":350,\"margin\":{\"b\":10,\"l\":50,\"t\":10,\"r\":50,\"pad\":4},\"xaxis\":{\"domain\":[0,1],\"automargin\":true,\"title\":\"Sample Size (log10)\",\"zeroline\":false,\"range\":[0.85,4.15]},\"yaxis\":{\"domain\":[0,1],\"automargin\":true,\"range\":[-0.7,0.7],\"title\":\"Mean\",\"zeroline\":false},\"autosize\":false,\"hovermode\":\"closest\",\"showlegend\":false,\"sliders\":[],\"updatemenus\":[{\"type\":\"buttons\",\"direction\":\"right\",\"showactive\":false,\"y\":0,\"x\":1,\"yanchor\":\"bottom\",\"xanchor\":\"right\",\"pad\":{\"t\":60,\"r\":5},\"buttons\":[{\"label\":\"Play\",\"method\":\"animate\",\"args\":[null,{\"fromcurrent\":true,\"mode\":\"immediate\",\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":10,\"redraw\":false}}]}]}]},\"source\":\"A\",\"config\":{\"modeBarButtonsToAdd\":[\"hoverclosest\",\"hovercompare\"],\"showSendToCloud\":false,\"displayModeBar\":false},\"data\":[{\"x\":[1],\"y\":[0.129471146570758],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"10\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"highlight\":{\"on\":\"plotly_click\",\"persistent\":false,\"dynamic\":false,\"selectize\":false,\"opacityDim\":0.2,\"selected\":{\"opacity\":1},\"debounce\":0},\"frames\":[{\"name\":\"10\",\"data\":[{\"x\":[1],\"y\":[0.129471146570758],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"10\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"10.23372\",\"data\":[{\"x\":[1,1.01003344481605],\"y\":[0.129471146570758,0.605600692807506],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"10.2337179863252\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"10.4729\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"10.4728983823636\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"10.71767\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"10.717668854455\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"10.96816\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"10.9681600527314\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"11.22451\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"11.2245056808531\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"11.48684\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"11.4868425673755\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"11.75531\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"11.7553107387837\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"12.03005\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"12.0300534942332\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"12.31122\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"12.3112174820389\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"12.59895\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"12.5989527779503\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"12.89341\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"12.8934129652572\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"13.19476\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"13.1947552167671\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"13.50314\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"13.5031403786987\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"13.81873\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"13.8187330565363\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"14.1417\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"14.1417017028902\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"14.47222\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"14.4722187074114\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"14.81046\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"14.8104604888068\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"15.15661\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"15.156607589006\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"15.51084\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"15.5108447695284\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"15.87336\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"15.8733611101021\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"16.24435\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"16.2443501095887\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"16.62401\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"16.6240097892661\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"17.01254\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"17.0125427985259\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"17.41016\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"17.4101565230402\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"17.81706\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"17.8170631954573\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"18.23348\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"18.2334800086844\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"18.65963\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"18.6596292318175\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"19.09574\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"19.095738328781\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"19.54204\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"19.5420400797405\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"19.99877\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"19.9987727053529\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"20.46618\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"20.4661799939199\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"20.94451\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"20.9445114315147\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"21.43402\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"21.4340223351486\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"21.93497\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"21.9349739890506\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"22.44763\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"22.4476337841322\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"22.97228\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"22.9722753607115\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"23.50918\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"23.5091787545729\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"24.05863\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"24.0586305464407\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"24.62092\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"24.6209240149463\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"25.19636\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"25.1963592931702\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"25.78524\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"25.7852435288427\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"26.38789\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"26.3878910482893\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"27.00462\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"27.0046235242068\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"27.63577\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"27.6357701473616\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"28.28167\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"28.2816678023003\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"28.94266\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"28.9426612471675\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"29.6191\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"29.6191032977255\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"30.31136\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"30.3113550156758\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"31.01979\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"31.019785901381\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"31.74477\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"31.7447740910919\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"32.48671\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"32.4867065587838\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"33.24598\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"33.2459793227094\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"34.023\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"34.0229976567807\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"34.81818\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"34.8181763068897\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"35.63194\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"35.6319397122859\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"36.46472\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"36.4647222321275\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"37.31697\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"37.3169683773275\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"38.18913\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"38.1891330478186\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"39.08168\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"39.0816817753627\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"39.99509\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"39.9950909720367\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"40.92985\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"40.9298481845244\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"41.88645\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"41.8864523543527\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"42.86541\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"42.8654140842093\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"43.86726\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"43.867255910485\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"44.89251\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"44.8925125821861\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"45.94173\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"45.9417313463648\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"47.01547\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"47.0154722402213\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"48.11431\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"48.1143083900326\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"49.23883\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"49.2388263170674\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"50.38963\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"50.3896262506515\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"51.56732\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"51.5673224485497\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"52.77254\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"52.7725435248354\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"54.00593\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"54.0059327854238\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"55.26815\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"55.268148571446\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"56.55986\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"56.5598646106501\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"57.88177\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"57.8817703770128\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"59.23457\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"59.2345714587581\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"60.61899\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"60.6189899349758\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"62.03576\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"62.0357647610427\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"63.48565\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"63.4856521630522\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"64.96943\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"64.9694260414612\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"66.48788\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"66.4878783841727\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"68.04182\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"68.041819689271\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"69.63208\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"69.6320793976389\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"71.25951\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"71.2595063356841\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"72.92497\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"72.9249691684145\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"74.62936\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"74.6293568631014\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"76.37358\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"76.3735791637802\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"78.15857\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"78.1585670768409\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"79.98527\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"79.9852733679672\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"81.85467\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"81.8546730706903\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"83.76776\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"83.7677640068292\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"85.72557\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"85.7255673190933\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"87.72913\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"87.7291280161336\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"89.77952\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"89.7795155303332\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"91.87782\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"91.8778242886334\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"94.02517\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"94.0251742967014\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"96.22271\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"96.2227117367514\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"98.47161\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"98.4716095793378\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"100.7731\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"100.773068209446\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"103.1283\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"103.128316067219\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"105.5386\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"105.538610303652\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"108.0052\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"108.005237451625\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"110.5295\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"110.529514112602\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"113.1128\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"113.112787659392\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"115.7564\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"115.75643695533\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"118.4619\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"118.461873090268\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"121.2305\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"121.230540133765\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"124.0639\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"124.063915905883\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"126.9635\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"126.963512765997\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"129.9309\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"129.930878420042\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"132.9676\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"132.967596746621\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"136.0753\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"136.075288642433\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"139.2556\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"139.255612887446\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"142.5103\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"142.5102670303\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"145.841\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"145.840988294399\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"149.2496\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"149.249554505183\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"152.7378\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"152.737785039071\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"156.3075\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"156.307541794582\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"159.9607\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"159.960730186149\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"163.6993\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"163.69930016117\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"167.5252\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"167.525247240822\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"171.4406\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"171.440613585197\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"175.4475\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"175.447489083346\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"179.548\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"179.548012468783\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"183.7444\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"183.744372461073\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"188.0388\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"188.038808934092\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"192.4336\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"192.433614111598\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"196.9311\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"196.931133790742\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"201.5338\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"201.533768594173\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"206.244\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"206.243975251409\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"211.0643\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"211.064267910156\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"215.9972\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"215.997219478272\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"221.0455\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"221.045462997102\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"226.2117\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"226.211693046903\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"231.4987\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"231.498667185116\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"236.9092\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"236.909207418264\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"242.4462\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"242.446201708233\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"248.1126\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"248.112605513777\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"253.9114\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"253.911443368035\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"259.8458\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"259.845810492925\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"265.9189\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"265.91887445127\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"272.1339\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"272.133876837531\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"278.4941\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"278.494135008065\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"285.003\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"285.003043851811\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"291.6641\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"291.66407760237\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"298.4808\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"298.480791692433\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"305.4568\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"305.456824651544\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"312.5959\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"312.595900048228\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"319.9018\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"319.901828477507\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"327.3785\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"327.378509594858\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"335.0299\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"335.029934197723\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"342.8602\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"342.860186355659\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"350.8734\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"350.873445590271\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"359.074\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"359.073989106106\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"367.4662\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"367.466194073669\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"376.0545\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"376.054539965817\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"384.8436\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"384.843610948743\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"393.8381\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"393.838098328849\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"403.0428\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"403.042803056806\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"412.4626\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"412.462638290136\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"422.1026\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"422.10263201569\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"431.9679\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"431.967929733417\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"442.0638\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"442.063797202853\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"452.3956\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"452.395623253806\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"462.9689\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"462.968922662727\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"473.7893\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"473.789339096315\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"484.8626\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"484.862648123909\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"496.1948\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"496.194760300291\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"507.7917\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"507.79172432054\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"519.6597\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"519.65973024862\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"531.8051\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"531.80511282142\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"544.2344\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"544.234354830027\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"556.9541\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"556.954090580014\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"569.9711\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"569.971109432608\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"583.2924\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"583.292359428621\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"596.925\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"596.924950997074\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"610.8762\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"610.876160750504\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"625.1534\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"625.153435368972\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"639.7644\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"639.764395574843\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"654.7168\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"654.716840200474\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"670.0188\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"670.01875035096\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"685.6783\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"685.678293664174\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"701.7038\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"701.703828670383\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"718.1039\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"718.103909253735\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"734.8873\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"734.887289218039\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"752.0629\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"752.062926959242\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"769.64\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"769.639990247116\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"787.6279\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"787.627861118707\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"806.0361\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"806.036140886135\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"824.8747\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"824.874655261459\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"844.1535\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"844.153459601299\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"863.8828\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"863.882844274045\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"884.0733\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"884.073340152507\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"904.7357\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"904.73572423493\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"925.881\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"925.881025397396\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"947.5205\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"947.520530280655\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"969.6658\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"969.665789314553\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"992.3286\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"992.328622883256\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1015.521\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1015.52112763457\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1039.256\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1039.25568293671\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1063.545\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1063.54495748601\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1088.402\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1088.40191606901\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1113.84\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1113.83982648262\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1139.872\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1139.87226661605\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1166.513\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1166.5131316982\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1193.777\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1193.77664171444\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1221.677\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1221.67734899679\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1250.23\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1250.23014599146\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1279.45\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1279.45027320787\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1309.353\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1309.35332735361\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1339.955\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1339.95526965934\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1371.272\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1371.2724343984\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1403.322\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1403.32153760549\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1436.12\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1436.11968599908\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1469.684\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1469.68438611245\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1504.034\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1504.03355363803\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1539.186\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1539.18552299021\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1575.159\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1575.15905709162\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1611.973\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1611.97335738816\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1649.648\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1649.64807409802\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1688.203\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1688.20331670036\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1727.66\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1727.65966466904\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1768.038\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1768.03817845721\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1809.36\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1809.36041073872\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1851.648\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1851.64841791216\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1894.925\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1894.92477187382\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1939.213\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1939.21257206583\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1984.535\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"1984.5354578058\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2030.918\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2030.91762090474\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2078.384\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2078.38381857976\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2126.959\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2126.95938666869\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2176.67\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2176.67025315346\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2227.543\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2227.54295199956\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2279.605\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2279.60463731898\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2332.883\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2332.88309786416\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2387.407\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2387.40677186065\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2443.205\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2443.20476218649\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2500.307\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2500.30685190633\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2558.744\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2558.74352016859\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2618.546\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2618.54595847423\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2679.746\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2679.74608732569\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2742.377\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2742.37657326495\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2806.471\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2806.47084630984\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2872.063\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2872.06311779783\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2939.188\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"2939.18839864689\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3007.883\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3007.8825180431\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3078.182\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3078.18214256508\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3150.125\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3150.12479575533\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3223.749\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3223.74887814903\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3299.094\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3299.09368777094\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3376.199\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3376.19944111135\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3455.107\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3455.10729459222\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3535.859\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3535.85936653518\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3618.499\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3618.49875964275\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3703.07\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3703.06958400514\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3789.617\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3789.61698064472\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3878.187\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3878.18714561073\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3968.827\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"3968.82735463716\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"4061.586\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"4061.58598837699\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"4156.513\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"4156.51255822599\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"4253.658\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"4253.65773275039\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"4353.073\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"4353.0733647319\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"4454.813\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"4454.81251884499\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"4558.929\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"4558.92949998106\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"4665.48\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"4665.47988223448\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"4774.521\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"4774.52053856613\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"4886.11\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"4886.10967116033\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"5000.307\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"5000.3068424911\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"5117.173\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"5117.1730071146\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"5236.771\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"5236.77054420466\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"5359.163\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"5359.16329084852\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"5484.417\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"5484.41657612102\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"5612.597\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"5612.59725595498\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"5743.774\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"5743.77374882659\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"5878.016\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"5878.01607227492\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"6015.396\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"6015.39588027485\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"6155.987\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"6155.98650148352\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"6299.863\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"6299.86297838069\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"6447.102\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"6447.10210732388\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"6597.782\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"6597.78247953955\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"6751.985\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"6751.98452307251\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"6909.791\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"6909.79054571566\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"7071.285\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"7071.284778943\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"7236.553\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"7236.55342286966\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"7405.685\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"7405.68469226245\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"7578.769\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"7578.76886362593\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"7755.898\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"7755.89832338901\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"7937.168\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"7937.16761721755\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"8122.674\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"8122.67350047972\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"8312.515\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552,3.91973244147157],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167,0.00274955598574463],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"8312.51498989064\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"8506.793\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552,3.91973244147157,3.92976588628763],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167,0.00274955598574463,0.00936755136407535],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"8506.79341636416\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"8705.612\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552,3.91973244147157,3.92976588628763,3.93979933110368],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167,0.00274955598574463,0.00936755136407535,-0.0055396785935177],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"8705.61247909987\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"8909.078\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552,3.91973244147157,3.92976588628763,3.93979933110368,3.94983277591973],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167,0.00274955598574463,0.00936755136407535,-0.0055396785935177,0.0111730869743262],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"8909.07830093415\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"9117.299\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552,3.91973244147157,3.92976588628763,3.93979933110368,3.94983277591973,3.95986622073579],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167,0.00274955598574463,0.00936755136407535,-0.0055396785935177,0.0111730869743262,0.0249839955007581],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"9117.29948498493\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"9330.387\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552,3.91973244147157,3.92976588628763,3.93979933110368,3.94983277591973,3.95986622073579,3.96989966555184],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167,0.00274955598574463,0.00936755136407535,-0.0055396785935177,0.0111730869743262,0.0249839955007581,0.0207807906344895],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"9330.38717262037\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"9548.455\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552,3.91973244147157,3.92976588628763,3.93979933110368,3.94983277591973,3.95986622073579,3.96989966555184,3.97993311036789],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167,0.00274955598574463,0.00936755136407535,-0.0055396785935177,0.0111730869743262,0.0249839955007581,0.0207807906344895,-0.00185789092671876],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"9548.45510278231\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"9771.62\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552,3.91973244147157,3.92976588628763,3.93979933110368,3.94983277591973,3.95986622073579,3.96989966555184,3.97993311036789,3.98996655518395],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167,0.00274955598574463,0.00936755136407535,-0.0055396785935177,0.0111730869743262,0.0249839955007581,0.0207807906344895,-0.00185789092671876,0.00147091290820801],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"9771.61967269619\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"10000\",\"data\":[{\"x\":[1,1.01003344481605,1.02006688963211,1.03010033444816,1.04013377926421,1.05016722408027,1.06020066889632,1.07023411371237,1.08026755852843,1.09030100334448,1.10033444816054,1.11036789297659,1.12040133779264,1.1304347826087,1.14046822742475,1.1505016722408,1.16053511705686,1.17056856187291,1.18060200668896,1.19063545150502,1.20066889632107,1.21070234113712,1.22073578595318,1.23076923076923,1.24080267558528,1.25083612040134,1.26086956521739,1.27090301003345,1.2809364548495,1.29096989966555,1.30100334448161,1.31103678929766,1.32107023411371,1.33110367892977,1.34113712374582,1.35117056856187,1.36120401337793,1.37123745819398,1.38127090301003,1.39130434782609,1.40133779264214,1.41137123745819,1.42140468227425,1.4314381270903,1.44147157190635,1.45150501672241,1.46153846153846,1.47157190635452,1.48160535117057,1.49163879598662,1.50167224080268,1.51170568561873,1.52173913043478,1.53177257525084,1.54180602006689,1.55183946488294,1.561872909699,1.57190635451505,1.5819397993311,1.59197324414716,1.60200668896321,1.61204013377926,1.62207357859532,1.63210702341137,1.64214046822742,1.65217391304348,1.66220735785953,1.67224080267559,1.68227424749164,1.69230769230769,1.70234113712375,1.7123745819398,1.72240802675585,1.73244147157191,1.74247491638796,1.75250836120401,1.76254180602007,1.77257525083612,1.78260869565217,1.79264214046823,1.80267558528428,1.81270903010033,1.82274247491639,1.83277591973244,1.8428093645485,1.85284280936455,1.8628762541806,1.87290969899666,1.88294314381271,1.89297658862876,1.90301003344482,1.91304347826087,1.92307692307692,1.93311036789298,1.94314381270903,1.95317725752508,1.96321070234114,1.97324414715719,1.98327759197324,1.9933110367893,2.00334448160535,2.0133779264214,2.02341137123746,2.03344481605351,2.04347826086957,2.05351170568562,2.06354515050167,2.07357859531773,2.08361204013378,2.09364548494983,2.10367892976589,2.11371237458194,2.12374581939799,2.13377926421405,2.1438127090301,2.15384615384615,2.16387959866221,2.17391304347826,2.18394648829431,2.19397993311037,2.20401337792642,2.21404682274248,2.22408026755853,2.23411371237458,2.24414715719064,2.25418060200669,2.26421404682274,2.2742474916388,2.28428093645485,2.2943143812709,2.30434782608696,2.31438127090301,2.32441471571906,2.33444816053512,2.34448160535117,2.35451505016722,2.36454849498328,2.37458193979933,2.38461538461539,2.39464882943144,2.40468227424749,2.41471571906355,2.4247491638796,2.43478260869565,2.44481605351171,2.45484949832776,2.46488294314381,2.47491638795987,2.48494983277592,2.49498327759197,2.50501672240803,2.51505016722408,2.52508361204013,2.53511705685619,2.54515050167224,2.55518394648829,2.56521739130435,2.5752508361204,2.58528428093646,2.59531772575251,2.60535117056856,2.61538461538462,2.62541806020067,2.63545150501672,2.64548494983278,2.65551839464883,2.66555183946488,2.67558528428094,2.68561872909699,2.69565217391304,2.7056856187291,2.71571906354515,2.7257525083612,2.73578595317726,2.74581939799331,2.75585284280936,2.76588628762542,2.77591973244147,2.78595317725753,2.79598662207358,2.80602006688963,2.81605351170569,2.82608695652174,2.83612040133779,2.84615384615385,2.8561872909699,2.86622073578595,2.87625418060201,2.88628762541806,2.89632107023411,2.90635451505017,2.91638795986622,2.92642140468227,2.93645484949833,2.94648829431438,2.95652173913044,2.96655518394649,2.97658862876254,2.9866220735786,2.99665551839465,3.0066889632107,3.01672240802676,3.02675585284281,3.03678929765886,3.04682274247492,3.05685618729097,3.06688963210702,3.07692307692308,3.08695652173913,3.09698996655518,3.10702341137124,3.11705685618729,3.12709030100334,3.1371237458194,3.14715719063545,3.15719063545151,3.16722408026756,3.17725752508361,3.18729096989967,3.19732441471572,3.20735785953177,3.21739130434783,3.22742474916388,3.23745819397993,3.24749163879599,3.25752508361204,3.26755852842809,3.27759197324415,3.2876254180602,3.29765886287625,3.30769230769231,3.31772575250836,3.32775919732441,3.33779264214047,3.34782608695652,3.35785953177258,3.36789297658863,3.37792642140468,3.38795986622074,3.39799331103679,3.40802675585284,3.4180602006689,3.42809364548495,3.438127090301,3.44816053511706,3.45819397993311,3.46822742474916,3.47826086956522,3.48829431438127,3.49832775919733,3.50836120401338,3.51839464882943,3.52842809364549,3.53846153846154,3.54849498327759,3.55852842809365,3.5685618729097,3.57859531772575,3.58862876254181,3.59866220735786,3.60869565217391,3.61872909698997,3.62876254180602,3.63879598662207,3.64882943143813,3.65886287625418,3.66889632107024,3.67892976588629,3.68896321070234,3.6989966555184,3.70903010033445,3.7190635451505,3.72909698996656,3.73913043478261,3.74916387959866,3.75919732441472,3.76923076923077,3.77926421404682,3.78929765886288,3.79933110367893,3.80936454849498,3.81939799331104,3.82943143812709,3.83946488294314,3.8494983277592,3.85953177257525,3.86956521739131,3.87959866220736,3.88963210702341,3.89966555183946,3.90969899665552,3.91973244147157,3.92976588628763,3.93979933110368,3.94983277591973,3.95986622073579,3.96989966555184,3.97993311036789,3.98996655518395,4],\"y\":[0.129471146570758,0.605600692807506,-0.294037234899229,-0.000197119830139988,-0.0378758990570657,0.42594007931179,-0.106062205015486,-0.0536742156043786,0.363285941910988,-0.305413033944471,-0.367649755517442,-0.0589241353209227,0.213987454168507,-0.186510373057141,0.00535121667625174,-0.0611472032685878,0.00828913109748147,0.127755913527449,-0.0495959461128105,0.0407033430530533,-0.225317322510949,-0.0561184778363404,-0.0316107004205989,-0.0496068715206646,-0.132485324881551,0.0335317307738388,0.00132865403179548,0.151939030648312,-0.260630803645647,0.0303355138285662,0.307530338810522,-0.285256555459891,-0.446086339719389,-0.0747301692865597,-0.228155269137303,0.060765864719143,-0.157652953757398,0.00560157531621951,-0.0425909652150348,-0.189518516339644,0.0921607831368127,0.192940119234172,-0.380160864116583,-0.133825565353737,0.0564660098219818,0.147653416835624,-0.15066164632886,0.334473685950768,-0.0185047012373388,-0.170061972274541,0.244442366189119,0.17664744927792,0.165366839881742,-0.24979185691849,0.0344056128879839,0.00664750005836469,0.0816921356684179,-0.183371759702649,-0.228375442451915,0.0652469118878863,0.332453853545144,0.0852392457569282,0.212569039465652,0.0805974759485277,-0.13691122558539,-0.11789313688999,-0.0892679591323888,0.184760585069702,-0.00863826426466035,0.0683133003265774,-0.0683196540189054,0.145491368789106,0.198633468094088,-0.0479777581510421,0.213485609969113,0.0373562147155845,-0.00891524629034969,-0.0934305372021852,-0.0568456580711599,0.0667329681444916,-0.134803945500408,-0.094822587004435,-0.0620245508994297,0.0142449563620478,0.0414770195430369,-0.0642155325918944,-0.0780720296203468,0.0520893535277631,0.0240177200524437,0.0724740806406723,-0.253177616048861,0.12587771801922,-0.123066170224554,0.142786528620429,-0.171025526366698,0.00819990818465805,0.0773875741046452,0.0306099592804913,-0.0711723118494438,0.166204155365834,0.215175337009582,0.0624661048290922,0.152014922009362,-0.0279383026397891,-0.12214656962423,0.178927763807749,0.0322211839508532,0.0334044888633485,-0.0822708436933081,0.0722910241510152,0.0210932770719584,-0.0820775290573213,0.135391046680314,0.0499246152416938,-0.032464661374241,-0.106346047026431,-0.0615108672134998,0.0506356109142456,0.0588318399376384,-0.108016830808402,-0.0979507219786872,-0.0746712923603733,-0.134146834994606,-0.0106659936426858,-0.0967294873510331,0.0169979891069629,-0.0627456079695585,-0.115832984232627,-0.0074659936723055,0.00380939732352587,0.0697493971331185,0.0363632519536204,0.0353274984279131,0.046461644138066,0.0927132058463601,0.00188396419024459,0.0400244700476122,-0.057891778295423,-0.0351392235332982,0.101773089130128,0.0592491813294117,-0.0131973690970211,0.0176914220108897,-0.00596517467582838,-0.0203711561473542,-0.111997502878431,-0.0346573980507439,-0.0579694260900559,0.0197574255775387,-0.0490236673516809,0.046473657239214,0.0679329656936522,-0.0237528432554556,-0.00257590534224022,0.0184516249517567,0.0325168865979016,-0.0728176543870709,0.035741736723141,0.0858505384411335,0.0808132242527167,0.00986340802476401,0.0257094951698262,-0.070806787637115,0.0150210758594029,-0.0163591258767674,-0.000832434821754895,0.0557273045401108,0.00279160336597901,0.0293322460321871,0.0135688129949232,0.00735635254070241,-0.0609883037056828,0.0385850396059252,0.0363562914119025,0.0609195614635915,0.047612108305202,-0.0463483114981052,0.0469172684792122,0.0452310253664271,0.00227121728001962,-0.0445223261697577,-0.0604080268063775,0.00303680854493132,-0.0836800527294612,0.0294760657647934,-0.0321635724392573,-0.0159409989760479,-0.0158763755224147,-0.0185361400934515,0.0332612221434869,0.00272620897043014,0.0296878325292346,0.0184186382661288,-0.00506409943322209,0.023738222265995,-0.0128718051526635,0.0234659693737726,0.0132834464288995,-0.0472022574906906,0.0844542154190438,0.0213827997441144,-0.0096675652912241,-0.0106497835521401,-0.032605775874796,-0.00797650722610269,-0.0329919668171316,0.0148652332099624,-0.0439048181413264,0.00627904135910903,-0.00146032162355478,0.0274631229746395,-0.00326561364261231,0.0296883188806381,0.0341514742424119,-0.0254770491671459,-0.0188644971877202,0.0245361308519127,0.0335793815229315,0.0244342671767622,-0.0513128848339283,0.0321684279163803,0.000972111176721259,0.011494230920076,-0.0186772309238285,0.0175934595438188,0.0313162651774781,-0.013176141523664,-0.00625517257617603,-0.0222187879906747,0.0208181971341398,-0.0392187291411585,-0.00791161169239528,-0.0107766116259865,-0.0156047650863299,-0.00435355591000838,-0.012154533802497,0.00253161609490551,0.0494862930527046,0.00201050206842812,0.0204122428697857,0.0451360602183128,0.00752473826636466,-0.00163676719435801,0.0219159432994615,0.0269519859440254,-0.0176793379618445,0.0055259982136189,0.0167285315862942,0.00449087113135476,-0.00662768375975729,-0.0219161612838651,-0.0379990822275504,-0.0063410994197558,-0.0343890287276404,0.0117554191678512,-0.00804853888723656,-0.000597844928537049,-0.00258416030153399,0.0412326362603081,0.016538444642466,-0.00708390689066237,0.0112928766454351,-0.0188305224712685,0.00779307715289461,-0.00656916935359865,-0.0128350835894002,-0.0276833408401628,0.00673543777118135,0.0045872685360224,-0.0181922360537555,-0.00843457168480894,0.0188059476937205,0.00356882109749303,0.00713320265492924,0.0151041293870567,-0.010008254574919,-0.000496996257507195,-0.023810108490571,-0.0218340533645373,-0.00946820709136173,0.00958051651872476,-0.010956486242346,0.0043118663951892,-0.0207773722911057,-0.0186683572060417,0.00738037077300946,0.00362988597622564,-0.00464533401848382,-0.00332254343153849,-0.0165622804515286,0.0112130059303167,0.00274955598574463,0.00936755136407535,-0.0055396785935177,0.0111730869743262,0.0249839955007581,0.0207807906344895,-0.00185789092671876,0.00147091290820801,0.00820681136465592],\"mode\":\"lines\",\"line\":{\"color\":\"orangered\",\"simplyfy\":false},\"frame\":\"10000\",\"type\":\"scatter\",\"marker\":{\"color\":\"rgba(31,119,180,1)\",\"line\":{\"color\":\"rgba(31,119,180,1)\"}},\"error_y\":{\"color\":\"rgba(31,119,180,1)\"},\"error_x\":{\"color\":\"rgba(31,119,180,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]}],\"shinyEvents\":[\"plotly_hover\",\"plotly_click\",\"plotly_selected\",\"plotly_relayout\",\"plotly_brushed\",\"plotly_brushing\",\"plotly_clickannotation\",\"plotly_doubleclick\",\"plotly_deselect\",\"plotly_afterplot\",\"plotly_sunburstclick\"],\"base_url\":\"https://plot.ly\"},\"evals\":[],\"jsHooks\":[]}</script>\n</body>\n</html>\n"
  },
  {
    "path": "images/03_mean/lib/crosstalk-1.0.0/css/crosstalk.css",
    "content": "/* Adjust margins outwards, so column contents line up with the edges of the\n   parent of container-fluid. */\n.container-fluid.crosstalk-bscols {\n  margin-left: -30px;\n  margin-right: -30px;\n  white-space: normal;\n}\n\n/* But don't adjust the margins outwards if we're directly under the body,\n   i.e. we were the top-level of something at the console. */\nbody > .container-fluid.crosstalk-bscols {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n  display: inline-block;\n  padding-right: 12px;\n  vertical-align: top;\n}\n\n@media only screen and (max-width:480px) {\n  .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n    display: block;\n    padding-right: inherit;\n  }\n}\n"
  },
  {
    "path": "images/03_mean/lib/crosstalk-1.0.0/js/crosstalk.js",
    "content": "(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Events = function () {\n  function Events() {\n    _classCallCheck(this, Events);\n\n    this._types = {};\n    this._seq = 0;\n  }\n\n  _createClass(Events, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var subs = this._types[eventType];\n      if (!subs) {\n        subs = this._types[eventType] = {};\n      }\n      var sub = \"sub\" + this._seq++;\n      subs[sub] = listener;\n      return sub;\n    }\n\n    // Returns false if no match, or string for sub name if matched\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var subs = this._types[eventType];\n      if (typeof listener === \"function\") {\n        for (var key in subs) {\n          if (subs.hasOwnProperty(key)) {\n            if (subs[key] === listener) {\n              delete subs[key];\n              return key;\n            }\n          }\n        }\n        return false;\n      } else if (typeof listener === \"string\") {\n        if (subs && subs[listener]) {\n          delete subs[listener];\n          return listener;\n        }\n        return false;\n      } else {\n        throw new Error(\"Unexpected type for listener\");\n      }\n    }\n  }, {\n    key: \"trigger\",\n    value: function trigger(eventType, arg, thisObj) {\n      var subs = this._types[eventType];\n      for (var key in subs) {\n        if (subs.hasOwnProperty(key)) {\n          subs[key].call(thisObj, arg);\n        }\n      }\n    }\n  }]);\n\n  return Events;\n}();\n\nexports.default = Events;\n\n},{}],2:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.FilterHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _filterset = require(\"./filterset\");\n\nvar _filterset2 = _interopRequireDefault(_filterset);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction getFilterSet(group) {\n  var fsVar = group.var(\"filterset\");\n  var result = fsVar.get();\n  if (!result) {\n    result = new _filterset2.default();\n    fsVar.set(result);\n  }\n  return result;\n}\n\nvar id = 1;\nfunction nextId() {\n  return id++;\n}\n\nvar FilterHandle = exports.FilterHandle = function () {\n  /**\n   * @classdesc\n   * Use this class to contribute to, and listen for changes to, the filter set\n   * for the given group of widgets. Filter input controls should create one\n   * `FilterHandle` and only call {@link FilterHandle#set}. Output widgets that\n   * wish to displayed filtered data should create one `FilterHandle` and use\n   * the {@link FilterHandle#filteredKeys} property and listen for change\n   * events.\n   *\n   * If two (or more) `FilterHandle` instances in the same webpage share the\n   * same group name, they will contribute to a single \"filter set\". Each\n   * `FilterHandle` starts out with a `null` value, which means they take\n   * nothing away from the set of data that should be shown. To make a\n   * `FilterHandle` actually remove data from the filter set, set its value to\n   * an array of keys which should be displayed. Crosstalk will aggregate the\n   * various key arrays by finding their intersection; only keys that are\n   * present in all non-null filter handles are considered part of the filter\n   * set.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the @{link FilterHandle#setGroup} method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function FilterHandle(group, extraInfo) {\n    _classCallCheck(this, FilterHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The filterSet that we're tracking, if any. Can change over time.\n    this._filterSet = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._filterVar = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this._id = \"filter\" + nextId();\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this FilterHandle. If `set()` was\n   * previously called on this handle, switching groups will clear those keys\n   * from the old group's filter set. These keys will not be applied to the new\n   * group's filter set either. In other words, `setGroup()` effectively calls\n   * `clear()` before switching groups.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(FilterHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._filterVar) {\n        this._filterVar.off(\"change\", this._varOnChangeSub);\n        this.clear();\n        this._varOnChangeSub = null;\n        this._filterVar = null;\n        this._filterSet = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        group = (0, _group2.default)(group);\n        this._filterSet = getFilterSet(group);\n        this._filterVar = (0, _group2.default)(group).var(\"filter\");\n        var sub = this._filterVar.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Combine the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n    value: function _mergeExtraInfo(extraInfo) {\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Close the handle. This clears this handle's contribution to the filter set,\n     * and unsubscribes all event listeners.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.clear();\n      this.setGroup(null);\n    }\n\n    /**\n     * Clear this handle's contribution to the filter set.\n     *\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.clear(this._id);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * Set this handle's contribution to the filter set. This array should consist\n     * of the keys of the rows that _should_ be displayed; any keys that are not\n     * present in the array will be considered _filtered out_. Note that multiple\n     * `FilterHandle` instances in the group may each contribute an array of keys,\n     * and only those keys that appear in _all_ of the arrays make it through the\n     * filter.\n     *\n     * @param {string[]} keys - Empty array, or array of keys. To clear the\n     *   filter, don't pass an empty array; instead, use the\n     *   {@link FilterHandle#clear} method.\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(keys, extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.update(this._id, keys);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * @return {string[]|null} - Either: 1) an array of keys that made it through\n     *   all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n     *   is being applied (all data should be displayed).\n     */\n\n  }, {\n    key: \"on\",\n\n\n    /**\n     * Subscribe to events on this `FilterHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {FilterHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n     *   this subscription.\n     */\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancel event subscriptions created by {@link FilterHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|FilterHandle~listener} listener - Either the callback\n     *   function previously passed into {@link FilterHandle#on}, or the\n     *   string that was returned from {@link FilterHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n  }, {\n    key: \"_onChange\",\n    value: function _onChange(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * @callback FilterHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the filter set, or `null` if no filter set is active),\n     *   `oldValue` (the previous value of the filter set), and `sender` (the\n     *   `FilterHandle` instance that made the change).\n     */\n\n    /**\n     * @event FilterHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the filter set, or `null`\n     *   if no filter set is active.\n     * @property {object} oldValue - The previous value of the filter set.\n     * @property {FilterHandle} sender - The `FilterHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"filteredKeys\",\n    get: function get() {\n      return this._filterSet ? this._filterSet.value : null;\n    }\n  }]);\n\n  return FilterHandle;\n}();\n\n},{\"./events\":1,\"./filterset\":3,\"./group\":4,\"./util\":11}],3:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _util = require(\"./util\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction naturalComparator(a, b) {\n  if (a === b) {\n    return 0;\n  } else if (a < b) {\n    return -1;\n  } else if (a > b) {\n    return 1;\n  }\n}\n\n/**\n * @private\n */\n\nvar FilterSet = function () {\n  function FilterSet() {\n    _classCallCheck(this, FilterSet);\n\n    this.reset();\n  }\n\n  _createClass(FilterSet, [{\n    key: \"reset\",\n    value: function reset() {\n      // Key: handle ID, Value: array of selected keys, or null\n      this._handles = {};\n      // Key: key string, Value: count of handles that include it\n      this._keys = {};\n      this._value = null;\n      this._activeHandles = 0;\n    }\n  }, {\n    key: \"update\",\n    value: function update(handleId, keys) {\n      if (keys !== null) {\n        keys = keys.slice(0); // clone before sorting\n        keys.sort(naturalComparator);\n      }\n\n      var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys),\n          added = _diffSortedLists.added,\n          removed = _diffSortedLists.removed;\n\n      this._handles[handleId] = keys;\n\n      for (var i = 0; i < added.length; i++) {\n        this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n      }\n      for (var _i = 0; _i < removed.length; _i++) {\n        this._keys[removed[_i]]--;\n      }\n\n      this._updateValue(keys);\n    }\n\n    /**\n     * @param {string[]} keys Sorted array of strings that indicate\n     * a superset of possible keys.\n     * @private\n     */\n\n  }, {\n    key: \"_updateValue\",\n    value: function _updateValue() {\n      var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys;\n\n      var handleCount = Object.keys(this._handles).length;\n      if (handleCount === 0) {\n        this._value = null;\n      } else {\n        this._value = [];\n        for (var i = 0; i < keys.length; i++) {\n          var count = this._keys[keys[i]];\n          if (count === handleCount) {\n            this._value.push(keys[i]);\n          }\n        }\n      }\n    }\n  }, {\n    key: \"clear\",\n    value: function clear(handleId) {\n      if (typeof this._handles[handleId] === \"undefined\") {\n        return;\n      }\n\n      var keys = this._handles[handleId];\n      if (!keys) {\n        keys = [];\n      }\n\n      for (var i = 0; i < keys.length; i++) {\n        this._keys[keys[i]]--;\n      }\n      delete this._handles[handleId];\n\n      this._updateValue();\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"_allKeys\",\n    get: function get() {\n      var allKeys = Object.keys(this._keys);\n      allKeys.sort(naturalComparator);\n      return allKeys;\n    }\n  }]);\n\n  return FilterSet;\n}();\n\nexports.default = FilterSet;\n\n},{\"./util\":11}],4:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.default = group;\n\nvar _var2 = require(\"./var\");\n\nvar _var3 = _interopRequireDefault(_var2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nvar groups = global.__crosstalk_groups;\n\nfunction group(groupName) {\n  if (groupName && typeof groupName === \"string\") {\n    if (!groups.hasOwnProperty(groupName)) {\n      groups[groupName] = new Group(groupName);\n    }\n    return groups[groupName];\n  } else if ((typeof groupName === \"undefined\" ? \"undefined\" : _typeof(groupName)) === \"object\" && groupName._vars && groupName.var) {\n    // Appears to already be a group object\n    return groupName;\n  } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === \"string\") {\n    return group(groupName[0]);\n  } else {\n    throw new Error(\"Invalid groupName argument\");\n  }\n}\n\nvar Group = function () {\n  function Group(name) {\n    _classCallCheck(this, Group);\n\n    this.name = name;\n    this._vars = {};\n  }\n\n  _createClass(Group, [{\n    key: \"var\",\n    value: function _var(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name);\n      return this._vars[name];\n    }\n  }, {\n    key: \"has\",\n    value: function has(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      return this._vars.hasOwnProperty(name);\n    }\n  }]);\n\n  return Group;\n}();\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./var\":12}],5:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _selection = require(\"./selection\");\n\nvar _filter = require(\"./filter\");\n\nrequire(\"./input\");\n\nrequire(\"./input_selectize\");\n\nrequire(\"./input_checkboxgroup\");\n\nrequire(\"./input_slider\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar defaultGroup = (0, _group2.default)(\"default\");\n\nfunction var_(name) {\n  return defaultGroup.var(name);\n}\n\nfunction has(name) {\n  return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n  global.Shiny.addCustomMessageHandler(\"update-client-value\", function (message) {\n    if (typeof message.group === \"string\") {\n      (0, _group2.default)(message.group).var(message.name).set(message.value);\n    } else {\n      var_(message.name).set(message.value);\n    }\n  });\n}\n\nvar crosstalk = {\n  group: _group2.default,\n  var: var_,\n  has: has,\n  SelectionHandle: _selection.SelectionHandle,\n  FilterHandle: _filter.FilterHandle\n};\n\n/**\n * @namespace crosstalk\n */\nexports.default = crosstalk;\n\nglobal.crosstalk = crosstalk;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./group\":4,\"./input\":6,\"./input_checkboxgroup\":7,\"./input_selectize\":8,\"./input_slider\":9,\"./selection\":10}],6:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.register = register;\nvar $ = global.jQuery;\n\nvar bindings = {};\n\nfunction register(reg) {\n  bindings[reg.className] = reg;\n  if (global.document && global.document.readyState !== \"complete\") {\n    $(function () {\n      bind();\n    });\n  } else if (global.document) {\n    setTimeout(bind, 100);\n  }\n}\n\nfunction bind() {\n  Object.keys(bindings).forEach(function (className) {\n    var binding = bindings[className];\n    $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function (i, el) {\n      bindInstance(binding, el);\n    });\n  });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n  return val.replace(/([!\"#$%&'()*+,.\\/:;<=>?@\\[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n  var $el = $(el);\n  Object.keys(bindings).forEach(function (className) {\n    if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n      var binding = bindings[className];\n      bindInstance(binding, el);\n    }\n  });\n}\n\nfunction bindInstance(binding, el) {\n  var jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n  var data = JSON.parse(jsonEl[0].innerText);\n\n  var instance = binding.factory(el, data);\n  $(el).data(\"crosstalk-instance\", instance);\n  $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n  (function () {\n    var inputBinding = new global.Shiny.InputBinding();\n    var $ = global.jQuery;\n    $.extend(inputBinding, {\n      find: function find(scope) {\n        return $(scope).find(\".crosstalk-input\");\n      },\n      initialize: function initialize(el) {\n        if (!$(el).hasClass(\"crosstalk-input-bound\")) {\n          bindEl(el);\n        }\n      },\n      getId: function getId(el) {\n        return el.id;\n      },\n      getValue: function getValue(el) {},\n      setValue: function setValue(el, value) {},\n      receiveMessage: function receiveMessage(el, data) {},\n      subscribe: function subscribe(el, callback) {\n        $(el).data(\"crosstalk-instance\").resume();\n      },\n      unsubscribe: function unsubscribe(el) {\n        $(el).data(\"crosstalk-instance\").suspend();\n      }\n    });\n    global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n  })();\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{}],7:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-checkboxgroup\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    var $el = $(el);\n    $el.on(\"change\", \"input[type='checkbox']\", function () {\n      var checked = $el.find(\"input[type='checkbox']:checked\");\n      if (checked.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          checked.each(function () {\n            data.map[this.value].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],8:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-select\",\n\n  factory: function factory(el, data) {\n    /*\n     * items: {value: [...], label: [...]}\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n\n    var first = [{ value: \"\", label: \"(All)\" }];\n    var items = util.dataframeToD3(data.items);\n    var opts = {\n      options: first.concat(items),\n      valueField: \"value\",\n      labelField: \"label\",\n      searchField: \"label\"\n    };\n\n    var select = $(el).find(\"select\")[0];\n\n    var selectize = $(select).selectize(opts)[0].selectize;\n\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    selectize.on(\"change\", function () {\n      if (selectize.items.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          selectize.items.forEach(function (group) {\n            data.map[group].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6,\"./util\":11}],9:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\nvar strftime = global.strftime;\n\ninput.register({\n  className: \"crosstalk-input-slider\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var opts = {};\n    var $el = $(el).find(\"input\");\n    var dataType = $el.data(\"data-type\");\n    var timeFormat = $el.data(\"time-format\");\n    var timeFormatter = void 0;\n\n    // Set up formatting functions\n    if (dataType === \"date\") {\n      timeFormatter = strftime.utc();\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"datetime\") {\n      var timezone = $el.data(\"timezone\");\n      if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime;\n\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    }\n\n    $el.ionRangeSlider(opts);\n\n    function getValue() {\n      var result = $el.data(\"ionRangeSlider\").result;\n\n      // Function for converting numeric value from slider to appropriate type.\n      var convert = void 0;\n      var dataType = $el.data(\"data-type\");\n      if (dataType === \"date\") {\n        convert = function convert(val) {\n          return formatDateUTC(new Date(+val));\n        };\n      } else if (dataType === \"datetime\") {\n        convert = function convert(val) {\n          // Convert ms to s\n          return +val / 1000;\n        };\n      } else {\n        convert = function convert(val) {\n          return +val;\n        };\n      }\n\n      if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n        return [convert(result.from), convert(result.to)];\n      } else {\n        return convert(result.from);\n      }\n    }\n\n    var lastKnownKeys = null;\n\n    $el.on(\"change.crosstalkSliderInput\", function (event) {\n      if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n        var _getValue = getValue(),\n            _getValue2 = _slicedToArray(_getValue, 2),\n            from = _getValue2[0],\n            to = _getValue2[1];\n\n        var keys = [];\n        for (var i = 0; i < data.values.length; i++) {\n          var val = data.values[i];\n          if (val >= from && val <= to) {\n            keys.push(data.keys[i]);\n          }\n        }\n        keys.sort();\n        ctHandle.set(keys);\n        lastKnownKeys = keys;\n      }\n    });\n\n    // let $el = $(el);\n    // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n    //   let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n    //   if (checked.length === 0) {\n    //     ctHandle.clear();\n    //   } else {\n    //     let keys = {};\n    //     checked.each(function() {\n    //       data.map[this.value].forEach(function(key) {\n    //         keys[key] = true;\n    //       });\n    //     });\n    //     let keyArray = Object.keys(keys);\n    //     keyArray.sort();\n    //     ctHandle.set(keyArray);\n    //   }\n    // });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n  var str = n.toString();\n  while (str.length < digits) {\n    str = \"0\" + str;\n  }return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n  if (date instanceof Date) {\n    return date.getUTCFullYear() + \"-\" + padZeros(date.getUTCMonth() + 1, 2) + \"-\" + padZeros(date.getUTCDate(), 2);\n  } else {\n    return null;\n  }\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],10:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.SelectionHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar SelectionHandle = exports.SelectionHandle = function () {\n\n  /**\n   * @classdesc\n   * Use this class to read and write (and listen for changes to) the selection\n   * for a Crosstalk group. This is intended to be used for linked brushing.\n   *\n   * If two (or more) `SelectionHandle` instances in the same webpage share the\n   * same group name, they will share the same state. Setting the selection using\n   * one `SelectionHandle` instance will result in the `value` property instantly\n   * changing across the others, and `\"change\"` event listeners on all instances\n   * (including the one that initiated the sending) will fire.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the [SelectionHandle#setGroup](#setGroup) method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function SelectionHandle() {\n    var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n    var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n\n    _classCallCheck(this, SelectionHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._var = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this SelectionHandle. The group\n   * being switched away from (if any) will not have its selection value\n   * modified as a result of calling `setGroup`, even if this handle was the\n   * most recent handle to set the selection of the group.\n   *\n   * The group being switched to (if any) will also not have its selection value\n   * modified as a result of calling `setGroup`. If you want to set the\n   * selection value of the new group, call `set` explicitly.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(SelectionHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._var) {\n        this._var.off(\"change\", this._varOnChangeSub);\n        this._var = null;\n        this._varOnChangeSub = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        this._var = (0, _group2.default)(group).var(\"selection\");\n        var sub = this._var.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Retrieves the current selection for the group represented by this\n     * `SelectionHandle`.\n     *\n     * - If no selection is active, then this value will be falsy.\n     * - If a selection is active, but no data points are selected, then this\n     *   value will be an empty array.\n     * - If a selection is active, and data points are selected, then the keys\n     *   of the selected data points will be present in the array.\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n\n\n    /**\n     * Combines the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n    value: function _mergeExtraInfo(extraInfo) {\n      // Important incidental effect: shallow clone is returned\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n     *   {@link SelectionHandle#value}).\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(selectedKeys, extraInfo) {\n      if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any that were passed\n     *   into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Subscribes to events on this `SelectionHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {SelectionHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n     *   this subscription.\n     */\n\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancels event subscriptions created by {@link SelectionHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|SelectionHandle~listener} listener - Either the callback\n     *   function previously passed into {@link SelectionHandle#on}, or the\n     *   string that was returned from {@link SelectionHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n\n    /**\n     * Shuts down the `SelectionHandle` object.\n     *\n     * Removes all event listeners that were added through this handle.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.setGroup(null);\n    }\n\n    /**\n     * @callback SelectionHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the selection, or `undefined` if no selection is active),\n     *   `oldValue` (the previous value of the selection), and `sender` (the\n     *   `SelectionHandle` instance that made the change).\n     */\n\n    /**\n     * @event SelectionHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the selection, or `undefined`\n     *   if no selection is active.\n     * @property {object} oldValue - The previous value of the selection.\n     * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._var ? this._var.get() : null;\n    }\n  }]);\n\n  return SelectionHandle;\n}();\n\n},{\"./events\":1,\"./group\":4,\"./util\":11}],11:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.extend = extend;\nexports.checkSorted = checkSorted;\nexports.diffSortedLists = diffSortedLists;\nexports.dataframeToD3 = dataframeToD3;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction extend(target) {\n  for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n    sources[_key - 1] = arguments[_key];\n  }\n\n  for (var i = 0; i < sources.length; i++) {\n    var src = sources[i];\n    if (typeof src === \"undefined\" || src === null) continue;\n\n    for (var key in src) {\n      if (src.hasOwnProperty(key)) {\n        target[key] = src[key];\n      }\n    }\n  }\n  return target;\n}\n\nfunction checkSorted(list) {\n  for (var i = 1; i < list.length; i++) {\n    if (list[i] <= list[i - 1]) {\n      throw new Error(\"List is not sorted or contains duplicate\");\n    }\n  }\n}\n\nfunction diffSortedLists(a, b) {\n  var i_a = 0;\n  var i_b = 0;\n\n  if (!a) a = [];\n  if (!b) b = [];\n\n  var a_only = [];\n  var b_only = [];\n\n  checkSorted(a);\n  checkSorted(b);\n\n  while (i_a < a.length && i_b < b.length) {\n    if (a[i_a] === b[i_b]) {\n      i_a++;\n      i_b++;\n    } else if (a[i_a] < b[i_b]) {\n      a_only.push(a[i_a++]);\n    } else {\n      b_only.push(b[i_b++]);\n    }\n  }\n\n  if (i_a < a.length) a_only = a_only.concat(a.slice(i_a));\n  if (i_b < b.length) b_only = b_only.concat(b.slice(i_b));\n  return {\n    removed: a_only,\n    added: b_only\n  };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nfunction dataframeToD3(df) {\n  var names = [];\n  var length = void 0;\n  for (var name in df) {\n    if (df.hasOwnProperty(name)) names.push(name);\n    if (_typeof(df[name]) !== \"object\" || typeof df[name].length === \"undefined\") {\n      throw new Error(\"All fields must be arrays\");\n    } else if (typeof length !== \"undefined\" && length !== df[name].length) {\n      throw new Error(\"All fields must be arrays of the same length\");\n    }\n    length = df[name].length;\n  }\n  var results = [];\n  var item = void 0;\n  for (var row = 0; row < length; row++) {\n    item = {};\n    for (var col = 0; col < names.length; col++) {\n      item[names[col]] = df[names[col]][row];\n    }\n    results.push(item);\n  }\n  return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\n\nvar SubscriptionTracker = exports.SubscriptionTracker = function () {\n  function SubscriptionTracker(emitter) {\n    _classCallCheck(this, SubscriptionTracker);\n\n    this._emitter = emitter;\n    this._subs = {};\n  }\n\n  _createClass(SubscriptionTracker, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var sub = this._emitter.on(eventType, listener);\n      this._subs[sub] = eventType;\n      return sub;\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var sub = this._emitter.off(eventType, listener);\n      if (sub) {\n        delete this._subs[sub];\n      }\n      return sub;\n    }\n  }, {\n    key: \"removeAllListeners\",\n    value: function removeAllListeners() {\n      var _this = this;\n\n      var current_subs = this._subs;\n      this._subs = {};\n      Object.keys(current_subs).forEach(function (sub) {\n        _this._emitter.off(current_subs[sub], sub);\n      });\n    }\n  }]);\n\n  return SubscriptionTracker;\n}();\n\n},{}],12:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Var = function () {\n  function Var(group, name, /*optional*/value) {\n    _classCallCheck(this, Var);\n\n    this._group = group;\n    this._name = name;\n    this._value = value;\n    this._events = new _events2.default();\n  }\n\n  _createClass(Var, [{\n    key: \"get\",\n    value: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"set\",\n    value: function set(value, /*optional*/event) {\n      if (this._value === value) {\n        // Do nothing; the value hasn't changed\n        return;\n      }\n      var oldValue = this._value;\n      this._value = value;\n      // Alert JavaScript listeners that the value has changed\n      var evt = {};\n      if (event && (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\") {\n        for (var k in event) {\n          if (event.hasOwnProperty(k)) evt[k] = event[k];\n        }\n      }\n      evt.oldValue = oldValue;\n      evt.value = value;\n      this._events.trigger(\"change\", evt, this);\n\n      // TODO: Make this extensible, to let arbitrary back-ends know that\n      // something has changed\n      if (global.Shiny && global.Shiny.onInputChange) {\n        global.Shiny.onInputChange(\".clientValue-\" + (this._group.name !== null ? this._group.name + \"-\" : \"\") + this._name, typeof value === \"undefined\" ? null : value);\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._events.on(eventType, listener);\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._events.off(eventType, listener);\n    }\n  }]);\n\n  return Var;\n}();\n\nexports.default = Var;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./events\":1}]},{},[5])\n//# sourceMappingURL=crosstalk.js.map\n"
  },
  {
    "path": "images/03_mean/lib/crosstalk-1.2.0/js/crosstalk.js",
    "content": "(function(){function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s}return e})()({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Events = function () {\n  function Events() {\n    _classCallCheck(this, Events);\n\n    this._types = {};\n    this._seq = 0;\n  }\n\n  _createClass(Events, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var subs = this._types[eventType];\n      if (!subs) {\n        subs = this._types[eventType] = {};\n      }\n      var sub = \"sub\" + this._seq++;\n      subs[sub] = listener;\n      return sub;\n    }\n\n    // Returns false if no match, or string for sub name if matched\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var subs = this._types[eventType];\n      if (typeof listener === \"function\") {\n        for (var key in subs) {\n          if (subs.hasOwnProperty(key)) {\n            if (subs[key] === listener) {\n              delete subs[key];\n              return key;\n            }\n          }\n        }\n        return false;\n      } else if (typeof listener === \"string\") {\n        if (subs && subs[listener]) {\n          delete subs[listener];\n          return listener;\n        }\n        return false;\n      } else {\n        throw new Error(\"Unexpected type for listener\");\n      }\n    }\n  }, {\n    key: \"trigger\",\n    value: function trigger(eventType, arg, thisObj) {\n      var subs = this._types[eventType];\n      for (var key in subs) {\n        if (subs.hasOwnProperty(key)) {\n          subs[key].call(thisObj, arg);\n        }\n      }\n    }\n  }]);\n\n  return Events;\n}();\n\nexports.default = Events;\n\n},{}],2:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.FilterHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _filterset = require(\"./filterset\");\n\nvar _filterset2 = _interopRequireDefault(_filterset);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction getFilterSet(group) {\n  var fsVar = group.var(\"filterset\");\n  var result = fsVar.get();\n  if (!result) {\n    result = new _filterset2.default();\n    fsVar.set(result);\n  }\n  return result;\n}\n\nvar id = 1;\nfunction nextId() {\n  return id++;\n}\n\n/**\n * Use this class to contribute to, and listen for changes to, the filter set\n * for the given group of widgets. Filter input controls should create one\n * `FilterHandle` and only call {@link FilterHandle#set}. Output widgets that\n * wish to displayed filtered data should create one `FilterHandle` and use\n * the {@link FilterHandle#filteredKeys} property and listen for change\n * events.\n *\n * If two (or more) `FilterHandle` instances in the same webpage share the\n * same group name, they will contribute to a single \"filter set\". Each\n * `FilterHandle` starts out with a `null` value, which means they take\n * nothing away from the set of data that should be shown. To make a\n * `FilterHandle` actually remove data from the filter set, set its value to\n * an array of keys which should be displayed. Crosstalk will aggregate the\n * various key arrays by finding their intersection; only keys that are\n * present in all non-null filter handles are considered part of the filter\n * set.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n *   null or undefined (or any other falsy value). This can be changed later\n *   via the {@link FilterHandle#setGroup} method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n *   the event object whenever an event is emitted.\n */\n\nvar FilterHandle = exports.FilterHandle = function () {\n  function FilterHandle(group, extraInfo) {\n    _classCallCheck(this, FilterHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The filterSet that we're tracking, if any. Can change over time.\n    this._filterSet = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._filterVar = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this._id = \"filter\" + nextId();\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this FilterHandle. If `set()` was\n   * previously called on this handle, switching groups will clear those keys\n   * from the old group's filter set. These keys will not be applied to the new\n   * group's filter set either. In other words, `setGroup()` effectively calls\n   * `clear()` before switching groups.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(FilterHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._filterVar) {\n        this._filterVar.off(\"change\", this._varOnChangeSub);\n        this.clear();\n        this._varOnChangeSub = null;\n        this._filterVar = null;\n        this._filterSet = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        group = (0, _group2.default)(group);\n        this._filterSet = getFilterSet(group);\n        this._filterVar = (0, _group2.default)(group).var(\"filter\");\n        var sub = this._filterVar.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Combine the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n    value: function _mergeExtraInfo(extraInfo) {\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Close the handle. This clears this handle's contribution to the filter set,\n     * and unsubscribes all event listeners.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.clear();\n      this.setGroup(null);\n    }\n\n    /**\n     * Clear this handle's contribution to the filter set.\n     *\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     * \n     * @fires FilterHandle#change\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.clear(this._id);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * Set this handle's contribution to the filter set. This array should consist\n     * of the keys of the rows that _should_ be displayed; any keys that are not\n     * present in the array will be considered _filtered out_. Note that multiple\n     * `FilterHandle` instances in the group may each contribute an array of keys,\n     * and only those keys that appear in _all_ of the arrays make it through the\n     * filter.\n     *\n     * @param {string[]} keys - Empty array, or array of keys. To clear the\n     *   filter, don't pass an empty array; instead, use the\n     *   {@link FilterHandle#clear} method.\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     * \n     * @fires FilterHandle#change\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(keys, extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.update(this._id, keys);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * @return {string[]|null} - Either: 1) an array of keys that made it through\n     *   all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n     *   is being applied (all data should be displayed).\n     */\n\n  }, {\n    key: \"on\",\n\n\n    /**\n     * Subscribe to events on this `FilterHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {FilterHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n     *   this subscription.\n     */\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancel event subscriptions created by {@link FilterHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|FilterHandle~listener} listener - Either the callback\n     *   function previously passed into {@link FilterHandle#on}, or the\n     *   string that was returned from {@link FilterHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n  }, {\n    key: \"_onChange\",\n    value: function _onChange(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * @callback FilterHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the filter set, or `null` if no filter set is active),\n     *   `oldValue` (the previous value of the filter set), and `sender` (the\n     *   `FilterHandle` instance that made the change).\n     */\n\n  }, {\n    key: \"filteredKeys\",\n    get: function get() {\n      return this._filterSet ? this._filterSet.value : null;\n    }\n  }]);\n\n  return FilterHandle;\n}();\n\n/**\n * @event FilterHandle#change\n * @type {object}\n * @property {object} value - The new value of the filter set, or `null`\n *   if no filter set is active.\n * @property {object} oldValue - The previous value of the filter set.\n * @property {FilterHandle} sender - The `FilterHandle` instance that\n *   changed the value.\n */\n\n},{\"./events\":1,\"./filterset\":3,\"./group\":4,\"./util\":11}],3:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _util = require(\"./util\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction naturalComparator(a, b) {\n  if (a === b) {\n    return 0;\n  } else if (a < b) {\n    return -1;\n  } else if (a > b) {\n    return 1;\n  }\n}\n\n/**\n * @private\n */\n\nvar FilterSet = function () {\n  function FilterSet() {\n    _classCallCheck(this, FilterSet);\n\n    this.reset();\n  }\n\n  _createClass(FilterSet, [{\n    key: \"reset\",\n    value: function reset() {\n      // Key: handle ID, Value: array of selected keys, or null\n      this._handles = {};\n      // Key: key string, Value: count of handles that include it\n      this._keys = {};\n      this._value = null;\n      this._activeHandles = 0;\n    }\n  }, {\n    key: \"update\",\n    value: function update(handleId, keys) {\n      if (keys !== null) {\n        keys = keys.slice(0); // clone before sorting\n        keys.sort(naturalComparator);\n      }\n\n      var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys),\n          added = _diffSortedLists.added,\n          removed = _diffSortedLists.removed;\n\n      this._handles[handleId] = keys;\n\n      for (var i = 0; i < added.length; i++) {\n        this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n      }\n      for (var _i = 0; _i < removed.length; _i++) {\n        this._keys[removed[_i]]--;\n      }\n\n      this._updateValue(keys);\n    }\n\n    /**\n     * @param {string[]} keys Sorted array of strings that indicate\n     * a superset of possible keys.\n     * @private\n     */\n\n  }, {\n    key: \"_updateValue\",\n    value: function _updateValue() {\n      var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys;\n\n      var handleCount = Object.keys(this._handles).length;\n      if (handleCount === 0) {\n        this._value = null;\n      } else {\n        this._value = [];\n        for (var i = 0; i < keys.length; i++) {\n          var count = this._keys[keys[i]];\n          if (count === handleCount) {\n            this._value.push(keys[i]);\n          }\n        }\n      }\n    }\n  }, {\n    key: \"clear\",\n    value: function clear(handleId) {\n      if (typeof this._handles[handleId] === \"undefined\") {\n        return;\n      }\n\n      var keys = this._handles[handleId];\n      if (!keys) {\n        keys = [];\n      }\n\n      for (var i = 0; i < keys.length; i++) {\n        this._keys[keys[i]]--;\n      }\n      delete this._handles[handleId];\n\n      this._updateValue();\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"_allKeys\",\n    get: function get() {\n      var allKeys = Object.keys(this._keys);\n      allKeys.sort(naturalComparator);\n      return allKeys;\n    }\n  }]);\n\n  return FilterSet;\n}();\n\nexports.default = FilterSet;\n\n},{\"./util\":11}],4:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.default = group;\n\nvar _var2 = require(\"./var\");\n\nvar _var3 = _interopRequireDefault(_var2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nvar groups = global.__crosstalk_groups;\n\nfunction group(groupName) {\n  if (groupName && typeof groupName === \"string\") {\n    if (!groups.hasOwnProperty(groupName)) {\n      groups[groupName] = new Group(groupName);\n    }\n    return groups[groupName];\n  } else if ((typeof groupName === \"undefined\" ? \"undefined\" : _typeof(groupName)) === \"object\" && groupName._vars && groupName.var) {\n    // Appears to already be a group object\n    return groupName;\n  } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === \"string\") {\n    return group(groupName[0]);\n  } else {\n    throw new Error(\"Invalid groupName argument\");\n  }\n}\n\nvar Group = function () {\n  function Group(name) {\n    _classCallCheck(this, Group);\n\n    this.name = name;\n    this._vars = {};\n  }\n\n  _createClass(Group, [{\n    key: \"var\",\n    value: function _var(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name);\n      return this._vars[name];\n    }\n  }, {\n    key: \"has\",\n    value: function has(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      return this._vars.hasOwnProperty(name);\n    }\n  }]);\n\n  return Group;\n}();\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./var\":12}],5:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _selection = require(\"./selection\");\n\nvar _filter = require(\"./filter\");\n\nvar _input = require(\"./input\");\n\nrequire(\"./input_selectize\");\n\nrequire(\"./input_checkboxgroup\");\n\nrequire(\"./input_slider\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar defaultGroup = (0, _group2.default)(\"default\");\n\nfunction var_(name) {\n  return defaultGroup.var(name);\n}\n\nfunction has(name) {\n  return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n  global.Shiny.addCustomMessageHandler(\"update-client-value\", function (message) {\n    if (typeof message.group === \"string\") {\n      (0, _group2.default)(message.group).var(message.name).set(message.value);\n    } else {\n      var_(message.name).set(message.value);\n    }\n  });\n}\n\nvar crosstalk = {\n  group: _group2.default,\n  var: var_,\n  has: has,\n  SelectionHandle: _selection.SelectionHandle,\n  FilterHandle: _filter.FilterHandle,\n  bind: _input.bind\n};\n\n/**\n * @namespace crosstalk\n */\nexports.default = crosstalk;\n\nglobal.crosstalk = crosstalk;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./group\":4,\"./input\":6,\"./input_checkboxgroup\":7,\"./input_selectize\":8,\"./input_slider\":9,\"./selection\":10}],6:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.register = register;\nexports.bind = bind;\nvar $ = global.jQuery;\n\nvar bindings = {};\n\nfunction register(reg) {\n  bindings[reg.className] = reg;\n  if (global.document && global.document.readyState !== \"complete\") {\n    $(function () {\n      bind();\n    });\n  } else if (global.document) {\n    setTimeout(bind, 100);\n  }\n}\n\nfunction bind() {\n  Object.keys(bindings).forEach(function (className) {\n    var binding = bindings[className];\n    $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function (i, el) {\n      bindInstance(binding, el);\n    });\n  });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n  return val.replace(/([!\"#$%&'()*+,./:;<=>?@[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n  var $el = $(el);\n  Object.keys(bindings).forEach(function (className) {\n    if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n      var binding = bindings[className];\n      bindInstance(binding, el);\n    }\n  });\n}\n\nfunction bindInstance(binding, el) {\n  var jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n  var data = JSON.parse(jsonEl[0].innerText);\n\n  var instance = binding.factory(el, data);\n  $(el).data(\"crosstalk-instance\", instance);\n  $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n  var inputBinding = new global.Shiny.InputBinding();\n  var _$ = global.jQuery;\n  _$.extend(inputBinding, {\n    find: function find(scope) {\n      return _$(scope).find(\".crosstalk-input\");\n    },\n    initialize: function initialize(el) {\n      if (!_$(el).hasClass(\"crosstalk-input-bound\")) {\n        bindEl(el);\n      }\n    },\n    getId: function getId(el) {\n      return el.id;\n    },\n    getValue: function getValue(el) {},\n    setValue: function setValue(el, value) {},\n    receiveMessage: function receiveMessage(el, data) {},\n    subscribe: function subscribe(el, callback) {\n      _$(el).data(\"crosstalk-instance\").resume();\n    },\n    unsubscribe: function unsubscribe(el) {\n      _$(el).data(\"crosstalk-instance\").suspend();\n    }\n  });\n  global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{}],7:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-checkboxgroup\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    var $el = $(el);\n    $el.on(\"change\", \"input[type='checkbox']\", function () {\n      var checked = $el.find(\"input[type='checkbox']:checked\");\n      if (checked.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        var keys = {};\n        checked.each(function () {\n          data.map[this.value].forEach(function (key) {\n            keys[key] = true;\n          });\n        });\n        var keyArray = Object.keys(keys);\n        keyArray.sort();\n        lastKnownKeys = keyArray;\n        ctHandle.set(keyArray);\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],8:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-select\",\n\n  factory: function factory(el, data) {\n    /*\n     * items: {value: [...], label: [...]}\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n\n    var first = [{ value: \"\", label: \"(All)\" }];\n    var items = util.dataframeToD3(data.items);\n    var opts = {\n      options: first.concat(items),\n      valueField: \"value\",\n      labelField: \"label\",\n      searchField: \"label\"\n    };\n\n    var select = $(el).find(\"select\")[0];\n\n    var selectize = $(select).selectize(opts)[0].selectize;\n\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    selectize.on(\"change\", function () {\n      if (selectize.items.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        var keys = {};\n        selectize.items.forEach(function (group) {\n          data.map[group].forEach(function (key) {\n            keys[key] = true;\n          });\n        });\n        var keyArray = Object.keys(keys);\n        keyArray.sort();\n        lastKnownKeys = keyArray;\n        ctHandle.set(keyArray);\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6,\"./util\":11}],9:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\nvar strftime = global.strftime;\n\ninput.register({\n  className: \"crosstalk-input-slider\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var opts = {};\n    var $el = $(el).find(\"input\");\n    var dataType = $el.data(\"data-type\");\n    var timeFormat = $el.data(\"time-format\");\n    var round = $el.data(\"round\");\n    var timeFormatter = void 0;\n\n    // Set up formatting functions\n    if (dataType === \"date\") {\n      timeFormatter = strftime.utc();\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"datetime\") {\n      var timezone = $el.data(\"timezone\");\n      if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime;\n\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"number\") {\n      if (typeof round !== \"undefined\") opts.prettify = function (num) {\n        var factor = Math.pow(10, round);\n        return Math.round(num * factor) / factor;\n      };\n    }\n\n    $el.ionRangeSlider(opts);\n\n    function getValue() {\n      var result = $el.data(\"ionRangeSlider\").result;\n\n      // Function for converting numeric value from slider to appropriate type.\n      var convert = void 0;\n      var dataType = $el.data(\"data-type\");\n      if (dataType === \"date\") {\n        convert = function convert(val) {\n          return formatDateUTC(new Date(+val));\n        };\n      } else if (dataType === \"datetime\") {\n        convert = function convert(val) {\n          // Convert ms to s\n          return +val / 1000;\n        };\n      } else {\n        convert = function convert(val) {\n          return +val;\n        };\n      }\n\n      if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n        return [convert(result.from), convert(result.to)];\n      } else {\n        return convert(result.from);\n      }\n    }\n\n    var lastKnownKeys = null;\n\n    $el.on(\"change.crosstalkSliderInput\", function (event) {\n      if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n        var _getValue = getValue(),\n            _getValue2 = _slicedToArray(_getValue, 2),\n            from = _getValue2[0],\n            to = _getValue2[1];\n\n        var keys = [];\n        for (var i = 0; i < data.values.length; i++) {\n          var val = data.values[i];\n          if (val >= from && val <= to) {\n            keys.push(data.keys[i]);\n          }\n        }\n        keys.sort();\n        ctHandle.set(keys);\n        lastKnownKeys = keys;\n      }\n    });\n\n    // let $el = $(el);\n    // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n    //   let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n    //   if (checked.length === 0) {\n    //     ctHandle.clear();\n    //   } else {\n    //     let keys = {};\n    //     checked.each(function() {\n    //       data.map[this.value].forEach(function(key) {\n    //         keys[key] = true;\n    //       });\n    //     });\n    //     let keyArray = Object.keys(keys);\n    //     keyArray.sort();\n    //     ctHandle.set(keyArray);\n    //   }\n    // });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n  var str = n.toString();\n  while (str.length < digits) {\n    str = \"0\" + str;\n  }return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n  if (date instanceof Date) {\n    return date.getUTCFullYear() + \"-\" + padZeros(date.getUTCMonth() + 1, 2) + \"-\" + padZeros(date.getUTCDate(), 2);\n  } else {\n    return null;\n  }\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],10:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.SelectionHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n/**\n * Use this class to read and write (and listen for changes to) the selection\n * for a Crosstalk group. This is intended to be used for linked brushing.\n *\n * If two (or more) `SelectionHandle` instances in the same webpage share the\n * same group name, they will share the same state. Setting the selection using\n * one `SelectionHandle` instance will result in the `value` property instantly\n * changing across the others, and `\"change\"` event listeners on all instances\n * (including the one that initiated the sending) will fire.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n *   null or undefined (or any other falsy value). This can be changed later\n *   via the [SelectionHandle#setGroup](#setGroup) method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n *   the event object whenever an event is emitted.\n */\nvar SelectionHandle = exports.SelectionHandle = function () {\n  function SelectionHandle() {\n    var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n    var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n\n    _classCallCheck(this, SelectionHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._var = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this SelectionHandle. The group\n   * being switched away from (if any) will not have its selection value\n   * modified as a result of calling `setGroup`, even if this handle was the\n   * most recent handle to set the selection of the group.\n   *\n   * The group being switched to (if any) will also not have its selection value\n   * modified as a result of calling `setGroup`. If you want to set the\n   * selection value of the new group, call `set` explicitly.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(SelectionHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._var) {\n        this._var.off(\"change\", this._varOnChangeSub);\n        this._var = null;\n        this._varOnChangeSub = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        this._var = (0, _group2.default)(group).var(\"selection\");\n        var sub = this._var.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Retrieves the current selection for the group represented by this\n     * `SelectionHandle`.\n     *\n     * - If no selection is active, then this value will be falsy.\n     * - If a selection is active, but no data points are selected, then this\n     *   value will be an empty array.\n     * - If a selection is active, and data points are selected, then the keys\n     *   of the selected data points will be present in the array.\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n\n\n    /**\n     * Combines the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n    value: function _mergeExtraInfo(extraInfo) {\n      // Important incidental effect: shallow clone is returned\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n     *   {@link SelectionHandle#value}).\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(selectedKeys, extraInfo) {\n      if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any that were passed\n     *   into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Subscribes to events on this `SelectionHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {SelectionHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n     *   this subscription.\n     */\n\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancels event subscriptions created by {@link SelectionHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|SelectionHandle~listener} listener - Either the callback\n     *   function previously passed into {@link SelectionHandle#on}, or the\n     *   string that was returned from {@link SelectionHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n\n    /**\n     * Shuts down the `SelectionHandle` object.\n     *\n     * Removes all event listeners that were added through this handle.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.setGroup(null);\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._var ? this._var.get() : null;\n    }\n  }]);\n\n  return SelectionHandle;\n}();\n\n/**\n * @callback SelectionHandle~listener\n * @param {Object} event - An object containing details of the event. For\n *   `\"change\"` events, this includes the properties `value` (the new\n *   value of the selection, or `undefined` if no selection is active),\n *   `oldValue` (the previous value of the selection), and `sender` (the\n *   `SelectionHandle` instance that made the change).\n */\n\n/**\n * @event SelectionHandle#change\n * @type {object}\n * @property {object} value - The new value of the selection, or `undefined`\n *   if no selection is active.\n * @property {object} oldValue - The previous value of the selection.\n * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n *   changed the value.\n */\n\n},{\"./events\":1,\"./group\":4,\"./util\":11}],11:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.extend = extend;\nexports.checkSorted = checkSorted;\nexports.diffSortedLists = diffSortedLists;\nexports.dataframeToD3 = dataframeToD3;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction extend(target) {\n  for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n    sources[_key - 1] = arguments[_key];\n  }\n\n  for (var i = 0; i < sources.length; i++) {\n    var src = sources[i];\n    if (typeof src === \"undefined\" || src === null) continue;\n\n    for (var key in src) {\n      if (src.hasOwnProperty(key)) {\n        target[key] = src[key];\n      }\n    }\n  }\n  return target;\n}\n\nfunction checkSorted(list) {\n  for (var i = 1; i < list.length; i++) {\n    if (list[i] <= list[i - 1]) {\n      throw new Error(\"List is not sorted or contains duplicate\");\n    }\n  }\n}\n\nfunction diffSortedLists(a, b) {\n  var i_a = 0;\n  var i_b = 0;\n\n  if (!a) a = [];\n  if (!b) b = [];\n\n  var a_only = [];\n  var b_only = [];\n\n  checkSorted(a);\n  checkSorted(b);\n\n  while (i_a < a.length && i_b < b.length) {\n    if (a[i_a] === b[i_b]) {\n      i_a++;\n      i_b++;\n    } else if (a[i_a] < b[i_b]) {\n      a_only.push(a[i_a++]);\n    } else {\n      b_only.push(b[i_b++]);\n    }\n  }\n\n  if (i_a < a.length) a_only = a_only.concat(a.slice(i_a));\n  if (i_b < b.length) b_only = b_only.concat(b.slice(i_b));\n  return {\n    removed: a_only,\n    added: b_only\n  };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nfunction dataframeToD3(df) {\n  var names = [];\n  var length = void 0;\n  for (var name in df) {\n    if (df.hasOwnProperty(name)) names.push(name);\n    if (_typeof(df[name]) !== \"object\" || typeof df[name].length === \"undefined\") {\n      throw new Error(\"All fields must be arrays\");\n    } else if (typeof length !== \"undefined\" && length !== df[name].length) {\n      throw new Error(\"All fields must be arrays of the same length\");\n    }\n    length = df[name].length;\n  }\n  var results = [];\n  var item = void 0;\n  for (var row = 0; row < length; row++) {\n    item = {};\n    for (var col = 0; col < names.length; col++) {\n      item[names[col]] = df[names[col]][row];\n    }\n    results.push(item);\n  }\n  return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\n\nvar SubscriptionTracker = exports.SubscriptionTracker = function () {\n  function SubscriptionTracker(emitter) {\n    _classCallCheck(this, SubscriptionTracker);\n\n    this._emitter = emitter;\n    this._subs = {};\n  }\n\n  _createClass(SubscriptionTracker, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var sub = this._emitter.on(eventType, listener);\n      this._subs[sub] = eventType;\n      return sub;\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var sub = this._emitter.off(eventType, listener);\n      if (sub) {\n        delete this._subs[sub];\n      }\n      return sub;\n    }\n  }, {\n    key: \"removeAllListeners\",\n    value: function removeAllListeners() {\n      var _this = this;\n\n      var current_subs = this._subs;\n      this._subs = {};\n      Object.keys(current_subs).forEach(function (sub) {\n        _this._emitter.off(current_subs[sub], sub);\n      });\n    }\n  }]);\n\n  return SubscriptionTracker;\n}();\n\n},{}],12:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Var = function () {\n  function Var(group, name, /*optional*/value) {\n    _classCallCheck(this, Var);\n\n    this._group = group;\n    this._name = name;\n    this._value = value;\n    this._events = new _events2.default();\n  }\n\n  _createClass(Var, [{\n    key: \"get\",\n    value: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"set\",\n    value: function set(value, /*optional*/event) {\n      if (this._value === value) {\n        // Do nothing; the value hasn't changed\n        return;\n      }\n      var oldValue = this._value;\n      this._value = value;\n      // Alert JavaScript listeners that the value has changed\n      var evt = {};\n      if (event && (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\") {\n        for (var k in event) {\n          if (event.hasOwnProperty(k)) evt[k] = event[k];\n        }\n      }\n      evt.oldValue = oldValue;\n      evt.value = value;\n      this._events.trigger(\"change\", evt, this);\n\n      // TODO: Make this extensible, to let arbitrary back-ends know that\n      // something has changed\n      if (global.Shiny && global.Shiny.onInputChange) {\n        global.Shiny.onInputChange(\".clientValue-\" + (this._group.name !== null ? this._group.name + \"-\" : \"\") + this._name, typeof value === \"undefined\" ? null : value);\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._events.on(eventType, listener);\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._events.off(eventType, listener);\n    }\n  }]);\n\n  return Var;\n}();\n\nexports.default = Var;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./events\":1}]},{},[5])\n//# sourceMappingURL=crosstalk.js.map\n"
  },
  {
    "path": "images/03_mean/lib/crosstalk-1.2.0/scss/crosstalk.scss",
    "content": "/* Adjust margins outwards, so column contents line up with the edges of the\n   parent of container-fluid. */\n.container-fluid.crosstalk-bscols {\n  margin-left: -30px;\n  margin-right: -30px;\n  white-space: normal;\n}\n\n/* But don't adjust the margins outwards if we're directly under the body,\n   i.e. we were the top-level of something at the console. */\nbody > .container-fluid.crosstalk-bscols {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n  display: inline-block;\n  padding-right: 12px;\n  vertical-align: top;\n}\n\n@media only screen and (max-width:480px) {\n  .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n    display: block;\n    padding-right: inherit;\n  }\n}\n\n/* Relevant BS3 styles to make filter_checkbox() look reasonable without Bootstrap */\n.crosstalk-input {\n  margin-bottom: 15px; /* a la .form-group */\n  .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  input[type=\"checkbox\"] {\n    margin: 4px 0 0;\n    margin-top: 1px;\n    line-height: normal;\n  }\n  .checkbox {\n    position: relative;\n    display: block;\n    margin-top: 10px;\n    margin-bottom: 10px;\n  }\n  .checkbox > label{\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: 400;\n    cursor: pointer;\n  }\n  .checkbox input[type=\"checkbox\"],\n  .checkbox-inline input[type=\"checkbox\"] {\n    position: absolute;\n    margin-top: 2px;\n    margin-left: -20px;\n  }\n  .checkbox + .checkbox {\n    margin-top: -5px;\n  }\n  .checkbox-inline {\n    position: relative;\n    display: inline-block;\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: 400;\n    vertical-align: middle;\n    cursor: pointer;\n  }\n  .checkbox-inline + .checkbox-inline {\n    margin-top: 0;\n    margin-left: 10px;\n  }\n}\n"
  },
  {
    "path": "images/03_mean/lib/htmlwidgets-1.3/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = eval(\"(\" + task + \")\");\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n  // Wait until after the document has loaded to render the widgets.\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      window.HTMLWidgets.staticRender();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        window.HTMLWidgets.staticRender();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = eval(\"(\" + o[part] + \")\");\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "images/03_mean/lib/htmlwidgets-1.5.1/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = tryEval(task);\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  // Attempt eval() both with and without enclosing in parentheses.\n  // Note that enclosing coerces a function declaration into\n  // an expression that eval() can parse\n  // (otherwise, a SyntaxError is thrown)\n  function tryEval(code) {\n    var result = null;\n    try {\n      result = eval(code);\n    } catch(error) {\n      if (!error instanceof SyntaxError) {\n        throw error;\n      }\n      try {\n        result = eval(\"(\" + code + \")\");\n      } catch(e) {\n        if (e instanceof SyntaxError) {\n          throw error;\n        } else {\n          throw e;\n        }\n      }\n    }\n    return result;\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n\n  function has_jQuery3() {\n    if (!window.jQuery) {\n      return false;\n    }\n    var $version = window.jQuery.fn.jquery;\n    var $major_version = parseInt($version.split(\".\")[0]);\n    return $major_version >= 3;\n  }\n\n  /*\n  / Shiny 1.4 bumped jQuery from 1.x to 3.x which means jQuery's\n  / on-ready handler (i.e., $(fn)) is now asyncronous (i.e., it now\n  / really means $(setTimeout(fn)).\n  / https://jquery.com/upgrade-guide/3.0/#breaking-change-document-ready-handlers-are-now-asynchronous\n  /\n  / Since Shiny uses $() to schedule initShiny, shiny>=1.4 calls initShiny\n  / one tick later than it did before, which means staticRender() is\n  / called renderValue() earlier than (advanced) widget authors might be expecting.\n  / https://github.com/rstudio/shiny/issues/2630\n  /\n  / For a concrete example, leaflet has some methods (e.g., updateBounds)\n  / which reference Shiny methods registered in initShiny (e.g., setInputValue).\n  / Since leaflet is privy to this life-cycle, it knows to use setTimeout() to\n  / delay execution of those methods (until Shiny methods are ready)\n  / https://github.com/rstudio/leaflet/blob/18ec981/javascript/src/index.js#L266-L268\n  /\n  / Ideally widget authors wouldn't need to use this setTimeout() hack that\n  / leaflet uses to call Shiny methods on a staticRender(). In the long run,\n  / the logic initShiny should be broken up so that method registration happens\n  / right away, but binding happens later.\n  */\n  function maybeStaticRenderLater() {\n    if (shinyMode && has_jQuery3()) {\n      window.jQuery(window.HTMLWidgets.staticRender);\n    } else {\n      window.HTMLWidgets.staticRender();\n    }\n  }\n\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      maybeStaticRenderLater();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        maybeStaticRenderLater();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = tryEval(o[part]);\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "images/03_mean/lib/htmlwidgets-1.5.4/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = tryEval(task);\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  // Attempt eval() both with and without enclosing in parentheses.\n  // Note that enclosing coerces a function declaration into\n  // an expression that eval() can parse\n  // (otherwise, a SyntaxError is thrown)\n  function tryEval(code) {\n    var result = null;\n    try {\n      result = eval(\"(\" + code + \")\");\n    } catch(error) {\n      if (!(error instanceof SyntaxError)) {\n        throw error;\n      }\n      try {\n        result = eval(code);\n      } catch(e) {\n        if (e instanceof SyntaxError) {\n          throw error;\n        } else {\n          throw e;\n        }\n      }\n    }\n    return result;\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n\n  function has_jQuery3() {\n    if (!window.jQuery) {\n      return false;\n    }\n    var $version = window.jQuery.fn.jquery;\n    var $major_version = parseInt($version.split(\".\")[0]);\n    return $major_version >= 3;\n  }\n\n  /*\n  / Shiny 1.4 bumped jQuery from 1.x to 3.x which means jQuery's\n  / on-ready handler (i.e., $(fn)) is now asyncronous (i.e., it now\n  / really means $(setTimeout(fn)).\n  / https://jquery.com/upgrade-guide/3.0/#breaking-change-document-ready-handlers-are-now-asynchronous\n  /\n  / Since Shiny uses $() to schedule initShiny, shiny>=1.4 calls initShiny\n  / one tick later than it did before, which means staticRender() is\n  / called renderValue() earlier than (advanced) widget authors might be expecting.\n  / https://github.com/rstudio/shiny/issues/2630\n  /\n  / For a concrete example, leaflet has some methods (e.g., updateBounds)\n  / which reference Shiny methods registered in initShiny (e.g., setInputValue).\n  / Since leaflet is privy to this life-cycle, it knows to use setTimeout() to\n  / delay execution of those methods (until Shiny methods are ready)\n  / https://github.com/rstudio/leaflet/blob/18ec981/javascript/src/index.js#L266-L268\n  /\n  / Ideally widget authors wouldn't need to use this setTimeout() hack that\n  / leaflet uses to call Shiny methods on a staticRender(). In the long run,\n  / the logic initShiny should be broken up so that method registration happens\n  / right away, but binding happens later.\n  */\n  function maybeStaticRenderLater() {\n    if (shinyMode && has_jQuery3()) {\n      window.jQuery(window.HTMLWidgets.staticRender);\n    } else {\n      window.HTMLWidgets.staticRender();\n    }\n  }\n\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      maybeStaticRenderLater();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        maybeStaticRenderLater();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = tryEval(o[part]);\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "images/03_mean/lib/jquery-1.11.3/jquery-AUTHORS.txt",
    "content": "Authors ordered by first contribution.\n\nJohn Resig <jeresig@gmail.com>\nGilles van den Hoven <gilles0181@gmail.com>\nMichael Geary <mike@geary.com>\nStefan Petre <stefan.petre@gmail.com>\nYehuda Katz <wycats@gmail.com>\nCorey Jewett <cj@syntheticplayground.com>\nKlaus Hartl <klaus.hartl@googlemail.com>\nFranck Marcia <franck.marcia@gmail.com>\nJörn Zaefferer <joern.zaefferer@gmail.com>\nPaul Bakaus <paul.bakaus@googlemail.com>\nBrandon Aaron <brandon.aaron@gmail.com>\nMike Alsup <malsup@gmail.com>\nDave Methvin <dave.methvin@gmail.com>\nEd Engelhardt <edengelhardt@gmail.com>\nSean Catchpole <littlecooldude@gmail.com>\nPaul Mclanahan <pmclanahan@gmail.com>\nDavid Serduke <davidserduke@gmail.com>\nRichard D. Worth <rdworth@gmail.com>\nScott González <scott.gonzalez@gmail.com>\nAriel Flesler <aflesler@gmail.com>\nJon Evans <jon@springyweb.com>\nTJ Holowaychuk <tj@vision-media.ca>\nMichael Bensoussan <mickey@seesmic.com>\nRobert Katić <robert.katic@gmail.com>\nLouis-Rémi Babé <lrbabe@gmail.com>\nEarle Castledine <mrspeaker@gmail.com>\nDamian Janowski <damian.janowski@gmail.com>\nRich Dougherty <rich@rd.gen.nz>\nKim Dalsgaard <kim@kimdalsgaard.com>\nAndrea Giammarchi <andrea.giammarchi@gmail.com>\nMark Gibson <jollytoad@gmail.com>\nKarl Swedberg <kswedberg@gmail.com>\nJustin Meyer <justinbmeyer@gmail.com>\nBen Alman <cowboy@rj3.net>\nJames Padolsey <cla@padolsey.net>\nDavid Petersen <public@petersendidit.com>\nBatiste Bieler <batiste@gmail.com>\nAlexander Farkas <info@corrupt-system.de>\nRick Waldron <waldron.rick@gmail.com>\nFilipe Fortes <filipe@fortes.com>\nNeeraj Singh <neerajdotname@gmail.com>\nPaul Irish <paul.irish@gmail.com>\nIraê Carvalho <irae@irae.pro.br>\nMatt Curry <matt@pseudocoder.com>\nMichael Monteleone <michael@michaelmonteleone.net>\nNoah Sloan <noah.sloan@gmail.com>\nTom Viner <github@viner.tv>\nDouglas Neiner <doug@pixelgraphics.us>\nAdam J. Sontag <ajpiano@ajpiano.com>\nDave Reed <dareed@microsoft.com>\nRalph Whitbeck <ralph.whitbeck@gmail.com>\nCarl Fürstenberg <azatoth@gmail.com>\nJacob Wright <jacwright@gmail.com>\nJ. Ryan Stinnett <jryans@gmail.com>\nunknown <Igen005@.upcorp.ad.uprr.com>\ntemp01 <temp01irc@gmail.com>\nHeungsub Lee <h@subl.ee>\nColin Snover <colin@alpha.zetafleet.com>\nRyan W Tenney <ryan@10e.us>\nPinhook <contact@pinhooklabs.com>\nRon Otten <r.j.g.otten@gmail.com>\nJephte Clain <Jephte.Clain@univ-reunion.fr>\nAnton Matzneller <obhvsbypqghgc@gmail.com>\nAlex Sexton <AlexSexton@gmail.com>\nDan Heberden <danheberden@gmail.com>\nHenri Wiechers <hwiechers@gmail.com>\nRussell Holbrook <russell.holbrook@patch.com>\nJulian Aubourg <aubourg.julian@gmail.com>\nGianni Alessandro Chiappetta <gianni@runlevel6.org>\nScott Jehl <scott@scottjehl.com>\nJames Burke <jrburke@gmail.com>\nJonas Pfenniger <jonas@pfenniger.name>\nXavi Ramirez <xavi.rmz@gmail.com>\nJared Grippe <jared@deadlyicon.com>\nSylvester Keil <sylvester@keil.or.at>\nBrandon Sterne <bsterne@mozilla.com>\nMathias Bynens <mathias@qiwi.be>\nTimmy Willison <timmywillisn@gmail.com>\nCorey Frang <gnarf@gnarf.net>\nDigitalxero <digitalxero>\nAnton Kovalyov <anton@kovalyov.net>\nDavid Murdoch <musicisair@yahoo.com>\nJosh Varner <josh.varner@gmail.com>\nCharles McNulty <cmcnulty@kznf.com>\nJordan Boesch <jboesch26@gmail.com>\nJess Thrysoee <jess@thrysoee.dk>\nMichael Murray <m@murz.net>\nLee Carpenter <elcarpie@gmail.com>\nAlexis Abril <me@alexisabril.com>\nRob Morgan <robbym@gmail.com>\nJohn Firebaugh <john_firebaugh@bigfix.com>\nSam Bisbee <sam@sbisbee.com>\nGilmore Davidson <gilmoreorless@gmail.com>\nBrian Brennan <me@brianlovesthings.com>\nXavier Montillet <xavierm02.net@gmail.com>\nDaniel Pihlstrom <sciolist.se@gmail.com>\nSahab Yazdani <sahab.yazdani+github@gmail.com>\navaly <github-com@agachi.name>\nScott Hughes <hi@scott-hughes.me>\nMike Sherov <mike.sherov@gmail.com>\nGreg Hazel <ghazel@gmail.com>\nSchalk Neethling <schalk@ossreleasefeed.com>\nDenis Knauf <Denis.Knauf@gmail.com>\nTimo Tijhof <krinklemail@gmail.com>\nSteen Nielsen <swinedk@gmail.com>\nAnton Ryzhov <anton@ryzhov.me>\nShi Chuan <shichuanr@gmail.com>\nBerker Peksag <berker.peksag@gmail.com>\nToby Brain <tobyb@freshview.com>\nMatt Mueller <mattmuelle@gmail.com>\nJustin <drakefjustin@gmail.com>\nDaniel Herman <daniel.c.herman@gmail.com>\nOleg Gaidarenko <markelog@gmail.com>\nRichard Gibson <richard.gibson@gmail.com>\nRafaël Blais Masson <rafbmasson@gmail.com>\ncmc3cn <59194618@qq.com>\nJoe Presbrey <presbrey@gmail.com>\nSindre Sorhus <sindresorhus@gmail.com>\nArne de Bree <arne@bukkie.nl>\nVladislav Zarakovsky <vlad.zar@gmail.com>\nAndrew E Monat <amonat@gmail.com>\nOskari <admin@o-programs.com>\nJoao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>\ntsinha <tsinha@Anthonys-MacBook-Pro.local>\nMatt Farmer <matt@frmr.me>\nTrey Hunner <treyhunner@gmail.com>\nJason Moon <jmoon@socialcast.com>\nJeffery To <jeffery.to@gmail.com>\nKris Borchers <kris.borchers@gmail.com>\nVladimir Zhuravlev <private.face@gmail.com>\nJacob Thornton <jacobthornton@gmail.com>\nChad Killingsworth <chadkillingsworth@missouristate.edu>\nNowres Rafid <nowres.rafed@gmail.com>\nDavid Benjamin <davidben@mit.edu>\nUri Gilad <antishok@gmail.com>\nChris Faulkner <thefaulkner@gmail.com>\nElijah Manor <elijah.manor@gmail.com>\nDaniel Chatfield <chatfielddaniel@gmail.com>\nNikita Govorov <nikita.govorov@gmail.com>\nWesley Walser <wwalser@atlassian.com>\nMike Pennisi <mike@mikepennisi.com>\nMarkus Staab <markus.staab@redaxo.de>\nDave Riddle <david@joyvuu.com>\nCallum Macrae <callum@lynxphp.com>\nBenjamin Truyman <bentruyman@gmail.com>\nJames Huston <james@jameshuston.net>\nErick Ruiz de Chávez <erickrdch@gmail.com>\nDavid Bonner <dbonner@cogolabs.com>\nAkintayo Akinwunmi <aakinwunmi@judge.com>\nMORGAN <morgan@morgangraphics.com>\nIsmail Khair <ismail.khair@gmail.com>\nCarl Danley <carldanley@gmail.com>\nMike Petrovich <michael.c.petrovich@gmail.com>\nGreg Lavallee <greglavallee@wapolabs.com>\nDaniel Gálvez <dgalvez@editablething.com>\nSai Lung Wong <sai.wong@huffingtonpost.com>\nTom H Fuertes <TomFuertes@gmail.com>\nRoland Eckl <eckl.roland@googlemail.com>\nJay Merrifield <fracmak@gmail.com>\nAllen J Schmidt Jr <cobrasoft@gmail.com>\nJonathan Sampson <jjdsampson@gmail.com>\nMarcel Greter <marcel.greter@ocbnet.ch>\nMatthias Jäggli <matthias.jaeggli@gmail.com>\nDavid Fox <dfoxinator@gmail.com>\nYiming He <yiminghe@gmail.com>\nDevin Cooper <cooper.semantics@gmail.com>\nPaul Ramos <paul.b.ramos@gmail.com>\nRod Vagg <rod@vagg.org>\nBennett Sorbo <bsorbo@gmail.com>\nSebastian Burkhard <sebi.burkhard@gmail.com>\nnanto <nanto@moon.email.ne.jp>\nDanil Somsikov <danilasomsikov@gmail.com>\nRyunosuke SATO <tricknotes.rs@gmail.com>\nJean Boussier <jean.boussier@gmail.com>\nAdam Coulombe <me@adam.co>\nAndrew Plummer <plummer.andrew@gmail.com>\nMark Raddatz <mraddatz@gmail.com>\nDmitry Gusev <dmitry.gusev@gmail.com>\nMichał Gołębiowski <m.goleb@gmail.com>\nNguyen Phuc Lam <ruado1987@gmail.com>\nTom H Fuertes <tomfuertes@gmail.com>\nBrandon Johnson <bjohn465+github@gmail.com>\nJason Bedard <jason+jquery@jbedard.ca>\nKyle Robinson Young <kyle@dontkry.com>\nRenato Oliveira dos Santos <ros3@cin.ufpe.br>\nChris Talkington <chris@talkingtontech.com>\nEddie Monge <eddie@eddiemonge.com>\nTerry Jones <terry@jon.es>\nJason Merino <jasonmerino@gmail.com>\nJeremy Dunck <jdunck@gmail.com>\nChris Price <price.c@gmail.com>\nAmey Sakhadeo <me@ameyms.com>\nAnthony Ryan <anthonyryan1@gmail.com>\nDominik D. Geyer <dominik.geyer@gmail.com>\nGeorge Kats <katsgeorgeek@gmail.com>\nLihan Li <frankieteardrop@gmail.com>\nRonny Springer <springer.ronny@gmail.com>\nMarian Sollmann <marian.sollmann@cargomedia.ch>\nCorey Frang <gnarf37@gmail.com>\nChris Antaki <ChrisAntaki@gmail.com>\nNoah Hamann <njhamann@gmail.com>\nDavid Hong <d.hong@me.com>\nJakob Stoeck <jakob@pokermania.de>\nChristopher Jones <christopherjonesqed@gmail.com>\nForbes Lindesay <forbes@lindesay.co.uk>\nJohn Paul <john@johnkpaul.com>\nS. Andrew Sheppard <andrew@wq.io>\nLeonardo Balter <leonardo.balter@gmail.com>\nRoman Reiß <me@silverwind.io>\nBenjy Cui <benjytrys@gmail.com>\nRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>\nJohn Hoven <hovenj@gmail.com>\nChristian Kosmowski <ksmwsk@gmail.com>\nLiang Peng <poppinlp@gmail.com>\nTJ VanToll <tj.vantoll@gmail.com>\n"
  },
  {
    "path": "images/03_mean/lib/jquery-1.11.3/jquery.js",
    "content": "/*!\n * jQuery JavaScript Library v1.11.3\n * http://jquery.com/\n *\n * Includes Sizzle.js\n * http://sizzlejs.com/\n *\n * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2015-04-28T16:19Z\n */\n\n(function( global, factory ) {\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\t\t// For CommonJS and CommonJS-like environments where a proper window is present,\n\t\t// execute the factory and get jQuery\n\t\t// For environments that do not inherently posses a window with a document\n\t\t// (such as Node.js), expose a jQuery-making factory as module.exports\n\t\t// This accentuates the need for the creation of a real window\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n}(typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Can't do this because several apps including ASP.NET trace\n// the stack via arguments.caller.callee and Firefox dies if\n// you try to trace through \"use strict\" call chains. (#13335)\n// Support: Firefox 18+\n//\n\nvar deletedIds = [];\n\nvar slice = deletedIds.slice;\n\nvar concat = deletedIds.concat;\n\nvar push = deletedIds.push;\n\nvar indexOf = deletedIds.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar support = {};\n\n\n\nvar\n\tversion = \"1.11.3\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t},\n\n\t// Support: Android<4.1, IE<9\n\t// Make sure we trim BOM and NBSP\n\trtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g,\n\n\t// Matches dashed string for camelizing\n\trmsPrefix = /^-ms-/,\n\trdashAlpha = /-([\\da-z])/gi,\n\n\t// Used by jQuery.camelCase as callback to replace()\n\tfcamelCase = function( all, letter ) {\n\t\treturn letter.toUpperCase();\n\t};\n\njQuery.fn = jQuery.prototype = {\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// Start with an empty selector\n\tselector: \"\",\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\t\treturn num != null ?\n\n\t\t\t// Return just the one element from the set\n\t\t\t( num < 0 ? this[ num + this.length ] : this[ num ] ) :\n\n\t\t\t// Return all the elements in a clean array\n\t\t\tslice.call( this );\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\t\tret.context = this.context;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\t// (You can seed the arguments with an array of args, but this is\n\t// only used internally.)\n\teach: function( callback, args ) {\n\t\treturn jQuery.each( this, callback, args );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map(this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t}));\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor(null);\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: deletedIds.sort,\n\tsplice: deletedIds.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar src, copyIsArray, copy, name, options, clone,\n\t\ttarget = arguments[0] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !jQuery.isFunction(target) ) {\n\t\ttarget = {};\n\t}\n\n\t// extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\t\t// Only deal with non-null/undefined values\n\t\tif ( (options = arguments[ i ]) != null ) {\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tsrc = target[ name ];\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {\n\t\t\t\t\tif ( copyIsArray ) {\n\t\t\t\t\t\tcopyIsArray = false;\n\t\t\t\t\t\tclone = src && jQuery.isArray(src) ? src : [];\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src && jQuery.isPlainObject(src) ? src : {};\n\t\t\t\t\t}\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend({\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\t// See test/unit/core.js for details concerning isFunction.\n\t// Since version 1.3, DOM methods and functions like alert\n\t// aren't supported. They return false on IE (#2968).\n\tisFunction: function( obj ) {\n\t\treturn jQuery.type(obj) === \"function\";\n\t},\n\n\tisArray: Array.isArray || function( obj ) {\n\t\treturn jQuery.type(obj) === \"array\";\n\t},\n\n\tisWindow: function( obj ) {\n\t\t/* jshint eqeqeq: false */\n\t\treturn obj != null && obj == obj.window;\n\t},\n\n\tisNumeric: function( obj ) {\n\t\t// parseFloat NaNs numeric-cast false positives (null|true|false|\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t// adding 1 corrects loss of precision from parseFloat (#15100)\n\t\treturn !jQuery.isArray( obj ) && (obj - parseFloat( obj ) + 1) >= 0;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\tisPlainObject: function( obj ) {\n\t\tvar key;\n\n\t\t// Must be an Object.\n\t\t// Because of IE, we also have to check the presence of the constructor property.\n\t\t// Make sure that DOM nodes and window objects don't pass through, as well\n\t\tif ( !obj || jQuery.type(obj) !== \"object\" || obj.nodeType || jQuery.isWindow( obj ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\ttry {\n\t\t\t// Not own constructor property must be Object\n\t\t\tif ( obj.constructor &&\n\t\t\t\t!hasOwn.call(obj, \"constructor\") &&\n\t\t\t\t!hasOwn.call(obj.constructor.prototype, \"isPrototypeOf\") ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\t// IE8,9 Will throw exceptions on certain host objects #9897\n\t\t\treturn false;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Handle iteration over inherited properties before own properties.\n\t\tif ( support.ownLast ) {\n\t\t\tfor ( key in obj ) {\n\t\t\t\treturn hasOwn.call( obj, key );\n\t\t\t}\n\t\t}\n\n\t\t// Own properties are enumerated firstly, so to speed up,\n\t\t// if last one is own, then all properties are own.\n\t\tfor ( key in obj ) {}\n\n\t\treturn key === undefined || hasOwn.call( obj, key );\n\t},\n\n\ttype: function( obj ) {\n\t\tif ( obj == null ) {\n\t\t\treturn obj + \"\";\n\t\t}\n\t\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\t\tclass2type[ toString.call(obj) ] || \"object\" :\n\t\t\ttypeof obj;\n\t},\n\n\t// Evaluates a script in a global context\n\t// Workarounds based on findings by Jim Driscoll\n\t// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context\n\tglobalEval: function( data ) {\n\t\tif ( data && jQuery.trim( data ) ) {\n\t\t\t// We use execScript on Internet Explorer\n\t\t\t// We use an anonymous function so that context is window\n\t\t\t// rather than jQuery in Firefox\n\t\t\t( window.execScript || function( data ) {\n\t\t\t\twindow[ \"eval\" ].call( window, data );\n\t\t\t} )( data );\n\t\t}\n\t},\n\n\t// Convert dashed to camelCase; used by the css and data modules\n\t// Microsoft forgot to hump their vendor prefix (#9572)\n\tcamelCase: function( string ) {\n\t\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n\t},\n\n\tnodeName: function( elem, name ) {\n\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\t},\n\n\t// args is for internal usage only\n\teach: function( obj, callback, args ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = obj.length,\n\t\t\tisArray = isArraylike( obj );\n\n\t\tif ( args ) {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// A special, fast, case for the most common use of each\n\t\t} else {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// Support: Android<4.1, IE<9\n\ttrim: function( text ) {\n\t\treturn text == null ?\n\t\t\t\"\" :\n\t\t\t( text + \"\" ).replace( rtrim, \"\" );\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArraylike( Object(arr) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\tvar len;\n\n\t\tif ( arr ) {\n\t\t\tif ( indexOf ) {\n\t\t\t\treturn indexOf.call( arr, elem, i );\n\t\t\t}\n\n\t\t\tlen = arr.length;\n\t\t\ti = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t// Skip accessing in sparse arrays\n\t\t\t\tif ( i in arr && arr[ i ] === elem ) {\n\t\t\t\t\treturn i;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn -1;\n\t},\n\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\twhile ( j < len ) {\n\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Workaround casting of .length to NaN on otherwise arraylike objects (e.g., NodeLists)\n\t\tif ( len !== len ) {\n\t\t\twhile ( second[j] !== undefined ) {\n\t\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t\t}\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tisArray = isArraylike( elems ),\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArray ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn concat.apply( [], ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// Bind a function to a context, optionally partially applying any\n\t// arguments.\n\tproxy: function( fn, context ) {\n\t\tvar args, proxy, tmp;\n\n\t\tif ( typeof context === \"string\" ) {\n\t\t\ttmp = fn[ context ];\n\t\t\tcontext = fn;\n\t\t\tfn = tmp;\n\t\t}\n\n\t\t// Quick check to determine if target is callable, in the spec\n\t\t// this throws a TypeError, but we will just return undefined.\n\t\tif ( !jQuery.isFunction( fn ) ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\t// Simulated bind\n\t\targs = slice.call( arguments, 2 );\n\t\tproxy = function() {\n\t\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t\t};\n\n\t\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\t\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\t\treturn proxy;\n\t},\n\n\tnow: function() {\n\t\treturn +( new Date() );\n\t},\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n});\n\n// Populate the class2type map\njQuery.each(\"Boolean Number String Function Array Date RegExp Object Error\".split(\" \"), function(i, name) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n});\n\nfunction isArraylike( obj ) {\n\n\t// Support: iOS 8.2 (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = \"length\" in obj && obj.length,\n\t\ttype = jQuery.type( obj );\n\n\tif ( type === \"function\" || jQuery.isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\tif ( obj.nodeType === 1 && length ) {\n\t\treturn true;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.2.0-pre\n * http://sizzlejs.com/\n *\n * Copyright 2008, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2014-12-16\n */\n(function( window ) {\n\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// General-purpose constants\n\tMAX_NEGATIVE = 1 << 31,\n\n\t// Instance methods\n\thasOwn = ({}).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpush_native = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\t// Use a stripped-down indexOf as it's faster than native\n\t// http://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[i] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\t// http://www.w3.org/TR/css3-syntax/#characters\n\tcharacterEncoding = \"(?:\\\\\\\\.|[\\\\w-]|[^\\\\x00-\\\\xa0])+\",\n\n\t// Loosely modeled on CSS identifier characters\n\t// An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors\n\t// Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier\n\tidentifier = characterEncoding.replace( \"w\", \"w#\" ),\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + characterEncoding + \")(?:\" + whitespace +\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\t\t// \"Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" + whitespace +\n\t\t\"*\\\\]\",\n\n\tpseudos = \":(\" + characterEncoding + \")(?:\\\\((\" +\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" + whitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace + \"*\" ),\n\n\trattributeQuotes = new RegExp( \"=\" + whitespace + \"*([^\\\\]'\\\"]*?)\" + whitespace + \"*\\\\]\", \"g\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + characterEncoding + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + characterEncoding + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + characterEncoding.replace( \"w\", \"w*\" ) + \")\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" + whitespace +\n\t\t\t\"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" + whitespace +\n\t\t\t\"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace + \"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" +\n\t\t\twhitespace + \"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\trescape = /'|\\\\/g,\n\n\t// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\([\\\\da-f]{1,6}\" + whitespace + \"?|(\" + whitespace + \")|.)\", \"ig\" ),\n\tfunescape = function( _, escaped, escapedWhitespace ) {\n\t\tvar high = \"0x\" + escaped - 0x10000;\n\t\t// NaN means non-codepoint\n\t\t// Support: Firefox<24\n\t\t// Workaround erroneous numeric interpretation of +\"0x\"\n\t\treturn high !== high || escapedWhitespace ?\n\t\t\tescaped :\n\t\t\thigh < 0 ?\n\t\t\t\t// BMP codepoint\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\t// Supplemental Plane codepoint (surrogate pair)\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t};\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t(arr = slice.call( preferredDoc.childNodes )),\n\t\tpreferredDoc.childNodes\n\t);\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpush_native.apply( target, slice.call(els) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( (target[j++] = els[i++]) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar match, elem, m, nodeType,\n\t\t// QSA vars\n\t\ti, groups, old, nid, newContext, newSelector;\n\n\tif ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\n\tcontext = context || document;\n\tresults = results || [];\n\tnodeType = context.nodeType;\n\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\tif ( !seed && documentIsHTML ) {\n\n\t\t// Try to shortcut find operations when possible (e.g., not under DocumentFragment)\n\t\tif ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {\n\t\t\t// Speed-up: Sizzle(\"#ID\")\n\t\t\tif ( (m = match[1]) ) {\n\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\telem = context.getElementById( m );\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document (jQuery #6963)\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE, Opera, and Webkit return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t// Context is not a document\n\t\t\t\t\tif ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&\n\t\t\t\t\t\tcontains( context, elem ) && elem.id === m ) {\n\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Speed-up: Sizzle(\"TAG\")\n\t\t\t} else if ( match[2] ) {\n\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\treturn results;\n\n\t\t\t// Speed-up: Sizzle(\".CLASS\")\n\t\t\t} else if ( (m = match[3]) && support.getElementsByClassName ) {\n\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\treturn results;\n\t\t\t}\n\t\t}\n\n\t\t// QSA path\n\t\tif ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {\n\t\t\tnid = old = expando;\n\t\t\tnewContext = context;\n\t\t\tnewSelector = nodeType !== 1 && selector;\n\n\t\t\t// qSA works strangely on Element-rooted queries\n\t\t\t// We can work around this by specifying an extra ID on the root\n\t\t\t// and working up from there (Thanks to Andrew Dupont for the technique)\n\t\t\t// IE 8 doesn't work on object elements\n\t\t\tif ( nodeType === 1 && context.nodeName.toLowerCase() !== \"object\" ) {\n\t\t\t\tgroups = tokenize( selector );\n\n\t\t\t\tif ( (old = context.getAttribute(\"id\")) ) {\n\t\t\t\t\tnid = old.replace( rescape, \"\\\\$&\" );\n\t\t\t\t} else {\n\t\t\t\t\tcontext.setAttribute( \"id\", nid );\n\t\t\t\t}\n\t\t\t\tnid = \"[id='\" + nid + \"'] \";\n\n\t\t\t\ti = groups.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tgroups[i] = nid + toSelector( groups[i] );\n\t\t\t\t}\n\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) || context;\n\t\t\t\tnewSelector = groups.join(\",\");\n\t\t\t}\n\n\t\t\tif ( newSelector ) {\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch(qsaError) {\n\t\t\t\t} finally {\n\t\t\t\t\tif ( !old ) {\n\t\t\t\t\t\tcontext.removeAttribute(\"id\");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {Function(string, Object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn (cache[ key + \" \" ] = value);\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created div and expects a boolean result\n */\nfunction assert( fn ) {\n\tvar div = document.createElement(\"div\");\n\n\ttry {\n\t\treturn !!fn( div );\n\t} catch (e) {\n\t\treturn false;\n\t} finally {\n\t\t// Remove from its parent by default\n\t\tif ( div.parentNode ) {\n\t\t\tdiv.parentNode.removeChild( div );\n\t\t}\n\t\t// release memory in IE\n\t\tdiv = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split(\"|\"),\n\t\ti = attrs.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[i] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\t( ~b.sourceIndex || MAX_NEGATIVE ) -\n\t\t\t( ~a.sourceIndex || MAX_NEGATIVE );\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( (cur = cur.nextSibling) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn (name === \"input\" || name === \"button\") && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction(function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction(function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ (j = matchIndexes[i]) ] ) {\n\t\t\t\t\tseed[j] = !(matches[j] = seed[j]);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t});\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\t// documentElement is verified for cases where it doesn't yet exist\n\t// (such as loading iframes in IE - #4833)\n\tvar documentElement = elem && (elem.ownerDocument || elem).documentElement;\n\treturn documentElement ? documentElement.nodeName !== \"HTML\" : false;\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, parent,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// If no document and documentElement is available, return\n\tif ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Set our document\n\tdocument = doc;\n\tdocElem = doc.documentElement;\n\tparent = doc.defaultView;\n\n\t// Support: IE>8\n\t// If iframe document is assigned to \"document\" variable and if iframe has been reloaded,\n\t// IE will throw \"permission denied\" error when accessing \"document\" variable, see jQuery #13936\n\t// IE6-8 do not support the defaultView property so parent will be undefined\n\tif ( parent && parent !== parent.top ) {\n\t\t// IE11 does not have attachEvent, so all must suffer\n\t\tif ( parent.addEventListener ) {\n\t\t\tparent.addEventListener( \"unload\", unloadHandler, false );\n\t\t} else if ( parent.attachEvent ) {\n\t\t\tparent.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t/* Support tests\n\t---------------------------------------------------------------------- */\n\tdocumentIsHTML = !isXML( doc );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert(function( div ) {\n\t\tdiv.className = \"i\";\n\t\treturn !div.getAttribute(\"className\");\n\t});\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert(function( div ) {\n\t\tdiv.appendChild( doc.createComment(\"\") );\n\t\treturn !div.getElementsByTagName(\"*\").length;\n\t});\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( doc.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert(function( div ) {\n\t\tdocElem.appendChild( div ).id = expando;\n\t\treturn !doc.getElementsByName || !doc.getElementsByName( expando ).length;\n\t});\n\n\t// ID find and filter\n\tif ( support.getById ) {\n\t\tExpr.find[\"ID\"] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar m = context.getElementById( id );\n\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\treturn m && m.parentNode ? [ m ] : [];\n\t\t\t}\n\t\t};\n\t\tExpr.filter[\"ID\"] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute(\"id\") === attrId;\n\t\t\t};\n\t\t};\n\t} else {\n\t\t// Support: IE6/7\n\t\t// getElementById is not reliable as a find shortcut\n\t\tdelete Expr.find[\"ID\"];\n\n\t\tExpr.filter[\"ID\"] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" && elem.getAttributeNode(\"id\");\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[\"TAG\"] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( (elem = results[i++]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[\"CLASS\"] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See http://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert(function( div ) {\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// http://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( div ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\f]' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( div.querySelectorAll(\"[msallowcapture^='']\").length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !div.querySelectorAll(\"[selected]\").length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.2+, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.7+\n\t\t\tif ( !div.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push(\"~=\");\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":checked\").length ) {\n\t\t\t\trbuggyQSA.push(\":checked\");\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibing-combinator selector` fails\n\t\t\tif ( !div.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push(\".#.+[+~]\");\n\t\t\t}\n\t\t});\n\n\t\tassert(function( div ) {\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = doc.createElement(\"input\");\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tdiv.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( div.querySelectorAll(\"[name=d]\").length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":enabled\").length ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tdiv.querySelectorAll(\"*,:x\");\n\t\t\trbuggyQSA.push(\",.*:\");\n\t\t});\n\t}\n\n\tif ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector) )) ) {\n\n\t\tassert(function( div ) {\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( div, \"div\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( div, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t});\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join(\"|\") );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join(\"|\") );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully does not implement inclusive descendent\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t));\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( (b = b.parentNode) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\tcompare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\tif ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t\tif ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\t\t\treturn a === doc ? -1 :\n\t\t\t\tb === doc ? 1 :\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[i] === bp[i] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[i], bp[i] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\tap[i] === preferredDoc ? -1 :\n\t\t\tbp[i] === preferredDoc ? 1 :\n\t\t\t0;\n\t};\n\n\treturn doc;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\t// Make sure that attribute selectors are quoted\n\texpr = expr.replace( rattributeQuotes, \"='$1']\" );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t// fragment in IE 9\n\t\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch (e) {}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\t// Set document vars if needed\n\tif ( ( context.ownerDocument || context ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t(val = elem.getAttributeNode(name)) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( (elem = results[i++]) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( (node = elem[i++]) ) {\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[1] = match[1].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[3] = ( match[3] || match[4] || match[5] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[2] === \"~=\" ) {\n\t\t\t\tmatch[3] = \" \" + match[3] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[1] = match[1].toLowerCase();\n\n\t\t\tif ( match[1].slice( 0, 3 ) === \"nth\" ) {\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[3] ) {\n\t\t\t\t\tSizzle.error( match[0] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === \"even\" || match[3] === \"odd\" ) );\n\t\t\t\tmatch[5] = +( ( match[7] + match[8] ) || match[3] === \"odd\" );\n\n\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[3] ) {\n\t\t\t\tSizzle.error( match[0] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[6] && match[2];\n\n\t\t\tif ( matchExpr[\"CHILD\"].test( match[0] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[3] ) {\n\t\t\t\tmatch[2] = match[4] || match[5] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t(excess = tokenize( unquoted, true )) &&\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t(excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[0] = match[0].slice( 0, excess );\n\t\t\t\tmatch[2] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() { return true; } :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t(pattern = new RegExp( \"(^|\" + whitespace + \")\" + className + \"(\" + whitespace + \"|$)\" )) &&\n\t\t\t\tclassCache( className, function( elem ) {\n\t\t\t\t\treturn pattern.test( typeof elem.className === \"string\" && elem.className || typeof elem.getAttribute !== \"undefined\" && elem.getAttribute(\"class\") || \"\" );\n\t\t\t\t});\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tvar cache, outerCache, node, diff, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( (node = node[ dir ]) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\t\t\t\t\t\t\touterCache = parent[ expando ] || (parent[ expando ] = {});\n\t\t\t\t\t\t\tcache = outerCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[0] === dirruns && cache[1];\n\t\t\t\t\t\t\tdiff = cache[0] === dirruns && cache[2];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\touterCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t} else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {\n\t\t\t\t\t\t\tdiff = cache[1];\n\n\t\t\t\t\t\t// xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\tif ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {\n\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t(node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction(function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[i] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[i] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction(function( selector ) {\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction(function( seed, matches, context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = unmatched[i]) ) {\n\t\t\t\t\t\t\tseed[i] = !(matches[i] = elem);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}) :\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tinput[0] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[0] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t}),\n\n\t\t\"has\": markFunction(function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t}),\n\n\t\t\"contains\": markFunction(function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t}),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test(lang || \"\") ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( (elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute(\"xml:lang\") || elem.getAttribute(\"lang\")) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( (elem = elem.parentNode) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t}),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": function( elem ) {\n\t\t\treturn elem.disabled === false;\n\t\t},\n\n\t\t\"disabled\": function( elem ) {\n\t\t\treturn elem.disabled === true;\n\t\t},\n\n\t\t\"checked\": function( elem ) {\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn (nodeName === \"input\" && !!elem.checked) || (nodeName === \"option\" && !!elem.selected);\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[\"empty\"]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( (attr = elem.getAttribute(\"type\")) == null || attr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo(function() {\n\t\t\treturn [ 0 ];\n\t\t}),\n\n\t\t\"last\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t}),\n\n\t\t\"eq\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t}),\n\n\t\t\"even\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"odd\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"lt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"gt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t})\n\t}\n};\n\nExpr.pseudos[\"nth\"] = Expr.pseudos[\"eq\"];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || (match = rcomma.exec( soFar )) ) {\n\t\t\tif ( match ) {\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[0].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( (tokens = []) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( (match = rcombinators.exec( soFar )) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push({\n\t\t\t\tvalue: matched,\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[0].replace( rtrim, \" \" )\n\t\t\t});\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||\n\t\t\t\t(match = preFilters[ type ]( match ))) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push({\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t});\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[i].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tcheckNonElements = base && dir === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from dir caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || (elem[ expando ] = {});\n\t\t\t\t\t\tif ( (oldCache = outerCache[ dir ]) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn (newCache[ 2 ] = oldCache[ 2 ]);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\touterCache[ dir ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[i]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[0];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[i], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (elem = unmatched[i]) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction(function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts( selector || \"*\", context.nodeType ? [ context ] : context, [] ),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( (elem = temp[i]) ) {\n\t\t\t\t\tmatcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = matcherOut[i]) ) {\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( (matcherIn[i] = elem) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, (matcherOut = []), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( (elem = matcherOut[i]) &&\n\t\t\t\t\t\t(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {\n\n\t\t\t\t\t\tseed[temp] = !(results[temp] = elem);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t});\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[0].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[\" \"],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t(checkContext = context).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (matcher = Expr.relative[ tokens[i].type ]) ) {\n\t\t\tmatchers = [ addCombinator(elementMatcher( matchers ), matcher) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[j].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\t\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\t\ttokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" })\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( (tokens = tokens.slice( j )) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[\"TAG\"]( \"*\", outermost ),\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\t\t\t\toutermostContext = context !== document && context;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Keep `i` a string if there are no elements so `matchedCount` will be \"00\" below\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && (elem = elems[i]) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (matcher = elementMatchers[j++]) ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( (elem = !matcher && elem) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\tmatchedCount += i;\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (matcher = setMatchers[j++]) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !(unmatched[i] || setMatched[i]) ) {\n\t\t\t\t\t\t\t\tsetMatched[i] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[i] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( (selector = compiled.selector || selector) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is no seed and only one group\n\tif ( match.length === 1 ) {\n\n\t\t// Take a shortcut and set the context if the root selector is an ID\n\t\ttokens = match[0] = match[0].slice( 0 );\n\t\tif ( tokens.length > 2 && (token = tokens[0]).type === \"ID\" &&\n\t\t\t\tsupport.getById && context.nodeType === 9 && documentIsHTML &&\n\t\t\t\tExpr.relative[ tokens[1].type ] ) {\n\n\t\t\tcontext = ( Expr.find[\"ID\"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[\"needsContext\"].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[i];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ (type = token.type) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( (find = Expr.find[ type ]) ) {\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( (seed = find(\n\t\t\t\t\ttoken.matches[0].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context\n\t\t\t\t)) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\trsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split(\"\").sort( sortOrder ).join(\"\") === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert(function( div1 ) {\n\t// Should return 1, but returns 4 (following)\n\treturn div1.compareDocumentPosition( document.createElement(\"div\") ) & 1;\n});\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert(function( div ) {\n\tdiv.innerHTML = \"<a href='#'></a>\";\n\treturn div.firstChild.getAttribute(\"href\") === \"#\" ;\n}) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert(function( div ) {\n\tdiv.innerHTML = \"<input/>\";\n\tdiv.firstChild.setAttribute( \"value\", \"\" );\n\treturn div.firstChild.getAttribute( \"value\" ) === \"\";\n}) ) {\n\taddHandle( \"value\", function( elem, name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert(function( div ) {\n\treturn div.getAttribute(\"disabled\") == null;\n}) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t\t(val = elem.getAttributeNode( name )) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\tnull;\n\t\t}\n\t});\n}\n\nreturn Sizzle;\n\n})( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\njQuery.expr[\":\"] = jQuery.expr.pseudos;\njQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\n\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\nvar rsingleTag = (/^<(\\w+)\\s*\\/?>(?:<\\/\\1>|)$/);\n\n\n\nvar risSimple = /^.[^:#\\[\\.,]*$/;\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( jQuery.isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\t/* jshint -W018 */\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t});\n\n\t}\n\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t});\n\n\t}\n\n\tif ( typeof qualifier === \"string\" ) {\n\t\tif ( risSimple.test( qualifier ) ) {\n\t\t\treturn jQuery.filter( qualifier, elements, not );\n\t\t}\n\n\t\tqualifier = jQuery.filter( qualifier, elements );\n\t}\n\n\treturn jQuery.grep( elements, function( elem ) {\n\t\treturn ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not;\n\t});\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\treturn elems.length === 1 && elem.nodeType === 1 ?\n\t\tjQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :\n\t\tjQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\t\treturn elem.nodeType === 1;\n\t\t}));\n};\n\njQuery.fn.extend({\n\tfind: function( selector ) {\n\t\tvar i,\n\t\t\tret = [],\n\t\t\tself = this,\n\t\t\tlen = self.length;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter(function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}) );\n\t\t}\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\t// Needed because $( selector, context ) becomes $( context ).find( selector )\n\t\tret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );\n\t\tret.selector = this.selector ? this.selector + \" \" + selector : selector;\n\t\treturn ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], false) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], true) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n});\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// Use the correct document accordingly with window argument (sandbox)\n\tdocument = window.document,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]*))$/,\n\n\tinit = jQuery.fn.init = function( selector, context ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector.charAt(0) === \"<\" && selector.charAt( selector.length - 1 ) === \">\" && selector.length >= 3 ) {\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && (match[1] || !context) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[1] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[0] : context;\n\n\t\t\t\t\t// scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[1],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( jQuery.isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[2] );\n\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE and Opera return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id !== match[2] ) {\n\t\t\t\t\t\t\treturn rootjQuery.find( selector );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Otherwise, we inject the element directly into the jQuery object\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t\tthis[0] = elem;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.context = document;\n\t\t\t\t\tthis.selector = selector;\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || rootjQuery ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis.context = this[0] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( jQuery.isFunction( selector ) ) {\n\t\t\treturn typeof rootjQuery.ready !== \"undefined\" ?\n\t\t\t\trootjQuery.ready( selector ) :\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\tif ( selector.selector !== undefined ) {\n\t\t\tthis.selector = selector.selector;\n\t\t\tthis.context = selector.context;\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\t// methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.extend({\n\tdir: function( elem, dir, until ) {\n\t\tvar matched = [],\n\t\t\tcur = elem[ dir ];\n\n\t\twhile ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {\n\t\t\tif ( cur.nodeType === 1 ) {\n\t\t\t\tmatched.push( cur );\n\t\t\t}\n\t\t\tcur = cur[dir];\n\t\t}\n\t\treturn matched;\n\t},\n\n\tsibling: function( n, elem ) {\n\t\tvar r = [];\n\n\t\tfor ( ; n; n = n.nextSibling ) {\n\t\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\t\tr.push( n );\n\t\t\t}\n\t\t}\n\n\t\treturn r;\n\t}\n});\n\njQuery.fn.extend({\n\thas: function( target ) {\n\t\tvar i,\n\t\t\ttargets = jQuery( target, this ),\n\t\t\tlen = targets.length;\n\n\t\treturn this.filter(function() {\n\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[i] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\tpos = rneedsContext.test( selectors ) || typeof selectors !== \"string\" ?\n\t\t\t\tjQuery( selectors, context || this.context ) :\n\t\t\t\t0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tfor ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) {\n\t\t\t\t// Always skip document fragments\n\t\t\t\tif ( cur.nodeType < 11 && (pos ?\n\t\t\t\t\tpos.index(cur) > -1 :\n\n\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\tjQuery.find.matchesSelector(cur, selectors)) ) {\n\n\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within\n\t// the matched set of elements\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn jQuery.inArray( this[0], jQuery( elem ) );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn jQuery.inArray(\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[0] : elem, this );\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.unique(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter(selector)\n\t\t);\n\t}\n});\n\nfunction sibling( cur, dir ) {\n\tdo {\n\t\tcur = cur[ dir ];\n\t} while ( cur && cur.nodeType !== 1 );\n\n\treturn cur;\n}\n\njQuery.each({\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn jQuery.dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn jQuery.sibling( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\treturn jQuery.nodeName( elem, \"iframe\" ) ?\n\t\t\telem.contentDocument || elem.contentWindow.document :\n\t\t\tjQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar ret = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tret = jQuery.filter( selector, ret );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tret = jQuery.unique( ret );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tret = ret.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\nvar rnotwhite = (/\\S+/g);\n\n\n\n// String to Object options format cache\nvar optionsCache = {};\n\n// Convert String-formatted options into Object-formatted ones and store in cache\nfunction createOptions( options ) {\n\tvar object = optionsCache[ options ] = {};\n\tjQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t});\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\t( optionsCache[ options ] || createOptions( options ) ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\t\t// Last fire value (for non-forgettable lists)\n\t\tmemory,\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\t\t// End of the loop when firing\n\t\tfiringLength,\n\t\t// Index of currently firing callback (modified by remove if needed)\n\t\tfiringIndex,\n\t\t// First callback to fire (used internally by add and fireWith)\n\t\tfiringStart,\n\t\t// Actual callback list\n\t\tlist = [],\n\t\t// Stack of fire calls for repeatable lists\n\t\tstack = !options.once && [],\n\t\t// Fire callbacks\n\t\tfire = function( data ) {\n\t\t\tmemory = options.memory && data;\n\t\t\tfired = true;\n\t\t\tfiringIndex = firingStart || 0;\n\t\t\tfiringStart = 0;\n\t\t\tfiringLength = list.length;\n\t\t\tfiring = true;\n\t\t\tfor ( ; list && firingIndex < firingLength; firingIndex++ ) {\n\t\t\t\tif ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {\n\t\t\t\t\tmemory = false; // To prevent further calls using add\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tfiring = false;\n\t\t\tif ( list ) {\n\t\t\t\tif ( stack ) {\n\t\t\t\t\tif ( stack.length ) {\n\t\t\t\t\t\tfire( stack.shift() );\n\t\t\t\t\t}\n\t\t\t\t} else if ( memory ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t} else {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t// Actual Callbacks object\n\t\tself = {\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\t// First, we save the current length\n\t\t\t\t\tvar start = list.length;\n\t\t\t\t\t(function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tvar type = jQuery.type( arg );\n\t\t\t\t\t\t\tif ( type === \"function\" ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && type !== \"string\" ) {\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t})( arguments );\n\t\t\t\t\t// Do we need to add the callbacks to the\n\t\t\t\t\t// current firing batch?\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tfiringLength = list.length;\n\t\t\t\t\t// With memory, if we're not firing then\n\t\t\t\t\t// we should call right away\n\t\t\t\t\t} else if ( memory ) {\n\t\t\t\t\t\tfiringStart = start;\n\t\t\t\t\t\tfire( memory );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\t\tvar index;\n\t\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\t\tlist.splice( index, 1 );\n\t\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\t\t\tif ( index <= firingLength ) {\n\t\t\t\t\t\t\t\t\tfiringLength--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );\n\t\t\t},\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tlist = [];\n\t\t\t\tfiringLength = 0;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Have the list do nothing anymore\n\t\t\tdisable: function() {\n\t\t\t\tlist = stack = memory = undefined;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it disabled?\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\t\t\t// Lock the list in its current state\n\t\t\tlock: function() {\n\t\t\t\tstack = undefined;\n\t\t\t\tif ( !memory ) {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it locked?\n\t\t\tlocked: function() {\n\t\t\t\treturn !stack;\n\t\t\t},\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( list && ( !fired || stack ) ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tstack.push( args );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tfire( args );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\njQuery.extend({\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\t\t\t\t// action, add listener, listener list, final state\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks(\"once memory\"), \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks(\"once memory\"), \"rejected\" ],\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks(\"memory\") ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\tthen: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\t\t\t\t\treturn jQuery.Deferred(function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\t\t\t\t\tvar fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];\n\t\t\t\t\t\t\t// deferred[ done | fail | progress ] for forwarding actions to newDefer\n\t\t\t\t\t\t\tdeferred[ tuple[1] ](function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && jQuery.isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject )\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t});\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t}).promise();\n\t\t\t\t},\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Keep pipe for back-compat\n\t\tpromise.pipe = promise.then;\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 3 ];\n\n\t\t\t// promise[ done | fail | progress ] = list.add\n\t\t\tpromise[ tuple[1] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(function() {\n\t\t\t\t\t// state = [ resolved | rejected ]\n\t\t\t\t\tstate = stateString;\n\n\t\t\t\t// [ reject_list | resolve_list ].disable; progress_list.lock\n\t\t\t\t}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );\n\t\t\t}\n\n\t\t\t// deferred[ resolve | reject | notify ]\n\t\t\tdeferred[ tuple[0] ] = function() {\n\t\t\t\tdeferred[ tuple[0] + \"With\" ]( this === deferred ? promise : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\t\t\tdeferred[ tuple[0] + \"With\" ] = list.fireWith;\n\t\t});\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( subordinate /* , ..., subordinateN */ ) {\n\t\tvar i = 0,\n\t\t\tresolveValues = slice.call( arguments ),\n\t\t\tlength = resolveValues.length,\n\n\t\t\t// the count of uncompleted subordinates\n\t\t\tremaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,\n\n\t\t\t// the master Deferred. If resolveValues consist of only a single Deferred, just use that.\n\t\t\tdeferred = remaining === 1 ? subordinate : jQuery.Deferred(),\n\n\t\t\t// Update function for both resolve and progress values\n\t\t\tupdateFunc = function( i, contexts, values ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tcontexts[ i ] = this;\n\t\t\t\t\tvalues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( values === progressValues ) {\n\t\t\t\t\t\tdeferred.notifyWith( contexts, values );\n\n\t\t\t\t\t} else if ( !(--remaining) ) {\n\t\t\t\t\t\tdeferred.resolveWith( contexts, values );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t},\n\n\t\t\tprogressValues, progressContexts, resolveContexts;\n\n\t\t// add listeners to Deferred subordinates; treat others as resolved\n\t\tif ( length > 1 ) {\n\t\t\tprogressValues = new Array( length );\n\t\t\tprogressContexts = new Array( length );\n\t\t\tresolveContexts = new Array( length );\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {\n\t\t\t\t\tresolveValues[ i ].promise()\n\t\t\t\t\t\t.done( updateFunc( i, resolveContexts, resolveValues ) )\n\t\t\t\t\t\t.fail( deferred.reject )\n\t\t\t\t\t\t.progress( updateFunc( i, progressContexts, progressValues ) );\n\t\t\t\t} else {\n\t\t\t\t\t--remaining;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// if we're not waiting on anything, resolve the master\n\t\tif ( !remaining ) {\n\t\t\tdeferred.resolveWith( resolveContexts, resolveValues );\n\t\t}\n\n\t\treturn deferred.promise();\n\t}\n});\n\n\n// The deferred used on DOM ready\nvar readyList;\n\njQuery.fn.ready = function( fn ) {\n\t// Add the callback\n\tjQuery.ready.promise().done( fn );\n\n\treturn this;\n};\n\njQuery.extend({\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Hold (or release) the ready event\n\tholdReady: function( hold ) {\n\t\tif ( hold ) {\n\t\t\tjQuery.readyWait++;\n\t\t} else {\n\t\t\tjQuery.ready( true );\n\t\t}\n\t},\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).\n\t\tif ( !document.body ) {\n\t\t\treturn setTimeout( jQuery.ready );\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\n\t\t// Trigger any bound ready events\n\t\tif ( jQuery.fn.triggerHandler ) {\n\t\t\tjQuery( document ).triggerHandler( \"ready\" );\n\t\t\tjQuery( document ).off( \"ready\" );\n\t\t}\n\t}\n});\n\n/**\n * Clean-up method for dom ready events\n */\nfunction detach() {\n\tif ( document.addEventListener ) {\n\t\tdocument.removeEventListener( \"DOMContentLoaded\", completed, false );\n\t\twindow.removeEventListener( \"load\", completed, false );\n\n\t} else {\n\t\tdocument.detachEvent( \"onreadystatechange\", completed );\n\t\twindow.detachEvent( \"onload\", completed );\n\t}\n}\n\n/**\n * The ready event handler and self cleanup method\n */\nfunction completed() {\n\t// readyState === \"complete\" is good enough for us to call the dom ready in oldIE\n\tif ( document.addEventListener || event.type === \"load\" || document.readyState === \"complete\" ) {\n\t\tdetach();\n\t\tjQuery.ready();\n\t}\n}\n\njQuery.ready.promise = function( obj ) {\n\tif ( !readyList ) {\n\n\t\treadyList = jQuery.Deferred();\n\n\t\t// Catch cases where $(document).ready() is called after the browser event has already occurred.\n\t\t// we once tried to use readyState \"interactive\" here, but it caused issues like the one\n\t\t// discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15\n\t\tif ( document.readyState === \"complete\" ) {\n\t\t\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\t\t\tsetTimeout( jQuery.ready );\n\n\t\t// Standards-based browsers support DOMContentLoaded\n\t\t} else if ( document.addEventListener ) {\n\t\t\t// Use the handy event callback\n\t\t\tdocument.addEventListener( \"DOMContentLoaded\", completed, false );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.addEventListener( \"load\", completed, false );\n\n\t\t// If IE event model is used\n\t\t} else {\n\t\t\t// Ensure firing before onload, maybe late but safe also for iframes\n\t\t\tdocument.attachEvent( \"onreadystatechange\", completed );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.attachEvent( \"onload\", completed );\n\n\t\t\t// If IE and not a frame\n\t\t\t// continually check to see if the document is ready\n\t\t\tvar top = false;\n\n\t\t\ttry {\n\t\t\t\ttop = window.frameElement == null && document.documentElement;\n\t\t\t} catch(e) {}\n\n\t\t\tif ( top && top.doScroll ) {\n\t\t\t\t(function doScrollCheck() {\n\t\t\t\t\tif ( !jQuery.isReady ) {\n\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t// Use the trick by Diego Perini\n\t\t\t\t\t\t\t// http://javascript.nwbox.com/IEContentLoaded/\n\t\t\t\t\t\t\ttop.doScroll(\"left\");\n\t\t\t\t\t\t} catch(e) {\n\t\t\t\t\t\t\treturn setTimeout( doScrollCheck, 50 );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// detach all dom ready events\n\t\t\t\t\t\tdetach();\n\n\t\t\t\t\t\t// and execute any waiting functions\n\t\t\t\t\t\tjQuery.ready();\n\t\t\t\t\t}\n\t\t\t\t})();\n\t\t\t}\n\t\t}\n\t}\n\treturn readyList.promise( obj );\n};\n\n\nvar strundefined = typeof undefined;\n\n\n\n// Support: IE<9\n// Iteration over object's inherited properties before its own\nvar i;\nfor ( i in jQuery( support ) ) {\n\tbreak;\n}\nsupport.ownLast = i !== \"0\";\n\n// Note: most support tests are defined in their respective modules.\n// false until the test is run\nsupport.inlineBlockNeedsLayout = false;\n\n// Execute ASAP in case we need to set body.style.zoom\njQuery(function() {\n\t// Minified: var a,b,c,d\n\tvar val, div, body, container;\n\n\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\tif ( !body || !body.style ) {\n\t\t// Return for frameset docs that don't have a body\n\t\treturn;\n\t}\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tcontainer = document.createElement( \"div\" );\n\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\tbody.appendChild( container ).appendChild( div );\n\n\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t// Support: IE<8\n\t\t// Check if natively block-level elements act like inline-block\n\t\t// elements when setting their display to 'inline' and giving\n\t\t// them layout\n\t\tdiv.style.cssText = \"display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1\";\n\n\t\tsupport.inlineBlockNeedsLayout = val = div.offsetWidth === 3;\n\t\tif ( val ) {\n\t\t\t// Prevent IE 6 from affecting layout for positioned elements #11048\n\t\t\t// Prevent IE from shrinking the body in IE 7 mode #12869\n\t\t\t// Support: IE<8\n\t\t\tbody.style.zoom = 1;\n\t\t}\n\t}\n\n\tbody.removeChild( container );\n});\n\n\n\n\n(function() {\n\tvar div = document.createElement( \"div\" );\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\n/**\n * Determines whether an object can have data\n */\njQuery.acceptData = function( elem ) {\n\tvar noData = jQuery.noData[ (elem.nodeName + \" \").toLowerCase() ],\n\t\tnodeType = +elem.nodeType || 1;\n\n\t// Do not set data on non-element DOM nodes because it will not be cleared (#8335).\n\treturn nodeType !== 1 && nodeType !== 9 ?\n\t\tfalse :\n\n\t\t// Nodes accept data unless otherwise specified; rejection can be conditional\n\t\t!noData || noData !== true && elem.getAttribute(\"classid\") === noData;\n};\n\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /([A-Z])/g;\n\nfunction dataAttr( elem, key, data ) {\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\n\t\tvar name = \"data-\" + key.replace( rmultiDash, \"-$1\" ).toLowerCase();\n\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = data === \"true\" ? true :\n\t\t\t\t\tdata === \"false\" ? false :\n\t\t\t\t\tdata === \"null\" ? null :\n\t\t\t\t\t// Only convert to a number if it doesn't change the string\n\t\t\t\t\t+data + \"\" === data ? +data :\n\t\t\t\t\trbrace.test( data ) ? jQuery.parseJSON( data ) :\n\t\t\t\t\tdata;\n\t\t\t} catch( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tjQuery.data( elem, key, data );\n\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\n\treturn data;\n}\n\n// checks a cache object for emptiness\nfunction isEmptyDataObject( obj ) {\n\tvar name;\n\tfor ( name in obj ) {\n\n\t\t// if the public data object is empty, the private is still empty\n\t\tif ( name === \"data\" && jQuery.isEmptyObject( obj[name] ) ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( name !== \"toJSON\" ) {\n\t\t\treturn false;\n\t\t}\n\t}\n\n\treturn true;\n}\n\nfunction internalData( elem, name, data, pvt /* Internal Use Only */ ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar ret, thisCache,\n\t\tinternalKey = jQuery.expando,\n\n\t\t// We have to handle DOM nodes and JS objects differently because IE6-7\n\t\t// can't GC object references properly across the DOM-JS boundary\n\t\tisNode = elem.nodeType,\n\n\t\t// Only DOM nodes need the global jQuery cache; JS object data is\n\t\t// attached directly to the object so GC can occur automatically\n\t\tcache = isNode ? jQuery.cache : elem,\n\n\t\t// Only defining an ID for JS objects if its cache already exists allows\n\t\t// the code to shortcut on the same path as a DOM node with no cache\n\t\tid = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;\n\n\t// Avoid doing any more work than we need to when trying to get data on an\n\t// object that has no data at all\n\tif ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === \"string\" ) {\n\t\treturn;\n\t}\n\n\tif ( !id ) {\n\t\t// Only DOM nodes need a new unique ID for each element since their data\n\t\t// ends up in the global cache\n\t\tif ( isNode ) {\n\t\t\tid = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++;\n\t\t} else {\n\t\t\tid = internalKey;\n\t\t}\n\t}\n\n\tif ( !cache[ id ] ) {\n\t\t// Avoid exposing jQuery metadata on plain JS objects when the object\n\t\t// is serialized using JSON.stringify\n\t\tcache[ id ] = isNode ? {} : { toJSON: jQuery.noop };\n\t}\n\n\t// An object can be passed to jQuery.data instead of a key/value pair; this gets\n\t// shallow copied over onto the existing cache\n\tif ( typeof name === \"object\" || typeof name === \"function\" ) {\n\t\tif ( pvt ) {\n\t\t\tcache[ id ] = jQuery.extend( cache[ id ], name );\n\t\t} else {\n\t\t\tcache[ id ].data = jQuery.extend( cache[ id ].data, name );\n\t\t}\n\t}\n\n\tthisCache = cache[ id ];\n\n\t// jQuery data() is stored in a separate object inside the object's internal data\n\t// cache in order to avoid key collisions between internal data and user-defined\n\t// data.\n\tif ( !pvt ) {\n\t\tif ( !thisCache.data ) {\n\t\t\tthisCache.data = {};\n\t\t}\n\n\t\tthisCache = thisCache.data;\n\t}\n\n\tif ( data !== undefined ) {\n\t\tthisCache[ jQuery.camelCase( name ) ] = data;\n\t}\n\n\t// Check for both converted-to-camel and non-converted data property names\n\t// If a data property was specified\n\tif ( typeof name === \"string\" ) {\n\n\t\t// First Try to find as-is property data\n\t\tret = thisCache[ name ];\n\n\t\t// Test for null|undefined property data\n\t\tif ( ret == null ) {\n\n\t\t\t// Try to find the camelCased property\n\t\t\tret = thisCache[ jQuery.camelCase( name ) ];\n\t\t}\n\t} else {\n\t\tret = thisCache;\n\t}\n\n\treturn ret;\n}\n\nfunction internalRemoveData( elem, name, pvt ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar thisCache, i,\n\t\tisNode = elem.nodeType,\n\n\t\t// See jQuery.data for more information\n\t\tcache = isNode ? jQuery.cache : elem,\n\t\tid = isNode ? elem[ jQuery.expando ] : jQuery.expando;\n\n\t// If there is already no cache entry for this object, there is no\n\t// purpose in continuing\n\tif ( !cache[ id ] ) {\n\t\treturn;\n\t}\n\n\tif ( name ) {\n\n\t\tthisCache = pvt ? cache[ id ] : cache[ id ].data;\n\n\t\tif ( thisCache ) {\n\n\t\t\t// Support array or space separated string names for data keys\n\t\t\tif ( !jQuery.isArray( name ) ) {\n\n\t\t\t\t// try the string as a key before any manipulation\n\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\tname = [ name ];\n\t\t\t\t} else {\n\n\t\t\t\t\t// split the camel cased version by spaces unless a key with the spaces exists\n\t\t\t\t\tname = jQuery.camelCase( name );\n\t\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\t\tname = [ name ];\n\t\t\t\t\t} else {\n\t\t\t\t\t\tname = name.split(\" \");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// If \"name\" is an array of keys...\n\t\t\t\t// When data is initially created, via (\"key\", \"val\") signature,\n\t\t\t\t// keys will be converted to camelCase.\n\t\t\t\t// Since there is no way to tell _how_ a key was added, remove\n\t\t\t\t// both plain key and camelCase key. #12786\n\t\t\t\t// This will only penalize the array argument path.\n\t\t\t\tname = name.concat( jQuery.map( name, jQuery.camelCase ) );\n\t\t\t}\n\n\t\t\ti = name.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete thisCache[ name[i] ];\n\t\t\t}\n\n\t\t\t// If there is no data left in the cache, we want to continue\n\t\t\t// and let the cache object itself get destroyed\n\t\t\tif ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t}\n\n\t// See jQuery.data for more information\n\tif ( !pvt ) {\n\t\tdelete cache[ id ].data;\n\n\t\t// Don't destroy the parent cache unless the internal data object\n\t\t// had been the only thing left in it\n\t\tif ( !isEmptyDataObject( cache[ id ] ) ) {\n\t\t\treturn;\n\t\t}\n\t}\n\n\t// Destroy the cache\n\tif ( isNode ) {\n\t\tjQuery.cleanData( [ elem ], true );\n\n\t// Use delete when supported for expandos or `cache` is not a window per isWindow (#10080)\n\t/* jshint eqeqeq: false */\n\t} else if ( support.deleteExpando || cache != cache.window ) {\n\t\t/* jshint eqeqeq: true */\n\t\tdelete cache[ id ];\n\n\t// When all else fails, null\n\t} else {\n\t\tcache[ id ] = null;\n\t}\n}\n\njQuery.extend({\n\tcache: {},\n\n\t// The following elements (space-suffixed to avoid Object.prototype collisions)\n\t// throw uncatchable exceptions if you attempt to set expando properties\n\tnoData: {\n\t\t\"applet \": true,\n\t\t\"embed \": true,\n\t\t// ...but Flash objects (which have this classid) *can* handle expandos\n\t\t\"object \": \"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"\n\t},\n\n\thasData: function( elem ) {\n\t\telem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];\n\t\treturn !!elem && !isEmptyDataObject( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name );\n\t},\n\n\t// For internal use only.\n\t_data: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data, true );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name, true );\n\t}\n});\n\njQuery.fn.extend({\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[0],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Special expections of .data basically thwart jQuery.access,\n\t\t// so implement the relevant behavior ourselves\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = jQuery.data( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !jQuery._data( elem, \"parsedAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE11+\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = jQuery.camelCase( name.slice(5) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tjQuery._data( elem, \"parsedAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each(function() {\n\t\t\t\tjQuery.data( this, key );\n\t\t\t});\n\t\t}\n\n\t\treturn arguments.length > 1 ?\n\n\t\t\t// Sets one value\n\t\t\tthis.each(function() {\n\t\t\t\tjQuery.data( this, key, value );\n\t\t\t}) :\n\n\t\t\t// Gets one value\n\t\t\t// Try to fetch any internally stored data first\n\t\t\telem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined;\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeData( this, key );\n\t\t});\n\t}\n});\n\n\njQuery.extend({\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = jQuery._data( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || jQuery.isArray(data) ) {\n\t\t\t\t\tqueue = jQuery._data( elem, type, jQuery.makeArray(data) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// not intended for public consumption - generates a queueHooks object, or returns the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn jQuery._data( elem, key ) || jQuery._data( elem, key, {\n\t\t\tempty: jQuery.Callbacks(\"once memory\").add(function() {\n\t\t\t\tjQuery._removeData( elem, type + \"queue\" );\n\t\t\t\tjQuery._removeData( elem, key );\n\t\t\t})\n\t\t});\n\t}\n});\n\njQuery.fn.extend({\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[0], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each(function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[0] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t});\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t});\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = jQuery._data( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n});\nvar pnum = (/[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/).source;\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar isHidden = function( elem, el ) {\n\t\t// isHidden might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\t\treturn jQuery.css( elem, \"display\" ) === \"none\" || !jQuery.contains( elem.ownerDocument, elem );\n\t};\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlength = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( jQuery.type( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\tjQuery.access( elems, fn, i, key[i], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !jQuery.isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tfn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn chainable ?\n\t\telems :\n\n\t\t// Gets\n\t\tbulk ?\n\t\t\tfn.call( elems ) :\n\t\t\tlength ? fn( elems[0], key ) : emptyGet;\n};\nvar rcheckableType = (/^(?:checkbox|radio)$/i);\n\n\n\n(function() {\n\t// Minified: var a,b,c\n\tvar input = document.createElement( \"input\" ),\n\t\tdiv = document.createElement( \"div\" ),\n\t\tfragment = document.createDocumentFragment();\n\n\t// Setup\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\n\t// IE strips leading whitespace when .innerHTML is used\n\tsupport.leadingWhitespace = div.firstChild.nodeType === 3;\n\n\t// Make sure that tbody elements aren't automatically inserted\n\t// IE will insert them into empty tables\n\tsupport.tbody = !div.getElementsByTagName( \"tbody\" ).length;\n\n\t// Make sure that link elements get serialized correctly by innerHTML\n\t// This requires a wrapper element in IE\n\tsupport.htmlSerialize = !!div.getElementsByTagName( \"link\" ).length;\n\n\t// Makes sure cloning an html5 element does not cause problems\n\t// Where outerHTML is undefined, this still works\n\tsupport.html5Clone =\n\t\tdocument.createElement( \"nav\" ).cloneNode( true ).outerHTML !== \"<:nav></:nav>\";\n\n\t// Check if a disconnected checkbox will retain its checked\n\t// value of true after appended to the DOM (IE6/7)\n\tinput.type = \"checkbox\";\n\tinput.checked = true;\n\tfragment.appendChild( input );\n\tsupport.appendChecked = input.checked;\n\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\t// Support: IE6-IE11+\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// #11217 - WebKit loses check when the name is after the checked attribute\n\tfragment.appendChild( div );\n\tdiv.innerHTML = \"<input type='radio' checked='checked' name='t'/>\";\n\n\t// Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3\n\t// old WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE<9\n\t// Opera does not clone events (and typeof div.attachEvent === undefined).\n\t// IE9-10 clones events bound via attachEvent, but they don't trigger with .click()\n\tsupport.noCloneEvent = true;\n\tif ( div.attachEvent ) {\n\t\tdiv.attachEvent( \"onclick\", function() {\n\t\t\tsupport.noCloneEvent = false;\n\t\t});\n\n\t\tdiv.cloneNode( true ).click();\n\t}\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n})();\n\n\n(function() {\n\tvar i, eventName,\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Support: IE<9 (lack submit/change bubble), Firefox 23+ (lack focusin event)\n\tfor ( i in { submit: true, change: true, focusin: true }) {\n\t\teventName = \"on\" + i;\n\n\t\tif ( !(support[ i + \"Bubbles\" ] = eventName in window) ) {\n\t\t\t// Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP)\n\t\t\tdiv.setAttribute( eventName, \"t\" );\n\t\t\tsupport[ i + \"Bubbles\" ] = div.attributes[ eventName ].expando === false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\nvar rformElems = /^(?:input|select|textarea)$/i,\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu)|click/,\n\trfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)$/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\t\tvar tmp, events, t, handleObjIn,\n\t\t\tspecial, eventHandle, handleObj,\n\t\t\thandlers, type, namespaces, origType,\n\t\t\telemData = jQuery._data( elem );\n\n\t\t// Don't attach events to noData or text/comment nodes (but allow plain objects)\n\t\tif ( !elemData ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !(events = elemData.events) ) {\n\t\t\tevents = elemData.events = {};\n\t\t}\n\t\tif ( !(eventHandle = elemData.handle) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== strundefined && (!e || jQuery.event.triggered !== e.type) ?\n\t\t\t\t\tjQuery.event.dispatch.apply( eventHandle.elem, arguments ) :\n\t\t\t\t\tundefined;\n\t\t\t};\n\t\t\t// Add elem as a property of the handle fn to prevent a memory leak with IE non-native events\n\t\t\teventHandle.elem = elem;\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend({\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join(\".\")\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !(handlers = events[ type ]) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener/attachEvent if the special events handler returns false\n\t\t\t\tif ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\t\t\t\t\t// Bind the global event handler to the element\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle, false );\n\n\t\t\t\t\t} else if ( elem.attachEvent ) {\n\t\t\t\t\t\telem.attachEvent( \"on\" + type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t\t// Nullify elem to prevent memory leaks in IE\n\t\telem = null;\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\t\tvar j, handleObj, tmp,\n\t\t\torigCount, t, events,\n\t\t\tspecial, handlers, type,\n\t\t\tnamespaces, origType,\n\t\t\telemData = jQuery.hasData( elem ) && jQuery._data( elem );\n\n\t\tif ( !elemData || !(events = elemData.events) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[2] && new RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector || selector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdelete elemData.handle;\n\n\t\t\t// removeData also checks for emptiness and clears the expando if empty\n\t\t\t// so use it instead of delete\n\t\t\tjQuery._removeData( elem, \"events\" );\n\t\t}\n\t},\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\t\tvar handle, ontype, cur,\n\t\t\tbubbleType, special, tmp, i,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split(\".\") : [];\n\n\t\tcur = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf(\".\") >= 0 ) {\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split(\".\");\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf(\":\") < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join(\".\");\n\t\tevent.namespace_re = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === (elem.ownerDocument || document) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {\n\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = ( jQuery._data( cur, \"events\" ) || {} )[ event.type ] && jQuery._data( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && jQuery.acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) &&\n\t\t\t\tjQuery.acceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name name as the event.\n\t\t\t\t// Can't use an .isFunction() check here because IE6/7 fails that test.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\t\t\t\t\ttry {\n\t\t\t\t\t\telem[ type ]();\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// IE<9 dies on focus/blur to hidden element (#1486,#12518)\n\t\t\t\t\t\t// only reproducible on winXP IE8 native, not IE9 in IE8 mode\n\t\t\t\t\t}\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\tdispatch: function( event ) {\n\n\t\t// Make a writable jQuery.Event from the native event object\n\t\tevent = jQuery.event.fix( event );\n\n\t\tvar i, ret, handleObj, matched, j,\n\t\t\thandlerQueue = [],\n\t\t\targs = slice.call( arguments ),\n\t\t\thandlers = ( jQuery._data( this, \"events\" ) || {} )[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[0] = event;\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// Triggered event must either 1) have no namespace, or\n\t\t\t\t// 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).\n\t\t\t\tif ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )\n\t\t\t\t\t\t\t.apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( (event.result = ret) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar sel, handleObj, matches, i,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\t// Black-hole SVG <use> instance trees (#13180)\n\t\t// Avoid non-left-click bubbling in Firefox (#3861)\n\t\tif ( delegateCount && cur.nodeType && (!event.button || event.type !== \"click\") ) {\n\n\t\t\t/* jshint eqeqeq: false */\n\t\t\tfor ( ; cur != this; cur = cur.parentNode || this ) {\n\t\t\t\t/* jshint eqeqeq: true */\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== \"click\") ) {\n\t\t\t\t\tmatches = [];\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matches[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatches[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) >= 0 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matches[ sel ] ) {\n\t\t\t\t\t\t\tmatches.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matches.length ) {\n\t\t\t\t\t\thandlerQueue.push({ elem: cur, handlers: matches });\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\tfix: function( event ) {\n\t\tif ( event[ jQuery.expando ] ) {\n\t\t\treturn event;\n\t\t}\n\n\t\t// Create a writable copy of the event object and normalize some properties\n\t\tvar i, prop, copy,\n\t\t\ttype = event.type,\n\t\t\toriginalEvent = event,\n\t\t\tfixHook = this.fixHooks[ type ];\n\n\t\tif ( !fixHook ) {\n\t\t\tthis.fixHooks[ type ] = fixHook =\n\t\t\t\trmouseEvent.test( type ) ? this.mouseHooks :\n\t\t\t\trkeyEvent.test( type ) ? this.keyHooks :\n\t\t\t\t{};\n\t\t}\n\t\tcopy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;\n\n\t\tevent = new jQuery.Event( originalEvent );\n\n\t\ti = copy.length;\n\t\twhile ( i-- ) {\n\t\t\tprop = copy[ i ];\n\t\t\tevent[ prop ] = originalEvent[ prop ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Fix target property (#1925)\n\t\tif ( !event.target ) {\n\t\t\tevent.target = originalEvent.srcElement || document;\n\t\t}\n\n\t\t// Support: Chrome 23+, Safari?\n\t\t// Target should not be a text node (#504, #13143)\n\t\tif ( event.target.nodeType === 3 ) {\n\t\t\tevent.target = event.target.parentNode;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// For mouse/key events, metaKey==false if it's undefined (#3368, #11328)\n\t\tevent.metaKey = !!event.metaKey;\n\n\t\treturn fixHook.filter ? fixHook.filter( event, originalEvent ) : event;\n\t},\n\n\t// Includes some event props shared by KeyEvent and MouseEvent\n\tprops: \"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which\".split(\" \"),\n\n\tfixHooks: {},\n\n\tkeyHooks: {\n\t\tprops: \"char charCode key keyCode\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\n\t\t\t// Add which for key events\n\t\t\tif ( event.which == null ) {\n\t\t\t\tevent.which = original.charCode != null ? original.charCode : original.keyCode;\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tmouseHooks: {\n\t\tprops: \"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\t\t\tvar body, eventDoc, doc,\n\t\t\t\tbutton = original.button,\n\t\t\t\tfromElement = original.fromElement;\n\n\t\t\t// Calculate pageX/Y if missing and clientX/Y available\n\t\t\tif ( event.pageX == null && original.clientX != null ) {\n\t\t\t\teventDoc = event.target.ownerDocument || document;\n\t\t\t\tdoc = eventDoc.documentElement;\n\t\t\t\tbody = eventDoc.body;\n\n\t\t\t\tevent.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );\n\t\t\t\tevent.pageY = original.clientY + ( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) - ( doc && doc.clientTop  || body && body.clientTop  || 0 );\n\t\t\t}\n\n\t\t\t// Add relatedTarget, if necessary\n\t\t\tif ( !event.relatedTarget && fromElement ) {\n\t\t\t\tevent.relatedTarget = fromElement === event.target ? original.toElement : fromElement;\n\t\t\t}\n\n\t\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\t\t// Note: button is not normalized, so don't use it\n\t\t\tif ( !event.which && button !== undefined ) {\n\t\t\t\tevent.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tspecial: {\n\t\tload: {\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tfocus: {\n\t\t\t// Fire native event if possible so blur/focus sequence is correct\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this !== safeActiveElement() && this.focus ) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tthis.focus();\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// If we error on focus to hidden element (#1486, #12518),\n\t\t\t\t\t\t// let .trigger() run the handlers\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusin\"\n\t\t},\n\t\tblur: {\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this === safeActiveElement() && this.blur ) {\n\t\t\t\t\tthis.blur();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusout\"\n\t\t},\n\t\tclick: {\n\t\t\t// For checkbox, fire native event so checked state will be right\n\t\t\ttrigger: function() {\n\t\t\t\tif ( jQuery.nodeName( this, \"input\" ) && this.type === \"checkbox\" && this.click ) {\n\t\t\t\t\tthis.click();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, don't fire native .click() on links\n\t\t\t_default: function( event ) {\n\t\t\t\treturn jQuery.nodeName( event.target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tsimulate: function( type, elem, event, bubble ) {\n\t\t// Piggyback on a donor event to simulate a different one.\n\t\t// Fake originalEvent to avoid donor's stopPropagation, but if the\n\t\t// simulated event prevents default then we do the same on the donor.\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true,\n\t\t\t\toriginalEvent: {}\n\t\t\t}\n\t\t);\n\t\tif ( bubble ) {\n\t\t\tjQuery.event.trigger( e, null, elem );\n\t\t} else {\n\t\t\tjQuery.event.dispatch.call( elem, e );\n\t\t}\n\t\tif ( e.isDefaultPrevented() ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\t}\n};\n\njQuery.removeEvent = document.removeEventListener ?\n\tfunction( elem, type, handle ) {\n\t\tif ( elem.removeEventListener ) {\n\t\t\telem.removeEventListener( type, handle, false );\n\t\t}\n\t} :\n\tfunction( elem, type, handle ) {\n\t\tvar name = \"on\" + type;\n\n\t\tif ( elem.detachEvent ) {\n\n\t\t\t// #8545, #7054, preventing memory leaks for custom events in IE6-8\n\t\t\t// detachEvent needed property on element, by name of that event, to properly expose it to GC\n\t\t\tif ( typeof elem[ name ] === strundefined ) {\n\t\t\t\telem[ name ] = null;\n\t\t\t}\n\n\t\t\telem.detachEvent( name, handle );\n\t\t}\n\t};\n\njQuery.Event = function( src, props ) {\n\t// Allow instantiation without the 'new' keyword\n\tif ( !(this instanceof jQuery.Event) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\t\t\t\t// Support: IE < 9, Android < 4.0\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || jQuery.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If preventDefault exists, run it on the original event\n\t\tif ( e.preventDefault ) {\n\t\t\te.preventDefault();\n\n\t\t// Support: IE\n\t\t// Otherwise set the returnValue property of the original event to false\n\t\t} else {\n\t\t\te.returnValue = false;\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\t\t// If stopPropagation exists, run it on the original event\n\t\tif ( e.stopPropagation ) {\n\t\t\te.stopPropagation();\n\t\t}\n\n\t\t// Support: IE\n\t\t// Set the cancelBubble property of the original event to true\n\t\te.cancelBubble = true;\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && e.stopImmediatePropagation ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\njQuery.each({\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mousenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || (related !== target && !jQuery.contains( target, related )) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n});\n\n// IE submit delegation\nif ( !support.submitBubbles ) {\n\n\tjQuery.event.special.submit = {\n\t\tsetup: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Lazy-add a submit handler when a descendant form may potentially be submitted\n\t\t\tjQuery.event.add( this, \"click._submit keypress._submit\", function( e ) {\n\t\t\t\t// Node name check avoids a VML-related crash in IE (#9807)\n\t\t\t\tvar elem = e.target,\n\t\t\t\t\tform = jQuery.nodeName( elem, \"input\" ) || jQuery.nodeName( elem, \"button\" ) ? elem.form : undefined;\n\t\t\t\tif ( form && !jQuery._data( form, \"submitBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( form, \"submit._submit\", function( event ) {\n\t\t\t\t\t\tevent._submit_bubble = true;\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( form, \"submitBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t\t// return undefined since we don't need an event listener\n\t\t},\n\n\t\tpostDispatch: function( event ) {\n\t\t\t// If form was submitted by the user, bubble the event up the tree\n\t\t\tif ( event._submit_bubble ) {\n\t\t\t\tdelete event._submit_bubble;\n\t\t\t\tif ( this.parentNode && !event.isTrigger ) {\n\t\t\t\t\tjQuery.event.simulate( \"submit\", this.parentNode, event, true );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Remove delegated handlers; cleanData eventually reaps submit handlers attached above\n\t\t\tjQuery.event.remove( this, \"._submit\" );\n\t\t}\n\t};\n}\n\n// IE change delegation and checkbox/radio fix\nif ( !support.changeBubbles ) {\n\n\tjQuery.event.special.change = {\n\n\t\tsetup: function() {\n\n\t\t\tif ( rformElems.test( this.nodeName ) ) {\n\t\t\t\t// IE doesn't fire change on a check/radio until blur; trigger it on click\n\t\t\t\t// after a propertychange. Eat the blur-change in special.change.handle.\n\t\t\t\t// This still fires onchange a second time for check/radio after blur.\n\t\t\t\tif ( this.type === \"checkbox\" || this.type === \"radio\" ) {\n\t\t\t\t\tjQuery.event.add( this, \"propertychange._change\", function( event ) {\n\t\t\t\t\t\tif ( event.originalEvent.propertyName === \"checked\" ) {\n\t\t\t\t\t\t\tthis._just_changed = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery.event.add( this, \"click._change\", function( event ) {\n\t\t\t\t\t\tif ( this._just_changed && !event.isTrigger ) {\n\t\t\t\t\t\t\tthis._just_changed = false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// Allow triggered, simulated change events (#11500)\n\t\t\t\t\t\tjQuery.event.simulate( \"change\", this, event, true );\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t// Delegated event; lazy-add a change handler on descendant inputs\n\t\t\tjQuery.event.add( this, \"beforeactivate._change\", function( e ) {\n\t\t\t\tvar elem = e.target;\n\n\t\t\t\tif ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, \"changeBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( elem, \"change._change\", function( event ) {\n\t\t\t\t\t\tif ( this.parentNode && !event.isSimulated && !event.isTrigger ) {\n\t\t\t\t\t\t\tjQuery.event.simulate( \"change\", this.parentNode, event, true );\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( elem, \"changeBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t},\n\n\t\thandle: function( event ) {\n\t\t\tvar elem = event.target;\n\n\t\t\t// Swallow native change events from checkbox/radio, we already triggered them above\n\t\t\tif ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== \"radio\" && elem.type !== \"checkbox\") ) {\n\t\t\t\treturn event.handleObj.handler.apply( this, arguments );\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\tjQuery.event.remove( this, \"._change\" );\n\n\t\t\treturn !rformElems.test( this.nodeName );\n\t\t}\n\t};\n}\n\n// Create \"bubbling\" focus and blur events\nif ( !support.focusinBubbles ) {\n\tjQuery.each({ focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );\n\t\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tjQuery._data( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tjQuery._removeData( doc, fix );\n\t\t\t\t} else {\n\t\t\t\t\tjQuery._data( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\njQuery.fn.extend({\n\n\ton: function( types, selector, data, fn, /*INTERNAL*/ one ) {\n\t\tvar type, origFn;\n\n\t\t// Types can be a map of types/handlers\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-Object, selector, data )\n\t\t\tif ( typeof selector !== \"string\" ) {\n\t\t\t\t// ( types-Object, data )\n\t\t\t\tdata = data || selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.on( type, selector, data, types[ type ], one );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( data == null && fn == null ) {\n\t\t\t// ( types, fn )\n\t\t\tfn = selector;\n\t\t\tdata = selector = undefined;\n\t\t} else if ( fn == null ) {\n\t\t\tif ( typeof selector === \"string\" ) {\n\t\t\t\t// ( types, selector, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = undefined;\n\t\t\t} else {\n\t\t\t\t// ( types, data, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t} else if ( !fn ) {\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( one === 1 ) {\n\t\t\torigFn = fn;\n\t\t\tfn = function( event ) {\n\t\t\t\t// Can use an empty set, since event contains the info\n\t\t\t\tjQuery().off( event );\n\t\t\t\treturn origFn.apply( this, arguments );\n\t\t\t};\n\t\t\t// Use same guid so caller can remove using origFn\n\t\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.add( this, types, fn, data, selector );\n\t\t});\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn this.on( types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ? handleObj.origType + \".\" + handleObj.namespace : handleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t});\n\t},\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t});\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[0];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n});\n\n\nfunction createSafeFragment( document ) {\n\tvar list = nodeNames.split( \"|\" ),\n\t\tsafeFrag = document.createDocumentFragment();\n\n\tif ( safeFrag.createElement ) {\n\t\twhile ( list.length ) {\n\t\t\tsafeFrag.createElement(\n\t\t\t\tlist.pop()\n\t\t\t);\n\t\t}\n\t}\n\treturn safeFrag;\n}\n\nvar nodeNames = \"abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|\" +\n\t\t\"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video\",\n\trinlinejQuery = / jQuery\\d+=\"(?:null|\\d+)\"/g,\n\trnoshimcache = new RegExp(\"<(?:\" + nodeNames + \")[\\\\s/>]\", \"i\"),\n\trleadingWhitespace = /^\\s+/,\n\trxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>]*)\\/>/gi,\n\trtagName = /<([\\w:]+)/,\n\trtbody = /<tbody/i,\n\trhtml = /<|&#?\\w+;/,\n\trnoInnerhtml = /<(?:script|style|link)/i,\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trscriptType = /^$|\\/(?:java|ecma)script/i,\n\trscriptTypeMasked = /^true\\/(.*)/,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g,\n\n\t// We have to close these tags to support XHTML (#13200)\n\twrapMap = {\n\t\toption: [ 1, \"<select multiple='multiple'>\", \"</select>\" ],\n\t\tlegend: [ 1, \"<fieldset>\", \"</fieldset>\" ],\n\t\tarea: [ 1, \"<map>\", \"</map>\" ],\n\t\tparam: [ 1, \"<object>\", \"</object>\" ],\n\t\tthead: [ 1, \"<table>\", \"</table>\" ],\n\t\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\t\tcol: [ 2, \"<table><tbody></tbody><colgroup>\", \"</colgroup></table>\" ],\n\t\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t\t// IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags,\n\t\t// unless wrapped in a div with non-breaking characters in front of it.\n\t\t_default: support.htmlSerialize ? [ 0, \"\", \"\" ] : [ 1, \"X<div>\", \"</div>\"  ]\n\t},\n\tsafeFragment = createSafeFragment( document ),\n\tfragmentDiv = safeFragment.appendChild( document.createElement(\"div\") );\n\nwrapMap.optgroup = wrapMap.option;\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\nfunction getAll( context, tag ) {\n\tvar elems, elem,\n\t\ti = 0,\n\t\tfound = typeof context.getElementsByTagName !== strundefined ? context.getElementsByTagName( tag || \"*\" ) :\n\t\t\ttypeof context.querySelectorAll !== strundefined ? context.querySelectorAll( tag || \"*\" ) :\n\t\t\tundefined;\n\n\tif ( !found ) {\n\t\tfor ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( !tag || jQuery.nodeName( elem, tag ) ) {\n\t\t\t\tfound.push( elem );\n\t\t\t} else {\n\t\t\t\tjQuery.merge( found, getAll( elem, tag ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn tag === undefined || tag && jQuery.nodeName( context, tag ) ?\n\t\tjQuery.merge( [ context ], found ) :\n\t\tfound;\n}\n\n// Used in buildFragment, fixes the defaultChecked property\nfunction fixDefaultChecked( elem ) {\n\tif ( rcheckableType.test( elem.type ) ) {\n\t\telem.defaultChecked = elem.checked;\n\t}\n}\n\n// Support: IE<8\n// Manipulating tables requires a tbody\nfunction manipulationTarget( elem, content ) {\n\treturn jQuery.nodeName( elem, \"table\" ) &&\n\t\tjQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ?\n\n\t\telem.getElementsByTagName(\"tbody\")[0] ||\n\t\t\telem.appendChild( elem.ownerDocument.createElement(\"tbody\") ) :\n\t\telem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = (jQuery.find.attr( elem, \"type\" ) !== null) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tvar match = rscriptTypeMasked.exec( elem.type );\n\tif ( match ) {\n\t\telem.type = match[1];\n\t} else {\n\t\telem.removeAttribute(\"type\");\n\t}\n\treturn elem;\n}\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar elem,\n\t\ti = 0;\n\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\tjQuery._data( elem, \"globalEval\", !refElements || jQuery._data( refElements[i], \"globalEval\" ) );\n\t}\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\n\tif ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {\n\t\treturn;\n\t}\n\n\tvar type, i, l,\n\t\toldData = jQuery._data( src ),\n\t\tcurData = jQuery._data( dest, oldData ),\n\t\tevents = oldData.events;\n\n\tif ( events ) {\n\t\tdelete curData.handle;\n\t\tcurData.events = {};\n\n\t\tfor ( type in events ) {\n\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t}\n\t\t}\n\t}\n\n\t// make the cloned public data object a copy from the original\n\tif ( curData.data ) {\n\t\tcurData.data = jQuery.extend( {}, curData.data );\n\t}\n}\n\nfunction fixCloneNodeIssues( src, dest ) {\n\tvar nodeName, e, data;\n\n\t// We do not need to do anything for non-Elements\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\tnodeName = dest.nodeName.toLowerCase();\n\n\t// IE6-8 copies events bound via attachEvent when using cloneNode.\n\tif ( !support.noCloneEvent && dest[ jQuery.expando ] ) {\n\t\tdata = jQuery._data( dest );\n\n\t\tfor ( e in data.events ) {\n\t\t\tjQuery.removeEvent( dest, e, data.handle );\n\t\t}\n\n\t\t// Event data gets referenced instead of copied if the expando gets copied too\n\t\tdest.removeAttribute( jQuery.expando );\n\t}\n\n\t// IE blanks contents when cloning scripts, and tries to evaluate newly-set text\n\tif ( nodeName === \"script\" && dest.text !== src.text ) {\n\t\tdisableScript( dest ).text = src.text;\n\t\trestoreScript( dest );\n\n\t// IE6-10 improperly clones children of object elements using classid.\n\t// IE10 throws NoModificationAllowedError if parent is null, #12132.\n\t} else if ( nodeName === \"object\" ) {\n\t\tif ( dest.parentNode ) {\n\t\t\tdest.outerHTML = src.outerHTML;\n\t\t}\n\n\t\t// This path appears unavoidable for IE9. When cloning an object\n\t\t// element in IE9, the outerHTML strategy above is not sufficient.\n\t\t// If the src has innerHTML and the destination does not,\n\t\t// copy the src.innerHTML into the dest.innerHTML. #10324\n\t\tif ( support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) {\n\t\t\tdest.innerHTML = src.innerHTML;\n\t\t}\n\n\t} else if ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\t// IE6-8 fails to persist the checked state of a cloned checkbox\n\t\t// or radio button. Worse, IE6-7 fail to give the cloned element\n\t\t// a checked appearance if the defaultChecked value isn't also set\n\n\t\tdest.defaultChecked = dest.checked = src.checked;\n\n\t\t// IE6-7 get confused and end up setting the value of a cloned\n\t\t// checkbox/radio button to an empty string instead of \"on\"\n\t\tif ( dest.value !== src.value ) {\n\t\t\tdest.value = src.value;\n\t\t}\n\n\t// IE6-8 fails to return the selected option to the default selected\n\t// state when cloning options\n\t} else if ( nodeName === \"option\" ) {\n\t\tdest.defaultSelected = dest.selected = src.defaultSelected;\n\n\t// IE6-8 fails to set the defaultValue to the correct value when\n\t// cloning other types of input fields\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\njQuery.extend({\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar destElements, node, clone, i, srcElements,\n\t\t\tinPage = jQuery.contains( elem.ownerDocument, elem );\n\n\t\tif ( support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( \"<\" + elem.nodeName + \">\" ) ) {\n\t\t\tclone = elem.cloneNode( true );\n\n\t\t// IE<=8 does not properly clone detached, unknown element nodes\n\t\t} else {\n\t\t\tfragmentDiv.innerHTML = elem.outerHTML;\n\t\t\tfragmentDiv.removeChild( clone = fragmentDiv.firstChild );\n\t\t}\n\n\t\tif ( (!support.noCloneEvent || !support.noCloneChecked) &&\n\t\t\t\t(elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\t// Fix all IE cloning issues\n\t\t\tfor ( i = 0; (node = srcElements[i]) != null; ++i ) {\n\t\t\t\t// Ensure that the destination node is not null; Fixes #9587\n\t\t\t\tif ( destElements[i] ) {\n\t\t\t\t\tfixCloneNodeIssues( node, destElements[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0; (node = srcElements[i]) != null; i++ ) {\n\t\t\t\t\tcloneCopyEvent( node, destElements[i] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\tdestElements = srcElements = node = null;\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tbuildFragment: function( elems, context, scripts, selection ) {\n\t\tvar j, elem, contains,\n\t\t\ttmp, tag, tbody, wrap,\n\t\t\tl = elems.length,\n\n\t\t\t// Ensure a safe fragment\n\t\t\tsafe = createSafeFragment( context ),\n\n\t\t\tnodes = [],\n\t\t\ti = 0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\telem = elems[ i ];\n\n\t\t\tif ( elem || elem === 0 ) {\n\n\t\t\t\t// Add nodes directly\n\t\t\t\tif ( jQuery.type( elem ) === \"object\" ) {\n\t\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t\t// Convert non-html into a text node\n\t\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t\t// Convert html into DOM nodes\n\t\t\t\t} else {\n\t\t\t\t\ttmp = tmp || safe.appendChild( context.createElement(\"div\") );\n\n\t\t\t\t\t// Deserialize a standard representation\n\t\t\t\t\ttag = (rtagName.exec( elem ) || [ \"\", \"\" ])[ 1 ].toLowerCase();\n\t\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\n\t\t\t\t\ttmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, \"<$1></$2>\" ) + wrap[2];\n\n\t\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\t\tj = wrap[0];\n\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Manually add leading whitespace removed by IE\n\t\t\t\t\tif ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {\n\t\t\t\t\t\tnodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove IE's autoinserted <tbody> from table fragments\n\t\t\t\t\tif ( !support.tbody ) {\n\n\t\t\t\t\t\t// String was a <table>, *may* have spurious <tbody>\n\t\t\t\t\t\telem = tag === \"table\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\ttmp.firstChild :\n\n\t\t\t\t\t\t\t// String was a bare <thead> or <tfoot>\n\t\t\t\t\t\t\twrap[1] === \"<table>\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\t\ttmp :\n\t\t\t\t\t\t\t\t0;\n\n\t\t\t\t\t\tj = elem && elem.childNodes.length;\n\t\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\t\tif ( jQuery.nodeName( (tbody = elem.childNodes[j]), \"tbody\" ) && !tbody.childNodes.length ) {\n\t\t\t\t\t\t\t\telem.removeChild( tbody );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t\t// Fix #12392 for WebKit and IE > 9\n\t\t\t\t\ttmp.textContent = \"\";\n\n\t\t\t\t\t// Fix #12392 for oldIE\n\t\t\t\t\twhile ( tmp.firstChild ) {\n\t\t\t\t\t\ttmp.removeChild( tmp.firstChild );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remember the top-level container for proper cleanup\n\t\t\t\t\ttmp = safe.lastChild;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Fix #11356: Clear elements from fragment\n\t\tif ( tmp ) {\n\t\t\tsafe.removeChild( tmp );\n\t\t}\n\n\t\t// Reset defaultChecked for any radios and checkboxes\n\t\t// about to be appended to the DOM in IE 6/7 (#8060)\n\t\tif ( !support.appendChecked ) {\n\t\t\tjQuery.grep( getAll( nodes, \"input\" ), fixDefaultChecked );\n\t\t}\n\n\t\ti = 0;\n\t\twhile ( (elem = nodes[ i++ ]) ) {\n\n\t\t\t// #4087 - If origin and destination elements are the same, and this is\n\t\t\t// that element, do not do anything\n\t\t\tif ( selection && jQuery.inArray( elem, selection ) !== -1 ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tcontains = jQuery.contains( elem.ownerDocument, elem );\n\n\t\t\t// Append to fragment\n\t\t\ttmp = getAll( safe.appendChild( elem ), \"script\" );\n\n\t\t\t// Preserve script evaluation history\n\t\t\tif ( contains ) {\n\t\t\t\tsetGlobalEval( tmp );\n\t\t\t}\n\n\t\t\t// Capture executables\n\t\t\tif ( scripts ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (elem = tmp[ j++ ]) ) {\n\t\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\t\tscripts.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\ttmp = null;\n\n\t\treturn safe;\n\t},\n\n\tcleanData: function( elems, /* internal */ acceptData ) {\n\t\tvar elem, type, id, data,\n\t\t\ti = 0,\n\t\t\tinternalKey = jQuery.expando,\n\t\t\tcache = jQuery.cache,\n\t\t\tdeleteExpando = support.deleteExpando,\n\t\t\tspecial = jQuery.event.special;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( acceptData || jQuery.acceptData( elem ) ) {\n\n\t\t\t\tid = elem[ internalKey ];\n\t\t\t\tdata = id && cache[ id ];\n\n\t\t\t\tif ( data ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove cache only if it was not already removed by jQuery.event.remove\n\t\t\t\t\tif ( cache[ id ] ) {\n\n\t\t\t\t\t\tdelete cache[ id ];\n\n\t\t\t\t\t\t// IE does not allow us to delete expando properties from nodes,\n\t\t\t\t\t\t// nor does it have a removeAttribute function on Document nodes;\n\t\t\t\t\t\t// we must handle all of these cases\n\t\t\t\t\t\tif ( deleteExpando ) {\n\t\t\t\t\t\t\tdelete elem[ internalKey ];\n\n\t\t\t\t\t\t} else if ( typeof elem.removeAttribute !== strundefined ) {\n\t\t\t\t\t\t\telem.removeAttribute( internalKey );\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\telem[ internalKey ] = null;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tdeletedIds.push( id );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\njQuery.fn.extend({\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t});\n\t},\n\n\tprepend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t});\n\t},\n\n\tbefore: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t});\n\t},\n\n\tafter: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t});\n\t},\n\n\tremove: function( selector, keepData /* Internal Use Only */ ) {\n\t\tvar elem,\n\t\t\telems = selector ? jQuery.filter( selector, this ) : this,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\n\t\t\tif ( !keepData && elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem ) );\n\t\t\t}\n\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\tif ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\t\tsetGlobalEval( getAll( elem, \"script\" ) );\n\t\t\t\t}\n\t\t\t\telem.parentNode.removeChild( elem );\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = this[i]) != null; i++ ) {\n\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t}\n\n\t\t\t// Remove any remaining nodes\n\t\t\twhile ( elem.firstChild ) {\n\t\t\t\telem.removeChild( elem.firstChild );\n\t\t\t}\n\n\t\t\t// If this is a select, ensure that it displays empty (#12336)\n\t\t\t// Support: IE<9\n\t\t\tif ( elem.options && jQuery.nodeName( elem, \"select\" ) ) {\n\t\t\t\telem.options.length = 0;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map(function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t});\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined ) {\n\t\t\t\treturn elem.nodeType === 1 ?\n\t\t\t\t\telem.innerHTML.replace( rinlinejQuery, \"\" ) :\n\t\t\t\t\tundefined;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t( support.htmlSerialize || !rnoshimcache.test( value )  ) &&\n\t\t\t\t( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&\n\t\t\t\t!wrapMap[ (rtagName.exec( value ) || [ \"\", \"\" ])[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = value.replace( rxhtmlTag, \"<$1></$2>\" );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor (; i < l; i++ ) {\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\telem = this[i] || {};\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar arg = arguments[ 0 ];\n\n\t\t// Make the changes, replacing each context element with the new content\n\t\tthis.domManip( arguments, function( elem ) {\n\t\t\targ = this.parentNode;\n\n\t\t\tjQuery.cleanData( getAll( this ) );\n\n\t\t\tif ( arg ) {\n\t\t\t\targ.replaceChild( elem, this );\n\t\t\t}\n\t\t});\n\n\t\t// Force removal if there was no new content (e.g., from empty arguments)\n\t\treturn arg && (arg.length || arg.nodeType) ? this : this.remove();\n\t},\n\n\tdetach: function( selector ) {\n\t\treturn this.remove( selector, true );\n\t},\n\n\tdomManip: function( args, callback ) {\n\n\t\t// Flatten any nested arrays\n\t\targs = concat.apply( [], args );\n\n\t\tvar first, node, hasScripts,\n\t\t\tscripts, doc, fragment,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tset = this,\n\t\t\tiNoClone = l - 1,\n\t\t\tvalue = args[0],\n\t\t\tisFunction = jQuery.isFunction( value );\n\n\t\t// We can't cloneNode fragments that contain checked, in WebKit\n\t\tif ( isFunction ||\n\t\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\t\treturn this.each(function( index ) {\n\t\t\t\tvar self = set.eq( index );\n\t\t\t\tif ( isFunction ) {\n\t\t\t\t\targs[0] = value.call( this, index, self.html() );\n\t\t\t\t}\n\t\t\t\tself.domManip( args, callback );\n\t\t\t});\n\t\t}\n\n\t\tif ( l ) {\n\t\t\tfragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );\n\t\t\tfirst = fragment.firstChild;\n\n\t\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\t\tfragment = first;\n\t\t\t}\n\n\t\t\tif ( first ) {\n\t\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\t\thasScripts = scripts.length;\n\n\t\t\t\t// Use the original fragment for the last item instead of the first because it can end up\n\t\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\tnode = fragment;\n\n\t\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tcallback.call( this[i], node, i );\n\t\t\t\t}\n\n\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t\t// Reenable scripts\n\t\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t\t!jQuery._data( node, \"globalEval\" ) && jQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\t\tif ( node.src ) {\n\t\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\t\tif ( jQuery._evalUrl ) {\n\t\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.globalEval( ( node.text || node.textContent || node.innerHTML || \"\" ).replace( rcleanScript, \"\" ) );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Fix #11809: Avoid leaking memory\n\t\t\t\tfragment = first = null;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t}\n});\n\njQuery.each({\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\ti = 0,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone(true);\n\t\t\tjQuery( insert[i] )[ original ]( elems );\n\n\t\t\t// Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get()\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\n\n\nvar iframe,\n\telemdisplay = {};\n\n/**\n * Retrieve the actual display of a element\n * @param {String} name nodeName of the element\n * @param {Object} doc Document object\n */\n// Called only from within defaultDisplay\nfunction actualDisplay( name, doc ) {\n\tvar style,\n\t\telem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),\n\n\t\t// getDefaultComputedStyle might be reliably used only on attached element\n\t\tdisplay = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ?\n\n\t\t\t// Use of this method is a temporary fix (more like optmization) until something better comes along,\n\t\t\t// since it was removed from specification and supported only in FF\n\t\t\tstyle.display : jQuery.css( elem[ 0 ], \"display\" );\n\n\t// We don't have any data stored on the element,\n\t// so use \"detach\" method as fast way to get rid of the element\n\telem.detach();\n\n\treturn display;\n}\n\n/**\n * Try to determine the default display value of an element\n * @param {String} nodeName\n */\nfunction defaultDisplay( nodeName ) {\n\tvar doc = document,\n\t\tdisplay = elemdisplay[ nodeName ];\n\n\tif ( !display ) {\n\t\tdisplay = actualDisplay( nodeName, doc );\n\n\t\t// If the simple way fails, read from inside an iframe\n\t\tif ( display === \"none\" || !display ) {\n\n\t\t\t// Use the already-created iframe if possible\n\t\t\tiframe = (iframe || jQuery( \"<iframe frameborder='0' width='0' height='0'/>\" )).appendTo( doc.documentElement );\n\n\t\t\t// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse\n\t\t\tdoc = ( iframe[ 0 ].contentWindow || iframe[ 0 ].contentDocument ).document;\n\n\t\t\t// Support: IE\n\t\t\tdoc.write();\n\t\t\tdoc.close();\n\n\t\t\tdisplay = actualDisplay( nodeName, doc );\n\t\t\tiframe.detach();\n\t\t}\n\n\t\t// Store the correct default display\n\t\telemdisplay[ nodeName ] = display;\n\t}\n\n\treturn display;\n}\n\n\n(function() {\n\tvar shrinkWrapBlocksVal;\n\n\tsupport.shrinkWrapBlocks = function() {\n\t\tif ( shrinkWrapBlocksVal != null ) {\n\t\t\treturn shrinkWrapBlocksVal;\n\t\t}\n\n\t\t// Will be changed later if needed.\n\t\tshrinkWrapBlocksVal = false;\n\n\t\t// Minified: var b,c,d\n\t\tvar div, body, container;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\t// Support: IE6\n\t\t// Check if elements with layout shrink-wrap their children\n\t\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t\t// Reset CSS: box-sizing; display; margin; border\n\t\t\tdiv.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;\" +\n\t\t\t\t\"padding:1px;width:1px;zoom:1\";\n\t\t\tdiv.appendChild( document.createElement( \"div\" ) ).style.width = \"5px\";\n\t\t\tshrinkWrapBlocksVal = div.offsetWidth !== 3;\n\t\t}\n\n\t\tbody.removeChild( container );\n\n\t\treturn shrinkWrapBlocksVal;\n\t};\n\n})();\nvar rmargin = (/^margin/);\n\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\n\n\nvar getStyles, curCSS,\n\trposition = /^(top|right|bottom|left)$/;\n\nif ( window.getComputedStyle ) {\n\tgetStyles = function( elem ) {\n\t\t// Support: IE<=11+, Firefox<=30+ (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tif ( elem.ownerDocument.defaultView.opener ) {\n\t\t\treturn elem.ownerDocument.defaultView.getComputedStyle( elem, null );\n\t\t}\n\n\t\treturn window.getComputedStyle( elem, null );\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar width, minWidth, maxWidth, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\n\t\t// getPropertyValue is only needed for .css('filter') in IE9, see #12537\n\t\tret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;\n\n\t\tif ( computed ) {\n\n\t\t\tif ( ret === \"\" && !jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\tret = jQuery.style( elem, name );\n\t\t\t}\n\n\t\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t\t// Chrome < 17 and Safari 5.0 uses \"computed value\" instead of \"used value\" for margin-right\n\t\t\t// Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels\n\t\t\t// this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values\n\t\t\tif ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {\n\n\t\t\t\t// Remember the original values\n\t\t\t\twidth = style.width;\n\t\t\t\tminWidth = style.minWidth;\n\t\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t\t// Put in the new values to get a computed value out\n\t\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\t\tret = computed.width;\n\n\t\t\t\t// Revert the changed values\n\t\t\t\tstyle.width = width;\n\t\t\t\tstyle.minWidth = minWidth;\n\t\t\t\tstyle.maxWidth = maxWidth;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\";\n\t};\n} else if ( document.documentElement.currentStyle ) {\n\tgetStyles = function( elem ) {\n\t\treturn elem.currentStyle;\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar left, rs, rsLeft, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\t\tret = computed ? computed[ name ] : undefined;\n\n\t\t// Avoid setting ret to empty string here\n\t\t// so we don't default to auto\n\t\tif ( ret == null && style && style[ name ] ) {\n\t\t\tret = style[ name ];\n\t\t}\n\n\t\t// From the awesome hack by Dean Edwards\n\t\t// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291\n\n\t\t// If we're not dealing with a regular pixel number\n\t\t// but a number that has a weird ending, we need to convert it to pixels\n\t\t// but not position css attributes, as those are proportional to the parent element instead\n\t\t// and we can't measure the parent instead because it might trigger a \"stacking dolls\" problem\n\t\tif ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\tleft = style.left;\n\t\t\trs = elem.runtimeStyle;\n\t\t\trsLeft = rs && rs.left;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = elem.currentStyle.left;\n\t\t\t}\n\t\t\tstyle.left = name === \"fontSize\" ? \"1em\" : ret;\n\t\t\tret = style.pixelLeft + \"px\";\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.left = left;\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = rsLeft;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\" || \"auto\";\n\t};\n}\n\n\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tvar condition = conditionFn();\n\n\t\t\tif ( condition == null ) {\n\t\t\t\t// The test was not ready at this point; screw the hook this time\n\t\t\t\t// but check again when needed next time.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( condition ) {\n\t\t\t\t// Hook not needed (or it's not possible to use it due to missing dependency),\n\t\t\t\t// remove it.\n\t\t\t\t// Since there are no other hooks for marginRight, remove the whole object.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\n\t\t\treturn (this.get = hookFn).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\n(function() {\n\t// Minified: var b,c,d,e,f,g, h,i\n\tvar div, style, a, pixelPositionVal, boxSizingReliableVal,\n\t\treliableHiddenOffsetsVal, reliableMarginRightVal;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName( \"a\" )[ 0 ];\n\tstyle = a && a.style;\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !style ) {\n\t\treturn;\n\t}\n\n\tstyle.cssText = \"float:left;opacity:.5\";\n\n\t// Support: IE<9\n\t// Make sure that element opacity exists (as opposed to filter)\n\tsupport.opacity = style.opacity === \"0.5\";\n\n\t// Verify style float existence\n\t// (IE uses styleFloat instead of cssFloat)\n\tsupport.cssFloat = !!style.cssFloat;\n\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\t// Support: Firefox<29, Android 2.3\n\t// Vendor-prefix box-sizing\n\tsupport.boxSizing = style.boxSizing === \"\" || style.MozBoxSizing === \"\" ||\n\t\tstyle.WebkitBoxSizing === \"\";\n\n\tjQuery.extend(support, {\n\t\treliableHiddenOffsets: function() {\n\t\t\tif ( reliableHiddenOffsetsVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableHiddenOffsetsVal;\n\t\t},\n\n\t\tboxSizingReliable: function() {\n\t\t\tif ( boxSizingReliableVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\n\t\tpixelPosition: function() {\n\t\t\tif ( pixelPositionVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn pixelPositionVal;\n\t\t},\n\n\t\t// Support: Android 2.3\n\t\treliableMarginRight: function() {\n\t\t\tif ( reliableMarginRightVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableMarginRightVal;\n\t\t}\n\t});\n\n\tfunction computeStyleTests() {\n\t\t// Minified: var b,c,d,j\n\t\tvar div, body, container, contents;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\tdiv.style.cssText =\n\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t// Vendor-prefix box-sizing\n\t\t\t\"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;\" +\n\t\t\t\"box-sizing:border-box;display:block;margin-top:1%;top:1%;\" +\n\t\t\t\"border:1px;padding:1px;width:4px;position:absolute\";\n\n\t\t// Support: IE<9\n\t\t// Assume reasonable values in the absence of getComputedStyle\n\t\tpixelPositionVal = boxSizingReliableVal = false;\n\t\treliableMarginRightVal = true;\n\n\t\t// Check for getComputedStyle so that this code is not run in IE<9.\n\t\tif ( window.getComputedStyle ) {\n\t\t\tpixelPositionVal = ( window.getComputedStyle( div, null ) || {} ).top !== \"1%\";\n\t\t\tboxSizingReliableVal =\n\t\t\t\t( window.getComputedStyle( div, null ) || { width: \"4px\" } ).width === \"4px\";\n\n\t\t\t// Support: Android 2.3\n\t\t\t// Div with explicit width and no margin-right incorrectly\n\t\t\t// gets computed margin-right based on width of container (#3333)\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\tcontents = div.appendChild( document.createElement( \"div\" ) );\n\n\t\t\t// Reset CSS: box-sizing; display; margin; border; padding\n\t\t\tcontents.style.cssText = div.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;padding:0\";\n\t\t\tcontents.style.marginRight = contents.style.width = \"0\";\n\t\t\tdiv.style.width = \"1px\";\n\n\t\t\treliableMarginRightVal =\n\t\t\t\t!parseFloat( ( window.getComputedStyle( contents, null ) || {} ).marginRight );\n\n\t\t\tdiv.removeChild( contents );\n\t\t}\n\n\t\t// Support: IE8\n\t\t// Check if table cells still have offsetWidth/Height when they are set\n\t\t// to display:none and there are still other visible table cells in a\n\t\t// table row; if so, offsetWidth/Height are not reliable for use when\n\t\t// determining if an element has been hidden directly using\n\t\t// display:none (it is still safe to use offsets if a parent element is\n\t\t// hidden; don safety goggles and see bug #4512 for more information).\n\t\tdiv.innerHTML = \"<table><tr><td></td><td>t</td></tr></table>\";\n\t\tcontents = div.getElementsByTagName( \"td\" );\n\t\tcontents[ 0 ].style.cssText = \"margin:0;border:0;padding:0;display:none\";\n\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\tif ( reliableHiddenOffsetsVal ) {\n\t\t\tcontents[ 0 ].style.display = \"\";\n\t\t\tcontents[ 1 ].style.display = \"none\";\n\t\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\t}\n\n\t\tbody.removeChild( container );\n\t}\n\n})();\n\n\n// A method for quickly swapping in/out CSS properties to get correct calculations.\njQuery.swap = function( elem, options, callback, args ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.apply( elem, args || [] );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar\n\t\tralpha = /alpha\\([^)]*\\)/i,\n\tropacity = /opacity\\s*=\\s*([^)]*)/,\n\n\t// swappable if display is none or starts with table except \"table\", \"table-cell\", or \"table-caption\"\n\t// see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trnumsplit = new RegExp( \"^(\" + pnum + \")(.*)$\", \"i\" ),\n\trrelNum = new RegExp( \"^([+-])=(\" + pnum + \")\", \"i\" ),\n\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t},\n\n\tcssPrefixes = [ \"Webkit\", \"O\", \"Moz\", \"ms\" ];\n\n\n// return a css property mapped to a potentially vendor prefixed property\nfunction vendorPropName( style, name ) {\n\n\t// shortcut for names that are not vendor prefixed\n\tif ( name in style ) {\n\t\treturn name;\n\t}\n\n\t// check for vendor prefixed names\n\tvar capName = name.charAt(0).toUpperCase() + name.slice(1),\n\t\torigName = name,\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in style ) {\n\t\t\treturn name;\n\t\t}\n\t}\n\n\treturn origName;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem, hidden,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\" );\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\t\t\t// Reset the inline display of this element to learn if it is\n\t\t\t// being hidden by cascaded rules or not\n\t\t\tif ( !values[ index ] && display === \"none\" ) {\n\t\t\t\telem.style.display = \"\";\n\t\t\t}\n\n\t\t\t// Set elements which have been overridden with display: none\n\t\t\t// in a stylesheet to whatever the default browser style is\n\t\t\t// for such an element\n\t\t\tif ( elem.style.display === \"\" && isHidden( elem ) ) {\n\t\t\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\", defaultDisplay(elem.nodeName) );\n\t\t\t}\n\t\t} else {\n\t\t\thidden = isHidden( elem );\n\n\t\t\tif ( display && display !== \"none\" || !hidden ) {\n\t\t\t\tjQuery._data( elem, \"olddisplay\", hidden ? display : jQuery.css( elem, \"display\" ) );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of most of the elements in a second loop\n\t// to avoid the constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( !show || elem.style.display === \"none\" || elem.style.display === \"\" ) {\n\t\t\telem.style.display = show ? values[ index ] || \"\" : \"none\";\n\t\t}\n\t}\n\n\treturn elements;\n}\n\nfunction setPositiveNumber( elem, value, subtract ) {\n\tvar matches = rnumsplit.exec( value );\n\treturn matches ?\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {\n\tvar i = extra === ( isBorderBox ? \"border\" : \"content\" ) ?\n\t\t// If we already have the right measurement, avoid augmentation\n\t\t4 :\n\t\t// Otherwise initialize for horizontal or vertical properties\n\t\tname === \"width\" ? 1 : 0,\n\n\t\tval = 0;\n\n\tfor ( ; i < 4; i += 2 ) {\n\t\t// both box models exclude margin, so add it if we want it\n\t\tif ( extra === \"margin\" ) {\n\t\t\tval += jQuery.css( elem, extra + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\tif ( isBorderBox ) {\n\t\t\t// border-box includes padding, so remove it if we want content\n\t\t\tif ( extra === \"content\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// at this point, extra isn't border nor margin, so remove border\n\t\t\tif ( extra !== \"margin\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t} else {\n\t\t\t// at this point, extra isn't content, so add padding\n\t\t\tval += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// at this point, extra isn't content nor padding, so add border\n\t\t\tif ( extra !== \"padding\" ) {\n\t\t\t\tval += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn val;\n}\n\nfunction getWidthOrHeight( elem, name, extra ) {\n\n\t// Start with offset property, which is equivalent to the border-box value\n\tvar valueIsBorderBox = true,\n\t\tval = name === \"width\" ? elem.offsetWidth : elem.offsetHeight,\n\t\tstyles = getStyles( elem ),\n\t\tisBorderBox = support.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t// some non-html elements return undefined for offsetWidth, so check for null/undefined\n\t// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285\n\t// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668\n\tif ( val <= 0 || val == null ) {\n\t\t// Fall back to computed then uncomputed css if necessary\n\t\tval = curCSS( elem, name, styles );\n\t\tif ( val < 0 || val == null ) {\n\t\t\tval = elem.style[ name ];\n\t\t}\n\n\t\t// Computed unit is not pixels. Stop here and return.\n\t\tif ( rnumnonpx.test(val) ) {\n\t\t\treturn val;\n\t\t}\n\n\t\t// we need the check for style in case a browser which returns unreliable values\n\t\t// for getComputedStyle silently falls back to the reliable elem.style\n\t\tvalueIsBorderBox = isBorderBox && ( support.boxSizingReliable() || val === elem.style[ name ] );\n\n\t\t// Normalize \"\", auto, and prepare for extra\n\t\tval = parseFloat( val ) || 0;\n\t}\n\n\t// use the active box-sizing model to add/subtract irrelevant styles\n\treturn ( val +\n\t\taugmentWidthOrHeight(\n\t\t\telem,\n\t\t\tname,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend({\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {\n\t\t// normalize float css property\n\t\t\"float\": support.cssFloat ? \"cssFloat\" : \"styleFloat\"\n\t},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = jQuery.camelCase( name ),\n\t\t\tstyle = elem.style;\n\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// convert relative number strings (+= or -=) to relative numbers. #7345\n\t\t\tif ( type === \"string\" && (ret = rrelNum.exec( value )) ) {\n\t\t\t\tvalue = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set. See: #7116\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add 'px' to the (except for certain CSS properties)\n\t\t\tif ( type === \"number\" && !jQuery.cssNumber[ origName ] ) {\n\t\t\t\tvalue += \"px\";\n\t\t\t}\n\n\t\t\t// Fixes #8908, it can be done more correctly by specifing setters in cssHooks,\n\t\t\t// but it would mean to define eight (for every problematic property) identical functions\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf(\"background\") === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !(\"set\" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {\n\n\t\t\t\t// Support: IE\n\t\t\t\t// Swallow errors from 'invalid' CSS values (#5509)\n\t\t\t\ttry {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t} else {\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar num, val, hooks,\n\t\t\torigName = jQuery.camelCase( name );\n\n\t\t// Make sure that we're working with the right name\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t//convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Return, converting to number if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || jQuery.isNumeric( num ) ? num || 0 : val;\n\t\t}\n\t\treturn val;\n\t}\n});\n\njQuery.each([ \"height\", \"width\" ], function( i, name ) {\n\tjQuery.cssHooks[ name ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\t\t\t\t// certain elements can have dimension info if we invisibly show them\n\t\t\t\t// however, it must have a current display style that would benefit from this\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) && elem.offsetWidth === 0 ?\n\t\t\t\t\tjQuery.swap( elem, cssShow, function() {\n\t\t\t\t\t\treturn getWidthOrHeight( elem, name, extra );\n\t\t\t\t\t}) :\n\t\t\t\t\tgetWidthOrHeight( elem, name, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar styles = extra && getStyles( elem );\n\t\t\treturn setPositiveNumber( elem, value, extra ?\n\t\t\t\taugmentWidthOrHeight(\n\t\t\t\t\telem,\n\t\t\t\t\tname,\n\t\t\t\t\textra,\n\t\t\t\t\tsupport.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\t\tstyles\n\t\t\t\t) : 0\n\t\t\t);\n\t\t}\n\t};\n});\n\nif ( !support.opacity ) {\n\tjQuery.cssHooks.opacity = {\n\t\tget: function( elem, computed ) {\n\t\t\t// IE uses filters for opacity\n\t\t\treturn ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || \"\" ) ?\n\t\t\t\t( 0.01 * parseFloat( RegExp.$1 ) ) + \"\" :\n\t\t\t\tcomputed ? \"1\" : \"\";\n\t\t},\n\n\t\tset: function( elem, value ) {\n\t\t\tvar style = elem.style,\n\t\t\t\tcurrentStyle = elem.currentStyle,\n\t\t\t\topacity = jQuery.isNumeric( value ) ? \"alpha(opacity=\" + value * 100 + \")\" : \"\",\n\t\t\t\tfilter = currentStyle && currentStyle.filter || style.filter || \"\";\n\n\t\t\t// IE has trouble with opacity if it does not have layout\n\t\t\t// Force it by setting the zoom level\n\t\t\tstyle.zoom = 1;\n\n\t\t\t// if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652\n\t\t\t// if value === \"\", then remove inline opacity #12685\n\t\t\tif ( ( value >= 1 || value === \"\" ) &&\n\t\t\t\t\tjQuery.trim( filter.replace( ralpha, \"\" ) ) === \"\" &&\n\t\t\t\t\tstyle.removeAttribute ) {\n\n\t\t\t\t// Setting style.filter to null, \"\" & \" \" still leave \"filter:\" in the cssText\n\t\t\t\t// if \"filter:\" is present at all, clearType is disabled, we want to avoid this\n\t\t\t\t// style.removeAttribute is IE Only, but so apparently is this code path...\n\t\t\t\tstyle.removeAttribute( \"filter\" );\n\n\t\t\t\t// if there is no filter style applied in a css rule or unset inline opacity, we are done\n\t\t\t\tif ( value === \"\" || currentStyle && !currentStyle.filter ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// otherwise, set new filter values\n\t\t\tstyle.filter = ralpha.test( filter ) ?\n\t\t\t\tfilter.replace( ralpha, opacity ) :\n\t\t\t\tfilter + \" \" + opacity;\n\t\t}\n\t};\n}\n\njQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\t// Work around by temporarily setting element display to inline-block\n\t\t\treturn jQuery.swap( elem, { \"display\": \"inline-block\" },\n\t\t\t\tcurCSS, [ elem, \"marginRight\" ] );\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each({\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split(\" \") : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( !rmargin.test( prefix ) ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n});\n\njQuery.fn.extend({\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( jQuery.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t},\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( isHidden( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t});\n\t}\n});\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || \"swing\";\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\tif ( tween.elem[ tween.prop ] != null &&\n\t\t\t\t(!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails\n\t\t\t// so, simple values such as \"10px\" are parsed to Float.\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\t\t\t// use step hook for back compat - use cssHook if its there - use .style if its\n\t\t\t// available and use plain properties where available\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9\n// Panic based approach to setting things on disconnected nodes\n\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t}\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back Compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, timerId,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trfxnum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" ),\n\trrun = /queueHooks$/,\n\tanimationPrefilters = [ defaultPrefilter ],\n\ttweeners = {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value ),\n\t\t\t\ttarget = tween.cur(),\n\t\t\t\tparts = rfxnum.exec( value ),\n\t\t\t\tunit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t\t\t// Starting value computation is required for potential unit mismatches\n\t\t\t\tstart = ( jQuery.cssNumber[ prop ] || unit !== \"px\" && +target ) &&\n\t\t\t\t\trfxnum.exec( jQuery.css( tween.elem, prop ) ),\n\t\t\t\tscale = 1,\n\t\t\t\tmaxIterations = 20;\n\n\t\t\tif ( start && start[ 3 ] !== unit ) {\n\t\t\t\t// Trust units reported by jQuery.css\n\t\t\t\tunit = unit || start[ 3 ];\n\n\t\t\t\t// Make sure we update the tween properties later on\n\t\t\t\tparts = parts || [];\n\n\t\t\t\t// Iteratively approximate from a nonzero starting point\n\t\t\t\tstart = +target || 1;\n\n\t\t\t\tdo {\n\t\t\t\t\t// If previous iteration zeroed out, double until we get *something*\n\t\t\t\t\t// Use a string for doubling factor so we don't accidentally see scale as unchanged below\n\t\t\t\t\tscale = scale || \".5\";\n\n\t\t\t\t\t// Adjust and apply\n\t\t\t\t\tstart = start / scale;\n\t\t\t\t\tjQuery.style( tween.elem, prop, start + unit );\n\n\t\t\t\t// Update scale, tolerating zero or NaN from tween.cur()\n\t\t\t\t// And breaking the loop if scale is unchanged or perfect, or if we've just had enough\n\t\t\t\t} while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );\n\t\t\t}\n\n\t\t\t// Update tween properties\n\t\t\tif ( parts ) {\n\t\t\t\tstart = tween.start = +start || +target || 0;\n\t\t\t\ttween.unit = unit;\n\t\t\t\t// If a +=/-= token was provided, we're doing a relative animation\n\t\t\t\ttween.end = parts[ 1 ] ?\n\t\t\t\t\tstart + ( parts[ 1 ] + 1 ) * parts[ 2 ] :\n\t\t\t\t\t+parts[ 2 ];\n\t\t\t}\n\n\t\t\treturn tween;\n\t\t} ]\n\t};\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\tsetTimeout(function() {\n\t\tfxNow = undefined;\n\t});\n\treturn ( fxNow = jQuery.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\tattrs = { height: type },\n\t\ti = 0;\n\n\t// if we include width, step value is 1 to do all cssExpand values,\n\t// if we don't include width, step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4 ; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( tweeners[ prop ] || [] ).concat( tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( (tween = collection[ index ].call( animation, prop, value )) ) {\n\n\t\t\t// we're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\t/* jshint validthis: true */\n\tvar prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHidden( elem ),\n\t\tdataShow = jQuery._data( elem, \"fxshow\" );\n\n\t// handle queue: false promises\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always(function() {\n\t\t\t// doing this makes sure that the complete handler will be called\n\t\t\t// before this completes\n\t\t\tanim.always(function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t}\n\n\t// height/width overflow pass\n\tif ( elem.nodeType === 1 && ( \"height\" in props || \"width\" in props ) ) {\n\t\t// Make sure that nothing sneaks out\n\t\t// Record all 3 overflow attributes because IE does not\n\t\t// change the overflow attribute when overflowX and\n\t\t// overflowY are set to the same value\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Set display property to inline-block for height/width\n\t\t// animations on inline elements that are having width/height animated\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\n\t\t// Test default display if display is currently \"none\"\n\t\tcheckDisplay = display === \"none\" ?\n\t\t\tjQuery._data( elem, \"olddisplay\" ) || defaultDisplay( elem.nodeName ) : display;\n\n\t\tif ( checkDisplay === \"inline\" && jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t// inline-level elements accept inline-block;\n\t\t\t// block-level elements need to be inline with layout\n\t\t\tif ( !support.inlineBlockNeedsLayout || defaultDisplay( elem.nodeName ) === \"inline\" ) {\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t} else {\n\t\t\t\tstyle.zoom = 1;\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tif ( !support.shrinkWrapBlocks() ) {\n\t\t\tanim.always(function() {\n\t\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t\t});\n\t\t}\n\t}\n\n\t// show/hide pass\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.exec( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\n\t\t// Any non-fx value stops us from restoring the original display value\n\t\t} else {\n\t\t\tdisplay = undefined;\n\t\t}\n\t}\n\n\tif ( !jQuery.isEmptyObject( orig ) ) {\n\t\tif ( dataShow ) {\n\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\thidden = dataShow.hidden;\n\t\t\t}\n\t\t} else {\n\t\t\tdataShow = jQuery._data( elem, \"fxshow\", {} );\n\t\t}\n\n\t\t// store state if its toggle - enables .stop().toggle() to \"reverse\"\n\t\tif ( toggle ) {\n\t\t\tdataShow.hidden = !hidden;\n\t\t}\n\t\tif ( hidden ) {\n\t\t\tjQuery( elem ).show();\n\t\t} else {\n\t\t\tanim.done(function() {\n\t\t\t\tjQuery( elem ).hide();\n\t\t\t});\n\t\t}\n\t\tanim.done(function() {\n\t\t\tvar prop;\n\t\t\tjQuery._removeData( elem, \"fxshow\" );\n\t\t\tfor ( prop in orig ) {\n\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t}\n\t\t});\n\t\tfor ( prop in orig ) {\n\t\t\ttween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\n\t\t\tif ( !( prop in dataShow ) ) {\n\t\t\t\tdataShow[ prop ] = tween.start;\n\t\t\t\tif ( hidden ) {\n\t\t\t\t\ttween.end = tween.start;\n\t\t\t\t\ttween.start = prop === \"width\" || prop === \"height\" ? 1 : 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t// If this is a noop like .hide().hide(), restore an overwritten display value\n\t} else if ( (display === \"none\" ? defaultDisplay( elem.nodeName ) : display) === \"inline\" ) {\n\t\tstyle.display = display;\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = jQuery.camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( jQuery.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// not quite $.extend, this wont overwrite keys already present.\n\t\t\t// also - reusing 'index' from above because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = animationPrefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\t\t\t// don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t}),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\t\t\t\t// archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ]);\n\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t} else {\n\t\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\t\tanimation = deferred.promise({\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, { specialEasing: {} }, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\t\t\t\t\t// if we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// resolve when we played the last frame\n\t\t\t\t// otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t}),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length ; index++ ) {\n\t\tresult = animationPrefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( jQuery.isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t})\n\t);\n\n\t// attach callbacks from options\n\treturn animation.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\ttweener: function( props, callback ) {\n\t\tif ( jQuery.isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.split(\" \");\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length ; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\ttweeners[ prop ] = tweeners[ prop ] || [];\n\t\t\ttweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tanimationPrefilters.unshift( callback );\n\t\t} else {\n\t\t\tanimationPrefilters.push( callback );\n\t\t}\n\t}\n});\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tjQuery.isFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !jQuery.isFunction( easing ) && easing\n\t};\n\n\topt.duration = jQuery.fx.off ? 0 : typeof opt.duration === \"number\" ? opt.duration :\n\t\topt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;\n\n\t// normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( jQuery.isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend({\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHidden ).css( \"opacity\", 0 ).show()\n\n\t\t\t// animate to the value specified\n\t\t\t.end().animate({ opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || jQuery._data( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue && type !== false ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = jQuery._data( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// start the next in the queue if the last step wasn't forced\n\t\t\t// timers currently will call their complete callbacks, which will dequeue\n\t\t\t// but only if they were gotoEnd\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t});\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tvar index,\n\t\t\t\tdata = jQuery._data( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t});\n\t}\n});\n\njQuery.each([ \"toggle\", \"show\", \"hide\" ], function( i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n});\n\n// Generate shortcuts for custom animations\njQuery.each({\n\tslideDown: genFx(\"show\"),\n\tslideUp: genFx(\"hide\"),\n\tslideToggle: genFx(\"toggle\"),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n});\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ttimers = jQuery.timers,\n\t\ti = 0;\n\n\tfxNow = jQuery.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\t\t// Checks the timer has not already been removed\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tif ( timer() ) {\n\t\tjQuery.fx.start();\n\t} else {\n\t\tjQuery.timers.pop();\n\t}\n};\n\njQuery.fx.interval = 13;\n\njQuery.fx.start = function() {\n\tif ( !timerId ) {\n\t\ttimerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );\n\t}\n};\n\njQuery.fx.stop = function() {\n\tclearInterval( timerId );\n\ttimerId = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\tclearTimeout( timeout );\n\t\t};\n\t});\n};\n\n\n(function() {\n\t// Minified: var a,b,c,d,e\n\tvar input, div, select, a, opt;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.setAttribute( \"className\", \"t\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName(\"a\")[ 0 ];\n\n\t// First batch of tests.\n\tselect = document.createElement(\"select\");\n\topt = select.appendChild( document.createElement(\"option\") );\n\tinput = div.getElementsByTagName(\"input\")[ 0 ];\n\n\ta.style.cssText = \"top:1px\";\n\n\t// Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)\n\tsupport.getSetAttribute = div.className !== \"t\";\n\n\t// Get the style information from getAttribute\n\t// (IE uses .cssText instead)\n\tsupport.style = /top/.test( a.getAttribute(\"style\") );\n\n\t// Make sure that URLs aren't manipulated\n\t// (IE normalizes it by default)\n\tsupport.hrefNormalized = a.getAttribute(\"href\") === \"/a\";\n\n\t// Check the default checkbox/radio value (\"\" on WebKit; \"on\" elsewhere)\n\tsupport.checkOn = !!input.value;\n\n\t// Make sure that a selected-by-default option has a working selected property.\n\t// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)\n\tsupport.optSelected = opt.selected;\n\n\t// Tests for enctype support on a form (#6743)\n\tsupport.enctype = !!document.createElement(\"form\").enctype;\n\n\t// Make sure that the options inside disabled selects aren't marked as disabled\n\t// (WebKit marks them as disabled)\n\tselect.disabled = true;\n\tsupport.optDisabled = !opt.disabled;\n\n\t// Support: IE8 only\n\t// Check if we can trust getAttribute(\"value\")\n\tinput = document.createElement( \"input\" );\n\tinput.setAttribute( \"value\", \"\" );\n\tsupport.input = input.getAttribute( \"value\" ) === \"\";\n\n\t// Check if an input maintains its value after becoming a radio\n\tinput.value = \"t\";\n\tinput.setAttribute( \"type\", \"radio\" );\n\tsupport.radioValue = input.value === \"t\";\n})();\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend({\n\tval: function( value ) {\n\t\tvar hooks, ret, isFunction,\n\t\t\telem = this[0];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, \"value\" )) !== undefined ) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\treturn typeof ret === \"string\" ?\n\t\t\t\t\t// handle most common string cases\n\t\t\t\t\tret.replace(rreturn, \"\") :\n\t\t\t\t\t// handle cases where value is null/undef or number\n\t\t\t\t\tret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tisFunction = jQuery.isFunction( value );\n\n\t\treturn this.each(function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( isFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\t\t\t} else if ( jQuery.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t});\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !(\"set\" in hooks) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\t\t\t\t\t// Support: IE10-11+\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\tjQuery.trim( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\" || index < 0,\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length,\n\t\t\t\t\ti = index < 0 ?\n\t\t\t\t\t\tmax :\n\t\t\t\t\t\tone ? index : 0;\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// oldIE doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t( support.optDisabled ? !option.disabled : option.getAttribute(\"disabled\") === null ) &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\tif ( jQuery.inArray( jQuery.valHooks.option.get( option ), values ) >= 0 ) {\n\n\t\t\t\t\t\t// Support: IE6\n\t\t\t\t\t\t// When new option element is added to select box we need to\n\t\t\t\t\t\t// force reflow of newly added node in order to workaround delay\n\t\t\t\t\t\t// of initialization properties\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\toption.selected = optionSet = true;\n\n\t\t\t\t\t\t} catch ( _ ) {\n\n\t\t\t\t\t\t\t// Will be executed only in IE6\n\t\t\t\t\t\t\toption.scrollHeight;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\toption.selected = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\n\t\t\t\treturn options;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Radios and checkboxes getter/setter\njQuery.each([ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( jQuery.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\t// Support: Webkit\n\t\t\t// \"\" is returned instead of \"on\" if a value isn't specified\n\t\t\treturn elem.getAttribute(\"value\") === null ? \"on\" : elem.value;\n\t\t};\n\t}\n});\n\n\n\n\nvar nodeHook, boolHook,\n\tattrHandle = jQuery.expr.attrHandle,\n\truseDefault = /^(?:checked|selected)$/i,\n\tgetSetAttribute = support.getSetAttribute,\n\tgetSetInput = support.input;\n\njQuery.fn.extend({\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tattr: function( elem, name, value ) {\n\t\tvar hooks, ret,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set attributes on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === strundefined ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// All attributes are lowercase\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\tname = name.toLowerCase();\n\t\t\thooks = jQuery.attrHooks[ name ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\n\t\t\t} else if ( hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {\n\t\t\t\treturn ret;\n\n\t\t\t} else {\n\t\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\t\treturn value;\n\t\t\t}\n\n\t\t} else if ( hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ) {\n\t\t\treturn ret;\n\n\t\t} else {\n\t\t\tret = jQuery.find.attr( elem, name );\n\n\t\t\t// Non-existent attributes return null, we normalize to undefined\n\t\t\treturn ret == null ?\n\t\t\t\tundefined :\n\t\t\t\tret;\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name, propName,\n\t\t\ti = 0,\n\t\t\tattrNames = value && value.match( rnotwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( (name = attrNames[i++]) ) {\n\t\t\t\tpropName = jQuery.propFix[ name ] || name;\n\n\t\t\t\t// Boolean attributes get special treatment (#10870)\n\t\t\t\tif ( jQuery.expr.match.bool.test( name ) ) {\n\t\t\t\t\t// Set corresponding property to false\n\t\t\t\t\tif ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t// Also clear defaultChecked/defaultSelected (if appropriate)\n\t\t\t\t\t} else {\n\t\t\t\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] =\n\t\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t}\n\n\t\t\t\t// See #9699 for explanation of this approach (setting first, then removal)\n\t\t\t\t} else {\n\t\t\t\t\tjQuery.attr( elem, name, \"\" );\n\t\t\t\t}\n\n\t\t\t\telem.removeAttribute( getSetAttribute ? name : propName );\n\t\t\t}\n\t\t}\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" && jQuery.nodeName(elem, \"input\") ) {\n\t\t\t\t\t// Setting the type on a radio button after the value resets the value in IE6-9\n\t\t\t\t\t// Reset value to default in case type is set after value during creation\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Hook for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t// IE<8 needs the *property* name\n\t\t\telem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name );\n\n\t\t// Use defaultChecked and defaultSelected for oldIE\n\t\t} else {\n\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] = elem[ name ] = true;\n\t\t}\n\n\t\treturn name;\n\t}\n};\n\n// Retrieve booleans specially\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( i, name ) {\n\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ?\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret, handle;\n\t\t\tif ( !isXML ) {\n\t\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\t\thandle = attrHandle[ name ];\n\t\t\t\tattrHandle[ name ] = ret;\n\t\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t\tattrHandle[ name ] = handle;\n\t\t\t}\n\t\t\treturn ret;\n\t\t} :\n\t\tfunction( elem, name, isXML ) {\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn elem[ jQuery.camelCase( \"default-\" + name ) ] ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n});\n\n// fix oldIE attroperties\nif ( !getSetInput || !getSetAttribute ) {\n\tjQuery.attrHooks.value = {\n\t\tset: function( elem, value, name ) {\n\t\t\tif ( jQuery.nodeName( elem, \"input\" ) ) {\n\t\t\t\t// Does not return so that setAttribute is also used\n\t\t\t\telem.defaultValue = value;\n\t\t\t} else {\n\t\t\t\t// Use nodeHook if defined (#1954); otherwise setAttribute is fine\n\t\t\t\treturn nodeHook && nodeHook.set( elem, value, name );\n\t\t\t}\n\t\t}\n\t};\n}\n\n// IE6/7 do not support getting/setting some attributes with get/setAttribute\nif ( !getSetAttribute ) {\n\n\t// Use this for any attribute in IE6/7\n\t// This fixes almost every IE6/7 issue\n\tnodeHook = {\n\t\tset: function( elem, value, name ) {\n\t\t\t// Set the existing or create a new attribute node\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( !ret ) {\n\t\t\t\telem.setAttributeNode(\n\t\t\t\t\t(ret = elem.ownerDocument.createAttribute( name ))\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tret.value = value += \"\";\n\n\t\t\t// Break association with cloned elements by also using setAttribute (#9646)\n\t\t\tif ( name === \"value\" || value === elem.getAttribute( name ) ) {\n\t\t\t\treturn value;\n\t\t\t}\n\t\t}\n\t};\n\n\t// Some attributes are constructed with empty-string values when not defined\n\tattrHandle.id = attrHandle.name = attrHandle.coords =\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret;\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn (ret = elem.getAttributeNode( name )) && ret.value !== \"\" ?\n\t\t\t\t\tret.value :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n\n\t// Fixing value retrieval on a button requires this module\n\tjQuery.valHooks.button = {\n\t\tget: function( elem, name ) {\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( ret && ret.specified ) {\n\t\t\t\treturn ret.value;\n\t\t\t}\n\t\t},\n\t\tset: nodeHook.set\n\t};\n\n\t// Set contenteditable to false on removals(#10429)\n\t// Setting to empty string throws an error as an invalid value\n\tjQuery.attrHooks.contenteditable = {\n\t\tset: function( elem, value, name ) {\n\t\t\tnodeHook.set( elem, value === \"\" ? false : value, name );\n\t\t}\n\t};\n\n\t// Set width and height to auto instead of 0 on empty string( Bug #8150 )\n\t// This is for removals\n\tjQuery.each([ \"width\", \"height\" ], function( i, name ) {\n\t\tjQuery.attrHooks[ name ] = {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( value === \"\" ) {\n\t\t\t\t\telem.setAttribute( name, \"auto\" );\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\nif ( !support.style ) {\n\tjQuery.attrHooks.style = {\n\t\tget: function( elem ) {\n\t\t\t// Return undefined in the case of empty string\n\t\t\t// Note: IE uppercases css property names, but if we were to .toLowerCase()\n\t\t\t// .cssText, that would destroy case senstitivity in URL's, like in \"background\"\n\t\t\treturn elem.style.cssText || undefined;\n\t\t},\n\t\tset: function( elem, value ) {\n\t\t\treturn ( elem.style.cssText = value + \"\" );\n\t\t}\n\t};\n}\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button|object)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend({\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\tname = jQuery.propFix[ name ] || name;\n\t\treturn this.each(function() {\n\t\t\t// try/catch handles cases where IE balks (such as removing a property on window)\n\t\t\ttry {\n\t\t\t\tthis[ name ] = undefined;\n\t\t\t\tdelete this[ name ];\n\t\t\t} catch( e ) {}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t},\n\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks, notxml,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set properties on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tnotxml = nType !== 1 || !jQuery.isXMLDoc( elem );\n\n\t\tif ( notxml ) {\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\treturn hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?\n\t\t\t\tret :\n\t\t\t\t( elem[ name ] = value );\n\n\t\t} else {\n\t\t\treturn hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ?\n\t\t\t\tret :\n\t\t\t\telem[ name ];\n\t\t}\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\t\t\t\t// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set\n\t\t\t\t// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\treturn tabindex ?\n\t\t\t\t\tparseInt( tabindex, 10 ) :\n\t\t\t\t\trfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?\n\t\t\t\t\t\t0 :\n\t\t\t\t\t\t-1;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Some attributes require a special call on IE\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !support.hrefNormalized ) {\n\t// href/src property should get the full normalized URL (#10299/#12915)\n\tjQuery.each([ \"href\", \"src\" ], function( i, name ) {\n\t\tjQuery.propHooks[ name ] = {\n\t\t\tget: function( elem ) {\n\t\t\t\treturn elem.getAttribute( name, 4 );\n\t\t\t}\n\t\t};\n\t});\n}\n\n// Support: Safari, IE9+\n// mis-reports the default selected property of an option\n// Accessing the parent's selectedIndex property fixes it\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\t// Make sure that it also works with optgroups, see #5701\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\t};\n}\n\njQuery.each([\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n});\n\n// IE6/7 call enctype encoding\nif ( !support.enctype ) {\n\tjQuery.propFix.enctype = \"encoding\";\n}\n\n\n\n\nvar rclass = /[\\t\\r\\n\\f]/g;\n\njQuery.fn.extend({\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\n\t\tif ( proceed ) {\n\t\t\t// The disjunction here is for better compressibility (see removeClass)\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\" \"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = jQuery.trim( cur );\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = arguments.length === 0 || typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\t\tif ( proceed ) {\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\"\"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) >= 0 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = value ? jQuery.trim( cur ) : \"\";\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value;\n\n\t\tif ( typeof stateVal === \"boolean\" && type === \"string\" ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tjQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( type === \"string\" ) {\n\t\t\t\t// toggle individual class names\n\t\t\t\tvar className,\n\t\t\t\t\ti = 0,\n\t\t\t\t\tself = jQuery( this ),\n\t\t\t\t\tclassNames = value.match( rnotwhite ) || [];\n\n\t\t\t\twhile ( (className = classNames[ i++ ]) ) {\n\t\t\t\t\t// check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( type === strundefined || type === \"boolean\" ) {\n\t\t\t\tif ( this.className ) {\n\t\t\t\t\t// store className if set\n\t\t\t\t\tjQuery._data( this, \"__className__\", this.className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed \"false\",\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tthis.className = this.className || value === false ? \"\" : jQuery._data( this, \"__className__\" ) || \"\";\n\t\t\t}\n\t\t});\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className = \" \" + selector + \" \",\n\t\t\ti = 0,\n\t\t\tl = this.length;\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tif ( this[i].nodeType === 1 && (\" \" + this[i].className + \" \").replace(rclass, \" \").indexOf( className ) >= 0 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n});\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\njQuery.each( (\"blur focus focusin focusout load resize scroll unload click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup error contextmenu\").split(\" \"), function( i, name ) {\n\n\t// Handle event binding\n\tjQuery.fn[ name ] = function( data, fn ) {\n\t\treturn arguments.length > 0 ?\n\t\t\tthis.on( name, null, data, fn ) :\n\t\t\tthis.trigger( name );\n\t};\n});\n\njQuery.fn.extend({\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t},\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ? this.off( selector, \"**\" ) : this.off( types, selector || \"**\", fn );\n\t}\n});\n\n\nvar nonce = jQuery.now();\n\nvar rquery = (/\\?/);\n\n\n\nvar rvalidtokens = /(,)|(\\[|{)|(}|])|\"(?:[^\"\\\\\\r\\n]|\\\\[\"\\\\\\/bfnrt]|\\\\u[\\da-fA-F]{4})*\"\\s*:?|true|false|null|-?(?!0\\d)\\d+(?:\\.\\d+|)(?:[eE][+-]?\\d+|)/g;\n\njQuery.parseJSON = function( data ) {\n\t// Attempt to parse using the native JSON parser first\n\tif ( window.JSON && window.JSON.parse ) {\n\t\t// Support: Android 2.3\n\t\t// Workaround failure to string-cast null input\n\t\treturn window.JSON.parse( data + \"\" );\n\t}\n\n\tvar requireNonComma,\n\t\tdepth = null,\n\t\tstr = jQuery.trim( data + \"\" );\n\n\t// Guard against invalid (and possibly dangerous) input by ensuring that nothing remains\n\t// after removing valid tokens\n\treturn str && !jQuery.trim( str.replace( rvalidtokens, function( token, comma, open, close ) {\n\n\t\t// Force termination if we see a misplaced comma\n\t\tif ( requireNonComma && comma ) {\n\t\t\tdepth = 0;\n\t\t}\n\n\t\t// Perform no more replacements after returning to outermost depth\n\t\tif ( depth === 0 ) {\n\t\t\treturn token;\n\t\t}\n\n\t\t// Commas must not follow \"[\", \"{\", or \",\"\n\t\trequireNonComma = open || comma;\n\n\t\t// Determine new depth\n\t\t// array/object open (\"[\" or \"{\"): depth += true - false (increment)\n\t\t// array/object close (\"]\" or \"}\"): depth += false - true (decrement)\n\t\t// other cases (\",\" or primitive): depth += true - true (numeric cast)\n\t\tdepth += !close - !open;\n\n\t\t// Remove this token\n\t\treturn \"\";\n\t}) ) ?\n\t\t( Function( \"return \" + str ) )() :\n\t\tjQuery.error( \"Invalid JSON: \" + data );\n};\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml, tmp;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\ttry {\n\t\tif ( window.DOMParser ) { // Standard\n\t\t\ttmp = new DOMParser();\n\t\t\txml = tmp.parseFromString( data, \"text/xml\" );\n\t\t} else { // IE\n\t\t\txml = new ActiveXObject( \"Microsoft.XMLDOM\" );\n\t\t\txml.async = \"false\";\n\t\t\txml.loadXML( data );\n\t\t}\n\t} catch( e ) {\n\t\txml = undefined;\n\t}\n\tif ( !xml || !xml.documentElement || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\t// Document location\n\tajaxLocParts,\n\tajaxLocation,\n\n\trhash = /#.*$/,\n\trts = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)\\r?$/mg, // IE leaves an \\r character at EOL\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\trurl = /^([\\w.+-]+:)(?:\\/\\/(?:[^\\/?#]*@|)([^\\/?#:]*)(?::(\\d+)|)|)/,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat(\"*\");\n\n// #8138, IE may throw an exception when accessing\n// a field from window.location if document.domain has been set\ntry {\n\tajaxLocation = location.href;\n} catch( e ) {\n\t// Use the href attribute of an A element\n\t// since IE will modify it given document.location\n\tajaxLocation = document.createElement( \"a\" );\n\tajaxLocation.href = \"\";\n\tajaxLocation = ajaxLocation.href;\n}\n\n// Segment location into parts\najaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];\n\n\t\tif ( jQuery.isFunction( func ) ) {\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( (dataType = dataTypes[i++]) ) {\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType.charAt( 0 ) === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t});\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar deep, key,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\tvar firstDataType, ct, finalDataType, type,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader(\"Content-Type\");\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[0] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s[ \"throws\" ] ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn { state: \"parsererror\", error: conv ? e : \"No conversion from \" + prev + \" to \" + current };\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend({\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: ajaxLocation,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /xml/,\n\t\t\thtml: /html/,\n\t\t\tjson: /json/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": jQuery.parseJSON,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar // Cross-domain detection vars\n\t\t\tparts,\n\t\t\t// Loop variable\n\t\t\ti,\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\t\t\t// Response headers as string\n\t\t\tresponseHeadersString,\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\ttransport,\n\t\t\t// Response headers\n\t\t\tresponseHeaders,\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\tjQuery.event,\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks(\"once memory\"),\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\t\t\t// The jqXHR state\n\t\t\tstate = 0,\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( state === 2 ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( (match = rheaders.exec( responseHeadersString )) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[1].toLowerCase() ] = match[ 2 ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match;\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn state === 2 ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tvar lname = name.toLowerCase();\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\tname = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\t// Lazy-add the new callback in a way that preserves old ones\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR ).complete = completeDeferred.add;\n\t\tjqXHR.success = jqXHR.done;\n\t\tjqXHR.error = jqXHR.fail;\n\n\t\t// Remove hash character (#7531: and string promotion)\n\t\t// Add protocol if not provided (#5866: IE7 issue with protocol-less urls)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || ajaxLocation ) + \"\" ).replace( rhash, \"\" ).replace( rprotocol, ajaxLocParts[ 1 ] + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = jQuery.trim( s.dataType || \"*\" ).toLowerCase().match( rnotwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when we have a protocol:host:port mismatch\n\t\tif ( s.crossDomain == null ) {\n\t\t\tparts = rurl.exec( s.url.toLowerCase() );\n\t\t\ts.crossDomain = !!( parts &&\n\t\t\t\t( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||\n\t\t\t\t\t( parts[ 3 ] || ( parts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) !==\n\t\t\t\t\t\t( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) )\n\t\t\t);\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( state === 2 ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger(\"ajaxStart\");\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\tcacheURL = s.url;\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// If data is available, append data to url\n\t\t\tif ( s.data ) {\n\t\t\t\tcacheURL = ( s.url += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data );\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add anti-cache in url if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\ts.url = rts.test( cacheURL ) ?\n\n\t\t\t\t\t// If there is already a '_' parameter, set its value\n\t\t\t\t\tcacheURL.replace( rts, \"$1_=\" + nonce++ ) :\n\n\t\t\t\t\t// Otherwise add one to the end\n\t\t\t\t\tcacheURL + ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + nonce++;\n\t\t\t}\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tfor ( i in { success: 1, error: 1, complete: 1 } ) {\n\t\t\tjqXHR[ i ]( s[ i ] );\n\t\t}\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = setTimeout(function() {\n\t\t\t\t\tjqXHR.abort(\"timeout\");\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tstate = 1;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\t\t\t\t// Propagate exception as error if not done\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tdone( -1, e );\n\t\t\t\t// Simply rethrow otherwise\n\t\t\t\t} else {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Called once\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// State is \"done\" now\n\t\t\tstate = 2;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\tclearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"Last-Modified\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"etag\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// We extract error from statusText\n\t\t\t\t// then normalize statusText and status for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger(\"ajaxStop\");\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n});\n\njQuery.each( [ \"get\", \"post\" ], function( i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\t\t// shift arguments if data argument was omitted\n\t\tif ( jQuery.isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\treturn jQuery.ajax({\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t});\n\t};\n});\n\n\njQuery._evalUrl = function( url ) {\n\treturn jQuery.ajax({\n\t\turl: url,\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tasync: false,\n\t\tglobal: false,\n\t\t\"throws\": true\n\t});\n};\n\n\njQuery.fn.extend({\n\twrapAll: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapAll( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\tif ( this[0] ) {\n\t\t\t// The elements to wrap the target around\n\t\t\tvar wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);\n\n\t\t\tif ( this[0].parentNode ) {\n\t\t\t\twrap.insertBefore( this[0] );\n\t\t\t}\n\n\t\t\twrap.map(function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstChild && elem.firstChild.nodeType === 1 ) {\n\t\t\t\t\telem = elem.firstChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t}).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapInner( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t});\n\t},\n\n\twrap: function( html ) {\n\t\tvar isFunction = jQuery.isFunction( html );\n\n\t\treturn this.each(function(i) {\n\t\t\tjQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );\n\t\t});\n\t},\n\n\tunwrap: function() {\n\t\treturn this.parent().each(function() {\n\t\t\tif ( !jQuery.nodeName( this, \"body\" ) ) {\n\t\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t\t}\n\t\t}).end();\n\t}\n});\n\n\njQuery.expr.filters.hidden = function( elem ) {\n\t// Support: Opera <= 12.12\n\t// Opera reports offsetWidths and offsetHeights less than zero on some elements\n\treturn elem.offsetWidth <= 0 && elem.offsetHeight <= 0 ||\n\t\t(!support.reliableHiddenOffsets() &&\n\t\t\t((elem.style && elem.style.display) || jQuery.css( elem, \"display\" )) === \"none\");\n};\n\njQuery.expr.filters.visible = function( elem ) {\n\treturn !jQuery.expr.filters.hidden( elem );\n};\n\n\n\n\nvar r20 = /%20/g,\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( jQuery.isArray( obj ) ) {\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams( prefix + \"[\" + ( typeof v === \"object\" ? i : \"\" ) + \"]\", v, traditional, add );\n\t\t\t}\n\t\t});\n\n\t} else if ( !traditional && jQuery.type( obj ) === \"object\" ) {\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, value ) {\n\t\t\t// If value is a function, invoke it and return its value\n\t\t\tvalue = jQuery.isFunction( value ) ? value() : ( value == null ? \"\" : value );\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" + encodeURIComponent( value );\n\t\t};\n\n\t// Set traditional to true for jQuery <= 1.3.2 behavior.\n\tif ( traditional === undefined ) {\n\t\ttraditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t});\n\n\t} else {\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" ).replace( r20, \"+\" );\n};\n\njQuery.fn.extend({\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map(function() {\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t})\n\t\t.filter(function() {\n\t\t\tvar type = this.type;\n\t\t\t// Use .is(\":disabled\") so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t})\n\t\t.map(function( i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\treturn val == null ?\n\t\t\t\tnull :\n\t\t\t\tjQuery.isArray( val ) ?\n\t\t\t\t\tjQuery.map( val, function( val ) {\n\t\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t\t}) :\n\t\t\t\t\t{ name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t}).get();\n\t}\n});\n\n\n// Create the request object\n// (This is still attached to ajaxSettings for backward compatibility)\njQuery.ajaxSettings.xhr = window.ActiveXObject !== undefined ?\n\t// Support: IE6+\n\tfunction() {\n\n\t\t// XHR cannot access local files, always use ActiveX for that case\n\t\treturn !this.isLocal &&\n\n\t\t\t// Support: IE7-8\n\t\t\t// oldIE XHR does not support non-RFC2616 methods (#13240)\n\t\t\t// See http://msdn.microsoft.com/en-us/library/ie/ms536648(v=vs.85).aspx\n\t\t\t// and http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9\n\t\t\t// Although this check for six methods instead of eight\n\t\t\t// since IE also does not support \"trace\" and \"connect\"\n\t\t\t/^(get|post|head|put|delete|options)$/i.test( this.type ) &&\n\n\t\t\tcreateStandardXHR() || createActiveXHR();\n\t} :\n\t// For all other browsers, use the standard XMLHttpRequest object\n\tcreateStandardXHR;\n\nvar xhrId = 0,\n\txhrCallbacks = {},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\n// Support: IE<10\n// Open requests must be manually aborted on unload (#5280)\n// See https://support.microsoft.com/kb/2856746 for more info\nif ( window.attachEvent ) {\n\twindow.attachEvent( \"onunload\", function() {\n\t\tfor ( var key in xhrCallbacks ) {\n\t\t\txhrCallbacks[ key ]( undefined, true );\n\t\t}\n\t});\n}\n\n// Determine support properties\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nxhrSupported = support.ajax = !!xhrSupported;\n\n// Create transport if the browser can provide an xhr\nif ( xhrSupported ) {\n\n\tjQuery.ajaxTransport(function( options ) {\n\t\t// Cross domain only allowed if supported through XMLHttpRequest\n\t\tif ( !options.crossDomain || support.cors ) {\n\n\t\t\tvar callback;\n\n\t\t\treturn {\n\t\t\t\tsend: function( headers, complete ) {\n\t\t\t\t\tvar i,\n\t\t\t\t\t\txhr = options.xhr(),\n\t\t\t\t\t\tid = ++xhrId;\n\n\t\t\t\t\t// Open the socket\n\t\t\t\t\txhr.open( options.type, options.url, options.async, options.username, options.password );\n\n\t\t\t\t\t// Apply custom fields if provided\n\t\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Override mime type if needed\n\t\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t\t}\n\n\t\t\t\t\t// X-Requested-With header\n\t\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\t\tif ( !options.crossDomain && !headers[\"X-Requested-With\"] ) {\n\t\t\t\t\t\theaders[\"X-Requested-With\"] = \"XMLHttpRequest\";\n\t\t\t\t\t}\n\n\t\t\t\t\t// Set headers\n\t\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// IE's ActiveXObject throws a 'Type Mismatch' exception when setting\n\t\t\t\t\t\t// request header to a null-value.\n\t\t\t\t\t\t//\n\t\t\t\t\t\t// To keep consistent with other XHR implementations, cast the value\n\t\t\t\t\t\t// to string and ignore `undefined`.\n\t\t\t\t\t\tif ( headers[ i ] !== undefined ) {\n\t\t\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] + \"\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Do send the request\n\t\t\t\t\t// This may raise an exception which is actually\n\t\t\t\t\t// handled in jQuery.ajax (so no try/catch here)\n\t\t\t\t\txhr.send( ( options.hasContent && options.data ) || null );\n\n\t\t\t\t\t// Listener\n\t\t\t\t\tcallback = function( _, isAbort ) {\n\t\t\t\t\t\tvar status, statusText, responses;\n\n\t\t\t\t\t\t// Was never called and is aborted or complete\n\t\t\t\t\t\tif ( callback && ( isAbort || xhr.readyState === 4 ) ) {\n\t\t\t\t\t\t\t// Clean up\n\t\t\t\t\t\t\tdelete xhrCallbacks[ id ];\n\t\t\t\t\t\t\tcallback = undefined;\n\t\t\t\t\t\t\txhr.onreadystatechange = jQuery.noop;\n\n\t\t\t\t\t\t\t// Abort manually if needed\n\t\t\t\t\t\t\tif ( isAbort ) {\n\t\t\t\t\t\t\t\tif ( xhr.readyState !== 4 ) {\n\t\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tresponses = {};\n\t\t\t\t\t\t\t\tstatus = xhr.status;\n\n\t\t\t\t\t\t\t\t// Support: IE<10\n\t\t\t\t\t\t\t\t// Accessing binary-data responseText throws an exception\n\t\t\t\t\t\t\t\t// (#11426)\n\t\t\t\t\t\t\t\tif ( typeof xhr.responseText === \"string\" ) {\n\t\t\t\t\t\t\t\t\tresponses.text = xhr.responseText;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Firefox throws an exception when accessing\n\t\t\t\t\t\t\t\t// statusText for faulty cross-domain requests\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tstatusText = xhr.statusText;\n\t\t\t\t\t\t\t\t} catch( e ) {\n\t\t\t\t\t\t\t\t\t// We normalize with Webkit giving an empty statusText\n\t\t\t\t\t\t\t\t\tstatusText = \"\";\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Filter status for non standard behaviors\n\n\t\t\t\t\t\t\t\t// If the request is local and we have data: assume a success\n\t\t\t\t\t\t\t\t// (success with no data won't get notified, that's the best we\n\t\t\t\t\t\t\t\t// can do given current implementations)\n\t\t\t\t\t\t\t\tif ( !status && options.isLocal && !options.crossDomain ) {\n\t\t\t\t\t\t\t\t\tstatus = responses.text ? 200 : 404;\n\t\t\t\t\t\t\t\t// IE - #1450: sometimes returns 1223 when it should be 204\n\t\t\t\t\t\t\t\t} else if ( status === 1223 ) {\n\t\t\t\t\t\t\t\t\tstatus = 204;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Call complete if needed\n\t\t\t\t\t\tif ( responses ) {\n\t\t\t\t\t\t\tcomplete( status, statusText, responses, xhr.getAllResponseHeaders() );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\tif ( !options.async ) {\n\t\t\t\t\t\t// if we're in sync mode we fire the callback\n\t\t\t\t\t\tcallback();\n\t\t\t\t\t} else if ( xhr.readyState === 4 ) {\n\t\t\t\t\t\t// (IE6 & IE7) if it's in cache and has been\n\t\t\t\t\t\t// retrieved directly we need to fire the callback\n\t\t\t\t\t\tsetTimeout( callback );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// Add to the list of active xhr callbacks\n\t\t\t\t\t\txhr.onreadystatechange = xhrCallbacks[ id ] = callback;\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tabort: function() {\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tcallback( undefined, true );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t});\n}\n\n// Functions to create xhrs\nfunction createStandardXHR() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch( e ) {}\n}\n\nfunction createActiveXHR() {\n\ttry {\n\t\treturn new window.ActiveXObject( \"Microsoft.XMLHTTP\" );\n\t} catch( e ) {}\n}\n\n\n\n\n// Install script dataType\njQuery.ajaxSetup({\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /(?:java|ecma)script/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n});\n\n// Handle cache's special case and global\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t\ts.global = false;\n\t}\n});\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function(s) {\n\n\t// This transport only deals with cross domain requests\n\tif ( s.crossDomain ) {\n\n\t\tvar script,\n\t\t\thead = document.head || jQuery(\"head\")[0] || document.documentElement;\n\n\t\treturn {\n\n\t\t\tsend: function( _, callback ) {\n\n\t\t\t\tscript = document.createElement(\"script\");\n\n\t\t\t\tscript.async = true;\n\n\t\t\t\tif ( s.scriptCharset ) {\n\t\t\t\t\tscript.charset = s.scriptCharset;\n\t\t\t\t}\n\n\t\t\t\tscript.src = s.url;\n\n\t\t\t\t// Attach handlers for all browsers\n\t\t\t\tscript.onload = script.onreadystatechange = function( _, isAbort ) {\n\n\t\t\t\t\tif ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {\n\n\t\t\t\t\t\t// Handle memory leak in IE\n\t\t\t\t\t\tscript.onload = script.onreadystatechange = null;\n\n\t\t\t\t\t\t// Remove the script\n\t\t\t\t\t\tif ( script.parentNode ) {\n\t\t\t\t\t\t\tscript.parentNode.removeChild( script );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Dereference the script\n\t\t\t\t\t\tscript = null;\n\n\t\t\t\t\t\t// Callback if not abort\n\t\t\t\t\t\tif ( !isAbort ) {\n\t\t\t\t\t\t\tcallback( 200, \"success\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\t// Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\thead.insertBefore( script, head.firstChild );\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( script ) {\n\t\t\t\t\tscript.onload( undefined, true );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n});\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup({\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n});\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" && !( s.contentType || \"\" ).indexOf(\"application/x-www-form-urlencoded\") && rjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[\"script json\"] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always(function() {\n\t\t\t// Restore preexisting value\n\t\t\twindow[ callbackName ] = overwritten;\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\t\t\t\t// make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && jQuery.isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t});\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n});\n\n\n\n\n// data: string of html\n// context (optional): If specified, the fragment will be created in this context, defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\tcontext = context || document;\n\n\tvar parsed = rsingleTag.exec( data ),\n\t\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[1] ) ];\n\t}\n\n\tparsed = jQuery.buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n// Keep a copy of the old load method\nvar _load = jQuery.fn.load;\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tif ( typeof url !== \"string\" && _load ) {\n\t\treturn _load.apply( this, arguments );\n\t}\n\n\tvar selector, response, type,\n\t\tself = this,\n\t\toff = url.indexOf(\" \");\n\n\tif ( off >= 0 ) {\n\t\tselector = jQuery.trim( url.slice( off, url.length ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( jQuery.isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax({\n\t\t\turl: url,\n\n\t\t\t// if \"type\" variable is undefined, then \"GET\" method will be used\n\t\t\ttype: type,\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t}).done(function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery(\"<div>\").append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t}).complete( callback && function( jqXHR, status ) {\n\t\t\tself.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t});\n\t}\n\n\treturn this;\n};\n\n\n\n\n// Attach a bunch of functions for handling common AJAX events\njQuery.each( [ \"ajaxStart\", \"ajaxStop\", \"ajaxComplete\", \"ajaxError\", \"ajaxSuccess\", \"ajaxSend\" ], function( i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n});\n\n\n\n\njQuery.expr.filters.animated = function( elem ) {\n\treturn jQuery.grep(jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t}).length;\n};\n\n\n\n\n\nvar docElem = window.document.documentElement;\n\n/**\n * Gets a window from an element\n */\nfunction getWindow( elem ) {\n\treturn jQuery.isWindow( elem ) ?\n\t\telem :\n\t\telem.nodeType === 9 ?\n\t\t\telem.defaultView || elem.parentWindow :\n\t\t\tfalse;\n}\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\tjQuery.inArray(\"auto\", [ curCSSTop, curCSSLeft ] ) > -1;\n\n\t\t// need to be able to calculate position if either top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( jQuery.isFunction( options ) ) {\n\t\t\toptions = options.call( elem, i, curOffset );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend({\n\toffset: function( options ) {\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each(function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t});\n\t\t}\n\n\t\tvar docElem, win,\n\t\t\tbox = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ],\n\t\t\tdoc = elem && elem.ownerDocument;\n\n\t\tif ( !doc ) {\n\t\t\treturn;\n\t\t}\n\n\t\tdocElem = doc.documentElement;\n\n\t\t// Make sure it's not a disconnected DOM node\n\t\tif ( !jQuery.contains( docElem, elem ) ) {\n\t\t\treturn box;\n\t\t}\n\n\t\t// If we don't have gBCR, just use 0,0 rather than error\n\t\t// BlackBerry 5, iOS 3 (original iPhone)\n\t\tif ( typeof elem.getBoundingClientRect !== strundefined ) {\n\t\t\tbox = elem.getBoundingClientRect();\n\t\t}\n\t\twin = getWindow( doc );\n\t\treturn {\n\t\t\ttop: box.top  + ( win.pageYOffset || docElem.scrollTop )  - ( docElem.clientTop  || 0 ),\n\t\t\tleft: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 )\n\t\t};\n\t},\n\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset,\n\t\t\tparentOffset = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ];\n\n\t\t// fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is its only offset parent\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\t\t\t// we assume that getBoundingClientRect is available when computed position is fixed\n\t\t\toffset = elem.getBoundingClientRect();\n\t\t} else {\n\t\t\t// Get *real* offsetParent\n\t\t\toffsetParent = this.offsetParent();\n\n\t\t\t// Get correct offsets\n\t\t\toffset = this.offset();\n\t\t\tif ( !jQuery.nodeName( offsetParent[ 0 ], \"html\" ) ) {\n\t\t\t\tparentOffset = offsetParent.offset();\n\t\t\t}\n\n\t\t\t// Add offsetParent borders\n\t\t\tparentOffset.top  += jQuery.css( offsetParent[ 0 ], \"borderTopWidth\", true );\n\t\t\tparentOffset.left += jQuery.css( offsetParent[ 0 ], \"borderLeftWidth\", true );\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\t// note: when an element has margin: auto the offsetLeft and marginLeft\n\t\t// are the same in Safari causing offset.left to incorrectly be 0\n\t\treturn {\n\t\t\ttop:  offset.top  - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true)\n\t\t};\n\t},\n\n\toffsetParent: function() {\n\t\treturn this.map(function() {\n\t\t\tvar offsetParent = this.offsetParent || docElem;\n\n\t\t\twhile ( offsetParent && ( !jQuery.nodeName( offsetParent, \"html\" ) && jQuery.css( offsetParent, \"position\" ) === \"static\" ) ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\t\t\treturn offsetParent || docElem;\n\t\t});\n\t}\n});\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = /Y/.test( prop );\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\t\t\tvar win = getWindow( elem );\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? (prop in win) ? win[ prop ] :\n\t\t\t\t\twin.document.documentElement[ method ] :\n\t\t\t\t\telem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : jQuery( win ).scrollLeft(),\n\t\t\t\t\ttop ? val : jQuery( win ).scrollTop()\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length, null );\n\t};\n});\n\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// getComputedStyle returns percent when specified for top/left/bottom/right\n// rather than make the css module depend on the offset module, we just check for it here\njQuery.each( [ \"top\", \"left\" ], function( i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\t\t\t\t// if curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n});\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name }, function( defaultExtra, funcName ) {\n\t\t// margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( jQuery.isWindow( elem ) ) {\n\t\t\t\t\t// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there\n\t\t\t\t\t// isn't a whole lot we can do. See pull request at this URL for discussion:\n\t\t\t\t\t// https://github.com/jquery/jquery/pull/764\n\t\t\t\t\treturn elem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest\n\t\t\t\t\t// unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it.\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable, null );\n\t\t};\n\t});\n});\n\n\n// The number of elements contained in the matched element set\njQuery.fn.size = function() {\n\treturn this.length;\n};\n\njQuery.fn.andSelf = jQuery.fn.addBack;\n\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t});\n}\n\n\n\n\nvar\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in\n// AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === strundefined ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n\n}));\n"
  },
  {
    "path": "images/03_mean/lib/jquery-3.5.1/jquery-AUTHORS.txt",
    "content": "Authors ordered by first contribution.\n\nJohn Resig <jeresig@gmail.com>\nGilles van den Hoven <gilles0181@gmail.com>\nMichael Geary <mike@geary.com>\nStefan Petre <stefan.petre@gmail.com>\nYehuda Katz <wycats@gmail.com>\nCorey Jewett <cj@syntheticplayground.com>\nKlaus Hartl <klaus.hartl@gmail.com>\nFranck Marcia <franck.marcia@gmail.com>\nJörn Zaefferer <joern.zaefferer@gmail.com>\nPaul Bakaus <paul.bakaus@gmail.com>\nBrandon Aaron <brandon.aaron@gmail.com>\nMike Alsup <malsup@gmail.com>\nDave Methvin <dave.methvin@gmail.com>\nEd Engelhardt <edengelhardt@gmail.com>\nSean Catchpole <littlecooldude@gmail.com>\nPaul Mclanahan <pmclanahan@gmail.com>\nDavid Serduke <davidserduke@gmail.com>\nRichard D. Worth <rdworth@gmail.com>\nScott González <scott.gonzalez@gmail.com>\nAriel Flesler <aflesler@gmail.com>\nCheah Chu Yeow <chuyeow@gmail.com>\nAndrew Chalkley <andrew@chalkley.org>\nFabio Buffoni <fabio.buffoni@bitmaster.it>\nStefan Bauckmeier  <stefan@bauckmeier.de>\nJon Evans <jon@springyweb.com>\nTJ Holowaychuk <tj@vision-media.ca>\nRiccardo De Agostini <rdeago@gmail.com>\nMichael Bensoussan <mickey@seesmic.com>\nLouis-Rémi Babé <lrbabe@gmail.com>\nRobert Katić <robert.katic@gmail.com>\nDamian Janowski <damian.janowski@gmail.com>\nAnton Kovalyov <anton@kovalyov.net>\nDušan B. Jovanovic <dbjdbj@gmail.com>\nEarle Castledine <mrspeaker@gmail.com>\nRich Dougherty <rich@rd.gen.nz>\nKim Dalsgaard <kim@kimdalsgaard.com>\nAndrea Giammarchi <andrea.giammarchi@gmail.com>\nFabian Jakobs <fabian.jakobs@web.de>\nMark Gibson <jollytoad@gmail.com>\nKarl Swedberg <kswedberg@gmail.com>\nJustin Meyer <justinbmeyer@gmail.com>\nBen Alman <cowboy@rj3.net>\nJames Padolsey <cla@padolsey.net>\nDavid Petersen <public@petersendidit.com>\nBatiste Bieler <batiste.bieler@gmail.com>\nJake Archibald <jake.archibald@bbc.co.uk>\nAlexander Farkas <info@corrupt-system.de>\nFilipe Fortes <filipe@fortes.com>\nRick Waldron <waldron.rick@gmail.com>\nNeeraj Singh <neerajdotname@gmail.com>\nPaul Irish <paul.irish@gmail.com>\nIraê Carvalho <irae@irae.pro.br>\nMatt Curry <matt@pseudocoder.com>\nMichael Monteleone <michael@michaelmonteleone.net>\nNoah Sloan <noah.sloan@gmail.com>\nTom Viner <github@viner.tv>\nJ. Ryan Stinnett <jryans@gmail.com>\nDouglas Neiner <doug@dougneiner.com>\nAdam J. Sontag <ajpiano@ajpiano.com>\nHeungsub Lee <h@subl.ee>\nDave Reed <dareed@microsoft.com>\nCarl Fürstenberg <azatoth@gmail.com>\nJacob Wright <jacwright@gmail.com>\nRalph Whitbeck <ralph.whitbeck@gmail.com>\nunknown <Igen005@.upcorp.ad.uprr.com>\ntemp01 <temp01irc@gmail.com>\nColin Snover <github.com@zetafleet.com>\nJared Grippe <jared@deadlyicon.com>\nRyan W Tenney <ryan@10e.us>\nAlex Sexton <AlexSexton@gmail.com>\nPinhook <contact@pinhooklabs.com>\nRon Otten <r.j.g.otten@gmail.com>\nJephte Clain <Jephte.Clain@univ-reunion.fr>\nAnton Matzneller <obhvsbypqghgc@gmail.com>\nDan Heberden <danheberden@gmail.com>\nHenri Wiechers <hwiechers@gmail.com>\nRussell Holbrook <russell.holbrook@patch.com>\nJulian Aubourg <aubourg.julian@gmail.com>\nGianni Alessandro Chiappetta <gianni@runlevel6.org>\nScott Jehl <scottjehl@gmail.com>\nJames Burke <jrburke@gmail.com>\nJonas Pfenniger <jonas@pfenniger.name>\nXavi Ramirez <xavi.rmz@gmail.com>\nSylvester Keil <sylvester@keil.or.at>\nBrandon Sterne <bsterne@mozilla.com>\nMathias Bynens <mathias@qiwi.be>\nLee Carpenter <elcarpie@gmail.com>\nTimmy Willison <4timmywil@gmail.com>\nCorey Frang <gnarf37@gmail.com>\nDigitalxero <digitalxero>\nDavid Murdoch <david@davidmurdoch.com>\nJosh Varner <josh.varner@gmail.com>\nCharles McNulty <cmcnulty@kznf.com>\nJordan Boesch <jboesch26@gmail.com>\nJess Thrysoee <jess@thrysoee.dk>\nMichael Murray <m@murz.net>\nAlexis Abril <me@alexisabril.com>\nRob Morgan <robbym@gmail.com>\nJohn Firebaugh <john_firebaugh@bigfix.com>\nSam Bisbee <sam@sbisbee.com>\nGilmore Davidson <gilmoreorless@gmail.com>\nBrian Brennan <me@brianlovesthings.com>\nXavier Montillet <xavierm02.net@gmail.com>\nDaniel Pihlstrom <sciolist.se@gmail.com>\nSahab Yazdani <sahab.yazdani+github@gmail.com>\navaly <github-com@agachi.name>\nScott Hughes <hi@scott-hughes.me>\nMike Sherov <mike.sherov@gmail.com>\nGreg Hazel <ghazel@gmail.com>\nSchalk Neethling <schalk@ossreleasefeed.com>\nDenis Knauf <Denis.Knauf@gmail.com>\nTimo Tijhof <krinklemail@gmail.com>\nSteen Nielsen <swinedk@gmail.com>\nAnton Ryzhov <anton@ryzhov.me>\nShi Chuan <shichuanr@gmail.com>\nMatt Mueller <mattmuelle@gmail.com>\nBerker Peksag <berker.peksag@gmail.com>\nToby Brain <tobyb@freshview.com>\nJustin <drakefjustin@gmail.com>\nDaniel Herman <daniel.c.herman@gmail.com>\nOleg Gaidarenko <markelog@gmail.com>\nRock Hymas <rock@fogcreek.com>\nRichard Gibson <richard.gibson@gmail.com>\nRafaël Blais Masson <rafbmasson@gmail.com>\ncmc3cn <59194618@qq.com>\nJoe Presbrey <presbrey@gmail.com>\nSindre Sorhus <sindresorhus@gmail.com>\nArne de Bree <arne@bukkie.nl>\nVladislav Zarakovsky <vlad.zar@gmail.com>\nAndrew E Monat <amonat@gmail.com>\nOskari <admin@o-programs.com>\nJoao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>\ntsinha <tsinha@Anthonys-MacBook-Pro.local>\nDominik D. Geyer <dominik.geyer@gmail.com>\nMatt Farmer <matt@frmr.me>\nTrey Hunner <treyhunner@gmail.com>\nJason Moon <jmoon@socialcast.com>\nJeffery To <jeffery.to@gmail.com>\nKris Borchers <kris.borchers@gmail.com>\nVladimir Zhuravlev <private.face@gmail.com>\nJacob Thornton <jacobthornton@gmail.com>\nChad Killingsworth <chadkillingsworth@missouristate.edu>\nVitya Muhachev <vic99999@yandex.ru>\nNowres Rafid <nowres.rafed@gmail.com>\nDavid Benjamin <davidben@mit.edu>\nAlan Plum <github@ap.apsq.de>\nUri Gilad <antishok@gmail.com>\nChris Faulkner <thefaulkner@gmail.com>\nMarcel Greter <marcel.greter@ocbnet.ch>\nElijah Manor <elijah.manor@gmail.com>\nDaniel Chatfield <chatfielddaniel@gmail.com>\nDaniel Gálvez <dgalvez@editablething.com>\nNikita Govorov <nikita.govorov@gmail.com>\nWesley Walser <waw325@gmail.com>\nMike Pennisi <mike@mikepennisi.com>\nMatthias Jäggli <matthias.jaeggli@gmail.com>\nDevin Cooper <cooper.semantics@gmail.com>\nMarkus Staab <markus.staab@redaxo.de>\nDave Riddle <david@joyvuu.com>\nCallum Macrae <callum@lynxphp.com>\nJonathan Sampson <jjdsampson@gmail.com>\nBenjamin Truyman <bentruyman@gmail.com>\nJay Merrifield <fracmak@gmail.com>\nJames Huston <james@jameshuston.net>\nSai Lung Wong <sai.wong@huffingtonpost.com>\nErick Ruiz de Chávez <erickrdch@gmail.com>\nDavid Bonner <dbonner@cogolabs.com>\nAllen J Schmidt Jr <cobrasoft@gmail.com>\nAkintayo Akinwunmi <aakinwunmi@judge.com>\nMORGAN <morgan@morgangraphics.com>\nIsmail Khair <ismail.khair@gmail.com>\nCarl Danley <carldanley@gmail.com>\nMike Petrovich <michael.c.petrovich@gmail.com>\nGreg Lavallee <greglavallee@wapolabs.com>\nTom H Fuertes <TomFuertes@gmail.com>\nRoland Eckl <eckl.roland@googlemail.com>\nYiming He <yiminghe@gmail.com>\nDavid Fox <dfoxinator@gmail.com>\nBennett Sorbo <bsorbo@gmail.com>\nPaul Ramos <paul.b.ramos@gmail.com>\nRod Vagg <rod@vagg.org>\nSebastian Burkhard <sebi.burkhard@gmail.com>\nZachary Adam Kaplan <razic@viralkitty.com>\nAdam Coulombe <me@adam.co>\nnanto_vi <nanto@moon.email.ne.jp>\nnanto <nanto@moon.email.ne.jp>\nDanil Somsikov <danilasomsikov@gmail.com>\nRyunosuke SATO <tricknotes.rs@gmail.com>\nDiego Tres <diegotres@gmail.com>\nJean Boussier <jean.boussier@gmail.com>\nAndrew Plummer <plummer.andrew@gmail.com>\nMark Raddatz <mraddatz@gmail.com>\nPascal Borreli <pascal@borreli.com>\nIsaac Z. Schlueter <i@izs.me>\nKarl Sieburg <ksieburg@yahoo.com>\nNguyen Phuc Lam <ruado1987@gmail.com>\nDmitry Gusev <dmitry.gusev@gmail.com>\nSteven Benner <admin@stevenbenner.com>\nLi Xudong <istonelee@gmail.com>\nMichał Gołębiowski-Owczarek <m.goleb@gmail.com>\nRenato Oliveira dos Santos <ros3@cin.ufpe.br>\nFrederic Junod <frederic.junod@camptocamp.com>\nTom H Fuertes <tomfuertes@gmail.com>\nMitch Foley <mitch@thefoley.net>\nros3cin <ros3@cin.ufpe.br>\nKyle Robinson Young <kyle@dontkry.com>\nJohn Paul <john@johnkpaul.com>\nJason Bedard <jason+jquery@jbedard.ca>\nChris Talkington <chris@talkingtontech.com>\nEddie Monge <eddie@eddiemonge.com>\nTerry Jones <terry@jon.es>\nJason Merino <jasonmerino@gmail.com>\nDan Burzo <danburzo@gmail.com>\nJeremy Dunck <jdunck@gmail.com>\nChris Price <price.c@gmail.com>\nGuy Bedford <guybedford@gmail.com>\nnjhamann <njhamann@gmail.com>\nGoare Mao <mygoare@gmail.com>\nAmey Sakhadeo <me@ameyms.com>\nMike Sidorov <mikes.ekb@gmail.com>\nAnthony Ryan <anthonyryan1@gmail.com>\nLihan Li <frankieteardrop@gmail.com>\nGeorge Kats <katsgeorgeek@gmail.com>\nDongseok Paeng <dongseok83.paeng@lge.com>\nRonny Springer <springer.ronny@gmail.com>\nIlya Kantor <iliakan@gmail.com>\nMarian Sollmann <marian.sollmann@cargomedia.ch>\nChris Antaki <ChrisAntaki@gmail.com>\nDavid Hong <d.hong@me.com>\nJakob Stoeck <jakob@pokermania.de>\nChristopher Jones <chris@cjqed.com>\nForbes Lindesay <forbes@lindesay.co.uk>\nS. Andrew Sheppard <andrew@wq.io>\nLeonardo Balter <leonardo.balter@gmail.com>\nRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>\nDaniel Husar <dano.husar@gmail.com>\nPhilip Jägenstedt <philip@foolip.org>\nJohn Hoven <hovenj@gmail.com>\nRoman Reiß <me@silverwind.io>\nBenjy Cui <benjytrys@gmail.com>\nChristian Kosmowski <ksmwsk@gmail.com>\nDavid Corbacho <davidcorbacho@gmail.com>\nLiang Peng <poppinlp@gmail.com>\nTJ VanToll <tj.vantoll@gmail.com>\nAurelio De Rosa <aurelioderosa@gmail.com>\nSenya Pugach <upisfree@outlook.com>\nDan Hart <danhart@notonthehighstreet.com>\nNazar Mokrynskyi <nazar@mokrynskyi.com>\nBenjamin Tan <demoneaux@gmail.com>\nAmit Merchant <bullredeyes@gmail.com>\nJason Bedard <jason+github@jbedard.ca>\nVeaceslav Grimalschi <grimalschi@yandex.ru>\nRichard McDaniel <rm0026@uah.edu>\nArthur Verschaeve <contact@arthurverschaeve.be>\nShivaji Varma <contact@shivajivarma.com>\nBen Toews <mastahyeti@gmail.com>\nBin Xin <rhyzix@gmail.com>\nNeftaly Hernandez <neftaly.hernandez@gmail.com>\nT.J. Crowder <tj.crowder@farsightsoftware.com>\nNicolas HENRY <icewil@gmail.com>\nFrederic Hemberger <mail@frederic-hemberger.de>\nVictor Homyakov <vkhomyackov@gmail.com>\nAditya Raghavan <araghavan3@gmail.com>\nAnne-Gaelle Colom <coloma@westminster.ac.uk>\nLeonardo Braga <leonardo.braga@gmail.com>\nGeorge Mauer <gmauer@gmail.com>\nStephen Edgar <stephen@netweb.com.au>\nThomas Tortorini <thomastortorini@gmail.com>\nJörn Wagner <joern.wagner@explicatis.com>\nJon Hester <jon.d.hester@gmail.com>\nColin Frick <colin@bash.li>\nWinston Howes <winstonhowes@gmail.com>\nAlexander O'Mara <me@alexomara.com>\nChris Rebert <github@rebertia.com>\nBastian Buchholz <buchholz.bastian@googlemail.com>\nMu Haibao <mhbseal@163.com>\nCalvin Metcalf <calvin.metcalf@gmail.com>\nArthur Stolyar <nekr.fabula@gmail.com>\nGabriel Schulhof <gabriel.schulhof@intel.com>\nGilad Peleg <giladp007@gmail.com>\nJulian Alexander Murillo <julian.alexander.murillo@gmail.com>\nKevin Kirsche <Kev.Kirsche+GitHub@gmail.com>\nMartin Naumann <martin@geekonaut.de>\nYongwoo Jeon <yongwoo.jeon@navercorp.com>\nJohn-David Dalton <john.david.dalton@gmail.com>\nMarek Lewandowski <m.lewandowski@cksource.com>\nBruno Pérel <brunoperel@gmail.com>\nDaniel Nill <daniellnill@gmail.com>\nReed Loden <reed@reedloden.com>\nSean Henderson <seanh.za@gmail.com>\nGary Ye <garysye@gmail.com>\nRichard Kraaijenhagen <stdin+git@riichard.com>\nConnor Atherton <c.liam.atherton@gmail.com>\nChristian Grete <webmaster@christiangrete.com>\nTom von Clef <thomas.vonclef@gmail.com>\nLiza Ramo <liza.h.ramo@gmail.com>\nJoelle Fleurantin <joasqueeniebee@gmail.com>\nSteve Mao <maochenyan@gmail.com>\nJon Dufresne <jon.dufresne@gmail.com>\nJae Sung Park <alberto.park@gmail.com>\nJosh Soref <apache@soref.com>\nSaptak Sengupta <saptak013@gmail.com>\nHenry Wong <henryw4k@gmail.com>\nJun Sun <klsforever@gmail.com>\nMartijn W. van der Lee <martijn@vanderlee.com>\nDevin Wilson <dwilson6.github@gmail.com>\nDamian Senn <jquery@topaxi.codes>\nZack Hall <zackhall@outlook.com>\nVitaliy Terziev <vitaliyterziev@gmail.com>\nTodor Prikumov <tono_pr@abv.bg>\nBernhard M. Wiedemann <jquerybmw@lsmod.de>\nJha Naman <createnaman@gmail.com>\nAlexander Lisianoi <all3fox@gmail.com>\nWilliam Robinet <william.robinet@conostix.com>\nJoe Trumbull <trumbull.j@gmail.com>\nAlexander K <xpyro@ya.ru>\nRalin Chimev <ralin.chimev@gmail.com>\nFelipe Sateler <fsateler@gmail.com>\nChristophe Tafani-Dereeper <christophetd@hotmail.fr>\nManoj Kumar <nithmanoj@gmail.com>\nDavid Broder-Rodgers <broder93@gmail.com>\nAlex Louden <alex@louden.com>\nAlex Padilla <alexonezero@outlook.com>\nkaran-96 <karanbatra96@gmail.com>\n南漂一卒 <shiy007@qq.com>\nErik Lax <erik@datahack.se>\nBoom Lee <teabyii@gmail.com>\nAndreas Solleder <asol@num42.de>\nPierre Spring <pierre@nelm.io>\nShashanka Nataraj <shashankan.10@gmail.com>\nCDAGaming <cstack2011@yahoo.com>\nMatan Kotler-Berkowitz <205matan@gmail.com>\nJordan Beland <jordan.beland@gmail.com>\nHenry Zhu <hi@henryzoo.com>\nNilton Cesar <niltoncms@gmail.com>\nbasil.belokon <basil.belokon@gmail.com>\nAndrey Meshkov <ay.meshkov@gmail.com>\ntmybr11 <tomas.perone@gmail.com>\nLuis Emilio Velasco Sanchez <emibloque@gmail.com>\nEd S <ejsanders@gmail.com>\nBert Zhang <enbo@users.noreply.github.com>\nSébastien Règne <regseb@users.noreply.github.com>\nwartmanm <3869625+wartmanm@users.noreply.github.com>\nSiddharth Dungarwal <sd5869@gmail.com>\nabnud1 <ahmad13932013@hotmail.com>\nAndrei Fangli <andrei_fangli@outlook.com>\nMarja Hölttä <marja.holtta@gmail.com>\nbuddh4 <mail@jharrer.de>\nHoang <dangkyokhoang@gmail.com>\nWonseop Kim <wonseop.kim@samsung.com>\nPat O'Callaghan <patocallaghan@gmail.com>\nJuanMa Ruiz <ruizjuanma@gmail.com>\nAhmed.S.ElAfifi <ahmed.s.elafifi@gmail.com>\nSean Robinson <sean.robinson@scottsdalecc.edu>\nChristian Oliff <christianoliff@pm.me>\n"
  },
  {
    "path": "images/03_mean/lib/jquery-3.5.1/jquery.js",
    "content": "/*!\n * jQuery JavaScript Library v3.5.1\n * https://jquery.com/\n *\n * Includes Sizzle.js\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://jquery.org/license\n *\n * Date: 2020-05-04T22:49Z\n */\n( function( global, factory ) {\n\n\t\"use strict\";\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\n\t\t// For CommonJS and CommonJS-like environments where a proper `window`\n\t\t// is present, execute the factory and get jQuery.\n\t\t// For environments that do not have a `window` with a `document`\n\t\t// (such as Node.js), expose a factory as module.exports.\n\t\t// This accentuates the need for the creation of a real `window`.\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info.\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n} )( typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1\n// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode\n// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common\n// enough that all such attempts are guarded in a try block.\n\"use strict\";\n\nvar arr = [];\n\nvar getProto = Object.getPrototypeOf;\n\nvar slice = arr.slice;\n\nvar flat = arr.flat ? function( array ) {\n\treturn arr.flat.call( array );\n} : function( array ) {\n\treturn arr.concat.apply( [], array );\n};\n\n\nvar push = arr.push;\n\nvar indexOf = arr.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar fnToString = hasOwn.toString;\n\nvar ObjectFunctionString = fnToString.call( Object );\n\nvar support = {};\n\nvar isFunction = function isFunction( obj ) {\n\n      // Support: Chrome <=57, Firefox <=52\n      // In some browsers, typeof returns \"function\" for HTML <object> elements\n      // (i.e., `typeof document.createElement( \"object\" ) === \"function\"`).\n      // We don't want to classify *any* DOM node as a function.\n      return typeof obj === \"function\" && typeof obj.nodeType !== \"number\";\n  };\n\n\nvar isWindow = function isWindow( obj ) {\n\t\treturn obj != null && obj === obj.window;\n\t};\n\n\nvar document = window.document;\n\n\n\n\tvar preservedScriptAttributes = {\n\t\ttype: true,\n\t\tsrc: true,\n\t\tnonce: true,\n\t\tnoModule: true\n\t};\n\n\tfunction DOMEval( code, node, doc ) {\n\t\tdoc = doc || document;\n\n\t\tvar i, val,\n\t\t\tscript = doc.createElement( \"script\" );\n\n\t\tscript.text = code;\n\t\tif ( node ) {\n\t\t\tfor ( i in preservedScriptAttributes ) {\n\n\t\t\t\t// Support: Firefox 64+, Edge 18+\n\t\t\t\t// Some browsers don't support the \"nonce\" property on scripts.\n\t\t\t\t// On the other hand, just using `getAttribute` is not enough as\n\t\t\t\t// the `nonce` attribute is reset to an empty string whenever it\n\t\t\t\t// becomes browsing-context connected.\n\t\t\t\t// See https://github.com/whatwg/html/issues/2369\n\t\t\t\t// See https://html.spec.whatwg.org/#nonce-attributes\n\t\t\t\t// The `node.getAttribute` check was added for the sake of\n\t\t\t\t// `jQuery.globalEval` so that it can fake a nonce-containing node\n\t\t\t\t// via an object.\n\t\t\t\tval = node[ i ] || node.getAttribute && node.getAttribute( i );\n\t\t\t\tif ( val ) {\n\t\t\t\t\tscript.setAttribute( i, val );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tdoc.head.appendChild( script ).parentNode.removeChild( script );\n\t}\n\n\nfunction toType( obj ) {\n\tif ( obj == null ) {\n\t\treturn obj + \"\";\n\t}\n\n\t// Support: Android <=2.3 only (functionish RegExp)\n\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\tclass2type[ toString.call( obj ) ] || \"object\" :\n\t\ttypeof obj;\n}\n/* global Symbol */\n// Defining this global in .eslintrc.json would create a danger of using the global\n// unguarded in another place, it seems safer to define global only for this module\n\n\n\nvar\n\tversion = \"3.5.1\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t};\n\njQuery.fn = jQuery.prototype = {\n\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\n\t\t// Return all the elements in a clean array\n\t\tif ( num == null ) {\n\t\t\treturn slice.call( this );\n\t\t}\n\n\t\t// Return just the one element from the set\n\t\treturn num < 0 ? this[ num + this.length ] : this[ num ];\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\teach: function( callback ) {\n\t\treturn jQuery.each( this, callback );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map( this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t} ) );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teven: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn ( i + 1 ) % 2;\n\t\t} ) );\n\t},\n\n\todd: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn i % 2;\n\t\t} ) );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor();\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: arr.sort,\n\tsplice: arr.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[ 0 ] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// Skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !isFunction( target ) ) {\n\t\ttarget = {};\n\t}\n\n\t// Extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\n\t\t// Only deal with non-null/undefined values\n\t\tif ( ( options = arguments[ i ] ) != null ) {\n\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent Object.prototype pollution\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( name === \"__proto__\" || target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject( copy ) ||\n\t\t\t\t\t( copyIsArray = Array.isArray( copy ) ) ) ) {\n\t\t\t\t\tsrc = target[ name ];\n\n\t\t\t\t\t// Ensure proper type for the source value\n\t\t\t\t\tif ( copyIsArray && !Array.isArray( src ) ) {\n\t\t\t\t\t\tclone = [];\n\t\t\t\t\t} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {\n\t\t\t\t\t\tclone = {};\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src;\n\t\t\t\t\t}\n\t\t\t\t\tcopyIsArray = false;\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend( {\n\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\tisPlainObject: function( obj ) {\n\t\tvar proto, Ctor;\n\n\t\t// Detect obvious negatives\n\t\t// Use toString instead of jQuery.type to catch host objects\n\t\tif ( !obj || toString.call( obj ) !== \"[object Object]\" ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tproto = getProto( obj );\n\n\t\t// Objects with no prototype (e.g., `Object.create( null )`) are plain\n\t\tif ( !proto ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Objects with prototype are plain iff they were constructed by a global Object function\n\t\tCtor = hasOwn.call( proto, \"constructor\" ) && proto.constructor;\n\t\treturn typeof Ctor === \"function\" && fnToString.call( Ctor ) === ObjectFunctionString;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\t// Evaluates a script in a provided context; falls back to the global one\n\t// if not specified.\n\tglobalEval: function( code, options, doc ) {\n\t\tDOMEval( code, { nonce: options && options.nonce }, doc );\n\t},\n\n\teach: function( obj, callback ) {\n\t\tvar length, i = 0;\n\n\t\tif ( isArrayLike( obj ) ) {\n\t\t\tlength = obj.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tfor ( i in obj ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArrayLike( Object( arr ) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\treturn arr == null ? -1 : indexOf.call( arr, elem, i );\n\t},\n\n\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t// push.apply(_, arraylike) throws on ancient WebKit\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\tfor ( ; j < len; j++ ) {\n\t\t\tfirst[ i++ ] = second[ j ];\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar length, value,\n\t\t\ti = 0,\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArrayLike( elems ) ) {\n\t\t\tlength = elems.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn flat( ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n} );\n\nif ( typeof Symbol === \"function\" ) {\n\tjQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];\n}\n\n// Populate the class2type map\njQuery.each( \"Boolean Number String Function Array Date RegExp Object Error Symbol\".split( \" \" ),\nfunction( _i, name ) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n} );\n\nfunction isArrayLike( obj ) {\n\n\t// Support: real iOS 8.2 only (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = !!obj && \"length\" in obj && obj.length,\n\t\ttype = toType( obj );\n\n\tif ( isFunction( obj ) || isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.3.5\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://js.foundation/\n *\n * Date: 2020-03-14\n */\n( function( window ) {\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tnonnativeSelectorCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// Instance methods\n\thasOwn = ( {} ).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpushNative = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\n\t// Use a stripped-down indexOf as it's faster than native\n\t// https://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[ i ] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|\" +\n\t\t\"ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\n\t// https://www.w3.org/TR/css-syntax-3/#ident-token-diagram\n\tidentifier = \"(?:\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace +\n\t\t\"?|\\\\\\\\[^\\\\r\\\\n\\\\f]|[\\\\w-]|[^\\0-\\\\x7f])+\",\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + identifier + \")(?:\" + whitespace +\n\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\n\t\t// \"Attribute values must be CSS identifiers [capture 5]\n\t\t// or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" +\n\t\twhitespace + \"*\\\\]\",\n\n\tpseudos = \":(\" + identifier + \")(?:\\\\((\" +\n\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" +\n\t\twhitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace +\n\t\t\"*\" ),\n\trdescend = new RegExp( whitespace + \"|>\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + identifier + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + identifier + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + identifier + \"|[*])\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" +\n\t\t\twhitespace + \"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" +\n\t\t\twhitespace + \"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace +\n\t\t\t\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" + whitespace +\n\t\t\t\"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trhtml = /HTML$/i,\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\n\t// CSS escapes\n\t// http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace + \"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\", \"g\" ),\n\tfunescape = function( escape, nonHex ) {\n\t\tvar high = \"0x\" + escape.slice( 1 ) - 0x10000;\n\n\t\treturn nonHex ?\n\n\t\t\t// Strip the backslash prefix from a non-hex escape sequence\n\t\t\tnonHex :\n\n\t\t\t// Replace a hexadecimal escape sequence with the encoded Unicode code point\n\t\t\t// Support: IE <=11+\n\t\t\t// For values outside the Basic Multilingual Plane (BMP), manually construct a\n\t\t\t// surrogate pair\n\t\t\thigh < 0 ?\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// CSS string/identifier serialization\n\t// https://drafts.csswg.org/cssom/#common-serializing-idioms\n\trcssescape = /([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,\n\tfcssescape = function( ch, asCodePoint ) {\n\t\tif ( asCodePoint ) {\n\n\t\t\t// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER\n\t\t\tif ( ch === \"\\0\" ) {\n\t\t\t\treturn \"\\uFFFD\";\n\t\t\t}\n\n\t\t\t// Control characters and (dependent upon position) numbers get escaped as code points\n\t\t\treturn ch.slice( 0, -1 ) + \"\\\\\" +\n\t\t\t\tch.charCodeAt( ch.length - 1 ).toString( 16 ) + \" \";\n\t\t}\n\n\t\t// Other potentially-special ASCII characters get backslash-escaped\n\t\treturn \"\\\\\" + ch;\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t},\n\n\tinDisabledFieldset = addCombinator(\n\t\tfunction( elem ) {\n\t\t\treturn elem.disabled === true && elem.nodeName.toLowerCase() === \"fieldset\";\n\t\t},\n\t\t{ dir: \"parentNode\", next: \"legend\" }\n\t);\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t( arr = slice.call( preferredDoc.childNodes ) ),\n\t\tpreferredDoc.childNodes\n\t);\n\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\t// eslint-disable-next-line no-unused-expressions\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpushNative.apply( target, slice.call( els ) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( ( target[ j++ ] = els[ i++ ] ) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar m, i, elem, nid, match, groups, newSelector,\n\t\tnewContext = context && context.ownerDocument,\n\n\t\t// nodeType defaults to 9, since context defaults to document\n\t\tnodeType = context ? context.nodeType : 9;\n\n\tresults = results || [];\n\n\t// Return early from calls with invalid selector or context\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\t// Try to shortcut find operations (as opposed to filters) in HTML documents\n\tif ( !seed ) {\n\t\tsetDocument( context );\n\t\tcontext = context || document;\n\n\t\tif ( documentIsHTML ) {\n\n\t\t\t// If the selector is sufficiently simple, try using a \"get*By*\" DOM method\n\t\t\t// (excepting DocumentFragment context, where the methods don't exist)\n\t\t\tif ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) {\n\n\t\t\t\t// ID selector\n\t\t\t\tif ( ( m = match[ 1 ] ) ) {\n\n\t\t\t\t\t// Document context\n\t\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\t\tif ( ( elem = context.getElementById( m ) ) ) {\n\n\t\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// Element context\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\tif ( newContext && ( elem = newContext.getElementById( m ) ) &&\n\t\t\t\t\t\t\tcontains( context, elem ) &&\n\t\t\t\t\t\t\telem.id === m ) {\n\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t// Type selector\n\t\t\t\t} else if ( match[ 2 ] ) {\n\t\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\t\treturn results;\n\n\t\t\t\t// Class selector\n\t\t\t\t} else if ( ( m = match[ 3 ] ) && support.getElementsByClassName &&\n\t\t\t\t\tcontext.getElementsByClassName ) {\n\n\t\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\t\treturn results;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Take advantage of querySelectorAll\n\t\t\tif ( support.qsa &&\n\t\t\t\t!nonnativeSelectorCache[ selector + \" \" ] &&\n\t\t\t\t( !rbuggyQSA || !rbuggyQSA.test( selector ) ) &&\n\n\t\t\t\t// Support: IE 8 only\n\t\t\t\t// Exclude object elements\n\t\t\t\t( nodeType !== 1 || context.nodeName.toLowerCase() !== \"object\" ) ) {\n\n\t\t\t\tnewSelector = selector;\n\t\t\t\tnewContext = context;\n\n\t\t\t\t// qSA considers elements outside a scoping root when evaluating child or\n\t\t\t\t// descendant combinators, which is not what we want.\n\t\t\t\t// In such cases, we work around the behavior by prefixing every selector in the\n\t\t\t\t// list with an ID selector referencing the scope context.\n\t\t\t\t// The technique has to be used as well when a leading combinator is used\n\t\t\t\t// as such selectors are not recognized by querySelectorAll.\n\t\t\t\t// Thanks to Andrew Dupont for this technique.\n\t\t\t\tif ( nodeType === 1 &&\n\t\t\t\t\t( rdescend.test( selector ) || rcombinators.test( selector ) ) ) {\n\n\t\t\t\t\t// Expand context for sibling selectors\n\t\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext;\n\n\t\t\t\t\t// We can use :scope instead of the ID hack if the browser\n\t\t\t\t\t// supports it & if we're not changing the context.\n\t\t\t\t\tif ( newContext !== context || !support.scope ) {\n\n\t\t\t\t\t\t// Capture the context ID, setting it first if necessary\n\t\t\t\t\t\tif ( ( nid = context.getAttribute( \"id\" ) ) ) {\n\t\t\t\t\t\t\tnid = nid.replace( rcssescape, fcssescape );\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tcontext.setAttribute( \"id\", ( nid = expando ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prefix every selector in the list\n\t\t\t\t\tgroups = tokenize( selector );\n\t\t\t\t\ti = groups.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tgroups[ i ] = ( nid ? \"#\" + nid : \":scope\" ) + \" \" +\n\t\t\t\t\t\t\ttoSelector( groups[ i ] );\n\t\t\t\t\t}\n\t\t\t\t\tnewSelector = groups.join( \",\" );\n\t\t\t\t}\n\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch ( qsaError ) {\n\t\t\t\t\tnonnativeSelectorCache( selector, true );\n\t\t\t\t} finally {\n\t\t\t\t\tif ( nid === expando ) {\n\t\t\t\t\t\tcontext.removeAttribute( \"id\" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {function(string, object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn ( cache[ key + \" \" ] = value );\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created element and returns a boolean result\n */\nfunction assert( fn ) {\n\tvar el = document.createElement( \"fieldset\" );\n\n\ttry {\n\t\treturn !!fn( el );\n\t} catch ( e ) {\n\t\treturn false;\n\t} finally {\n\n\t\t// Remove from its parent by default\n\t\tif ( el.parentNode ) {\n\t\t\tel.parentNode.removeChild( el );\n\t\t}\n\n\t\t// release memory in IE\n\t\tel = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split( \"|\" ),\n\t\ti = arr.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[ i ] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\ta.sourceIndex - b.sourceIndex;\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( ( cur = cur.nextSibling ) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn ( name === \"input\" || name === \"button\" ) && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for :enabled/:disabled\n * @param {Boolean} disabled true for :disabled; false for :enabled\n */\nfunction createDisabledPseudo( disabled ) {\n\n\t// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable\n\treturn function( elem ) {\n\n\t\t// Only certain elements can match :enabled or :disabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled\n\t\tif ( \"form\" in elem ) {\n\n\t\t\t// Check for inherited disabledness on relevant non-disabled elements:\n\t\t\t// * listed form-associated elements in a disabled fieldset\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#category-listed\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled\n\t\t\t// * option elements in a disabled optgroup\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled\n\t\t\t// All such elements have a \"form\" property.\n\t\t\tif ( elem.parentNode && elem.disabled === false ) {\n\n\t\t\t\t// Option elements defer to a parent optgroup if present\n\t\t\t\tif ( \"label\" in elem ) {\n\t\t\t\t\tif ( \"label\" in elem.parentNode ) {\n\t\t\t\t\t\treturn elem.parentNode.disabled === disabled;\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn elem.disabled === disabled;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Support: IE 6 - 11\n\t\t\t\t// Use the isDisabled shortcut property to check for disabled fieldset ancestors\n\t\t\t\treturn elem.isDisabled === disabled ||\n\n\t\t\t\t\t// Where there is no isDisabled, check manually\n\t\t\t\t\t/* jshint -W018 */\n\t\t\t\t\telem.isDisabled !== !disabled &&\n\t\t\t\t\tinDisabledFieldset( elem ) === disabled;\n\t\t\t}\n\n\t\t\treturn elem.disabled === disabled;\n\n\t\t// Try to winnow out elements that can't be disabled before trusting the disabled property.\n\t\t// Some victims get caught in our net (label, legend, menu, track), but it shouldn't\n\t\t// even exist on them, let alone have a boolean value.\n\t\t} else if ( \"label\" in elem ) {\n\t\t\treturn elem.disabled === disabled;\n\t\t}\n\n\t\t// Remaining elements are neither :enabled nor :disabled\n\t\treturn false;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction( function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction( function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ ( j = matchIndexes[ i ] ) ] ) {\n\t\t\t\t\tseed[ j ] = !( matches[ j ] = seed[ j ] );\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t} );\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\tvar namespace = elem.namespaceURI,\n\t\tdocElem = ( elem.ownerDocument || elem ).documentElement;\n\n\t// Support: IE <=8\n\t// Assume HTML when documentElement doesn't yet exist, such as inside loading iframes\n\t// https://bugs.jquery.com/ticket/4833\n\treturn !rhtml.test( namespace || docElem && docElem.nodeName || \"HTML\" );\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, subWindow,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// Return early if doc is invalid or already selected\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Update global variables\n\tdocument = doc;\n\tdocElem = document.documentElement;\n\tdocumentIsHTML = !isXML( document );\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t// Accessing iframe documents after unload throws \"permission denied\" errors (jQuery #13936)\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( preferredDoc != document &&\n\t\t( subWindow = document.defaultView ) && subWindow.top !== subWindow ) {\n\n\t\t// Support: IE 11, Edge\n\t\tif ( subWindow.addEventListener ) {\n\t\t\tsubWindow.addEventListener( \"unload\", unloadHandler, false );\n\n\t\t// Support: IE 9 - 10 only\n\t\t} else if ( subWindow.attachEvent ) {\n\t\t\tsubWindow.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t// Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only,\n\t// Safari 4 - 5 only, Opera <=11.6 - 12.x only\n\t// IE/Edge & older browsers don't support the :scope pseudo-class.\n\t// Support: Safari 6.0 only\n\t// Safari 6.0 supports :scope but it's an alias of :root there.\n\tsupport.scope = assert( function( el ) {\n\t\tdocElem.appendChild( el ).appendChild( document.createElement( \"div\" ) );\n\t\treturn typeof el.querySelectorAll !== \"undefined\" &&\n\t\t\t!el.querySelectorAll( \":scope fieldset div\" ).length;\n\t} );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert( function( el ) {\n\t\tel.className = \"i\";\n\t\treturn !el.getAttribute( \"className\" );\n\t} );\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert( function( el ) {\n\t\tel.appendChild( document.createComment( \"\" ) );\n\t\treturn !el.getElementsByTagName( \"*\" ).length;\n\t} );\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( document.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programmatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert( function( el ) {\n\t\tdocElem.appendChild( el ).id = expando;\n\t\treturn !document.getElementsByName || !document.getElementsByName( expando ).length;\n\t} );\n\n\t// ID filter and find\n\tif ( support.getById ) {\n\t\tExpr.filter[ \"ID\" ] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute( \"id\" ) === attrId;\n\t\t\t};\n\t\t};\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar elem = context.getElementById( id );\n\t\t\t\treturn elem ? [ elem ] : [];\n\t\t\t}\n\t\t};\n\t} else {\n\t\tExpr.filter[ \"ID\" ] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" &&\n\t\t\t\t\telem.getAttributeNode( \"id\" );\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\n\t\t// Support: IE 6 - 7 only\n\t\t// getElementById is not reliable as a find shortcut\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar node, i, elems,\n\t\t\t\t\telem = context.getElementById( id );\n\n\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t// Verify the id attribute\n\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t}\n\n\t\t\t\t\t// Fall back on getElementsByName\n\t\t\t\t\telems = context.getElementsByName( id );\n\t\t\t\t\ti = 0;\n\t\t\t\t\twhile ( ( elem = elems[ i++ ] ) ) {\n\t\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn [];\n\t\t\t}\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[ \"TAG\" ] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[ \"CLASS\" ] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See https://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) {\n\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert( function( el ) {\n\n\t\t\tvar input;\n\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// https://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( el ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\r\\\\' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( el.querySelectorAll( \"[msallowcapture^='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !el.querySelectorAll( \"[selected]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+\n\t\t\tif ( !el.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"~=\" );\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 15 - 18+\n\t\t\t// IE 11/Edge don't find elements on a `[name='']` query in some cases.\n\t\t\t// Adding a temporary attribute to the document before the selection works\n\t\t\t// around the issue.\n\t\t\t// Interestingly, IE 10 & older don't seem to have the issue.\n\t\t\tinput = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"name\", \"\" );\n\t\t\tel.appendChild( input );\n\t\t\tif ( !el.querySelectorAll( \"[name='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*name\" + whitespace + \"*=\" +\n\t\t\t\t\twhitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !el.querySelectorAll( \":checked\" ).length ) {\n\t\t\t\trbuggyQSA.push( \":checked\" );\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibling-combinator selector` fails\n\t\t\tif ( !el.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push( \".#.+[+~]\" );\n\t\t\t}\n\n\t\t\t// Support: Firefox <=3.6 - 5 only\n\t\t\t// Old Firefox doesn't throw on a badly-escaped identifier.\n\t\t\tel.querySelectorAll( \"\\\\\\f\" );\n\t\t\trbuggyQSA.push( \"[\\\\r\\\\n\\\\f]\" );\n\t\t} );\n\n\t\tassert( function( el ) {\n\t\t\tel.innerHTML = \"<a href='' disabled='disabled'></a>\" +\n\t\t\t\t\"<select disabled='disabled'><option/></select>\";\n\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tel.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( el.querySelectorAll( \"[name=d]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( el.querySelectorAll( \":enabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: IE9-11+\n\t\t\t// IE's :disabled selector does not pick up the children of disabled fieldsets\n\t\t\tdocElem.appendChild( el ).disabled = true;\n\t\t\tif ( el.querySelectorAll( \":disabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: Opera 10 - 11 only\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tel.querySelectorAll( \"*,:x\" );\n\t\t\trbuggyQSA.push( \",.*:\" );\n\t\t} );\n\t}\n\n\tif ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector ) ) ) ) {\n\n\t\tassert( function( el ) {\n\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( el, \"*\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( el, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t} );\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( \"|\" ) );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( \"|\" ) );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully self-exclusive\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t) );\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( ( b = b.parentNode ) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t// two documents; shallow comparisons work.\n\t\t// eslint-disable-next-line eqeqeq\n\t\tcompare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( a == document || a.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, a ) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( b == document || b.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, b ) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\treturn a == document ? -1 :\n\t\t\t\tb == document ? 1 :\n\t\t\t\t/* eslint-enable eqeqeq */\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[ i ] === bp[ i ] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[ i ], bp[ i ] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\tap[ i ] == preferredDoc ? -1 :\n\t\t\tbp[ i ] == preferredDoc ? 1 :\n\t\t\t/* eslint-enable eqeqeq */\n\t\t\t0;\n\t};\n\n\treturn document;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\tsetDocument( elem );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t!nonnativeSelectorCache[ expr + \" \" ] &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\n\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t// fragment in IE 9\n\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\tnonnativeSelectorCache( expr, true );\n\t\t}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( context.ownerDocument || context ) != document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( elem.ownerDocument || elem ) != document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.escape = function( sel ) {\n\treturn ( sel + \"\" ).replace( rcssescape, fcssescape );\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( ( node = elem[ i++ ] ) ) {\n\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[ 1 ] = match[ 1 ].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[ 3 ] = ( match[ 3 ] || match[ 4 ] ||\n\t\t\t\tmatch[ 5 ] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[ 2 ] === \"~=\" ) {\n\t\t\t\tmatch[ 3 ] = \" \" + match[ 3 ] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[ 1 ] = match[ 1 ].toLowerCase();\n\n\t\t\tif ( match[ 1 ].slice( 0, 3 ) === \"nth\" ) {\n\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[ 3 ] ) {\n\t\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[ 4 ] = +( match[ 4 ] ?\n\t\t\t\t\tmatch[ 5 ] + ( match[ 6 ] || 1 ) :\n\t\t\t\t\t2 * ( match[ 3 ] === \"even\" || match[ 3 ] === \"odd\" ) );\n\t\t\t\tmatch[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === \"odd\" );\n\n\t\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[ 3 ] ) {\n\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[ 6 ] && match[ 2 ];\n\n\t\t\tif ( matchExpr[ \"CHILD\" ].test( match[ 0 ] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[ 3 ] ) {\n\t\t\t\tmatch[ 2 ] = match[ 4 ] || match[ 5 ] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t( excess = tokenize( unquoted, true ) ) &&\n\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t( excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length ) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[ 0 ] = match[ 0 ].slice( 0, excess );\n\t\t\t\tmatch[ 2 ] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() {\n\t\t\t\t\treturn true;\n\t\t\t\t} :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t( pattern = new RegExp( \"(^|\" + whitespace +\n\t\t\t\t\t\")\" + className + \"(\" + whitespace + \"|$)\" ) ) && classCache(\n\t\t\t\t\t\tclassName, function( elem ) {\n\t\t\t\t\t\t\treturn pattern.test(\n\t\t\t\t\t\t\t\ttypeof elem.className === \"string\" && elem.className ||\n\t\t\t\t\t\t\t\ttypeof elem.getAttribute !== \"undefined\" &&\n\t\t\t\t\t\t\t\t\telem.getAttribute( \"class\" ) ||\n\t\t\t\t\t\t\t\t\"\"\n\t\t\t\t\t\t\t);\n\t\t\t\t} );\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\t/* eslint-disable max-len */\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t\t/* eslint-enable max-len */\n\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, _argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tvar cache, uniqueCache, outerCache, node, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType,\n\t\t\t\t\t\tdiff = false;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( ( node = node[ dir ] ) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) {\n\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\n\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\tnode = parent;\n\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\tdiff = nodeIndex && cache[ 2 ];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t\tif ( useCache ) {\n\n\t\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\t\tdiff = nodeIndex;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// xml :nth-child(...)\n\t\t\t\t\t\t\t// or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t\tif ( diff === false ) {\n\n\t\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t\tif ( ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) &&\n\t\t\t\t\t\t\t\t\t\t++diff ) {\n\n\t\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t\touterCache = node[ expando ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction( function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[ i ] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[ i ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t} ) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction( function( selector ) {\n\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction( function( seed, matches, _context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\t\t\t\t\tseed[ i ] = !( matches[ i ] = elem );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} ) :\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tinput[ 0 ] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[ 0 ] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t} ),\n\n\t\t\"has\": markFunction( function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t} ),\n\n\t\t\"contains\": markFunction( function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t} ),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test( lang || \"\" ) ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( ( elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute( \"xml:lang\" ) || elem.getAttribute( \"lang\" ) ) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( ( elem = elem.parentNode ) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t} ),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement &&\n\t\t\t\t( !document.hasFocus || document.hasFocus() ) &&\n\t\t\t\t!!( elem.type || elem.href || ~elem.tabIndex );\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": createDisabledPseudo( false ),\n\t\t\"disabled\": createDisabledPseudo( true ),\n\n\t\t\"checked\": function( elem ) {\n\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn ( nodeName === \"input\" && !!elem.checked ) ||\n\t\t\t\t( nodeName === \"option\" && !!elem.selected );\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\t// eslint-disable-next-line no-unused-expressions\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[ \"empty\" ]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( ( attr = elem.getAttribute( \"type\" ) ) == null ||\n\t\t\t\t\tattr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo( function() {\n\t\t\treturn [ 0 ];\n\t\t} ),\n\n\t\t\"last\": createPositionalPseudo( function( _matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t} ),\n\n\t\t\"eq\": createPositionalPseudo( function( _matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t} ),\n\n\t\t\"even\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"odd\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"lt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ?\n\t\t\t\targument + length :\n\t\t\t\targument > length ?\n\t\t\t\t\tlength :\n\t\t\t\t\targument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"gt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} )\n\t}\n};\n\nExpr.pseudos[ \"nth\" ] = Expr.pseudos[ \"eq\" ];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || ( match = rcomma.exec( soFar ) ) ) {\n\t\t\tif ( match ) {\n\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[ 0 ].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( ( tokens = [] ) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( ( match = rcombinators.exec( soFar ) ) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push( {\n\t\t\t\tvalue: matched,\n\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[ 0 ].replace( rtrim, \" \" )\n\t\t\t} );\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] ||\n\t\t\t\t( match = preFilters[ type ]( match ) ) ) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push( {\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t} );\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[ i ].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tskip = combinator.next,\n\t\tkey = skip || dir,\n\t\tcheckNonElements = base && key === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, uniqueCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || ( elem[ expando ] = {} );\n\n\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\tuniqueCache = outerCache[ elem.uniqueID ] ||\n\t\t\t\t\t\t\t( outerCache[ elem.uniqueID ] = {} );\n\n\t\t\t\t\t\tif ( skip && skip === elem.nodeName.toLowerCase() ) {\n\t\t\t\t\t\t\telem = elem[ dir ] || elem;\n\t\t\t\t\t\t} else if ( ( oldCache = uniqueCache[ key ] ) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn ( newCache[ 2 ] = oldCache[ 2 ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\tuniqueCache[ key ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[ i ]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[ 0 ];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[ i ], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction( function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts(\n\t\t\t\tselector || \"*\",\n\t\t\t\tcontext.nodeType ? [ context ] : context,\n\t\t\t\t[]\n\t\t\t),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( ( elem = temp[ i ] ) ) {\n\t\t\t\t\tmatcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) ) {\n\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( ( matcherIn[ i ] = elem ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, ( matcherOut = [] ), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) &&\n\t\t\t\t\t\t( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) {\n\n\t\t\t\t\t\tseed[ temp ] = !( results[ temp ] = elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t} );\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[ 0 ].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[ \" \" ],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t( checkContext = context ).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) {\n\t\t\tmatchers = [ addCombinator( elementMatcher( matchers ), matcher ) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[ j ].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\n\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\ttokens\n\t\t\t\t\t\t.slice( 0, i - 1 )\n\t\t\t\t\t\t.concat( { value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" } )\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[ \"TAG\" ]( \"*\", outermost ),\n\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\n\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\toutermostContext = context == document || context || outermost;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\n\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\tif ( !context && elem.ownerDocument != document ) {\n\t\t\t\t\t\tsetDocument( elem );\n\t\t\t\t\t\txml = !documentIsHTML;\n\t\t\t\t\t}\n\t\t\t\t\twhile ( ( matcher = elementMatchers[ j++ ] ) ) {\n\t\t\t\t\t\tif ( matcher( elem, context || document, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( ( elem = !matcher && elem ) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// `i` is now the count of elements visited above, and adding it to `matchedCount`\n\t\t\t// makes the latter nonnegative.\n\t\t\tmatchedCount += i;\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\t// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n\t\t\t// equals `i`), unless we didn't visit _any_ elements in the above loop because we have\n\t\t\t// no element matchers and no seed.\n\t\t\t// Incrementing an initially-string \"0\" `i` allows `i` to remain a string only in that\n\t\t\t// case, which will result in a \"00\" `matchedCount` that differs from `i` but is also\n\t\t\t// numerically zero.\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( ( matcher = setMatchers[ j++ ] ) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !( unmatched[ i ] || setMatched[ i ] ) ) {\n\t\t\t\t\t\t\t\tsetMatched[ i ] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[ i ] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache(\n\t\t\tselector,\n\t\t\tmatcherFromGroupMatchers( elementMatchers, setMatchers )\n\t\t);\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( ( selector = compiled.selector || selector ) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is only one selector in the list and no seed\n\t// (the latter of which guarantees us context)\n\tif ( match.length === 1 ) {\n\n\t\t// Reduce context if the leading compound selector is an ID\n\t\ttokens = match[ 0 ] = match[ 0 ].slice( 0 );\n\t\tif ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === \"ID\" &&\n\t\t\tcontext.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) {\n\n\t\t\tcontext = ( Expr.find[ \"ID\" ]( token.matches[ 0 ]\n\t\t\t\t.replace( runescape, funescape ), context ) || [] )[ 0 ];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[ \"needsContext\" ].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[ i ];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ ( type = token.type ) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( ( find = Expr.find[ type ] ) ) {\n\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( ( seed = find(\n\t\t\t\t\ttoken.matches[ 0 ].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext\n\t\t\t\t) ) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\t!context || rsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split( \"\" ).sort( sortOrder ).join( \"\" ) === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert( function( el ) {\n\n\t// Should return 1, but returns 4 (following)\n\treturn el.compareDocumentPosition( document.createElement( \"fieldset\" ) ) & 1;\n} );\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert( function( el ) {\n\tel.innerHTML = \"<a href='#'></a>\";\n\treturn el.firstChild.getAttribute( \"href\" ) === \"#\";\n} ) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert( function( el ) {\n\tel.innerHTML = \"<input/>\";\n\tel.firstChild.setAttribute( \"value\", \"\" );\n\treturn el.firstChild.getAttribute( \"value\" ) === \"\";\n} ) ) {\n\taddHandle( \"value\", function( elem, _name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert( function( el ) {\n\treturn el.getAttribute( \"disabled\" ) == null;\n} ) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\t\tnull;\n\t\t}\n\t} );\n}\n\nreturn Sizzle;\n\n} )( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\n\n// Deprecated\njQuery.expr[ \":\" ] = jQuery.expr.pseudos;\njQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\njQuery.escapeSelector = Sizzle.escape;\n\n\n\n\nvar dir = function( elem, dir, until ) {\n\tvar matched = [],\n\t\ttruncate = until !== undefined;\n\n\twhile ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {\n\t\tif ( elem.nodeType === 1 ) {\n\t\t\tif ( truncate && jQuery( elem ).is( until ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tmatched.push( elem );\n\t\t}\n\t}\n\treturn matched;\n};\n\n\nvar siblings = function( n, elem ) {\n\tvar matched = [];\n\n\tfor ( ; n; n = n.nextSibling ) {\n\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\tmatched.push( n );\n\t\t}\n\t}\n\n\treturn matched;\n};\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\n\n\nfunction nodeName( elem, name ) {\n\n  return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\n};\nvar rsingleTag = ( /^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i );\n\n\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t} );\n\t}\n\n\t// Single element\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t} );\n\t}\n\n\t// Arraylike of elements (jQuery, arguments, Array)\n\tif ( typeof qualifier !== \"string\" ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( indexOf.call( qualifier, elem ) > -1 ) !== not;\n\t\t} );\n\t}\n\n\t// Filtered directly for both simple and complex selectors\n\treturn jQuery.filter( qualifier, elements, not );\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\tif ( elems.length === 1 && elem.nodeType === 1 ) {\n\t\treturn jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];\n\t}\n\n\treturn jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\treturn elem.nodeType === 1;\n\t} ) );\n};\n\njQuery.fn.extend( {\n\tfind: function( selector ) {\n\t\tvar i, ret,\n\t\t\tlen = this.length,\n\t\t\tself = this;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter( function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} ) );\n\t\t}\n\n\t\tret = this.pushStack( [] );\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\treturn len > 1 ? jQuery.uniqueSort( ret ) : ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], false ) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], true ) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n} );\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\t// Shortcut simple #id case for speed\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/,\n\n\tinit = jQuery.fn.init = function( selector, context, root ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Method init() accepts an alternate rootjQuery\n\t\t// so migrate can support jQuery.sub (gh-2101)\n\t\troot = root || rootjQuery;\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector[ 0 ] === \"<\" &&\n\t\t\t\tselector[ selector.length - 1 ] === \">\" &&\n\t\t\t\tselector.length >= 3 ) {\n\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && ( match[ 1 ] || !context ) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[ 1 ] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[ 0 ] : context;\n\n\t\t\t\t\t// Option to run scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[ 1 ],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[ 2 ] );\n\n\t\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t\t// Inject the element directly into the jQuery object\n\t\t\t\t\t\tthis[ 0 ] = elem;\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || root ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis[ 0 ] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( isFunction( selector ) ) {\n\t\t\treturn root.ready !== undefined ?\n\t\t\t\troot.ready( selector ) :\n\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\n\t// Methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend( {\n\thas: function( target ) {\n\t\tvar targets = jQuery( target, this ),\n\t\t\tl = targets.length;\n\n\t\treturn this.filter( function() {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[ i ] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\ttargets = typeof selectors !== \"string\" && jQuery( selectors );\n\n\t\t// Positional selectors never match, since there's no _selection_ context\n\t\tif ( !rneedsContext.test( selectors ) ) {\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tfor ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {\n\n\t\t\t\t\t// Always skip document fragments\n\t\t\t\t\tif ( cur.nodeType < 11 && ( targets ?\n\t\t\t\t\t\ttargets.index( cur ) > -1 :\n\n\t\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\t\tjQuery.find.matchesSelector( cur, selectors ) ) ) {\n\n\t\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within the set\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// Index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn indexOf.call( jQuery( elem ), this[ 0 ] );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn indexOf.call( this,\n\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[ 0 ] : elem\n\t\t);\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.uniqueSort(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t}\n} );\n\nfunction sibling( cur, dir ) {\n\twhile ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}\n\treturn cur;\n}\n\njQuery.each( {\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn siblings( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn siblings( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\tif ( elem.contentDocument != null &&\n\n\t\t\t// Support: IE 11+\n\t\t\t// <object> elements with no `data` attribute has an object\n\t\t\t// `contentDocument` with a `null` prototype.\n\t\t\tgetProto( elem.contentDocument ) ) {\n\n\t\t\treturn elem.contentDocument;\n\t\t}\n\n\t\t// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only\n\t\t// Treat the template element as a regular one in browsers that\n\t\t// don't support it.\n\t\tif ( nodeName( elem, \"template\" ) ) {\n\t\t\telem = elem.content || elem;\n\t\t}\n\n\t\treturn jQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar matched = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tmatched = jQuery.filter( selector, matched );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tjQuery.uniqueSort( matched );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tmatched.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched );\n\t};\n} );\nvar rnothtmlwhite = ( /[^\\x20\\t\\r\\n\\f]+/g );\n\n\n\n// Convert String-formatted options into Object-formatted ones\nfunction createOptions( options ) {\n\tvar object = {};\n\tjQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t} );\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\tcreateOptions( options ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\n\t\t// Last fire value for non-forgettable lists\n\t\tmemory,\n\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\n\t\t// Flag to prevent firing\n\t\tlocked,\n\n\t\t// Actual callback list\n\t\tlist = [],\n\n\t\t// Queue of execution data for repeatable lists\n\t\tqueue = [],\n\n\t\t// Index of currently firing callback (modified by add/remove as needed)\n\t\tfiringIndex = -1,\n\n\t\t// Fire callbacks\n\t\tfire = function() {\n\n\t\t\t// Enforce single-firing\n\t\t\tlocked = locked || options.once;\n\n\t\t\t// Execute callbacks for all pending executions,\n\t\t\t// respecting firingIndex overrides and runtime changes\n\t\t\tfired = firing = true;\n\t\t\tfor ( ; queue.length; firingIndex = -1 ) {\n\t\t\t\tmemory = queue.shift();\n\t\t\t\twhile ( ++firingIndex < list.length ) {\n\n\t\t\t\t\t// Run callback and check for early termination\n\t\t\t\t\tif ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&\n\t\t\t\t\t\toptions.stopOnFalse ) {\n\n\t\t\t\t\t\t// Jump to end and forget the data so .add doesn't re-fire\n\t\t\t\t\t\tfiringIndex = list.length;\n\t\t\t\t\t\tmemory = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Forget the data if we're done with it\n\t\t\tif ( !options.memory ) {\n\t\t\t\tmemory = false;\n\t\t\t}\n\n\t\t\tfiring = false;\n\n\t\t\t// Clean up if we're done firing for good\n\t\t\tif ( locked ) {\n\n\t\t\t\t// Keep an empty list if we have data for future add calls\n\t\t\t\tif ( memory ) {\n\t\t\t\t\tlist = [];\n\n\t\t\t\t// Otherwise, this object is spent\n\t\t\t\t} else {\n\t\t\t\t\tlist = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t// Actual Callbacks object\n\t\tself = {\n\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\n\t\t\t\t\t// If we have memory from a past run, we should fire after adding\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfiringIndex = list.length - 1;\n\t\t\t\t\t\tqueue.push( memory );\n\t\t\t\t\t}\n\n\t\t\t\t\t( function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tif ( isFunction( arg ) ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && toType( arg ) !== \"string\" ) {\n\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t} )( arguments );\n\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\tvar index;\n\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\tlist.splice( index, 1 );\n\n\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ?\n\t\t\t\t\tjQuery.inArray( fn, list ) > -1 :\n\t\t\t\t\tlist.length > 0;\n\t\t\t},\n\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Disable .fire and .add\n\t\t\t// Abort any current/pending executions\n\t\t\t// Clear all callbacks and values\n\t\t\tdisable: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tlist = memory = \"\";\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\n\t\t\t// Disable .fire\n\t\t\t// Also disable .add unless we have memory (since it would have no effect)\n\t\t\t// Abort any pending executions\n\t\t\tlock: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tif ( !memory && !firing ) {\n\t\t\t\t\tlist = memory = \"\";\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tlocked: function() {\n\t\t\t\treturn !!locked;\n\t\t\t},\n\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( !locked ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tqueue.push( args );\n\t\t\t\t\tif ( !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\nfunction Identity( v ) {\n\treturn v;\n}\nfunction Thrower( ex ) {\n\tthrow ex;\n}\n\nfunction adoptValue( value, resolve, reject, noValue ) {\n\tvar method;\n\n\ttry {\n\n\t\t// Check for promise aspect first to privilege synchronous behavior\n\t\tif ( value && isFunction( ( method = value.promise ) ) ) {\n\t\t\tmethod.call( value ).done( resolve ).fail( reject );\n\n\t\t// Other thenables\n\t\t} else if ( value && isFunction( ( method = value.then ) ) ) {\n\t\t\tmethod.call( value, resolve, reject );\n\n\t\t// Other non-thenables\n\t\t} else {\n\n\t\t\t// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:\n\t\t\t// * false: [ value ].slice( 0 ) => resolve( value )\n\t\t\t// * true: [ value ].slice( 1 ) => resolve()\n\t\t\tresolve.apply( undefined, [ value ].slice( noValue ) );\n\t\t}\n\n\t// For Promises/A+, convert exceptions into rejections\n\t// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in\n\t// Deferred#then to conditionally suppress rejection.\n\t} catch ( value ) {\n\n\t\t// Support: Android 4.0 only\n\t\t// Strict mode functions invoked without .call/.apply get global-object context\n\t\treject.apply( undefined, [ value ] );\n\t}\n}\n\njQuery.extend( {\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\n\t\t\t\t// action, add listener, callbacks,\n\t\t\t\t// ... .then handlers, argument index, [final state]\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks( \"memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"memory\" ), 2 ],\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 0, \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 1, \"rejected\" ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\t\"catch\": function( fn ) {\n\t\t\t\t\treturn promise.then( null, fn );\n\t\t\t\t},\n\n\t\t\t\t// Keep pipe for back-compat\n\t\t\t\tpipe: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( _i, tuple ) {\n\n\t\t\t\t\t\t\t// Map tuples (progress, done, fail) to arguments (done, fail, progress)\n\t\t\t\t\t\t\tvar fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];\n\n\t\t\t\t\t\t\t// deferred.progress(function() { bind to newDefer or newDefer.notify })\n\t\t\t\t\t\t\t// deferred.done(function() { bind to newDefer or newDefer.resolve })\n\t\t\t\t\t\t\t// deferred.fail(function() { bind to newDefer or newDefer.reject })\n\t\t\t\t\t\t\tdeferred[ tuple[ 1 ] ]( function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify )\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ](\n\t\t\t\t\t\t\t\t\t\tthis,\n\t\t\t\t\t\t\t\t\t\tfn ? [ returned ] : arguments\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t} );\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\t\t\t\tthen: function( onFulfilled, onRejected, onProgress ) {\n\t\t\t\t\tvar maxDepth = 0;\n\t\t\t\t\tfunction resolve( depth, deferred, handler, special ) {\n\t\t\t\t\t\treturn function() {\n\t\t\t\t\t\t\tvar that = this,\n\t\t\t\t\t\t\t\targs = arguments,\n\t\t\t\t\t\t\t\tmightThrow = function() {\n\t\t\t\t\t\t\t\t\tvar returned, then;\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.3\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-59\n\t\t\t\t\t\t\t\t\t// Ignore double-resolution attempts\n\t\t\t\t\t\t\t\t\tif ( depth < maxDepth ) {\n\t\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\treturned = handler.apply( that, args );\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.1\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-48\n\t\t\t\t\t\t\t\t\tif ( returned === deferred.promise() ) {\n\t\t\t\t\t\t\t\t\t\tthrow new TypeError( \"Thenable self-resolution\" );\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ sections 2.3.3.1, 3.5\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-54\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-75\n\t\t\t\t\t\t\t\t\t// Retrieve `then` only once\n\t\t\t\t\t\t\t\t\tthen = returned &&\n\n\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.4\n\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-64\n\t\t\t\t\t\t\t\t\t\t// Only check objects and functions for thenability\n\t\t\t\t\t\t\t\t\t\t( typeof returned === \"object\" ||\n\t\t\t\t\t\t\t\t\t\t\ttypeof returned === \"function\" ) &&\n\t\t\t\t\t\t\t\t\t\treturned.then;\n\n\t\t\t\t\t\t\t\t\t// Handle a returned thenable\n\t\t\t\t\t\t\t\t\tif ( isFunction( then ) ) {\n\n\t\t\t\t\t\t\t\t\t\t// Special processors (notify) just wait for resolution\n\t\t\t\t\t\t\t\t\t\tif ( special ) {\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special )\n\t\t\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\t\t// Normal processors (resolve) also hook into progress\n\t\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t\t// ...and disregard older resolution values\n\t\t\t\t\t\t\t\t\t\t\tmaxDepth++;\n\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdeferred.notifyWith )\n\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Handle all other returned values\n\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\tif ( handler !== Identity ) {\n\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\targs = [ returned ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t// Process the value(s)\n\t\t\t\t\t\t\t\t\t\t// Default process is resolve\n\t\t\t\t\t\t\t\t\t\t( special || deferred.resolveWith )( that, args );\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},\n\n\t\t\t\t\t\t\t\t// Only normal processors (resolve) catch and reject exceptions\n\t\t\t\t\t\t\t\tprocess = special ?\n\t\t\t\t\t\t\t\t\tmightThrow :\n\t\t\t\t\t\t\t\t\tfunction() {\n\t\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\t\tmightThrow();\n\t\t\t\t\t\t\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t\t\t\t\t\t\tif ( jQuery.Deferred.exceptionHook ) {\n\t\t\t\t\t\t\t\t\t\t\t\tjQuery.Deferred.exceptionHook( e,\n\t\t\t\t\t\t\t\t\t\t\t\t\tprocess.stackTrace );\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.4.1\n\t\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-61\n\t\t\t\t\t\t\t\t\t\t\t// Ignore post-resolution exceptions\n\t\t\t\t\t\t\t\t\t\t\tif ( depth + 1 >= maxDepth ) {\n\n\t\t\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\t\t\tif ( handler !== Thrower ) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\t\t\targs = [ e ];\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tdeferred.rejectWith( that, args );\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t};\n\n\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.1\n\t\t\t\t\t\t\t// https://promisesaplus.com/#point-57\n\t\t\t\t\t\t\t// Re-resolve promises immediately to dodge false rejection from\n\t\t\t\t\t\t\t// subsequent errors\n\t\t\t\t\t\t\tif ( depth ) {\n\t\t\t\t\t\t\t\tprocess();\n\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t// Call an optional hook to record the stack, in case of exception\n\t\t\t\t\t\t\t\t// since it's otherwise lost when execution goes async\n\t\t\t\t\t\t\t\tif ( jQuery.Deferred.getStackHook ) {\n\t\t\t\t\t\t\t\t\tprocess.stackTrace = jQuery.Deferred.getStackHook();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\twindow.setTimeout( process );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\n\t\t\t\t\t\t// progress_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 0 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onProgress ) ?\n\t\t\t\t\t\t\t\t\tonProgress :\n\t\t\t\t\t\t\t\t\tIdentity,\n\t\t\t\t\t\t\t\tnewDefer.notifyWith\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// fulfilled_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 1 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onFulfilled ) ?\n\t\t\t\t\t\t\t\t\tonFulfilled :\n\t\t\t\t\t\t\t\t\tIdentity\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// rejected_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 2 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onRejected ) ?\n\t\t\t\t\t\t\t\t\tonRejected :\n\t\t\t\t\t\t\t\t\tThrower\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 5 ];\n\n\t\t\t// promise.progress = list.add\n\t\t\t// promise.done = list.add\n\t\t\t// promise.fail = list.add\n\t\t\tpromise[ tuple[ 1 ] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(\n\t\t\t\t\tfunction() {\n\n\t\t\t\t\t\t// state = \"resolved\" (i.e., fulfilled)\n\t\t\t\t\t\t// state = \"rejected\"\n\t\t\t\t\t\tstate = stateString;\n\t\t\t\t\t},\n\n\t\t\t\t\t// rejected_callbacks.disable\n\t\t\t\t\t// fulfilled_callbacks.disable\n\t\t\t\t\ttuples[ 3 - i ][ 2 ].disable,\n\n\t\t\t\t\t// rejected_handlers.disable\n\t\t\t\t\t// fulfilled_handlers.disable\n\t\t\t\t\ttuples[ 3 - i ][ 3 ].disable,\n\n\t\t\t\t\t// progress_callbacks.lock\n\t\t\t\t\ttuples[ 0 ][ 2 ].lock,\n\n\t\t\t\t\t// progress_handlers.lock\n\t\t\t\t\ttuples[ 0 ][ 3 ].lock\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// progress_handlers.fire\n\t\t\t// fulfilled_handlers.fire\n\t\t\t// rejected_handlers.fire\n\t\t\tlist.add( tuple[ 3 ].fire );\n\n\t\t\t// deferred.notify = function() { deferred.notifyWith(...) }\n\t\t\t// deferred.resolve = function() { deferred.resolveWith(...) }\n\t\t\t// deferred.reject = function() { deferred.rejectWith(...) }\n\t\t\tdeferred[ tuple[ 0 ] ] = function() {\n\t\t\t\tdeferred[ tuple[ 0 ] + \"With\" ]( this === deferred ? undefined : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\n\t\t\t// deferred.notifyWith = list.fireWith\n\t\t\t// deferred.resolveWith = list.fireWith\n\t\t\t// deferred.rejectWith = list.fireWith\n\t\t\tdeferred[ tuple[ 0 ] + \"With\" ] = list.fireWith;\n\t\t} );\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( singleValue ) {\n\t\tvar\n\n\t\t\t// count of uncompleted subordinates\n\t\t\tremaining = arguments.length,\n\n\t\t\t// count of unprocessed arguments\n\t\t\ti = remaining,\n\n\t\t\t// subordinate fulfillment data\n\t\t\tresolveContexts = Array( i ),\n\t\t\tresolveValues = slice.call( arguments ),\n\n\t\t\t// the master Deferred\n\t\t\tmaster = jQuery.Deferred(),\n\n\t\t\t// subordinate callback factory\n\t\t\tupdateFunc = function( i ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tresolveContexts[ i ] = this;\n\t\t\t\t\tresolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( !( --remaining ) ) {\n\t\t\t\t\t\tmaster.resolveWith( resolveContexts, resolveValues );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t};\n\n\t\t// Single- and empty arguments are adopted like Promise.resolve\n\t\tif ( remaining <= 1 ) {\n\t\t\tadoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject,\n\t\t\t\t!remaining );\n\n\t\t\t// Use .then() to unwrap secondary thenables (cf. gh-3000)\n\t\t\tif ( master.state() === \"pending\" ||\n\t\t\t\tisFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {\n\n\t\t\t\treturn master.then();\n\t\t\t}\n\t\t}\n\n\t\t// Multiple arguments are aggregated like Promise.all array elements\n\t\twhile ( i-- ) {\n\t\t\tadoptValue( resolveValues[ i ], updateFunc( i ), master.reject );\n\t\t}\n\n\t\treturn master.promise();\n\t}\n} );\n\n\n// These usually indicate a programmer mistake during development,\n// warn about them ASAP rather than swallowing them by default.\nvar rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;\n\njQuery.Deferred.exceptionHook = function( error, stack ) {\n\n\t// Support: IE 8 - 9 only\n\t// Console exists when dev tools are open, which can happen at any time\n\tif ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {\n\t\twindow.console.warn( \"jQuery.Deferred exception: \" + error.message, error.stack, stack );\n\t}\n};\n\n\n\n\njQuery.readyException = function( error ) {\n\twindow.setTimeout( function() {\n\t\tthrow error;\n\t} );\n};\n\n\n\n\n// The deferred used on DOM ready\nvar readyList = jQuery.Deferred();\n\njQuery.fn.ready = function( fn ) {\n\n\treadyList\n\t\t.then( fn )\n\n\t\t// Wrap jQuery.readyException in a function so that the lookup\n\t\t// happens at the time of error handling instead of callback\n\t\t// registration.\n\t\t.catch( function( error ) {\n\t\t\tjQuery.readyException( error );\n\t\t} );\n\n\treturn this;\n};\n\njQuery.extend( {\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\t}\n} );\n\njQuery.ready.then = readyList.then;\n\n// The ready event handler and self cleanup method\nfunction completed() {\n\tdocument.removeEventListener( \"DOMContentLoaded\", completed );\n\twindow.removeEventListener( \"load\", completed );\n\tjQuery.ready();\n}\n\n// Catch cases where $(document).ready() is called\n// after the browser event has already occurred.\n// Support: IE <=9 - 10 only\n// Older IE sometimes signals \"interactive\" too soon\nif ( document.readyState === \"complete\" ||\n\t( document.readyState !== \"loading\" && !document.documentElement.doScroll ) ) {\n\n\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\twindow.setTimeout( jQuery.ready );\n\n} else {\n\n\t// Use the handy event callback\n\tdocument.addEventListener( \"DOMContentLoaded\", completed );\n\n\t// A fallback to window.onload, that will always work\n\twindow.addEventListener( \"load\", completed );\n}\n\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlen = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( toType( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\taccess( elems, fn, i, key[ i ], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, _key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\tfn(\n\t\t\t\t\telems[ i ], key, raw ?\n\t\t\t\t\tvalue :\n\t\t\t\t\tvalue.call( elems[ i ], i, fn( elems[ i ], key ) )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( chainable ) {\n\t\treturn elems;\n\t}\n\n\t// Gets\n\tif ( bulk ) {\n\t\treturn fn.call( elems );\n\t}\n\n\treturn len ? fn( elems[ 0 ], key ) : emptyGet;\n};\n\n\n// Matches dashed string for camelizing\nvar rmsPrefix = /^-ms-/,\n\trdashAlpha = /-([a-z])/g;\n\n// Used by camelCase as callback to replace()\nfunction fcamelCase( _all, letter ) {\n\treturn letter.toUpperCase();\n}\n\n// Convert dashed to camelCase; used by the css and data modules\n// Support: IE <=9 - 11, Edge 12 - 15\n// Microsoft forgot to hump their vendor prefix (#9572)\nfunction camelCase( string ) {\n\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n}\nvar acceptData = function( owner ) {\n\n\t// Accepts only:\n\t//  - Node\n\t//    - Node.ELEMENT_NODE\n\t//    - Node.DOCUMENT_NODE\n\t//  - Object\n\t//    - Any\n\treturn owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );\n};\n\n\n\n\nfunction Data() {\n\tthis.expando = jQuery.expando + Data.uid++;\n}\n\nData.uid = 1;\n\nData.prototype = {\n\n\tcache: function( owner ) {\n\n\t\t// Check if the owner object already has a cache\n\t\tvar value = owner[ this.expando ];\n\n\t\t// If not, create one\n\t\tif ( !value ) {\n\t\t\tvalue = {};\n\n\t\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t\t// but we should not, see #8335.\n\t\t\t// Always return an empty object.\n\t\t\tif ( acceptData( owner ) ) {\n\n\t\t\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t\t\t// use plain assignment\n\t\t\t\tif ( owner.nodeType ) {\n\t\t\t\t\towner[ this.expando ] = value;\n\n\t\t\t\t// Otherwise secure it in a non-enumerable property\n\t\t\t\t// configurable must be true to allow the property to be\n\t\t\t\t// deleted when data is removed\n\t\t\t\t} else {\n\t\t\t\t\tObject.defineProperty( owner, this.expando, {\n\t\t\t\t\t\tvalue: value,\n\t\t\t\t\t\tconfigurable: true\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn value;\n\t},\n\tset: function( owner, data, value ) {\n\t\tvar prop,\n\t\t\tcache = this.cache( owner );\n\n\t\t// Handle: [ owner, key, value ] args\n\t\t// Always use camelCase key (gh-2257)\n\t\tif ( typeof data === \"string\" ) {\n\t\t\tcache[ camelCase( data ) ] = value;\n\n\t\t// Handle: [ owner, { properties } ] args\n\t\t} else {\n\n\t\t\t// Copy the properties one-by-one to the cache object\n\t\t\tfor ( prop in data ) {\n\t\t\t\tcache[ camelCase( prop ) ] = data[ prop ];\n\t\t\t}\n\t\t}\n\t\treturn cache;\n\t},\n\tget: function( owner, key ) {\n\t\treturn key === undefined ?\n\t\t\tthis.cache( owner ) :\n\n\t\t\t// Always use camelCase key (gh-2257)\n\t\t\towner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];\n\t},\n\taccess: function( owner, key, value ) {\n\n\t\t// In cases where either:\n\t\t//\n\t\t//   1. No key was specified\n\t\t//   2. A string key was specified, but no value provided\n\t\t//\n\t\t// Take the \"read\" path and allow the get method to determine\n\t\t// which value to return, respectively either:\n\t\t//\n\t\t//   1. The entire cache object\n\t\t//   2. The data stored at the key\n\t\t//\n\t\tif ( key === undefined ||\n\t\t\t\t( ( key && typeof key === \"string\" ) && value === undefined ) ) {\n\n\t\t\treturn this.get( owner, key );\n\t\t}\n\n\t\t// When the key is not a string, or both a key and value\n\t\t// are specified, set or extend (existing objects) with either:\n\t\t//\n\t\t//   1. An object of properties\n\t\t//   2. A key and value\n\t\t//\n\t\tthis.set( owner, key, value );\n\n\t\t// Since the \"set\" path can have two possible entry points\n\t\t// return the expected data based on which path was taken[*]\n\t\treturn value !== undefined ? value : key;\n\t},\n\tremove: function( owner, key ) {\n\t\tvar i,\n\t\t\tcache = owner[ this.expando ];\n\n\t\tif ( cache === undefined ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key !== undefined ) {\n\n\t\t\t// Support array or space separated string of keys\n\t\t\tif ( Array.isArray( key ) ) {\n\n\t\t\t\t// If key is an array of keys...\n\t\t\t\t// We always set camelCase keys, so remove that.\n\t\t\t\tkey = key.map( camelCase );\n\t\t\t} else {\n\t\t\t\tkey = camelCase( key );\n\n\t\t\t\t// If a key with the spaces exists, use it.\n\t\t\t\t// Otherwise, create an array by matching non-whitespace\n\t\t\t\tkey = key in cache ?\n\t\t\t\t\t[ key ] :\n\t\t\t\t\t( key.match( rnothtmlwhite ) || [] );\n\t\t\t}\n\n\t\t\ti = key.length;\n\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete cache[ key[ i ] ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if there's no more data\n\t\tif ( key === undefined || jQuery.isEmptyObject( cache ) ) {\n\n\t\t\t// Support: Chrome <=35 - 45\n\t\t\t// Webkit & Blink performance suffers when deleting properties\n\t\t\t// from DOM nodes, so set to undefined instead\n\t\t\t// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)\n\t\t\tif ( owner.nodeType ) {\n\t\t\t\towner[ this.expando ] = undefined;\n\t\t\t} else {\n\t\t\t\tdelete owner[ this.expando ];\n\t\t\t}\n\t\t}\n\t},\n\thasData: function( owner ) {\n\t\tvar cache = owner[ this.expando ];\n\t\treturn cache !== undefined && !jQuery.isEmptyObject( cache );\n\t}\n};\nvar dataPriv = new Data();\n\nvar dataUser = new Data();\n\n\n\n//\tImplementation Summary\n//\n//\t1. Enforce API surface and semantic compatibility with 1.9.x branch\n//\t2. Improve the module's maintainability by reducing the storage\n//\t\tpaths to a single mechanism.\n//\t3. Use the same single mechanism to support \"private\" and \"user\" data.\n//\t4. _Never_ expose \"private\" data to user code (TODO: Drop _data, _removeData)\n//\t5. Avoid exposing implementation details on user objects (eg. expando properties)\n//\t6. Provide a clear path for implementation upgrade to WeakMap in 2014\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /[A-Z]/g;\n\nfunction getData( data ) {\n\tif ( data === \"true\" ) {\n\t\treturn true;\n\t}\n\n\tif ( data === \"false\" ) {\n\t\treturn false;\n\t}\n\n\tif ( data === \"null\" ) {\n\t\treturn null;\n\t}\n\n\t// Only convert to a number if it doesn't change the string\n\tif ( data === +data + \"\" ) {\n\t\treturn +data;\n\t}\n\n\tif ( rbrace.test( data ) ) {\n\t\treturn JSON.parse( data );\n\t}\n\n\treturn data;\n}\n\nfunction dataAttr( elem, key, data ) {\n\tvar name;\n\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\t\tname = \"data-\" + key.replace( rmultiDash, \"-$&\" ).toLowerCase();\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = getData( data );\n\t\t\t} catch ( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tdataUser.set( elem, key, data );\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\treturn data;\n}\n\njQuery.extend( {\n\thasData: function( elem ) {\n\t\treturn dataUser.hasData( elem ) || dataPriv.hasData( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn dataUser.access( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\tdataUser.remove( elem, name );\n\t},\n\n\t// TODO: Now that all calls to _data and _removeData have been replaced\n\t// with direct calls to dataPriv methods, these can be deprecated.\n\t_data: function( elem, name, data ) {\n\t\treturn dataPriv.access( elem, name, data );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\tdataPriv.remove( elem, name );\n\t}\n} );\n\njQuery.fn.extend( {\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[ 0 ],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = dataUser.get( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !dataPriv.get( elem, \"hasDataAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE 11 only\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = camelCase( name.slice( 5 ) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tdataPriv.set( elem, \"hasDataAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tdataUser.set( this, key );\n\t\t\t} );\n\t\t}\n\n\t\treturn access( this, function( value ) {\n\t\t\tvar data;\n\n\t\t\t// The calling jQuery object (element matches) is not empty\n\t\t\t// (and therefore has an element appears at this[ 0 ]) and the\n\t\t\t// `value` parameter was not undefined. An empty jQuery object\n\t\t\t// will result in `undefined` for elem = this[ 0 ] which will\n\t\t\t// throw an exception if an attempt to read a data cache is made.\n\t\t\tif ( elem && value === undefined ) {\n\n\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t// The key will always be camelCased in Data\n\t\t\t\tdata = dataUser.get( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Attempt to \"discover\" the data in\n\t\t\t\t// HTML5 custom data-* attrs\n\t\t\t\tdata = dataAttr( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// We tried really hard, but the data doesn't exist.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Set the data...\n\t\t\tthis.each( function() {\n\n\t\t\t\t// We always store the camelCased key\n\t\t\t\tdataUser.set( this, key, value );\n\t\t\t} );\n\t\t}, null, value, arguments.length > 1, null, true );\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each( function() {\n\t\t\tdataUser.remove( this, key );\n\t\t} );\n\t}\n} );\n\n\njQuery.extend( {\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = dataPriv.get( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || Array.isArray( data ) ) {\n\t\t\t\t\tqueue = dataPriv.access( elem, type, jQuery.makeArray( data ) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// Clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// Not public - generate a queueHooks object, or return the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn dataPriv.get( elem, key ) || dataPriv.access( elem, key, {\n\t\t\tempty: jQuery.Callbacks( \"once memory\" ).add( function() {\n\t\t\t\tdataPriv.remove( elem, [ type + \"queue\", key ] );\n\t\t\t} )\n\t\t} );\n\t}\n} );\n\njQuery.fn.extend( {\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[ 0 ], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each( function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// Ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[ 0 ] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t} );\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t} );\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = dataPriv.get( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n} );\nvar pnum = ( /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/ ).source;\n\nvar rcssNum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" );\n\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar documentElement = document.documentElement;\n\n\n\n\tvar isAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem );\n\t\t},\n\t\tcomposed = { composed: true };\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only\n\t// Check attachment across shadow DOM boundaries when possible (gh-3504)\n\t// Support: iOS 10.0-10.2 only\n\t// Early iOS 10 versions support `attachShadow` but not `getRootNode`,\n\t// leading to errors. We need to check for `getRootNode`.\n\tif ( documentElement.getRootNode ) {\n\t\tisAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem ) ||\n\t\t\t\telem.getRootNode( composed ) === elem.ownerDocument;\n\t\t};\n\t}\nvar isHiddenWithinTree = function( elem, el ) {\n\n\t\t// isHiddenWithinTree might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\n\t\t// Inline style trumps all\n\t\treturn elem.style.display === \"none\" ||\n\t\t\telem.style.display === \"\" &&\n\n\t\t\t// Otherwise, check computed style\n\t\t\t// Support: Firefox <=43 - 45\n\t\t\t// Disconnected elements can have computed display: none, so first confirm that elem is\n\t\t\t// in the document.\n\t\t\tisAttached( elem ) &&\n\n\t\t\tjQuery.css( elem, \"display\" ) === \"none\";\n\t};\n\n\n\nfunction adjustCSS( elem, prop, valueParts, tween ) {\n\tvar adjusted, scale,\n\t\tmaxIterations = 20,\n\t\tcurrentValue = tween ?\n\t\t\tfunction() {\n\t\t\t\treturn tween.cur();\n\t\t\t} :\n\t\t\tfunction() {\n\t\t\t\treturn jQuery.css( elem, prop, \"\" );\n\t\t\t},\n\t\tinitial = currentValue(),\n\t\tunit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t// Starting value computation is required for potential unit mismatches\n\t\tinitialInUnit = elem.nodeType &&\n\t\t\t( jQuery.cssNumber[ prop ] || unit !== \"px\" && +initial ) &&\n\t\t\trcssNum.exec( jQuery.css( elem, prop ) );\n\n\tif ( initialInUnit && initialInUnit[ 3 ] !== unit ) {\n\n\t\t// Support: Firefox <=54\n\t\t// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)\n\t\tinitial = initial / 2;\n\n\t\t// Trust units reported by jQuery.css\n\t\tunit = unit || initialInUnit[ 3 ];\n\n\t\t// Iteratively approximate from a nonzero starting point\n\t\tinitialInUnit = +initial || 1;\n\n\t\twhile ( maxIterations-- ) {\n\n\t\t\t// Evaluate and update our best guess (doubling guesses that zero out).\n\t\t\t// Finish if the scale equals or crosses 1 (making the old*new product non-positive).\n\t\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\t\t\tif ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {\n\t\t\t\tmaxIterations = 0;\n\t\t\t}\n\t\t\tinitialInUnit = initialInUnit / scale;\n\n\t\t}\n\n\t\tinitialInUnit = initialInUnit * 2;\n\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\n\t\t// Make sure we update the tween properties later on\n\t\tvalueParts = valueParts || [];\n\t}\n\n\tif ( valueParts ) {\n\t\tinitialInUnit = +initialInUnit || +initial || 0;\n\n\t\t// Apply relative offset (+=/-=) if specified\n\t\tadjusted = valueParts[ 1 ] ?\n\t\t\tinitialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :\n\t\t\t+valueParts[ 2 ];\n\t\tif ( tween ) {\n\t\t\ttween.unit = unit;\n\t\t\ttween.start = initialInUnit;\n\t\t\ttween.end = adjusted;\n\t\t}\n\t}\n\treturn adjusted;\n}\n\n\nvar defaultDisplayMap = {};\n\nfunction getDefaultDisplay( elem ) {\n\tvar temp,\n\t\tdoc = elem.ownerDocument,\n\t\tnodeName = elem.nodeName,\n\t\tdisplay = defaultDisplayMap[ nodeName ];\n\n\tif ( display ) {\n\t\treturn display;\n\t}\n\n\ttemp = doc.body.appendChild( doc.createElement( nodeName ) );\n\tdisplay = jQuery.css( temp, \"display\" );\n\n\ttemp.parentNode.removeChild( temp );\n\n\tif ( display === \"none\" ) {\n\t\tdisplay = \"block\";\n\t}\n\tdefaultDisplayMap[ nodeName ] = display;\n\n\treturn display;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\t// Determine new display value for elements that need to change\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\n\t\t\t// Since we force visibility upon cascade-hidden elements, an immediate (and slow)\n\t\t\t// check is required in this first loop unless we have a nonempty display value (either\n\t\t\t// inline or about-to-be-restored)\n\t\t\tif ( display === \"none\" ) {\n\t\t\t\tvalues[ index ] = dataPriv.get( elem, \"display\" ) || null;\n\t\t\t\tif ( !values[ index ] ) {\n\t\t\t\t\telem.style.display = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( elem.style.display === \"\" && isHiddenWithinTree( elem ) ) {\n\t\t\t\tvalues[ index ] = getDefaultDisplay( elem );\n\t\t\t}\n\t\t} else {\n\t\t\tif ( display !== \"none\" ) {\n\t\t\t\tvalues[ index ] = \"none\";\n\n\t\t\t\t// Remember what we're overwriting\n\t\t\t\tdataPriv.set( elem, \"display\", display );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of the elements in a second loop to avoid constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\tif ( values[ index ] != null ) {\n\t\t\telements[ index ].style.display = values[ index ];\n\t\t}\n\t}\n\n\treturn elements;\n}\n\njQuery.fn.extend( {\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tif ( isHiddenWithinTree( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t} );\n\t}\n} );\nvar rcheckableType = ( /^(?:checkbox|radio)$/i );\n\nvar rtagName = ( /<([a-z][^\\/\\0>\\x20\\t\\r\\n\\f]*)/i );\n\nvar rscriptType = ( /^$|^module$|\\/(?:java|ecma)script/i );\n\n\n\n( function() {\n\tvar fragment = document.createDocumentFragment(),\n\t\tdiv = fragment.appendChild( document.createElement( \"div\" ) ),\n\t\tinput = document.createElement( \"input\" );\n\n\t// Support: Android 4.0 - 4.3 only\n\t// Check state lost if the name is set (#11217)\n\t// Support: Windows Web Apps (WWA)\n\t// `name` and `type` must use .setAttribute for WWA (#14901)\n\tinput.setAttribute( \"type\", \"radio\" );\n\tinput.setAttribute( \"checked\", \"checked\" );\n\tinput.setAttribute( \"name\", \"t\" );\n\n\tdiv.appendChild( input );\n\n\t// Support: Android <=4.1 only\n\t// Older WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE <=11 only\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// Support: IE <=9 only\n\t// IE <=9 replaces <option> tags with their contents when inserted outside of\n\t// the select element.\n\tdiv.innerHTML = \"<option></option>\";\n\tsupport.option = !!div.lastChild;\n} )();\n\n\n// We have to close these tags to support XHTML (#13200)\nvar wrapMap = {\n\n\t// XHTML parsers do not magically insert elements in the\n\t// same way that tag soup parsers do. So we cannot shorten\n\t// this by omitting <tbody> or other required elements.\n\tthead: [ 1, \"<table>\", \"</table>\" ],\n\tcol: [ 2, \"<table><colgroup>\", \"</colgroup></table>\" ],\n\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t_default: [ 0, \"\", \"\" ]\n};\n\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n// Support: IE <=9 only\nif ( !support.option ) {\n\twrapMap.optgroup = wrapMap.option = [ 1, \"<select multiple='multiple'>\", \"</select>\" ];\n}\n\n\nfunction getAll( context, tag ) {\n\n\t// Support: IE <=9 - 11 only\n\t// Use typeof to avoid zero-argument method invocation on host objects (#15151)\n\tvar ret;\n\n\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\tret = context.getElementsByTagName( tag || \"*\" );\n\n\t} else if ( typeof context.querySelectorAll !== \"undefined\" ) {\n\t\tret = context.querySelectorAll( tag || \"*\" );\n\n\t} else {\n\t\tret = [];\n\t}\n\n\tif ( tag === undefined || tag && nodeName( context, tag ) ) {\n\t\treturn jQuery.merge( [ context ], ret );\n\t}\n\n\treturn ret;\n}\n\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar i = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\tdataPriv.set(\n\t\t\telems[ i ],\n\t\t\t\"globalEval\",\n\t\t\t!refElements || dataPriv.get( refElements[ i ], \"globalEval\" )\n\t\t);\n\t}\n}\n\n\nvar rhtml = /<|&#?\\w+;/;\n\nfunction buildFragment( elems, context, scripts, selection, ignored ) {\n\tvar elem, tmp, tag, wrap, attached, j,\n\t\tfragment = context.createDocumentFragment(),\n\t\tnodes = [],\n\t\ti = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\telem = elems[ i ];\n\n\t\tif ( elem || elem === 0 ) {\n\n\t\t\t// Add nodes directly\n\t\t\tif ( toType( elem ) === \"object\" ) {\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t// Convert non-html into a text node\n\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t// Convert html into DOM nodes\n\t\t\t} else {\n\t\t\t\ttmp = tmp || fragment.appendChild( context.createElement( \"div\" ) );\n\n\t\t\t\t// Deserialize a standard representation\n\t\t\t\ttag = ( rtagName.exec( elem ) || [ \"\", \"\" ] )[ 1 ].toLowerCase();\n\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\t\t\t\ttmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];\n\n\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\tj = wrap[ 0 ];\n\t\t\t\twhile ( j-- ) {\n\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t}\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t// Remember the top-level container\n\t\t\t\ttmp = fragment.firstChild;\n\n\t\t\t\t// Ensure the created nodes are orphaned (#12392)\n\t\t\t\ttmp.textContent = \"\";\n\t\t\t}\n\t\t}\n\t}\n\n\t// Remove wrapper from fragment\n\tfragment.textContent = \"\";\n\n\ti = 0;\n\twhile ( ( elem = nodes[ i++ ] ) ) {\n\n\t\t// Skip elements already in the context collection (trac-4087)\n\t\tif ( selection && jQuery.inArray( elem, selection ) > -1 ) {\n\t\t\tif ( ignored ) {\n\t\t\t\tignored.push( elem );\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tattached = isAttached( elem );\n\n\t\t// Append to fragment\n\t\ttmp = getAll( fragment.appendChild( elem ), \"script\" );\n\n\t\t// Preserve script evaluation history\n\t\tif ( attached ) {\n\t\t\tsetGlobalEval( tmp );\n\t\t}\n\n\t\t// Capture executables\n\t\tif ( scripts ) {\n\t\t\tj = 0;\n\t\t\twhile ( ( elem = tmp[ j++ ] ) ) {\n\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\tscripts.push( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn fragment;\n}\n\n\nvar\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\n// Support: IE <=9 - 11+\n// focus() and blur() are asynchronous, except when they are no-op.\n// So expect focus to be synchronous when the element is already active,\n// and blur to be synchronous when the element is not already active.\n// (focus and blur are always synchronous in other supported browsers,\n// this just defines when we can count on it).\nfunction expectSync( elem, type ) {\n\treturn ( elem === safeActiveElement() ) === ( type === \"focus\" );\n}\n\n// Support: IE <=9 only\n// Accessing document.activeElement can throw unexpectedly\n// https://bugs.jquery.com/ticket/13393\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\nfunction on( elem, types, selector, data, fn, one ) {\n\tvar origFn, type;\n\n\t// Types can be a map of types/handlers\n\tif ( typeof types === \"object\" ) {\n\n\t\t// ( types-Object, selector, data )\n\t\tif ( typeof selector !== \"string\" ) {\n\n\t\t\t// ( types-Object, data )\n\t\t\tdata = data || selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tfor ( type in types ) {\n\t\t\ton( elem, type, selector, data, types[ type ], one );\n\t\t}\n\t\treturn elem;\n\t}\n\n\tif ( data == null && fn == null ) {\n\n\t\t// ( types, fn )\n\t\tfn = selector;\n\t\tdata = selector = undefined;\n\t} else if ( fn == null ) {\n\t\tif ( typeof selector === \"string\" ) {\n\n\t\t\t// ( types, selector, fn )\n\t\t\tfn = data;\n\t\t\tdata = undefined;\n\t\t} else {\n\n\t\t\t// ( types, data, fn )\n\t\t\tfn = data;\n\t\t\tdata = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t}\n\tif ( fn === false ) {\n\t\tfn = returnFalse;\n\t} else if ( !fn ) {\n\t\treturn elem;\n\t}\n\n\tif ( one === 1 ) {\n\t\torigFn = fn;\n\t\tfn = function( event ) {\n\n\t\t\t// Can use an empty set, since event contains the info\n\t\t\tjQuery().off( event );\n\t\t\treturn origFn.apply( this, arguments );\n\t\t};\n\n\t\t// Use same guid so caller can remove using origFn\n\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t}\n\treturn elem.each( function() {\n\t\tjQuery.event.add( this, types, fn, data, selector );\n\t} );\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\n\t\tvar handleObjIn, eventHandle, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.get( elem );\n\n\t\t// Only attach events to objects that accept data\n\t\tif ( !acceptData( elem ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Ensure that invalid selectors throw exceptions at attach time\n\t\t// Evaluate against documentElement in case elem is a non-element node (e.g., document)\n\t\tif ( selector ) {\n\t\t\tjQuery.find.matchesSelector( documentElement, selector );\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !( events = elemData.events ) ) {\n\t\t\tevents = elemData.events = Object.create( null );\n\t\t}\n\t\tif ( !( eventHandle = elemData.handle ) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" && jQuery.event.triggered !== e.type ?\n\t\t\t\t\tjQuery.event.dispatch.apply( elem, arguments ) : undefined;\n\t\t\t};\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend( {\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join( \".\" )\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !( handlers = events[ type ] ) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener if the special events handler returns false\n\t\t\t\tif ( !special.setup ||\n\t\t\t\t\tspecial.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\n\t\tvar j, origCount, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.hasData( elem ) && dataPriv.get( elem );\n\n\t\tif ( !elemData || !( events = elemData.events ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[ 2 ] &&\n\t\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector ||\n\t\t\t\t\t\tselector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown ||\n\t\t\t\t\tspecial.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove data and the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdataPriv.remove( elem, \"handle events\" );\n\t\t}\n\t},\n\n\tdispatch: function( nativeEvent ) {\n\n\t\tvar i, j, ret, matched, handleObj, handlerQueue,\n\t\t\targs = new Array( arguments.length ),\n\n\t\t\t// Make a writable jQuery.Event from the native event object\n\t\t\tevent = jQuery.event.fix( nativeEvent ),\n\n\t\t\thandlers = (\n\t\t\t\t\tdataPriv.get( this, \"events\" ) || Object.create( null )\n\t\t\t\t)[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[ 0 ] = event;\n\n\t\tfor ( i = 1; i < arguments.length; i++ ) {\n\t\t\targs[ i ] = arguments[ i ];\n\t\t}\n\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( ( handleObj = matched.handlers[ j++ ] ) &&\n\t\t\t\t!event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// If the event is namespaced, then each handler is only invoked if it is\n\t\t\t\t// specially universal or its namespaces are a superset of the event's.\n\t\t\t\tif ( !event.rnamespace || handleObj.namespace === false ||\n\t\t\t\t\tevent.rnamespace.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||\n\t\t\t\t\t\thandleObj.handler ).apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( ( event.result = ret ) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar i, handleObj, sel, matchedHandlers, matchedSelectors,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\tif ( delegateCount &&\n\n\t\t\t// Support: IE <=9\n\t\t\t// Black-hole SVG <use> instance trees (trac-13180)\n\t\t\tcur.nodeType &&\n\n\t\t\t// Support: Firefox <=42\n\t\t\t// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)\n\t\t\t// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click\n\t\t\t// Support: IE 11 only\n\t\t\t// ...but not arrow key \"clicks\" of radio inputs, which can have `button` -1 (gh-2343)\n\t\t\t!( event.type === \"click\" && event.button >= 1 ) ) {\n\n\t\t\tfor ( ; cur !== this; cur = cur.parentNode || this ) {\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && !( event.type === \"click\" && cur.disabled === true ) ) {\n\t\t\t\t\tmatchedHandlers = [];\n\t\t\t\t\tmatchedSelectors = {};\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatchedSelectors[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) > -1 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] ) {\n\t\t\t\t\t\t\tmatchedHandlers.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matchedHandlers.length ) {\n\t\t\t\t\t\thandlerQueue.push( { elem: cur, handlers: matchedHandlers } );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tcur = this;\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\taddProp: function( name, hook ) {\n\t\tObject.defineProperty( jQuery.Event.prototype, name, {\n\t\t\tenumerable: true,\n\t\t\tconfigurable: true,\n\n\t\t\tget: isFunction( hook ) ?\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\t\treturn hook( this.originalEvent );\n\t\t\t\t\t}\n\t\t\t\t} :\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\t\treturn this.originalEvent[ name ];\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\tset: function( value ) {\n\t\t\t\tObject.defineProperty( this, name, {\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tconfigurable: true,\n\t\t\t\t\twritable: true,\n\t\t\t\t\tvalue: value\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\t},\n\n\tfix: function( originalEvent ) {\n\t\treturn originalEvent[ jQuery.expando ] ?\n\t\t\toriginalEvent :\n\t\t\tnew jQuery.Event( originalEvent );\n\t},\n\n\tspecial: {\n\t\tload: {\n\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tclick: {\n\n\t\t\t// Utilize native event to ensure correct state for checkable inputs\n\t\t\tsetup: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Claim the first handler\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\t// dataPriv.set( el, \"click\", ... )\n\t\t\t\t\tleverageNative( el, \"click\", returnTrue );\n\t\t\t\t}\n\n\t\t\t\t// Return false to allow normal processing in the caller\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\ttrigger: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Force setup before triggering a click\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\tleverageNative( el, \"click\" );\n\t\t\t\t}\n\n\t\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\t\treturn true;\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, suppress native .click() on links\n\t\t\t// Also prevent it if we're currently inside a leveraged native-event stack\n\t\t\t_default: function( event ) {\n\t\t\t\tvar target = event.target;\n\t\t\t\treturn rcheckableType.test( target.type ) &&\n\t\t\t\t\ttarget.click && nodeName( target, \"input\" ) &&\n\t\t\t\t\tdataPriv.get( target, \"click\" ) ||\n\t\t\t\t\tnodeName( target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Ensure the presence of an event listener that handles manually-triggered\n// synthetic events by interrupting progress until reinvoked in response to\n// *native* events that it fires directly, ensuring that state changes have\n// already occurred before other listeners are invoked.\nfunction leverageNative( el, type, expectSync ) {\n\n\t// Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add\n\tif ( !expectSync ) {\n\t\tif ( dataPriv.get( el, type ) === undefined ) {\n\t\t\tjQuery.event.add( el, type, returnTrue );\n\t\t}\n\t\treturn;\n\t}\n\n\t// Register the controller as a special universal handler for all event namespaces\n\tdataPriv.set( el, type, false );\n\tjQuery.event.add( el, type, {\n\t\tnamespace: false,\n\t\thandler: function( event ) {\n\t\t\tvar notAsync, result,\n\t\t\t\tsaved = dataPriv.get( this, type );\n\n\t\t\tif ( ( event.isTrigger & 1 ) && this[ type ] ) {\n\n\t\t\t\t// Interrupt processing of the outer synthetic .trigger()ed event\n\t\t\t\t// Saved data should be false in such cases, but might be a leftover capture object\n\t\t\t\t// from an async native handler (gh-4350)\n\t\t\t\tif ( !saved.length ) {\n\n\t\t\t\t\t// Store arguments for use when handling the inner native event\n\t\t\t\t\t// There will always be at least one argument (an event object), so this array\n\t\t\t\t\t// will not be confused with a leftover capture object.\n\t\t\t\t\tsaved = slice.call( arguments );\n\t\t\t\t\tdataPriv.set( this, type, saved );\n\n\t\t\t\t\t// Trigger the native event and capture its result\n\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t// focus() and blur() are asynchronous\n\t\t\t\t\tnotAsync = expectSync( this, type );\n\t\t\t\t\tthis[ type ]();\n\t\t\t\t\tresult = dataPriv.get( this, type );\n\t\t\t\t\tif ( saved !== result || notAsync ) {\n\t\t\t\t\t\tdataPriv.set( this, type, false );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = {};\n\t\t\t\t\t}\n\t\t\t\t\tif ( saved !== result ) {\n\n\t\t\t\t\t\t// Cancel the outer synthetic event\n\t\t\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\treturn result.value;\n\t\t\t\t\t}\n\n\t\t\t\t// If this is an inner synthetic event for an event with a bubbling surrogate\n\t\t\t\t// (focus or blur), assume that the surrogate already propagated from triggering the\n\t\t\t\t// native event and prevent that from happening again here.\n\t\t\t\t// This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the\n\t\t\t\t// bubbling surrogate propagates *after* the non-bubbling base), but that seems\n\t\t\t\t// less bad than duplication.\n\t\t\t\t} else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {\n\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t}\n\n\t\t\t// If this is a native event triggered above, everything is now in order\n\t\t\t// Fire an inner synthetic event with the original arguments\n\t\t\t} else if ( saved.length ) {\n\n\t\t\t\t// ...and capture the result\n\t\t\t\tdataPriv.set( this, type, {\n\t\t\t\t\tvalue: jQuery.event.trigger(\n\n\t\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t\t// Extend with the prototype to reset the above stopImmediatePropagation()\n\t\t\t\t\t\tjQuery.extend( saved[ 0 ], jQuery.Event.prototype ),\n\t\t\t\t\t\tsaved.slice( 1 ),\n\t\t\t\t\t\tthis\n\t\t\t\t\t)\n\t\t\t\t} );\n\n\t\t\t\t// Abort handling of the native event\n\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t}\n\t\t}\n\t} );\n}\n\njQuery.removeEvent = function( elem, type, handle ) {\n\n\t// This \"if\" is needed for plain objects\n\tif ( elem.removeEventListener ) {\n\t\telem.removeEventListener( type, handle );\n\t}\n};\n\njQuery.Event = function( src, props ) {\n\n\t// Allow instantiation without the 'new' keyword\n\tif ( !( this instanceof jQuery.Event ) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\n\t\t\t\t// Support: Android <=2.3 only\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t\t// Create target properties\n\t\t// Support: Safari <=6 - 7 only\n\t\t// Target should not be a text node (#504, #13143)\n\t\tthis.target = ( src.target && src.target.nodeType === 3 ) ?\n\t\t\tsrc.target.parentNode :\n\t\t\tsrc.target;\n\n\t\tthis.currentTarget = src.currentTarget;\n\t\tthis.relatedTarget = src.relatedTarget;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || Date.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tconstructor: jQuery.Event,\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\tisSimulated: false,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.preventDefault();\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopPropagation();\n\t\t}\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Includes all common event props including KeyEvent and MouseEvent specific props\njQuery.each( {\n\taltKey: true,\n\tbubbles: true,\n\tcancelable: true,\n\tchangedTouches: true,\n\tctrlKey: true,\n\tdetail: true,\n\teventPhase: true,\n\tmetaKey: true,\n\tpageX: true,\n\tpageY: true,\n\tshiftKey: true,\n\tview: true,\n\t\"char\": true,\n\tcode: true,\n\tcharCode: true,\n\tkey: true,\n\tkeyCode: true,\n\tbutton: true,\n\tbuttons: true,\n\tclientX: true,\n\tclientY: true,\n\toffsetX: true,\n\toffsetY: true,\n\tpointerId: true,\n\tpointerType: true,\n\tscreenX: true,\n\tscreenY: true,\n\ttargetTouches: true,\n\ttoElement: true,\n\ttouches: true,\n\n\twhich: function( event ) {\n\t\tvar button = event.button;\n\n\t\t// Add which for key events\n\t\tif ( event.which == null && rkeyEvent.test( event.type ) ) {\n\t\t\treturn event.charCode != null ? event.charCode : event.keyCode;\n\t\t}\n\n\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\tif ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) {\n\t\t\tif ( button & 1 ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\tif ( button & 2 ) {\n\t\t\t\treturn 3;\n\t\t\t}\n\n\t\t\tif ( button & 4 ) {\n\t\t\t\treturn 2;\n\t\t\t}\n\n\t\t\treturn 0;\n\t\t}\n\n\t\treturn event.which;\n\t}\n}, jQuery.event.addProp );\n\njQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( type, delegateType ) {\n\tjQuery.event.special[ type ] = {\n\n\t\t// Utilize native event if possible so blur/focus sequence is correct\n\t\tsetup: function() {\n\n\t\t\t// Claim the first handler\n\t\t\t// dataPriv.set( this, \"focus\", ... )\n\t\t\t// dataPriv.set( this, \"blur\", ... )\n\t\t\tleverageNative( this, type, expectSync );\n\n\t\t\t// Return false to allow normal processing in the caller\n\t\t\treturn false;\n\t\t},\n\t\ttrigger: function() {\n\n\t\t\t// Force setup before trigger\n\t\t\tleverageNative( this, type );\n\n\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\treturn true;\n\t\t},\n\n\t\tdelegateType: delegateType\n\t};\n} );\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\n// so that event delegation works in jQuery.\n// Do the same for pointerenter/pointerleave and pointerover/pointerout\n//\n// Support: Safari 7 only\n// Safari sends mouseenter too often; see:\n// https://bugs.chromium.org/p/chromium/issues/detail?id=470258\n// for the description of the bug (it existed in older Chrome versions as well).\njQuery.each( {\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mouseenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n} );\n\njQuery.fn.extend( {\n\n\ton: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn );\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ?\n\t\t\t\t\thandleObj.origType + \".\" + handleObj.namespace :\n\t\t\t\t\thandleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t} );\n\t}\n} );\n\n\nvar\n\n\t// Support: IE <=10 - 11, Edge 12 - 13 only\n\t// In IE/Edge using regex groups here causes severe slowdowns.\n\t// See https://connect.microsoft.com/IE/feedback/details/1736512/\n\trnoInnerhtml = /<script|<style|<link/i,\n\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g;\n\n// Prefer a tbody over its parent table for containing new rows\nfunction manipulationTarget( elem, content ) {\n\tif ( nodeName( elem, \"table\" ) &&\n\t\tnodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ) {\n\n\t\treturn jQuery( elem ).children( \"tbody\" )[ 0 ] || elem;\n\t}\n\n\treturn elem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = ( elem.getAttribute( \"type\" ) !== null ) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tif ( ( elem.type || \"\" ).slice( 0, 5 ) === \"true/\" ) {\n\t\telem.type = elem.type.slice( 5 );\n\t} else {\n\t\telem.removeAttribute( \"type\" );\n\t}\n\n\treturn elem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\tvar i, l, type, pdataOld, udataOld, udataCur, events;\n\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\t// 1. Copy private data: events, handlers, etc.\n\tif ( dataPriv.hasData( src ) ) {\n\t\tpdataOld = dataPriv.get( src );\n\t\tevents = pdataOld.events;\n\n\t\tif ( events ) {\n\t\t\tdataPriv.remove( dest, \"handle events\" );\n\n\t\t\tfor ( type in events ) {\n\t\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// 2. Copy user data\n\tif ( dataUser.hasData( src ) ) {\n\t\tudataOld = dataUser.access( src );\n\t\tudataCur = jQuery.extend( {}, udataOld );\n\n\t\tdataUser.set( dest, udataCur );\n\t}\n}\n\n// Fix IE bugs, see support tests\nfunction fixInput( src, dest ) {\n\tvar nodeName = dest.nodeName.toLowerCase();\n\n\t// Fails to persist the checked state of a cloned checkbox or radio button.\n\tif ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\tdest.checked = src.checked;\n\n\t// Fails to return the selected option to the default selected state when cloning options\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\nfunction domManip( collection, args, callback, ignored ) {\n\n\t// Flatten any nested arrays\n\targs = flat( args );\n\n\tvar fragment, first, scripts, hasScripts, node, doc,\n\t\ti = 0,\n\t\tl = collection.length,\n\t\tiNoClone = l - 1,\n\t\tvalue = args[ 0 ],\n\t\tvalueIsFunction = isFunction( value );\n\n\t// We can't cloneNode fragments that contain checked, in WebKit\n\tif ( valueIsFunction ||\n\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\treturn collection.each( function( index ) {\n\t\t\tvar self = collection.eq( index );\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\targs[ 0 ] = value.call( this, index, self.html() );\n\t\t\t}\n\t\t\tdomManip( self, args, callback, ignored );\n\t\t} );\n\t}\n\n\tif ( l ) {\n\t\tfragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );\n\t\tfirst = fragment.firstChild;\n\n\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\tfragment = first;\n\t\t}\n\n\t\t// Require either new content or an interest in ignored elements to invoke the callback\n\t\tif ( first || ignored ) {\n\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\thasScripts = scripts.length;\n\n\t\t\t// Use the original fragment for the last item\n\t\t\t// instead of the first because it can end up\n\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tnode = fragment;\n\n\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\tif ( hasScripts ) {\n\n\t\t\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcallback.call( collection[ i ], node, i );\n\t\t\t}\n\n\t\t\tif ( hasScripts ) {\n\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t// Reenable scripts\n\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t!dataPriv.access( node, \"globalEval\" ) &&\n\t\t\t\t\t\tjQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\tif ( node.src && ( node.type || \"\" ).toLowerCase()  !== \"module\" ) {\n\n\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\tif ( jQuery._evalUrl && !node.noModule ) {\n\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src, {\n\t\t\t\t\t\t\t\t\tnonce: node.nonce || node.getAttribute( \"nonce\" )\n\t\t\t\t\t\t\t\t}, doc );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tDOMEval( node.textContent.replace( rcleanScript, \"\" ), node, doc );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn collection;\n}\n\nfunction remove( elem, selector, keepData ) {\n\tvar node,\n\t\tnodes = selector ? jQuery.filter( selector, elem ) : elem,\n\t\ti = 0;\n\n\tfor ( ; ( node = nodes[ i ] ) != null; i++ ) {\n\t\tif ( !keepData && node.nodeType === 1 ) {\n\t\t\tjQuery.cleanData( getAll( node ) );\n\t\t}\n\n\t\tif ( node.parentNode ) {\n\t\t\tif ( keepData && isAttached( node ) ) {\n\t\t\t\tsetGlobalEval( getAll( node, \"script\" ) );\n\t\t\t}\n\t\t\tnode.parentNode.removeChild( node );\n\t\t}\n\t}\n\n\treturn elem;\n}\n\njQuery.extend( {\n\thtmlPrefilter: function( html ) {\n\t\treturn html;\n\t},\n\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar i, l, srcElements, destElements,\n\t\t\tclone = elem.cloneNode( true ),\n\t\t\tinPage = isAttached( elem );\n\n\t\t// Fix IE cloning issues\n\t\tif ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&\n\t\t\t\t!jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\tfixInput( srcElements[ i ], destElements[ i ] );\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\t\tcloneCopyEvent( srcElements[ i ], destElements[ i ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tcleanData: function( elems ) {\n\t\tvar data, elem, type,\n\t\t\tspecial = jQuery.event.special,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {\n\t\t\tif ( acceptData( elem ) ) {\n\t\t\t\tif ( ( data = elem[ dataPriv.expando ] ) ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataPriv.expando ] = undefined;\n\t\t\t\t}\n\t\t\t\tif ( elem[ dataUser.expando ] ) {\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataUser.expando ] = undefined;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n} );\n\njQuery.fn.extend( {\n\tdetach: function( selector ) {\n\t\treturn remove( this, selector, true );\n\t},\n\n\tremove: function( selector ) {\n\t\treturn remove( this, selector );\n\t},\n\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().each( function() {\n\t\t\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\t\t\tthis.textContent = value;\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t} );\n\t},\n\n\tprepend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t} );\n\t},\n\n\tbefore: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t} );\n\t},\n\n\tafter: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t} );\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = this[ i ] ) != null; i++ ) {\n\t\t\tif ( elem.nodeType === 1 ) {\n\n\t\t\t\t// Prevent memory leaks\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\n\t\t\t\t// Remove any remaining nodes\n\t\t\t\telem.textContent = \"\";\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t} );\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined && elem.nodeType === 1 ) {\n\t\t\t\treturn elem.innerHTML;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t!wrapMap[ ( rtagName.exec( value ) || [ \"\", \"\" ] )[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = jQuery.htmlPrefilter( value );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\t\telem = this[ i ] || {};\n\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch ( e ) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar ignored = [];\n\n\t\t// Make the changes, replacing each non-ignored context element with the new content\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tvar parent = this.parentNode;\n\n\t\t\tif ( jQuery.inArray( this, ignored ) < 0 ) {\n\t\t\t\tjQuery.cleanData( getAll( this ) );\n\t\t\t\tif ( parent ) {\n\t\t\t\t\tparent.replaceChild( elem, this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Force callback invocation\n\t\t}, ignored );\n\t}\n} );\n\njQuery.each( {\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1,\n\t\t\ti = 0;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone( true );\n\t\t\tjQuery( insert[ i ] )[ original ]( elems );\n\n\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t// .get() because push.apply(_, arraylike) throws on ancient WebKit\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n} );\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\nvar getStyles = function( elem ) {\n\n\t\t// Support: IE <=11 only, Firefox <=30 (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tvar view = elem.ownerDocument.defaultView;\n\n\t\tif ( !view || !view.opener ) {\n\t\t\tview = window;\n\t\t}\n\n\t\treturn view.getComputedStyle( elem );\n\t};\n\nvar swap = function( elem, options, callback ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.call( elem );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar rboxStyle = new RegExp( cssExpand.join( \"|\" ), \"i\" );\n\n\n\n( function() {\n\n\t// Executing both pixelPosition & boxSizingReliable tests require only one layout\n\t// so they're executed at the same time to save the second computation.\n\tfunction computeStyleTests() {\n\n\t\t// This is a singleton, we need to execute it only once\n\t\tif ( !div ) {\n\t\t\treturn;\n\t\t}\n\n\t\tcontainer.style.cssText = \"position:absolute;left:-11111px;width:60px;\" +\n\t\t\t\"margin-top:1px;padding:0;border:0\";\n\t\tdiv.style.cssText =\n\t\t\t\"position:relative;display:block;box-sizing:border-box;overflow:scroll;\" +\n\t\t\t\"margin:auto;border:1px;padding:1px;\" +\n\t\t\t\"width:60%;top:1%\";\n\t\tdocumentElement.appendChild( container ).appendChild( div );\n\n\t\tvar divStyle = window.getComputedStyle( div );\n\t\tpixelPositionVal = divStyle.top !== \"1%\";\n\n\t\t// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44\n\t\treliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;\n\n\t\t// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3\n\t\t// Some styles come back with percentage values, even though they shouldn't\n\t\tdiv.style.right = \"60%\";\n\t\tpixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;\n\n\t\t// Support: IE 9 - 11 only\n\t\t// Detect misreporting of content dimensions for box-sizing:border-box elements\n\t\tboxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;\n\n\t\t// Support: IE 9 only\n\t\t// Detect overflow:scroll screwiness (gh-3699)\n\t\t// Support: Chrome <=64\n\t\t// Don't get tricked when zoom affects offsetWidth (gh-4029)\n\t\tdiv.style.position = \"absolute\";\n\t\tscrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12;\n\n\t\tdocumentElement.removeChild( container );\n\n\t\t// Nullify the div so it wouldn't be stored in the memory and\n\t\t// it will also be a sign that checks already performed\n\t\tdiv = null;\n\t}\n\n\tfunction roundPixelMeasures( measure ) {\n\t\treturn Math.round( parseFloat( measure ) );\n\t}\n\n\tvar pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,\n\t\treliableTrDimensionsVal, reliableMarginLeftVal,\n\t\tcontainer = document.createElement( \"div\" ),\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !div.style ) {\n\t\treturn;\n\t}\n\n\t// Support: IE <=9 - 11 only\n\t// Style of cloned element affects source element cloned (#8908)\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\tjQuery.extend( support, {\n\t\tboxSizingReliable: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\t\tpixelBoxStyles: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelBoxStylesVal;\n\t\t},\n\t\tpixelPosition: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelPositionVal;\n\t\t},\n\t\treliableMarginLeft: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn reliableMarginLeftVal;\n\t\t},\n\t\tscrollboxSize: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn scrollboxSizeVal;\n\t\t},\n\n\t\t// Support: IE 9 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Behavior in IE 9 is more subtle than in newer versions & it passes\n\t\t// some versions of this test; make sure not to make it pass there!\n\t\treliableTrDimensions: function() {\n\t\t\tvar table, tr, trChild, trStyle;\n\t\t\tif ( reliableTrDimensionsVal == null ) {\n\t\t\t\ttable = document.createElement( \"table\" );\n\t\t\t\ttr = document.createElement( \"tr\" );\n\t\t\t\ttrChild = document.createElement( \"div\" );\n\n\t\t\t\ttable.style.cssText = \"position:absolute;left:-11111px\";\n\t\t\t\ttr.style.height = \"1px\";\n\t\t\t\ttrChild.style.height = \"9px\";\n\n\t\t\t\tdocumentElement\n\t\t\t\t\t.appendChild( table )\n\t\t\t\t\t.appendChild( tr )\n\t\t\t\t\t.appendChild( trChild );\n\n\t\t\t\ttrStyle = window.getComputedStyle( tr );\n\t\t\t\treliableTrDimensionsVal = parseInt( trStyle.height ) > 3;\n\n\t\t\t\tdocumentElement.removeChild( table );\n\t\t\t}\n\t\t\treturn reliableTrDimensionsVal;\n\t\t}\n\t} );\n} )();\n\n\nfunction curCSS( elem, name, computed ) {\n\tvar width, minWidth, maxWidth, ret,\n\n\t\t// Support: Firefox 51+\n\t\t// Retrieving style before computed somehow\n\t\t// fixes an issue with getting wrong values\n\t\t// on detached elements\n\t\tstyle = elem.style;\n\n\tcomputed = computed || getStyles( elem );\n\n\t// getPropertyValue is needed for:\n\t//   .css('filter') (IE 9 only, #12537)\n\t//   .css('--customProperty) (#3144)\n\tif ( computed ) {\n\t\tret = computed.getPropertyValue( name ) || computed[ name ];\n\n\t\tif ( ret === \"\" && !isAttached( elem ) ) {\n\t\t\tret = jQuery.style( elem, name );\n\t\t}\n\n\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t// Android Browser returns percentage for some values,\n\t\t// but width seems to be reliably pixels.\n\t\t// This is against the CSSOM draft spec:\n\t\t// https://drafts.csswg.org/cssom/#resolved-values\n\t\tif ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\twidth = style.width;\n\t\t\tminWidth = style.minWidth;\n\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\tret = computed.width;\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.width = width;\n\t\t\tstyle.minWidth = minWidth;\n\t\t\tstyle.maxWidth = maxWidth;\n\t\t}\n\t}\n\n\treturn ret !== undefined ?\n\n\t\t// Support: IE <=9 - 11 only\n\t\t// IE returns zIndex value as an integer.\n\t\tret + \"\" :\n\t\tret;\n}\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tif ( conditionFn() ) {\n\n\t\t\t\t// Hook not needed (or it's not possible to use it due\n\t\t\t\t// to missing dependency), remove it.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\t\t\treturn ( this.get = hookFn ).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\nvar cssPrefixes = [ \"Webkit\", \"Moz\", \"ms\" ],\n\temptyStyle = document.createElement( \"div\" ).style,\n\tvendorProps = {};\n\n// Return a vendor-prefixed property or undefined\nfunction vendorPropName( name ) {\n\n\t// Check for vendor prefixed names\n\tvar capName = name[ 0 ].toUpperCase() + name.slice( 1 ),\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in emptyStyle ) {\n\t\t\treturn name;\n\t\t}\n\t}\n}\n\n// Return a potentially-mapped jQuery.cssProps or vendor prefixed property\nfunction finalPropName( name ) {\n\tvar final = jQuery.cssProps[ name ] || vendorProps[ name ];\n\n\tif ( final ) {\n\t\treturn final;\n\t}\n\tif ( name in emptyStyle ) {\n\t\treturn name;\n\t}\n\treturn vendorProps[ name ] = vendorPropName( name ) || name;\n}\n\n\nvar\n\n\t// Swappable if display is none or starts with table\n\t// except \"table\", \"table-cell\", or \"table-caption\"\n\t// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trcustomProp = /^--/,\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t};\n\nfunction setPositiveNumber( _elem, value, subtract ) {\n\n\t// Any relative (+/-) values have already been\n\t// normalized at this point\n\tvar matches = rcssNum.exec( value );\n\treturn matches ?\n\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {\n\tvar i = dimension === \"width\" ? 1 : 0,\n\t\textra = 0,\n\t\tdelta = 0;\n\n\t// Adjustment may not be necessary\n\tif ( box === ( isBorderBox ? \"border\" : \"content\" ) ) {\n\t\treturn 0;\n\t}\n\n\tfor ( ; i < 4; i += 2 ) {\n\n\t\t// Both box models exclude margin\n\t\tif ( box === \"margin\" ) {\n\t\t\tdelta += jQuery.css( elem, box + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\t// If we get here with a content-box, we're seeking \"padding\" or \"border\" or \"margin\"\n\t\tif ( !isBorderBox ) {\n\n\t\t\t// Add padding\n\t\t\tdelta += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// For \"border\" or \"margin\", add border\n\t\t\tif ( box !== \"padding\" ) {\n\t\t\t\tdelta += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\n\t\t\t// But still keep track of it otherwise\n\t\t\t} else {\n\t\t\t\textra += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\n\t\t// If we get here with a border-box (content + padding + border), we're seeking \"content\" or\n\t\t// \"padding\" or \"margin\"\n\t\t} else {\n\n\t\t\t// For \"content\", subtract padding\n\t\t\tif ( box === \"content\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// For \"content\" or \"padding\", subtract border\n\t\t\tif ( box !== \"margin\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Account for positive content-box scroll gutter when requested by providing computedVal\n\tif ( !isBorderBox && computedVal >= 0 ) {\n\n\t\t// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border\n\t\t// Assuming integer scroll gutter, subtract the rest and round down\n\t\tdelta += Math.max( 0, Math.ceil(\n\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\tcomputedVal -\n\t\t\tdelta -\n\t\t\textra -\n\t\t\t0.5\n\n\t\t// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter\n\t\t// Use an explicit zero to avoid NaN (gh-3964)\n\t\t) ) || 0;\n\t}\n\n\treturn delta;\n}\n\nfunction getWidthOrHeight( elem, dimension, extra ) {\n\n\t// Start with computed style\n\tvar styles = getStyles( elem ),\n\n\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).\n\t\t// Fake content-box until we know it's needed to know the true value.\n\t\tboxSizingNeeded = !support.boxSizingReliable() || extra,\n\t\tisBorderBox = boxSizingNeeded &&\n\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\tvalueIsBorderBox = isBorderBox,\n\n\t\tval = curCSS( elem, dimension, styles ),\n\t\toffsetProp = \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 );\n\n\t// Support: Firefox <=54\n\t// Return a confounding non-pixel value or feign ignorance, as appropriate.\n\tif ( rnumnonpx.test( val ) ) {\n\t\tif ( !extra ) {\n\t\t\treturn val;\n\t\t}\n\t\tval = \"auto\";\n\t}\n\n\n\t// Support: IE 9 - 11 only\n\t// Use offsetWidth/offsetHeight for when box sizing is unreliable.\n\t// In those cases, the computed value can be trusted to be border-box.\n\tif ( ( !support.boxSizingReliable() && isBorderBox ||\n\n\t\t// Support: IE 10 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Interestingly, in some cases IE 9 doesn't suffer from this issue.\n\t\t!support.reliableTrDimensions() && nodeName( elem, \"tr\" ) ||\n\n\t\t// Fall back to offsetWidth/offsetHeight when value is \"auto\"\n\t\t// This happens for inline elements with no explicit setting (gh-3571)\n\t\tval === \"auto\" ||\n\n\t\t// Support: Android <=4.1 - 4.3 only\n\t\t// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)\n\t\t!parseFloat( val ) && jQuery.css( elem, \"display\", false, styles ) === \"inline\" ) &&\n\n\t\t// Make sure the element is visible & connected\n\t\telem.getClientRects().length ) {\n\n\t\tisBorderBox = jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t\t// Where available, offsetWidth/offsetHeight approximate border box dimensions.\n\t\t// Where not available (e.g., SVG), assume unreliable box-sizing and interpret the\n\t\t// retrieved value as a content box dimension.\n\t\tvalueIsBorderBox = offsetProp in elem;\n\t\tif ( valueIsBorderBox ) {\n\t\t\tval = elem[ offsetProp ];\n\t\t}\n\t}\n\n\t// Normalize \"\" and auto\n\tval = parseFloat( val ) || 0;\n\n\t// Adjust for the element's box model\n\treturn ( val +\n\t\tboxModelAdjustment(\n\t\t\telem,\n\t\t\tdimension,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles,\n\n\t\t\t// Provide the current computed size to request scroll gutter calculation (gh-3589)\n\t\t\tval\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend( {\n\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"animationIterationCount\": true,\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"gridArea\": true,\n\t\t\"gridColumn\": true,\n\t\t\"gridColumnEnd\": true,\n\t\t\"gridColumnStart\": true,\n\t\t\"gridRow\": true,\n\t\t\"gridRowEnd\": true,\n\t\t\"gridRowStart\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name ),\n\t\t\tstyle = elem.style;\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to query the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Gets hook for the prefixed version, then unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// Convert \"+=\" or \"-=\" to relative numbers (#7345)\n\t\t\tif ( type === \"string\" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {\n\t\t\t\tvalue = adjustCSS( elem, name, ret );\n\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set (#7116)\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add the unit (except for certain CSS properties)\n\t\t\t// The isCustomProp check can be removed in jQuery 4.0 when we only auto-append\n\t\t\t// \"px\" to a few hardcoded values.\n\t\t\tif ( type === \"number\" && !isCustomProp ) {\n\t\t\t\tvalue += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? \"\" : \"px\" );\n\t\t\t}\n\n\t\t\t// background-* props affect original clone's values\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf( \"background\" ) === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !( \"set\" in hooks ) ||\n\t\t\t\t( value = hooks.set( elem, value, extra ) ) !== undefined ) {\n\n\t\t\t\tif ( isCustomProp ) {\n\t\t\t\t\tstyle.setProperty( name, value );\n\t\t\t\t} else {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else {\n\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks &&\n\t\t\t\t( ret = hooks.get( elem, false, extra ) ) !== undefined ) {\n\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar val, num, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name );\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to modify the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Try prefixed name followed by the unprefixed name\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t// Convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Make numeric if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || isFinite( num ) ? num || 0 : val;\n\t\t}\n\n\t\treturn val;\n\t}\n} );\n\njQuery.each( [ \"height\", \"width\" ], function( _i, dimension ) {\n\tjQuery.cssHooks[ dimension ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\n\t\t\t\t// Certain elements can have dimension info if we invisibly show them\n\t\t\t\t// but it must have a current display style that would benefit\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) &&\n\n\t\t\t\t\t// Support: Safari 8+\n\t\t\t\t\t// Table columns in Safari have non-zero offsetWidth & zero\n\t\t\t\t\t// getBoundingClientRect().width unless display is changed.\n\t\t\t\t\t// Support: IE <=11 only\n\t\t\t\t\t// Running getBoundingClientRect on a disconnected node\n\t\t\t\t\t// in IE throws an error.\n\t\t\t\t\t( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?\n\t\t\t\t\t\tswap( elem, cssShow, function() {\n\t\t\t\t\t\t\treturn getWidthOrHeight( elem, dimension, extra );\n\t\t\t\t\t\t} ) :\n\t\t\t\t\t\tgetWidthOrHeight( elem, dimension, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar matches,\n\t\t\t\tstyles = getStyles( elem ),\n\n\t\t\t\t// Only read styles.position if the test has a chance to fail\n\t\t\t\t// to avoid forcing a reflow.\n\t\t\t\tscrollboxSizeBuggy = !support.scrollboxSize() &&\n\t\t\t\t\tstyles.position === \"absolute\",\n\n\t\t\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)\n\t\t\t\tboxSizingNeeded = scrollboxSizeBuggy || extra,\n\t\t\t\tisBorderBox = boxSizingNeeded &&\n\t\t\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\tsubtract = extra ?\n\t\t\t\t\tboxModelAdjustment(\n\t\t\t\t\t\telem,\n\t\t\t\t\t\tdimension,\n\t\t\t\t\t\textra,\n\t\t\t\t\t\tisBorderBox,\n\t\t\t\t\t\tstyles\n\t\t\t\t\t) :\n\t\t\t\t\t0;\n\n\t\t\t// Account for unreliable border-box dimensions by comparing offset* to computed and\n\t\t\t// faking a content-box to get border and padding (gh-3699)\n\t\t\tif ( isBorderBox && scrollboxSizeBuggy ) {\n\t\t\t\tsubtract -= Math.ceil(\n\t\t\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\t\t\tparseFloat( styles[ dimension ] ) -\n\t\t\t\t\tboxModelAdjustment( elem, dimension, \"border\", false, styles ) -\n\t\t\t\t\t0.5\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Convert to pixels if value adjustment is needed\n\t\t\tif ( subtract && ( matches = rcssNum.exec( value ) ) &&\n\t\t\t\t( matches[ 3 ] || \"px\" ) !== \"px\" ) {\n\n\t\t\t\telem.style[ dimension ] = value;\n\t\t\t\tvalue = jQuery.css( elem, dimension );\n\t\t\t}\n\n\t\t\treturn setPositiveNumber( elem, value, subtract );\n\t\t}\n\t};\n} );\n\njQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn ( parseFloat( curCSS( elem, \"marginLeft\" ) ) ||\n\t\t\t\telem.getBoundingClientRect().left -\n\t\t\t\t\tswap( elem, { marginLeft: 0 }, function() {\n\t\t\t\t\t\treturn elem.getBoundingClientRect().left;\n\t\t\t\t\t} )\n\t\t\t\t) + \"px\";\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each( {\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// Assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split( \" \" ) : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( prefix !== \"margin\" ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n} );\n\njQuery.fn.extend( {\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( Array.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t}\n} );\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || jQuery.easing._default;\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\t// Use a property on the element directly when it is not a DOM element,\n\t\t\t// or when there is no matching style property that exists.\n\t\t\tif ( tween.elem.nodeType !== 1 ||\n\t\t\t\ttween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// Passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails.\n\t\t\t// Simple values such as \"10px\" are parsed to Float;\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as-is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\n\t\t\t// Use step hook for back compat.\n\t\t\t// Use cssHook if its there.\n\t\t\t// Use .style if available and use plain properties where available.\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.nodeType === 1 && (\n\t\t\t\t\tjQuery.cssHooks[ tween.prop ] ||\n\t\t\t\t\ttween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9 only\n// Panic based approach to setting things on disconnected nodes\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t},\n\t_default: \"swing\"\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, inProgress,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trrun = /queueHooks$/;\n\nfunction schedule() {\n\tif ( inProgress ) {\n\t\tif ( document.hidden === false && window.requestAnimationFrame ) {\n\t\t\twindow.requestAnimationFrame( schedule );\n\t\t} else {\n\t\t\twindow.setTimeout( schedule, jQuery.fx.interval );\n\t\t}\n\n\t\tjQuery.fx.tick();\n\t}\n}\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\twindow.setTimeout( function() {\n\t\tfxNow = undefined;\n\t} );\n\treturn ( fxNow = Date.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\ti = 0,\n\t\tattrs = { height: type };\n\n\t// If we include width, step value is 1 to do all cssExpand values,\n\t// otherwise step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {\n\n\t\t\t// We're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\tvar prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,\n\t\tisBox = \"width\" in props || \"height\" in props,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHiddenWithinTree( elem ),\n\t\tdataShow = dataPriv.get( elem, \"fxshow\" );\n\n\t// Queue-skipping animations hijack the fx hooks\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always( function() {\n\n\t\t\t// Ensure the complete handler is called before this completes\n\t\t\tanim.always( function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\t}\n\n\t// Detect show/hide animations\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.test( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// Pretend to be hidden if this is a \"show\" and\n\t\t\t\t// there is still data from a stopped show/hide\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\n\t\t\t\t// Ignore all other no-op show/hide data\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\t\t}\n\t}\n\n\t// Bail out if this is a no-op like .hide().hide()\n\tpropTween = !jQuery.isEmptyObject( props );\n\tif ( !propTween && jQuery.isEmptyObject( orig ) ) {\n\t\treturn;\n\t}\n\n\t// Restrict \"overflow\" and \"display\" styles during box animations\n\tif ( isBox && elem.nodeType === 1 ) {\n\n\t\t// Support: IE <=9 - 11, Edge 12 - 15\n\t\t// Record all 3 overflow attributes because IE does not infer the shorthand\n\t\t// from identically-valued overflowX and overflowY and Edge just mirrors\n\t\t// the overflowX value there.\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Identify a display type, preferring old show/hide data over the CSS cascade\n\t\trestoreDisplay = dataShow && dataShow.display;\n\t\tif ( restoreDisplay == null ) {\n\t\t\trestoreDisplay = dataPriv.get( elem, \"display\" );\n\t\t}\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\tif ( display === \"none\" ) {\n\t\t\tif ( restoreDisplay ) {\n\t\t\t\tdisplay = restoreDisplay;\n\t\t\t} else {\n\n\t\t\t\t// Get nonempty value(s) by temporarily forcing visibility\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t\trestoreDisplay = elem.style.display || restoreDisplay;\n\t\t\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\t\t\tshowHide( [ elem ] );\n\t\t\t}\n\t\t}\n\n\t\t// Animate inline elements as inline-block\n\t\tif ( display === \"inline\" || display === \"inline-block\" && restoreDisplay != null ) {\n\t\t\tif ( jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t\t// Restore the original display value at the end of pure show/hide animations\n\t\t\t\tif ( !propTween ) {\n\t\t\t\t\tanim.done( function() {\n\t\t\t\t\t\tstyle.display = restoreDisplay;\n\t\t\t\t\t} );\n\t\t\t\t\tif ( restoreDisplay == null ) {\n\t\t\t\t\t\tdisplay = style.display;\n\t\t\t\t\t\trestoreDisplay = display === \"none\" ? \"\" : display;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tanim.always( function() {\n\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t} );\n\t}\n\n\t// Implement show/hide animations\n\tpropTween = false;\n\tfor ( prop in orig ) {\n\n\t\t// General show/hide setup for this element animation\n\t\tif ( !propTween ) {\n\t\t\tif ( dataShow ) {\n\t\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\t\thidden = dataShow.hidden;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdataShow = dataPriv.access( elem, \"fxshow\", { display: restoreDisplay } );\n\t\t\t}\n\n\t\t\t// Store hidden/visible for toggle so `.stop().toggle()` \"reverses\"\n\t\t\tif ( toggle ) {\n\t\t\t\tdataShow.hidden = !hidden;\n\t\t\t}\n\n\t\t\t// Show elements before animating them\n\t\t\tif ( hidden ) {\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t}\n\n\t\t\t/* eslint-disable no-loop-func */\n\n\t\t\tanim.done( function() {\n\n\t\t\t/* eslint-enable no-loop-func */\n\n\t\t\t\t// The final step of a \"hide\" animation is actually hiding the element\n\t\t\t\tif ( !hidden ) {\n\t\t\t\t\tshowHide( [ elem ] );\n\t\t\t\t}\n\t\t\t\tdataPriv.remove( elem, \"fxshow\" );\n\t\t\t\tfor ( prop in orig ) {\n\t\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Per-property setup\n\t\tpropTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\t\tif ( !( prop in dataShow ) ) {\n\t\t\tdataShow[ prop ] = propTween.start;\n\t\t\tif ( hidden ) {\n\t\t\t\tpropTween.end = propTween.start;\n\t\t\t\tpropTween.start = 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( Array.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// Not quite $.extend, this won't overwrite existing keys.\n\t\t\t// Reusing 'index' because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = Animation.prefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\n\t\t\t// Don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t} ),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\n\t\t\t\t// Support: Android 2.3 only\n\t\t\t\t// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ] );\n\n\t\t\t// If there's more to do, yield\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t}\n\n\t\t\t// If this was an empty animation, synthesize a final progress notification\n\t\t\tif ( !length ) {\n\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t}\n\n\t\t\t// Resolve the animation and report its conclusion\n\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\treturn false;\n\t\t},\n\t\tanimation = deferred.promise( {\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, {\n\t\t\t\tspecialEasing: {},\n\t\t\t\teasing: jQuery.easing._default\n\t\t\t}, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\n\t\t\t\t\t// If we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// Resolve when we played the last frame; otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t} ),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length; index++ ) {\n\t\tresult = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\tif ( isFunction( result.stop ) ) {\n\t\t\t\tjQuery._queueHooks( animation.elem, animation.opts.queue ).stop =\n\t\t\t\t\tresult.stop.bind( result );\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\t// Attach callbacks from options\n\tanimation\n\t\t.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t} )\n\t);\n\n\treturn animation;\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\n\ttweeners: {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value );\n\t\t\tadjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );\n\t\t\treturn tween;\n\t\t} ]\n\t},\n\n\ttweener: function( props, callback ) {\n\t\tif ( isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.match( rnothtmlwhite );\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\tAnimation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];\n\t\t\tAnimation.tweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilters: [ defaultPrefilter ],\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tAnimation.prefilters.unshift( callback );\n\t\t} else {\n\t\t\tAnimation.prefilters.push( callback );\n\t\t}\n\t}\n} );\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tisFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !isFunction( easing ) && easing\n\t};\n\n\t// Go to the end state if fx are off\n\tif ( jQuery.fx.off ) {\n\t\topt.duration = 0;\n\n\t} else {\n\t\tif ( typeof opt.duration !== \"number\" ) {\n\t\t\tif ( opt.duration in jQuery.fx.speeds ) {\n\t\t\t\topt.duration = jQuery.fx.speeds[ opt.duration ];\n\n\t\t\t} else {\n\t\t\t\topt.duration = jQuery.fx.speeds._default;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend( {\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// Show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHiddenWithinTree ).css( \"opacity\", 0 ).show()\n\n\t\t\t// Animate to the value specified\n\t\t\t.end().animate( { opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || dataPriv.get( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = dataPriv.get( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this &&\n\t\t\t\t\t( type == null || timers[ index ].queue === type ) ) {\n\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Start the next in the queue if the last step wasn't forced.\n\t\t\t// Timers currently will call their complete callbacks, which\n\t\t\t// will dequeue but only if they were gotoEnd.\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t} );\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tvar index,\n\t\t\t\tdata = dataPriv.get( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// Enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// Empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// Look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t} );\n\t}\n} );\n\njQuery.each( [ \"toggle\", \"show\", \"hide\" ], function( _i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n} );\n\n// Generate shortcuts for custom animations\njQuery.each( {\n\tslideDown: genFx( \"show\" ),\n\tslideUp: genFx( \"hide\" ),\n\tslideToggle: genFx( \"toggle\" ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n} );\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ti = 0,\n\t\ttimers = jQuery.timers;\n\n\tfxNow = Date.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\n\t\t// Run the timer and safely remove it when done (allowing for external removal)\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tjQuery.fx.start();\n};\n\njQuery.fx.interval = 13;\njQuery.fx.start = function() {\n\tif ( inProgress ) {\n\t\treturn;\n\t}\n\n\tinProgress = true;\n\tschedule();\n};\n\njQuery.fx.stop = function() {\n\tinProgress = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = window.setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\twindow.clearTimeout( timeout );\n\t\t};\n\t} );\n};\n\n\n( function() {\n\tvar input = document.createElement( \"input\" ),\n\t\tselect = document.createElement( \"select\" ),\n\t\topt = select.appendChild( document.createElement( \"option\" ) );\n\n\tinput.type = \"checkbox\";\n\n\t// Support: Android <=4.3 only\n\t// Default value for a checkbox should be \"on\"\n\tsupport.checkOn = input.value !== \"\";\n\n\t// Support: IE <=11 only\n\t// Must access selectedIndex to make default options select\n\tsupport.optSelected = opt.selected;\n\n\t// Support: IE <=11 only\n\t// An input loses its value after becoming a radio\n\tinput = document.createElement( \"input\" );\n\tinput.value = \"t\";\n\tinput.type = \"radio\";\n\tsupport.radioValue = input.value === \"t\";\n} )();\n\n\nvar boolHook,\n\tattrHandle = jQuery.expr.attrHandle;\n\njQuery.fn.extend( {\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tattr: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set attributes on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// Attribute hooks are determined by the lowercase version\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\thooks = jQuery.attrHooks[ name.toLowerCase() ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\treturn value;\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tret = jQuery.find.attr( elem, name );\n\n\t\t// Non-existent attributes return null, we normalize to undefined\n\t\treturn ret == null ? undefined : ret;\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" &&\n\t\t\t\t\tnodeName( elem, \"input\" ) ) {\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name,\n\t\t\ti = 0,\n\n\t\t\t// Attribute names can contain non-HTML whitespace characters\n\t\t\t// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n\t\t\tattrNames = value && value.match( rnothtmlwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( ( name = attrNames[ i++ ] ) ) {\n\t\t\t\telem.removeAttribute( name );\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Hooks for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else {\n\t\t\telem.setAttribute( name, name );\n\t\t}\n\t\treturn name;\n\t}\n};\n\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( _i, name ) {\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = function( elem, name, isXML ) {\n\t\tvar ret, handle,\n\t\t\tlowercaseName = name.toLowerCase();\n\n\t\tif ( !isXML ) {\n\n\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\thandle = attrHandle[ lowercaseName ];\n\t\t\tattrHandle[ lowercaseName ] = ret;\n\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\tlowercaseName :\n\t\t\t\tnull;\n\t\t\tattrHandle[ lowercaseName ] = handle;\n\t\t}\n\t\treturn ret;\n\t};\n} );\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend( {\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tdelete this[ jQuery.propFix[ name ] || name ];\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set properties on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\treturn ( elem[ name ] = value );\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\treturn elem[ name ];\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\t// Support: IE <=9 - 11 only\n\t\t\t\t// elem.tabIndex doesn't always return the\n\t\t\t\t// correct value when it hasn't been explicitly set\n\t\t\t\t// https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\tif ( tabindex ) {\n\t\t\t\t\treturn parseInt( tabindex, 10 );\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\trfocusable.test( elem.nodeName ) ||\n\t\t\t\t\trclickable.test( elem.nodeName ) &&\n\t\t\t\t\telem.href\n\t\t\t\t) {\n\t\t\t\t\treturn 0;\n\t\t\t\t}\n\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t}\n} );\n\n// Support: IE <=11 only\n// Accessing the selectedIndex property\n// forces the browser to respect setting selected\n// on the option\n// The getter ensures a default option is selected\n// when in an optgroup\n// eslint rule \"no-unused-expressions\" is disabled for this code\n// since it considers such accessions noop\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent && parent.parentNode ) {\n\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\t\tset: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\njQuery.each( [\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n} );\n\n\n\n\n\t// Strip and collapse whitespace according to HTML spec\n\t// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace\n\tfunction stripAndCollapse( value ) {\n\t\tvar tokens = value.match( rnothtmlwhite ) || [];\n\t\treturn tokens.join( \" \" );\n\t}\n\n\nfunction getClass( elem ) {\n\treturn elem.getAttribute && elem.getAttribute( \"class\" ) || \"\";\n}\n\nfunction classesToArray( value ) {\n\tif ( Array.isArray( value ) ) {\n\t\treturn value;\n\t}\n\tif ( typeof value === \"string\" ) {\n\t\treturn value.match( rnothtmlwhite ) || [];\n\t}\n\treturn [];\n}\n\njQuery.fn.extend( {\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( !arguments.length ) {\n\t\t\treturn this.attr( \"class\", \"\" );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) > -1 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value,\n\t\t\tisValidValue = type === \"string\" || Array.isArray( value );\n\n\t\tif ( typeof stateVal === \"boolean\" && isValidValue ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).toggleClass(\n\t\t\t\t\tvalue.call( this, i, getClass( this ), stateVal ),\n\t\t\t\t\tstateVal\n\t\t\t\t);\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar className, i, self, classNames;\n\n\t\t\tif ( isValidValue ) {\n\n\t\t\t\t// Toggle individual class names\n\t\t\t\ti = 0;\n\t\t\t\tself = jQuery( this );\n\t\t\t\tclassNames = classesToArray( value );\n\n\t\t\t\twhile ( ( className = classNames[ i++ ] ) ) {\n\n\t\t\t\t\t// Check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( value === undefined || type === \"boolean\" ) {\n\t\t\t\tclassName = getClass( this );\n\t\t\t\tif ( className ) {\n\n\t\t\t\t\t// Store className if set\n\t\t\t\t\tdataPriv.set( this, \"__className__\", className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed `false`,\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tif ( this.setAttribute ) {\n\t\t\t\t\tthis.setAttribute( \"class\",\n\t\t\t\t\t\tclassName || value === false ?\n\t\t\t\t\t\t\"\" :\n\t\t\t\t\t\tdataPriv.get( this, \"__className__\" ) || \"\"\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className, elem,\n\t\t\ti = 0;\n\n\t\tclassName = \" \" + selector + \" \";\n\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\tif ( elem.nodeType === 1 &&\n\t\t\t\t( \" \" + stripAndCollapse( getClass( elem ) ) + \" \" ).indexOf( className ) > -1 ) {\n\t\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n} );\n\n\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend( {\n\tval: function( value ) {\n\t\tvar hooks, ret, valueIsFunction,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] ||\n\t\t\t\t\tjQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks &&\n\t\t\t\t\t\"get\" in hooks &&\n\t\t\t\t\t( ret = hooks.get( elem, \"value\" ) ) !== undefined\n\t\t\t\t) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\t// Handle most common string cases\n\t\t\t\tif ( typeof ret === \"string\" ) {\n\t\t\t\t\treturn ret.replace( rreturn, \"\" );\n\t\t\t\t}\n\n\t\t\t\t// Handle cases where value is null/undef or number\n\t\t\t\treturn ret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tvalueIsFunction = isFunction( value );\n\n\t\treturn this.each( function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\n\t\t\t} else if ( Array.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !( \"set\" in hooks ) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\n\t\t\t\t\t// Support: IE <=10 - 11 only\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\t// Strip and collapse whitespace\n\t\t\t\t\t// https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n\t\t\t\t\tstripAndCollapse( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option, i,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\",\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length;\n\n\t\t\t\tif ( index < 0 ) {\n\t\t\t\t\ti = max;\n\n\t\t\t\t} else {\n\t\t\t\t\ti = one ? index : 0;\n\t\t\t\t}\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t// IE8-9 doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t!option.disabled &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled ||\n\t\t\t\t\t\t\t\t!nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t/* eslint-disable no-cond-assign */\n\n\t\t\t\t\tif ( option.selected =\n\t\t\t\t\t\tjQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1\n\t\t\t\t\t) {\n\t\t\t\t\t\toptionSet = true;\n\t\t\t\t\t}\n\n\t\t\t\t\t/* eslint-enable no-cond-assign */\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\t\t\t\treturn values;\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Radios and checkboxes getter/setter\njQuery.each( [ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( Array.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\treturn elem.getAttribute( \"value\" ) === null ? \"on\" : elem.value;\n\t\t};\n\t}\n} );\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\nsupport.focusin = \"onfocusin\" in window;\n\n\nvar rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\tstopPropagationCallback = function( e ) {\n\t\te.stopPropagation();\n\t};\n\njQuery.extend( jQuery.event, {\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\n\t\tvar i, cur, tmp, bubbleType, ontype, handle, special, lastElement,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split( \".\" ) : [];\n\n\t\tcur = lastElement = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) > -1 ) {\n\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split( \".\" );\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf( \":\" ) < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.rnamespace = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === ( elem.ownerDocument || document ) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tlastElement = cur;\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = (\n\t\t\t\t\tdataPriv.get( cur, \"events\" ) || Object.create( null )\n\t\t\t\t)[ event.type ] &&\n\t\t\t\tdataPriv.get( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( ( !special._default ||\n\t\t\t\tspecial._default.apply( eventPath.pop(), data ) === false ) &&\n\t\t\t\tacceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name as the event.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.addEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\telem[ type ]();\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.removeEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\t// Piggyback on a donor event to simulate a different one\n\t// Used only for `focus(in | out)` events\n\tsimulate: function( type, elem, event ) {\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true\n\t\t\t}\n\t\t);\n\n\t\tjQuery.event.trigger( e, null, elem );\n\t}\n\n} );\n\njQuery.fn.extend( {\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t} );\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[ 0 ];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n} );\n\n\n// Support: Firefox <=44\n// Firefox doesn't have focus(in | out) events\n// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n//\n// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1\n// focus(in | out) events fire after focus & blur events,\n// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857\nif ( !support.focusin ) {\n\tjQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );\n\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\n\t\t\t\t// Handle: regular nodes (via `this.ownerDocument`), window\n\t\t\t\t// (via `this.document`) & document (via `this`).\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tdataPriv.access( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tdataPriv.remove( doc, fix );\n\n\t\t\t\t} else {\n\t\t\t\t\tdataPriv.access( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t} );\n}\nvar location = window.location;\n\nvar nonce = { guid: Date.now() };\n\nvar rquery = ( /\\?/ );\n\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\n\t// Support: IE 9 - 11 only\n\t// IE throws on parseFromString with invalid input.\n\ttry {\n\t\txml = ( new window.DOMParser() ).parseFromString( data, \"text/xml\" );\n\t} catch ( e ) {\n\t\txml = undefined;\n\t}\n\n\tif ( !xml || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( Array.isArray( obj ) ) {\n\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams(\n\t\t\t\t\tprefix + \"[\" + ( typeof v === \"object\" && v != null ? i : \"\" ) + \"]\",\n\t\t\t\t\tv,\n\t\t\t\t\ttraditional,\n\t\t\t\t\tadd\n\t\t\t\t);\n\t\t\t}\n\t\t} );\n\n\t} else if ( !traditional && toType( obj ) === \"object\" ) {\n\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, valueOrFunction ) {\n\n\t\t\t// If value is a function, invoke it and use its return value\n\t\t\tvar value = isFunction( valueOrFunction ) ?\n\t\t\t\tvalueOrFunction() :\n\t\t\t\tvalueOrFunction;\n\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" +\n\t\t\t\tencodeURIComponent( value == null ? \"\" : value );\n\t\t};\n\n\tif ( a == null ) {\n\t\treturn \"\";\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t} );\n\n\t} else {\n\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" );\n};\n\njQuery.fn.extend( {\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map( function() {\n\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t} )\n\t\t.filter( function() {\n\t\t\tvar type = this.type;\n\n\t\t\t// Use .is( \":disabled\" ) so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t} )\n\t\t.map( function( _i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\tif ( val == null ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tif ( Array.isArray( val ) ) {\n\t\t\t\treturn jQuery.map( val, function( val ) {\n\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t} ).get();\n\t}\n} );\n\n\nvar\n\tr20 = /%20/g,\n\trhash = /#.*$/,\n\trantiCache = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)$/mg,\n\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat( \"*\" ),\n\n\t// Anchor tag for parsing the document origin\n\toriginAnchor = document.createElement( \"a\" );\n\toriginAnchor.href = location.href;\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];\n\n\t\tif ( isFunction( func ) ) {\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( ( dataType = dataTypes[ i++ ] ) ) {\n\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType[ 0 ] === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" &&\n\t\t\t\t!seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t} );\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar key, deep,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\n\tvar ct, type, finalDataType, firstDataType,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"Content-Type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[ 0 ] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s.throws ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tstate: \"parsererror\",\n\t\t\t\t\t\t\t\terror: conv ? e : \"No conversion from \" + prev + \" to \" + current\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend( {\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: location.href,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( location.protocol ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /\\bxml\\b/,\n\t\t\thtml: /\\bhtml/,\n\t\t\tjson: /\\bjson\\b/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": JSON.parse,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar transport,\n\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\n\t\t\t// Response headers\n\t\t\tresponseHeadersString,\n\t\t\tresponseHeaders,\n\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// Url cleanup var\n\t\t\turlAnchor,\n\n\t\t\t// Request state (becomes false upon send and true upon completion)\n\t\t\tcompleted,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\t// Loop variable\n\t\t\ti,\n\n\t\t\t// uncached part of the url\n\t\t\tuncached,\n\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context &&\n\t\t\t\t( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\t\tjQuery.event,\n\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( completed ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[ 1 ].toLowerCase() + \" \" ] =\n\t\t\t\t\t\t\t\t\t( responseHeaders[ match[ 1 ].toLowerCase() + \" \" ] || [] )\n\t\t\t\t\t\t\t\t\t\t.concat( match[ 2 ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() + \" \" ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match.join( \", \" );\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn completed ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\tname = requestHeadersNames[ name.toLowerCase() ] =\n\t\t\t\t\t\t\trequestHeadersNames[ name.toLowerCase() ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( completed ) {\n\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Lazy-add the new callbacks in a way that preserves old ones\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR );\n\n\t\t// Add protocol if not provided (prefilters might expect it)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || location.href ) + \"\" )\n\t\t\t.replace( rprotocol, location.protocol + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = ( s.dataType || \"*\" ).toLowerCase().match( rnothtmlwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when the origin doesn't match the current origin.\n\t\tif ( s.crossDomain == null ) {\n\t\t\turlAnchor = document.createElement( \"a\" );\n\n\t\t\t// Support: IE <=8 - 11, Edge 12 - 15\n\t\t\t// IE throws exception on accessing the href property if url is malformed,\n\t\t\t// e.g. http://example.com:80x/\n\t\t\ttry {\n\t\t\t\turlAnchor.href = s.url;\n\n\t\t\t\t// Support: IE <=8 - 11 only\n\t\t\t\t// Anchor's host property isn't correctly set when s.url is relative\n\t\t\t\turlAnchor.href = urlAnchor.href;\n\t\t\t\ts.crossDomain = originAnchor.protocol + \"//\" + originAnchor.host !==\n\t\t\t\t\turlAnchor.protocol + \"//\" + urlAnchor.host;\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// If there is an error parsing the URL, assume it is crossDomain,\n\t\t\t\t// it can be rejected by the transport if it is invalid\n\t\t\t\ts.crossDomain = true;\n\t\t\t}\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( completed ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\t// Remove hash to simplify url manipulation\n\t\tcacheURL = s.url.replace( rhash, \"\" );\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// Remember the hash so we can put it back\n\t\t\tuncached = s.url.slice( cacheURL.length );\n\n\t\t\t// If data is available and should be processed, append data to url\n\t\t\tif ( s.data && ( s.processData || typeof s.data === \"string\" ) ) {\n\t\t\t\tcacheURL += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data;\n\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add or update anti-cache param if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\tcacheURL = cacheURL.replace( rantiCache, \"$1\" );\n\t\t\t\tuncached = ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + ( nonce.guid++ ) +\n\t\t\t\t\tuncached;\n\t\t\t}\n\n\t\t\t// Put hash and anti-cache on the URL that will be requested (gh-1732)\n\t\t\ts.url = cacheURL + uncached;\n\n\t\t// Change '%20' to '+' if this is encoded form body content (gh-2658)\n\t\t} else if ( s.data && s.processData &&\n\t\t\t( s.contentType || \"\" ).indexOf( \"application/x-www-form-urlencoded\" ) === 0 ) {\n\t\t\ts.data = s.data.replace( r20, \"+\" );\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[ 0 ] ] +\n\t\t\t\t\t( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend &&\n\t\t\t( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {\n\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// Aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tcompleteDeferred.add( s.complete );\n\t\tjqXHR.done( s.success );\n\t\tjqXHR.fail( s.error );\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\n\t\t\t// If request was aborted inside ajaxSend, stop there\n\t\t\tif ( completed ) {\n\t\t\t\treturn jqXHR;\n\t\t\t}\n\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = window.setTimeout( function() {\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tcompleted = false;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// Rethrow post-completion exceptions\n\t\t\t\tif ( completed ) {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\n\t\t\t\t// Propagate others as results\n\t\t\t\tdone( -1, e );\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Ignore repeat invocations\n\t\t\tif ( completed ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tcompleted = true;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\twindow.clearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Use a noop converter for missing script\n\t\t\tif ( !isSuccess && jQuery.inArray( \"script\", s.dataTypes ) > -1 ) {\n\t\t\t\ts.converters[ \"text script\" ] = function() {};\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"Last-Modified\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"etag\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Extract error from statusText and normalize for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n} );\n\njQuery.each( [ \"get\", \"post\" ], function( _i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\n\t\t// Shift arguments if data argument was omitted\n\t\tif ( isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\t// The url can be an options object (which then must have .url)\n\t\treturn jQuery.ajax( jQuery.extend( {\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t}, jQuery.isPlainObject( url ) && url ) );\n\t};\n} );\n\njQuery.ajaxPrefilter( function( s ) {\n\tvar i;\n\tfor ( i in s.headers ) {\n\t\tif ( i.toLowerCase() === \"content-type\" ) {\n\t\t\ts.contentType = s.headers[ i ] || \"\";\n\t\t}\n\t}\n} );\n\n\njQuery._evalUrl = function( url, options, doc ) {\n\treturn jQuery.ajax( {\n\t\turl: url,\n\n\t\t// Make this explicit, since user can override this through ajaxSetup (#11264)\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tcache: true,\n\t\tasync: false,\n\t\tglobal: false,\n\n\t\t// Only evaluate the response if it is successful (gh-4126)\n\t\t// dataFilter is not invoked for failure responses, so using it instead\n\t\t// of the default converter is kludgy but it works.\n\t\tconverters: {\n\t\t\t\"text script\": function() {}\n\t\t},\n\t\tdataFilter: function( response ) {\n\t\t\tjQuery.globalEval( response, options, doc );\n\t\t}\n\t} );\n};\n\n\njQuery.fn.extend( {\n\twrapAll: function( html ) {\n\t\tvar wrap;\n\n\t\tif ( this[ 0 ] ) {\n\t\t\tif ( isFunction( html ) ) {\n\t\t\t\thtml = html.call( this[ 0 ] );\n\t\t\t}\n\n\t\t\t// The elements to wrap the target around\n\t\t\twrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );\n\n\t\t\tif ( this[ 0 ].parentNode ) {\n\t\t\t\twrap.insertBefore( this[ 0 ] );\n\t\t\t}\n\n\t\t\twrap.map( function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstElementChild ) {\n\t\t\t\t\telem = elem.firstElementChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t} ).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapInner( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t} );\n\t},\n\n\twrap: function( html ) {\n\t\tvar htmlIsFunction = isFunction( html );\n\n\t\treturn this.each( function( i ) {\n\t\t\tjQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );\n\t\t} );\n\t},\n\n\tunwrap: function( selector ) {\n\t\tthis.parent( selector ).not( \"body\" ).each( function() {\n\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t} );\n\t\treturn this;\n\t}\n} );\n\n\njQuery.expr.pseudos.hidden = function( elem ) {\n\treturn !jQuery.expr.pseudos.visible( elem );\n};\njQuery.expr.pseudos.visible = function( elem ) {\n\treturn !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );\n};\n\n\n\n\njQuery.ajaxSettings.xhr = function() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch ( e ) {}\n};\n\nvar xhrSuccessStatus = {\n\n\t\t// File protocol always yields status code 0, assume 200\n\t\t0: 200,\n\n\t\t// Support: IE <=9 only\n\t\t// #1450: sometimes IE returns 1223 when it should be 204\n\t\t1223: 204\n\t},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nsupport.ajax = xhrSupported = !!xhrSupported;\n\njQuery.ajaxTransport( function( options ) {\n\tvar callback, errorCallback;\n\n\t// Cross domain only allowed if supported through XMLHttpRequest\n\tif ( support.cors || xhrSupported && !options.crossDomain ) {\n\t\treturn {\n\t\t\tsend: function( headers, complete ) {\n\t\t\t\tvar i,\n\t\t\t\t\txhr = options.xhr();\n\n\t\t\t\txhr.open(\n\t\t\t\t\toptions.type,\n\t\t\t\t\toptions.url,\n\t\t\t\t\toptions.async,\n\t\t\t\t\toptions.username,\n\t\t\t\t\toptions.password\n\t\t\t\t);\n\n\t\t\t\t// Apply custom fields if provided\n\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Override mime type if needed\n\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t}\n\n\t\t\t\t// X-Requested-With header\n\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\tif ( !options.crossDomain && !headers[ \"X-Requested-With\" ] ) {\n\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t}\n\n\t\t\t\t// Set headers\n\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] );\n\t\t\t\t}\n\n\t\t\t\t// Callback\n\t\t\t\tcallback = function( type ) {\n\t\t\t\t\treturn function() {\n\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\tcallback = errorCallback = xhr.onload =\n\t\t\t\t\t\t\t\txhr.onerror = xhr.onabort = xhr.ontimeout =\n\t\t\t\t\t\t\t\t\txhr.onreadystatechange = null;\n\n\t\t\t\t\t\t\tif ( type === \"abort\" ) {\n\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t} else if ( type === \"error\" ) {\n\n\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t// On a manual native abort, IE9 throws\n\t\t\t\t\t\t\t\t// errors on any property access that is not readyState\n\t\t\t\t\t\t\t\tif ( typeof xhr.status !== \"number\" ) {\n\t\t\t\t\t\t\t\t\tcomplete( 0, \"error\" );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcomplete(\n\n\t\t\t\t\t\t\t\t\t\t// File: protocol always yields status 0; see #8605, #14207\n\t\t\t\t\t\t\t\t\t\txhr.status,\n\t\t\t\t\t\t\t\t\t\txhr.statusText\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tcomplete(\n\t\t\t\t\t\t\t\t\txhrSuccessStatus[ xhr.status ] || xhr.status,\n\t\t\t\t\t\t\t\t\txhr.statusText,\n\n\t\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t\t// IE9 has no XHR2 but throws on binary (trac-11426)\n\t\t\t\t\t\t\t\t\t// For XHR2 non-text, let the caller handle it (gh-2498)\n\t\t\t\t\t\t\t\t\t( xhr.responseType || \"text\" ) !== \"text\"  ||\n\t\t\t\t\t\t\t\t\ttypeof xhr.responseText !== \"string\" ?\n\t\t\t\t\t\t\t\t\t\t{ binary: xhr.response } :\n\t\t\t\t\t\t\t\t\t\t{ text: xhr.responseText },\n\t\t\t\t\t\t\t\t\txhr.getAllResponseHeaders()\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t};\n\n\t\t\t\t// Listen to events\n\t\t\t\txhr.onload = callback();\n\t\t\t\terrorCallback = xhr.onerror = xhr.ontimeout = callback( \"error\" );\n\n\t\t\t\t// Support: IE 9 only\n\t\t\t\t// Use onreadystatechange to replace onabort\n\t\t\t\t// to handle uncaught aborts\n\t\t\t\tif ( xhr.onabort !== undefined ) {\n\t\t\t\t\txhr.onabort = errorCallback;\n\t\t\t\t} else {\n\t\t\t\t\txhr.onreadystatechange = function() {\n\n\t\t\t\t\t\t// Check readyState before timeout as it changes\n\t\t\t\t\t\tif ( xhr.readyState === 4 ) {\n\n\t\t\t\t\t\t\t// Allow onerror to be called first,\n\t\t\t\t\t\t\t// but that will not handle a native abort\n\t\t\t\t\t\t\t// Also, save errorCallback to a variable\n\t\t\t\t\t\t\t// as xhr.onerror cannot be accessed\n\t\t\t\t\t\t\twindow.setTimeout( function() {\n\t\t\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\t\t\terrorCallback();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\t// Create the abort callback\n\t\t\t\tcallback = callback( \"abort\" );\n\n\t\t\t\ttry {\n\n\t\t\t\t\t// Do send the request (this may raise an exception)\n\t\t\t\t\txhr.send( options.hasContent && options.data || null );\n\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t// #14683: Only rethrow if this hasn't been notified as an error yet\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tthrow e;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\n// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)\njQuery.ajaxPrefilter( function( s ) {\n\tif ( s.crossDomain ) {\n\t\ts.contents.script = false;\n\t}\n} );\n\n// Install script dataType\njQuery.ajaxSetup( {\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, \" +\n\t\t\t\"application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /\\b(?:java|ecma)script\\b/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n} );\n\n// Handle cache's special case and crossDomain\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t}\n} );\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function( s ) {\n\n\t// This transport only deals with cross domain or forced-by-attrs requests\n\tif ( s.crossDomain || s.scriptAttrs ) {\n\t\tvar script, callback;\n\t\treturn {\n\t\t\tsend: function( _, complete ) {\n\t\t\t\tscript = jQuery( \"<script>\" )\n\t\t\t\t\t.attr( s.scriptAttrs || {} )\n\t\t\t\t\t.prop( { charset: s.scriptCharset, src: s.url } )\n\t\t\t\t\t.on( \"load error\", callback = function( evt ) {\n\t\t\t\t\t\tscript.remove();\n\t\t\t\t\t\tcallback = null;\n\t\t\t\t\t\tif ( evt ) {\n\t\t\t\t\t\t\tcomplete( evt.type === \"error\" ? 404 : 200, evt.type );\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\tdocument.head.appendChild( script[ 0 ] );\n\t\t\t},\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup( {\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce.guid++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n} );\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" &&\n\t\t\t\t( s.contentType || \"\" )\n\t\t\t\t\t.indexOf( \"application/x-www-form-urlencoded\" ) === 0 &&\n\t\t\t\trjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[ \"script json\" ] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// Force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always( function() {\n\n\t\t\t// If previous value didn't exist - remove it\n\t\t\tif ( overwritten === undefined ) {\n\t\t\t\tjQuery( window ).removeProp( callbackName );\n\n\t\t\t// Otherwise restore preexisting value\n\t\t\t} else {\n\t\t\t\twindow[ callbackName ] = overwritten;\n\t\t\t}\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\n\t\t\t\t// Make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// Save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t} );\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n} );\n\n\n\n\n// Support: Safari 8 only\n// In Safari 8 documents created via document.implementation.createHTMLDocument\n// collapse sibling forms: the second one becomes a child of the first one.\n// Because of that, this security measure has to be disabled in Safari 8.\n// https://bugs.webkit.org/show_bug.cgi?id=137337\nsupport.createHTMLDocument = ( function() {\n\tvar body = document.implementation.createHTMLDocument( \"\" ).body;\n\tbody.innerHTML = \"<form></form><form></form>\";\n\treturn body.childNodes.length === 2;\n} )();\n\n\n// Argument \"data\" should be string of html\n// context (optional): If specified, the fragment will be created in this context,\n// defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( typeof data !== \"string\" ) {\n\t\treturn [];\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\n\tvar base, parsed, scripts;\n\n\tif ( !context ) {\n\n\t\t// Stop scripts or inline event handlers from being executed immediately\n\t\t// by using document.implementation\n\t\tif ( support.createHTMLDocument ) {\n\t\t\tcontext = document.implementation.createHTMLDocument( \"\" );\n\n\t\t\t// Set the base href for the created document\n\t\t\t// so any parsed elements with URLs\n\t\t\t// are based on the document's URL (gh-2965)\n\t\t\tbase = context.createElement( \"base\" );\n\t\t\tbase.href = document.location.href;\n\t\t\tcontext.head.appendChild( base );\n\t\t} else {\n\t\t\tcontext = document;\n\t\t}\n\t}\n\n\tparsed = rsingleTag.exec( data );\n\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[ 1 ] ) ];\n\t}\n\n\tparsed = buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tvar selector, type, response,\n\t\tself = this,\n\t\toff = url.indexOf( \" \" );\n\n\tif ( off > -1 ) {\n\t\tselector = stripAndCollapse( url.slice( off ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax( {\n\t\t\turl: url,\n\n\t\t\t// If \"type\" variable is undefined, then \"GET\" method will be used.\n\t\t\t// Make value of this field explicit since\n\t\t\t// user can override it through ajaxSetup method\n\t\t\ttype: type || \"GET\",\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t} ).done( function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery( \"<div>\" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t// If the request succeeds, this function gets \"data\", \"status\", \"jqXHR\"\n\t\t// but they are ignored because response was set above.\n\t\t// If it fails, this function gets \"jqXHR\", \"status\", \"error\"\n\t\t} ).always( callback && function( jqXHR, status ) {\n\t\t\tself.each( function() {\n\t\t\t\tcallback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t\t} );\n\t\t} );\n\t}\n\n\treturn this;\n};\n\n\n\n\njQuery.expr.pseudos.animated = function( elem ) {\n\treturn jQuery.grep( jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t} ).length;\n};\n\n\n\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// Set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\t( curCSSTop + curCSSLeft ).indexOf( \"auto\" ) > -1;\n\n\t\t// Need to be able to calculate position if either\n\t\t// top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( isFunction( options ) ) {\n\n\t\t\t// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)\n\t\t\toptions = options.call( elem, i, jQuery.extend( {}, curOffset ) );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\n\t\t} else {\n\t\t\tif ( typeof props.top === \"number\" ) {\n\t\t\t\tprops.top += \"px\";\n\t\t\t}\n\t\t\tif ( typeof props.left === \"number\" ) {\n\t\t\t\tprops.left += \"px\";\n\t\t\t}\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend( {\n\n\t// offset() relates an element's border box to the document origin\n\toffset: function( options ) {\n\n\t\t// Preserve chaining for setter\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each( function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t} );\n\t\t}\n\n\t\tvar rect, win,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !elem ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Return zeros for disconnected and hidden (display: none) elements (gh-2310)\n\t\t// Support: IE <=11 only\n\t\t// Running getBoundingClientRect on a\n\t\t// disconnected node in IE throws an error\n\t\tif ( !elem.getClientRects().length ) {\n\t\t\treturn { top: 0, left: 0 };\n\t\t}\n\n\t\t// Get document-relative position by adding viewport scroll to viewport-relative gBCR\n\t\trect = elem.getBoundingClientRect();\n\t\twin = elem.ownerDocument.defaultView;\n\t\treturn {\n\t\t\ttop: rect.top + win.pageYOffset,\n\t\t\tleft: rect.left + win.pageXOffset\n\t\t};\n\t},\n\n\t// position() relates an element's margin box to its offset parent's padding box\n\t// This corresponds to the behavior of CSS absolute positioning\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset, doc,\n\t\t\telem = this[ 0 ],\n\t\t\tparentOffset = { top: 0, left: 0 };\n\n\t\t// position:fixed elements are offset from the viewport, which itself always has zero offset\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\n\t\t\t// Assume position:fixed implies availability of getBoundingClientRect\n\t\t\toffset = elem.getBoundingClientRect();\n\n\t\t} else {\n\t\t\toffset = this.offset();\n\n\t\t\t// Account for the *real* offset parent, which can be the document or its root element\n\t\t\t// when a statically positioned element is identified\n\t\t\tdoc = elem.ownerDocument;\n\t\t\toffsetParent = elem.offsetParent || doc.documentElement;\n\t\t\twhile ( offsetParent &&\n\t\t\t\t( offsetParent === doc.body || offsetParent === doc.documentElement ) &&\n\t\t\t\tjQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\n\t\t\t\toffsetParent = offsetParent.parentNode;\n\t\t\t}\n\t\t\tif ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {\n\n\t\t\t\t// Incorporate borders into its offset, since they are outside its content origin\n\t\t\t\tparentOffset = jQuery( offsetParent ).offset();\n\t\t\t\tparentOffset.top += jQuery.css( offsetParent, \"borderTopWidth\", true );\n\t\t\t\tparentOffset.left += jQuery.css( offsetParent, \"borderLeftWidth\", true );\n\t\t\t}\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\treturn {\n\t\t\ttop: offset.top - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true )\n\t\t};\n\t},\n\n\t// This method will return documentElement in the following cases:\n\t// 1) For the element inside the iframe without offsetParent, this method will return\n\t//    documentElement of the parent window\n\t// 2) For the hidden or detached element\n\t// 3) For body or html element, i.e. in case of the html node - it will return itself\n\t//\n\t// but those exceptions were never presented as a real life use-cases\n\t// and might be considered as more preferable results.\n\t//\n\t// This logic, however, is not guaranteed and can change at any point in the future\n\toffsetParent: function() {\n\t\treturn this.map( function() {\n\t\t\tvar offsetParent = this.offsetParent;\n\n\t\t\twhile ( offsetParent && jQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\n\t\t\treturn offsetParent || documentElement;\n\t\t} );\n\t}\n} );\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = \"pageYOffset\" === prop;\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\n\t\t\t// Coalesce documents and windows\n\t\t\tvar win;\n\t\t\tif ( isWindow( elem ) ) {\n\t\t\t\twin = elem;\n\t\t\t} else if ( elem.nodeType === 9 ) {\n\t\t\t\twin = elem.defaultView;\n\t\t\t}\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? win[ prop ] : elem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : win.pageXOffset,\n\t\t\t\t\ttop ? val : win.pageYOffset\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length );\n\t};\n} );\n\n// Support: Safari <=7 - 9.1, Chrome <=37 - 49\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347\n// getComputedStyle returns percent when specified for top/left/bottom/right;\n// rather than make the css module depend on the offset module, just check for it here\njQuery.each( [ \"top\", \"left\" ], function( _i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\n\t\t\t\t// If curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n} );\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name },\n\t\tfunction( defaultExtra, funcName ) {\n\n\t\t// Margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( isWindow( elem ) ) {\n\n\t\t\t\t\t// $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)\n\t\t\t\t\treturn funcName.indexOf( \"outer\" ) === 0 ?\n\t\t\t\t\t\telem[ \"inner\" + name ] :\n\t\t\t\t\t\telem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],\n\t\t\t\t\t// whichever is greatest\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable );\n\t\t};\n\t} );\n} );\n\n\njQuery.each( [\n\t\"ajaxStart\",\n\t\"ajaxStop\",\n\t\"ajaxComplete\",\n\t\"ajaxError\",\n\t\"ajaxSuccess\",\n\t\"ajaxSend\"\n], function( _i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n} );\n\n\n\n\njQuery.fn.extend( {\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ?\n\t\t\tthis.off( selector, \"**\" ) :\n\t\t\tthis.off( types, selector || \"**\", fn );\n\t},\n\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t}\n} );\n\njQuery.each( ( \"blur focus focusin focusout resize scroll click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup contextmenu\" ).split( \" \" ),\n\tfunction( _i, name ) {\n\n\t\t// Handle event binding\n\t\tjQuery.fn[ name ] = function( data, fn ) {\n\t\t\treturn arguments.length > 0 ?\n\t\t\t\tthis.on( name, null, data, fn ) :\n\t\t\t\tthis.trigger( name );\n\t\t};\n\t} );\n\n\n\n\n// Support: Android <=4.0 only\n// Make sure we trim BOM and NBSP\nvar rtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g;\n\n// Bind a function to a context, optionally partially applying any\n// arguments.\n// jQuery.proxy is deprecated to promote standards (specifically Function#bind)\n// However, it is not slated for removal any time soon\njQuery.proxy = function( fn, context ) {\n\tvar tmp, args, proxy;\n\n\tif ( typeof context === \"string\" ) {\n\t\ttmp = fn[ context ];\n\t\tcontext = fn;\n\t\tfn = tmp;\n\t}\n\n\t// Quick check to determine if target is callable, in the spec\n\t// this throws a TypeError, but we will just return undefined.\n\tif ( !isFunction( fn ) ) {\n\t\treturn undefined;\n\t}\n\n\t// Simulated bind\n\targs = slice.call( arguments, 2 );\n\tproxy = function() {\n\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t};\n\n\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\treturn proxy;\n};\n\njQuery.holdReady = function( hold ) {\n\tif ( hold ) {\n\t\tjQuery.readyWait++;\n\t} else {\n\t\tjQuery.ready( true );\n\t}\n};\njQuery.isArray = Array.isArray;\njQuery.parseJSON = JSON.parse;\njQuery.nodeName = nodeName;\njQuery.isFunction = isFunction;\njQuery.isWindow = isWindow;\njQuery.camelCase = camelCase;\njQuery.type = toType;\n\njQuery.now = Date.now;\n\njQuery.isNumeric = function( obj ) {\n\n\t// As of jQuery 3.0, isNumeric is limited to\n\t// strings and numbers (primitives or objects)\n\t// that can be coerced to finite numbers (gh-2662)\n\tvar type = jQuery.type( obj );\n\treturn ( type === \"number\" || type === \"string\" ) &&\n\n\t\t// parseFloat NaNs numeric-cast false positives (\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t!isNaN( obj - parseFloat( obj ) );\n};\n\njQuery.trim = function( text ) {\n\treturn text == null ?\n\t\t\"\" :\n\t\t( text + \"\" ).replace( rtrim, \"\" );\n};\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t} );\n}\n\n\n\n\nvar\n\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in AMD\n// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === \"undefined\" ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n} );\n"
  },
  {
    "path": "images/03_mean/lib/plotly-binding-4.10.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    // Plotly.relayout() mutates the plot input object, so make sure to \n    // keep a reference to the user-supplied width/height *before*\n    // we call Plotly.plot();\n    var lay = x.layout || {};\n    instance.width = lay.width;\n    instance.height = lay.height;\n    instance.autosize = lay.autosize || true;\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if ((x.selectize || x.highlight.dynamic) && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.newPlot(graphDiv, x);\n      instance.plotly = true;\n      \n    } else if (x.layout.transition) {\n      \n      var plot = Plotly.react(graphDiv, x);\n    \n    } else {\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.newPlot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n            if (typeof pt.pointNumber === \"number\") {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber];\n            } else if (Array.isArray(pt.pointNumber)) {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber[0]][pt.pointNumber[1]];\n            } else if (Array.isArray(pt.pointNumbers)) {\n              obj[attrsToAttach[i]] = pt.pointNumbers.map(function(idx) { return attr[idx]; });\n            }\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode && Shiny.setInputValue) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_sunburstclick: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "images/03_mean/lib/plotly-binding-4.9.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if (x.selectize || x.highlight.dynamic && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.plot(graphDiv, x);\n      instance.plotly = true;\n      instance.autosize = x.layout.autosize || true;\n      instance.width = x.layout.width;\n      instance.height = x.layout.height;\n      \n    } else {\n      \n      // new x data could contain a new height/width...\n      // attach to instance so that resize logic knows about the new size\n      instance.width = x.layout.width || instance.width;\n      instance.height = x.layout.height || instance.height;\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.plot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n              // pointNumber can be an array (e.g., heatmaps)\n              // TODO: can pointNumber be 3D?\n              obj[attrsToAttach[i]] = typeof pt.pointNumber === \"number\" ? \n                attr[pt.pointNumber] : attr[pt.pointNumber[0]][pt.pointNumber[1]];\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "images/03_mean/lib/plotly-binding-4.9.1/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    // Plotly.relayout() mutates the plot input object, so make sure to \n    // keep a reference to the user-supplied width/height *before*\n    // we call Plotly.plot();\n    var lay = x.layout || {};\n    instance.width = lay.width;\n    instance.height = lay.height;\n    instance.autosize = lay.autosize || true;\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if (x.selectize || x.highlight.dynamic && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.plot(graphDiv, x);\n      instance.plotly = true;\n      \n    } else {\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.plot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n            if (typeof pt.pointNumber === \"number\") {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber];\n            } else if (Array.isArray(pt.pointNumber)) {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber[0]][pt.pointNumber[1]];\n            } else if (Array.isArray(pt.pointNumbers)) {\n              obj[attrsToAttach[i]] = pt.pointNumbers.map(function(idx) { return attr[idx]; });\n            }\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode && Shiny.setInputValue) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_sunburstclick: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "images/03_mean/lib/plotly-htmlwidgets-css-1.46.1/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "images/03_mean/lib/plotly-htmlwidgets-css-1.49.4/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "images/03_mean/lib/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "images/04_variance/lib/crosstalk-1.0.0/css/crosstalk.css",
    "content": "/* Adjust margins outwards, so column contents line up with the edges of the\n   parent of container-fluid. */\n.container-fluid.crosstalk-bscols {\n  margin-left: -30px;\n  margin-right: -30px;\n  white-space: normal;\n}\n\n/* But don't adjust the margins outwards if we're directly under the body,\n   i.e. we were the top-level of something at the console. */\nbody > .container-fluid.crosstalk-bscols {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n  display: inline-block;\n  padding-right: 12px;\n  vertical-align: top;\n}\n\n@media only screen and (max-width:480px) {\n  .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n    display: block;\n    padding-right: inherit;\n  }\n}\n"
  },
  {
    "path": "images/04_variance/lib/crosstalk-1.0.0/js/crosstalk.js",
    "content": "(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Events = function () {\n  function Events() {\n    _classCallCheck(this, Events);\n\n    this._types = {};\n    this._seq = 0;\n  }\n\n  _createClass(Events, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var subs = this._types[eventType];\n      if (!subs) {\n        subs = this._types[eventType] = {};\n      }\n      var sub = \"sub\" + this._seq++;\n      subs[sub] = listener;\n      return sub;\n    }\n\n    // Returns false if no match, or string for sub name if matched\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var subs = this._types[eventType];\n      if (typeof listener === \"function\") {\n        for (var key in subs) {\n          if (subs.hasOwnProperty(key)) {\n            if (subs[key] === listener) {\n              delete subs[key];\n              return key;\n            }\n          }\n        }\n        return false;\n      } else if (typeof listener === \"string\") {\n        if (subs && subs[listener]) {\n          delete subs[listener];\n          return listener;\n        }\n        return false;\n      } else {\n        throw new Error(\"Unexpected type for listener\");\n      }\n    }\n  }, {\n    key: \"trigger\",\n    value: function trigger(eventType, arg, thisObj) {\n      var subs = this._types[eventType];\n      for (var key in subs) {\n        if (subs.hasOwnProperty(key)) {\n          subs[key].call(thisObj, arg);\n        }\n      }\n    }\n  }]);\n\n  return Events;\n}();\n\nexports.default = Events;\n\n},{}],2:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.FilterHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _filterset = require(\"./filterset\");\n\nvar _filterset2 = _interopRequireDefault(_filterset);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction getFilterSet(group) {\n  var fsVar = group.var(\"filterset\");\n  var result = fsVar.get();\n  if (!result) {\n    result = new _filterset2.default();\n    fsVar.set(result);\n  }\n  return result;\n}\n\nvar id = 1;\nfunction nextId() {\n  return id++;\n}\n\nvar FilterHandle = exports.FilterHandle = function () {\n  /**\n   * @classdesc\n   * Use this class to contribute to, and listen for changes to, the filter set\n   * for the given group of widgets. Filter input controls should create one\n   * `FilterHandle` and only call {@link FilterHandle#set}. Output widgets that\n   * wish to displayed filtered data should create one `FilterHandle` and use\n   * the {@link FilterHandle#filteredKeys} property and listen for change\n   * events.\n   *\n   * If two (or more) `FilterHandle` instances in the same webpage share the\n   * same group name, they will contribute to a single \"filter set\". Each\n   * `FilterHandle` starts out with a `null` value, which means they take\n   * nothing away from the set of data that should be shown. To make a\n   * `FilterHandle` actually remove data from the filter set, set its value to\n   * an array of keys which should be displayed. Crosstalk will aggregate the\n   * various key arrays by finding their intersection; only keys that are\n   * present in all non-null filter handles are considered part of the filter\n   * set.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the @{link FilterHandle#setGroup} method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function FilterHandle(group, extraInfo) {\n    _classCallCheck(this, FilterHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The filterSet that we're tracking, if any. Can change over time.\n    this._filterSet = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._filterVar = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this._id = \"filter\" + nextId();\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this FilterHandle. If `set()` was\n   * previously called on this handle, switching groups will clear those keys\n   * from the old group's filter set. These keys will not be applied to the new\n   * group's filter set either. In other words, `setGroup()` effectively calls\n   * `clear()` before switching groups.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(FilterHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._filterVar) {\n        this._filterVar.off(\"change\", this._varOnChangeSub);\n        this.clear();\n        this._varOnChangeSub = null;\n        this._filterVar = null;\n        this._filterSet = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        group = (0, _group2.default)(group);\n        this._filterSet = getFilterSet(group);\n        this._filterVar = (0, _group2.default)(group).var(\"filter\");\n        var sub = this._filterVar.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Combine the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n    value: function _mergeExtraInfo(extraInfo) {\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Close the handle. This clears this handle's contribution to the filter set,\n     * and unsubscribes all event listeners.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.clear();\n      this.setGroup(null);\n    }\n\n    /**\n     * Clear this handle's contribution to the filter set.\n     *\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.clear(this._id);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * Set this handle's contribution to the filter set. This array should consist\n     * of the keys of the rows that _should_ be displayed; any keys that are not\n     * present in the array will be considered _filtered out_. Note that multiple\n     * `FilterHandle` instances in the group may each contribute an array of keys,\n     * and only those keys that appear in _all_ of the arrays make it through the\n     * filter.\n     *\n     * @param {string[]} keys - Empty array, or array of keys. To clear the\n     *   filter, don't pass an empty array; instead, use the\n     *   {@link FilterHandle#clear} method.\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(keys, extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.update(this._id, keys);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * @return {string[]|null} - Either: 1) an array of keys that made it through\n     *   all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n     *   is being applied (all data should be displayed).\n     */\n\n  }, {\n    key: \"on\",\n\n\n    /**\n     * Subscribe to events on this `FilterHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {FilterHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n     *   this subscription.\n     */\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancel event subscriptions created by {@link FilterHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|FilterHandle~listener} listener - Either the callback\n     *   function previously passed into {@link FilterHandle#on}, or the\n     *   string that was returned from {@link FilterHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n  }, {\n    key: \"_onChange\",\n    value: function _onChange(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * @callback FilterHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the filter set, or `null` if no filter set is active),\n     *   `oldValue` (the previous value of the filter set), and `sender` (the\n     *   `FilterHandle` instance that made the change).\n     */\n\n    /**\n     * @event FilterHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the filter set, or `null`\n     *   if no filter set is active.\n     * @property {object} oldValue - The previous value of the filter set.\n     * @property {FilterHandle} sender - The `FilterHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"filteredKeys\",\n    get: function get() {\n      return this._filterSet ? this._filterSet.value : null;\n    }\n  }]);\n\n  return FilterHandle;\n}();\n\n},{\"./events\":1,\"./filterset\":3,\"./group\":4,\"./util\":11}],3:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _util = require(\"./util\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction naturalComparator(a, b) {\n  if (a === b) {\n    return 0;\n  } else if (a < b) {\n    return -1;\n  } else if (a > b) {\n    return 1;\n  }\n}\n\n/**\n * @private\n */\n\nvar FilterSet = function () {\n  function FilterSet() {\n    _classCallCheck(this, FilterSet);\n\n    this.reset();\n  }\n\n  _createClass(FilterSet, [{\n    key: \"reset\",\n    value: function reset() {\n      // Key: handle ID, Value: array of selected keys, or null\n      this._handles = {};\n      // Key: key string, Value: count of handles that include it\n      this._keys = {};\n      this._value = null;\n      this._activeHandles = 0;\n    }\n  }, {\n    key: \"update\",\n    value: function update(handleId, keys) {\n      if (keys !== null) {\n        keys = keys.slice(0); // clone before sorting\n        keys.sort(naturalComparator);\n      }\n\n      var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys),\n          added = _diffSortedLists.added,\n          removed = _diffSortedLists.removed;\n\n      this._handles[handleId] = keys;\n\n      for (var i = 0; i < added.length; i++) {\n        this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n      }\n      for (var _i = 0; _i < removed.length; _i++) {\n        this._keys[removed[_i]]--;\n      }\n\n      this._updateValue(keys);\n    }\n\n    /**\n     * @param {string[]} keys Sorted array of strings that indicate\n     * a superset of possible keys.\n     * @private\n     */\n\n  }, {\n    key: \"_updateValue\",\n    value: function _updateValue() {\n      var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys;\n\n      var handleCount = Object.keys(this._handles).length;\n      if (handleCount === 0) {\n        this._value = null;\n      } else {\n        this._value = [];\n        for (var i = 0; i < keys.length; i++) {\n          var count = this._keys[keys[i]];\n          if (count === handleCount) {\n            this._value.push(keys[i]);\n          }\n        }\n      }\n    }\n  }, {\n    key: \"clear\",\n    value: function clear(handleId) {\n      if (typeof this._handles[handleId] === \"undefined\") {\n        return;\n      }\n\n      var keys = this._handles[handleId];\n      if (!keys) {\n        keys = [];\n      }\n\n      for (var i = 0; i < keys.length; i++) {\n        this._keys[keys[i]]--;\n      }\n      delete this._handles[handleId];\n\n      this._updateValue();\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"_allKeys\",\n    get: function get() {\n      var allKeys = Object.keys(this._keys);\n      allKeys.sort(naturalComparator);\n      return allKeys;\n    }\n  }]);\n\n  return FilterSet;\n}();\n\nexports.default = FilterSet;\n\n},{\"./util\":11}],4:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.default = group;\n\nvar _var2 = require(\"./var\");\n\nvar _var3 = _interopRequireDefault(_var2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nvar groups = global.__crosstalk_groups;\n\nfunction group(groupName) {\n  if (groupName && typeof groupName === \"string\") {\n    if (!groups.hasOwnProperty(groupName)) {\n      groups[groupName] = new Group(groupName);\n    }\n    return groups[groupName];\n  } else if ((typeof groupName === \"undefined\" ? \"undefined\" : _typeof(groupName)) === \"object\" && groupName._vars && groupName.var) {\n    // Appears to already be a group object\n    return groupName;\n  } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === \"string\") {\n    return group(groupName[0]);\n  } else {\n    throw new Error(\"Invalid groupName argument\");\n  }\n}\n\nvar Group = function () {\n  function Group(name) {\n    _classCallCheck(this, Group);\n\n    this.name = name;\n    this._vars = {};\n  }\n\n  _createClass(Group, [{\n    key: \"var\",\n    value: function _var(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name);\n      return this._vars[name];\n    }\n  }, {\n    key: \"has\",\n    value: function has(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      return this._vars.hasOwnProperty(name);\n    }\n  }]);\n\n  return Group;\n}();\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./var\":12}],5:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _selection = require(\"./selection\");\n\nvar _filter = require(\"./filter\");\n\nrequire(\"./input\");\n\nrequire(\"./input_selectize\");\n\nrequire(\"./input_checkboxgroup\");\n\nrequire(\"./input_slider\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar defaultGroup = (0, _group2.default)(\"default\");\n\nfunction var_(name) {\n  return defaultGroup.var(name);\n}\n\nfunction has(name) {\n  return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n  global.Shiny.addCustomMessageHandler(\"update-client-value\", function (message) {\n    if (typeof message.group === \"string\") {\n      (0, _group2.default)(message.group).var(message.name).set(message.value);\n    } else {\n      var_(message.name).set(message.value);\n    }\n  });\n}\n\nvar crosstalk = {\n  group: _group2.default,\n  var: var_,\n  has: has,\n  SelectionHandle: _selection.SelectionHandle,\n  FilterHandle: _filter.FilterHandle\n};\n\n/**\n * @namespace crosstalk\n */\nexports.default = crosstalk;\n\nglobal.crosstalk = crosstalk;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./group\":4,\"./input\":6,\"./input_checkboxgroup\":7,\"./input_selectize\":8,\"./input_slider\":9,\"./selection\":10}],6:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.register = register;\nvar $ = global.jQuery;\n\nvar bindings = {};\n\nfunction register(reg) {\n  bindings[reg.className] = reg;\n  if (global.document && global.document.readyState !== \"complete\") {\n    $(function () {\n      bind();\n    });\n  } else if (global.document) {\n    setTimeout(bind, 100);\n  }\n}\n\nfunction bind() {\n  Object.keys(bindings).forEach(function (className) {\n    var binding = bindings[className];\n    $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function (i, el) {\n      bindInstance(binding, el);\n    });\n  });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n  return val.replace(/([!\"#$%&'()*+,.\\/:;<=>?@\\[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n  var $el = $(el);\n  Object.keys(bindings).forEach(function (className) {\n    if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n      var binding = bindings[className];\n      bindInstance(binding, el);\n    }\n  });\n}\n\nfunction bindInstance(binding, el) {\n  var jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n  var data = JSON.parse(jsonEl[0].innerText);\n\n  var instance = binding.factory(el, data);\n  $(el).data(\"crosstalk-instance\", instance);\n  $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n  (function () {\n    var inputBinding = new global.Shiny.InputBinding();\n    var $ = global.jQuery;\n    $.extend(inputBinding, {\n      find: function find(scope) {\n        return $(scope).find(\".crosstalk-input\");\n      },\n      initialize: function initialize(el) {\n        if (!$(el).hasClass(\"crosstalk-input-bound\")) {\n          bindEl(el);\n        }\n      },\n      getId: function getId(el) {\n        return el.id;\n      },\n      getValue: function getValue(el) {},\n      setValue: function setValue(el, value) {},\n      receiveMessage: function receiveMessage(el, data) {},\n      subscribe: function subscribe(el, callback) {\n        $(el).data(\"crosstalk-instance\").resume();\n      },\n      unsubscribe: function unsubscribe(el) {\n        $(el).data(\"crosstalk-instance\").suspend();\n      }\n    });\n    global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n  })();\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{}],7:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-checkboxgroup\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    var $el = $(el);\n    $el.on(\"change\", \"input[type='checkbox']\", function () {\n      var checked = $el.find(\"input[type='checkbox']:checked\");\n      if (checked.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          checked.each(function () {\n            data.map[this.value].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],8:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-select\",\n\n  factory: function factory(el, data) {\n    /*\n     * items: {value: [...], label: [...]}\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n\n    var first = [{ value: \"\", label: \"(All)\" }];\n    var items = util.dataframeToD3(data.items);\n    var opts = {\n      options: first.concat(items),\n      valueField: \"value\",\n      labelField: \"label\",\n      searchField: \"label\"\n    };\n\n    var select = $(el).find(\"select\")[0];\n\n    var selectize = $(select).selectize(opts)[0].selectize;\n\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    selectize.on(\"change\", function () {\n      if (selectize.items.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          selectize.items.forEach(function (group) {\n            data.map[group].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6,\"./util\":11}],9:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\nvar strftime = global.strftime;\n\ninput.register({\n  className: \"crosstalk-input-slider\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var opts = {};\n    var $el = $(el).find(\"input\");\n    var dataType = $el.data(\"data-type\");\n    var timeFormat = $el.data(\"time-format\");\n    var timeFormatter = void 0;\n\n    // Set up formatting functions\n    if (dataType === \"date\") {\n      timeFormatter = strftime.utc();\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"datetime\") {\n      var timezone = $el.data(\"timezone\");\n      if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime;\n\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    }\n\n    $el.ionRangeSlider(opts);\n\n    function getValue() {\n      var result = $el.data(\"ionRangeSlider\").result;\n\n      // Function for converting numeric value from slider to appropriate type.\n      var convert = void 0;\n      var dataType = $el.data(\"data-type\");\n      if (dataType === \"date\") {\n        convert = function convert(val) {\n          return formatDateUTC(new Date(+val));\n        };\n      } else if (dataType === \"datetime\") {\n        convert = function convert(val) {\n          // Convert ms to s\n          return +val / 1000;\n        };\n      } else {\n        convert = function convert(val) {\n          return +val;\n        };\n      }\n\n      if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n        return [convert(result.from), convert(result.to)];\n      } else {\n        return convert(result.from);\n      }\n    }\n\n    var lastKnownKeys = null;\n\n    $el.on(\"change.crosstalkSliderInput\", function (event) {\n      if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n        var _getValue = getValue(),\n            _getValue2 = _slicedToArray(_getValue, 2),\n            from = _getValue2[0],\n            to = _getValue2[1];\n\n        var keys = [];\n        for (var i = 0; i < data.values.length; i++) {\n          var val = data.values[i];\n          if (val >= from && val <= to) {\n            keys.push(data.keys[i]);\n          }\n        }\n        keys.sort();\n        ctHandle.set(keys);\n        lastKnownKeys = keys;\n      }\n    });\n\n    // let $el = $(el);\n    // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n    //   let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n    //   if (checked.length === 0) {\n    //     ctHandle.clear();\n    //   } else {\n    //     let keys = {};\n    //     checked.each(function() {\n    //       data.map[this.value].forEach(function(key) {\n    //         keys[key] = true;\n    //       });\n    //     });\n    //     let keyArray = Object.keys(keys);\n    //     keyArray.sort();\n    //     ctHandle.set(keyArray);\n    //   }\n    // });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n  var str = n.toString();\n  while (str.length < digits) {\n    str = \"0\" + str;\n  }return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n  if (date instanceof Date) {\n    return date.getUTCFullYear() + \"-\" + padZeros(date.getUTCMonth() + 1, 2) + \"-\" + padZeros(date.getUTCDate(), 2);\n  } else {\n    return null;\n  }\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],10:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.SelectionHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar SelectionHandle = exports.SelectionHandle = function () {\n\n  /**\n   * @classdesc\n   * Use this class to read and write (and listen for changes to) the selection\n   * for a Crosstalk group. This is intended to be used for linked brushing.\n   *\n   * If two (or more) `SelectionHandle` instances in the same webpage share the\n   * same group name, they will share the same state. Setting the selection using\n   * one `SelectionHandle` instance will result in the `value` property instantly\n   * changing across the others, and `\"change\"` event listeners on all instances\n   * (including the one that initiated the sending) will fire.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the [SelectionHandle#setGroup](#setGroup) method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function SelectionHandle() {\n    var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n    var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n\n    _classCallCheck(this, SelectionHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._var = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this SelectionHandle. The group\n   * being switched away from (if any) will not have its selection value\n   * modified as a result of calling `setGroup`, even if this handle was the\n   * most recent handle to set the selection of the group.\n   *\n   * The group being switched to (if any) will also not have its selection value\n   * modified as a result of calling `setGroup`. If you want to set the\n   * selection value of the new group, call `set` explicitly.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(SelectionHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._var) {\n        this._var.off(\"change\", this._varOnChangeSub);\n        this._var = null;\n        this._varOnChangeSub = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        this._var = (0, _group2.default)(group).var(\"selection\");\n        var sub = this._var.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Retrieves the current selection for the group represented by this\n     * `SelectionHandle`.\n     *\n     * - If no selection is active, then this value will be falsy.\n     * - If a selection is active, but no data points are selected, then this\n     *   value will be an empty array.\n     * - If a selection is active, and data points are selected, then the keys\n     *   of the selected data points will be present in the array.\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n\n\n    /**\n     * Combines the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n    value: function _mergeExtraInfo(extraInfo) {\n      // Important incidental effect: shallow clone is returned\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n     *   {@link SelectionHandle#value}).\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(selectedKeys, extraInfo) {\n      if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any that were passed\n     *   into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Subscribes to events on this `SelectionHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {SelectionHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n     *   this subscription.\n     */\n\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancels event subscriptions created by {@link SelectionHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|SelectionHandle~listener} listener - Either the callback\n     *   function previously passed into {@link SelectionHandle#on}, or the\n     *   string that was returned from {@link SelectionHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n\n    /**\n     * Shuts down the `SelectionHandle` object.\n     *\n     * Removes all event listeners that were added through this handle.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.setGroup(null);\n    }\n\n    /**\n     * @callback SelectionHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the selection, or `undefined` if no selection is active),\n     *   `oldValue` (the previous value of the selection), and `sender` (the\n     *   `SelectionHandle` instance that made the change).\n     */\n\n    /**\n     * @event SelectionHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the selection, or `undefined`\n     *   if no selection is active.\n     * @property {object} oldValue - The previous value of the selection.\n     * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._var ? this._var.get() : null;\n    }\n  }]);\n\n  return SelectionHandle;\n}();\n\n},{\"./events\":1,\"./group\":4,\"./util\":11}],11:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.extend = extend;\nexports.checkSorted = checkSorted;\nexports.diffSortedLists = diffSortedLists;\nexports.dataframeToD3 = dataframeToD3;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction extend(target) {\n  for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n    sources[_key - 1] = arguments[_key];\n  }\n\n  for (var i = 0; i < sources.length; i++) {\n    var src = sources[i];\n    if (typeof src === \"undefined\" || src === null) continue;\n\n    for (var key in src) {\n      if (src.hasOwnProperty(key)) {\n        target[key] = src[key];\n      }\n    }\n  }\n  return target;\n}\n\nfunction checkSorted(list) {\n  for (var i = 1; i < list.length; i++) {\n    if (list[i] <= list[i - 1]) {\n      throw new Error(\"List is not sorted or contains duplicate\");\n    }\n  }\n}\n\nfunction diffSortedLists(a, b) {\n  var i_a = 0;\n  var i_b = 0;\n\n  if (!a) a = [];\n  if (!b) b = [];\n\n  var a_only = [];\n  var b_only = [];\n\n  checkSorted(a);\n  checkSorted(b);\n\n  while (i_a < a.length && i_b < b.length) {\n    if (a[i_a] === b[i_b]) {\n      i_a++;\n      i_b++;\n    } else if (a[i_a] < b[i_b]) {\n      a_only.push(a[i_a++]);\n    } else {\n      b_only.push(b[i_b++]);\n    }\n  }\n\n  if (i_a < a.length) a_only = a_only.concat(a.slice(i_a));\n  if (i_b < b.length) b_only = b_only.concat(b.slice(i_b));\n  return {\n    removed: a_only,\n    added: b_only\n  };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nfunction dataframeToD3(df) {\n  var names = [];\n  var length = void 0;\n  for (var name in df) {\n    if (df.hasOwnProperty(name)) names.push(name);\n    if (_typeof(df[name]) !== \"object\" || typeof df[name].length === \"undefined\") {\n      throw new Error(\"All fields must be arrays\");\n    } else if (typeof length !== \"undefined\" && length !== df[name].length) {\n      throw new Error(\"All fields must be arrays of the same length\");\n    }\n    length = df[name].length;\n  }\n  var results = [];\n  var item = void 0;\n  for (var row = 0; row < length; row++) {\n    item = {};\n    for (var col = 0; col < names.length; col++) {\n      item[names[col]] = df[names[col]][row];\n    }\n    results.push(item);\n  }\n  return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\n\nvar SubscriptionTracker = exports.SubscriptionTracker = function () {\n  function SubscriptionTracker(emitter) {\n    _classCallCheck(this, SubscriptionTracker);\n\n    this._emitter = emitter;\n    this._subs = {};\n  }\n\n  _createClass(SubscriptionTracker, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var sub = this._emitter.on(eventType, listener);\n      this._subs[sub] = eventType;\n      return sub;\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var sub = this._emitter.off(eventType, listener);\n      if (sub) {\n        delete this._subs[sub];\n      }\n      return sub;\n    }\n  }, {\n    key: \"removeAllListeners\",\n    value: function removeAllListeners() {\n      var _this = this;\n\n      var current_subs = this._subs;\n      this._subs = {};\n      Object.keys(current_subs).forEach(function (sub) {\n        _this._emitter.off(current_subs[sub], sub);\n      });\n    }\n  }]);\n\n  return SubscriptionTracker;\n}();\n\n},{}],12:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Var = function () {\n  function Var(group, name, /*optional*/value) {\n    _classCallCheck(this, Var);\n\n    this._group = group;\n    this._name = name;\n    this._value = value;\n    this._events = new _events2.default();\n  }\n\n  _createClass(Var, [{\n    key: \"get\",\n    value: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"set\",\n    value: function set(value, /*optional*/event) {\n      if (this._value === value) {\n        // Do nothing; the value hasn't changed\n        return;\n      }\n      var oldValue = this._value;\n      this._value = value;\n      // Alert JavaScript listeners that the value has changed\n      var evt = {};\n      if (event && (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\") {\n        for (var k in event) {\n          if (event.hasOwnProperty(k)) evt[k] = event[k];\n        }\n      }\n      evt.oldValue = oldValue;\n      evt.value = value;\n      this._events.trigger(\"change\", evt, this);\n\n      // TODO: Make this extensible, to let arbitrary back-ends know that\n      // something has changed\n      if (global.Shiny && global.Shiny.onInputChange) {\n        global.Shiny.onInputChange(\".clientValue-\" + (this._group.name !== null ? this._group.name + \"-\" : \"\") + this._name, typeof value === \"undefined\" ? null : value);\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._events.on(eventType, listener);\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._events.off(eventType, listener);\n    }\n  }]);\n\n  return Var;\n}();\n\nexports.default = Var;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./events\":1}]},{},[5])\n//# sourceMappingURL=crosstalk.js.map\n"
  },
  {
    "path": "images/04_variance/lib/crosstalk-1.2.0/js/crosstalk.js",
    "content": "(function(){function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s}return e})()({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Events = function () {\n  function Events() {\n    _classCallCheck(this, Events);\n\n    this._types = {};\n    this._seq = 0;\n  }\n\n  _createClass(Events, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var subs = this._types[eventType];\n      if (!subs) {\n        subs = this._types[eventType] = {};\n      }\n      var sub = \"sub\" + this._seq++;\n      subs[sub] = listener;\n      return sub;\n    }\n\n    // Returns false if no match, or string for sub name if matched\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var subs = this._types[eventType];\n      if (typeof listener === \"function\") {\n        for (var key in subs) {\n          if (subs.hasOwnProperty(key)) {\n            if (subs[key] === listener) {\n              delete subs[key];\n              return key;\n            }\n          }\n        }\n        return false;\n      } else if (typeof listener === \"string\") {\n        if (subs && subs[listener]) {\n          delete subs[listener];\n          return listener;\n        }\n        return false;\n      } else {\n        throw new Error(\"Unexpected type for listener\");\n      }\n    }\n  }, {\n    key: \"trigger\",\n    value: function trigger(eventType, arg, thisObj) {\n      var subs = this._types[eventType];\n      for (var key in subs) {\n        if (subs.hasOwnProperty(key)) {\n          subs[key].call(thisObj, arg);\n        }\n      }\n    }\n  }]);\n\n  return Events;\n}();\n\nexports.default = Events;\n\n},{}],2:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.FilterHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _filterset = require(\"./filterset\");\n\nvar _filterset2 = _interopRequireDefault(_filterset);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction getFilterSet(group) {\n  var fsVar = group.var(\"filterset\");\n  var result = fsVar.get();\n  if (!result) {\n    result = new _filterset2.default();\n    fsVar.set(result);\n  }\n  return result;\n}\n\nvar id = 1;\nfunction nextId() {\n  return id++;\n}\n\n/**\n * Use this class to contribute to, and listen for changes to, the filter set\n * for the given group of widgets. Filter input controls should create one\n * `FilterHandle` and only call {@link FilterHandle#set}. Output widgets that\n * wish to displayed filtered data should create one `FilterHandle` and use\n * the {@link FilterHandle#filteredKeys} property and listen for change\n * events.\n *\n * If two (or more) `FilterHandle` instances in the same webpage share the\n * same group name, they will contribute to a single \"filter set\". Each\n * `FilterHandle` starts out with a `null` value, which means they take\n * nothing away from the set of data that should be shown. To make a\n * `FilterHandle` actually remove data from the filter set, set its value to\n * an array of keys which should be displayed. Crosstalk will aggregate the\n * various key arrays by finding their intersection; only keys that are\n * present in all non-null filter handles are considered part of the filter\n * set.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n *   null or undefined (or any other falsy value). This can be changed later\n *   via the {@link FilterHandle#setGroup} method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n *   the event object whenever an event is emitted.\n */\n\nvar FilterHandle = exports.FilterHandle = function () {\n  function FilterHandle(group, extraInfo) {\n    _classCallCheck(this, FilterHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The filterSet that we're tracking, if any. Can change over time.\n    this._filterSet = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._filterVar = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this._id = \"filter\" + nextId();\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this FilterHandle. If `set()` was\n   * previously called on this handle, switching groups will clear those keys\n   * from the old group's filter set. These keys will not be applied to the new\n   * group's filter set either. In other words, `setGroup()` effectively calls\n   * `clear()` before switching groups.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(FilterHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._filterVar) {\n        this._filterVar.off(\"change\", this._varOnChangeSub);\n        this.clear();\n        this._varOnChangeSub = null;\n        this._filterVar = null;\n        this._filterSet = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        group = (0, _group2.default)(group);\n        this._filterSet = getFilterSet(group);\n        this._filterVar = (0, _group2.default)(group).var(\"filter\");\n        var sub = this._filterVar.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Combine the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n    value: function _mergeExtraInfo(extraInfo) {\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Close the handle. This clears this handle's contribution to the filter set,\n     * and unsubscribes all event listeners.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.clear();\n      this.setGroup(null);\n    }\n\n    /**\n     * Clear this handle's contribution to the filter set.\n     *\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     * \n     * @fires FilterHandle#change\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.clear(this._id);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * Set this handle's contribution to the filter set. This array should consist\n     * of the keys of the rows that _should_ be displayed; any keys that are not\n     * present in the array will be considered _filtered out_. Note that multiple\n     * `FilterHandle` instances in the group may each contribute an array of keys,\n     * and only those keys that appear in _all_ of the arrays make it through the\n     * filter.\n     *\n     * @param {string[]} keys - Empty array, or array of keys. To clear the\n     *   filter, don't pass an empty array; instead, use the\n     *   {@link FilterHandle#clear} method.\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     * \n     * @fires FilterHandle#change\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(keys, extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.update(this._id, keys);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * @return {string[]|null} - Either: 1) an array of keys that made it through\n     *   all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n     *   is being applied (all data should be displayed).\n     */\n\n  }, {\n    key: \"on\",\n\n\n    /**\n     * Subscribe to events on this `FilterHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {FilterHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n     *   this subscription.\n     */\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancel event subscriptions created by {@link FilterHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|FilterHandle~listener} listener - Either the callback\n     *   function previously passed into {@link FilterHandle#on}, or the\n     *   string that was returned from {@link FilterHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n  }, {\n    key: \"_onChange\",\n    value: function _onChange(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * @callback FilterHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the filter set, or `null` if no filter set is active),\n     *   `oldValue` (the previous value of the filter set), and `sender` (the\n     *   `FilterHandle` instance that made the change).\n     */\n\n  }, {\n    key: \"filteredKeys\",\n    get: function get() {\n      return this._filterSet ? this._filterSet.value : null;\n    }\n  }]);\n\n  return FilterHandle;\n}();\n\n/**\n * @event FilterHandle#change\n * @type {object}\n * @property {object} value - The new value of the filter set, or `null`\n *   if no filter set is active.\n * @property {object} oldValue - The previous value of the filter set.\n * @property {FilterHandle} sender - The `FilterHandle` instance that\n *   changed the value.\n */\n\n},{\"./events\":1,\"./filterset\":3,\"./group\":4,\"./util\":11}],3:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _util = require(\"./util\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction naturalComparator(a, b) {\n  if (a === b) {\n    return 0;\n  } else if (a < b) {\n    return -1;\n  } else if (a > b) {\n    return 1;\n  }\n}\n\n/**\n * @private\n */\n\nvar FilterSet = function () {\n  function FilterSet() {\n    _classCallCheck(this, FilterSet);\n\n    this.reset();\n  }\n\n  _createClass(FilterSet, [{\n    key: \"reset\",\n    value: function reset() {\n      // Key: handle ID, Value: array of selected keys, or null\n      this._handles = {};\n      // Key: key string, Value: count of handles that include it\n      this._keys = {};\n      this._value = null;\n      this._activeHandles = 0;\n    }\n  }, {\n    key: \"update\",\n    value: function update(handleId, keys) {\n      if (keys !== null) {\n        keys = keys.slice(0); // clone before sorting\n        keys.sort(naturalComparator);\n      }\n\n      var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys),\n          added = _diffSortedLists.added,\n          removed = _diffSortedLists.removed;\n\n      this._handles[handleId] = keys;\n\n      for (var i = 0; i < added.length; i++) {\n        this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n      }\n      for (var _i = 0; _i < removed.length; _i++) {\n        this._keys[removed[_i]]--;\n      }\n\n      this._updateValue(keys);\n    }\n\n    /**\n     * @param {string[]} keys Sorted array of strings that indicate\n     * a superset of possible keys.\n     * @private\n     */\n\n  }, {\n    key: \"_updateValue\",\n    value: function _updateValue() {\n      var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys;\n\n      var handleCount = Object.keys(this._handles).length;\n      if (handleCount === 0) {\n        this._value = null;\n      } else {\n        this._value = [];\n        for (var i = 0; i < keys.length; i++) {\n          var count = this._keys[keys[i]];\n          if (count === handleCount) {\n            this._value.push(keys[i]);\n          }\n        }\n      }\n    }\n  }, {\n    key: \"clear\",\n    value: function clear(handleId) {\n      if (typeof this._handles[handleId] === \"undefined\") {\n        return;\n      }\n\n      var keys = this._handles[handleId];\n      if (!keys) {\n        keys = [];\n      }\n\n      for (var i = 0; i < keys.length; i++) {\n        this._keys[keys[i]]--;\n      }\n      delete this._handles[handleId];\n\n      this._updateValue();\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"_allKeys\",\n    get: function get() {\n      var allKeys = Object.keys(this._keys);\n      allKeys.sort(naturalComparator);\n      return allKeys;\n    }\n  }]);\n\n  return FilterSet;\n}();\n\nexports.default = FilterSet;\n\n},{\"./util\":11}],4:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.default = group;\n\nvar _var2 = require(\"./var\");\n\nvar _var3 = _interopRequireDefault(_var2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nvar groups = global.__crosstalk_groups;\n\nfunction group(groupName) {\n  if (groupName && typeof groupName === \"string\") {\n    if (!groups.hasOwnProperty(groupName)) {\n      groups[groupName] = new Group(groupName);\n    }\n    return groups[groupName];\n  } else if ((typeof groupName === \"undefined\" ? \"undefined\" : _typeof(groupName)) === \"object\" && groupName._vars && groupName.var) {\n    // Appears to already be a group object\n    return groupName;\n  } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === \"string\") {\n    return group(groupName[0]);\n  } else {\n    throw new Error(\"Invalid groupName argument\");\n  }\n}\n\nvar Group = function () {\n  function Group(name) {\n    _classCallCheck(this, Group);\n\n    this.name = name;\n    this._vars = {};\n  }\n\n  _createClass(Group, [{\n    key: \"var\",\n    value: function _var(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name);\n      return this._vars[name];\n    }\n  }, {\n    key: \"has\",\n    value: function has(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      return this._vars.hasOwnProperty(name);\n    }\n  }]);\n\n  return Group;\n}();\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./var\":12}],5:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _selection = require(\"./selection\");\n\nvar _filter = require(\"./filter\");\n\nvar _input = require(\"./input\");\n\nrequire(\"./input_selectize\");\n\nrequire(\"./input_checkboxgroup\");\n\nrequire(\"./input_slider\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar defaultGroup = (0, _group2.default)(\"default\");\n\nfunction var_(name) {\n  return defaultGroup.var(name);\n}\n\nfunction has(name) {\n  return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n  global.Shiny.addCustomMessageHandler(\"update-client-value\", function (message) {\n    if (typeof message.group === \"string\") {\n      (0, _group2.default)(message.group).var(message.name).set(message.value);\n    } else {\n      var_(message.name).set(message.value);\n    }\n  });\n}\n\nvar crosstalk = {\n  group: _group2.default,\n  var: var_,\n  has: has,\n  SelectionHandle: _selection.SelectionHandle,\n  FilterHandle: _filter.FilterHandle,\n  bind: _input.bind\n};\n\n/**\n * @namespace crosstalk\n */\nexports.default = crosstalk;\n\nglobal.crosstalk = crosstalk;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./group\":4,\"./input\":6,\"./input_checkboxgroup\":7,\"./input_selectize\":8,\"./input_slider\":9,\"./selection\":10}],6:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.register = register;\nexports.bind = bind;\nvar $ = global.jQuery;\n\nvar bindings = {};\n\nfunction register(reg) {\n  bindings[reg.className] = reg;\n  if (global.document && global.document.readyState !== \"complete\") {\n    $(function () {\n      bind();\n    });\n  } else if (global.document) {\n    setTimeout(bind, 100);\n  }\n}\n\nfunction bind() {\n  Object.keys(bindings).forEach(function (className) {\n    var binding = bindings[className];\n    $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function (i, el) {\n      bindInstance(binding, el);\n    });\n  });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n  return val.replace(/([!\"#$%&'()*+,./:;<=>?@[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n  var $el = $(el);\n  Object.keys(bindings).forEach(function (className) {\n    if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n      var binding = bindings[className];\n      bindInstance(binding, el);\n    }\n  });\n}\n\nfunction bindInstance(binding, el) {\n  var jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n  var data = JSON.parse(jsonEl[0].innerText);\n\n  var instance = binding.factory(el, data);\n  $(el).data(\"crosstalk-instance\", instance);\n  $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n  var inputBinding = new global.Shiny.InputBinding();\n  var _$ = global.jQuery;\n  _$.extend(inputBinding, {\n    find: function find(scope) {\n      return _$(scope).find(\".crosstalk-input\");\n    },\n    initialize: function initialize(el) {\n      if (!_$(el).hasClass(\"crosstalk-input-bound\")) {\n        bindEl(el);\n      }\n    },\n    getId: function getId(el) {\n      return el.id;\n    },\n    getValue: function getValue(el) {},\n    setValue: function setValue(el, value) {},\n    receiveMessage: function receiveMessage(el, data) {},\n    subscribe: function subscribe(el, callback) {\n      _$(el).data(\"crosstalk-instance\").resume();\n    },\n    unsubscribe: function unsubscribe(el) {\n      _$(el).data(\"crosstalk-instance\").suspend();\n    }\n  });\n  global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{}],7:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-checkboxgroup\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    var $el = $(el);\n    $el.on(\"change\", \"input[type='checkbox']\", function () {\n      var checked = $el.find(\"input[type='checkbox']:checked\");\n      if (checked.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        var keys = {};\n        checked.each(function () {\n          data.map[this.value].forEach(function (key) {\n            keys[key] = true;\n          });\n        });\n        var keyArray = Object.keys(keys);\n        keyArray.sort();\n        lastKnownKeys = keyArray;\n        ctHandle.set(keyArray);\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],8:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-select\",\n\n  factory: function factory(el, data) {\n    /*\n     * items: {value: [...], label: [...]}\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n\n    var first = [{ value: \"\", label: \"(All)\" }];\n    var items = util.dataframeToD3(data.items);\n    var opts = {\n      options: first.concat(items),\n      valueField: \"value\",\n      labelField: \"label\",\n      searchField: \"label\"\n    };\n\n    var select = $(el).find(\"select\")[0];\n\n    var selectize = $(select).selectize(opts)[0].selectize;\n\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    selectize.on(\"change\", function () {\n      if (selectize.items.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        var keys = {};\n        selectize.items.forEach(function (group) {\n          data.map[group].forEach(function (key) {\n            keys[key] = true;\n          });\n        });\n        var keyArray = Object.keys(keys);\n        keyArray.sort();\n        lastKnownKeys = keyArray;\n        ctHandle.set(keyArray);\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6,\"./util\":11}],9:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\nvar strftime = global.strftime;\n\ninput.register({\n  className: \"crosstalk-input-slider\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var opts = {};\n    var $el = $(el).find(\"input\");\n    var dataType = $el.data(\"data-type\");\n    var timeFormat = $el.data(\"time-format\");\n    var round = $el.data(\"round\");\n    var timeFormatter = void 0;\n\n    // Set up formatting functions\n    if (dataType === \"date\") {\n      timeFormatter = strftime.utc();\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"datetime\") {\n      var timezone = $el.data(\"timezone\");\n      if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime;\n\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"number\") {\n      if (typeof round !== \"undefined\") opts.prettify = function (num) {\n        var factor = Math.pow(10, round);\n        return Math.round(num * factor) / factor;\n      };\n    }\n\n    $el.ionRangeSlider(opts);\n\n    function getValue() {\n      var result = $el.data(\"ionRangeSlider\").result;\n\n      // Function for converting numeric value from slider to appropriate type.\n      var convert = void 0;\n      var dataType = $el.data(\"data-type\");\n      if (dataType === \"date\") {\n        convert = function convert(val) {\n          return formatDateUTC(new Date(+val));\n        };\n      } else if (dataType === \"datetime\") {\n        convert = function convert(val) {\n          // Convert ms to s\n          return +val / 1000;\n        };\n      } else {\n        convert = function convert(val) {\n          return +val;\n        };\n      }\n\n      if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n        return [convert(result.from), convert(result.to)];\n      } else {\n        return convert(result.from);\n      }\n    }\n\n    var lastKnownKeys = null;\n\n    $el.on(\"change.crosstalkSliderInput\", function (event) {\n      if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n        var _getValue = getValue(),\n            _getValue2 = _slicedToArray(_getValue, 2),\n            from = _getValue2[0],\n            to = _getValue2[1];\n\n        var keys = [];\n        for (var i = 0; i < data.values.length; i++) {\n          var val = data.values[i];\n          if (val >= from && val <= to) {\n            keys.push(data.keys[i]);\n          }\n        }\n        keys.sort();\n        ctHandle.set(keys);\n        lastKnownKeys = keys;\n      }\n    });\n\n    // let $el = $(el);\n    // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n    //   let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n    //   if (checked.length === 0) {\n    //     ctHandle.clear();\n    //   } else {\n    //     let keys = {};\n    //     checked.each(function() {\n    //       data.map[this.value].forEach(function(key) {\n    //         keys[key] = true;\n    //       });\n    //     });\n    //     let keyArray = Object.keys(keys);\n    //     keyArray.sort();\n    //     ctHandle.set(keyArray);\n    //   }\n    // });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n  var str = n.toString();\n  while (str.length < digits) {\n    str = \"0\" + str;\n  }return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n  if (date instanceof Date) {\n    return date.getUTCFullYear() + \"-\" + padZeros(date.getUTCMonth() + 1, 2) + \"-\" + padZeros(date.getUTCDate(), 2);\n  } else {\n    return null;\n  }\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],10:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.SelectionHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n/**\n * Use this class to read and write (and listen for changes to) the selection\n * for a Crosstalk group. This is intended to be used for linked brushing.\n *\n * If two (or more) `SelectionHandle` instances in the same webpage share the\n * same group name, they will share the same state. Setting the selection using\n * one `SelectionHandle` instance will result in the `value` property instantly\n * changing across the others, and `\"change\"` event listeners on all instances\n * (including the one that initiated the sending) will fire.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n *   null or undefined (or any other falsy value). This can be changed later\n *   via the [SelectionHandle#setGroup](#setGroup) method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n *   the event object whenever an event is emitted.\n */\nvar SelectionHandle = exports.SelectionHandle = function () {\n  function SelectionHandle() {\n    var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n    var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n\n    _classCallCheck(this, SelectionHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._var = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this SelectionHandle. The group\n   * being switched away from (if any) will not have its selection value\n   * modified as a result of calling `setGroup`, even if this handle was the\n   * most recent handle to set the selection of the group.\n   *\n   * The group being switched to (if any) will also not have its selection value\n   * modified as a result of calling `setGroup`. If you want to set the\n   * selection value of the new group, call `set` explicitly.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(SelectionHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._var) {\n        this._var.off(\"change\", this._varOnChangeSub);\n        this._var = null;\n        this._varOnChangeSub = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        this._var = (0, _group2.default)(group).var(\"selection\");\n        var sub = this._var.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Retrieves the current selection for the group represented by this\n     * `SelectionHandle`.\n     *\n     * - If no selection is active, then this value will be falsy.\n     * - If a selection is active, but no data points are selected, then this\n     *   value will be an empty array.\n     * - If a selection is active, and data points are selected, then the keys\n     *   of the selected data points will be present in the array.\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n\n\n    /**\n     * Combines the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n    value: function _mergeExtraInfo(extraInfo) {\n      // Important incidental effect: shallow clone is returned\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n     *   {@link SelectionHandle#value}).\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(selectedKeys, extraInfo) {\n      if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any that were passed\n     *   into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Subscribes to events on this `SelectionHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {SelectionHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n     *   this subscription.\n     */\n\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancels event subscriptions created by {@link SelectionHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|SelectionHandle~listener} listener - Either the callback\n     *   function previously passed into {@link SelectionHandle#on}, or the\n     *   string that was returned from {@link SelectionHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n\n    /**\n     * Shuts down the `SelectionHandle` object.\n     *\n     * Removes all event listeners that were added through this handle.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.setGroup(null);\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._var ? this._var.get() : null;\n    }\n  }]);\n\n  return SelectionHandle;\n}();\n\n/**\n * @callback SelectionHandle~listener\n * @param {Object} event - An object containing details of the event. For\n *   `\"change\"` events, this includes the properties `value` (the new\n *   value of the selection, or `undefined` if no selection is active),\n *   `oldValue` (the previous value of the selection), and `sender` (the\n *   `SelectionHandle` instance that made the change).\n */\n\n/**\n * @event SelectionHandle#change\n * @type {object}\n * @property {object} value - The new value of the selection, or `undefined`\n *   if no selection is active.\n * @property {object} oldValue - The previous value of the selection.\n * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n *   changed the value.\n */\n\n},{\"./events\":1,\"./group\":4,\"./util\":11}],11:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.extend = extend;\nexports.checkSorted = checkSorted;\nexports.diffSortedLists = diffSortedLists;\nexports.dataframeToD3 = dataframeToD3;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction extend(target) {\n  for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n    sources[_key - 1] = arguments[_key];\n  }\n\n  for (var i = 0; i < sources.length; i++) {\n    var src = sources[i];\n    if (typeof src === \"undefined\" || src === null) continue;\n\n    for (var key in src) {\n      if (src.hasOwnProperty(key)) {\n        target[key] = src[key];\n      }\n    }\n  }\n  return target;\n}\n\nfunction checkSorted(list) {\n  for (var i = 1; i < list.length; i++) {\n    if (list[i] <= list[i - 1]) {\n      throw new Error(\"List is not sorted or contains duplicate\");\n    }\n  }\n}\n\nfunction diffSortedLists(a, b) {\n  var i_a = 0;\n  var i_b = 0;\n\n  if (!a) a = [];\n  if (!b) b = [];\n\n  var a_only = [];\n  var b_only = [];\n\n  checkSorted(a);\n  checkSorted(b);\n\n  while (i_a < a.length && i_b < b.length) {\n    if (a[i_a] === b[i_b]) {\n      i_a++;\n      i_b++;\n    } else if (a[i_a] < b[i_b]) {\n      a_only.push(a[i_a++]);\n    } else {\n      b_only.push(b[i_b++]);\n    }\n  }\n\n  if (i_a < a.length) a_only = a_only.concat(a.slice(i_a));\n  if (i_b < b.length) b_only = b_only.concat(b.slice(i_b));\n  return {\n    removed: a_only,\n    added: b_only\n  };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nfunction dataframeToD3(df) {\n  var names = [];\n  var length = void 0;\n  for (var name in df) {\n    if (df.hasOwnProperty(name)) names.push(name);\n    if (_typeof(df[name]) !== \"object\" || typeof df[name].length === \"undefined\") {\n      throw new Error(\"All fields must be arrays\");\n    } else if (typeof length !== \"undefined\" && length !== df[name].length) {\n      throw new Error(\"All fields must be arrays of the same length\");\n    }\n    length = df[name].length;\n  }\n  var results = [];\n  var item = void 0;\n  for (var row = 0; row < length; row++) {\n    item = {};\n    for (var col = 0; col < names.length; col++) {\n      item[names[col]] = df[names[col]][row];\n    }\n    results.push(item);\n  }\n  return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\n\nvar SubscriptionTracker = exports.SubscriptionTracker = function () {\n  function SubscriptionTracker(emitter) {\n    _classCallCheck(this, SubscriptionTracker);\n\n    this._emitter = emitter;\n    this._subs = {};\n  }\n\n  _createClass(SubscriptionTracker, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var sub = this._emitter.on(eventType, listener);\n      this._subs[sub] = eventType;\n      return sub;\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var sub = this._emitter.off(eventType, listener);\n      if (sub) {\n        delete this._subs[sub];\n      }\n      return sub;\n    }\n  }, {\n    key: \"removeAllListeners\",\n    value: function removeAllListeners() {\n      var _this = this;\n\n      var current_subs = this._subs;\n      this._subs = {};\n      Object.keys(current_subs).forEach(function (sub) {\n        _this._emitter.off(current_subs[sub], sub);\n      });\n    }\n  }]);\n\n  return SubscriptionTracker;\n}();\n\n},{}],12:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Var = function () {\n  function Var(group, name, /*optional*/value) {\n    _classCallCheck(this, Var);\n\n    this._group = group;\n    this._name = name;\n    this._value = value;\n    this._events = new _events2.default();\n  }\n\n  _createClass(Var, [{\n    key: \"get\",\n    value: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"set\",\n    value: function set(value, /*optional*/event) {\n      if (this._value === value) {\n        // Do nothing; the value hasn't changed\n        return;\n      }\n      var oldValue = this._value;\n      this._value = value;\n      // Alert JavaScript listeners that the value has changed\n      var evt = {};\n      if (event && (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\") {\n        for (var k in event) {\n          if (event.hasOwnProperty(k)) evt[k] = event[k];\n        }\n      }\n      evt.oldValue = oldValue;\n      evt.value = value;\n      this._events.trigger(\"change\", evt, this);\n\n      // TODO: Make this extensible, to let arbitrary back-ends know that\n      // something has changed\n      if (global.Shiny && global.Shiny.onInputChange) {\n        global.Shiny.onInputChange(\".clientValue-\" + (this._group.name !== null ? this._group.name + \"-\" : \"\") + this._name, typeof value === \"undefined\" ? null : value);\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._events.on(eventType, listener);\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._events.off(eventType, listener);\n    }\n  }]);\n\n  return Var;\n}();\n\nexports.default = Var;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./events\":1}]},{},[5])\n//# sourceMappingURL=crosstalk.js.map\n"
  },
  {
    "path": "images/04_variance/lib/crosstalk-1.2.0/scss/crosstalk.scss",
    "content": "/* Adjust margins outwards, so column contents line up with the edges of the\n   parent of container-fluid. */\n.container-fluid.crosstalk-bscols {\n  margin-left: -30px;\n  margin-right: -30px;\n  white-space: normal;\n}\n\n/* But don't adjust the margins outwards if we're directly under the body,\n   i.e. we were the top-level of something at the console. */\nbody > .container-fluid.crosstalk-bscols {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n  display: inline-block;\n  padding-right: 12px;\n  vertical-align: top;\n}\n\n@media only screen and (max-width:480px) {\n  .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n    display: block;\n    padding-right: inherit;\n  }\n}\n\n/* Relevant BS3 styles to make filter_checkbox() look reasonable without Bootstrap */\n.crosstalk-input {\n  margin-bottom: 15px; /* a la .form-group */\n  .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  input[type=\"checkbox\"] {\n    margin: 4px 0 0;\n    margin-top: 1px;\n    line-height: normal;\n  }\n  .checkbox {\n    position: relative;\n    display: block;\n    margin-top: 10px;\n    margin-bottom: 10px;\n  }\n  .checkbox > label{\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: 400;\n    cursor: pointer;\n  }\n  .checkbox input[type=\"checkbox\"],\n  .checkbox-inline input[type=\"checkbox\"] {\n    position: absolute;\n    margin-top: 2px;\n    margin-left: -20px;\n  }\n  .checkbox + .checkbox {\n    margin-top: -5px;\n  }\n  .checkbox-inline {\n    position: relative;\n    display: inline-block;\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: 400;\n    vertical-align: middle;\n    cursor: pointer;\n  }\n  .checkbox-inline + .checkbox-inline {\n    margin-top: 0;\n    margin-left: 10px;\n  }\n}\n"
  },
  {
    "path": "images/04_variance/lib/htmlwidgets-1.3/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = eval(\"(\" + task + \")\");\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n  // Wait until after the document has loaded to render the widgets.\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      window.HTMLWidgets.staticRender();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        window.HTMLWidgets.staticRender();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = eval(\"(\" + o[part] + \")\");\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "images/04_variance/lib/htmlwidgets-1.5.1/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = tryEval(task);\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  // Attempt eval() both with and without enclosing in parentheses.\n  // Note that enclosing coerces a function declaration into\n  // an expression that eval() can parse\n  // (otherwise, a SyntaxError is thrown)\n  function tryEval(code) {\n    var result = null;\n    try {\n      result = eval(code);\n    } catch(error) {\n      if (!error instanceof SyntaxError) {\n        throw error;\n      }\n      try {\n        result = eval(\"(\" + code + \")\");\n      } catch(e) {\n        if (e instanceof SyntaxError) {\n          throw error;\n        } else {\n          throw e;\n        }\n      }\n    }\n    return result;\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n\n  function has_jQuery3() {\n    if (!window.jQuery) {\n      return false;\n    }\n    var $version = window.jQuery.fn.jquery;\n    var $major_version = parseInt($version.split(\".\")[0]);\n    return $major_version >= 3;\n  }\n\n  /*\n  / Shiny 1.4 bumped jQuery from 1.x to 3.x which means jQuery's\n  / on-ready handler (i.e., $(fn)) is now asyncronous (i.e., it now\n  / really means $(setTimeout(fn)).\n  / https://jquery.com/upgrade-guide/3.0/#breaking-change-document-ready-handlers-are-now-asynchronous\n  /\n  / Since Shiny uses $() to schedule initShiny, shiny>=1.4 calls initShiny\n  / one tick later than it did before, which means staticRender() is\n  / called renderValue() earlier than (advanced) widget authors might be expecting.\n  / https://github.com/rstudio/shiny/issues/2630\n  /\n  / For a concrete example, leaflet has some methods (e.g., updateBounds)\n  / which reference Shiny methods registered in initShiny (e.g., setInputValue).\n  / Since leaflet is privy to this life-cycle, it knows to use setTimeout() to\n  / delay execution of those methods (until Shiny methods are ready)\n  / https://github.com/rstudio/leaflet/blob/18ec981/javascript/src/index.js#L266-L268\n  /\n  / Ideally widget authors wouldn't need to use this setTimeout() hack that\n  / leaflet uses to call Shiny methods on a staticRender(). In the long run,\n  / the logic initShiny should be broken up so that method registration happens\n  / right away, but binding happens later.\n  */\n  function maybeStaticRenderLater() {\n    if (shinyMode && has_jQuery3()) {\n      window.jQuery(window.HTMLWidgets.staticRender);\n    } else {\n      window.HTMLWidgets.staticRender();\n    }\n  }\n\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      maybeStaticRenderLater();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        maybeStaticRenderLater();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = tryEval(o[part]);\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "images/04_variance/lib/htmlwidgets-1.5.4/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = tryEval(task);\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  // Attempt eval() both with and without enclosing in parentheses.\n  // Note that enclosing coerces a function declaration into\n  // an expression that eval() can parse\n  // (otherwise, a SyntaxError is thrown)\n  function tryEval(code) {\n    var result = null;\n    try {\n      result = eval(\"(\" + code + \")\");\n    } catch(error) {\n      if (!(error instanceof SyntaxError)) {\n        throw error;\n      }\n      try {\n        result = eval(code);\n      } catch(e) {\n        if (e instanceof SyntaxError) {\n          throw error;\n        } else {\n          throw e;\n        }\n      }\n    }\n    return result;\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n\n  function has_jQuery3() {\n    if (!window.jQuery) {\n      return false;\n    }\n    var $version = window.jQuery.fn.jquery;\n    var $major_version = parseInt($version.split(\".\")[0]);\n    return $major_version >= 3;\n  }\n\n  /*\n  / Shiny 1.4 bumped jQuery from 1.x to 3.x which means jQuery's\n  / on-ready handler (i.e., $(fn)) is now asyncronous (i.e., it now\n  / really means $(setTimeout(fn)).\n  / https://jquery.com/upgrade-guide/3.0/#breaking-change-document-ready-handlers-are-now-asynchronous\n  /\n  / Since Shiny uses $() to schedule initShiny, shiny>=1.4 calls initShiny\n  / one tick later than it did before, which means staticRender() is\n  / called renderValue() earlier than (advanced) widget authors might be expecting.\n  / https://github.com/rstudio/shiny/issues/2630\n  /\n  / For a concrete example, leaflet has some methods (e.g., updateBounds)\n  / which reference Shiny methods registered in initShiny (e.g., setInputValue).\n  / Since leaflet is privy to this life-cycle, it knows to use setTimeout() to\n  / delay execution of those methods (until Shiny methods are ready)\n  / https://github.com/rstudio/leaflet/blob/18ec981/javascript/src/index.js#L266-L268\n  /\n  / Ideally widget authors wouldn't need to use this setTimeout() hack that\n  / leaflet uses to call Shiny methods on a staticRender(). In the long run,\n  / the logic initShiny should be broken up so that method registration happens\n  / right away, but binding happens later.\n  */\n  function maybeStaticRenderLater() {\n    if (shinyMode && has_jQuery3()) {\n      window.jQuery(window.HTMLWidgets.staticRender);\n    } else {\n      window.HTMLWidgets.staticRender();\n    }\n  }\n\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      maybeStaticRenderLater();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        maybeStaticRenderLater();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = tryEval(o[part]);\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "images/04_variance/lib/jquery-1.11.3/jquery-AUTHORS.txt",
    "content": "Authors ordered by first contribution.\n\nJohn Resig <jeresig@gmail.com>\nGilles van den Hoven <gilles0181@gmail.com>\nMichael Geary <mike@geary.com>\nStefan Petre <stefan.petre@gmail.com>\nYehuda Katz <wycats@gmail.com>\nCorey Jewett <cj@syntheticplayground.com>\nKlaus Hartl <klaus.hartl@googlemail.com>\nFranck Marcia <franck.marcia@gmail.com>\nJörn Zaefferer <joern.zaefferer@gmail.com>\nPaul Bakaus <paul.bakaus@googlemail.com>\nBrandon Aaron <brandon.aaron@gmail.com>\nMike Alsup <malsup@gmail.com>\nDave Methvin <dave.methvin@gmail.com>\nEd Engelhardt <edengelhardt@gmail.com>\nSean Catchpole <littlecooldude@gmail.com>\nPaul Mclanahan <pmclanahan@gmail.com>\nDavid Serduke <davidserduke@gmail.com>\nRichard D. Worth <rdworth@gmail.com>\nScott González <scott.gonzalez@gmail.com>\nAriel Flesler <aflesler@gmail.com>\nJon Evans <jon@springyweb.com>\nTJ Holowaychuk <tj@vision-media.ca>\nMichael Bensoussan <mickey@seesmic.com>\nRobert Katić <robert.katic@gmail.com>\nLouis-Rémi Babé <lrbabe@gmail.com>\nEarle Castledine <mrspeaker@gmail.com>\nDamian Janowski <damian.janowski@gmail.com>\nRich Dougherty <rich@rd.gen.nz>\nKim Dalsgaard <kim@kimdalsgaard.com>\nAndrea Giammarchi <andrea.giammarchi@gmail.com>\nMark Gibson <jollytoad@gmail.com>\nKarl Swedberg <kswedberg@gmail.com>\nJustin Meyer <justinbmeyer@gmail.com>\nBen Alman <cowboy@rj3.net>\nJames Padolsey <cla@padolsey.net>\nDavid Petersen <public@petersendidit.com>\nBatiste Bieler <batiste@gmail.com>\nAlexander Farkas <info@corrupt-system.de>\nRick Waldron <waldron.rick@gmail.com>\nFilipe Fortes <filipe@fortes.com>\nNeeraj Singh <neerajdotname@gmail.com>\nPaul Irish <paul.irish@gmail.com>\nIraê Carvalho <irae@irae.pro.br>\nMatt Curry <matt@pseudocoder.com>\nMichael Monteleone <michael@michaelmonteleone.net>\nNoah Sloan <noah.sloan@gmail.com>\nTom Viner <github@viner.tv>\nDouglas Neiner <doug@pixelgraphics.us>\nAdam J. Sontag <ajpiano@ajpiano.com>\nDave Reed <dareed@microsoft.com>\nRalph Whitbeck <ralph.whitbeck@gmail.com>\nCarl Fürstenberg <azatoth@gmail.com>\nJacob Wright <jacwright@gmail.com>\nJ. Ryan Stinnett <jryans@gmail.com>\nunknown <Igen005@.upcorp.ad.uprr.com>\ntemp01 <temp01irc@gmail.com>\nHeungsub Lee <h@subl.ee>\nColin Snover <colin@alpha.zetafleet.com>\nRyan W Tenney <ryan@10e.us>\nPinhook <contact@pinhooklabs.com>\nRon Otten <r.j.g.otten@gmail.com>\nJephte Clain <Jephte.Clain@univ-reunion.fr>\nAnton Matzneller <obhvsbypqghgc@gmail.com>\nAlex Sexton <AlexSexton@gmail.com>\nDan Heberden <danheberden@gmail.com>\nHenri Wiechers <hwiechers@gmail.com>\nRussell Holbrook <russell.holbrook@patch.com>\nJulian Aubourg <aubourg.julian@gmail.com>\nGianni Alessandro Chiappetta <gianni@runlevel6.org>\nScott Jehl <scott@scottjehl.com>\nJames Burke <jrburke@gmail.com>\nJonas Pfenniger <jonas@pfenniger.name>\nXavi Ramirez <xavi.rmz@gmail.com>\nJared Grippe <jared@deadlyicon.com>\nSylvester Keil <sylvester@keil.or.at>\nBrandon Sterne <bsterne@mozilla.com>\nMathias Bynens <mathias@qiwi.be>\nTimmy Willison <timmywillisn@gmail.com>\nCorey Frang <gnarf@gnarf.net>\nDigitalxero <digitalxero>\nAnton Kovalyov <anton@kovalyov.net>\nDavid Murdoch <musicisair@yahoo.com>\nJosh Varner <josh.varner@gmail.com>\nCharles McNulty <cmcnulty@kznf.com>\nJordan Boesch <jboesch26@gmail.com>\nJess Thrysoee <jess@thrysoee.dk>\nMichael Murray <m@murz.net>\nLee Carpenter <elcarpie@gmail.com>\nAlexis Abril <me@alexisabril.com>\nRob Morgan <robbym@gmail.com>\nJohn Firebaugh <john_firebaugh@bigfix.com>\nSam Bisbee <sam@sbisbee.com>\nGilmore Davidson <gilmoreorless@gmail.com>\nBrian Brennan <me@brianlovesthings.com>\nXavier Montillet <xavierm02.net@gmail.com>\nDaniel Pihlstrom <sciolist.se@gmail.com>\nSahab Yazdani <sahab.yazdani+github@gmail.com>\navaly <github-com@agachi.name>\nScott Hughes <hi@scott-hughes.me>\nMike Sherov <mike.sherov@gmail.com>\nGreg Hazel <ghazel@gmail.com>\nSchalk Neethling <schalk@ossreleasefeed.com>\nDenis Knauf <Denis.Knauf@gmail.com>\nTimo Tijhof <krinklemail@gmail.com>\nSteen Nielsen <swinedk@gmail.com>\nAnton Ryzhov <anton@ryzhov.me>\nShi Chuan <shichuanr@gmail.com>\nBerker Peksag <berker.peksag@gmail.com>\nToby Brain <tobyb@freshview.com>\nMatt Mueller <mattmuelle@gmail.com>\nJustin <drakefjustin@gmail.com>\nDaniel Herman <daniel.c.herman@gmail.com>\nOleg Gaidarenko <markelog@gmail.com>\nRichard Gibson <richard.gibson@gmail.com>\nRafaël Blais Masson <rafbmasson@gmail.com>\ncmc3cn <59194618@qq.com>\nJoe Presbrey <presbrey@gmail.com>\nSindre Sorhus <sindresorhus@gmail.com>\nArne de Bree <arne@bukkie.nl>\nVladislav Zarakovsky <vlad.zar@gmail.com>\nAndrew E Monat <amonat@gmail.com>\nOskari <admin@o-programs.com>\nJoao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>\ntsinha <tsinha@Anthonys-MacBook-Pro.local>\nMatt Farmer <matt@frmr.me>\nTrey Hunner <treyhunner@gmail.com>\nJason Moon <jmoon@socialcast.com>\nJeffery To <jeffery.to@gmail.com>\nKris Borchers <kris.borchers@gmail.com>\nVladimir Zhuravlev <private.face@gmail.com>\nJacob Thornton <jacobthornton@gmail.com>\nChad Killingsworth <chadkillingsworth@missouristate.edu>\nNowres Rafid <nowres.rafed@gmail.com>\nDavid Benjamin <davidben@mit.edu>\nUri Gilad <antishok@gmail.com>\nChris Faulkner <thefaulkner@gmail.com>\nElijah Manor <elijah.manor@gmail.com>\nDaniel Chatfield <chatfielddaniel@gmail.com>\nNikita Govorov <nikita.govorov@gmail.com>\nWesley Walser <wwalser@atlassian.com>\nMike Pennisi <mike@mikepennisi.com>\nMarkus Staab <markus.staab@redaxo.de>\nDave Riddle <david@joyvuu.com>\nCallum Macrae <callum@lynxphp.com>\nBenjamin Truyman <bentruyman@gmail.com>\nJames Huston <james@jameshuston.net>\nErick Ruiz de Chávez <erickrdch@gmail.com>\nDavid Bonner <dbonner@cogolabs.com>\nAkintayo Akinwunmi <aakinwunmi@judge.com>\nMORGAN <morgan@morgangraphics.com>\nIsmail Khair <ismail.khair@gmail.com>\nCarl Danley <carldanley@gmail.com>\nMike Petrovich <michael.c.petrovich@gmail.com>\nGreg Lavallee <greglavallee@wapolabs.com>\nDaniel Gálvez <dgalvez@editablething.com>\nSai Lung Wong <sai.wong@huffingtonpost.com>\nTom H Fuertes <TomFuertes@gmail.com>\nRoland Eckl <eckl.roland@googlemail.com>\nJay Merrifield <fracmak@gmail.com>\nAllen J Schmidt Jr <cobrasoft@gmail.com>\nJonathan Sampson <jjdsampson@gmail.com>\nMarcel Greter <marcel.greter@ocbnet.ch>\nMatthias Jäggli <matthias.jaeggli@gmail.com>\nDavid Fox <dfoxinator@gmail.com>\nYiming He <yiminghe@gmail.com>\nDevin Cooper <cooper.semantics@gmail.com>\nPaul Ramos <paul.b.ramos@gmail.com>\nRod Vagg <rod@vagg.org>\nBennett Sorbo <bsorbo@gmail.com>\nSebastian Burkhard <sebi.burkhard@gmail.com>\nnanto <nanto@moon.email.ne.jp>\nDanil Somsikov <danilasomsikov@gmail.com>\nRyunosuke SATO <tricknotes.rs@gmail.com>\nJean Boussier <jean.boussier@gmail.com>\nAdam Coulombe <me@adam.co>\nAndrew Plummer <plummer.andrew@gmail.com>\nMark Raddatz <mraddatz@gmail.com>\nDmitry Gusev <dmitry.gusev@gmail.com>\nMichał Gołębiowski <m.goleb@gmail.com>\nNguyen Phuc Lam <ruado1987@gmail.com>\nTom H Fuertes <tomfuertes@gmail.com>\nBrandon Johnson <bjohn465+github@gmail.com>\nJason Bedard <jason+jquery@jbedard.ca>\nKyle Robinson Young <kyle@dontkry.com>\nRenato Oliveira dos Santos <ros3@cin.ufpe.br>\nChris Talkington <chris@talkingtontech.com>\nEddie Monge <eddie@eddiemonge.com>\nTerry Jones <terry@jon.es>\nJason Merino <jasonmerino@gmail.com>\nJeremy Dunck <jdunck@gmail.com>\nChris Price <price.c@gmail.com>\nAmey Sakhadeo <me@ameyms.com>\nAnthony Ryan <anthonyryan1@gmail.com>\nDominik D. Geyer <dominik.geyer@gmail.com>\nGeorge Kats <katsgeorgeek@gmail.com>\nLihan Li <frankieteardrop@gmail.com>\nRonny Springer <springer.ronny@gmail.com>\nMarian Sollmann <marian.sollmann@cargomedia.ch>\nCorey Frang <gnarf37@gmail.com>\nChris Antaki <ChrisAntaki@gmail.com>\nNoah Hamann <njhamann@gmail.com>\nDavid Hong <d.hong@me.com>\nJakob Stoeck <jakob@pokermania.de>\nChristopher Jones <christopherjonesqed@gmail.com>\nForbes Lindesay <forbes@lindesay.co.uk>\nJohn Paul <john@johnkpaul.com>\nS. Andrew Sheppard <andrew@wq.io>\nLeonardo Balter <leonardo.balter@gmail.com>\nRoman Reiß <me@silverwind.io>\nBenjy Cui <benjytrys@gmail.com>\nRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>\nJohn Hoven <hovenj@gmail.com>\nChristian Kosmowski <ksmwsk@gmail.com>\nLiang Peng <poppinlp@gmail.com>\nTJ VanToll <tj.vantoll@gmail.com>\n"
  },
  {
    "path": "images/04_variance/lib/jquery-1.11.3/jquery.js",
    "content": "/*!\n * jQuery JavaScript Library v1.11.3\n * http://jquery.com/\n *\n * Includes Sizzle.js\n * http://sizzlejs.com/\n *\n * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2015-04-28T16:19Z\n */\n\n(function( global, factory ) {\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\t\t// For CommonJS and CommonJS-like environments where a proper window is present,\n\t\t// execute the factory and get jQuery\n\t\t// For environments that do not inherently posses a window with a document\n\t\t// (such as Node.js), expose a jQuery-making factory as module.exports\n\t\t// This accentuates the need for the creation of a real window\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n}(typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Can't do this because several apps including ASP.NET trace\n// the stack via arguments.caller.callee and Firefox dies if\n// you try to trace through \"use strict\" call chains. (#13335)\n// Support: Firefox 18+\n//\n\nvar deletedIds = [];\n\nvar slice = deletedIds.slice;\n\nvar concat = deletedIds.concat;\n\nvar push = deletedIds.push;\n\nvar indexOf = deletedIds.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar support = {};\n\n\n\nvar\n\tversion = \"1.11.3\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t},\n\n\t// Support: Android<4.1, IE<9\n\t// Make sure we trim BOM and NBSP\n\trtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g,\n\n\t// Matches dashed string for camelizing\n\trmsPrefix = /^-ms-/,\n\trdashAlpha = /-([\\da-z])/gi,\n\n\t// Used by jQuery.camelCase as callback to replace()\n\tfcamelCase = function( all, letter ) {\n\t\treturn letter.toUpperCase();\n\t};\n\njQuery.fn = jQuery.prototype = {\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// Start with an empty selector\n\tselector: \"\",\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\t\treturn num != null ?\n\n\t\t\t// Return just the one element from the set\n\t\t\t( num < 0 ? this[ num + this.length ] : this[ num ] ) :\n\n\t\t\t// Return all the elements in a clean array\n\t\t\tslice.call( this );\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\t\tret.context = this.context;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\t// (You can seed the arguments with an array of args, but this is\n\t// only used internally.)\n\teach: function( callback, args ) {\n\t\treturn jQuery.each( this, callback, args );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map(this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t}));\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor(null);\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: deletedIds.sort,\n\tsplice: deletedIds.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar src, copyIsArray, copy, name, options, clone,\n\t\ttarget = arguments[0] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !jQuery.isFunction(target) ) {\n\t\ttarget = {};\n\t}\n\n\t// extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\t\t// Only deal with non-null/undefined values\n\t\tif ( (options = arguments[ i ]) != null ) {\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tsrc = target[ name ];\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {\n\t\t\t\t\tif ( copyIsArray ) {\n\t\t\t\t\t\tcopyIsArray = false;\n\t\t\t\t\t\tclone = src && jQuery.isArray(src) ? src : [];\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src && jQuery.isPlainObject(src) ? src : {};\n\t\t\t\t\t}\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend({\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\t// See test/unit/core.js for details concerning isFunction.\n\t// Since version 1.3, DOM methods and functions like alert\n\t// aren't supported. They return false on IE (#2968).\n\tisFunction: function( obj ) {\n\t\treturn jQuery.type(obj) === \"function\";\n\t},\n\n\tisArray: Array.isArray || function( obj ) {\n\t\treturn jQuery.type(obj) === \"array\";\n\t},\n\n\tisWindow: function( obj ) {\n\t\t/* jshint eqeqeq: false */\n\t\treturn obj != null && obj == obj.window;\n\t},\n\n\tisNumeric: function( obj ) {\n\t\t// parseFloat NaNs numeric-cast false positives (null|true|false|\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t// adding 1 corrects loss of precision from parseFloat (#15100)\n\t\treturn !jQuery.isArray( obj ) && (obj - parseFloat( obj ) + 1) >= 0;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\tisPlainObject: function( obj ) {\n\t\tvar key;\n\n\t\t// Must be an Object.\n\t\t// Because of IE, we also have to check the presence of the constructor property.\n\t\t// Make sure that DOM nodes and window objects don't pass through, as well\n\t\tif ( !obj || jQuery.type(obj) !== \"object\" || obj.nodeType || jQuery.isWindow( obj ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\ttry {\n\t\t\t// Not own constructor property must be Object\n\t\t\tif ( obj.constructor &&\n\t\t\t\t!hasOwn.call(obj, \"constructor\") &&\n\t\t\t\t!hasOwn.call(obj.constructor.prototype, \"isPrototypeOf\") ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\t// IE8,9 Will throw exceptions on certain host objects #9897\n\t\t\treturn false;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Handle iteration over inherited properties before own properties.\n\t\tif ( support.ownLast ) {\n\t\t\tfor ( key in obj ) {\n\t\t\t\treturn hasOwn.call( obj, key );\n\t\t\t}\n\t\t}\n\n\t\t// Own properties are enumerated firstly, so to speed up,\n\t\t// if last one is own, then all properties are own.\n\t\tfor ( key in obj ) {}\n\n\t\treturn key === undefined || hasOwn.call( obj, key );\n\t},\n\n\ttype: function( obj ) {\n\t\tif ( obj == null ) {\n\t\t\treturn obj + \"\";\n\t\t}\n\t\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\t\tclass2type[ toString.call(obj) ] || \"object\" :\n\t\t\ttypeof obj;\n\t},\n\n\t// Evaluates a script in a global context\n\t// Workarounds based on findings by Jim Driscoll\n\t// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context\n\tglobalEval: function( data ) {\n\t\tif ( data && jQuery.trim( data ) ) {\n\t\t\t// We use execScript on Internet Explorer\n\t\t\t// We use an anonymous function so that context is window\n\t\t\t// rather than jQuery in Firefox\n\t\t\t( window.execScript || function( data ) {\n\t\t\t\twindow[ \"eval\" ].call( window, data );\n\t\t\t} )( data );\n\t\t}\n\t},\n\n\t// Convert dashed to camelCase; used by the css and data modules\n\t// Microsoft forgot to hump their vendor prefix (#9572)\n\tcamelCase: function( string ) {\n\t\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n\t},\n\n\tnodeName: function( elem, name ) {\n\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\t},\n\n\t// args is for internal usage only\n\teach: function( obj, callback, args ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = obj.length,\n\t\t\tisArray = isArraylike( obj );\n\n\t\tif ( args ) {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// A special, fast, case for the most common use of each\n\t\t} else {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// Support: Android<4.1, IE<9\n\ttrim: function( text ) {\n\t\treturn text == null ?\n\t\t\t\"\" :\n\t\t\t( text + \"\" ).replace( rtrim, \"\" );\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArraylike( Object(arr) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\tvar len;\n\n\t\tif ( arr ) {\n\t\t\tif ( indexOf ) {\n\t\t\t\treturn indexOf.call( arr, elem, i );\n\t\t\t}\n\n\t\t\tlen = arr.length;\n\t\t\ti = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t// Skip accessing in sparse arrays\n\t\t\t\tif ( i in arr && arr[ i ] === elem ) {\n\t\t\t\t\treturn i;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn -1;\n\t},\n\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\twhile ( j < len ) {\n\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Workaround casting of .length to NaN on otherwise arraylike objects (e.g., NodeLists)\n\t\tif ( len !== len ) {\n\t\t\twhile ( second[j] !== undefined ) {\n\t\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t\t}\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tisArray = isArraylike( elems ),\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArray ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn concat.apply( [], ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// Bind a function to a context, optionally partially applying any\n\t// arguments.\n\tproxy: function( fn, context ) {\n\t\tvar args, proxy, tmp;\n\n\t\tif ( typeof context === \"string\" ) {\n\t\t\ttmp = fn[ context ];\n\t\t\tcontext = fn;\n\t\t\tfn = tmp;\n\t\t}\n\n\t\t// Quick check to determine if target is callable, in the spec\n\t\t// this throws a TypeError, but we will just return undefined.\n\t\tif ( !jQuery.isFunction( fn ) ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\t// Simulated bind\n\t\targs = slice.call( arguments, 2 );\n\t\tproxy = function() {\n\t\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t\t};\n\n\t\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\t\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\t\treturn proxy;\n\t},\n\n\tnow: function() {\n\t\treturn +( new Date() );\n\t},\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n});\n\n// Populate the class2type map\njQuery.each(\"Boolean Number String Function Array Date RegExp Object Error\".split(\" \"), function(i, name) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n});\n\nfunction isArraylike( obj ) {\n\n\t// Support: iOS 8.2 (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = \"length\" in obj && obj.length,\n\t\ttype = jQuery.type( obj );\n\n\tif ( type === \"function\" || jQuery.isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\tif ( obj.nodeType === 1 && length ) {\n\t\treturn true;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.2.0-pre\n * http://sizzlejs.com/\n *\n * Copyright 2008, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2014-12-16\n */\n(function( window ) {\n\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// General-purpose constants\n\tMAX_NEGATIVE = 1 << 31,\n\n\t// Instance methods\n\thasOwn = ({}).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpush_native = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\t// Use a stripped-down indexOf as it's faster than native\n\t// http://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[i] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\t// http://www.w3.org/TR/css3-syntax/#characters\n\tcharacterEncoding = \"(?:\\\\\\\\.|[\\\\w-]|[^\\\\x00-\\\\xa0])+\",\n\n\t// Loosely modeled on CSS identifier characters\n\t// An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors\n\t// Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier\n\tidentifier = characterEncoding.replace( \"w\", \"w#\" ),\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + characterEncoding + \")(?:\" + whitespace +\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\t\t// \"Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" + whitespace +\n\t\t\"*\\\\]\",\n\n\tpseudos = \":(\" + characterEncoding + \")(?:\\\\((\" +\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" + whitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace + \"*\" ),\n\n\trattributeQuotes = new RegExp( \"=\" + whitespace + \"*([^\\\\]'\\\"]*?)\" + whitespace + \"*\\\\]\", \"g\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + characterEncoding + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + characterEncoding + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + characterEncoding.replace( \"w\", \"w*\" ) + \")\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" + whitespace +\n\t\t\t\"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" + whitespace +\n\t\t\t\"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace + \"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" +\n\t\t\twhitespace + \"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\trescape = /'|\\\\/g,\n\n\t// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\([\\\\da-f]{1,6}\" + whitespace + \"?|(\" + whitespace + \")|.)\", \"ig\" ),\n\tfunescape = function( _, escaped, escapedWhitespace ) {\n\t\tvar high = \"0x\" + escaped - 0x10000;\n\t\t// NaN means non-codepoint\n\t\t// Support: Firefox<24\n\t\t// Workaround erroneous numeric interpretation of +\"0x\"\n\t\treturn high !== high || escapedWhitespace ?\n\t\t\tescaped :\n\t\t\thigh < 0 ?\n\t\t\t\t// BMP codepoint\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\t// Supplemental Plane codepoint (surrogate pair)\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t};\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t(arr = slice.call( preferredDoc.childNodes )),\n\t\tpreferredDoc.childNodes\n\t);\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpush_native.apply( target, slice.call(els) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( (target[j++] = els[i++]) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar match, elem, m, nodeType,\n\t\t// QSA vars\n\t\ti, groups, old, nid, newContext, newSelector;\n\n\tif ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\n\tcontext = context || document;\n\tresults = results || [];\n\tnodeType = context.nodeType;\n\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\tif ( !seed && documentIsHTML ) {\n\n\t\t// Try to shortcut find operations when possible (e.g., not under DocumentFragment)\n\t\tif ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {\n\t\t\t// Speed-up: Sizzle(\"#ID\")\n\t\t\tif ( (m = match[1]) ) {\n\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\telem = context.getElementById( m );\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document (jQuery #6963)\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE, Opera, and Webkit return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t// Context is not a document\n\t\t\t\t\tif ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&\n\t\t\t\t\t\tcontains( context, elem ) && elem.id === m ) {\n\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Speed-up: Sizzle(\"TAG\")\n\t\t\t} else if ( match[2] ) {\n\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\treturn results;\n\n\t\t\t// Speed-up: Sizzle(\".CLASS\")\n\t\t\t} else if ( (m = match[3]) && support.getElementsByClassName ) {\n\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\treturn results;\n\t\t\t}\n\t\t}\n\n\t\t// QSA path\n\t\tif ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {\n\t\t\tnid = old = expando;\n\t\t\tnewContext = context;\n\t\t\tnewSelector = nodeType !== 1 && selector;\n\n\t\t\t// qSA works strangely on Element-rooted queries\n\t\t\t// We can work around this by specifying an extra ID on the root\n\t\t\t// and working up from there (Thanks to Andrew Dupont for the technique)\n\t\t\t// IE 8 doesn't work on object elements\n\t\t\tif ( nodeType === 1 && context.nodeName.toLowerCase() !== \"object\" ) {\n\t\t\t\tgroups = tokenize( selector );\n\n\t\t\t\tif ( (old = context.getAttribute(\"id\")) ) {\n\t\t\t\t\tnid = old.replace( rescape, \"\\\\$&\" );\n\t\t\t\t} else {\n\t\t\t\t\tcontext.setAttribute( \"id\", nid );\n\t\t\t\t}\n\t\t\t\tnid = \"[id='\" + nid + \"'] \";\n\n\t\t\t\ti = groups.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tgroups[i] = nid + toSelector( groups[i] );\n\t\t\t\t}\n\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) || context;\n\t\t\t\tnewSelector = groups.join(\",\");\n\t\t\t}\n\n\t\t\tif ( newSelector ) {\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch(qsaError) {\n\t\t\t\t} finally {\n\t\t\t\t\tif ( !old ) {\n\t\t\t\t\t\tcontext.removeAttribute(\"id\");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {Function(string, Object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn (cache[ key + \" \" ] = value);\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created div and expects a boolean result\n */\nfunction assert( fn ) {\n\tvar div = document.createElement(\"div\");\n\n\ttry {\n\t\treturn !!fn( div );\n\t} catch (e) {\n\t\treturn false;\n\t} finally {\n\t\t// Remove from its parent by default\n\t\tif ( div.parentNode ) {\n\t\t\tdiv.parentNode.removeChild( div );\n\t\t}\n\t\t// release memory in IE\n\t\tdiv = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split(\"|\"),\n\t\ti = attrs.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[i] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\t( ~b.sourceIndex || MAX_NEGATIVE ) -\n\t\t\t( ~a.sourceIndex || MAX_NEGATIVE );\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( (cur = cur.nextSibling) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn (name === \"input\" || name === \"button\") && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction(function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction(function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ (j = matchIndexes[i]) ] ) {\n\t\t\t\t\tseed[j] = !(matches[j] = seed[j]);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t});\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\t// documentElement is verified for cases where it doesn't yet exist\n\t// (such as loading iframes in IE - #4833)\n\tvar documentElement = elem && (elem.ownerDocument || elem).documentElement;\n\treturn documentElement ? documentElement.nodeName !== \"HTML\" : false;\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, parent,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// If no document and documentElement is available, return\n\tif ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Set our document\n\tdocument = doc;\n\tdocElem = doc.documentElement;\n\tparent = doc.defaultView;\n\n\t// Support: IE>8\n\t// If iframe document is assigned to \"document\" variable and if iframe has been reloaded,\n\t// IE will throw \"permission denied\" error when accessing \"document\" variable, see jQuery #13936\n\t// IE6-8 do not support the defaultView property so parent will be undefined\n\tif ( parent && parent !== parent.top ) {\n\t\t// IE11 does not have attachEvent, so all must suffer\n\t\tif ( parent.addEventListener ) {\n\t\t\tparent.addEventListener( \"unload\", unloadHandler, false );\n\t\t} else if ( parent.attachEvent ) {\n\t\t\tparent.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t/* Support tests\n\t---------------------------------------------------------------------- */\n\tdocumentIsHTML = !isXML( doc );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert(function( div ) {\n\t\tdiv.className = \"i\";\n\t\treturn !div.getAttribute(\"className\");\n\t});\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert(function( div ) {\n\t\tdiv.appendChild( doc.createComment(\"\") );\n\t\treturn !div.getElementsByTagName(\"*\").length;\n\t});\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( doc.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert(function( div ) {\n\t\tdocElem.appendChild( div ).id = expando;\n\t\treturn !doc.getElementsByName || !doc.getElementsByName( expando ).length;\n\t});\n\n\t// ID find and filter\n\tif ( support.getById ) {\n\t\tExpr.find[\"ID\"] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar m = context.getElementById( id );\n\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\treturn m && m.parentNode ? [ m ] : [];\n\t\t\t}\n\t\t};\n\t\tExpr.filter[\"ID\"] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute(\"id\") === attrId;\n\t\t\t};\n\t\t};\n\t} else {\n\t\t// Support: IE6/7\n\t\t// getElementById is not reliable as a find shortcut\n\t\tdelete Expr.find[\"ID\"];\n\n\t\tExpr.filter[\"ID\"] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" && elem.getAttributeNode(\"id\");\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[\"TAG\"] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( (elem = results[i++]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[\"CLASS\"] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See http://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert(function( div ) {\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// http://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( div ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\f]' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( div.querySelectorAll(\"[msallowcapture^='']\").length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !div.querySelectorAll(\"[selected]\").length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.2+, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.7+\n\t\t\tif ( !div.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push(\"~=\");\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":checked\").length ) {\n\t\t\t\trbuggyQSA.push(\":checked\");\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibing-combinator selector` fails\n\t\t\tif ( !div.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push(\".#.+[+~]\");\n\t\t\t}\n\t\t});\n\n\t\tassert(function( div ) {\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = doc.createElement(\"input\");\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tdiv.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( div.querySelectorAll(\"[name=d]\").length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":enabled\").length ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tdiv.querySelectorAll(\"*,:x\");\n\t\t\trbuggyQSA.push(\",.*:\");\n\t\t});\n\t}\n\n\tif ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector) )) ) {\n\n\t\tassert(function( div ) {\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( div, \"div\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( div, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t});\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join(\"|\") );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join(\"|\") );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully does not implement inclusive descendent\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t));\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( (b = b.parentNode) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\tcompare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\tif ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t\tif ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\t\t\treturn a === doc ? -1 :\n\t\t\t\tb === doc ? 1 :\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[i] === bp[i] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[i], bp[i] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\tap[i] === preferredDoc ? -1 :\n\t\t\tbp[i] === preferredDoc ? 1 :\n\t\t\t0;\n\t};\n\n\treturn doc;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\t// Make sure that attribute selectors are quoted\n\texpr = expr.replace( rattributeQuotes, \"='$1']\" );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t// fragment in IE 9\n\t\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch (e) {}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\t// Set document vars if needed\n\tif ( ( context.ownerDocument || context ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t(val = elem.getAttributeNode(name)) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( (elem = results[i++]) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( (node = elem[i++]) ) {\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[1] = match[1].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[3] = ( match[3] || match[4] || match[5] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[2] === \"~=\" ) {\n\t\t\t\tmatch[3] = \" \" + match[3] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[1] = match[1].toLowerCase();\n\n\t\t\tif ( match[1].slice( 0, 3 ) === \"nth\" ) {\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[3] ) {\n\t\t\t\t\tSizzle.error( match[0] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === \"even\" || match[3] === \"odd\" ) );\n\t\t\t\tmatch[5] = +( ( match[7] + match[8] ) || match[3] === \"odd\" );\n\n\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[3] ) {\n\t\t\t\tSizzle.error( match[0] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[6] && match[2];\n\n\t\t\tif ( matchExpr[\"CHILD\"].test( match[0] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[3] ) {\n\t\t\t\tmatch[2] = match[4] || match[5] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t(excess = tokenize( unquoted, true )) &&\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t(excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[0] = match[0].slice( 0, excess );\n\t\t\t\tmatch[2] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() { return true; } :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t(pattern = new RegExp( \"(^|\" + whitespace + \")\" + className + \"(\" + whitespace + \"|$)\" )) &&\n\t\t\t\tclassCache( className, function( elem ) {\n\t\t\t\t\treturn pattern.test( typeof elem.className === \"string\" && elem.className || typeof elem.getAttribute !== \"undefined\" && elem.getAttribute(\"class\") || \"\" );\n\t\t\t\t});\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tvar cache, outerCache, node, diff, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( (node = node[ dir ]) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\t\t\t\t\t\t\touterCache = parent[ expando ] || (parent[ expando ] = {});\n\t\t\t\t\t\t\tcache = outerCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[0] === dirruns && cache[1];\n\t\t\t\t\t\t\tdiff = cache[0] === dirruns && cache[2];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\touterCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t} else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {\n\t\t\t\t\t\t\tdiff = cache[1];\n\n\t\t\t\t\t\t// xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\tif ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {\n\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t(node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction(function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[i] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[i] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction(function( selector ) {\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction(function( seed, matches, context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = unmatched[i]) ) {\n\t\t\t\t\t\t\tseed[i] = !(matches[i] = elem);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}) :\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tinput[0] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[0] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t}),\n\n\t\t\"has\": markFunction(function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t}),\n\n\t\t\"contains\": markFunction(function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t}),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test(lang || \"\") ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( (elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute(\"xml:lang\") || elem.getAttribute(\"lang\")) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( (elem = elem.parentNode) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t}),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": function( elem ) {\n\t\t\treturn elem.disabled === false;\n\t\t},\n\n\t\t\"disabled\": function( elem ) {\n\t\t\treturn elem.disabled === true;\n\t\t},\n\n\t\t\"checked\": function( elem ) {\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn (nodeName === \"input\" && !!elem.checked) || (nodeName === \"option\" && !!elem.selected);\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[\"empty\"]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( (attr = elem.getAttribute(\"type\")) == null || attr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo(function() {\n\t\t\treturn [ 0 ];\n\t\t}),\n\n\t\t\"last\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t}),\n\n\t\t\"eq\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t}),\n\n\t\t\"even\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"odd\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"lt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"gt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t})\n\t}\n};\n\nExpr.pseudos[\"nth\"] = Expr.pseudos[\"eq\"];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || (match = rcomma.exec( soFar )) ) {\n\t\t\tif ( match ) {\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[0].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( (tokens = []) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( (match = rcombinators.exec( soFar )) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push({\n\t\t\t\tvalue: matched,\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[0].replace( rtrim, \" \" )\n\t\t\t});\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||\n\t\t\t\t(match = preFilters[ type ]( match ))) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push({\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t});\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[i].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tcheckNonElements = base && dir === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from dir caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || (elem[ expando ] = {});\n\t\t\t\t\t\tif ( (oldCache = outerCache[ dir ]) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn (newCache[ 2 ] = oldCache[ 2 ]);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\touterCache[ dir ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[i]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[0];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[i], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (elem = unmatched[i]) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction(function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts( selector || \"*\", context.nodeType ? [ context ] : context, [] ),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( (elem = temp[i]) ) {\n\t\t\t\t\tmatcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = matcherOut[i]) ) {\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( (matcherIn[i] = elem) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, (matcherOut = []), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( (elem = matcherOut[i]) &&\n\t\t\t\t\t\t(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {\n\n\t\t\t\t\t\tseed[temp] = !(results[temp] = elem);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t});\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[0].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[\" \"],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t(checkContext = context).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (matcher = Expr.relative[ tokens[i].type ]) ) {\n\t\t\tmatchers = [ addCombinator(elementMatcher( matchers ), matcher) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[j].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\t\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\t\ttokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" })\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( (tokens = tokens.slice( j )) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[\"TAG\"]( \"*\", outermost ),\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\t\t\t\toutermostContext = context !== document && context;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Keep `i` a string if there are no elements so `matchedCount` will be \"00\" below\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && (elem = elems[i]) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (matcher = elementMatchers[j++]) ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( (elem = !matcher && elem) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\tmatchedCount += i;\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (matcher = setMatchers[j++]) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !(unmatched[i] || setMatched[i]) ) {\n\t\t\t\t\t\t\t\tsetMatched[i] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[i] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( (selector = compiled.selector || selector) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is no seed and only one group\n\tif ( match.length === 1 ) {\n\n\t\t// Take a shortcut and set the context if the root selector is an ID\n\t\ttokens = match[0] = match[0].slice( 0 );\n\t\tif ( tokens.length > 2 && (token = tokens[0]).type === \"ID\" &&\n\t\t\t\tsupport.getById && context.nodeType === 9 && documentIsHTML &&\n\t\t\t\tExpr.relative[ tokens[1].type ] ) {\n\n\t\t\tcontext = ( Expr.find[\"ID\"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[\"needsContext\"].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[i];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ (type = token.type) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( (find = Expr.find[ type ]) ) {\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( (seed = find(\n\t\t\t\t\ttoken.matches[0].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context\n\t\t\t\t)) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\trsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split(\"\").sort( sortOrder ).join(\"\") === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert(function( div1 ) {\n\t// Should return 1, but returns 4 (following)\n\treturn div1.compareDocumentPosition( document.createElement(\"div\") ) & 1;\n});\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert(function( div ) {\n\tdiv.innerHTML = \"<a href='#'></a>\";\n\treturn div.firstChild.getAttribute(\"href\") === \"#\" ;\n}) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert(function( div ) {\n\tdiv.innerHTML = \"<input/>\";\n\tdiv.firstChild.setAttribute( \"value\", \"\" );\n\treturn div.firstChild.getAttribute( \"value\" ) === \"\";\n}) ) {\n\taddHandle( \"value\", function( elem, name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert(function( div ) {\n\treturn div.getAttribute(\"disabled\") == null;\n}) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t\t(val = elem.getAttributeNode( name )) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\tnull;\n\t\t}\n\t});\n}\n\nreturn Sizzle;\n\n})( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\njQuery.expr[\":\"] = jQuery.expr.pseudos;\njQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\n\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\nvar rsingleTag = (/^<(\\w+)\\s*\\/?>(?:<\\/\\1>|)$/);\n\n\n\nvar risSimple = /^.[^:#\\[\\.,]*$/;\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( jQuery.isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\t/* jshint -W018 */\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t});\n\n\t}\n\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t});\n\n\t}\n\n\tif ( typeof qualifier === \"string\" ) {\n\t\tif ( risSimple.test( qualifier ) ) {\n\t\t\treturn jQuery.filter( qualifier, elements, not );\n\t\t}\n\n\t\tqualifier = jQuery.filter( qualifier, elements );\n\t}\n\n\treturn jQuery.grep( elements, function( elem ) {\n\t\treturn ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not;\n\t});\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\treturn elems.length === 1 && elem.nodeType === 1 ?\n\t\tjQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :\n\t\tjQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\t\treturn elem.nodeType === 1;\n\t\t}));\n};\n\njQuery.fn.extend({\n\tfind: function( selector ) {\n\t\tvar i,\n\t\t\tret = [],\n\t\t\tself = this,\n\t\t\tlen = self.length;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter(function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}) );\n\t\t}\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\t// Needed because $( selector, context ) becomes $( context ).find( selector )\n\t\tret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );\n\t\tret.selector = this.selector ? this.selector + \" \" + selector : selector;\n\t\treturn ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], false) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], true) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n});\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// Use the correct document accordingly with window argument (sandbox)\n\tdocument = window.document,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]*))$/,\n\n\tinit = jQuery.fn.init = function( selector, context ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector.charAt(0) === \"<\" && selector.charAt( selector.length - 1 ) === \">\" && selector.length >= 3 ) {\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && (match[1] || !context) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[1] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[0] : context;\n\n\t\t\t\t\t// scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[1],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( jQuery.isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[2] );\n\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE and Opera return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id !== match[2] ) {\n\t\t\t\t\t\t\treturn rootjQuery.find( selector );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Otherwise, we inject the element directly into the jQuery object\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t\tthis[0] = elem;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.context = document;\n\t\t\t\t\tthis.selector = selector;\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || rootjQuery ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis.context = this[0] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( jQuery.isFunction( selector ) ) {\n\t\t\treturn typeof rootjQuery.ready !== \"undefined\" ?\n\t\t\t\trootjQuery.ready( selector ) :\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\tif ( selector.selector !== undefined ) {\n\t\t\tthis.selector = selector.selector;\n\t\t\tthis.context = selector.context;\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\t// methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.extend({\n\tdir: function( elem, dir, until ) {\n\t\tvar matched = [],\n\t\t\tcur = elem[ dir ];\n\n\t\twhile ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {\n\t\t\tif ( cur.nodeType === 1 ) {\n\t\t\t\tmatched.push( cur );\n\t\t\t}\n\t\t\tcur = cur[dir];\n\t\t}\n\t\treturn matched;\n\t},\n\n\tsibling: function( n, elem ) {\n\t\tvar r = [];\n\n\t\tfor ( ; n; n = n.nextSibling ) {\n\t\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\t\tr.push( n );\n\t\t\t}\n\t\t}\n\n\t\treturn r;\n\t}\n});\n\njQuery.fn.extend({\n\thas: function( target ) {\n\t\tvar i,\n\t\t\ttargets = jQuery( target, this ),\n\t\t\tlen = targets.length;\n\n\t\treturn this.filter(function() {\n\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[i] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\tpos = rneedsContext.test( selectors ) || typeof selectors !== \"string\" ?\n\t\t\t\tjQuery( selectors, context || this.context ) :\n\t\t\t\t0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tfor ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) {\n\t\t\t\t// Always skip document fragments\n\t\t\t\tif ( cur.nodeType < 11 && (pos ?\n\t\t\t\t\tpos.index(cur) > -1 :\n\n\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\tjQuery.find.matchesSelector(cur, selectors)) ) {\n\n\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within\n\t// the matched set of elements\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn jQuery.inArray( this[0], jQuery( elem ) );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn jQuery.inArray(\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[0] : elem, this );\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.unique(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter(selector)\n\t\t);\n\t}\n});\n\nfunction sibling( cur, dir ) {\n\tdo {\n\t\tcur = cur[ dir ];\n\t} while ( cur && cur.nodeType !== 1 );\n\n\treturn cur;\n}\n\njQuery.each({\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn jQuery.dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn jQuery.sibling( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\treturn jQuery.nodeName( elem, \"iframe\" ) ?\n\t\t\telem.contentDocument || elem.contentWindow.document :\n\t\t\tjQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar ret = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tret = jQuery.filter( selector, ret );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tret = jQuery.unique( ret );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tret = ret.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\nvar rnotwhite = (/\\S+/g);\n\n\n\n// String to Object options format cache\nvar optionsCache = {};\n\n// Convert String-formatted options into Object-formatted ones and store in cache\nfunction createOptions( options ) {\n\tvar object = optionsCache[ options ] = {};\n\tjQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t});\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\t( optionsCache[ options ] || createOptions( options ) ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\t\t// Last fire value (for non-forgettable lists)\n\t\tmemory,\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\t\t// End of the loop when firing\n\t\tfiringLength,\n\t\t// Index of currently firing callback (modified by remove if needed)\n\t\tfiringIndex,\n\t\t// First callback to fire (used internally by add and fireWith)\n\t\tfiringStart,\n\t\t// Actual callback list\n\t\tlist = [],\n\t\t// Stack of fire calls for repeatable lists\n\t\tstack = !options.once && [],\n\t\t// Fire callbacks\n\t\tfire = function( data ) {\n\t\t\tmemory = options.memory && data;\n\t\t\tfired = true;\n\t\t\tfiringIndex = firingStart || 0;\n\t\t\tfiringStart = 0;\n\t\t\tfiringLength = list.length;\n\t\t\tfiring = true;\n\t\t\tfor ( ; list && firingIndex < firingLength; firingIndex++ ) {\n\t\t\t\tif ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {\n\t\t\t\t\tmemory = false; // To prevent further calls using add\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tfiring = false;\n\t\t\tif ( list ) {\n\t\t\t\tif ( stack ) {\n\t\t\t\t\tif ( stack.length ) {\n\t\t\t\t\t\tfire( stack.shift() );\n\t\t\t\t\t}\n\t\t\t\t} else if ( memory ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t} else {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t// Actual Callbacks object\n\t\tself = {\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\t// First, we save the current length\n\t\t\t\t\tvar start = list.length;\n\t\t\t\t\t(function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tvar type = jQuery.type( arg );\n\t\t\t\t\t\t\tif ( type === \"function\" ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && type !== \"string\" ) {\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t})( arguments );\n\t\t\t\t\t// Do we need to add the callbacks to the\n\t\t\t\t\t// current firing batch?\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tfiringLength = list.length;\n\t\t\t\t\t// With memory, if we're not firing then\n\t\t\t\t\t// we should call right away\n\t\t\t\t\t} else if ( memory ) {\n\t\t\t\t\t\tfiringStart = start;\n\t\t\t\t\t\tfire( memory );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\t\tvar index;\n\t\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\t\tlist.splice( index, 1 );\n\t\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\t\t\tif ( index <= firingLength ) {\n\t\t\t\t\t\t\t\t\tfiringLength--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );\n\t\t\t},\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tlist = [];\n\t\t\t\tfiringLength = 0;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Have the list do nothing anymore\n\t\t\tdisable: function() {\n\t\t\t\tlist = stack = memory = undefined;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it disabled?\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\t\t\t// Lock the list in its current state\n\t\t\tlock: function() {\n\t\t\t\tstack = undefined;\n\t\t\t\tif ( !memory ) {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it locked?\n\t\t\tlocked: function() {\n\t\t\t\treturn !stack;\n\t\t\t},\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( list && ( !fired || stack ) ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tstack.push( args );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tfire( args );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\njQuery.extend({\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\t\t\t\t// action, add listener, listener list, final state\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks(\"once memory\"), \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks(\"once memory\"), \"rejected\" ],\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks(\"memory\") ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\tthen: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\t\t\t\t\treturn jQuery.Deferred(function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\t\t\t\t\tvar fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];\n\t\t\t\t\t\t\t// deferred[ done | fail | progress ] for forwarding actions to newDefer\n\t\t\t\t\t\t\tdeferred[ tuple[1] ](function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && jQuery.isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject )\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t});\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t}).promise();\n\t\t\t\t},\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Keep pipe for back-compat\n\t\tpromise.pipe = promise.then;\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 3 ];\n\n\t\t\t// promise[ done | fail | progress ] = list.add\n\t\t\tpromise[ tuple[1] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(function() {\n\t\t\t\t\t// state = [ resolved | rejected ]\n\t\t\t\t\tstate = stateString;\n\n\t\t\t\t// [ reject_list | resolve_list ].disable; progress_list.lock\n\t\t\t\t}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );\n\t\t\t}\n\n\t\t\t// deferred[ resolve | reject | notify ]\n\t\t\tdeferred[ tuple[0] ] = function() {\n\t\t\t\tdeferred[ tuple[0] + \"With\" ]( this === deferred ? promise : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\t\t\tdeferred[ tuple[0] + \"With\" ] = list.fireWith;\n\t\t});\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( subordinate /* , ..., subordinateN */ ) {\n\t\tvar i = 0,\n\t\t\tresolveValues = slice.call( arguments ),\n\t\t\tlength = resolveValues.length,\n\n\t\t\t// the count of uncompleted subordinates\n\t\t\tremaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,\n\n\t\t\t// the master Deferred. If resolveValues consist of only a single Deferred, just use that.\n\t\t\tdeferred = remaining === 1 ? subordinate : jQuery.Deferred(),\n\n\t\t\t// Update function for both resolve and progress values\n\t\t\tupdateFunc = function( i, contexts, values ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tcontexts[ i ] = this;\n\t\t\t\t\tvalues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( values === progressValues ) {\n\t\t\t\t\t\tdeferred.notifyWith( contexts, values );\n\n\t\t\t\t\t} else if ( !(--remaining) ) {\n\t\t\t\t\t\tdeferred.resolveWith( contexts, values );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t},\n\n\t\t\tprogressValues, progressContexts, resolveContexts;\n\n\t\t// add listeners to Deferred subordinates; treat others as resolved\n\t\tif ( length > 1 ) {\n\t\t\tprogressValues = new Array( length );\n\t\t\tprogressContexts = new Array( length );\n\t\t\tresolveContexts = new Array( length );\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {\n\t\t\t\t\tresolveValues[ i ].promise()\n\t\t\t\t\t\t.done( updateFunc( i, resolveContexts, resolveValues ) )\n\t\t\t\t\t\t.fail( deferred.reject )\n\t\t\t\t\t\t.progress( updateFunc( i, progressContexts, progressValues ) );\n\t\t\t\t} else {\n\t\t\t\t\t--remaining;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// if we're not waiting on anything, resolve the master\n\t\tif ( !remaining ) {\n\t\t\tdeferred.resolveWith( resolveContexts, resolveValues );\n\t\t}\n\n\t\treturn deferred.promise();\n\t}\n});\n\n\n// The deferred used on DOM ready\nvar readyList;\n\njQuery.fn.ready = function( fn ) {\n\t// Add the callback\n\tjQuery.ready.promise().done( fn );\n\n\treturn this;\n};\n\njQuery.extend({\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Hold (or release) the ready event\n\tholdReady: function( hold ) {\n\t\tif ( hold ) {\n\t\t\tjQuery.readyWait++;\n\t\t} else {\n\t\t\tjQuery.ready( true );\n\t\t}\n\t},\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).\n\t\tif ( !document.body ) {\n\t\t\treturn setTimeout( jQuery.ready );\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\n\t\t// Trigger any bound ready events\n\t\tif ( jQuery.fn.triggerHandler ) {\n\t\t\tjQuery( document ).triggerHandler( \"ready\" );\n\t\t\tjQuery( document ).off( \"ready\" );\n\t\t}\n\t}\n});\n\n/**\n * Clean-up method for dom ready events\n */\nfunction detach() {\n\tif ( document.addEventListener ) {\n\t\tdocument.removeEventListener( \"DOMContentLoaded\", completed, false );\n\t\twindow.removeEventListener( \"load\", completed, false );\n\n\t} else {\n\t\tdocument.detachEvent( \"onreadystatechange\", completed );\n\t\twindow.detachEvent( \"onload\", completed );\n\t}\n}\n\n/**\n * The ready event handler and self cleanup method\n */\nfunction completed() {\n\t// readyState === \"complete\" is good enough for us to call the dom ready in oldIE\n\tif ( document.addEventListener || event.type === \"load\" || document.readyState === \"complete\" ) {\n\t\tdetach();\n\t\tjQuery.ready();\n\t}\n}\n\njQuery.ready.promise = function( obj ) {\n\tif ( !readyList ) {\n\n\t\treadyList = jQuery.Deferred();\n\n\t\t// Catch cases where $(document).ready() is called after the browser event has already occurred.\n\t\t// we once tried to use readyState \"interactive\" here, but it caused issues like the one\n\t\t// discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15\n\t\tif ( document.readyState === \"complete\" ) {\n\t\t\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\t\t\tsetTimeout( jQuery.ready );\n\n\t\t// Standards-based browsers support DOMContentLoaded\n\t\t} else if ( document.addEventListener ) {\n\t\t\t// Use the handy event callback\n\t\t\tdocument.addEventListener( \"DOMContentLoaded\", completed, false );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.addEventListener( \"load\", completed, false );\n\n\t\t// If IE event model is used\n\t\t} else {\n\t\t\t// Ensure firing before onload, maybe late but safe also for iframes\n\t\t\tdocument.attachEvent( \"onreadystatechange\", completed );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.attachEvent( \"onload\", completed );\n\n\t\t\t// If IE and not a frame\n\t\t\t// continually check to see if the document is ready\n\t\t\tvar top = false;\n\n\t\t\ttry {\n\t\t\t\ttop = window.frameElement == null && document.documentElement;\n\t\t\t} catch(e) {}\n\n\t\t\tif ( top && top.doScroll ) {\n\t\t\t\t(function doScrollCheck() {\n\t\t\t\t\tif ( !jQuery.isReady ) {\n\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t// Use the trick by Diego Perini\n\t\t\t\t\t\t\t// http://javascript.nwbox.com/IEContentLoaded/\n\t\t\t\t\t\t\ttop.doScroll(\"left\");\n\t\t\t\t\t\t} catch(e) {\n\t\t\t\t\t\t\treturn setTimeout( doScrollCheck, 50 );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// detach all dom ready events\n\t\t\t\t\t\tdetach();\n\n\t\t\t\t\t\t// and execute any waiting functions\n\t\t\t\t\t\tjQuery.ready();\n\t\t\t\t\t}\n\t\t\t\t})();\n\t\t\t}\n\t\t}\n\t}\n\treturn readyList.promise( obj );\n};\n\n\nvar strundefined = typeof undefined;\n\n\n\n// Support: IE<9\n// Iteration over object's inherited properties before its own\nvar i;\nfor ( i in jQuery( support ) ) {\n\tbreak;\n}\nsupport.ownLast = i !== \"0\";\n\n// Note: most support tests are defined in their respective modules.\n// false until the test is run\nsupport.inlineBlockNeedsLayout = false;\n\n// Execute ASAP in case we need to set body.style.zoom\njQuery(function() {\n\t// Minified: var a,b,c,d\n\tvar val, div, body, container;\n\n\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\tif ( !body || !body.style ) {\n\t\t// Return for frameset docs that don't have a body\n\t\treturn;\n\t}\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tcontainer = document.createElement( \"div\" );\n\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\tbody.appendChild( container ).appendChild( div );\n\n\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t// Support: IE<8\n\t\t// Check if natively block-level elements act like inline-block\n\t\t// elements when setting their display to 'inline' and giving\n\t\t// them layout\n\t\tdiv.style.cssText = \"display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1\";\n\n\t\tsupport.inlineBlockNeedsLayout = val = div.offsetWidth === 3;\n\t\tif ( val ) {\n\t\t\t// Prevent IE 6 from affecting layout for positioned elements #11048\n\t\t\t// Prevent IE from shrinking the body in IE 7 mode #12869\n\t\t\t// Support: IE<8\n\t\t\tbody.style.zoom = 1;\n\t\t}\n\t}\n\n\tbody.removeChild( container );\n});\n\n\n\n\n(function() {\n\tvar div = document.createElement( \"div\" );\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\n/**\n * Determines whether an object can have data\n */\njQuery.acceptData = function( elem ) {\n\tvar noData = jQuery.noData[ (elem.nodeName + \" \").toLowerCase() ],\n\t\tnodeType = +elem.nodeType || 1;\n\n\t// Do not set data on non-element DOM nodes because it will not be cleared (#8335).\n\treturn nodeType !== 1 && nodeType !== 9 ?\n\t\tfalse :\n\n\t\t// Nodes accept data unless otherwise specified; rejection can be conditional\n\t\t!noData || noData !== true && elem.getAttribute(\"classid\") === noData;\n};\n\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /([A-Z])/g;\n\nfunction dataAttr( elem, key, data ) {\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\n\t\tvar name = \"data-\" + key.replace( rmultiDash, \"-$1\" ).toLowerCase();\n\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = data === \"true\" ? true :\n\t\t\t\t\tdata === \"false\" ? false :\n\t\t\t\t\tdata === \"null\" ? null :\n\t\t\t\t\t// Only convert to a number if it doesn't change the string\n\t\t\t\t\t+data + \"\" === data ? +data :\n\t\t\t\t\trbrace.test( data ) ? jQuery.parseJSON( data ) :\n\t\t\t\t\tdata;\n\t\t\t} catch( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tjQuery.data( elem, key, data );\n\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\n\treturn data;\n}\n\n// checks a cache object for emptiness\nfunction isEmptyDataObject( obj ) {\n\tvar name;\n\tfor ( name in obj ) {\n\n\t\t// if the public data object is empty, the private is still empty\n\t\tif ( name === \"data\" && jQuery.isEmptyObject( obj[name] ) ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( name !== \"toJSON\" ) {\n\t\t\treturn false;\n\t\t}\n\t}\n\n\treturn true;\n}\n\nfunction internalData( elem, name, data, pvt /* Internal Use Only */ ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar ret, thisCache,\n\t\tinternalKey = jQuery.expando,\n\n\t\t// We have to handle DOM nodes and JS objects differently because IE6-7\n\t\t// can't GC object references properly across the DOM-JS boundary\n\t\tisNode = elem.nodeType,\n\n\t\t// Only DOM nodes need the global jQuery cache; JS object data is\n\t\t// attached directly to the object so GC can occur automatically\n\t\tcache = isNode ? jQuery.cache : elem,\n\n\t\t// Only defining an ID for JS objects if its cache already exists allows\n\t\t// the code to shortcut on the same path as a DOM node with no cache\n\t\tid = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;\n\n\t// Avoid doing any more work than we need to when trying to get data on an\n\t// object that has no data at all\n\tif ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === \"string\" ) {\n\t\treturn;\n\t}\n\n\tif ( !id ) {\n\t\t// Only DOM nodes need a new unique ID for each element since their data\n\t\t// ends up in the global cache\n\t\tif ( isNode ) {\n\t\t\tid = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++;\n\t\t} else {\n\t\t\tid = internalKey;\n\t\t}\n\t}\n\n\tif ( !cache[ id ] ) {\n\t\t// Avoid exposing jQuery metadata on plain JS objects when the object\n\t\t// is serialized using JSON.stringify\n\t\tcache[ id ] = isNode ? {} : { toJSON: jQuery.noop };\n\t}\n\n\t// An object can be passed to jQuery.data instead of a key/value pair; this gets\n\t// shallow copied over onto the existing cache\n\tif ( typeof name === \"object\" || typeof name === \"function\" ) {\n\t\tif ( pvt ) {\n\t\t\tcache[ id ] = jQuery.extend( cache[ id ], name );\n\t\t} else {\n\t\t\tcache[ id ].data = jQuery.extend( cache[ id ].data, name );\n\t\t}\n\t}\n\n\tthisCache = cache[ id ];\n\n\t// jQuery data() is stored in a separate object inside the object's internal data\n\t// cache in order to avoid key collisions between internal data and user-defined\n\t// data.\n\tif ( !pvt ) {\n\t\tif ( !thisCache.data ) {\n\t\t\tthisCache.data = {};\n\t\t}\n\n\t\tthisCache = thisCache.data;\n\t}\n\n\tif ( data !== undefined ) {\n\t\tthisCache[ jQuery.camelCase( name ) ] = data;\n\t}\n\n\t// Check for both converted-to-camel and non-converted data property names\n\t// If a data property was specified\n\tif ( typeof name === \"string\" ) {\n\n\t\t// First Try to find as-is property data\n\t\tret = thisCache[ name ];\n\n\t\t// Test for null|undefined property data\n\t\tif ( ret == null ) {\n\n\t\t\t// Try to find the camelCased property\n\t\t\tret = thisCache[ jQuery.camelCase( name ) ];\n\t\t}\n\t} else {\n\t\tret = thisCache;\n\t}\n\n\treturn ret;\n}\n\nfunction internalRemoveData( elem, name, pvt ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar thisCache, i,\n\t\tisNode = elem.nodeType,\n\n\t\t// See jQuery.data for more information\n\t\tcache = isNode ? jQuery.cache : elem,\n\t\tid = isNode ? elem[ jQuery.expando ] : jQuery.expando;\n\n\t// If there is already no cache entry for this object, there is no\n\t// purpose in continuing\n\tif ( !cache[ id ] ) {\n\t\treturn;\n\t}\n\n\tif ( name ) {\n\n\t\tthisCache = pvt ? cache[ id ] : cache[ id ].data;\n\n\t\tif ( thisCache ) {\n\n\t\t\t// Support array or space separated string names for data keys\n\t\t\tif ( !jQuery.isArray( name ) ) {\n\n\t\t\t\t// try the string as a key before any manipulation\n\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\tname = [ name ];\n\t\t\t\t} else {\n\n\t\t\t\t\t// split the camel cased version by spaces unless a key with the spaces exists\n\t\t\t\t\tname = jQuery.camelCase( name );\n\t\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\t\tname = [ name ];\n\t\t\t\t\t} else {\n\t\t\t\t\t\tname = name.split(\" \");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// If \"name\" is an array of keys...\n\t\t\t\t// When data is initially created, via (\"key\", \"val\") signature,\n\t\t\t\t// keys will be converted to camelCase.\n\t\t\t\t// Since there is no way to tell _how_ a key was added, remove\n\t\t\t\t// both plain key and camelCase key. #12786\n\t\t\t\t// This will only penalize the array argument path.\n\t\t\t\tname = name.concat( jQuery.map( name, jQuery.camelCase ) );\n\t\t\t}\n\n\t\t\ti = name.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete thisCache[ name[i] ];\n\t\t\t}\n\n\t\t\t// If there is no data left in the cache, we want to continue\n\t\t\t// and let the cache object itself get destroyed\n\t\t\tif ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t}\n\n\t// See jQuery.data for more information\n\tif ( !pvt ) {\n\t\tdelete cache[ id ].data;\n\n\t\t// Don't destroy the parent cache unless the internal data object\n\t\t// had been the only thing left in it\n\t\tif ( !isEmptyDataObject( cache[ id ] ) ) {\n\t\t\treturn;\n\t\t}\n\t}\n\n\t// Destroy the cache\n\tif ( isNode ) {\n\t\tjQuery.cleanData( [ elem ], true );\n\n\t// Use delete when supported for expandos or `cache` is not a window per isWindow (#10080)\n\t/* jshint eqeqeq: false */\n\t} else if ( support.deleteExpando || cache != cache.window ) {\n\t\t/* jshint eqeqeq: true */\n\t\tdelete cache[ id ];\n\n\t// When all else fails, null\n\t} else {\n\t\tcache[ id ] = null;\n\t}\n}\n\njQuery.extend({\n\tcache: {},\n\n\t// The following elements (space-suffixed to avoid Object.prototype collisions)\n\t// throw uncatchable exceptions if you attempt to set expando properties\n\tnoData: {\n\t\t\"applet \": true,\n\t\t\"embed \": true,\n\t\t// ...but Flash objects (which have this classid) *can* handle expandos\n\t\t\"object \": \"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"\n\t},\n\n\thasData: function( elem ) {\n\t\telem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];\n\t\treturn !!elem && !isEmptyDataObject( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name );\n\t},\n\n\t// For internal use only.\n\t_data: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data, true );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name, true );\n\t}\n});\n\njQuery.fn.extend({\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[0],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Special expections of .data basically thwart jQuery.access,\n\t\t// so implement the relevant behavior ourselves\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = jQuery.data( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !jQuery._data( elem, \"parsedAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE11+\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = jQuery.camelCase( name.slice(5) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tjQuery._data( elem, \"parsedAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each(function() {\n\t\t\t\tjQuery.data( this, key );\n\t\t\t});\n\t\t}\n\n\t\treturn arguments.length > 1 ?\n\n\t\t\t// Sets one value\n\t\t\tthis.each(function() {\n\t\t\t\tjQuery.data( this, key, value );\n\t\t\t}) :\n\n\t\t\t// Gets one value\n\t\t\t// Try to fetch any internally stored data first\n\t\t\telem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined;\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeData( this, key );\n\t\t});\n\t}\n});\n\n\njQuery.extend({\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = jQuery._data( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || jQuery.isArray(data) ) {\n\t\t\t\t\tqueue = jQuery._data( elem, type, jQuery.makeArray(data) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// not intended for public consumption - generates a queueHooks object, or returns the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn jQuery._data( elem, key ) || jQuery._data( elem, key, {\n\t\t\tempty: jQuery.Callbacks(\"once memory\").add(function() {\n\t\t\t\tjQuery._removeData( elem, type + \"queue\" );\n\t\t\t\tjQuery._removeData( elem, key );\n\t\t\t})\n\t\t});\n\t}\n});\n\njQuery.fn.extend({\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[0], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each(function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[0] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t});\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t});\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = jQuery._data( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n});\nvar pnum = (/[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/).source;\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar isHidden = function( elem, el ) {\n\t\t// isHidden might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\t\treturn jQuery.css( elem, \"display\" ) === \"none\" || !jQuery.contains( elem.ownerDocument, elem );\n\t};\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlength = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( jQuery.type( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\tjQuery.access( elems, fn, i, key[i], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !jQuery.isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tfn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn chainable ?\n\t\telems :\n\n\t\t// Gets\n\t\tbulk ?\n\t\t\tfn.call( elems ) :\n\t\t\tlength ? fn( elems[0], key ) : emptyGet;\n};\nvar rcheckableType = (/^(?:checkbox|radio)$/i);\n\n\n\n(function() {\n\t// Minified: var a,b,c\n\tvar input = document.createElement( \"input\" ),\n\t\tdiv = document.createElement( \"div\" ),\n\t\tfragment = document.createDocumentFragment();\n\n\t// Setup\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\n\t// IE strips leading whitespace when .innerHTML is used\n\tsupport.leadingWhitespace = div.firstChild.nodeType === 3;\n\n\t// Make sure that tbody elements aren't automatically inserted\n\t// IE will insert them into empty tables\n\tsupport.tbody = !div.getElementsByTagName( \"tbody\" ).length;\n\n\t// Make sure that link elements get serialized correctly by innerHTML\n\t// This requires a wrapper element in IE\n\tsupport.htmlSerialize = !!div.getElementsByTagName( \"link\" ).length;\n\n\t// Makes sure cloning an html5 element does not cause problems\n\t// Where outerHTML is undefined, this still works\n\tsupport.html5Clone =\n\t\tdocument.createElement( \"nav\" ).cloneNode( true ).outerHTML !== \"<:nav></:nav>\";\n\n\t// Check if a disconnected checkbox will retain its checked\n\t// value of true after appended to the DOM (IE6/7)\n\tinput.type = \"checkbox\";\n\tinput.checked = true;\n\tfragment.appendChild( input );\n\tsupport.appendChecked = input.checked;\n\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\t// Support: IE6-IE11+\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// #11217 - WebKit loses check when the name is after the checked attribute\n\tfragment.appendChild( div );\n\tdiv.innerHTML = \"<input type='radio' checked='checked' name='t'/>\";\n\n\t// Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3\n\t// old WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE<9\n\t// Opera does not clone events (and typeof div.attachEvent === undefined).\n\t// IE9-10 clones events bound via attachEvent, but they don't trigger with .click()\n\tsupport.noCloneEvent = true;\n\tif ( div.attachEvent ) {\n\t\tdiv.attachEvent( \"onclick\", function() {\n\t\t\tsupport.noCloneEvent = false;\n\t\t});\n\n\t\tdiv.cloneNode( true ).click();\n\t}\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n})();\n\n\n(function() {\n\tvar i, eventName,\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Support: IE<9 (lack submit/change bubble), Firefox 23+ (lack focusin event)\n\tfor ( i in { submit: true, change: true, focusin: true }) {\n\t\teventName = \"on\" + i;\n\n\t\tif ( !(support[ i + \"Bubbles\" ] = eventName in window) ) {\n\t\t\t// Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP)\n\t\t\tdiv.setAttribute( eventName, \"t\" );\n\t\t\tsupport[ i + \"Bubbles\" ] = div.attributes[ eventName ].expando === false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\nvar rformElems = /^(?:input|select|textarea)$/i,\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu)|click/,\n\trfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)$/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\t\tvar tmp, events, t, handleObjIn,\n\t\t\tspecial, eventHandle, handleObj,\n\t\t\thandlers, type, namespaces, origType,\n\t\t\telemData = jQuery._data( elem );\n\n\t\t// Don't attach events to noData or text/comment nodes (but allow plain objects)\n\t\tif ( !elemData ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !(events = elemData.events) ) {\n\t\t\tevents = elemData.events = {};\n\t\t}\n\t\tif ( !(eventHandle = elemData.handle) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== strundefined && (!e || jQuery.event.triggered !== e.type) ?\n\t\t\t\t\tjQuery.event.dispatch.apply( eventHandle.elem, arguments ) :\n\t\t\t\t\tundefined;\n\t\t\t};\n\t\t\t// Add elem as a property of the handle fn to prevent a memory leak with IE non-native events\n\t\t\teventHandle.elem = elem;\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend({\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join(\".\")\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !(handlers = events[ type ]) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener/attachEvent if the special events handler returns false\n\t\t\t\tif ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\t\t\t\t\t// Bind the global event handler to the element\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle, false );\n\n\t\t\t\t\t} else if ( elem.attachEvent ) {\n\t\t\t\t\t\telem.attachEvent( \"on\" + type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t\t// Nullify elem to prevent memory leaks in IE\n\t\telem = null;\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\t\tvar j, handleObj, tmp,\n\t\t\torigCount, t, events,\n\t\t\tspecial, handlers, type,\n\t\t\tnamespaces, origType,\n\t\t\telemData = jQuery.hasData( elem ) && jQuery._data( elem );\n\n\t\tif ( !elemData || !(events = elemData.events) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[2] && new RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector || selector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdelete elemData.handle;\n\n\t\t\t// removeData also checks for emptiness and clears the expando if empty\n\t\t\t// so use it instead of delete\n\t\t\tjQuery._removeData( elem, \"events\" );\n\t\t}\n\t},\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\t\tvar handle, ontype, cur,\n\t\t\tbubbleType, special, tmp, i,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split(\".\") : [];\n\n\t\tcur = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf(\".\") >= 0 ) {\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split(\".\");\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf(\":\") < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join(\".\");\n\t\tevent.namespace_re = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === (elem.ownerDocument || document) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {\n\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = ( jQuery._data( cur, \"events\" ) || {} )[ event.type ] && jQuery._data( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && jQuery.acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) &&\n\t\t\t\tjQuery.acceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name name as the event.\n\t\t\t\t// Can't use an .isFunction() check here because IE6/7 fails that test.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\t\t\t\t\ttry {\n\t\t\t\t\t\telem[ type ]();\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// IE<9 dies on focus/blur to hidden element (#1486,#12518)\n\t\t\t\t\t\t// only reproducible on winXP IE8 native, not IE9 in IE8 mode\n\t\t\t\t\t}\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\tdispatch: function( event ) {\n\n\t\t// Make a writable jQuery.Event from the native event object\n\t\tevent = jQuery.event.fix( event );\n\n\t\tvar i, ret, handleObj, matched, j,\n\t\t\thandlerQueue = [],\n\t\t\targs = slice.call( arguments ),\n\t\t\thandlers = ( jQuery._data( this, \"events\" ) || {} )[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[0] = event;\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// Triggered event must either 1) have no namespace, or\n\t\t\t\t// 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).\n\t\t\t\tif ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )\n\t\t\t\t\t\t\t.apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( (event.result = ret) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar sel, handleObj, matches, i,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\t// Black-hole SVG <use> instance trees (#13180)\n\t\t// Avoid non-left-click bubbling in Firefox (#3861)\n\t\tif ( delegateCount && cur.nodeType && (!event.button || event.type !== \"click\") ) {\n\n\t\t\t/* jshint eqeqeq: false */\n\t\t\tfor ( ; cur != this; cur = cur.parentNode || this ) {\n\t\t\t\t/* jshint eqeqeq: true */\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== \"click\") ) {\n\t\t\t\t\tmatches = [];\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matches[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatches[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) >= 0 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matches[ sel ] ) {\n\t\t\t\t\t\t\tmatches.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matches.length ) {\n\t\t\t\t\t\thandlerQueue.push({ elem: cur, handlers: matches });\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\tfix: function( event ) {\n\t\tif ( event[ jQuery.expando ] ) {\n\t\t\treturn event;\n\t\t}\n\n\t\t// Create a writable copy of the event object and normalize some properties\n\t\tvar i, prop, copy,\n\t\t\ttype = event.type,\n\t\t\toriginalEvent = event,\n\t\t\tfixHook = this.fixHooks[ type ];\n\n\t\tif ( !fixHook ) {\n\t\t\tthis.fixHooks[ type ] = fixHook =\n\t\t\t\trmouseEvent.test( type ) ? this.mouseHooks :\n\t\t\t\trkeyEvent.test( type ) ? this.keyHooks :\n\t\t\t\t{};\n\t\t}\n\t\tcopy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;\n\n\t\tevent = new jQuery.Event( originalEvent );\n\n\t\ti = copy.length;\n\t\twhile ( i-- ) {\n\t\t\tprop = copy[ i ];\n\t\t\tevent[ prop ] = originalEvent[ prop ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Fix target property (#1925)\n\t\tif ( !event.target ) {\n\t\t\tevent.target = originalEvent.srcElement || document;\n\t\t}\n\n\t\t// Support: Chrome 23+, Safari?\n\t\t// Target should not be a text node (#504, #13143)\n\t\tif ( event.target.nodeType === 3 ) {\n\t\t\tevent.target = event.target.parentNode;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// For mouse/key events, metaKey==false if it's undefined (#3368, #11328)\n\t\tevent.metaKey = !!event.metaKey;\n\n\t\treturn fixHook.filter ? fixHook.filter( event, originalEvent ) : event;\n\t},\n\n\t// Includes some event props shared by KeyEvent and MouseEvent\n\tprops: \"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which\".split(\" \"),\n\n\tfixHooks: {},\n\n\tkeyHooks: {\n\t\tprops: \"char charCode key keyCode\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\n\t\t\t// Add which for key events\n\t\t\tif ( event.which == null ) {\n\t\t\t\tevent.which = original.charCode != null ? original.charCode : original.keyCode;\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tmouseHooks: {\n\t\tprops: \"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\t\t\tvar body, eventDoc, doc,\n\t\t\t\tbutton = original.button,\n\t\t\t\tfromElement = original.fromElement;\n\n\t\t\t// Calculate pageX/Y if missing and clientX/Y available\n\t\t\tif ( event.pageX == null && original.clientX != null ) {\n\t\t\t\teventDoc = event.target.ownerDocument || document;\n\t\t\t\tdoc = eventDoc.documentElement;\n\t\t\t\tbody = eventDoc.body;\n\n\t\t\t\tevent.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );\n\t\t\t\tevent.pageY = original.clientY + ( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) - ( doc && doc.clientTop  || body && body.clientTop  || 0 );\n\t\t\t}\n\n\t\t\t// Add relatedTarget, if necessary\n\t\t\tif ( !event.relatedTarget && fromElement ) {\n\t\t\t\tevent.relatedTarget = fromElement === event.target ? original.toElement : fromElement;\n\t\t\t}\n\n\t\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\t\t// Note: button is not normalized, so don't use it\n\t\t\tif ( !event.which && button !== undefined ) {\n\t\t\t\tevent.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tspecial: {\n\t\tload: {\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tfocus: {\n\t\t\t// Fire native event if possible so blur/focus sequence is correct\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this !== safeActiveElement() && this.focus ) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tthis.focus();\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// If we error on focus to hidden element (#1486, #12518),\n\t\t\t\t\t\t// let .trigger() run the handlers\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusin\"\n\t\t},\n\t\tblur: {\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this === safeActiveElement() && this.blur ) {\n\t\t\t\t\tthis.blur();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusout\"\n\t\t},\n\t\tclick: {\n\t\t\t// For checkbox, fire native event so checked state will be right\n\t\t\ttrigger: function() {\n\t\t\t\tif ( jQuery.nodeName( this, \"input\" ) && this.type === \"checkbox\" && this.click ) {\n\t\t\t\t\tthis.click();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, don't fire native .click() on links\n\t\t\t_default: function( event ) {\n\t\t\t\treturn jQuery.nodeName( event.target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tsimulate: function( type, elem, event, bubble ) {\n\t\t// Piggyback on a donor event to simulate a different one.\n\t\t// Fake originalEvent to avoid donor's stopPropagation, but if the\n\t\t// simulated event prevents default then we do the same on the donor.\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true,\n\t\t\t\toriginalEvent: {}\n\t\t\t}\n\t\t);\n\t\tif ( bubble ) {\n\t\t\tjQuery.event.trigger( e, null, elem );\n\t\t} else {\n\t\t\tjQuery.event.dispatch.call( elem, e );\n\t\t}\n\t\tif ( e.isDefaultPrevented() ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\t}\n};\n\njQuery.removeEvent = document.removeEventListener ?\n\tfunction( elem, type, handle ) {\n\t\tif ( elem.removeEventListener ) {\n\t\t\telem.removeEventListener( type, handle, false );\n\t\t}\n\t} :\n\tfunction( elem, type, handle ) {\n\t\tvar name = \"on\" + type;\n\n\t\tif ( elem.detachEvent ) {\n\n\t\t\t// #8545, #7054, preventing memory leaks for custom events in IE6-8\n\t\t\t// detachEvent needed property on element, by name of that event, to properly expose it to GC\n\t\t\tif ( typeof elem[ name ] === strundefined ) {\n\t\t\t\telem[ name ] = null;\n\t\t\t}\n\n\t\t\telem.detachEvent( name, handle );\n\t\t}\n\t};\n\njQuery.Event = function( src, props ) {\n\t// Allow instantiation without the 'new' keyword\n\tif ( !(this instanceof jQuery.Event) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\t\t\t\t// Support: IE < 9, Android < 4.0\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || jQuery.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If preventDefault exists, run it on the original event\n\t\tif ( e.preventDefault ) {\n\t\t\te.preventDefault();\n\n\t\t// Support: IE\n\t\t// Otherwise set the returnValue property of the original event to false\n\t\t} else {\n\t\t\te.returnValue = false;\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\t\t// If stopPropagation exists, run it on the original event\n\t\tif ( e.stopPropagation ) {\n\t\t\te.stopPropagation();\n\t\t}\n\n\t\t// Support: IE\n\t\t// Set the cancelBubble property of the original event to true\n\t\te.cancelBubble = true;\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && e.stopImmediatePropagation ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\njQuery.each({\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mousenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || (related !== target && !jQuery.contains( target, related )) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n});\n\n// IE submit delegation\nif ( !support.submitBubbles ) {\n\n\tjQuery.event.special.submit = {\n\t\tsetup: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Lazy-add a submit handler when a descendant form may potentially be submitted\n\t\t\tjQuery.event.add( this, \"click._submit keypress._submit\", function( e ) {\n\t\t\t\t// Node name check avoids a VML-related crash in IE (#9807)\n\t\t\t\tvar elem = e.target,\n\t\t\t\t\tform = jQuery.nodeName( elem, \"input\" ) || jQuery.nodeName( elem, \"button\" ) ? elem.form : undefined;\n\t\t\t\tif ( form && !jQuery._data( form, \"submitBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( form, \"submit._submit\", function( event ) {\n\t\t\t\t\t\tevent._submit_bubble = true;\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( form, \"submitBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t\t// return undefined since we don't need an event listener\n\t\t},\n\n\t\tpostDispatch: function( event ) {\n\t\t\t// If form was submitted by the user, bubble the event up the tree\n\t\t\tif ( event._submit_bubble ) {\n\t\t\t\tdelete event._submit_bubble;\n\t\t\t\tif ( this.parentNode && !event.isTrigger ) {\n\t\t\t\t\tjQuery.event.simulate( \"submit\", this.parentNode, event, true );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Remove delegated handlers; cleanData eventually reaps submit handlers attached above\n\t\t\tjQuery.event.remove( this, \"._submit\" );\n\t\t}\n\t};\n}\n\n// IE change delegation and checkbox/radio fix\nif ( !support.changeBubbles ) {\n\n\tjQuery.event.special.change = {\n\n\t\tsetup: function() {\n\n\t\t\tif ( rformElems.test( this.nodeName ) ) {\n\t\t\t\t// IE doesn't fire change on a check/radio until blur; trigger it on click\n\t\t\t\t// after a propertychange. Eat the blur-change in special.change.handle.\n\t\t\t\t// This still fires onchange a second time for check/radio after blur.\n\t\t\t\tif ( this.type === \"checkbox\" || this.type === \"radio\" ) {\n\t\t\t\t\tjQuery.event.add( this, \"propertychange._change\", function( event ) {\n\t\t\t\t\t\tif ( event.originalEvent.propertyName === \"checked\" ) {\n\t\t\t\t\t\t\tthis._just_changed = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery.event.add( this, \"click._change\", function( event ) {\n\t\t\t\t\t\tif ( this._just_changed && !event.isTrigger ) {\n\t\t\t\t\t\t\tthis._just_changed = false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// Allow triggered, simulated change events (#11500)\n\t\t\t\t\t\tjQuery.event.simulate( \"change\", this, event, true );\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t// Delegated event; lazy-add a change handler on descendant inputs\n\t\t\tjQuery.event.add( this, \"beforeactivate._change\", function( e ) {\n\t\t\t\tvar elem = e.target;\n\n\t\t\t\tif ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, \"changeBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( elem, \"change._change\", function( event ) {\n\t\t\t\t\t\tif ( this.parentNode && !event.isSimulated && !event.isTrigger ) {\n\t\t\t\t\t\t\tjQuery.event.simulate( \"change\", this.parentNode, event, true );\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( elem, \"changeBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t},\n\n\t\thandle: function( event ) {\n\t\t\tvar elem = event.target;\n\n\t\t\t// Swallow native change events from checkbox/radio, we already triggered them above\n\t\t\tif ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== \"radio\" && elem.type !== \"checkbox\") ) {\n\t\t\t\treturn event.handleObj.handler.apply( this, arguments );\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\tjQuery.event.remove( this, \"._change\" );\n\n\t\t\treturn !rformElems.test( this.nodeName );\n\t\t}\n\t};\n}\n\n// Create \"bubbling\" focus and blur events\nif ( !support.focusinBubbles ) {\n\tjQuery.each({ focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );\n\t\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tjQuery._data( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tjQuery._removeData( doc, fix );\n\t\t\t\t} else {\n\t\t\t\t\tjQuery._data( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\njQuery.fn.extend({\n\n\ton: function( types, selector, data, fn, /*INTERNAL*/ one ) {\n\t\tvar type, origFn;\n\n\t\t// Types can be a map of types/handlers\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-Object, selector, data )\n\t\t\tif ( typeof selector !== \"string\" ) {\n\t\t\t\t// ( types-Object, data )\n\t\t\t\tdata = data || selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.on( type, selector, data, types[ type ], one );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( data == null && fn == null ) {\n\t\t\t// ( types, fn )\n\t\t\tfn = selector;\n\t\t\tdata = selector = undefined;\n\t\t} else if ( fn == null ) {\n\t\t\tif ( typeof selector === \"string\" ) {\n\t\t\t\t// ( types, selector, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = undefined;\n\t\t\t} else {\n\t\t\t\t// ( types, data, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t} else if ( !fn ) {\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( one === 1 ) {\n\t\t\torigFn = fn;\n\t\t\tfn = function( event ) {\n\t\t\t\t// Can use an empty set, since event contains the info\n\t\t\t\tjQuery().off( event );\n\t\t\t\treturn origFn.apply( this, arguments );\n\t\t\t};\n\t\t\t// Use same guid so caller can remove using origFn\n\t\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.add( this, types, fn, data, selector );\n\t\t});\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn this.on( types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ? handleObj.origType + \".\" + handleObj.namespace : handleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t});\n\t},\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t});\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[0];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n});\n\n\nfunction createSafeFragment( document ) {\n\tvar list = nodeNames.split( \"|\" ),\n\t\tsafeFrag = document.createDocumentFragment();\n\n\tif ( safeFrag.createElement ) {\n\t\twhile ( list.length ) {\n\t\t\tsafeFrag.createElement(\n\t\t\t\tlist.pop()\n\t\t\t);\n\t\t}\n\t}\n\treturn safeFrag;\n}\n\nvar nodeNames = \"abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|\" +\n\t\t\"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video\",\n\trinlinejQuery = / jQuery\\d+=\"(?:null|\\d+)\"/g,\n\trnoshimcache = new RegExp(\"<(?:\" + nodeNames + \")[\\\\s/>]\", \"i\"),\n\trleadingWhitespace = /^\\s+/,\n\trxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>]*)\\/>/gi,\n\trtagName = /<([\\w:]+)/,\n\trtbody = /<tbody/i,\n\trhtml = /<|&#?\\w+;/,\n\trnoInnerhtml = /<(?:script|style|link)/i,\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trscriptType = /^$|\\/(?:java|ecma)script/i,\n\trscriptTypeMasked = /^true\\/(.*)/,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g,\n\n\t// We have to close these tags to support XHTML (#13200)\n\twrapMap = {\n\t\toption: [ 1, \"<select multiple='multiple'>\", \"</select>\" ],\n\t\tlegend: [ 1, \"<fieldset>\", \"</fieldset>\" ],\n\t\tarea: [ 1, \"<map>\", \"</map>\" ],\n\t\tparam: [ 1, \"<object>\", \"</object>\" ],\n\t\tthead: [ 1, \"<table>\", \"</table>\" ],\n\t\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\t\tcol: [ 2, \"<table><tbody></tbody><colgroup>\", \"</colgroup></table>\" ],\n\t\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t\t// IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags,\n\t\t// unless wrapped in a div with non-breaking characters in front of it.\n\t\t_default: support.htmlSerialize ? [ 0, \"\", \"\" ] : [ 1, \"X<div>\", \"</div>\"  ]\n\t},\n\tsafeFragment = createSafeFragment( document ),\n\tfragmentDiv = safeFragment.appendChild( document.createElement(\"div\") );\n\nwrapMap.optgroup = wrapMap.option;\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\nfunction getAll( context, tag ) {\n\tvar elems, elem,\n\t\ti = 0,\n\t\tfound = typeof context.getElementsByTagName !== strundefined ? context.getElementsByTagName( tag || \"*\" ) :\n\t\t\ttypeof context.querySelectorAll !== strundefined ? context.querySelectorAll( tag || \"*\" ) :\n\t\t\tundefined;\n\n\tif ( !found ) {\n\t\tfor ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( !tag || jQuery.nodeName( elem, tag ) ) {\n\t\t\t\tfound.push( elem );\n\t\t\t} else {\n\t\t\t\tjQuery.merge( found, getAll( elem, tag ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn tag === undefined || tag && jQuery.nodeName( context, tag ) ?\n\t\tjQuery.merge( [ context ], found ) :\n\t\tfound;\n}\n\n// Used in buildFragment, fixes the defaultChecked property\nfunction fixDefaultChecked( elem ) {\n\tif ( rcheckableType.test( elem.type ) ) {\n\t\telem.defaultChecked = elem.checked;\n\t}\n}\n\n// Support: IE<8\n// Manipulating tables requires a tbody\nfunction manipulationTarget( elem, content ) {\n\treturn jQuery.nodeName( elem, \"table\" ) &&\n\t\tjQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ?\n\n\t\telem.getElementsByTagName(\"tbody\")[0] ||\n\t\t\telem.appendChild( elem.ownerDocument.createElement(\"tbody\") ) :\n\t\telem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = (jQuery.find.attr( elem, \"type\" ) !== null) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tvar match = rscriptTypeMasked.exec( elem.type );\n\tif ( match ) {\n\t\telem.type = match[1];\n\t} else {\n\t\telem.removeAttribute(\"type\");\n\t}\n\treturn elem;\n}\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar elem,\n\t\ti = 0;\n\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\tjQuery._data( elem, \"globalEval\", !refElements || jQuery._data( refElements[i], \"globalEval\" ) );\n\t}\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\n\tif ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {\n\t\treturn;\n\t}\n\n\tvar type, i, l,\n\t\toldData = jQuery._data( src ),\n\t\tcurData = jQuery._data( dest, oldData ),\n\t\tevents = oldData.events;\n\n\tif ( events ) {\n\t\tdelete curData.handle;\n\t\tcurData.events = {};\n\n\t\tfor ( type in events ) {\n\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t}\n\t\t}\n\t}\n\n\t// make the cloned public data object a copy from the original\n\tif ( curData.data ) {\n\t\tcurData.data = jQuery.extend( {}, curData.data );\n\t}\n}\n\nfunction fixCloneNodeIssues( src, dest ) {\n\tvar nodeName, e, data;\n\n\t// We do not need to do anything for non-Elements\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\tnodeName = dest.nodeName.toLowerCase();\n\n\t// IE6-8 copies events bound via attachEvent when using cloneNode.\n\tif ( !support.noCloneEvent && dest[ jQuery.expando ] ) {\n\t\tdata = jQuery._data( dest );\n\n\t\tfor ( e in data.events ) {\n\t\t\tjQuery.removeEvent( dest, e, data.handle );\n\t\t}\n\n\t\t// Event data gets referenced instead of copied if the expando gets copied too\n\t\tdest.removeAttribute( jQuery.expando );\n\t}\n\n\t// IE blanks contents when cloning scripts, and tries to evaluate newly-set text\n\tif ( nodeName === \"script\" && dest.text !== src.text ) {\n\t\tdisableScript( dest ).text = src.text;\n\t\trestoreScript( dest );\n\n\t// IE6-10 improperly clones children of object elements using classid.\n\t// IE10 throws NoModificationAllowedError if parent is null, #12132.\n\t} else if ( nodeName === \"object\" ) {\n\t\tif ( dest.parentNode ) {\n\t\t\tdest.outerHTML = src.outerHTML;\n\t\t}\n\n\t\t// This path appears unavoidable for IE9. When cloning an object\n\t\t// element in IE9, the outerHTML strategy above is not sufficient.\n\t\t// If the src has innerHTML and the destination does not,\n\t\t// copy the src.innerHTML into the dest.innerHTML. #10324\n\t\tif ( support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) {\n\t\t\tdest.innerHTML = src.innerHTML;\n\t\t}\n\n\t} else if ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\t// IE6-8 fails to persist the checked state of a cloned checkbox\n\t\t// or radio button. Worse, IE6-7 fail to give the cloned element\n\t\t// a checked appearance if the defaultChecked value isn't also set\n\n\t\tdest.defaultChecked = dest.checked = src.checked;\n\n\t\t// IE6-7 get confused and end up setting the value of a cloned\n\t\t// checkbox/radio button to an empty string instead of \"on\"\n\t\tif ( dest.value !== src.value ) {\n\t\t\tdest.value = src.value;\n\t\t}\n\n\t// IE6-8 fails to return the selected option to the default selected\n\t// state when cloning options\n\t} else if ( nodeName === \"option\" ) {\n\t\tdest.defaultSelected = dest.selected = src.defaultSelected;\n\n\t// IE6-8 fails to set the defaultValue to the correct value when\n\t// cloning other types of input fields\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\njQuery.extend({\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar destElements, node, clone, i, srcElements,\n\t\t\tinPage = jQuery.contains( elem.ownerDocument, elem );\n\n\t\tif ( support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( \"<\" + elem.nodeName + \">\" ) ) {\n\t\t\tclone = elem.cloneNode( true );\n\n\t\t// IE<=8 does not properly clone detached, unknown element nodes\n\t\t} else {\n\t\t\tfragmentDiv.innerHTML = elem.outerHTML;\n\t\t\tfragmentDiv.removeChild( clone = fragmentDiv.firstChild );\n\t\t}\n\n\t\tif ( (!support.noCloneEvent || !support.noCloneChecked) &&\n\t\t\t\t(elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\t// Fix all IE cloning issues\n\t\t\tfor ( i = 0; (node = srcElements[i]) != null; ++i ) {\n\t\t\t\t// Ensure that the destination node is not null; Fixes #9587\n\t\t\t\tif ( destElements[i] ) {\n\t\t\t\t\tfixCloneNodeIssues( node, destElements[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0; (node = srcElements[i]) != null; i++ ) {\n\t\t\t\t\tcloneCopyEvent( node, destElements[i] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\tdestElements = srcElements = node = null;\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tbuildFragment: function( elems, context, scripts, selection ) {\n\t\tvar j, elem, contains,\n\t\t\ttmp, tag, tbody, wrap,\n\t\t\tl = elems.length,\n\n\t\t\t// Ensure a safe fragment\n\t\t\tsafe = createSafeFragment( context ),\n\n\t\t\tnodes = [],\n\t\t\ti = 0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\telem = elems[ i ];\n\n\t\t\tif ( elem || elem === 0 ) {\n\n\t\t\t\t// Add nodes directly\n\t\t\t\tif ( jQuery.type( elem ) === \"object\" ) {\n\t\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t\t// Convert non-html into a text node\n\t\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t\t// Convert html into DOM nodes\n\t\t\t\t} else {\n\t\t\t\t\ttmp = tmp || safe.appendChild( context.createElement(\"div\") );\n\n\t\t\t\t\t// Deserialize a standard representation\n\t\t\t\t\ttag = (rtagName.exec( elem ) || [ \"\", \"\" ])[ 1 ].toLowerCase();\n\t\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\n\t\t\t\t\ttmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, \"<$1></$2>\" ) + wrap[2];\n\n\t\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\t\tj = wrap[0];\n\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Manually add leading whitespace removed by IE\n\t\t\t\t\tif ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {\n\t\t\t\t\t\tnodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove IE's autoinserted <tbody> from table fragments\n\t\t\t\t\tif ( !support.tbody ) {\n\n\t\t\t\t\t\t// String was a <table>, *may* have spurious <tbody>\n\t\t\t\t\t\telem = tag === \"table\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\ttmp.firstChild :\n\n\t\t\t\t\t\t\t// String was a bare <thead> or <tfoot>\n\t\t\t\t\t\t\twrap[1] === \"<table>\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\t\ttmp :\n\t\t\t\t\t\t\t\t0;\n\n\t\t\t\t\t\tj = elem && elem.childNodes.length;\n\t\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\t\tif ( jQuery.nodeName( (tbody = elem.childNodes[j]), \"tbody\" ) && !tbody.childNodes.length ) {\n\t\t\t\t\t\t\t\telem.removeChild( tbody );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t\t// Fix #12392 for WebKit and IE > 9\n\t\t\t\t\ttmp.textContent = \"\";\n\n\t\t\t\t\t// Fix #12392 for oldIE\n\t\t\t\t\twhile ( tmp.firstChild ) {\n\t\t\t\t\t\ttmp.removeChild( tmp.firstChild );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remember the top-level container for proper cleanup\n\t\t\t\t\ttmp = safe.lastChild;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Fix #11356: Clear elements from fragment\n\t\tif ( tmp ) {\n\t\t\tsafe.removeChild( tmp );\n\t\t}\n\n\t\t// Reset defaultChecked for any radios and checkboxes\n\t\t// about to be appended to the DOM in IE 6/7 (#8060)\n\t\tif ( !support.appendChecked ) {\n\t\t\tjQuery.grep( getAll( nodes, \"input\" ), fixDefaultChecked );\n\t\t}\n\n\t\ti = 0;\n\t\twhile ( (elem = nodes[ i++ ]) ) {\n\n\t\t\t// #4087 - If origin and destination elements are the same, and this is\n\t\t\t// that element, do not do anything\n\t\t\tif ( selection && jQuery.inArray( elem, selection ) !== -1 ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tcontains = jQuery.contains( elem.ownerDocument, elem );\n\n\t\t\t// Append to fragment\n\t\t\ttmp = getAll( safe.appendChild( elem ), \"script\" );\n\n\t\t\t// Preserve script evaluation history\n\t\t\tif ( contains ) {\n\t\t\t\tsetGlobalEval( tmp );\n\t\t\t}\n\n\t\t\t// Capture executables\n\t\t\tif ( scripts ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (elem = tmp[ j++ ]) ) {\n\t\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\t\tscripts.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\ttmp = null;\n\n\t\treturn safe;\n\t},\n\n\tcleanData: function( elems, /* internal */ acceptData ) {\n\t\tvar elem, type, id, data,\n\t\t\ti = 0,\n\t\t\tinternalKey = jQuery.expando,\n\t\t\tcache = jQuery.cache,\n\t\t\tdeleteExpando = support.deleteExpando,\n\t\t\tspecial = jQuery.event.special;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( acceptData || jQuery.acceptData( elem ) ) {\n\n\t\t\t\tid = elem[ internalKey ];\n\t\t\t\tdata = id && cache[ id ];\n\n\t\t\t\tif ( data ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove cache only if it was not already removed by jQuery.event.remove\n\t\t\t\t\tif ( cache[ id ] ) {\n\n\t\t\t\t\t\tdelete cache[ id ];\n\n\t\t\t\t\t\t// IE does not allow us to delete expando properties from nodes,\n\t\t\t\t\t\t// nor does it have a removeAttribute function on Document nodes;\n\t\t\t\t\t\t// we must handle all of these cases\n\t\t\t\t\t\tif ( deleteExpando ) {\n\t\t\t\t\t\t\tdelete elem[ internalKey ];\n\n\t\t\t\t\t\t} else if ( typeof elem.removeAttribute !== strundefined ) {\n\t\t\t\t\t\t\telem.removeAttribute( internalKey );\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\telem[ internalKey ] = null;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tdeletedIds.push( id );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\njQuery.fn.extend({\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t});\n\t},\n\n\tprepend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t});\n\t},\n\n\tbefore: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t});\n\t},\n\n\tafter: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t});\n\t},\n\n\tremove: function( selector, keepData /* Internal Use Only */ ) {\n\t\tvar elem,\n\t\t\telems = selector ? jQuery.filter( selector, this ) : this,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\n\t\t\tif ( !keepData && elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem ) );\n\t\t\t}\n\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\tif ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\t\tsetGlobalEval( getAll( elem, \"script\" ) );\n\t\t\t\t}\n\t\t\t\telem.parentNode.removeChild( elem );\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = this[i]) != null; i++ ) {\n\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t}\n\n\t\t\t// Remove any remaining nodes\n\t\t\twhile ( elem.firstChild ) {\n\t\t\t\telem.removeChild( elem.firstChild );\n\t\t\t}\n\n\t\t\t// If this is a select, ensure that it displays empty (#12336)\n\t\t\t// Support: IE<9\n\t\t\tif ( elem.options && jQuery.nodeName( elem, \"select\" ) ) {\n\t\t\t\telem.options.length = 0;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map(function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t});\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined ) {\n\t\t\t\treturn elem.nodeType === 1 ?\n\t\t\t\t\telem.innerHTML.replace( rinlinejQuery, \"\" ) :\n\t\t\t\t\tundefined;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t( support.htmlSerialize || !rnoshimcache.test( value )  ) &&\n\t\t\t\t( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&\n\t\t\t\t!wrapMap[ (rtagName.exec( value ) || [ \"\", \"\" ])[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = value.replace( rxhtmlTag, \"<$1></$2>\" );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor (; i < l; i++ ) {\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\telem = this[i] || {};\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar arg = arguments[ 0 ];\n\n\t\t// Make the changes, replacing each context element with the new content\n\t\tthis.domManip( arguments, function( elem ) {\n\t\t\targ = this.parentNode;\n\n\t\t\tjQuery.cleanData( getAll( this ) );\n\n\t\t\tif ( arg ) {\n\t\t\t\targ.replaceChild( elem, this );\n\t\t\t}\n\t\t});\n\n\t\t// Force removal if there was no new content (e.g., from empty arguments)\n\t\treturn arg && (arg.length || arg.nodeType) ? this : this.remove();\n\t},\n\n\tdetach: function( selector ) {\n\t\treturn this.remove( selector, true );\n\t},\n\n\tdomManip: function( args, callback ) {\n\n\t\t// Flatten any nested arrays\n\t\targs = concat.apply( [], args );\n\n\t\tvar first, node, hasScripts,\n\t\t\tscripts, doc, fragment,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tset = this,\n\t\t\tiNoClone = l - 1,\n\t\t\tvalue = args[0],\n\t\t\tisFunction = jQuery.isFunction( value );\n\n\t\t// We can't cloneNode fragments that contain checked, in WebKit\n\t\tif ( isFunction ||\n\t\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\t\treturn this.each(function( index ) {\n\t\t\t\tvar self = set.eq( index );\n\t\t\t\tif ( isFunction ) {\n\t\t\t\t\targs[0] = value.call( this, index, self.html() );\n\t\t\t\t}\n\t\t\t\tself.domManip( args, callback );\n\t\t\t});\n\t\t}\n\n\t\tif ( l ) {\n\t\t\tfragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );\n\t\t\tfirst = fragment.firstChild;\n\n\t\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\t\tfragment = first;\n\t\t\t}\n\n\t\t\tif ( first ) {\n\t\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\t\thasScripts = scripts.length;\n\n\t\t\t\t// Use the original fragment for the last item instead of the first because it can end up\n\t\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\tnode = fragment;\n\n\t\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tcallback.call( this[i], node, i );\n\t\t\t\t}\n\n\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t\t// Reenable scripts\n\t\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t\t!jQuery._data( node, \"globalEval\" ) && jQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\t\tif ( node.src ) {\n\t\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\t\tif ( jQuery._evalUrl ) {\n\t\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.globalEval( ( node.text || node.textContent || node.innerHTML || \"\" ).replace( rcleanScript, \"\" ) );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Fix #11809: Avoid leaking memory\n\t\t\t\tfragment = first = null;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t}\n});\n\njQuery.each({\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\ti = 0,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone(true);\n\t\t\tjQuery( insert[i] )[ original ]( elems );\n\n\t\t\t// Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get()\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\n\n\nvar iframe,\n\telemdisplay = {};\n\n/**\n * Retrieve the actual display of a element\n * @param {String} name nodeName of the element\n * @param {Object} doc Document object\n */\n// Called only from within defaultDisplay\nfunction actualDisplay( name, doc ) {\n\tvar style,\n\t\telem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),\n\n\t\t// getDefaultComputedStyle might be reliably used only on attached element\n\t\tdisplay = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ?\n\n\t\t\t// Use of this method is a temporary fix (more like optmization) until something better comes along,\n\t\t\t// since it was removed from specification and supported only in FF\n\t\t\tstyle.display : jQuery.css( elem[ 0 ], \"display\" );\n\n\t// We don't have any data stored on the element,\n\t// so use \"detach\" method as fast way to get rid of the element\n\telem.detach();\n\n\treturn display;\n}\n\n/**\n * Try to determine the default display value of an element\n * @param {String} nodeName\n */\nfunction defaultDisplay( nodeName ) {\n\tvar doc = document,\n\t\tdisplay = elemdisplay[ nodeName ];\n\n\tif ( !display ) {\n\t\tdisplay = actualDisplay( nodeName, doc );\n\n\t\t// If the simple way fails, read from inside an iframe\n\t\tif ( display === \"none\" || !display ) {\n\n\t\t\t// Use the already-created iframe if possible\n\t\t\tiframe = (iframe || jQuery( \"<iframe frameborder='0' width='0' height='0'/>\" )).appendTo( doc.documentElement );\n\n\t\t\t// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse\n\t\t\tdoc = ( iframe[ 0 ].contentWindow || iframe[ 0 ].contentDocument ).document;\n\n\t\t\t// Support: IE\n\t\t\tdoc.write();\n\t\t\tdoc.close();\n\n\t\t\tdisplay = actualDisplay( nodeName, doc );\n\t\t\tiframe.detach();\n\t\t}\n\n\t\t// Store the correct default display\n\t\telemdisplay[ nodeName ] = display;\n\t}\n\n\treturn display;\n}\n\n\n(function() {\n\tvar shrinkWrapBlocksVal;\n\n\tsupport.shrinkWrapBlocks = function() {\n\t\tif ( shrinkWrapBlocksVal != null ) {\n\t\t\treturn shrinkWrapBlocksVal;\n\t\t}\n\n\t\t// Will be changed later if needed.\n\t\tshrinkWrapBlocksVal = false;\n\n\t\t// Minified: var b,c,d\n\t\tvar div, body, container;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\t// Support: IE6\n\t\t// Check if elements with layout shrink-wrap their children\n\t\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t\t// Reset CSS: box-sizing; display; margin; border\n\t\t\tdiv.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;\" +\n\t\t\t\t\"padding:1px;width:1px;zoom:1\";\n\t\t\tdiv.appendChild( document.createElement( \"div\" ) ).style.width = \"5px\";\n\t\t\tshrinkWrapBlocksVal = div.offsetWidth !== 3;\n\t\t}\n\n\t\tbody.removeChild( container );\n\n\t\treturn shrinkWrapBlocksVal;\n\t};\n\n})();\nvar rmargin = (/^margin/);\n\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\n\n\nvar getStyles, curCSS,\n\trposition = /^(top|right|bottom|left)$/;\n\nif ( window.getComputedStyle ) {\n\tgetStyles = function( elem ) {\n\t\t// Support: IE<=11+, Firefox<=30+ (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tif ( elem.ownerDocument.defaultView.opener ) {\n\t\t\treturn elem.ownerDocument.defaultView.getComputedStyle( elem, null );\n\t\t}\n\n\t\treturn window.getComputedStyle( elem, null );\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar width, minWidth, maxWidth, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\n\t\t// getPropertyValue is only needed for .css('filter') in IE9, see #12537\n\t\tret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;\n\n\t\tif ( computed ) {\n\n\t\t\tif ( ret === \"\" && !jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\tret = jQuery.style( elem, name );\n\t\t\t}\n\n\t\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t\t// Chrome < 17 and Safari 5.0 uses \"computed value\" instead of \"used value\" for margin-right\n\t\t\t// Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels\n\t\t\t// this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values\n\t\t\tif ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {\n\n\t\t\t\t// Remember the original values\n\t\t\t\twidth = style.width;\n\t\t\t\tminWidth = style.minWidth;\n\t\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t\t// Put in the new values to get a computed value out\n\t\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\t\tret = computed.width;\n\n\t\t\t\t// Revert the changed values\n\t\t\t\tstyle.width = width;\n\t\t\t\tstyle.minWidth = minWidth;\n\t\t\t\tstyle.maxWidth = maxWidth;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\";\n\t};\n} else if ( document.documentElement.currentStyle ) {\n\tgetStyles = function( elem ) {\n\t\treturn elem.currentStyle;\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar left, rs, rsLeft, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\t\tret = computed ? computed[ name ] : undefined;\n\n\t\t// Avoid setting ret to empty string here\n\t\t// so we don't default to auto\n\t\tif ( ret == null && style && style[ name ] ) {\n\t\t\tret = style[ name ];\n\t\t}\n\n\t\t// From the awesome hack by Dean Edwards\n\t\t// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291\n\n\t\t// If we're not dealing with a regular pixel number\n\t\t// but a number that has a weird ending, we need to convert it to pixels\n\t\t// but not position css attributes, as those are proportional to the parent element instead\n\t\t// and we can't measure the parent instead because it might trigger a \"stacking dolls\" problem\n\t\tif ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\tleft = style.left;\n\t\t\trs = elem.runtimeStyle;\n\t\t\trsLeft = rs && rs.left;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = elem.currentStyle.left;\n\t\t\t}\n\t\t\tstyle.left = name === \"fontSize\" ? \"1em\" : ret;\n\t\t\tret = style.pixelLeft + \"px\";\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.left = left;\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = rsLeft;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\" || \"auto\";\n\t};\n}\n\n\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tvar condition = conditionFn();\n\n\t\t\tif ( condition == null ) {\n\t\t\t\t// The test was not ready at this point; screw the hook this time\n\t\t\t\t// but check again when needed next time.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( condition ) {\n\t\t\t\t// Hook not needed (or it's not possible to use it due to missing dependency),\n\t\t\t\t// remove it.\n\t\t\t\t// Since there are no other hooks for marginRight, remove the whole object.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\n\t\t\treturn (this.get = hookFn).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\n(function() {\n\t// Minified: var b,c,d,e,f,g, h,i\n\tvar div, style, a, pixelPositionVal, boxSizingReliableVal,\n\t\treliableHiddenOffsetsVal, reliableMarginRightVal;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName( \"a\" )[ 0 ];\n\tstyle = a && a.style;\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !style ) {\n\t\treturn;\n\t}\n\n\tstyle.cssText = \"float:left;opacity:.5\";\n\n\t// Support: IE<9\n\t// Make sure that element opacity exists (as opposed to filter)\n\tsupport.opacity = style.opacity === \"0.5\";\n\n\t// Verify style float existence\n\t// (IE uses styleFloat instead of cssFloat)\n\tsupport.cssFloat = !!style.cssFloat;\n\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\t// Support: Firefox<29, Android 2.3\n\t// Vendor-prefix box-sizing\n\tsupport.boxSizing = style.boxSizing === \"\" || style.MozBoxSizing === \"\" ||\n\t\tstyle.WebkitBoxSizing === \"\";\n\n\tjQuery.extend(support, {\n\t\treliableHiddenOffsets: function() {\n\t\t\tif ( reliableHiddenOffsetsVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableHiddenOffsetsVal;\n\t\t},\n\n\t\tboxSizingReliable: function() {\n\t\t\tif ( boxSizingReliableVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\n\t\tpixelPosition: function() {\n\t\t\tif ( pixelPositionVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn pixelPositionVal;\n\t\t},\n\n\t\t// Support: Android 2.3\n\t\treliableMarginRight: function() {\n\t\t\tif ( reliableMarginRightVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableMarginRightVal;\n\t\t}\n\t});\n\n\tfunction computeStyleTests() {\n\t\t// Minified: var b,c,d,j\n\t\tvar div, body, container, contents;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\tdiv.style.cssText =\n\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t// Vendor-prefix box-sizing\n\t\t\t\"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;\" +\n\t\t\t\"box-sizing:border-box;display:block;margin-top:1%;top:1%;\" +\n\t\t\t\"border:1px;padding:1px;width:4px;position:absolute\";\n\n\t\t// Support: IE<9\n\t\t// Assume reasonable values in the absence of getComputedStyle\n\t\tpixelPositionVal = boxSizingReliableVal = false;\n\t\treliableMarginRightVal = true;\n\n\t\t// Check for getComputedStyle so that this code is not run in IE<9.\n\t\tif ( window.getComputedStyle ) {\n\t\t\tpixelPositionVal = ( window.getComputedStyle( div, null ) || {} ).top !== \"1%\";\n\t\t\tboxSizingReliableVal =\n\t\t\t\t( window.getComputedStyle( div, null ) || { width: \"4px\" } ).width === \"4px\";\n\n\t\t\t// Support: Android 2.3\n\t\t\t// Div with explicit width and no margin-right incorrectly\n\t\t\t// gets computed margin-right based on width of container (#3333)\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\tcontents = div.appendChild( document.createElement( \"div\" ) );\n\n\t\t\t// Reset CSS: box-sizing; display; margin; border; padding\n\t\t\tcontents.style.cssText = div.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;padding:0\";\n\t\t\tcontents.style.marginRight = contents.style.width = \"0\";\n\t\t\tdiv.style.width = \"1px\";\n\n\t\t\treliableMarginRightVal =\n\t\t\t\t!parseFloat( ( window.getComputedStyle( contents, null ) || {} ).marginRight );\n\n\t\t\tdiv.removeChild( contents );\n\t\t}\n\n\t\t// Support: IE8\n\t\t// Check if table cells still have offsetWidth/Height when they are set\n\t\t// to display:none and there are still other visible table cells in a\n\t\t// table row; if so, offsetWidth/Height are not reliable for use when\n\t\t// determining if an element has been hidden directly using\n\t\t// display:none (it is still safe to use offsets if a parent element is\n\t\t// hidden; don safety goggles and see bug #4512 for more information).\n\t\tdiv.innerHTML = \"<table><tr><td></td><td>t</td></tr></table>\";\n\t\tcontents = div.getElementsByTagName( \"td\" );\n\t\tcontents[ 0 ].style.cssText = \"margin:0;border:0;padding:0;display:none\";\n\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\tif ( reliableHiddenOffsetsVal ) {\n\t\t\tcontents[ 0 ].style.display = \"\";\n\t\t\tcontents[ 1 ].style.display = \"none\";\n\t\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\t}\n\n\t\tbody.removeChild( container );\n\t}\n\n})();\n\n\n// A method for quickly swapping in/out CSS properties to get correct calculations.\njQuery.swap = function( elem, options, callback, args ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.apply( elem, args || [] );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar\n\t\tralpha = /alpha\\([^)]*\\)/i,\n\tropacity = /opacity\\s*=\\s*([^)]*)/,\n\n\t// swappable if display is none or starts with table except \"table\", \"table-cell\", or \"table-caption\"\n\t// see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trnumsplit = new RegExp( \"^(\" + pnum + \")(.*)$\", \"i\" ),\n\trrelNum = new RegExp( \"^([+-])=(\" + pnum + \")\", \"i\" ),\n\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t},\n\n\tcssPrefixes = [ \"Webkit\", \"O\", \"Moz\", \"ms\" ];\n\n\n// return a css property mapped to a potentially vendor prefixed property\nfunction vendorPropName( style, name ) {\n\n\t// shortcut for names that are not vendor prefixed\n\tif ( name in style ) {\n\t\treturn name;\n\t}\n\n\t// check for vendor prefixed names\n\tvar capName = name.charAt(0).toUpperCase() + name.slice(1),\n\t\torigName = name,\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in style ) {\n\t\t\treturn name;\n\t\t}\n\t}\n\n\treturn origName;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem, hidden,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\" );\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\t\t\t// Reset the inline display of this element to learn if it is\n\t\t\t// being hidden by cascaded rules or not\n\t\t\tif ( !values[ index ] && display === \"none\" ) {\n\t\t\t\telem.style.display = \"\";\n\t\t\t}\n\n\t\t\t// Set elements which have been overridden with display: none\n\t\t\t// in a stylesheet to whatever the default browser style is\n\t\t\t// for such an element\n\t\t\tif ( elem.style.display === \"\" && isHidden( elem ) ) {\n\t\t\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\", defaultDisplay(elem.nodeName) );\n\t\t\t}\n\t\t} else {\n\t\t\thidden = isHidden( elem );\n\n\t\t\tif ( display && display !== \"none\" || !hidden ) {\n\t\t\t\tjQuery._data( elem, \"olddisplay\", hidden ? display : jQuery.css( elem, \"display\" ) );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of most of the elements in a second loop\n\t// to avoid the constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( !show || elem.style.display === \"none\" || elem.style.display === \"\" ) {\n\t\t\telem.style.display = show ? values[ index ] || \"\" : \"none\";\n\t\t}\n\t}\n\n\treturn elements;\n}\n\nfunction setPositiveNumber( elem, value, subtract ) {\n\tvar matches = rnumsplit.exec( value );\n\treturn matches ?\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {\n\tvar i = extra === ( isBorderBox ? \"border\" : \"content\" ) ?\n\t\t// If we already have the right measurement, avoid augmentation\n\t\t4 :\n\t\t// Otherwise initialize for horizontal or vertical properties\n\t\tname === \"width\" ? 1 : 0,\n\n\t\tval = 0;\n\n\tfor ( ; i < 4; i += 2 ) {\n\t\t// both box models exclude margin, so add it if we want it\n\t\tif ( extra === \"margin\" ) {\n\t\t\tval += jQuery.css( elem, extra + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\tif ( isBorderBox ) {\n\t\t\t// border-box includes padding, so remove it if we want content\n\t\t\tif ( extra === \"content\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// at this point, extra isn't border nor margin, so remove border\n\t\t\tif ( extra !== \"margin\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t} else {\n\t\t\t// at this point, extra isn't content, so add padding\n\t\t\tval += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// at this point, extra isn't content nor padding, so add border\n\t\t\tif ( extra !== \"padding\" ) {\n\t\t\t\tval += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn val;\n}\n\nfunction getWidthOrHeight( elem, name, extra ) {\n\n\t// Start with offset property, which is equivalent to the border-box value\n\tvar valueIsBorderBox = true,\n\t\tval = name === \"width\" ? elem.offsetWidth : elem.offsetHeight,\n\t\tstyles = getStyles( elem ),\n\t\tisBorderBox = support.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t// some non-html elements return undefined for offsetWidth, so check for null/undefined\n\t// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285\n\t// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668\n\tif ( val <= 0 || val == null ) {\n\t\t// Fall back to computed then uncomputed css if necessary\n\t\tval = curCSS( elem, name, styles );\n\t\tif ( val < 0 || val == null ) {\n\t\t\tval = elem.style[ name ];\n\t\t}\n\n\t\t// Computed unit is not pixels. Stop here and return.\n\t\tif ( rnumnonpx.test(val) ) {\n\t\t\treturn val;\n\t\t}\n\n\t\t// we need the check for style in case a browser which returns unreliable values\n\t\t// for getComputedStyle silently falls back to the reliable elem.style\n\t\tvalueIsBorderBox = isBorderBox && ( support.boxSizingReliable() || val === elem.style[ name ] );\n\n\t\t// Normalize \"\", auto, and prepare for extra\n\t\tval = parseFloat( val ) || 0;\n\t}\n\n\t// use the active box-sizing model to add/subtract irrelevant styles\n\treturn ( val +\n\t\taugmentWidthOrHeight(\n\t\t\telem,\n\t\t\tname,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend({\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {\n\t\t// normalize float css property\n\t\t\"float\": support.cssFloat ? \"cssFloat\" : \"styleFloat\"\n\t},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = jQuery.camelCase( name ),\n\t\t\tstyle = elem.style;\n\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// convert relative number strings (+= or -=) to relative numbers. #7345\n\t\t\tif ( type === \"string\" && (ret = rrelNum.exec( value )) ) {\n\t\t\t\tvalue = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set. See: #7116\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add 'px' to the (except for certain CSS properties)\n\t\t\tif ( type === \"number\" && !jQuery.cssNumber[ origName ] ) {\n\t\t\t\tvalue += \"px\";\n\t\t\t}\n\n\t\t\t// Fixes #8908, it can be done more correctly by specifing setters in cssHooks,\n\t\t\t// but it would mean to define eight (for every problematic property) identical functions\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf(\"background\") === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !(\"set\" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {\n\n\t\t\t\t// Support: IE\n\t\t\t\t// Swallow errors from 'invalid' CSS values (#5509)\n\t\t\t\ttry {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t} else {\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar num, val, hooks,\n\t\t\torigName = jQuery.camelCase( name );\n\n\t\t// Make sure that we're working with the right name\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t//convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Return, converting to number if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || jQuery.isNumeric( num ) ? num || 0 : val;\n\t\t}\n\t\treturn val;\n\t}\n});\n\njQuery.each([ \"height\", \"width\" ], function( i, name ) {\n\tjQuery.cssHooks[ name ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\t\t\t\t// certain elements can have dimension info if we invisibly show them\n\t\t\t\t// however, it must have a current display style that would benefit from this\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) && elem.offsetWidth === 0 ?\n\t\t\t\t\tjQuery.swap( elem, cssShow, function() {\n\t\t\t\t\t\treturn getWidthOrHeight( elem, name, extra );\n\t\t\t\t\t}) :\n\t\t\t\t\tgetWidthOrHeight( elem, name, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar styles = extra && getStyles( elem );\n\t\t\treturn setPositiveNumber( elem, value, extra ?\n\t\t\t\taugmentWidthOrHeight(\n\t\t\t\t\telem,\n\t\t\t\t\tname,\n\t\t\t\t\textra,\n\t\t\t\t\tsupport.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\t\tstyles\n\t\t\t\t) : 0\n\t\t\t);\n\t\t}\n\t};\n});\n\nif ( !support.opacity ) {\n\tjQuery.cssHooks.opacity = {\n\t\tget: function( elem, computed ) {\n\t\t\t// IE uses filters for opacity\n\t\t\treturn ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || \"\" ) ?\n\t\t\t\t( 0.01 * parseFloat( RegExp.$1 ) ) + \"\" :\n\t\t\t\tcomputed ? \"1\" : \"\";\n\t\t},\n\n\t\tset: function( elem, value ) {\n\t\t\tvar style = elem.style,\n\t\t\t\tcurrentStyle = elem.currentStyle,\n\t\t\t\topacity = jQuery.isNumeric( value ) ? \"alpha(opacity=\" + value * 100 + \")\" : \"\",\n\t\t\t\tfilter = currentStyle && currentStyle.filter || style.filter || \"\";\n\n\t\t\t// IE has trouble with opacity if it does not have layout\n\t\t\t// Force it by setting the zoom level\n\t\t\tstyle.zoom = 1;\n\n\t\t\t// if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652\n\t\t\t// if value === \"\", then remove inline opacity #12685\n\t\t\tif ( ( value >= 1 || value === \"\" ) &&\n\t\t\t\t\tjQuery.trim( filter.replace( ralpha, \"\" ) ) === \"\" &&\n\t\t\t\t\tstyle.removeAttribute ) {\n\n\t\t\t\t// Setting style.filter to null, \"\" & \" \" still leave \"filter:\" in the cssText\n\t\t\t\t// if \"filter:\" is present at all, clearType is disabled, we want to avoid this\n\t\t\t\t// style.removeAttribute is IE Only, but so apparently is this code path...\n\t\t\t\tstyle.removeAttribute( \"filter\" );\n\n\t\t\t\t// if there is no filter style applied in a css rule or unset inline opacity, we are done\n\t\t\t\tif ( value === \"\" || currentStyle && !currentStyle.filter ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// otherwise, set new filter values\n\t\t\tstyle.filter = ralpha.test( filter ) ?\n\t\t\t\tfilter.replace( ralpha, opacity ) :\n\t\t\t\tfilter + \" \" + opacity;\n\t\t}\n\t};\n}\n\njQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\t// Work around by temporarily setting element display to inline-block\n\t\t\treturn jQuery.swap( elem, { \"display\": \"inline-block\" },\n\t\t\t\tcurCSS, [ elem, \"marginRight\" ] );\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each({\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split(\" \") : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( !rmargin.test( prefix ) ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n});\n\njQuery.fn.extend({\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( jQuery.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t},\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( isHidden( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t});\n\t}\n});\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || \"swing\";\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\tif ( tween.elem[ tween.prop ] != null &&\n\t\t\t\t(!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails\n\t\t\t// so, simple values such as \"10px\" are parsed to Float.\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\t\t\t// use step hook for back compat - use cssHook if its there - use .style if its\n\t\t\t// available and use plain properties where available\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9\n// Panic based approach to setting things on disconnected nodes\n\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t}\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back Compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, timerId,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trfxnum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" ),\n\trrun = /queueHooks$/,\n\tanimationPrefilters = [ defaultPrefilter ],\n\ttweeners = {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value ),\n\t\t\t\ttarget = tween.cur(),\n\t\t\t\tparts = rfxnum.exec( value ),\n\t\t\t\tunit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t\t\t// Starting value computation is required for potential unit mismatches\n\t\t\t\tstart = ( jQuery.cssNumber[ prop ] || unit !== \"px\" && +target ) &&\n\t\t\t\t\trfxnum.exec( jQuery.css( tween.elem, prop ) ),\n\t\t\t\tscale = 1,\n\t\t\t\tmaxIterations = 20;\n\n\t\t\tif ( start && start[ 3 ] !== unit ) {\n\t\t\t\t// Trust units reported by jQuery.css\n\t\t\t\tunit = unit || start[ 3 ];\n\n\t\t\t\t// Make sure we update the tween properties later on\n\t\t\t\tparts = parts || [];\n\n\t\t\t\t// Iteratively approximate from a nonzero starting point\n\t\t\t\tstart = +target || 1;\n\n\t\t\t\tdo {\n\t\t\t\t\t// If previous iteration zeroed out, double until we get *something*\n\t\t\t\t\t// Use a string for doubling factor so we don't accidentally see scale as unchanged below\n\t\t\t\t\tscale = scale || \".5\";\n\n\t\t\t\t\t// Adjust and apply\n\t\t\t\t\tstart = start / scale;\n\t\t\t\t\tjQuery.style( tween.elem, prop, start + unit );\n\n\t\t\t\t// Update scale, tolerating zero or NaN from tween.cur()\n\t\t\t\t// And breaking the loop if scale is unchanged or perfect, or if we've just had enough\n\t\t\t\t} while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );\n\t\t\t}\n\n\t\t\t// Update tween properties\n\t\t\tif ( parts ) {\n\t\t\t\tstart = tween.start = +start || +target || 0;\n\t\t\t\ttween.unit = unit;\n\t\t\t\t// If a +=/-= token was provided, we're doing a relative animation\n\t\t\t\ttween.end = parts[ 1 ] ?\n\t\t\t\t\tstart + ( parts[ 1 ] + 1 ) * parts[ 2 ] :\n\t\t\t\t\t+parts[ 2 ];\n\t\t\t}\n\n\t\t\treturn tween;\n\t\t} ]\n\t};\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\tsetTimeout(function() {\n\t\tfxNow = undefined;\n\t});\n\treturn ( fxNow = jQuery.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\tattrs = { height: type },\n\t\ti = 0;\n\n\t// if we include width, step value is 1 to do all cssExpand values,\n\t// if we don't include width, step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4 ; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( tweeners[ prop ] || [] ).concat( tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( (tween = collection[ index ].call( animation, prop, value )) ) {\n\n\t\t\t// we're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\t/* jshint validthis: true */\n\tvar prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHidden( elem ),\n\t\tdataShow = jQuery._data( elem, \"fxshow\" );\n\n\t// handle queue: false promises\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always(function() {\n\t\t\t// doing this makes sure that the complete handler will be called\n\t\t\t// before this completes\n\t\t\tanim.always(function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t}\n\n\t// height/width overflow pass\n\tif ( elem.nodeType === 1 && ( \"height\" in props || \"width\" in props ) ) {\n\t\t// Make sure that nothing sneaks out\n\t\t// Record all 3 overflow attributes because IE does not\n\t\t// change the overflow attribute when overflowX and\n\t\t// overflowY are set to the same value\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Set display property to inline-block for height/width\n\t\t// animations on inline elements that are having width/height animated\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\n\t\t// Test default display if display is currently \"none\"\n\t\tcheckDisplay = display === \"none\" ?\n\t\t\tjQuery._data( elem, \"olddisplay\" ) || defaultDisplay( elem.nodeName ) : display;\n\n\t\tif ( checkDisplay === \"inline\" && jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t// inline-level elements accept inline-block;\n\t\t\t// block-level elements need to be inline with layout\n\t\t\tif ( !support.inlineBlockNeedsLayout || defaultDisplay( elem.nodeName ) === \"inline\" ) {\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t} else {\n\t\t\t\tstyle.zoom = 1;\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tif ( !support.shrinkWrapBlocks() ) {\n\t\t\tanim.always(function() {\n\t\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t\t});\n\t\t}\n\t}\n\n\t// show/hide pass\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.exec( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\n\t\t// Any non-fx value stops us from restoring the original display value\n\t\t} else {\n\t\t\tdisplay = undefined;\n\t\t}\n\t}\n\n\tif ( !jQuery.isEmptyObject( orig ) ) {\n\t\tif ( dataShow ) {\n\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\thidden = dataShow.hidden;\n\t\t\t}\n\t\t} else {\n\t\t\tdataShow = jQuery._data( elem, \"fxshow\", {} );\n\t\t}\n\n\t\t// store state if its toggle - enables .stop().toggle() to \"reverse\"\n\t\tif ( toggle ) {\n\t\t\tdataShow.hidden = !hidden;\n\t\t}\n\t\tif ( hidden ) {\n\t\t\tjQuery( elem ).show();\n\t\t} else {\n\t\t\tanim.done(function() {\n\t\t\t\tjQuery( elem ).hide();\n\t\t\t});\n\t\t}\n\t\tanim.done(function() {\n\t\t\tvar prop;\n\t\t\tjQuery._removeData( elem, \"fxshow\" );\n\t\t\tfor ( prop in orig ) {\n\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t}\n\t\t});\n\t\tfor ( prop in orig ) {\n\t\t\ttween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\n\t\t\tif ( !( prop in dataShow ) ) {\n\t\t\t\tdataShow[ prop ] = tween.start;\n\t\t\t\tif ( hidden ) {\n\t\t\t\t\ttween.end = tween.start;\n\t\t\t\t\ttween.start = prop === \"width\" || prop === \"height\" ? 1 : 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t// If this is a noop like .hide().hide(), restore an overwritten display value\n\t} else if ( (display === \"none\" ? defaultDisplay( elem.nodeName ) : display) === \"inline\" ) {\n\t\tstyle.display = display;\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = jQuery.camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( jQuery.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// not quite $.extend, this wont overwrite keys already present.\n\t\t\t// also - reusing 'index' from above because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = animationPrefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\t\t\t// don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t}),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\t\t\t\t// archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ]);\n\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t} else {\n\t\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\t\tanimation = deferred.promise({\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, { specialEasing: {} }, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\t\t\t\t\t// if we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// resolve when we played the last frame\n\t\t\t\t// otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t}),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length ; index++ ) {\n\t\tresult = animationPrefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( jQuery.isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t})\n\t);\n\n\t// attach callbacks from options\n\treturn animation.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\ttweener: function( props, callback ) {\n\t\tif ( jQuery.isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.split(\" \");\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length ; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\ttweeners[ prop ] = tweeners[ prop ] || [];\n\t\t\ttweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tanimationPrefilters.unshift( callback );\n\t\t} else {\n\t\t\tanimationPrefilters.push( callback );\n\t\t}\n\t}\n});\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tjQuery.isFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !jQuery.isFunction( easing ) && easing\n\t};\n\n\topt.duration = jQuery.fx.off ? 0 : typeof opt.duration === \"number\" ? opt.duration :\n\t\topt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;\n\n\t// normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( jQuery.isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend({\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHidden ).css( \"opacity\", 0 ).show()\n\n\t\t\t// animate to the value specified\n\t\t\t.end().animate({ opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || jQuery._data( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue && type !== false ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = jQuery._data( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// start the next in the queue if the last step wasn't forced\n\t\t\t// timers currently will call their complete callbacks, which will dequeue\n\t\t\t// but only if they were gotoEnd\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t});\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tvar index,\n\t\t\t\tdata = jQuery._data( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t});\n\t}\n});\n\njQuery.each([ \"toggle\", \"show\", \"hide\" ], function( i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n});\n\n// Generate shortcuts for custom animations\njQuery.each({\n\tslideDown: genFx(\"show\"),\n\tslideUp: genFx(\"hide\"),\n\tslideToggle: genFx(\"toggle\"),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n});\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ttimers = jQuery.timers,\n\t\ti = 0;\n\n\tfxNow = jQuery.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\t\t// Checks the timer has not already been removed\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tif ( timer() ) {\n\t\tjQuery.fx.start();\n\t} else {\n\t\tjQuery.timers.pop();\n\t}\n};\n\njQuery.fx.interval = 13;\n\njQuery.fx.start = function() {\n\tif ( !timerId ) {\n\t\ttimerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );\n\t}\n};\n\njQuery.fx.stop = function() {\n\tclearInterval( timerId );\n\ttimerId = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\tclearTimeout( timeout );\n\t\t};\n\t});\n};\n\n\n(function() {\n\t// Minified: var a,b,c,d,e\n\tvar input, div, select, a, opt;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.setAttribute( \"className\", \"t\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName(\"a\")[ 0 ];\n\n\t// First batch of tests.\n\tselect = document.createElement(\"select\");\n\topt = select.appendChild( document.createElement(\"option\") );\n\tinput = div.getElementsByTagName(\"input\")[ 0 ];\n\n\ta.style.cssText = \"top:1px\";\n\n\t// Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)\n\tsupport.getSetAttribute = div.className !== \"t\";\n\n\t// Get the style information from getAttribute\n\t// (IE uses .cssText instead)\n\tsupport.style = /top/.test( a.getAttribute(\"style\") );\n\n\t// Make sure that URLs aren't manipulated\n\t// (IE normalizes it by default)\n\tsupport.hrefNormalized = a.getAttribute(\"href\") === \"/a\";\n\n\t// Check the default checkbox/radio value (\"\" on WebKit; \"on\" elsewhere)\n\tsupport.checkOn = !!input.value;\n\n\t// Make sure that a selected-by-default option has a working selected property.\n\t// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)\n\tsupport.optSelected = opt.selected;\n\n\t// Tests for enctype support on a form (#6743)\n\tsupport.enctype = !!document.createElement(\"form\").enctype;\n\n\t// Make sure that the options inside disabled selects aren't marked as disabled\n\t// (WebKit marks them as disabled)\n\tselect.disabled = true;\n\tsupport.optDisabled = !opt.disabled;\n\n\t// Support: IE8 only\n\t// Check if we can trust getAttribute(\"value\")\n\tinput = document.createElement( \"input\" );\n\tinput.setAttribute( \"value\", \"\" );\n\tsupport.input = input.getAttribute( \"value\" ) === \"\";\n\n\t// Check if an input maintains its value after becoming a radio\n\tinput.value = \"t\";\n\tinput.setAttribute( \"type\", \"radio\" );\n\tsupport.radioValue = input.value === \"t\";\n})();\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend({\n\tval: function( value ) {\n\t\tvar hooks, ret, isFunction,\n\t\t\telem = this[0];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, \"value\" )) !== undefined ) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\treturn typeof ret === \"string\" ?\n\t\t\t\t\t// handle most common string cases\n\t\t\t\t\tret.replace(rreturn, \"\") :\n\t\t\t\t\t// handle cases where value is null/undef or number\n\t\t\t\t\tret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tisFunction = jQuery.isFunction( value );\n\n\t\treturn this.each(function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( isFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\t\t\t} else if ( jQuery.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t});\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !(\"set\" in hooks) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\t\t\t\t\t// Support: IE10-11+\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\tjQuery.trim( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\" || index < 0,\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length,\n\t\t\t\t\ti = index < 0 ?\n\t\t\t\t\t\tmax :\n\t\t\t\t\t\tone ? index : 0;\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// oldIE doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t( support.optDisabled ? !option.disabled : option.getAttribute(\"disabled\") === null ) &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\tif ( jQuery.inArray( jQuery.valHooks.option.get( option ), values ) >= 0 ) {\n\n\t\t\t\t\t\t// Support: IE6\n\t\t\t\t\t\t// When new option element is added to select box we need to\n\t\t\t\t\t\t// force reflow of newly added node in order to workaround delay\n\t\t\t\t\t\t// of initialization properties\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\toption.selected = optionSet = true;\n\n\t\t\t\t\t\t} catch ( _ ) {\n\n\t\t\t\t\t\t\t// Will be executed only in IE6\n\t\t\t\t\t\t\toption.scrollHeight;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\toption.selected = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\n\t\t\t\treturn options;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Radios and checkboxes getter/setter\njQuery.each([ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( jQuery.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\t// Support: Webkit\n\t\t\t// \"\" is returned instead of \"on\" if a value isn't specified\n\t\t\treturn elem.getAttribute(\"value\") === null ? \"on\" : elem.value;\n\t\t};\n\t}\n});\n\n\n\n\nvar nodeHook, boolHook,\n\tattrHandle = jQuery.expr.attrHandle,\n\truseDefault = /^(?:checked|selected)$/i,\n\tgetSetAttribute = support.getSetAttribute,\n\tgetSetInput = support.input;\n\njQuery.fn.extend({\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tattr: function( elem, name, value ) {\n\t\tvar hooks, ret,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set attributes on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === strundefined ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// All attributes are lowercase\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\tname = name.toLowerCase();\n\t\t\thooks = jQuery.attrHooks[ name ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\n\t\t\t} else if ( hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {\n\t\t\t\treturn ret;\n\n\t\t\t} else {\n\t\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\t\treturn value;\n\t\t\t}\n\n\t\t} else if ( hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ) {\n\t\t\treturn ret;\n\n\t\t} else {\n\t\t\tret = jQuery.find.attr( elem, name );\n\n\t\t\t// Non-existent attributes return null, we normalize to undefined\n\t\t\treturn ret == null ?\n\t\t\t\tundefined :\n\t\t\t\tret;\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name, propName,\n\t\t\ti = 0,\n\t\t\tattrNames = value && value.match( rnotwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( (name = attrNames[i++]) ) {\n\t\t\t\tpropName = jQuery.propFix[ name ] || name;\n\n\t\t\t\t// Boolean attributes get special treatment (#10870)\n\t\t\t\tif ( jQuery.expr.match.bool.test( name ) ) {\n\t\t\t\t\t// Set corresponding property to false\n\t\t\t\t\tif ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t// Also clear defaultChecked/defaultSelected (if appropriate)\n\t\t\t\t\t} else {\n\t\t\t\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] =\n\t\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t}\n\n\t\t\t\t// See #9699 for explanation of this approach (setting first, then removal)\n\t\t\t\t} else {\n\t\t\t\t\tjQuery.attr( elem, name, \"\" );\n\t\t\t\t}\n\n\t\t\t\telem.removeAttribute( getSetAttribute ? name : propName );\n\t\t\t}\n\t\t}\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" && jQuery.nodeName(elem, \"input\") ) {\n\t\t\t\t\t// Setting the type on a radio button after the value resets the value in IE6-9\n\t\t\t\t\t// Reset value to default in case type is set after value during creation\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Hook for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t// IE<8 needs the *property* name\n\t\t\telem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name );\n\n\t\t// Use defaultChecked and defaultSelected for oldIE\n\t\t} else {\n\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] = elem[ name ] = true;\n\t\t}\n\n\t\treturn name;\n\t}\n};\n\n// Retrieve booleans specially\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( i, name ) {\n\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ?\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret, handle;\n\t\t\tif ( !isXML ) {\n\t\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\t\thandle = attrHandle[ name ];\n\t\t\t\tattrHandle[ name ] = ret;\n\t\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t\tattrHandle[ name ] = handle;\n\t\t\t}\n\t\t\treturn ret;\n\t\t} :\n\t\tfunction( elem, name, isXML ) {\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn elem[ jQuery.camelCase( \"default-\" + name ) ] ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n});\n\n// fix oldIE attroperties\nif ( !getSetInput || !getSetAttribute ) {\n\tjQuery.attrHooks.value = {\n\t\tset: function( elem, value, name ) {\n\t\t\tif ( jQuery.nodeName( elem, \"input\" ) ) {\n\t\t\t\t// Does not return so that setAttribute is also used\n\t\t\t\telem.defaultValue = value;\n\t\t\t} else {\n\t\t\t\t// Use nodeHook if defined (#1954); otherwise setAttribute is fine\n\t\t\t\treturn nodeHook && nodeHook.set( elem, value, name );\n\t\t\t}\n\t\t}\n\t};\n}\n\n// IE6/7 do not support getting/setting some attributes with get/setAttribute\nif ( !getSetAttribute ) {\n\n\t// Use this for any attribute in IE6/7\n\t// This fixes almost every IE6/7 issue\n\tnodeHook = {\n\t\tset: function( elem, value, name ) {\n\t\t\t// Set the existing or create a new attribute node\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( !ret ) {\n\t\t\t\telem.setAttributeNode(\n\t\t\t\t\t(ret = elem.ownerDocument.createAttribute( name ))\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tret.value = value += \"\";\n\n\t\t\t// Break association with cloned elements by also using setAttribute (#9646)\n\t\t\tif ( name === \"value\" || value === elem.getAttribute( name ) ) {\n\t\t\t\treturn value;\n\t\t\t}\n\t\t}\n\t};\n\n\t// Some attributes are constructed with empty-string values when not defined\n\tattrHandle.id = attrHandle.name = attrHandle.coords =\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret;\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn (ret = elem.getAttributeNode( name )) && ret.value !== \"\" ?\n\t\t\t\t\tret.value :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n\n\t// Fixing value retrieval on a button requires this module\n\tjQuery.valHooks.button = {\n\t\tget: function( elem, name ) {\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( ret && ret.specified ) {\n\t\t\t\treturn ret.value;\n\t\t\t}\n\t\t},\n\t\tset: nodeHook.set\n\t};\n\n\t// Set contenteditable to false on removals(#10429)\n\t// Setting to empty string throws an error as an invalid value\n\tjQuery.attrHooks.contenteditable = {\n\t\tset: function( elem, value, name ) {\n\t\t\tnodeHook.set( elem, value === \"\" ? false : value, name );\n\t\t}\n\t};\n\n\t// Set width and height to auto instead of 0 on empty string( Bug #8150 )\n\t// This is for removals\n\tjQuery.each([ \"width\", \"height\" ], function( i, name ) {\n\t\tjQuery.attrHooks[ name ] = {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( value === \"\" ) {\n\t\t\t\t\telem.setAttribute( name, \"auto\" );\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\nif ( !support.style ) {\n\tjQuery.attrHooks.style = {\n\t\tget: function( elem ) {\n\t\t\t// Return undefined in the case of empty string\n\t\t\t// Note: IE uppercases css property names, but if we were to .toLowerCase()\n\t\t\t// .cssText, that would destroy case senstitivity in URL's, like in \"background\"\n\t\t\treturn elem.style.cssText || undefined;\n\t\t},\n\t\tset: function( elem, value ) {\n\t\t\treturn ( elem.style.cssText = value + \"\" );\n\t\t}\n\t};\n}\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button|object)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend({\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\tname = jQuery.propFix[ name ] || name;\n\t\treturn this.each(function() {\n\t\t\t// try/catch handles cases where IE balks (such as removing a property on window)\n\t\t\ttry {\n\t\t\t\tthis[ name ] = undefined;\n\t\t\t\tdelete this[ name ];\n\t\t\t} catch( e ) {}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t},\n\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks, notxml,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set properties on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tnotxml = nType !== 1 || !jQuery.isXMLDoc( elem );\n\n\t\tif ( notxml ) {\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\treturn hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?\n\t\t\t\tret :\n\t\t\t\t( elem[ name ] = value );\n\n\t\t} else {\n\t\t\treturn hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ?\n\t\t\t\tret :\n\t\t\t\telem[ name ];\n\t\t}\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\t\t\t\t// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set\n\t\t\t\t// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\treturn tabindex ?\n\t\t\t\t\tparseInt( tabindex, 10 ) :\n\t\t\t\t\trfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?\n\t\t\t\t\t\t0 :\n\t\t\t\t\t\t-1;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Some attributes require a special call on IE\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !support.hrefNormalized ) {\n\t// href/src property should get the full normalized URL (#10299/#12915)\n\tjQuery.each([ \"href\", \"src\" ], function( i, name ) {\n\t\tjQuery.propHooks[ name ] = {\n\t\t\tget: function( elem ) {\n\t\t\t\treturn elem.getAttribute( name, 4 );\n\t\t\t}\n\t\t};\n\t});\n}\n\n// Support: Safari, IE9+\n// mis-reports the default selected property of an option\n// Accessing the parent's selectedIndex property fixes it\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\t// Make sure that it also works with optgroups, see #5701\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\t};\n}\n\njQuery.each([\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n});\n\n// IE6/7 call enctype encoding\nif ( !support.enctype ) {\n\tjQuery.propFix.enctype = \"encoding\";\n}\n\n\n\n\nvar rclass = /[\\t\\r\\n\\f]/g;\n\njQuery.fn.extend({\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\n\t\tif ( proceed ) {\n\t\t\t// The disjunction here is for better compressibility (see removeClass)\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\" \"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = jQuery.trim( cur );\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = arguments.length === 0 || typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\t\tif ( proceed ) {\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\"\"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) >= 0 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = value ? jQuery.trim( cur ) : \"\";\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value;\n\n\t\tif ( typeof stateVal === \"boolean\" && type === \"string\" ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tjQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( type === \"string\" ) {\n\t\t\t\t// toggle individual class names\n\t\t\t\tvar className,\n\t\t\t\t\ti = 0,\n\t\t\t\t\tself = jQuery( this ),\n\t\t\t\t\tclassNames = value.match( rnotwhite ) || [];\n\n\t\t\t\twhile ( (className = classNames[ i++ ]) ) {\n\t\t\t\t\t// check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( type === strundefined || type === \"boolean\" ) {\n\t\t\t\tif ( this.className ) {\n\t\t\t\t\t// store className if set\n\t\t\t\t\tjQuery._data( this, \"__className__\", this.className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed \"false\",\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tthis.className = this.className || value === false ? \"\" : jQuery._data( this, \"__className__\" ) || \"\";\n\t\t\t}\n\t\t});\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className = \" \" + selector + \" \",\n\t\t\ti = 0,\n\t\t\tl = this.length;\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tif ( this[i].nodeType === 1 && (\" \" + this[i].className + \" \").replace(rclass, \" \").indexOf( className ) >= 0 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n});\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\njQuery.each( (\"blur focus focusin focusout load resize scroll unload click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup error contextmenu\").split(\" \"), function( i, name ) {\n\n\t// Handle event binding\n\tjQuery.fn[ name ] = function( data, fn ) {\n\t\treturn arguments.length > 0 ?\n\t\t\tthis.on( name, null, data, fn ) :\n\t\t\tthis.trigger( name );\n\t};\n});\n\njQuery.fn.extend({\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t},\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ? this.off( selector, \"**\" ) : this.off( types, selector || \"**\", fn );\n\t}\n});\n\n\nvar nonce = jQuery.now();\n\nvar rquery = (/\\?/);\n\n\n\nvar rvalidtokens = /(,)|(\\[|{)|(}|])|\"(?:[^\"\\\\\\r\\n]|\\\\[\"\\\\\\/bfnrt]|\\\\u[\\da-fA-F]{4})*\"\\s*:?|true|false|null|-?(?!0\\d)\\d+(?:\\.\\d+|)(?:[eE][+-]?\\d+|)/g;\n\njQuery.parseJSON = function( data ) {\n\t// Attempt to parse using the native JSON parser first\n\tif ( window.JSON && window.JSON.parse ) {\n\t\t// Support: Android 2.3\n\t\t// Workaround failure to string-cast null input\n\t\treturn window.JSON.parse( data + \"\" );\n\t}\n\n\tvar requireNonComma,\n\t\tdepth = null,\n\t\tstr = jQuery.trim( data + \"\" );\n\n\t// Guard against invalid (and possibly dangerous) input by ensuring that nothing remains\n\t// after removing valid tokens\n\treturn str && !jQuery.trim( str.replace( rvalidtokens, function( token, comma, open, close ) {\n\n\t\t// Force termination if we see a misplaced comma\n\t\tif ( requireNonComma && comma ) {\n\t\t\tdepth = 0;\n\t\t}\n\n\t\t// Perform no more replacements after returning to outermost depth\n\t\tif ( depth === 0 ) {\n\t\t\treturn token;\n\t\t}\n\n\t\t// Commas must not follow \"[\", \"{\", or \",\"\n\t\trequireNonComma = open || comma;\n\n\t\t// Determine new depth\n\t\t// array/object open (\"[\" or \"{\"): depth += true - false (increment)\n\t\t// array/object close (\"]\" or \"}\"): depth += false - true (decrement)\n\t\t// other cases (\",\" or primitive): depth += true - true (numeric cast)\n\t\tdepth += !close - !open;\n\n\t\t// Remove this token\n\t\treturn \"\";\n\t}) ) ?\n\t\t( Function( \"return \" + str ) )() :\n\t\tjQuery.error( \"Invalid JSON: \" + data );\n};\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml, tmp;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\ttry {\n\t\tif ( window.DOMParser ) { // Standard\n\t\t\ttmp = new DOMParser();\n\t\t\txml = tmp.parseFromString( data, \"text/xml\" );\n\t\t} else { // IE\n\t\t\txml = new ActiveXObject( \"Microsoft.XMLDOM\" );\n\t\t\txml.async = \"false\";\n\t\t\txml.loadXML( data );\n\t\t}\n\t} catch( e ) {\n\t\txml = undefined;\n\t}\n\tif ( !xml || !xml.documentElement || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\t// Document location\n\tajaxLocParts,\n\tajaxLocation,\n\n\trhash = /#.*$/,\n\trts = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)\\r?$/mg, // IE leaves an \\r character at EOL\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\trurl = /^([\\w.+-]+:)(?:\\/\\/(?:[^\\/?#]*@|)([^\\/?#:]*)(?::(\\d+)|)|)/,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat(\"*\");\n\n// #8138, IE may throw an exception when accessing\n// a field from window.location if document.domain has been set\ntry {\n\tajaxLocation = location.href;\n} catch( e ) {\n\t// Use the href attribute of an A element\n\t// since IE will modify it given document.location\n\tajaxLocation = document.createElement( \"a\" );\n\tajaxLocation.href = \"\";\n\tajaxLocation = ajaxLocation.href;\n}\n\n// Segment location into parts\najaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];\n\n\t\tif ( jQuery.isFunction( func ) ) {\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( (dataType = dataTypes[i++]) ) {\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType.charAt( 0 ) === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t});\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar deep, key,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\tvar firstDataType, ct, finalDataType, type,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader(\"Content-Type\");\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[0] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s[ \"throws\" ] ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn { state: \"parsererror\", error: conv ? e : \"No conversion from \" + prev + \" to \" + current };\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend({\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: ajaxLocation,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /xml/,\n\t\t\thtml: /html/,\n\t\t\tjson: /json/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": jQuery.parseJSON,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar // Cross-domain detection vars\n\t\t\tparts,\n\t\t\t// Loop variable\n\t\t\ti,\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\t\t\t// Response headers as string\n\t\t\tresponseHeadersString,\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\ttransport,\n\t\t\t// Response headers\n\t\t\tresponseHeaders,\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\tjQuery.event,\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks(\"once memory\"),\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\t\t\t// The jqXHR state\n\t\t\tstate = 0,\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( state === 2 ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( (match = rheaders.exec( responseHeadersString )) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[1].toLowerCase() ] = match[ 2 ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match;\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn state === 2 ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tvar lname = name.toLowerCase();\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\tname = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\t// Lazy-add the new callback in a way that preserves old ones\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR ).complete = completeDeferred.add;\n\t\tjqXHR.success = jqXHR.done;\n\t\tjqXHR.error = jqXHR.fail;\n\n\t\t// Remove hash character (#7531: and string promotion)\n\t\t// Add protocol if not provided (#5866: IE7 issue with protocol-less urls)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || ajaxLocation ) + \"\" ).replace( rhash, \"\" ).replace( rprotocol, ajaxLocParts[ 1 ] + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = jQuery.trim( s.dataType || \"*\" ).toLowerCase().match( rnotwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when we have a protocol:host:port mismatch\n\t\tif ( s.crossDomain == null ) {\n\t\t\tparts = rurl.exec( s.url.toLowerCase() );\n\t\t\ts.crossDomain = !!( parts &&\n\t\t\t\t( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||\n\t\t\t\t\t( parts[ 3 ] || ( parts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) !==\n\t\t\t\t\t\t( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) )\n\t\t\t);\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( state === 2 ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger(\"ajaxStart\");\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\tcacheURL = s.url;\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// If data is available, append data to url\n\t\t\tif ( s.data ) {\n\t\t\t\tcacheURL = ( s.url += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data );\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add anti-cache in url if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\ts.url = rts.test( cacheURL ) ?\n\n\t\t\t\t\t// If there is already a '_' parameter, set its value\n\t\t\t\t\tcacheURL.replace( rts, \"$1_=\" + nonce++ ) :\n\n\t\t\t\t\t// Otherwise add one to the end\n\t\t\t\t\tcacheURL + ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + nonce++;\n\t\t\t}\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tfor ( i in { success: 1, error: 1, complete: 1 } ) {\n\t\t\tjqXHR[ i ]( s[ i ] );\n\t\t}\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = setTimeout(function() {\n\t\t\t\t\tjqXHR.abort(\"timeout\");\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tstate = 1;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\t\t\t\t// Propagate exception as error if not done\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tdone( -1, e );\n\t\t\t\t// Simply rethrow otherwise\n\t\t\t\t} else {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Called once\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// State is \"done\" now\n\t\t\tstate = 2;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\tclearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"Last-Modified\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"etag\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// We extract error from statusText\n\t\t\t\t// then normalize statusText and status for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger(\"ajaxStop\");\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n});\n\njQuery.each( [ \"get\", \"post\" ], function( i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\t\t// shift arguments if data argument was omitted\n\t\tif ( jQuery.isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\treturn jQuery.ajax({\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t});\n\t};\n});\n\n\njQuery._evalUrl = function( url ) {\n\treturn jQuery.ajax({\n\t\turl: url,\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tasync: false,\n\t\tglobal: false,\n\t\t\"throws\": true\n\t});\n};\n\n\njQuery.fn.extend({\n\twrapAll: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapAll( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\tif ( this[0] ) {\n\t\t\t// The elements to wrap the target around\n\t\t\tvar wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);\n\n\t\t\tif ( this[0].parentNode ) {\n\t\t\t\twrap.insertBefore( this[0] );\n\t\t\t}\n\n\t\t\twrap.map(function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstChild && elem.firstChild.nodeType === 1 ) {\n\t\t\t\t\telem = elem.firstChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t}).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapInner( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t});\n\t},\n\n\twrap: function( html ) {\n\t\tvar isFunction = jQuery.isFunction( html );\n\n\t\treturn this.each(function(i) {\n\t\t\tjQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );\n\t\t});\n\t},\n\n\tunwrap: function() {\n\t\treturn this.parent().each(function() {\n\t\t\tif ( !jQuery.nodeName( this, \"body\" ) ) {\n\t\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t\t}\n\t\t}).end();\n\t}\n});\n\n\njQuery.expr.filters.hidden = function( elem ) {\n\t// Support: Opera <= 12.12\n\t// Opera reports offsetWidths and offsetHeights less than zero on some elements\n\treturn elem.offsetWidth <= 0 && elem.offsetHeight <= 0 ||\n\t\t(!support.reliableHiddenOffsets() &&\n\t\t\t((elem.style && elem.style.display) || jQuery.css( elem, \"display\" )) === \"none\");\n};\n\njQuery.expr.filters.visible = function( elem ) {\n\treturn !jQuery.expr.filters.hidden( elem );\n};\n\n\n\n\nvar r20 = /%20/g,\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( jQuery.isArray( obj ) ) {\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams( prefix + \"[\" + ( typeof v === \"object\" ? i : \"\" ) + \"]\", v, traditional, add );\n\t\t\t}\n\t\t});\n\n\t} else if ( !traditional && jQuery.type( obj ) === \"object\" ) {\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, value ) {\n\t\t\t// If value is a function, invoke it and return its value\n\t\t\tvalue = jQuery.isFunction( value ) ? value() : ( value == null ? \"\" : value );\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" + encodeURIComponent( value );\n\t\t};\n\n\t// Set traditional to true for jQuery <= 1.3.2 behavior.\n\tif ( traditional === undefined ) {\n\t\ttraditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t});\n\n\t} else {\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" ).replace( r20, \"+\" );\n};\n\njQuery.fn.extend({\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map(function() {\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t})\n\t\t.filter(function() {\n\t\t\tvar type = this.type;\n\t\t\t// Use .is(\":disabled\") so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t})\n\t\t.map(function( i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\treturn val == null ?\n\t\t\t\tnull :\n\t\t\t\tjQuery.isArray( val ) ?\n\t\t\t\t\tjQuery.map( val, function( val ) {\n\t\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t\t}) :\n\t\t\t\t\t{ name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t}).get();\n\t}\n});\n\n\n// Create the request object\n// (This is still attached to ajaxSettings for backward compatibility)\njQuery.ajaxSettings.xhr = window.ActiveXObject !== undefined ?\n\t// Support: IE6+\n\tfunction() {\n\n\t\t// XHR cannot access local files, always use ActiveX for that case\n\t\treturn !this.isLocal &&\n\n\t\t\t// Support: IE7-8\n\t\t\t// oldIE XHR does not support non-RFC2616 methods (#13240)\n\t\t\t// See http://msdn.microsoft.com/en-us/library/ie/ms536648(v=vs.85).aspx\n\t\t\t// and http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9\n\t\t\t// Although this check for six methods instead of eight\n\t\t\t// since IE also does not support \"trace\" and \"connect\"\n\t\t\t/^(get|post|head|put|delete|options)$/i.test( this.type ) &&\n\n\t\t\tcreateStandardXHR() || createActiveXHR();\n\t} :\n\t// For all other browsers, use the standard XMLHttpRequest object\n\tcreateStandardXHR;\n\nvar xhrId = 0,\n\txhrCallbacks = {},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\n// Support: IE<10\n// Open requests must be manually aborted on unload (#5280)\n// See https://support.microsoft.com/kb/2856746 for more info\nif ( window.attachEvent ) {\n\twindow.attachEvent( \"onunload\", function() {\n\t\tfor ( var key in xhrCallbacks ) {\n\t\t\txhrCallbacks[ key ]( undefined, true );\n\t\t}\n\t});\n}\n\n// Determine support properties\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nxhrSupported = support.ajax = !!xhrSupported;\n\n// Create transport if the browser can provide an xhr\nif ( xhrSupported ) {\n\n\tjQuery.ajaxTransport(function( options ) {\n\t\t// Cross domain only allowed if supported through XMLHttpRequest\n\t\tif ( !options.crossDomain || support.cors ) {\n\n\t\t\tvar callback;\n\n\t\t\treturn {\n\t\t\t\tsend: function( headers, complete ) {\n\t\t\t\t\tvar i,\n\t\t\t\t\t\txhr = options.xhr(),\n\t\t\t\t\t\tid = ++xhrId;\n\n\t\t\t\t\t// Open the socket\n\t\t\t\t\txhr.open( options.type, options.url, options.async, options.username, options.password );\n\n\t\t\t\t\t// Apply custom fields if provided\n\t\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Override mime type if needed\n\t\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t\t}\n\n\t\t\t\t\t// X-Requested-With header\n\t\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\t\tif ( !options.crossDomain && !headers[\"X-Requested-With\"] ) {\n\t\t\t\t\t\theaders[\"X-Requested-With\"] = \"XMLHttpRequest\";\n\t\t\t\t\t}\n\n\t\t\t\t\t// Set headers\n\t\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// IE's ActiveXObject throws a 'Type Mismatch' exception when setting\n\t\t\t\t\t\t// request header to a null-value.\n\t\t\t\t\t\t//\n\t\t\t\t\t\t// To keep consistent with other XHR implementations, cast the value\n\t\t\t\t\t\t// to string and ignore `undefined`.\n\t\t\t\t\t\tif ( headers[ i ] !== undefined ) {\n\t\t\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] + \"\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Do send the request\n\t\t\t\t\t// This may raise an exception which is actually\n\t\t\t\t\t// handled in jQuery.ajax (so no try/catch here)\n\t\t\t\t\txhr.send( ( options.hasContent && options.data ) || null );\n\n\t\t\t\t\t// Listener\n\t\t\t\t\tcallback = function( _, isAbort ) {\n\t\t\t\t\t\tvar status, statusText, responses;\n\n\t\t\t\t\t\t// Was never called and is aborted or complete\n\t\t\t\t\t\tif ( callback && ( isAbort || xhr.readyState === 4 ) ) {\n\t\t\t\t\t\t\t// Clean up\n\t\t\t\t\t\t\tdelete xhrCallbacks[ id ];\n\t\t\t\t\t\t\tcallback = undefined;\n\t\t\t\t\t\t\txhr.onreadystatechange = jQuery.noop;\n\n\t\t\t\t\t\t\t// Abort manually if needed\n\t\t\t\t\t\t\tif ( isAbort ) {\n\t\t\t\t\t\t\t\tif ( xhr.readyState !== 4 ) {\n\t\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tresponses = {};\n\t\t\t\t\t\t\t\tstatus = xhr.status;\n\n\t\t\t\t\t\t\t\t// Support: IE<10\n\t\t\t\t\t\t\t\t// Accessing binary-data responseText throws an exception\n\t\t\t\t\t\t\t\t// (#11426)\n\t\t\t\t\t\t\t\tif ( typeof xhr.responseText === \"string\" ) {\n\t\t\t\t\t\t\t\t\tresponses.text = xhr.responseText;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Firefox throws an exception when accessing\n\t\t\t\t\t\t\t\t// statusText for faulty cross-domain requests\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tstatusText = xhr.statusText;\n\t\t\t\t\t\t\t\t} catch( e ) {\n\t\t\t\t\t\t\t\t\t// We normalize with Webkit giving an empty statusText\n\t\t\t\t\t\t\t\t\tstatusText = \"\";\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Filter status for non standard behaviors\n\n\t\t\t\t\t\t\t\t// If the request is local and we have data: assume a success\n\t\t\t\t\t\t\t\t// (success with no data won't get notified, that's the best we\n\t\t\t\t\t\t\t\t// can do given current implementations)\n\t\t\t\t\t\t\t\tif ( !status && options.isLocal && !options.crossDomain ) {\n\t\t\t\t\t\t\t\t\tstatus = responses.text ? 200 : 404;\n\t\t\t\t\t\t\t\t// IE - #1450: sometimes returns 1223 when it should be 204\n\t\t\t\t\t\t\t\t} else if ( status === 1223 ) {\n\t\t\t\t\t\t\t\t\tstatus = 204;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Call complete if needed\n\t\t\t\t\t\tif ( responses ) {\n\t\t\t\t\t\t\tcomplete( status, statusText, responses, xhr.getAllResponseHeaders() );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\tif ( !options.async ) {\n\t\t\t\t\t\t// if we're in sync mode we fire the callback\n\t\t\t\t\t\tcallback();\n\t\t\t\t\t} else if ( xhr.readyState === 4 ) {\n\t\t\t\t\t\t// (IE6 & IE7) if it's in cache and has been\n\t\t\t\t\t\t// retrieved directly we need to fire the callback\n\t\t\t\t\t\tsetTimeout( callback );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// Add to the list of active xhr callbacks\n\t\t\t\t\t\txhr.onreadystatechange = xhrCallbacks[ id ] = callback;\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tabort: function() {\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tcallback( undefined, true );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t});\n}\n\n// Functions to create xhrs\nfunction createStandardXHR() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch( e ) {}\n}\n\nfunction createActiveXHR() {\n\ttry {\n\t\treturn new window.ActiveXObject( \"Microsoft.XMLHTTP\" );\n\t} catch( e ) {}\n}\n\n\n\n\n// Install script dataType\njQuery.ajaxSetup({\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /(?:java|ecma)script/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n});\n\n// Handle cache's special case and global\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t\ts.global = false;\n\t}\n});\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function(s) {\n\n\t// This transport only deals with cross domain requests\n\tif ( s.crossDomain ) {\n\n\t\tvar script,\n\t\t\thead = document.head || jQuery(\"head\")[0] || document.documentElement;\n\n\t\treturn {\n\n\t\t\tsend: function( _, callback ) {\n\n\t\t\t\tscript = document.createElement(\"script\");\n\n\t\t\t\tscript.async = true;\n\n\t\t\t\tif ( s.scriptCharset ) {\n\t\t\t\t\tscript.charset = s.scriptCharset;\n\t\t\t\t}\n\n\t\t\t\tscript.src = s.url;\n\n\t\t\t\t// Attach handlers for all browsers\n\t\t\t\tscript.onload = script.onreadystatechange = function( _, isAbort ) {\n\n\t\t\t\t\tif ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {\n\n\t\t\t\t\t\t// Handle memory leak in IE\n\t\t\t\t\t\tscript.onload = script.onreadystatechange = null;\n\n\t\t\t\t\t\t// Remove the script\n\t\t\t\t\t\tif ( script.parentNode ) {\n\t\t\t\t\t\t\tscript.parentNode.removeChild( script );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Dereference the script\n\t\t\t\t\t\tscript = null;\n\n\t\t\t\t\t\t// Callback if not abort\n\t\t\t\t\t\tif ( !isAbort ) {\n\t\t\t\t\t\t\tcallback( 200, \"success\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\t// Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\thead.insertBefore( script, head.firstChild );\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( script ) {\n\t\t\t\t\tscript.onload( undefined, true );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n});\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup({\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n});\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" && !( s.contentType || \"\" ).indexOf(\"application/x-www-form-urlencoded\") && rjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[\"script json\"] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always(function() {\n\t\t\t// Restore preexisting value\n\t\t\twindow[ callbackName ] = overwritten;\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\t\t\t\t// make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && jQuery.isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t});\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n});\n\n\n\n\n// data: string of html\n// context (optional): If specified, the fragment will be created in this context, defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\tcontext = context || document;\n\n\tvar parsed = rsingleTag.exec( data ),\n\t\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[1] ) ];\n\t}\n\n\tparsed = jQuery.buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n// Keep a copy of the old load method\nvar _load = jQuery.fn.load;\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tif ( typeof url !== \"string\" && _load ) {\n\t\treturn _load.apply( this, arguments );\n\t}\n\n\tvar selector, response, type,\n\t\tself = this,\n\t\toff = url.indexOf(\" \");\n\n\tif ( off >= 0 ) {\n\t\tselector = jQuery.trim( url.slice( off, url.length ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( jQuery.isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax({\n\t\t\turl: url,\n\n\t\t\t// if \"type\" variable is undefined, then \"GET\" method will be used\n\t\t\ttype: type,\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t}).done(function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery(\"<div>\").append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t}).complete( callback && function( jqXHR, status ) {\n\t\t\tself.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t});\n\t}\n\n\treturn this;\n};\n\n\n\n\n// Attach a bunch of functions for handling common AJAX events\njQuery.each( [ \"ajaxStart\", \"ajaxStop\", \"ajaxComplete\", \"ajaxError\", \"ajaxSuccess\", \"ajaxSend\" ], function( i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n});\n\n\n\n\njQuery.expr.filters.animated = function( elem ) {\n\treturn jQuery.grep(jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t}).length;\n};\n\n\n\n\n\nvar docElem = window.document.documentElement;\n\n/**\n * Gets a window from an element\n */\nfunction getWindow( elem ) {\n\treturn jQuery.isWindow( elem ) ?\n\t\telem :\n\t\telem.nodeType === 9 ?\n\t\t\telem.defaultView || elem.parentWindow :\n\t\t\tfalse;\n}\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\tjQuery.inArray(\"auto\", [ curCSSTop, curCSSLeft ] ) > -1;\n\n\t\t// need to be able to calculate position if either top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( jQuery.isFunction( options ) ) {\n\t\t\toptions = options.call( elem, i, curOffset );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend({\n\toffset: function( options ) {\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each(function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t});\n\t\t}\n\n\t\tvar docElem, win,\n\t\t\tbox = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ],\n\t\t\tdoc = elem && elem.ownerDocument;\n\n\t\tif ( !doc ) {\n\t\t\treturn;\n\t\t}\n\n\t\tdocElem = doc.documentElement;\n\n\t\t// Make sure it's not a disconnected DOM node\n\t\tif ( !jQuery.contains( docElem, elem ) ) {\n\t\t\treturn box;\n\t\t}\n\n\t\t// If we don't have gBCR, just use 0,0 rather than error\n\t\t// BlackBerry 5, iOS 3 (original iPhone)\n\t\tif ( typeof elem.getBoundingClientRect !== strundefined ) {\n\t\t\tbox = elem.getBoundingClientRect();\n\t\t}\n\t\twin = getWindow( doc );\n\t\treturn {\n\t\t\ttop: box.top  + ( win.pageYOffset || docElem.scrollTop )  - ( docElem.clientTop  || 0 ),\n\t\t\tleft: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 )\n\t\t};\n\t},\n\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset,\n\t\t\tparentOffset = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ];\n\n\t\t// fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is its only offset parent\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\t\t\t// we assume that getBoundingClientRect is available when computed position is fixed\n\t\t\toffset = elem.getBoundingClientRect();\n\t\t} else {\n\t\t\t// Get *real* offsetParent\n\t\t\toffsetParent = this.offsetParent();\n\n\t\t\t// Get correct offsets\n\t\t\toffset = this.offset();\n\t\t\tif ( !jQuery.nodeName( offsetParent[ 0 ], \"html\" ) ) {\n\t\t\t\tparentOffset = offsetParent.offset();\n\t\t\t}\n\n\t\t\t// Add offsetParent borders\n\t\t\tparentOffset.top  += jQuery.css( offsetParent[ 0 ], \"borderTopWidth\", true );\n\t\t\tparentOffset.left += jQuery.css( offsetParent[ 0 ], \"borderLeftWidth\", true );\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\t// note: when an element has margin: auto the offsetLeft and marginLeft\n\t\t// are the same in Safari causing offset.left to incorrectly be 0\n\t\treturn {\n\t\t\ttop:  offset.top  - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true)\n\t\t};\n\t},\n\n\toffsetParent: function() {\n\t\treturn this.map(function() {\n\t\t\tvar offsetParent = this.offsetParent || docElem;\n\n\t\t\twhile ( offsetParent && ( !jQuery.nodeName( offsetParent, \"html\" ) && jQuery.css( offsetParent, \"position\" ) === \"static\" ) ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\t\t\treturn offsetParent || docElem;\n\t\t});\n\t}\n});\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = /Y/.test( prop );\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\t\t\tvar win = getWindow( elem );\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? (prop in win) ? win[ prop ] :\n\t\t\t\t\twin.document.documentElement[ method ] :\n\t\t\t\t\telem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : jQuery( win ).scrollLeft(),\n\t\t\t\t\ttop ? val : jQuery( win ).scrollTop()\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length, null );\n\t};\n});\n\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// getComputedStyle returns percent when specified for top/left/bottom/right\n// rather than make the css module depend on the offset module, we just check for it here\njQuery.each( [ \"top\", \"left\" ], function( i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\t\t\t\t// if curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n});\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name }, function( defaultExtra, funcName ) {\n\t\t// margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( jQuery.isWindow( elem ) ) {\n\t\t\t\t\t// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there\n\t\t\t\t\t// isn't a whole lot we can do. See pull request at this URL for discussion:\n\t\t\t\t\t// https://github.com/jquery/jquery/pull/764\n\t\t\t\t\treturn elem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest\n\t\t\t\t\t// unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it.\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable, null );\n\t\t};\n\t});\n});\n\n\n// The number of elements contained in the matched element set\njQuery.fn.size = function() {\n\treturn this.length;\n};\n\njQuery.fn.andSelf = jQuery.fn.addBack;\n\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t});\n}\n\n\n\n\nvar\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in\n// AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === strundefined ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n\n}));\n"
  },
  {
    "path": "images/04_variance/lib/jquery-3.5.1/jquery-AUTHORS.txt",
    "content": "Authors ordered by first contribution.\n\nJohn Resig <jeresig@gmail.com>\nGilles van den Hoven <gilles0181@gmail.com>\nMichael Geary <mike@geary.com>\nStefan Petre <stefan.petre@gmail.com>\nYehuda Katz <wycats@gmail.com>\nCorey Jewett <cj@syntheticplayground.com>\nKlaus Hartl <klaus.hartl@gmail.com>\nFranck Marcia <franck.marcia@gmail.com>\nJörn Zaefferer <joern.zaefferer@gmail.com>\nPaul Bakaus <paul.bakaus@gmail.com>\nBrandon Aaron <brandon.aaron@gmail.com>\nMike Alsup <malsup@gmail.com>\nDave Methvin <dave.methvin@gmail.com>\nEd Engelhardt <edengelhardt@gmail.com>\nSean Catchpole <littlecooldude@gmail.com>\nPaul Mclanahan <pmclanahan@gmail.com>\nDavid Serduke <davidserduke@gmail.com>\nRichard D. Worth <rdworth@gmail.com>\nScott González <scott.gonzalez@gmail.com>\nAriel Flesler <aflesler@gmail.com>\nCheah Chu Yeow <chuyeow@gmail.com>\nAndrew Chalkley <andrew@chalkley.org>\nFabio Buffoni <fabio.buffoni@bitmaster.it>\nStefan Bauckmeier  <stefan@bauckmeier.de>\nJon Evans <jon@springyweb.com>\nTJ Holowaychuk <tj@vision-media.ca>\nRiccardo De Agostini <rdeago@gmail.com>\nMichael Bensoussan <mickey@seesmic.com>\nLouis-Rémi Babé <lrbabe@gmail.com>\nRobert Katić <robert.katic@gmail.com>\nDamian Janowski <damian.janowski@gmail.com>\nAnton Kovalyov <anton@kovalyov.net>\nDušan B. Jovanovic <dbjdbj@gmail.com>\nEarle Castledine <mrspeaker@gmail.com>\nRich Dougherty <rich@rd.gen.nz>\nKim Dalsgaard <kim@kimdalsgaard.com>\nAndrea Giammarchi <andrea.giammarchi@gmail.com>\nFabian Jakobs <fabian.jakobs@web.de>\nMark Gibson <jollytoad@gmail.com>\nKarl Swedberg <kswedberg@gmail.com>\nJustin Meyer <justinbmeyer@gmail.com>\nBen Alman <cowboy@rj3.net>\nJames Padolsey <cla@padolsey.net>\nDavid Petersen <public@petersendidit.com>\nBatiste Bieler <batiste.bieler@gmail.com>\nJake Archibald <jake.archibald@bbc.co.uk>\nAlexander Farkas <info@corrupt-system.de>\nFilipe Fortes <filipe@fortes.com>\nRick Waldron <waldron.rick@gmail.com>\nNeeraj Singh <neerajdotname@gmail.com>\nPaul Irish <paul.irish@gmail.com>\nIraê Carvalho <irae@irae.pro.br>\nMatt Curry <matt@pseudocoder.com>\nMichael Monteleone <michael@michaelmonteleone.net>\nNoah Sloan <noah.sloan@gmail.com>\nTom Viner <github@viner.tv>\nJ. Ryan Stinnett <jryans@gmail.com>\nDouglas Neiner <doug@dougneiner.com>\nAdam J. Sontag <ajpiano@ajpiano.com>\nHeungsub Lee <h@subl.ee>\nDave Reed <dareed@microsoft.com>\nCarl Fürstenberg <azatoth@gmail.com>\nJacob Wright <jacwright@gmail.com>\nRalph Whitbeck <ralph.whitbeck@gmail.com>\nunknown <Igen005@.upcorp.ad.uprr.com>\ntemp01 <temp01irc@gmail.com>\nColin Snover <github.com@zetafleet.com>\nJared Grippe <jared@deadlyicon.com>\nRyan W Tenney <ryan@10e.us>\nAlex Sexton <AlexSexton@gmail.com>\nPinhook <contact@pinhooklabs.com>\nRon Otten <r.j.g.otten@gmail.com>\nJephte Clain <Jephte.Clain@univ-reunion.fr>\nAnton Matzneller <obhvsbypqghgc@gmail.com>\nDan Heberden <danheberden@gmail.com>\nHenri Wiechers <hwiechers@gmail.com>\nRussell Holbrook <russell.holbrook@patch.com>\nJulian Aubourg <aubourg.julian@gmail.com>\nGianni Alessandro Chiappetta <gianni@runlevel6.org>\nScott Jehl <scottjehl@gmail.com>\nJames Burke <jrburke@gmail.com>\nJonas Pfenniger <jonas@pfenniger.name>\nXavi Ramirez <xavi.rmz@gmail.com>\nSylvester Keil <sylvester@keil.or.at>\nBrandon Sterne <bsterne@mozilla.com>\nMathias Bynens <mathias@qiwi.be>\nLee Carpenter <elcarpie@gmail.com>\nTimmy Willison <4timmywil@gmail.com>\nCorey Frang <gnarf37@gmail.com>\nDigitalxero <digitalxero>\nDavid Murdoch <david@davidmurdoch.com>\nJosh Varner <josh.varner@gmail.com>\nCharles McNulty <cmcnulty@kznf.com>\nJordan Boesch <jboesch26@gmail.com>\nJess Thrysoee <jess@thrysoee.dk>\nMichael Murray <m@murz.net>\nAlexis Abril <me@alexisabril.com>\nRob Morgan <robbym@gmail.com>\nJohn Firebaugh <john_firebaugh@bigfix.com>\nSam Bisbee <sam@sbisbee.com>\nGilmore Davidson <gilmoreorless@gmail.com>\nBrian Brennan <me@brianlovesthings.com>\nXavier Montillet <xavierm02.net@gmail.com>\nDaniel Pihlstrom <sciolist.se@gmail.com>\nSahab Yazdani <sahab.yazdani+github@gmail.com>\navaly <github-com@agachi.name>\nScott Hughes <hi@scott-hughes.me>\nMike Sherov <mike.sherov@gmail.com>\nGreg Hazel <ghazel@gmail.com>\nSchalk Neethling <schalk@ossreleasefeed.com>\nDenis Knauf <Denis.Knauf@gmail.com>\nTimo Tijhof <krinklemail@gmail.com>\nSteen Nielsen <swinedk@gmail.com>\nAnton Ryzhov <anton@ryzhov.me>\nShi Chuan <shichuanr@gmail.com>\nMatt Mueller <mattmuelle@gmail.com>\nBerker Peksag <berker.peksag@gmail.com>\nToby Brain <tobyb@freshview.com>\nJustin <drakefjustin@gmail.com>\nDaniel Herman <daniel.c.herman@gmail.com>\nOleg Gaidarenko <markelog@gmail.com>\nRock Hymas <rock@fogcreek.com>\nRichard Gibson <richard.gibson@gmail.com>\nRafaël Blais Masson <rafbmasson@gmail.com>\ncmc3cn <59194618@qq.com>\nJoe Presbrey <presbrey@gmail.com>\nSindre Sorhus <sindresorhus@gmail.com>\nArne de Bree <arne@bukkie.nl>\nVladislav Zarakovsky <vlad.zar@gmail.com>\nAndrew E Monat <amonat@gmail.com>\nOskari <admin@o-programs.com>\nJoao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>\ntsinha <tsinha@Anthonys-MacBook-Pro.local>\nDominik D. Geyer <dominik.geyer@gmail.com>\nMatt Farmer <matt@frmr.me>\nTrey Hunner <treyhunner@gmail.com>\nJason Moon <jmoon@socialcast.com>\nJeffery To <jeffery.to@gmail.com>\nKris Borchers <kris.borchers@gmail.com>\nVladimir Zhuravlev <private.face@gmail.com>\nJacob Thornton <jacobthornton@gmail.com>\nChad Killingsworth <chadkillingsworth@missouristate.edu>\nVitya Muhachev <vic99999@yandex.ru>\nNowres Rafid <nowres.rafed@gmail.com>\nDavid Benjamin <davidben@mit.edu>\nAlan Plum <github@ap.apsq.de>\nUri Gilad <antishok@gmail.com>\nChris Faulkner <thefaulkner@gmail.com>\nMarcel Greter <marcel.greter@ocbnet.ch>\nElijah Manor <elijah.manor@gmail.com>\nDaniel Chatfield <chatfielddaniel@gmail.com>\nDaniel Gálvez <dgalvez@editablething.com>\nNikita Govorov <nikita.govorov@gmail.com>\nWesley Walser <waw325@gmail.com>\nMike Pennisi <mike@mikepennisi.com>\nMatthias Jäggli <matthias.jaeggli@gmail.com>\nDevin Cooper <cooper.semantics@gmail.com>\nMarkus Staab <markus.staab@redaxo.de>\nDave Riddle <david@joyvuu.com>\nCallum Macrae <callum@lynxphp.com>\nJonathan Sampson <jjdsampson@gmail.com>\nBenjamin Truyman <bentruyman@gmail.com>\nJay Merrifield <fracmak@gmail.com>\nJames Huston <james@jameshuston.net>\nSai Lung Wong <sai.wong@huffingtonpost.com>\nErick Ruiz de Chávez <erickrdch@gmail.com>\nDavid Bonner <dbonner@cogolabs.com>\nAllen J Schmidt Jr <cobrasoft@gmail.com>\nAkintayo Akinwunmi <aakinwunmi@judge.com>\nMORGAN <morgan@morgangraphics.com>\nIsmail Khair <ismail.khair@gmail.com>\nCarl Danley <carldanley@gmail.com>\nMike Petrovich <michael.c.petrovich@gmail.com>\nGreg Lavallee <greglavallee@wapolabs.com>\nTom H Fuertes <TomFuertes@gmail.com>\nRoland Eckl <eckl.roland@googlemail.com>\nYiming He <yiminghe@gmail.com>\nDavid Fox <dfoxinator@gmail.com>\nBennett Sorbo <bsorbo@gmail.com>\nPaul Ramos <paul.b.ramos@gmail.com>\nRod Vagg <rod@vagg.org>\nSebastian Burkhard <sebi.burkhard@gmail.com>\nZachary Adam Kaplan <razic@viralkitty.com>\nAdam Coulombe <me@adam.co>\nnanto_vi <nanto@moon.email.ne.jp>\nnanto <nanto@moon.email.ne.jp>\nDanil Somsikov <danilasomsikov@gmail.com>\nRyunosuke SATO <tricknotes.rs@gmail.com>\nDiego Tres <diegotres@gmail.com>\nJean Boussier <jean.boussier@gmail.com>\nAndrew Plummer <plummer.andrew@gmail.com>\nMark Raddatz <mraddatz@gmail.com>\nPascal Borreli <pascal@borreli.com>\nIsaac Z. Schlueter <i@izs.me>\nKarl Sieburg <ksieburg@yahoo.com>\nNguyen Phuc Lam <ruado1987@gmail.com>\nDmitry Gusev <dmitry.gusev@gmail.com>\nSteven Benner <admin@stevenbenner.com>\nLi Xudong <istonelee@gmail.com>\nMichał Gołębiowski-Owczarek <m.goleb@gmail.com>\nRenato Oliveira dos Santos <ros3@cin.ufpe.br>\nFrederic Junod <frederic.junod@camptocamp.com>\nTom H Fuertes <tomfuertes@gmail.com>\nMitch Foley <mitch@thefoley.net>\nros3cin <ros3@cin.ufpe.br>\nKyle Robinson Young <kyle@dontkry.com>\nJohn Paul <john@johnkpaul.com>\nJason Bedard <jason+jquery@jbedard.ca>\nChris Talkington <chris@talkingtontech.com>\nEddie Monge <eddie@eddiemonge.com>\nTerry Jones <terry@jon.es>\nJason Merino <jasonmerino@gmail.com>\nDan Burzo <danburzo@gmail.com>\nJeremy Dunck <jdunck@gmail.com>\nChris Price <price.c@gmail.com>\nGuy Bedford <guybedford@gmail.com>\nnjhamann <njhamann@gmail.com>\nGoare Mao <mygoare@gmail.com>\nAmey Sakhadeo <me@ameyms.com>\nMike Sidorov <mikes.ekb@gmail.com>\nAnthony Ryan <anthonyryan1@gmail.com>\nLihan Li <frankieteardrop@gmail.com>\nGeorge Kats <katsgeorgeek@gmail.com>\nDongseok Paeng <dongseok83.paeng@lge.com>\nRonny Springer <springer.ronny@gmail.com>\nIlya Kantor <iliakan@gmail.com>\nMarian Sollmann <marian.sollmann@cargomedia.ch>\nChris Antaki <ChrisAntaki@gmail.com>\nDavid Hong <d.hong@me.com>\nJakob Stoeck <jakob@pokermania.de>\nChristopher Jones <chris@cjqed.com>\nForbes Lindesay <forbes@lindesay.co.uk>\nS. Andrew Sheppard <andrew@wq.io>\nLeonardo Balter <leonardo.balter@gmail.com>\nRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>\nDaniel Husar <dano.husar@gmail.com>\nPhilip Jägenstedt <philip@foolip.org>\nJohn Hoven <hovenj@gmail.com>\nRoman Reiß <me@silverwind.io>\nBenjy Cui <benjytrys@gmail.com>\nChristian Kosmowski <ksmwsk@gmail.com>\nDavid Corbacho <davidcorbacho@gmail.com>\nLiang Peng <poppinlp@gmail.com>\nTJ VanToll <tj.vantoll@gmail.com>\nAurelio De Rosa <aurelioderosa@gmail.com>\nSenya Pugach <upisfree@outlook.com>\nDan Hart <danhart@notonthehighstreet.com>\nNazar Mokrynskyi <nazar@mokrynskyi.com>\nBenjamin Tan <demoneaux@gmail.com>\nAmit Merchant <bullredeyes@gmail.com>\nJason Bedard <jason+github@jbedard.ca>\nVeaceslav Grimalschi <grimalschi@yandex.ru>\nRichard McDaniel <rm0026@uah.edu>\nArthur Verschaeve <contact@arthurverschaeve.be>\nShivaji Varma <contact@shivajivarma.com>\nBen Toews <mastahyeti@gmail.com>\nBin Xin <rhyzix@gmail.com>\nNeftaly Hernandez <neftaly.hernandez@gmail.com>\nT.J. Crowder <tj.crowder@farsightsoftware.com>\nNicolas HENRY <icewil@gmail.com>\nFrederic Hemberger <mail@frederic-hemberger.de>\nVictor Homyakov <vkhomyackov@gmail.com>\nAditya Raghavan <araghavan3@gmail.com>\nAnne-Gaelle Colom <coloma@westminster.ac.uk>\nLeonardo Braga <leonardo.braga@gmail.com>\nGeorge Mauer <gmauer@gmail.com>\nStephen Edgar <stephen@netweb.com.au>\nThomas Tortorini <thomastortorini@gmail.com>\nJörn Wagner <joern.wagner@explicatis.com>\nJon Hester <jon.d.hester@gmail.com>\nColin Frick <colin@bash.li>\nWinston Howes <winstonhowes@gmail.com>\nAlexander O'Mara <me@alexomara.com>\nChris Rebert <github@rebertia.com>\nBastian Buchholz <buchholz.bastian@googlemail.com>\nMu Haibao <mhbseal@163.com>\nCalvin Metcalf <calvin.metcalf@gmail.com>\nArthur Stolyar <nekr.fabula@gmail.com>\nGabriel Schulhof <gabriel.schulhof@intel.com>\nGilad Peleg <giladp007@gmail.com>\nJulian Alexander Murillo <julian.alexander.murillo@gmail.com>\nKevin Kirsche <Kev.Kirsche+GitHub@gmail.com>\nMartin Naumann <martin@geekonaut.de>\nYongwoo Jeon <yongwoo.jeon@navercorp.com>\nJohn-David Dalton <john.david.dalton@gmail.com>\nMarek Lewandowski <m.lewandowski@cksource.com>\nBruno Pérel <brunoperel@gmail.com>\nDaniel Nill <daniellnill@gmail.com>\nReed Loden <reed@reedloden.com>\nSean Henderson <seanh.za@gmail.com>\nGary Ye <garysye@gmail.com>\nRichard Kraaijenhagen <stdin+git@riichard.com>\nConnor Atherton <c.liam.atherton@gmail.com>\nChristian Grete <webmaster@christiangrete.com>\nTom von Clef <thomas.vonclef@gmail.com>\nLiza Ramo <liza.h.ramo@gmail.com>\nJoelle Fleurantin <joasqueeniebee@gmail.com>\nSteve Mao <maochenyan@gmail.com>\nJon Dufresne <jon.dufresne@gmail.com>\nJae Sung Park <alberto.park@gmail.com>\nJosh Soref <apache@soref.com>\nSaptak Sengupta <saptak013@gmail.com>\nHenry Wong <henryw4k@gmail.com>\nJun Sun <klsforever@gmail.com>\nMartijn W. van der Lee <martijn@vanderlee.com>\nDevin Wilson <dwilson6.github@gmail.com>\nDamian Senn <jquery@topaxi.codes>\nZack Hall <zackhall@outlook.com>\nVitaliy Terziev <vitaliyterziev@gmail.com>\nTodor Prikumov <tono_pr@abv.bg>\nBernhard M. Wiedemann <jquerybmw@lsmod.de>\nJha Naman <createnaman@gmail.com>\nAlexander Lisianoi <all3fox@gmail.com>\nWilliam Robinet <william.robinet@conostix.com>\nJoe Trumbull <trumbull.j@gmail.com>\nAlexander K <xpyro@ya.ru>\nRalin Chimev <ralin.chimev@gmail.com>\nFelipe Sateler <fsateler@gmail.com>\nChristophe Tafani-Dereeper <christophetd@hotmail.fr>\nManoj Kumar <nithmanoj@gmail.com>\nDavid Broder-Rodgers <broder93@gmail.com>\nAlex Louden <alex@louden.com>\nAlex Padilla <alexonezero@outlook.com>\nkaran-96 <karanbatra96@gmail.com>\n南漂一卒 <shiy007@qq.com>\nErik Lax <erik@datahack.se>\nBoom Lee <teabyii@gmail.com>\nAndreas Solleder <asol@num42.de>\nPierre Spring <pierre@nelm.io>\nShashanka Nataraj <shashankan.10@gmail.com>\nCDAGaming <cstack2011@yahoo.com>\nMatan Kotler-Berkowitz <205matan@gmail.com>\nJordan Beland <jordan.beland@gmail.com>\nHenry Zhu <hi@henryzoo.com>\nNilton Cesar <niltoncms@gmail.com>\nbasil.belokon <basil.belokon@gmail.com>\nAndrey Meshkov <ay.meshkov@gmail.com>\ntmybr11 <tomas.perone@gmail.com>\nLuis Emilio Velasco Sanchez <emibloque@gmail.com>\nEd S <ejsanders@gmail.com>\nBert Zhang <enbo@users.noreply.github.com>\nSébastien Règne <regseb@users.noreply.github.com>\nwartmanm <3869625+wartmanm@users.noreply.github.com>\nSiddharth Dungarwal <sd5869@gmail.com>\nabnud1 <ahmad13932013@hotmail.com>\nAndrei Fangli <andrei_fangli@outlook.com>\nMarja Hölttä <marja.holtta@gmail.com>\nbuddh4 <mail@jharrer.de>\nHoang <dangkyokhoang@gmail.com>\nWonseop Kim <wonseop.kim@samsung.com>\nPat O'Callaghan <patocallaghan@gmail.com>\nJuanMa Ruiz <ruizjuanma@gmail.com>\nAhmed.S.ElAfifi <ahmed.s.elafifi@gmail.com>\nSean Robinson <sean.robinson@scottsdalecc.edu>\nChristian Oliff <christianoliff@pm.me>\n"
  },
  {
    "path": "images/04_variance/lib/jquery-3.5.1/jquery.js",
    "content": "/*!\n * jQuery JavaScript Library v3.5.1\n * https://jquery.com/\n *\n * Includes Sizzle.js\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://jquery.org/license\n *\n * Date: 2020-05-04T22:49Z\n */\n( function( global, factory ) {\n\n\t\"use strict\";\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\n\t\t// For CommonJS and CommonJS-like environments where a proper `window`\n\t\t// is present, execute the factory and get jQuery.\n\t\t// For environments that do not have a `window` with a `document`\n\t\t// (such as Node.js), expose a factory as module.exports.\n\t\t// This accentuates the need for the creation of a real `window`.\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info.\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n} )( typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1\n// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode\n// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common\n// enough that all such attempts are guarded in a try block.\n\"use strict\";\n\nvar arr = [];\n\nvar getProto = Object.getPrototypeOf;\n\nvar slice = arr.slice;\n\nvar flat = arr.flat ? function( array ) {\n\treturn arr.flat.call( array );\n} : function( array ) {\n\treturn arr.concat.apply( [], array );\n};\n\n\nvar push = arr.push;\n\nvar indexOf = arr.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar fnToString = hasOwn.toString;\n\nvar ObjectFunctionString = fnToString.call( Object );\n\nvar support = {};\n\nvar isFunction = function isFunction( obj ) {\n\n      // Support: Chrome <=57, Firefox <=52\n      // In some browsers, typeof returns \"function\" for HTML <object> elements\n      // (i.e., `typeof document.createElement( \"object\" ) === \"function\"`).\n      // We don't want to classify *any* DOM node as a function.\n      return typeof obj === \"function\" && typeof obj.nodeType !== \"number\";\n  };\n\n\nvar isWindow = function isWindow( obj ) {\n\t\treturn obj != null && obj === obj.window;\n\t};\n\n\nvar document = window.document;\n\n\n\n\tvar preservedScriptAttributes = {\n\t\ttype: true,\n\t\tsrc: true,\n\t\tnonce: true,\n\t\tnoModule: true\n\t};\n\n\tfunction DOMEval( code, node, doc ) {\n\t\tdoc = doc || document;\n\n\t\tvar i, val,\n\t\t\tscript = doc.createElement( \"script\" );\n\n\t\tscript.text = code;\n\t\tif ( node ) {\n\t\t\tfor ( i in preservedScriptAttributes ) {\n\n\t\t\t\t// Support: Firefox 64+, Edge 18+\n\t\t\t\t// Some browsers don't support the \"nonce\" property on scripts.\n\t\t\t\t// On the other hand, just using `getAttribute` is not enough as\n\t\t\t\t// the `nonce` attribute is reset to an empty string whenever it\n\t\t\t\t// becomes browsing-context connected.\n\t\t\t\t// See https://github.com/whatwg/html/issues/2369\n\t\t\t\t// See https://html.spec.whatwg.org/#nonce-attributes\n\t\t\t\t// The `node.getAttribute` check was added for the sake of\n\t\t\t\t// `jQuery.globalEval` so that it can fake a nonce-containing node\n\t\t\t\t// via an object.\n\t\t\t\tval = node[ i ] || node.getAttribute && node.getAttribute( i );\n\t\t\t\tif ( val ) {\n\t\t\t\t\tscript.setAttribute( i, val );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tdoc.head.appendChild( script ).parentNode.removeChild( script );\n\t}\n\n\nfunction toType( obj ) {\n\tif ( obj == null ) {\n\t\treturn obj + \"\";\n\t}\n\n\t// Support: Android <=2.3 only (functionish RegExp)\n\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\tclass2type[ toString.call( obj ) ] || \"object\" :\n\t\ttypeof obj;\n}\n/* global Symbol */\n// Defining this global in .eslintrc.json would create a danger of using the global\n// unguarded in another place, it seems safer to define global only for this module\n\n\n\nvar\n\tversion = \"3.5.1\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t};\n\njQuery.fn = jQuery.prototype = {\n\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\n\t\t// Return all the elements in a clean array\n\t\tif ( num == null ) {\n\t\t\treturn slice.call( this );\n\t\t}\n\n\t\t// Return just the one element from the set\n\t\treturn num < 0 ? this[ num + this.length ] : this[ num ];\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\teach: function( callback ) {\n\t\treturn jQuery.each( this, callback );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map( this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t} ) );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teven: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn ( i + 1 ) % 2;\n\t\t} ) );\n\t},\n\n\todd: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn i % 2;\n\t\t} ) );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor();\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: arr.sort,\n\tsplice: arr.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[ 0 ] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// Skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !isFunction( target ) ) {\n\t\ttarget = {};\n\t}\n\n\t// Extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\n\t\t// Only deal with non-null/undefined values\n\t\tif ( ( options = arguments[ i ] ) != null ) {\n\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent Object.prototype pollution\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( name === \"__proto__\" || target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject( copy ) ||\n\t\t\t\t\t( copyIsArray = Array.isArray( copy ) ) ) ) {\n\t\t\t\t\tsrc = target[ name ];\n\n\t\t\t\t\t// Ensure proper type for the source value\n\t\t\t\t\tif ( copyIsArray && !Array.isArray( src ) ) {\n\t\t\t\t\t\tclone = [];\n\t\t\t\t\t} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {\n\t\t\t\t\t\tclone = {};\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src;\n\t\t\t\t\t}\n\t\t\t\t\tcopyIsArray = false;\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend( {\n\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\tisPlainObject: function( obj ) {\n\t\tvar proto, Ctor;\n\n\t\t// Detect obvious negatives\n\t\t// Use toString instead of jQuery.type to catch host objects\n\t\tif ( !obj || toString.call( obj ) !== \"[object Object]\" ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tproto = getProto( obj );\n\n\t\t// Objects with no prototype (e.g., `Object.create( null )`) are plain\n\t\tif ( !proto ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Objects with prototype are plain iff they were constructed by a global Object function\n\t\tCtor = hasOwn.call( proto, \"constructor\" ) && proto.constructor;\n\t\treturn typeof Ctor === \"function\" && fnToString.call( Ctor ) === ObjectFunctionString;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\t// Evaluates a script in a provided context; falls back to the global one\n\t// if not specified.\n\tglobalEval: function( code, options, doc ) {\n\t\tDOMEval( code, { nonce: options && options.nonce }, doc );\n\t},\n\n\teach: function( obj, callback ) {\n\t\tvar length, i = 0;\n\n\t\tif ( isArrayLike( obj ) ) {\n\t\t\tlength = obj.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tfor ( i in obj ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArrayLike( Object( arr ) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\treturn arr == null ? -1 : indexOf.call( arr, elem, i );\n\t},\n\n\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t// push.apply(_, arraylike) throws on ancient WebKit\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\tfor ( ; j < len; j++ ) {\n\t\t\tfirst[ i++ ] = second[ j ];\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar length, value,\n\t\t\ti = 0,\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArrayLike( elems ) ) {\n\t\t\tlength = elems.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn flat( ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n} );\n\nif ( typeof Symbol === \"function\" ) {\n\tjQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];\n}\n\n// Populate the class2type map\njQuery.each( \"Boolean Number String Function Array Date RegExp Object Error Symbol\".split( \" \" ),\nfunction( _i, name ) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n} );\n\nfunction isArrayLike( obj ) {\n\n\t// Support: real iOS 8.2 only (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = !!obj && \"length\" in obj && obj.length,\n\t\ttype = toType( obj );\n\n\tif ( isFunction( obj ) || isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.3.5\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://js.foundation/\n *\n * Date: 2020-03-14\n */\n( function( window ) {\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tnonnativeSelectorCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// Instance methods\n\thasOwn = ( {} ).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpushNative = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\n\t// Use a stripped-down indexOf as it's faster than native\n\t// https://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[ i ] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|\" +\n\t\t\"ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\n\t// https://www.w3.org/TR/css-syntax-3/#ident-token-diagram\n\tidentifier = \"(?:\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace +\n\t\t\"?|\\\\\\\\[^\\\\r\\\\n\\\\f]|[\\\\w-]|[^\\0-\\\\x7f])+\",\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + identifier + \")(?:\" + whitespace +\n\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\n\t\t// \"Attribute values must be CSS identifiers [capture 5]\n\t\t// or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" +\n\t\twhitespace + \"*\\\\]\",\n\n\tpseudos = \":(\" + identifier + \")(?:\\\\((\" +\n\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" +\n\t\twhitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace +\n\t\t\"*\" ),\n\trdescend = new RegExp( whitespace + \"|>\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + identifier + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + identifier + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + identifier + \"|[*])\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" +\n\t\t\twhitespace + \"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" +\n\t\t\twhitespace + \"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace +\n\t\t\t\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" + whitespace +\n\t\t\t\"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trhtml = /HTML$/i,\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\n\t// CSS escapes\n\t// http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace + \"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\", \"g\" ),\n\tfunescape = function( escape, nonHex ) {\n\t\tvar high = \"0x\" + escape.slice( 1 ) - 0x10000;\n\n\t\treturn nonHex ?\n\n\t\t\t// Strip the backslash prefix from a non-hex escape sequence\n\t\t\tnonHex :\n\n\t\t\t// Replace a hexadecimal escape sequence with the encoded Unicode code point\n\t\t\t// Support: IE <=11+\n\t\t\t// For values outside the Basic Multilingual Plane (BMP), manually construct a\n\t\t\t// surrogate pair\n\t\t\thigh < 0 ?\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// CSS string/identifier serialization\n\t// https://drafts.csswg.org/cssom/#common-serializing-idioms\n\trcssescape = /([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,\n\tfcssescape = function( ch, asCodePoint ) {\n\t\tif ( asCodePoint ) {\n\n\t\t\t// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER\n\t\t\tif ( ch === \"\\0\" ) {\n\t\t\t\treturn \"\\uFFFD\";\n\t\t\t}\n\n\t\t\t// Control characters and (dependent upon position) numbers get escaped as code points\n\t\t\treturn ch.slice( 0, -1 ) + \"\\\\\" +\n\t\t\t\tch.charCodeAt( ch.length - 1 ).toString( 16 ) + \" \";\n\t\t}\n\n\t\t// Other potentially-special ASCII characters get backslash-escaped\n\t\treturn \"\\\\\" + ch;\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t},\n\n\tinDisabledFieldset = addCombinator(\n\t\tfunction( elem ) {\n\t\t\treturn elem.disabled === true && elem.nodeName.toLowerCase() === \"fieldset\";\n\t\t},\n\t\t{ dir: \"parentNode\", next: \"legend\" }\n\t);\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t( arr = slice.call( preferredDoc.childNodes ) ),\n\t\tpreferredDoc.childNodes\n\t);\n\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\t// eslint-disable-next-line no-unused-expressions\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpushNative.apply( target, slice.call( els ) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( ( target[ j++ ] = els[ i++ ] ) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar m, i, elem, nid, match, groups, newSelector,\n\t\tnewContext = context && context.ownerDocument,\n\n\t\t// nodeType defaults to 9, since context defaults to document\n\t\tnodeType = context ? context.nodeType : 9;\n\n\tresults = results || [];\n\n\t// Return early from calls with invalid selector or context\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\t// Try to shortcut find operations (as opposed to filters) in HTML documents\n\tif ( !seed ) {\n\t\tsetDocument( context );\n\t\tcontext = context || document;\n\n\t\tif ( documentIsHTML ) {\n\n\t\t\t// If the selector is sufficiently simple, try using a \"get*By*\" DOM method\n\t\t\t// (excepting DocumentFragment context, where the methods don't exist)\n\t\t\tif ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) {\n\n\t\t\t\t// ID selector\n\t\t\t\tif ( ( m = match[ 1 ] ) ) {\n\n\t\t\t\t\t// Document context\n\t\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\t\tif ( ( elem = context.getElementById( m ) ) ) {\n\n\t\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// Element context\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\tif ( newContext && ( elem = newContext.getElementById( m ) ) &&\n\t\t\t\t\t\t\tcontains( context, elem ) &&\n\t\t\t\t\t\t\telem.id === m ) {\n\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t// Type selector\n\t\t\t\t} else if ( match[ 2 ] ) {\n\t\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\t\treturn results;\n\n\t\t\t\t// Class selector\n\t\t\t\t} else if ( ( m = match[ 3 ] ) && support.getElementsByClassName &&\n\t\t\t\t\tcontext.getElementsByClassName ) {\n\n\t\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\t\treturn results;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Take advantage of querySelectorAll\n\t\t\tif ( support.qsa &&\n\t\t\t\t!nonnativeSelectorCache[ selector + \" \" ] &&\n\t\t\t\t( !rbuggyQSA || !rbuggyQSA.test( selector ) ) &&\n\n\t\t\t\t// Support: IE 8 only\n\t\t\t\t// Exclude object elements\n\t\t\t\t( nodeType !== 1 || context.nodeName.toLowerCase() !== \"object\" ) ) {\n\n\t\t\t\tnewSelector = selector;\n\t\t\t\tnewContext = context;\n\n\t\t\t\t// qSA considers elements outside a scoping root when evaluating child or\n\t\t\t\t// descendant combinators, which is not what we want.\n\t\t\t\t// In such cases, we work around the behavior by prefixing every selector in the\n\t\t\t\t// list with an ID selector referencing the scope context.\n\t\t\t\t// The technique has to be used as well when a leading combinator is used\n\t\t\t\t// as such selectors are not recognized by querySelectorAll.\n\t\t\t\t// Thanks to Andrew Dupont for this technique.\n\t\t\t\tif ( nodeType === 1 &&\n\t\t\t\t\t( rdescend.test( selector ) || rcombinators.test( selector ) ) ) {\n\n\t\t\t\t\t// Expand context for sibling selectors\n\t\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext;\n\n\t\t\t\t\t// We can use :scope instead of the ID hack if the browser\n\t\t\t\t\t// supports it & if we're not changing the context.\n\t\t\t\t\tif ( newContext !== context || !support.scope ) {\n\n\t\t\t\t\t\t// Capture the context ID, setting it first if necessary\n\t\t\t\t\t\tif ( ( nid = context.getAttribute( \"id\" ) ) ) {\n\t\t\t\t\t\t\tnid = nid.replace( rcssescape, fcssescape );\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tcontext.setAttribute( \"id\", ( nid = expando ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prefix every selector in the list\n\t\t\t\t\tgroups = tokenize( selector );\n\t\t\t\t\ti = groups.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tgroups[ i ] = ( nid ? \"#\" + nid : \":scope\" ) + \" \" +\n\t\t\t\t\t\t\ttoSelector( groups[ i ] );\n\t\t\t\t\t}\n\t\t\t\t\tnewSelector = groups.join( \",\" );\n\t\t\t\t}\n\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch ( qsaError ) {\n\t\t\t\t\tnonnativeSelectorCache( selector, true );\n\t\t\t\t} finally {\n\t\t\t\t\tif ( nid === expando ) {\n\t\t\t\t\t\tcontext.removeAttribute( \"id\" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {function(string, object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn ( cache[ key + \" \" ] = value );\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created element and returns a boolean result\n */\nfunction assert( fn ) {\n\tvar el = document.createElement( \"fieldset\" );\n\n\ttry {\n\t\treturn !!fn( el );\n\t} catch ( e ) {\n\t\treturn false;\n\t} finally {\n\n\t\t// Remove from its parent by default\n\t\tif ( el.parentNode ) {\n\t\t\tel.parentNode.removeChild( el );\n\t\t}\n\n\t\t// release memory in IE\n\t\tel = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split( \"|\" ),\n\t\ti = arr.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[ i ] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\ta.sourceIndex - b.sourceIndex;\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( ( cur = cur.nextSibling ) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn ( name === \"input\" || name === \"button\" ) && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for :enabled/:disabled\n * @param {Boolean} disabled true for :disabled; false for :enabled\n */\nfunction createDisabledPseudo( disabled ) {\n\n\t// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable\n\treturn function( elem ) {\n\n\t\t// Only certain elements can match :enabled or :disabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled\n\t\tif ( \"form\" in elem ) {\n\n\t\t\t// Check for inherited disabledness on relevant non-disabled elements:\n\t\t\t// * listed form-associated elements in a disabled fieldset\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#category-listed\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled\n\t\t\t// * option elements in a disabled optgroup\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled\n\t\t\t// All such elements have a \"form\" property.\n\t\t\tif ( elem.parentNode && elem.disabled === false ) {\n\n\t\t\t\t// Option elements defer to a parent optgroup if present\n\t\t\t\tif ( \"label\" in elem ) {\n\t\t\t\t\tif ( \"label\" in elem.parentNode ) {\n\t\t\t\t\t\treturn elem.parentNode.disabled === disabled;\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn elem.disabled === disabled;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Support: IE 6 - 11\n\t\t\t\t// Use the isDisabled shortcut property to check for disabled fieldset ancestors\n\t\t\t\treturn elem.isDisabled === disabled ||\n\n\t\t\t\t\t// Where there is no isDisabled, check manually\n\t\t\t\t\t/* jshint -W018 */\n\t\t\t\t\telem.isDisabled !== !disabled &&\n\t\t\t\t\tinDisabledFieldset( elem ) === disabled;\n\t\t\t}\n\n\t\t\treturn elem.disabled === disabled;\n\n\t\t// Try to winnow out elements that can't be disabled before trusting the disabled property.\n\t\t// Some victims get caught in our net (label, legend, menu, track), but it shouldn't\n\t\t// even exist on them, let alone have a boolean value.\n\t\t} else if ( \"label\" in elem ) {\n\t\t\treturn elem.disabled === disabled;\n\t\t}\n\n\t\t// Remaining elements are neither :enabled nor :disabled\n\t\treturn false;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction( function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction( function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ ( j = matchIndexes[ i ] ) ] ) {\n\t\t\t\t\tseed[ j ] = !( matches[ j ] = seed[ j ] );\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t} );\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\tvar namespace = elem.namespaceURI,\n\t\tdocElem = ( elem.ownerDocument || elem ).documentElement;\n\n\t// Support: IE <=8\n\t// Assume HTML when documentElement doesn't yet exist, such as inside loading iframes\n\t// https://bugs.jquery.com/ticket/4833\n\treturn !rhtml.test( namespace || docElem && docElem.nodeName || \"HTML\" );\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, subWindow,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// Return early if doc is invalid or already selected\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Update global variables\n\tdocument = doc;\n\tdocElem = document.documentElement;\n\tdocumentIsHTML = !isXML( document );\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t// Accessing iframe documents after unload throws \"permission denied\" errors (jQuery #13936)\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( preferredDoc != document &&\n\t\t( subWindow = document.defaultView ) && subWindow.top !== subWindow ) {\n\n\t\t// Support: IE 11, Edge\n\t\tif ( subWindow.addEventListener ) {\n\t\t\tsubWindow.addEventListener( \"unload\", unloadHandler, false );\n\n\t\t// Support: IE 9 - 10 only\n\t\t} else if ( subWindow.attachEvent ) {\n\t\t\tsubWindow.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t// Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only,\n\t// Safari 4 - 5 only, Opera <=11.6 - 12.x only\n\t// IE/Edge & older browsers don't support the :scope pseudo-class.\n\t// Support: Safari 6.0 only\n\t// Safari 6.0 supports :scope but it's an alias of :root there.\n\tsupport.scope = assert( function( el ) {\n\t\tdocElem.appendChild( el ).appendChild( document.createElement( \"div\" ) );\n\t\treturn typeof el.querySelectorAll !== \"undefined\" &&\n\t\t\t!el.querySelectorAll( \":scope fieldset div\" ).length;\n\t} );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert( function( el ) {\n\t\tel.className = \"i\";\n\t\treturn !el.getAttribute( \"className\" );\n\t} );\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert( function( el ) {\n\t\tel.appendChild( document.createComment( \"\" ) );\n\t\treturn !el.getElementsByTagName( \"*\" ).length;\n\t} );\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( document.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programmatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert( function( el ) {\n\t\tdocElem.appendChild( el ).id = expando;\n\t\treturn !document.getElementsByName || !document.getElementsByName( expando ).length;\n\t} );\n\n\t// ID filter and find\n\tif ( support.getById ) {\n\t\tExpr.filter[ \"ID\" ] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute( \"id\" ) === attrId;\n\t\t\t};\n\t\t};\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar elem = context.getElementById( id );\n\t\t\t\treturn elem ? [ elem ] : [];\n\t\t\t}\n\t\t};\n\t} else {\n\t\tExpr.filter[ \"ID\" ] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" &&\n\t\t\t\t\telem.getAttributeNode( \"id\" );\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\n\t\t// Support: IE 6 - 7 only\n\t\t// getElementById is not reliable as a find shortcut\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar node, i, elems,\n\t\t\t\t\telem = context.getElementById( id );\n\n\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t// Verify the id attribute\n\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t}\n\n\t\t\t\t\t// Fall back on getElementsByName\n\t\t\t\t\telems = context.getElementsByName( id );\n\t\t\t\t\ti = 0;\n\t\t\t\t\twhile ( ( elem = elems[ i++ ] ) ) {\n\t\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn [];\n\t\t\t}\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[ \"TAG\" ] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[ \"CLASS\" ] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See https://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) {\n\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert( function( el ) {\n\n\t\t\tvar input;\n\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// https://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( el ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\r\\\\' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( el.querySelectorAll( \"[msallowcapture^='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !el.querySelectorAll( \"[selected]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+\n\t\t\tif ( !el.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"~=\" );\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 15 - 18+\n\t\t\t// IE 11/Edge don't find elements on a `[name='']` query in some cases.\n\t\t\t// Adding a temporary attribute to the document before the selection works\n\t\t\t// around the issue.\n\t\t\t// Interestingly, IE 10 & older don't seem to have the issue.\n\t\t\tinput = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"name\", \"\" );\n\t\t\tel.appendChild( input );\n\t\t\tif ( !el.querySelectorAll( \"[name='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*name\" + whitespace + \"*=\" +\n\t\t\t\t\twhitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !el.querySelectorAll( \":checked\" ).length ) {\n\t\t\t\trbuggyQSA.push( \":checked\" );\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibling-combinator selector` fails\n\t\t\tif ( !el.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push( \".#.+[+~]\" );\n\t\t\t}\n\n\t\t\t// Support: Firefox <=3.6 - 5 only\n\t\t\t// Old Firefox doesn't throw on a badly-escaped identifier.\n\t\t\tel.querySelectorAll( \"\\\\\\f\" );\n\t\t\trbuggyQSA.push( \"[\\\\r\\\\n\\\\f]\" );\n\t\t} );\n\n\t\tassert( function( el ) {\n\t\t\tel.innerHTML = \"<a href='' disabled='disabled'></a>\" +\n\t\t\t\t\"<select disabled='disabled'><option/></select>\";\n\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tel.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( el.querySelectorAll( \"[name=d]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( el.querySelectorAll( \":enabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: IE9-11+\n\t\t\t// IE's :disabled selector does not pick up the children of disabled fieldsets\n\t\t\tdocElem.appendChild( el ).disabled = true;\n\t\t\tif ( el.querySelectorAll( \":disabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: Opera 10 - 11 only\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tel.querySelectorAll( \"*,:x\" );\n\t\t\trbuggyQSA.push( \",.*:\" );\n\t\t} );\n\t}\n\n\tif ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector ) ) ) ) {\n\n\t\tassert( function( el ) {\n\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( el, \"*\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( el, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t} );\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( \"|\" ) );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( \"|\" ) );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully self-exclusive\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t) );\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( ( b = b.parentNode ) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t// two documents; shallow comparisons work.\n\t\t// eslint-disable-next-line eqeqeq\n\t\tcompare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( a == document || a.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, a ) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( b == document || b.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, b ) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\treturn a == document ? -1 :\n\t\t\t\tb == document ? 1 :\n\t\t\t\t/* eslint-enable eqeqeq */\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[ i ] === bp[ i ] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[ i ], bp[ i ] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\tap[ i ] == preferredDoc ? -1 :\n\t\t\tbp[ i ] == preferredDoc ? 1 :\n\t\t\t/* eslint-enable eqeqeq */\n\t\t\t0;\n\t};\n\n\treturn document;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\tsetDocument( elem );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t!nonnativeSelectorCache[ expr + \" \" ] &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\n\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t// fragment in IE 9\n\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\tnonnativeSelectorCache( expr, true );\n\t\t}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( context.ownerDocument || context ) != document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( elem.ownerDocument || elem ) != document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.escape = function( sel ) {\n\treturn ( sel + \"\" ).replace( rcssescape, fcssescape );\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( ( node = elem[ i++ ] ) ) {\n\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[ 1 ] = match[ 1 ].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[ 3 ] = ( match[ 3 ] || match[ 4 ] ||\n\t\t\t\tmatch[ 5 ] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[ 2 ] === \"~=\" ) {\n\t\t\t\tmatch[ 3 ] = \" \" + match[ 3 ] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[ 1 ] = match[ 1 ].toLowerCase();\n\n\t\t\tif ( match[ 1 ].slice( 0, 3 ) === \"nth\" ) {\n\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[ 3 ] ) {\n\t\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[ 4 ] = +( match[ 4 ] ?\n\t\t\t\t\tmatch[ 5 ] + ( match[ 6 ] || 1 ) :\n\t\t\t\t\t2 * ( match[ 3 ] === \"even\" || match[ 3 ] === \"odd\" ) );\n\t\t\t\tmatch[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === \"odd\" );\n\n\t\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[ 3 ] ) {\n\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[ 6 ] && match[ 2 ];\n\n\t\t\tif ( matchExpr[ \"CHILD\" ].test( match[ 0 ] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[ 3 ] ) {\n\t\t\t\tmatch[ 2 ] = match[ 4 ] || match[ 5 ] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t( excess = tokenize( unquoted, true ) ) &&\n\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t( excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length ) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[ 0 ] = match[ 0 ].slice( 0, excess );\n\t\t\t\tmatch[ 2 ] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() {\n\t\t\t\t\treturn true;\n\t\t\t\t} :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t( pattern = new RegExp( \"(^|\" + whitespace +\n\t\t\t\t\t\")\" + className + \"(\" + whitespace + \"|$)\" ) ) && classCache(\n\t\t\t\t\t\tclassName, function( elem ) {\n\t\t\t\t\t\t\treturn pattern.test(\n\t\t\t\t\t\t\t\ttypeof elem.className === \"string\" && elem.className ||\n\t\t\t\t\t\t\t\ttypeof elem.getAttribute !== \"undefined\" &&\n\t\t\t\t\t\t\t\t\telem.getAttribute( \"class\" ) ||\n\t\t\t\t\t\t\t\t\"\"\n\t\t\t\t\t\t\t);\n\t\t\t\t} );\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\t/* eslint-disable max-len */\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t\t/* eslint-enable max-len */\n\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, _argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tvar cache, uniqueCache, outerCache, node, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType,\n\t\t\t\t\t\tdiff = false;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( ( node = node[ dir ] ) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) {\n\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\n\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\tnode = parent;\n\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\tdiff = nodeIndex && cache[ 2 ];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t\tif ( useCache ) {\n\n\t\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\t\tdiff = nodeIndex;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// xml :nth-child(...)\n\t\t\t\t\t\t\t// or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t\tif ( diff === false ) {\n\n\t\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t\tif ( ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) &&\n\t\t\t\t\t\t\t\t\t\t++diff ) {\n\n\t\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t\touterCache = node[ expando ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction( function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[ i ] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[ i ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t} ) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction( function( selector ) {\n\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction( function( seed, matches, _context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\t\t\t\t\tseed[ i ] = !( matches[ i ] = elem );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} ) :\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tinput[ 0 ] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[ 0 ] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t} ),\n\n\t\t\"has\": markFunction( function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t} ),\n\n\t\t\"contains\": markFunction( function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t} ),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test( lang || \"\" ) ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( ( elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute( \"xml:lang\" ) || elem.getAttribute( \"lang\" ) ) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( ( elem = elem.parentNode ) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t} ),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement &&\n\t\t\t\t( !document.hasFocus || document.hasFocus() ) &&\n\t\t\t\t!!( elem.type || elem.href || ~elem.tabIndex );\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": createDisabledPseudo( false ),\n\t\t\"disabled\": createDisabledPseudo( true ),\n\n\t\t\"checked\": function( elem ) {\n\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn ( nodeName === \"input\" && !!elem.checked ) ||\n\t\t\t\t( nodeName === \"option\" && !!elem.selected );\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\t// eslint-disable-next-line no-unused-expressions\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[ \"empty\" ]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( ( attr = elem.getAttribute( \"type\" ) ) == null ||\n\t\t\t\t\tattr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo( function() {\n\t\t\treturn [ 0 ];\n\t\t} ),\n\n\t\t\"last\": createPositionalPseudo( function( _matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t} ),\n\n\t\t\"eq\": createPositionalPseudo( function( _matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t} ),\n\n\t\t\"even\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"odd\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"lt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ?\n\t\t\t\targument + length :\n\t\t\t\targument > length ?\n\t\t\t\t\tlength :\n\t\t\t\t\targument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"gt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} )\n\t}\n};\n\nExpr.pseudos[ \"nth\" ] = Expr.pseudos[ \"eq\" ];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || ( match = rcomma.exec( soFar ) ) ) {\n\t\t\tif ( match ) {\n\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[ 0 ].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( ( tokens = [] ) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( ( match = rcombinators.exec( soFar ) ) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push( {\n\t\t\t\tvalue: matched,\n\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[ 0 ].replace( rtrim, \" \" )\n\t\t\t} );\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] ||\n\t\t\t\t( match = preFilters[ type ]( match ) ) ) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push( {\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t} );\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[ i ].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tskip = combinator.next,\n\t\tkey = skip || dir,\n\t\tcheckNonElements = base && key === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, uniqueCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || ( elem[ expando ] = {} );\n\n\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\tuniqueCache = outerCache[ elem.uniqueID ] ||\n\t\t\t\t\t\t\t( outerCache[ elem.uniqueID ] = {} );\n\n\t\t\t\t\t\tif ( skip && skip === elem.nodeName.toLowerCase() ) {\n\t\t\t\t\t\t\telem = elem[ dir ] || elem;\n\t\t\t\t\t\t} else if ( ( oldCache = uniqueCache[ key ] ) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn ( newCache[ 2 ] = oldCache[ 2 ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\tuniqueCache[ key ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[ i ]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[ 0 ];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[ i ], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction( function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts(\n\t\t\t\tselector || \"*\",\n\t\t\t\tcontext.nodeType ? [ context ] : context,\n\t\t\t\t[]\n\t\t\t),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( ( elem = temp[ i ] ) ) {\n\t\t\t\t\tmatcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) ) {\n\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( ( matcherIn[ i ] = elem ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, ( matcherOut = [] ), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) &&\n\t\t\t\t\t\t( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) {\n\n\t\t\t\t\t\tseed[ temp ] = !( results[ temp ] = elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t} );\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[ 0 ].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[ \" \" ],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t( checkContext = context ).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) {\n\t\t\tmatchers = [ addCombinator( elementMatcher( matchers ), matcher ) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[ j ].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\n\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\ttokens\n\t\t\t\t\t\t.slice( 0, i - 1 )\n\t\t\t\t\t\t.concat( { value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" } )\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[ \"TAG\" ]( \"*\", outermost ),\n\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\n\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\toutermostContext = context == document || context || outermost;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\n\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\tif ( !context && elem.ownerDocument != document ) {\n\t\t\t\t\t\tsetDocument( elem );\n\t\t\t\t\t\txml = !documentIsHTML;\n\t\t\t\t\t}\n\t\t\t\t\twhile ( ( matcher = elementMatchers[ j++ ] ) ) {\n\t\t\t\t\t\tif ( matcher( elem, context || document, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( ( elem = !matcher && elem ) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// `i` is now the count of elements visited above, and adding it to `matchedCount`\n\t\t\t// makes the latter nonnegative.\n\t\t\tmatchedCount += i;\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\t// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n\t\t\t// equals `i`), unless we didn't visit _any_ elements in the above loop because we have\n\t\t\t// no element matchers and no seed.\n\t\t\t// Incrementing an initially-string \"0\" `i` allows `i` to remain a string only in that\n\t\t\t// case, which will result in a \"00\" `matchedCount` that differs from `i` but is also\n\t\t\t// numerically zero.\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( ( matcher = setMatchers[ j++ ] ) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !( unmatched[ i ] || setMatched[ i ] ) ) {\n\t\t\t\t\t\t\t\tsetMatched[ i ] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[ i ] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache(\n\t\t\tselector,\n\t\t\tmatcherFromGroupMatchers( elementMatchers, setMatchers )\n\t\t);\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( ( selector = compiled.selector || selector ) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is only one selector in the list and no seed\n\t// (the latter of which guarantees us context)\n\tif ( match.length === 1 ) {\n\n\t\t// Reduce context if the leading compound selector is an ID\n\t\ttokens = match[ 0 ] = match[ 0 ].slice( 0 );\n\t\tif ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === \"ID\" &&\n\t\t\tcontext.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) {\n\n\t\t\tcontext = ( Expr.find[ \"ID\" ]( token.matches[ 0 ]\n\t\t\t\t.replace( runescape, funescape ), context ) || [] )[ 0 ];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[ \"needsContext\" ].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[ i ];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ ( type = token.type ) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( ( find = Expr.find[ type ] ) ) {\n\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( ( seed = find(\n\t\t\t\t\ttoken.matches[ 0 ].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext\n\t\t\t\t) ) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\t!context || rsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split( \"\" ).sort( sortOrder ).join( \"\" ) === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert( function( el ) {\n\n\t// Should return 1, but returns 4 (following)\n\treturn el.compareDocumentPosition( document.createElement( \"fieldset\" ) ) & 1;\n} );\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert( function( el ) {\n\tel.innerHTML = \"<a href='#'></a>\";\n\treturn el.firstChild.getAttribute( \"href\" ) === \"#\";\n} ) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert( function( el ) {\n\tel.innerHTML = \"<input/>\";\n\tel.firstChild.setAttribute( \"value\", \"\" );\n\treturn el.firstChild.getAttribute( \"value\" ) === \"\";\n} ) ) {\n\taddHandle( \"value\", function( elem, _name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert( function( el ) {\n\treturn el.getAttribute( \"disabled\" ) == null;\n} ) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\t\tnull;\n\t\t}\n\t} );\n}\n\nreturn Sizzle;\n\n} )( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\n\n// Deprecated\njQuery.expr[ \":\" ] = jQuery.expr.pseudos;\njQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\njQuery.escapeSelector = Sizzle.escape;\n\n\n\n\nvar dir = function( elem, dir, until ) {\n\tvar matched = [],\n\t\ttruncate = until !== undefined;\n\n\twhile ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {\n\t\tif ( elem.nodeType === 1 ) {\n\t\t\tif ( truncate && jQuery( elem ).is( until ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tmatched.push( elem );\n\t\t}\n\t}\n\treturn matched;\n};\n\n\nvar siblings = function( n, elem ) {\n\tvar matched = [];\n\n\tfor ( ; n; n = n.nextSibling ) {\n\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\tmatched.push( n );\n\t\t}\n\t}\n\n\treturn matched;\n};\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\n\n\nfunction nodeName( elem, name ) {\n\n  return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\n};\nvar rsingleTag = ( /^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i );\n\n\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t} );\n\t}\n\n\t// Single element\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t} );\n\t}\n\n\t// Arraylike of elements (jQuery, arguments, Array)\n\tif ( typeof qualifier !== \"string\" ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( indexOf.call( qualifier, elem ) > -1 ) !== not;\n\t\t} );\n\t}\n\n\t// Filtered directly for both simple and complex selectors\n\treturn jQuery.filter( qualifier, elements, not );\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\tif ( elems.length === 1 && elem.nodeType === 1 ) {\n\t\treturn jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];\n\t}\n\n\treturn jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\treturn elem.nodeType === 1;\n\t} ) );\n};\n\njQuery.fn.extend( {\n\tfind: function( selector ) {\n\t\tvar i, ret,\n\t\t\tlen = this.length,\n\t\t\tself = this;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter( function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} ) );\n\t\t}\n\n\t\tret = this.pushStack( [] );\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\treturn len > 1 ? jQuery.uniqueSort( ret ) : ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], false ) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], true ) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n} );\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\t// Shortcut simple #id case for speed\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/,\n\n\tinit = jQuery.fn.init = function( selector, context, root ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Method init() accepts an alternate rootjQuery\n\t\t// so migrate can support jQuery.sub (gh-2101)\n\t\troot = root || rootjQuery;\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector[ 0 ] === \"<\" &&\n\t\t\t\tselector[ selector.length - 1 ] === \">\" &&\n\t\t\t\tselector.length >= 3 ) {\n\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && ( match[ 1 ] || !context ) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[ 1 ] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[ 0 ] : context;\n\n\t\t\t\t\t// Option to run scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[ 1 ],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[ 2 ] );\n\n\t\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t\t// Inject the element directly into the jQuery object\n\t\t\t\t\t\tthis[ 0 ] = elem;\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || root ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis[ 0 ] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( isFunction( selector ) ) {\n\t\t\treturn root.ready !== undefined ?\n\t\t\t\troot.ready( selector ) :\n\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\n\t// Methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend( {\n\thas: function( target ) {\n\t\tvar targets = jQuery( target, this ),\n\t\t\tl = targets.length;\n\n\t\treturn this.filter( function() {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[ i ] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\ttargets = typeof selectors !== \"string\" && jQuery( selectors );\n\n\t\t// Positional selectors never match, since there's no _selection_ context\n\t\tif ( !rneedsContext.test( selectors ) ) {\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tfor ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {\n\n\t\t\t\t\t// Always skip document fragments\n\t\t\t\t\tif ( cur.nodeType < 11 && ( targets ?\n\t\t\t\t\t\ttargets.index( cur ) > -1 :\n\n\t\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\t\tjQuery.find.matchesSelector( cur, selectors ) ) ) {\n\n\t\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within the set\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// Index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn indexOf.call( jQuery( elem ), this[ 0 ] );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn indexOf.call( this,\n\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[ 0 ] : elem\n\t\t);\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.uniqueSort(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t}\n} );\n\nfunction sibling( cur, dir ) {\n\twhile ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}\n\treturn cur;\n}\n\njQuery.each( {\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn siblings( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn siblings( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\tif ( elem.contentDocument != null &&\n\n\t\t\t// Support: IE 11+\n\t\t\t// <object> elements with no `data` attribute has an object\n\t\t\t// `contentDocument` with a `null` prototype.\n\t\t\tgetProto( elem.contentDocument ) ) {\n\n\t\t\treturn elem.contentDocument;\n\t\t}\n\n\t\t// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only\n\t\t// Treat the template element as a regular one in browsers that\n\t\t// don't support it.\n\t\tif ( nodeName( elem, \"template\" ) ) {\n\t\t\telem = elem.content || elem;\n\t\t}\n\n\t\treturn jQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar matched = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tmatched = jQuery.filter( selector, matched );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tjQuery.uniqueSort( matched );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tmatched.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched );\n\t};\n} );\nvar rnothtmlwhite = ( /[^\\x20\\t\\r\\n\\f]+/g );\n\n\n\n// Convert String-formatted options into Object-formatted ones\nfunction createOptions( options ) {\n\tvar object = {};\n\tjQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t} );\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\tcreateOptions( options ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\n\t\t// Last fire value for non-forgettable lists\n\t\tmemory,\n\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\n\t\t// Flag to prevent firing\n\t\tlocked,\n\n\t\t// Actual callback list\n\t\tlist = [],\n\n\t\t// Queue of execution data for repeatable lists\n\t\tqueue = [],\n\n\t\t// Index of currently firing callback (modified by add/remove as needed)\n\t\tfiringIndex = -1,\n\n\t\t// Fire callbacks\n\t\tfire = function() {\n\n\t\t\t// Enforce single-firing\n\t\t\tlocked = locked || options.once;\n\n\t\t\t// Execute callbacks for all pending executions,\n\t\t\t// respecting firingIndex overrides and runtime changes\n\t\t\tfired = firing = true;\n\t\t\tfor ( ; queue.length; firingIndex = -1 ) {\n\t\t\t\tmemory = queue.shift();\n\t\t\t\twhile ( ++firingIndex < list.length ) {\n\n\t\t\t\t\t// Run callback and check for early termination\n\t\t\t\t\tif ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&\n\t\t\t\t\t\toptions.stopOnFalse ) {\n\n\t\t\t\t\t\t// Jump to end and forget the data so .add doesn't re-fire\n\t\t\t\t\t\tfiringIndex = list.length;\n\t\t\t\t\t\tmemory = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Forget the data if we're done with it\n\t\t\tif ( !options.memory ) {\n\t\t\t\tmemory = false;\n\t\t\t}\n\n\t\t\tfiring = false;\n\n\t\t\t// Clean up if we're done firing for good\n\t\t\tif ( locked ) {\n\n\t\t\t\t// Keep an empty list if we have data for future add calls\n\t\t\t\tif ( memory ) {\n\t\t\t\t\tlist = [];\n\n\t\t\t\t// Otherwise, this object is spent\n\t\t\t\t} else {\n\t\t\t\t\tlist = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t// Actual Callbacks object\n\t\tself = {\n\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\n\t\t\t\t\t// If we have memory from a past run, we should fire after adding\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfiringIndex = list.length - 1;\n\t\t\t\t\t\tqueue.push( memory );\n\t\t\t\t\t}\n\n\t\t\t\t\t( function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tif ( isFunction( arg ) ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && toType( arg ) !== \"string\" ) {\n\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t} )( arguments );\n\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\tvar index;\n\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\tlist.splice( index, 1 );\n\n\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ?\n\t\t\t\t\tjQuery.inArray( fn, list ) > -1 :\n\t\t\t\t\tlist.length > 0;\n\t\t\t},\n\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Disable .fire and .add\n\t\t\t// Abort any current/pending executions\n\t\t\t// Clear all callbacks and values\n\t\t\tdisable: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tlist = memory = \"\";\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\n\t\t\t// Disable .fire\n\t\t\t// Also disable .add unless we have memory (since it would have no effect)\n\t\t\t// Abort any pending executions\n\t\t\tlock: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tif ( !memory && !firing ) {\n\t\t\t\t\tlist = memory = \"\";\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tlocked: function() {\n\t\t\t\treturn !!locked;\n\t\t\t},\n\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( !locked ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tqueue.push( args );\n\t\t\t\t\tif ( !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\nfunction Identity( v ) {\n\treturn v;\n}\nfunction Thrower( ex ) {\n\tthrow ex;\n}\n\nfunction adoptValue( value, resolve, reject, noValue ) {\n\tvar method;\n\n\ttry {\n\n\t\t// Check for promise aspect first to privilege synchronous behavior\n\t\tif ( value && isFunction( ( method = value.promise ) ) ) {\n\t\t\tmethod.call( value ).done( resolve ).fail( reject );\n\n\t\t// Other thenables\n\t\t} else if ( value && isFunction( ( method = value.then ) ) ) {\n\t\t\tmethod.call( value, resolve, reject );\n\n\t\t// Other non-thenables\n\t\t} else {\n\n\t\t\t// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:\n\t\t\t// * false: [ value ].slice( 0 ) => resolve( value )\n\t\t\t// * true: [ value ].slice( 1 ) => resolve()\n\t\t\tresolve.apply( undefined, [ value ].slice( noValue ) );\n\t\t}\n\n\t// For Promises/A+, convert exceptions into rejections\n\t// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in\n\t// Deferred#then to conditionally suppress rejection.\n\t} catch ( value ) {\n\n\t\t// Support: Android 4.0 only\n\t\t// Strict mode functions invoked without .call/.apply get global-object context\n\t\treject.apply( undefined, [ value ] );\n\t}\n}\n\njQuery.extend( {\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\n\t\t\t\t// action, add listener, callbacks,\n\t\t\t\t// ... .then handlers, argument index, [final state]\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks( \"memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"memory\" ), 2 ],\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 0, \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 1, \"rejected\" ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\t\"catch\": function( fn ) {\n\t\t\t\t\treturn promise.then( null, fn );\n\t\t\t\t},\n\n\t\t\t\t// Keep pipe for back-compat\n\t\t\t\tpipe: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( _i, tuple ) {\n\n\t\t\t\t\t\t\t// Map tuples (progress, done, fail) to arguments (done, fail, progress)\n\t\t\t\t\t\t\tvar fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];\n\n\t\t\t\t\t\t\t// deferred.progress(function() { bind to newDefer or newDefer.notify })\n\t\t\t\t\t\t\t// deferred.done(function() { bind to newDefer or newDefer.resolve })\n\t\t\t\t\t\t\t// deferred.fail(function() { bind to newDefer or newDefer.reject })\n\t\t\t\t\t\t\tdeferred[ tuple[ 1 ] ]( function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify )\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ](\n\t\t\t\t\t\t\t\t\t\tthis,\n\t\t\t\t\t\t\t\t\t\tfn ? [ returned ] : arguments\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t} );\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\t\t\t\tthen: function( onFulfilled, onRejected, onProgress ) {\n\t\t\t\t\tvar maxDepth = 0;\n\t\t\t\t\tfunction resolve( depth, deferred, handler, special ) {\n\t\t\t\t\t\treturn function() {\n\t\t\t\t\t\t\tvar that = this,\n\t\t\t\t\t\t\t\targs = arguments,\n\t\t\t\t\t\t\t\tmightThrow = function() {\n\t\t\t\t\t\t\t\t\tvar returned, then;\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.3\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-59\n\t\t\t\t\t\t\t\t\t// Ignore double-resolution attempts\n\t\t\t\t\t\t\t\t\tif ( depth < maxDepth ) {\n\t\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\treturned = handler.apply( that, args );\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.1\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-48\n\t\t\t\t\t\t\t\t\tif ( returned === deferred.promise() ) {\n\t\t\t\t\t\t\t\t\t\tthrow new TypeError( \"Thenable self-resolution\" );\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ sections 2.3.3.1, 3.5\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-54\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-75\n\t\t\t\t\t\t\t\t\t// Retrieve `then` only once\n\t\t\t\t\t\t\t\t\tthen = returned &&\n\n\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.4\n\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-64\n\t\t\t\t\t\t\t\t\t\t// Only check objects and functions for thenability\n\t\t\t\t\t\t\t\t\t\t( typeof returned === \"object\" ||\n\t\t\t\t\t\t\t\t\t\t\ttypeof returned === \"function\" ) &&\n\t\t\t\t\t\t\t\t\t\treturned.then;\n\n\t\t\t\t\t\t\t\t\t// Handle a returned thenable\n\t\t\t\t\t\t\t\t\tif ( isFunction( then ) ) {\n\n\t\t\t\t\t\t\t\t\t\t// Special processors (notify) just wait for resolution\n\t\t\t\t\t\t\t\t\t\tif ( special ) {\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special )\n\t\t\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\t\t// Normal processors (resolve) also hook into progress\n\t\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t\t// ...and disregard older resolution values\n\t\t\t\t\t\t\t\t\t\t\tmaxDepth++;\n\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdeferred.notifyWith )\n\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Handle all other returned values\n\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\tif ( handler !== Identity ) {\n\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\targs = [ returned ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t// Process the value(s)\n\t\t\t\t\t\t\t\t\t\t// Default process is resolve\n\t\t\t\t\t\t\t\t\t\t( special || deferred.resolveWith )( that, args );\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},\n\n\t\t\t\t\t\t\t\t// Only normal processors (resolve) catch and reject exceptions\n\t\t\t\t\t\t\t\tprocess = special ?\n\t\t\t\t\t\t\t\t\tmightThrow :\n\t\t\t\t\t\t\t\t\tfunction() {\n\t\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\t\tmightThrow();\n\t\t\t\t\t\t\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t\t\t\t\t\t\tif ( jQuery.Deferred.exceptionHook ) {\n\t\t\t\t\t\t\t\t\t\t\t\tjQuery.Deferred.exceptionHook( e,\n\t\t\t\t\t\t\t\t\t\t\t\t\tprocess.stackTrace );\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.4.1\n\t\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-61\n\t\t\t\t\t\t\t\t\t\t\t// Ignore post-resolution exceptions\n\t\t\t\t\t\t\t\t\t\t\tif ( depth + 1 >= maxDepth ) {\n\n\t\t\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\t\t\tif ( handler !== Thrower ) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\t\t\targs = [ e ];\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tdeferred.rejectWith( that, args );\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t};\n\n\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.1\n\t\t\t\t\t\t\t// https://promisesaplus.com/#point-57\n\t\t\t\t\t\t\t// Re-resolve promises immediately to dodge false rejection from\n\t\t\t\t\t\t\t// subsequent errors\n\t\t\t\t\t\t\tif ( depth ) {\n\t\t\t\t\t\t\t\tprocess();\n\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t// Call an optional hook to record the stack, in case of exception\n\t\t\t\t\t\t\t\t// since it's otherwise lost when execution goes async\n\t\t\t\t\t\t\t\tif ( jQuery.Deferred.getStackHook ) {\n\t\t\t\t\t\t\t\t\tprocess.stackTrace = jQuery.Deferred.getStackHook();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\twindow.setTimeout( process );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\n\t\t\t\t\t\t// progress_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 0 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onProgress ) ?\n\t\t\t\t\t\t\t\t\tonProgress :\n\t\t\t\t\t\t\t\t\tIdentity,\n\t\t\t\t\t\t\t\tnewDefer.notifyWith\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// fulfilled_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 1 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onFulfilled ) ?\n\t\t\t\t\t\t\t\t\tonFulfilled :\n\t\t\t\t\t\t\t\t\tIdentity\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// rejected_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 2 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onRejected ) ?\n\t\t\t\t\t\t\t\t\tonRejected :\n\t\t\t\t\t\t\t\t\tThrower\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 5 ];\n\n\t\t\t// promise.progress = list.add\n\t\t\t// promise.done = list.add\n\t\t\t// promise.fail = list.add\n\t\t\tpromise[ tuple[ 1 ] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(\n\t\t\t\t\tfunction() {\n\n\t\t\t\t\t\t// state = \"resolved\" (i.e., fulfilled)\n\t\t\t\t\t\t// state = \"rejected\"\n\t\t\t\t\t\tstate = stateString;\n\t\t\t\t\t},\n\n\t\t\t\t\t// rejected_callbacks.disable\n\t\t\t\t\t// fulfilled_callbacks.disable\n\t\t\t\t\ttuples[ 3 - i ][ 2 ].disable,\n\n\t\t\t\t\t// rejected_handlers.disable\n\t\t\t\t\t// fulfilled_handlers.disable\n\t\t\t\t\ttuples[ 3 - i ][ 3 ].disable,\n\n\t\t\t\t\t// progress_callbacks.lock\n\t\t\t\t\ttuples[ 0 ][ 2 ].lock,\n\n\t\t\t\t\t// progress_handlers.lock\n\t\t\t\t\ttuples[ 0 ][ 3 ].lock\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// progress_handlers.fire\n\t\t\t// fulfilled_handlers.fire\n\t\t\t// rejected_handlers.fire\n\t\t\tlist.add( tuple[ 3 ].fire );\n\n\t\t\t// deferred.notify = function() { deferred.notifyWith(...) }\n\t\t\t// deferred.resolve = function() { deferred.resolveWith(...) }\n\t\t\t// deferred.reject = function() { deferred.rejectWith(...) }\n\t\t\tdeferred[ tuple[ 0 ] ] = function() {\n\t\t\t\tdeferred[ tuple[ 0 ] + \"With\" ]( this === deferred ? undefined : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\n\t\t\t// deferred.notifyWith = list.fireWith\n\t\t\t// deferred.resolveWith = list.fireWith\n\t\t\t// deferred.rejectWith = list.fireWith\n\t\t\tdeferred[ tuple[ 0 ] + \"With\" ] = list.fireWith;\n\t\t} );\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( singleValue ) {\n\t\tvar\n\n\t\t\t// count of uncompleted subordinates\n\t\t\tremaining = arguments.length,\n\n\t\t\t// count of unprocessed arguments\n\t\t\ti = remaining,\n\n\t\t\t// subordinate fulfillment data\n\t\t\tresolveContexts = Array( i ),\n\t\t\tresolveValues = slice.call( arguments ),\n\n\t\t\t// the master Deferred\n\t\t\tmaster = jQuery.Deferred(),\n\n\t\t\t// subordinate callback factory\n\t\t\tupdateFunc = function( i ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tresolveContexts[ i ] = this;\n\t\t\t\t\tresolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( !( --remaining ) ) {\n\t\t\t\t\t\tmaster.resolveWith( resolveContexts, resolveValues );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t};\n\n\t\t// Single- and empty arguments are adopted like Promise.resolve\n\t\tif ( remaining <= 1 ) {\n\t\t\tadoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject,\n\t\t\t\t!remaining );\n\n\t\t\t// Use .then() to unwrap secondary thenables (cf. gh-3000)\n\t\t\tif ( master.state() === \"pending\" ||\n\t\t\t\tisFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {\n\n\t\t\t\treturn master.then();\n\t\t\t}\n\t\t}\n\n\t\t// Multiple arguments are aggregated like Promise.all array elements\n\t\twhile ( i-- ) {\n\t\t\tadoptValue( resolveValues[ i ], updateFunc( i ), master.reject );\n\t\t}\n\n\t\treturn master.promise();\n\t}\n} );\n\n\n// These usually indicate a programmer mistake during development,\n// warn about them ASAP rather than swallowing them by default.\nvar rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;\n\njQuery.Deferred.exceptionHook = function( error, stack ) {\n\n\t// Support: IE 8 - 9 only\n\t// Console exists when dev tools are open, which can happen at any time\n\tif ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {\n\t\twindow.console.warn( \"jQuery.Deferred exception: \" + error.message, error.stack, stack );\n\t}\n};\n\n\n\n\njQuery.readyException = function( error ) {\n\twindow.setTimeout( function() {\n\t\tthrow error;\n\t} );\n};\n\n\n\n\n// The deferred used on DOM ready\nvar readyList = jQuery.Deferred();\n\njQuery.fn.ready = function( fn ) {\n\n\treadyList\n\t\t.then( fn )\n\n\t\t// Wrap jQuery.readyException in a function so that the lookup\n\t\t// happens at the time of error handling instead of callback\n\t\t// registration.\n\t\t.catch( function( error ) {\n\t\t\tjQuery.readyException( error );\n\t\t} );\n\n\treturn this;\n};\n\njQuery.extend( {\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\t}\n} );\n\njQuery.ready.then = readyList.then;\n\n// The ready event handler and self cleanup method\nfunction completed() {\n\tdocument.removeEventListener( \"DOMContentLoaded\", completed );\n\twindow.removeEventListener( \"load\", completed );\n\tjQuery.ready();\n}\n\n// Catch cases where $(document).ready() is called\n// after the browser event has already occurred.\n// Support: IE <=9 - 10 only\n// Older IE sometimes signals \"interactive\" too soon\nif ( document.readyState === \"complete\" ||\n\t( document.readyState !== \"loading\" && !document.documentElement.doScroll ) ) {\n\n\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\twindow.setTimeout( jQuery.ready );\n\n} else {\n\n\t// Use the handy event callback\n\tdocument.addEventListener( \"DOMContentLoaded\", completed );\n\n\t// A fallback to window.onload, that will always work\n\twindow.addEventListener( \"load\", completed );\n}\n\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlen = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( toType( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\taccess( elems, fn, i, key[ i ], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, _key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\tfn(\n\t\t\t\t\telems[ i ], key, raw ?\n\t\t\t\t\tvalue :\n\t\t\t\t\tvalue.call( elems[ i ], i, fn( elems[ i ], key ) )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( chainable ) {\n\t\treturn elems;\n\t}\n\n\t// Gets\n\tif ( bulk ) {\n\t\treturn fn.call( elems );\n\t}\n\n\treturn len ? fn( elems[ 0 ], key ) : emptyGet;\n};\n\n\n// Matches dashed string for camelizing\nvar rmsPrefix = /^-ms-/,\n\trdashAlpha = /-([a-z])/g;\n\n// Used by camelCase as callback to replace()\nfunction fcamelCase( _all, letter ) {\n\treturn letter.toUpperCase();\n}\n\n// Convert dashed to camelCase; used by the css and data modules\n// Support: IE <=9 - 11, Edge 12 - 15\n// Microsoft forgot to hump their vendor prefix (#9572)\nfunction camelCase( string ) {\n\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n}\nvar acceptData = function( owner ) {\n\n\t// Accepts only:\n\t//  - Node\n\t//    - Node.ELEMENT_NODE\n\t//    - Node.DOCUMENT_NODE\n\t//  - Object\n\t//    - Any\n\treturn owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );\n};\n\n\n\n\nfunction Data() {\n\tthis.expando = jQuery.expando + Data.uid++;\n}\n\nData.uid = 1;\n\nData.prototype = {\n\n\tcache: function( owner ) {\n\n\t\t// Check if the owner object already has a cache\n\t\tvar value = owner[ this.expando ];\n\n\t\t// If not, create one\n\t\tif ( !value ) {\n\t\t\tvalue = {};\n\n\t\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t\t// but we should not, see #8335.\n\t\t\t// Always return an empty object.\n\t\t\tif ( acceptData( owner ) ) {\n\n\t\t\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t\t\t// use plain assignment\n\t\t\t\tif ( owner.nodeType ) {\n\t\t\t\t\towner[ this.expando ] = value;\n\n\t\t\t\t// Otherwise secure it in a non-enumerable property\n\t\t\t\t// configurable must be true to allow the property to be\n\t\t\t\t// deleted when data is removed\n\t\t\t\t} else {\n\t\t\t\t\tObject.defineProperty( owner, this.expando, {\n\t\t\t\t\t\tvalue: value,\n\t\t\t\t\t\tconfigurable: true\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn value;\n\t},\n\tset: function( owner, data, value ) {\n\t\tvar prop,\n\t\t\tcache = this.cache( owner );\n\n\t\t// Handle: [ owner, key, value ] args\n\t\t// Always use camelCase key (gh-2257)\n\t\tif ( typeof data === \"string\" ) {\n\t\t\tcache[ camelCase( data ) ] = value;\n\n\t\t// Handle: [ owner, { properties } ] args\n\t\t} else {\n\n\t\t\t// Copy the properties one-by-one to the cache object\n\t\t\tfor ( prop in data ) {\n\t\t\t\tcache[ camelCase( prop ) ] = data[ prop ];\n\t\t\t}\n\t\t}\n\t\treturn cache;\n\t},\n\tget: function( owner, key ) {\n\t\treturn key === undefined ?\n\t\t\tthis.cache( owner ) :\n\n\t\t\t// Always use camelCase key (gh-2257)\n\t\t\towner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];\n\t},\n\taccess: function( owner, key, value ) {\n\n\t\t// In cases where either:\n\t\t//\n\t\t//   1. No key was specified\n\t\t//   2. A string key was specified, but no value provided\n\t\t//\n\t\t// Take the \"read\" path and allow the get method to determine\n\t\t// which value to return, respectively either:\n\t\t//\n\t\t//   1. The entire cache object\n\t\t//   2. The data stored at the key\n\t\t//\n\t\tif ( key === undefined ||\n\t\t\t\t( ( key && typeof key === \"string\" ) && value === undefined ) ) {\n\n\t\t\treturn this.get( owner, key );\n\t\t}\n\n\t\t// When the key is not a string, or both a key and value\n\t\t// are specified, set or extend (existing objects) with either:\n\t\t//\n\t\t//   1. An object of properties\n\t\t//   2. A key and value\n\t\t//\n\t\tthis.set( owner, key, value );\n\n\t\t// Since the \"set\" path can have two possible entry points\n\t\t// return the expected data based on which path was taken[*]\n\t\treturn value !== undefined ? value : key;\n\t},\n\tremove: function( owner, key ) {\n\t\tvar i,\n\t\t\tcache = owner[ this.expando ];\n\n\t\tif ( cache === undefined ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key !== undefined ) {\n\n\t\t\t// Support array or space separated string of keys\n\t\t\tif ( Array.isArray( key ) ) {\n\n\t\t\t\t// If key is an array of keys...\n\t\t\t\t// We always set camelCase keys, so remove that.\n\t\t\t\tkey = key.map( camelCase );\n\t\t\t} else {\n\t\t\t\tkey = camelCase( key );\n\n\t\t\t\t// If a key with the spaces exists, use it.\n\t\t\t\t// Otherwise, create an array by matching non-whitespace\n\t\t\t\tkey = key in cache ?\n\t\t\t\t\t[ key ] :\n\t\t\t\t\t( key.match( rnothtmlwhite ) || [] );\n\t\t\t}\n\n\t\t\ti = key.length;\n\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete cache[ key[ i ] ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if there's no more data\n\t\tif ( key === undefined || jQuery.isEmptyObject( cache ) ) {\n\n\t\t\t// Support: Chrome <=35 - 45\n\t\t\t// Webkit & Blink performance suffers when deleting properties\n\t\t\t// from DOM nodes, so set to undefined instead\n\t\t\t// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)\n\t\t\tif ( owner.nodeType ) {\n\t\t\t\towner[ this.expando ] = undefined;\n\t\t\t} else {\n\t\t\t\tdelete owner[ this.expando ];\n\t\t\t}\n\t\t}\n\t},\n\thasData: function( owner ) {\n\t\tvar cache = owner[ this.expando ];\n\t\treturn cache !== undefined && !jQuery.isEmptyObject( cache );\n\t}\n};\nvar dataPriv = new Data();\n\nvar dataUser = new Data();\n\n\n\n//\tImplementation Summary\n//\n//\t1. Enforce API surface and semantic compatibility with 1.9.x branch\n//\t2. Improve the module's maintainability by reducing the storage\n//\t\tpaths to a single mechanism.\n//\t3. Use the same single mechanism to support \"private\" and \"user\" data.\n//\t4. _Never_ expose \"private\" data to user code (TODO: Drop _data, _removeData)\n//\t5. Avoid exposing implementation details on user objects (eg. expando properties)\n//\t6. Provide a clear path for implementation upgrade to WeakMap in 2014\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /[A-Z]/g;\n\nfunction getData( data ) {\n\tif ( data === \"true\" ) {\n\t\treturn true;\n\t}\n\n\tif ( data === \"false\" ) {\n\t\treturn false;\n\t}\n\n\tif ( data === \"null\" ) {\n\t\treturn null;\n\t}\n\n\t// Only convert to a number if it doesn't change the string\n\tif ( data === +data + \"\" ) {\n\t\treturn +data;\n\t}\n\n\tif ( rbrace.test( data ) ) {\n\t\treturn JSON.parse( data );\n\t}\n\n\treturn data;\n}\n\nfunction dataAttr( elem, key, data ) {\n\tvar name;\n\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\t\tname = \"data-\" + key.replace( rmultiDash, \"-$&\" ).toLowerCase();\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = getData( data );\n\t\t\t} catch ( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tdataUser.set( elem, key, data );\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\treturn data;\n}\n\njQuery.extend( {\n\thasData: function( elem ) {\n\t\treturn dataUser.hasData( elem ) || dataPriv.hasData( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn dataUser.access( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\tdataUser.remove( elem, name );\n\t},\n\n\t// TODO: Now that all calls to _data and _removeData have been replaced\n\t// with direct calls to dataPriv methods, these can be deprecated.\n\t_data: function( elem, name, data ) {\n\t\treturn dataPriv.access( elem, name, data );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\tdataPriv.remove( elem, name );\n\t}\n} );\n\njQuery.fn.extend( {\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[ 0 ],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = dataUser.get( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !dataPriv.get( elem, \"hasDataAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE 11 only\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = camelCase( name.slice( 5 ) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tdataPriv.set( elem, \"hasDataAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tdataUser.set( this, key );\n\t\t\t} );\n\t\t}\n\n\t\treturn access( this, function( value ) {\n\t\t\tvar data;\n\n\t\t\t// The calling jQuery object (element matches) is not empty\n\t\t\t// (and therefore has an element appears at this[ 0 ]) and the\n\t\t\t// `value` parameter was not undefined. An empty jQuery object\n\t\t\t// will result in `undefined` for elem = this[ 0 ] which will\n\t\t\t// throw an exception if an attempt to read a data cache is made.\n\t\t\tif ( elem && value === undefined ) {\n\n\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t// The key will always be camelCased in Data\n\t\t\t\tdata = dataUser.get( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Attempt to \"discover\" the data in\n\t\t\t\t// HTML5 custom data-* attrs\n\t\t\t\tdata = dataAttr( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// We tried really hard, but the data doesn't exist.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Set the data...\n\t\t\tthis.each( function() {\n\n\t\t\t\t// We always store the camelCased key\n\t\t\t\tdataUser.set( this, key, value );\n\t\t\t} );\n\t\t}, null, value, arguments.length > 1, null, true );\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each( function() {\n\t\t\tdataUser.remove( this, key );\n\t\t} );\n\t}\n} );\n\n\njQuery.extend( {\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = dataPriv.get( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || Array.isArray( data ) ) {\n\t\t\t\t\tqueue = dataPriv.access( elem, type, jQuery.makeArray( data ) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// Clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// Not public - generate a queueHooks object, or return the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn dataPriv.get( elem, key ) || dataPriv.access( elem, key, {\n\t\t\tempty: jQuery.Callbacks( \"once memory\" ).add( function() {\n\t\t\t\tdataPriv.remove( elem, [ type + \"queue\", key ] );\n\t\t\t} )\n\t\t} );\n\t}\n} );\n\njQuery.fn.extend( {\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[ 0 ], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each( function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// Ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[ 0 ] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t} );\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t} );\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = dataPriv.get( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n} );\nvar pnum = ( /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/ ).source;\n\nvar rcssNum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" );\n\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar documentElement = document.documentElement;\n\n\n\n\tvar isAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem );\n\t\t},\n\t\tcomposed = { composed: true };\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only\n\t// Check attachment across shadow DOM boundaries when possible (gh-3504)\n\t// Support: iOS 10.0-10.2 only\n\t// Early iOS 10 versions support `attachShadow` but not `getRootNode`,\n\t// leading to errors. We need to check for `getRootNode`.\n\tif ( documentElement.getRootNode ) {\n\t\tisAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem ) ||\n\t\t\t\telem.getRootNode( composed ) === elem.ownerDocument;\n\t\t};\n\t}\nvar isHiddenWithinTree = function( elem, el ) {\n\n\t\t// isHiddenWithinTree might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\n\t\t// Inline style trumps all\n\t\treturn elem.style.display === \"none\" ||\n\t\t\telem.style.display === \"\" &&\n\n\t\t\t// Otherwise, check computed style\n\t\t\t// Support: Firefox <=43 - 45\n\t\t\t// Disconnected elements can have computed display: none, so first confirm that elem is\n\t\t\t// in the document.\n\t\t\tisAttached( elem ) &&\n\n\t\t\tjQuery.css( elem, \"display\" ) === \"none\";\n\t};\n\n\n\nfunction adjustCSS( elem, prop, valueParts, tween ) {\n\tvar adjusted, scale,\n\t\tmaxIterations = 20,\n\t\tcurrentValue = tween ?\n\t\t\tfunction() {\n\t\t\t\treturn tween.cur();\n\t\t\t} :\n\t\t\tfunction() {\n\t\t\t\treturn jQuery.css( elem, prop, \"\" );\n\t\t\t},\n\t\tinitial = currentValue(),\n\t\tunit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t// Starting value computation is required for potential unit mismatches\n\t\tinitialInUnit = elem.nodeType &&\n\t\t\t( jQuery.cssNumber[ prop ] || unit !== \"px\" && +initial ) &&\n\t\t\trcssNum.exec( jQuery.css( elem, prop ) );\n\n\tif ( initialInUnit && initialInUnit[ 3 ] !== unit ) {\n\n\t\t// Support: Firefox <=54\n\t\t// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)\n\t\tinitial = initial / 2;\n\n\t\t// Trust units reported by jQuery.css\n\t\tunit = unit || initialInUnit[ 3 ];\n\n\t\t// Iteratively approximate from a nonzero starting point\n\t\tinitialInUnit = +initial || 1;\n\n\t\twhile ( maxIterations-- ) {\n\n\t\t\t// Evaluate and update our best guess (doubling guesses that zero out).\n\t\t\t// Finish if the scale equals or crosses 1 (making the old*new product non-positive).\n\t\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\t\t\tif ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {\n\t\t\t\tmaxIterations = 0;\n\t\t\t}\n\t\t\tinitialInUnit = initialInUnit / scale;\n\n\t\t}\n\n\t\tinitialInUnit = initialInUnit * 2;\n\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\n\t\t// Make sure we update the tween properties later on\n\t\tvalueParts = valueParts || [];\n\t}\n\n\tif ( valueParts ) {\n\t\tinitialInUnit = +initialInUnit || +initial || 0;\n\n\t\t// Apply relative offset (+=/-=) if specified\n\t\tadjusted = valueParts[ 1 ] ?\n\t\t\tinitialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :\n\t\t\t+valueParts[ 2 ];\n\t\tif ( tween ) {\n\t\t\ttween.unit = unit;\n\t\t\ttween.start = initialInUnit;\n\t\t\ttween.end = adjusted;\n\t\t}\n\t}\n\treturn adjusted;\n}\n\n\nvar defaultDisplayMap = {};\n\nfunction getDefaultDisplay( elem ) {\n\tvar temp,\n\t\tdoc = elem.ownerDocument,\n\t\tnodeName = elem.nodeName,\n\t\tdisplay = defaultDisplayMap[ nodeName ];\n\n\tif ( display ) {\n\t\treturn display;\n\t}\n\n\ttemp = doc.body.appendChild( doc.createElement( nodeName ) );\n\tdisplay = jQuery.css( temp, \"display\" );\n\n\ttemp.parentNode.removeChild( temp );\n\n\tif ( display === \"none\" ) {\n\t\tdisplay = \"block\";\n\t}\n\tdefaultDisplayMap[ nodeName ] = display;\n\n\treturn display;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\t// Determine new display value for elements that need to change\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\n\t\t\t// Since we force visibility upon cascade-hidden elements, an immediate (and slow)\n\t\t\t// check is required in this first loop unless we have a nonempty display value (either\n\t\t\t// inline or about-to-be-restored)\n\t\t\tif ( display === \"none\" ) {\n\t\t\t\tvalues[ index ] = dataPriv.get( elem, \"display\" ) || null;\n\t\t\t\tif ( !values[ index ] ) {\n\t\t\t\t\telem.style.display = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( elem.style.display === \"\" && isHiddenWithinTree( elem ) ) {\n\t\t\t\tvalues[ index ] = getDefaultDisplay( elem );\n\t\t\t}\n\t\t} else {\n\t\t\tif ( display !== \"none\" ) {\n\t\t\t\tvalues[ index ] = \"none\";\n\n\t\t\t\t// Remember what we're overwriting\n\t\t\t\tdataPriv.set( elem, \"display\", display );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of the elements in a second loop to avoid constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\tif ( values[ index ] != null ) {\n\t\t\telements[ index ].style.display = values[ index ];\n\t\t}\n\t}\n\n\treturn elements;\n}\n\njQuery.fn.extend( {\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tif ( isHiddenWithinTree( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t} );\n\t}\n} );\nvar rcheckableType = ( /^(?:checkbox|radio)$/i );\n\nvar rtagName = ( /<([a-z][^\\/\\0>\\x20\\t\\r\\n\\f]*)/i );\n\nvar rscriptType = ( /^$|^module$|\\/(?:java|ecma)script/i );\n\n\n\n( function() {\n\tvar fragment = document.createDocumentFragment(),\n\t\tdiv = fragment.appendChild( document.createElement( \"div\" ) ),\n\t\tinput = document.createElement( \"input\" );\n\n\t// Support: Android 4.0 - 4.3 only\n\t// Check state lost if the name is set (#11217)\n\t// Support: Windows Web Apps (WWA)\n\t// `name` and `type` must use .setAttribute for WWA (#14901)\n\tinput.setAttribute( \"type\", \"radio\" );\n\tinput.setAttribute( \"checked\", \"checked\" );\n\tinput.setAttribute( \"name\", \"t\" );\n\n\tdiv.appendChild( input );\n\n\t// Support: Android <=4.1 only\n\t// Older WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE <=11 only\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// Support: IE <=9 only\n\t// IE <=9 replaces <option> tags with their contents when inserted outside of\n\t// the select element.\n\tdiv.innerHTML = \"<option></option>\";\n\tsupport.option = !!div.lastChild;\n} )();\n\n\n// We have to close these tags to support XHTML (#13200)\nvar wrapMap = {\n\n\t// XHTML parsers do not magically insert elements in the\n\t// same way that tag soup parsers do. So we cannot shorten\n\t// this by omitting <tbody> or other required elements.\n\tthead: [ 1, \"<table>\", \"</table>\" ],\n\tcol: [ 2, \"<table><colgroup>\", \"</colgroup></table>\" ],\n\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t_default: [ 0, \"\", \"\" ]\n};\n\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n// Support: IE <=9 only\nif ( !support.option ) {\n\twrapMap.optgroup = wrapMap.option = [ 1, \"<select multiple='multiple'>\", \"</select>\" ];\n}\n\n\nfunction getAll( context, tag ) {\n\n\t// Support: IE <=9 - 11 only\n\t// Use typeof to avoid zero-argument method invocation on host objects (#15151)\n\tvar ret;\n\n\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\tret = context.getElementsByTagName( tag || \"*\" );\n\n\t} else if ( typeof context.querySelectorAll !== \"undefined\" ) {\n\t\tret = context.querySelectorAll( tag || \"*\" );\n\n\t} else {\n\t\tret = [];\n\t}\n\n\tif ( tag === undefined || tag && nodeName( context, tag ) ) {\n\t\treturn jQuery.merge( [ context ], ret );\n\t}\n\n\treturn ret;\n}\n\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar i = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\tdataPriv.set(\n\t\t\telems[ i ],\n\t\t\t\"globalEval\",\n\t\t\t!refElements || dataPriv.get( refElements[ i ], \"globalEval\" )\n\t\t);\n\t}\n}\n\n\nvar rhtml = /<|&#?\\w+;/;\n\nfunction buildFragment( elems, context, scripts, selection, ignored ) {\n\tvar elem, tmp, tag, wrap, attached, j,\n\t\tfragment = context.createDocumentFragment(),\n\t\tnodes = [],\n\t\ti = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\telem = elems[ i ];\n\n\t\tif ( elem || elem === 0 ) {\n\n\t\t\t// Add nodes directly\n\t\t\tif ( toType( elem ) === \"object\" ) {\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t// Convert non-html into a text node\n\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t// Convert html into DOM nodes\n\t\t\t} else {\n\t\t\t\ttmp = tmp || fragment.appendChild( context.createElement( \"div\" ) );\n\n\t\t\t\t// Deserialize a standard representation\n\t\t\t\ttag = ( rtagName.exec( elem ) || [ \"\", \"\" ] )[ 1 ].toLowerCase();\n\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\t\t\t\ttmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];\n\n\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\tj = wrap[ 0 ];\n\t\t\t\twhile ( j-- ) {\n\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t}\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t// Remember the top-level container\n\t\t\t\ttmp = fragment.firstChild;\n\n\t\t\t\t// Ensure the created nodes are orphaned (#12392)\n\t\t\t\ttmp.textContent = \"\";\n\t\t\t}\n\t\t}\n\t}\n\n\t// Remove wrapper from fragment\n\tfragment.textContent = \"\";\n\n\ti = 0;\n\twhile ( ( elem = nodes[ i++ ] ) ) {\n\n\t\t// Skip elements already in the context collection (trac-4087)\n\t\tif ( selection && jQuery.inArray( elem, selection ) > -1 ) {\n\t\t\tif ( ignored ) {\n\t\t\t\tignored.push( elem );\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tattached = isAttached( elem );\n\n\t\t// Append to fragment\n\t\ttmp = getAll( fragment.appendChild( elem ), \"script\" );\n\n\t\t// Preserve script evaluation history\n\t\tif ( attached ) {\n\t\t\tsetGlobalEval( tmp );\n\t\t}\n\n\t\t// Capture executables\n\t\tif ( scripts ) {\n\t\t\tj = 0;\n\t\t\twhile ( ( elem = tmp[ j++ ] ) ) {\n\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\tscripts.push( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn fragment;\n}\n\n\nvar\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\n// Support: IE <=9 - 11+\n// focus() and blur() are asynchronous, except when they are no-op.\n// So expect focus to be synchronous when the element is already active,\n// and blur to be synchronous when the element is not already active.\n// (focus and blur are always synchronous in other supported browsers,\n// this just defines when we can count on it).\nfunction expectSync( elem, type ) {\n\treturn ( elem === safeActiveElement() ) === ( type === \"focus\" );\n}\n\n// Support: IE <=9 only\n// Accessing document.activeElement can throw unexpectedly\n// https://bugs.jquery.com/ticket/13393\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\nfunction on( elem, types, selector, data, fn, one ) {\n\tvar origFn, type;\n\n\t// Types can be a map of types/handlers\n\tif ( typeof types === \"object\" ) {\n\n\t\t// ( types-Object, selector, data )\n\t\tif ( typeof selector !== \"string\" ) {\n\n\t\t\t// ( types-Object, data )\n\t\t\tdata = data || selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tfor ( type in types ) {\n\t\t\ton( elem, type, selector, data, types[ type ], one );\n\t\t}\n\t\treturn elem;\n\t}\n\n\tif ( data == null && fn == null ) {\n\n\t\t// ( types, fn )\n\t\tfn = selector;\n\t\tdata = selector = undefined;\n\t} else if ( fn == null ) {\n\t\tif ( typeof selector === \"string\" ) {\n\n\t\t\t// ( types, selector, fn )\n\t\t\tfn = data;\n\t\t\tdata = undefined;\n\t\t} else {\n\n\t\t\t// ( types, data, fn )\n\t\t\tfn = data;\n\t\t\tdata = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t}\n\tif ( fn === false ) {\n\t\tfn = returnFalse;\n\t} else if ( !fn ) {\n\t\treturn elem;\n\t}\n\n\tif ( one === 1 ) {\n\t\torigFn = fn;\n\t\tfn = function( event ) {\n\n\t\t\t// Can use an empty set, since event contains the info\n\t\t\tjQuery().off( event );\n\t\t\treturn origFn.apply( this, arguments );\n\t\t};\n\n\t\t// Use same guid so caller can remove using origFn\n\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t}\n\treturn elem.each( function() {\n\t\tjQuery.event.add( this, types, fn, data, selector );\n\t} );\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\n\t\tvar handleObjIn, eventHandle, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.get( elem );\n\n\t\t// Only attach events to objects that accept data\n\t\tif ( !acceptData( elem ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Ensure that invalid selectors throw exceptions at attach time\n\t\t// Evaluate against documentElement in case elem is a non-element node (e.g., document)\n\t\tif ( selector ) {\n\t\t\tjQuery.find.matchesSelector( documentElement, selector );\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !( events = elemData.events ) ) {\n\t\t\tevents = elemData.events = Object.create( null );\n\t\t}\n\t\tif ( !( eventHandle = elemData.handle ) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" && jQuery.event.triggered !== e.type ?\n\t\t\t\t\tjQuery.event.dispatch.apply( elem, arguments ) : undefined;\n\t\t\t};\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend( {\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join( \".\" )\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !( handlers = events[ type ] ) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener if the special events handler returns false\n\t\t\t\tif ( !special.setup ||\n\t\t\t\t\tspecial.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\n\t\tvar j, origCount, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.hasData( elem ) && dataPriv.get( elem );\n\n\t\tif ( !elemData || !( events = elemData.events ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[ 2 ] &&\n\t\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector ||\n\t\t\t\t\t\tselector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown ||\n\t\t\t\t\tspecial.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove data and the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdataPriv.remove( elem, \"handle events\" );\n\t\t}\n\t},\n\n\tdispatch: function( nativeEvent ) {\n\n\t\tvar i, j, ret, matched, handleObj, handlerQueue,\n\t\t\targs = new Array( arguments.length ),\n\n\t\t\t// Make a writable jQuery.Event from the native event object\n\t\t\tevent = jQuery.event.fix( nativeEvent ),\n\n\t\t\thandlers = (\n\t\t\t\t\tdataPriv.get( this, \"events\" ) || Object.create( null )\n\t\t\t\t)[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[ 0 ] = event;\n\n\t\tfor ( i = 1; i < arguments.length; i++ ) {\n\t\t\targs[ i ] = arguments[ i ];\n\t\t}\n\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( ( handleObj = matched.handlers[ j++ ] ) &&\n\t\t\t\t!event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// If the event is namespaced, then each handler is only invoked if it is\n\t\t\t\t// specially universal or its namespaces are a superset of the event's.\n\t\t\t\tif ( !event.rnamespace || handleObj.namespace === false ||\n\t\t\t\t\tevent.rnamespace.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||\n\t\t\t\t\t\thandleObj.handler ).apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( ( event.result = ret ) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar i, handleObj, sel, matchedHandlers, matchedSelectors,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\tif ( delegateCount &&\n\n\t\t\t// Support: IE <=9\n\t\t\t// Black-hole SVG <use> instance trees (trac-13180)\n\t\t\tcur.nodeType &&\n\n\t\t\t// Support: Firefox <=42\n\t\t\t// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)\n\t\t\t// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click\n\t\t\t// Support: IE 11 only\n\t\t\t// ...but not arrow key \"clicks\" of radio inputs, which can have `button` -1 (gh-2343)\n\t\t\t!( event.type === \"click\" && event.button >= 1 ) ) {\n\n\t\t\tfor ( ; cur !== this; cur = cur.parentNode || this ) {\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && !( event.type === \"click\" && cur.disabled === true ) ) {\n\t\t\t\t\tmatchedHandlers = [];\n\t\t\t\t\tmatchedSelectors = {};\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatchedSelectors[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) > -1 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] ) {\n\t\t\t\t\t\t\tmatchedHandlers.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matchedHandlers.length ) {\n\t\t\t\t\t\thandlerQueue.push( { elem: cur, handlers: matchedHandlers } );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tcur = this;\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\taddProp: function( name, hook ) {\n\t\tObject.defineProperty( jQuery.Event.prototype, name, {\n\t\t\tenumerable: true,\n\t\t\tconfigurable: true,\n\n\t\t\tget: isFunction( hook ) ?\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\t\treturn hook( this.originalEvent );\n\t\t\t\t\t}\n\t\t\t\t} :\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\t\treturn this.originalEvent[ name ];\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\tset: function( value ) {\n\t\t\t\tObject.defineProperty( this, name, {\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tconfigurable: true,\n\t\t\t\t\twritable: true,\n\t\t\t\t\tvalue: value\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\t},\n\n\tfix: function( originalEvent ) {\n\t\treturn originalEvent[ jQuery.expando ] ?\n\t\t\toriginalEvent :\n\t\t\tnew jQuery.Event( originalEvent );\n\t},\n\n\tspecial: {\n\t\tload: {\n\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tclick: {\n\n\t\t\t// Utilize native event to ensure correct state for checkable inputs\n\t\t\tsetup: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Claim the first handler\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\t// dataPriv.set( el, \"click\", ... )\n\t\t\t\t\tleverageNative( el, \"click\", returnTrue );\n\t\t\t\t}\n\n\t\t\t\t// Return false to allow normal processing in the caller\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\ttrigger: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Force setup before triggering a click\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\tleverageNative( el, \"click\" );\n\t\t\t\t}\n\n\t\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\t\treturn true;\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, suppress native .click() on links\n\t\t\t// Also prevent it if we're currently inside a leveraged native-event stack\n\t\t\t_default: function( event ) {\n\t\t\t\tvar target = event.target;\n\t\t\t\treturn rcheckableType.test( target.type ) &&\n\t\t\t\t\ttarget.click && nodeName( target, \"input\" ) &&\n\t\t\t\t\tdataPriv.get( target, \"click\" ) ||\n\t\t\t\t\tnodeName( target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Ensure the presence of an event listener that handles manually-triggered\n// synthetic events by interrupting progress until reinvoked in response to\n// *native* events that it fires directly, ensuring that state changes have\n// already occurred before other listeners are invoked.\nfunction leverageNative( el, type, expectSync ) {\n\n\t// Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add\n\tif ( !expectSync ) {\n\t\tif ( dataPriv.get( el, type ) === undefined ) {\n\t\t\tjQuery.event.add( el, type, returnTrue );\n\t\t}\n\t\treturn;\n\t}\n\n\t// Register the controller as a special universal handler for all event namespaces\n\tdataPriv.set( el, type, false );\n\tjQuery.event.add( el, type, {\n\t\tnamespace: false,\n\t\thandler: function( event ) {\n\t\t\tvar notAsync, result,\n\t\t\t\tsaved = dataPriv.get( this, type );\n\n\t\t\tif ( ( event.isTrigger & 1 ) && this[ type ] ) {\n\n\t\t\t\t// Interrupt processing of the outer synthetic .trigger()ed event\n\t\t\t\t// Saved data should be false in such cases, but might be a leftover capture object\n\t\t\t\t// from an async native handler (gh-4350)\n\t\t\t\tif ( !saved.length ) {\n\n\t\t\t\t\t// Store arguments for use when handling the inner native event\n\t\t\t\t\t// There will always be at least one argument (an event object), so this array\n\t\t\t\t\t// will not be confused with a leftover capture object.\n\t\t\t\t\tsaved = slice.call( arguments );\n\t\t\t\t\tdataPriv.set( this, type, saved );\n\n\t\t\t\t\t// Trigger the native event and capture its result\n\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t// focus() and blur() are asynchronous\n\t\t\t\t\tnotAsync = expectSync( this, type );\n\t\t\t\t\tthis[ type ]();\n\t\t\t\t\tresult = dataPriv.get( this, type );\n\t\t\t\t\tif ( saved !== result || notAsync ) {\n\t\t\t\t\t\tdataPriv.set( this, type, false );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = {};\n\t\t\t\t\t}\n\t\t\t\t\tif ( saved !== result ) {\n\n\t\t\t\t\t\t// Cancel the outer synthetic event\n\t\t\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\treturn result.value;\n\t\t\t\t\t}\n\n\t\t\t\t// If this is an inner synthetic event for an event with a bubbling surrogate\n\t\t\t\t// (focus or blur), assume that the surrogate already propagated from triggering the\n\t\t\t\t// native event and prevent that from happening again here.\n\t\t\t\t// This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the\n\t\t\t\t// bubbling surrogate propagates *after* the non-bubbling base), but that seems\n\t\t\t\t// less bad than duplication.\n\t\t\t\t} else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {\n\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t}\n\n\t\t\t// If this is a native event triggered above, everything is now in order\n\t\t\t// Fire an inner synthetic event with the original arguments\n\t\t\t} else if ( saved.length ) {\n\n\t\t\t\t// ...and capture the result\n\t\t\t\tdataPriv.set( this, type, {\n\t\t\t\t\tvalue: jQuery.event.trigger(\n\n\t\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t\t// Extend with the prototype to reset the above stopImmediatePropagation()\n\t\t\t\t\t\tjQuery.extend( saved[ 0 ], jQuery.Event.prototype ),\n\t\t\t\t\t\tsaved.slice( 1 ),\n\t\t\t\t\t\tthis\n\t\t\t\t\t)\n\t\t\t\t} );\n\n\t\t\t\t// Abort handling of the native event\n\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t}\n\t\t}\n\t} );\n}\n\njQuery.removeEvent = function( elem, type, handle ) {\n\n\t// This \"if\" is needed for plain objects\n\tif ( elem.removeEventListener ) {\n\t\telem.removeEventListener( type, handle );\n\t}\n};\n\njQuery.Event = function( src, props ) {\n\n\t// Allow instantiation without the 'new' keyword\n\tif ( !( this instanceof jQuery.Event ) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\n\t\t\t\t// Support: Android <=2.3 only\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t\t// Create target properties\n\t\t// Support: Safari <=6 - 7 only\n\t\t// Target should not be a text node (#504, #13143)\n\t\tthis.target = ( src.target && src.target.nodeType === 3 ) ?\n\t\t\tsrc.target.parentNode :\n\t\t\tsrc.target;\n\n\t\tthis.currentTarget = src.currentTarget;\n\t\tthis.relatedTarget = src.relatedTarget;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || Date.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tconstructor: jQuery.Event,\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\tisSimulated: false,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.preventDefault();\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopPropagation();\n\t\t}\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Includes all common event props including KeyEvent and MouseEvent specific props\njQuery.each( {\n\taltKey: true,\n\tbubbles: true,\n\tcancelable: true,\n\tchangedTouches: true,\n\tctrlKey: true,\n\tdetail: true,\n\teventPhase: true,\n\tmetaKey: true,\n\tpageX: true,\n\tpageY: true,\n\tshiftKey: true,\n\tview: true,\n\t\"char\": true,\n\tcode: true,\n\tcharCode: true,\n\tkey: true,\n\tkeyCode: true,\n\tbutton: true,\n\tbuttons: true,\n\tclientX: true,\n\tclientY: true,\n\toffsetX: true,\n\toffsetY: true,\n\tpointerId: true,\n\tpointerType: true,\n\tscreenX: true,\n\tscreenY: true,\n\ttargetTouches: true,\n\ttoElement: true,\n\ttouches: true,\n\n\twhich: function( event ) {\n\t\tvar button = event.button;\n\n\t\t// Add which for key events\n\t\tif ( event.which == null && rkeyEvent.test( event.type ) ) {\n\t\t\treturn event.charCode != null ? event.charCode : event.keyCode;\n\t\t}\n\n\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\tif ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) {\n\t\t\tif ( button & 1 ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\tif ( button & 2 ) {\n\t\t\t\treturn 3;\n\t\t\t}\n\n\t\t\tif ( button & 4 ) {\n\t\t\t\treturn 2;\n\t\t\t}\n\n\t\t\treturn 0;\n\t\t}\n\n\t\treturn event.which;\n\t}\n}, jQuery.event.addProp );\n\njQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( type, delegateType ) {\n\tjQuery.event.special[ type ] = {\n\n\t\t// Utilize native event if possible so blur/focus sequence is correct\n\t\tsetup: function() {\n\n\t\t\t// Claim the first handler\n\t\t\t// dataPriv.set( this, \"focus\", ... )\n\t\t\t// dataPriv.set( this, \"blur\", ... )\n\t\t\tleverageNative( this, type, expectSync );\n\n\t\t\t// Return false to allow normal processing in the caller\n\t\t\treturn false;\n\t\t},\n\t\ttrigger: function() {\n\n\t\t\t// Force setup before trigger\n\t\t\tleverageNative( this, type );\n\n\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\treturn true;\n\t\t},\n\n\t\tdelegateType: delegateType\n\t};\n} );\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\n// so that event delegation works in jQuery.\n// Do the same for pointerenter/pointerleave and pointerover/pointerout\n//\n// Support: Safari 7 only\n// Safari sends mouseenter too often; see:\n// https://bugs.chromium.org/p/chromium/issues/detail?id=470258\n// for the description of the bug (it existed in older Chrome versions as well).\njQuery.each( {\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mouseenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n} );\n\njQuery.fn.extend( {\n\n\ton: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn );\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ?\n\t\t\t\t\thandleObj.origType + \".\" + handleObj.namespace :\n\t\t\t\t\thandleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t} );\n\t}\n} );\n\n\nvar\n\n\t// Support: IE <=10 - 11, Edge 12 - 13 only\n\t// In IE/Edge using regex groups here causes severe slowdowns.\n\t// See https://connect.microsoft.com/IE/feedback/details/1736512/\n\trnoInnerhtml = /<script|<style|<link/i,\n\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g;\n\n// Prefer a tbody over its parent table for containing new rows\nfunction manipulationTarget( elem, content ) {\n\tif ( nodeName( elem, \"table\" ) &&\n\t\tnodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ) {\n\n\t\treturn jQuery( elem ).children( \"tbody\" )[ 0 ] || elem;\n\t}\n\n\treturn elem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = ( elem.getAttribute( \"type\" ) !== null ) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tif ( ( elem.type || \"\" ).slice( 0, 5 ) === \"true/\" ) {\n\t\telem.type = elem.type.slice( 5 );\n\t} else {\n\t\telem.removeAttribute( \"type\" );\n\t}\n\n\treturn elem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\tvar i, l, type, pdataOld, udataOld, udataCur, events;\n\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\t// 1. Copy private data: events, handlers, etc.\n\tif ( dataPriv.hasData( src ) ) {\n\t\tpdataOld = dataPriv.get( src );\n\t\tevents = pdataOld.events;\n\n\t\tif ( events ) {\n\t\t\tdataPriv.remove( dest, \"handle events\" );\n\n\t\t\tfor ( type in events ) {\n\t\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// 2. Copy user data\n\tif ( dataUser.hasData( src ) ) {\n\t\tudataOld = dataUser.access( src );\n\t\tudataCur = jQuery.extend( {}, udataOld );\n\n\t\tdataUser.set( dest, udataCur );\n\t}\n}\n\n// Fix IE bugs, see support tests\nfunction fixInput( src, dest ) {\n\tvar nodeName = dest.nodeName.toLowerCase();\n\n\t// Fails to persist the checked state of a cloned checkbox or radio button.\n\tif ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\tdest.checked = src.checked;\n\n\t// Fails to return the selected option to the default selected state when cloning options\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\nfunction domManip( collection, args, callback, ignored ) {\n\n\t// Flatten any nested arrays\n\targs = flat( args );\n\n\tvar fragment, first, scripts, hasScripts, node, doc,\n\t\ti = 0,\n\t\tl = collection.length,\n\t\tiNoClone = l - 1,\n\t\tvalue = args[ 0 ],\n\t\tvalueIsFunction = isFunction( value );\n\n\t// We can't cloneNode fragments that contain checked, in WebKit\n\tif ( valueIsFunction ||\n\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\treturn collection.each( function( index ) {\n\t\t\tvar self = collection.eq( index );\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\targs[ 0 ] = value.call( this, index, self.html() );\n\t\t\t}\n\t\t\tdomManip( self, args, callback, ignored );\n\t\t} );\n\t}\n\n\tif ( l ) {\n\t\tfragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );\n\t\tfirst = fragment.firstChild;\n\n\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\tfragment = first;\n\t\t}\n\n\t\t// Require either new content or an interest in ignored elements to invoke the callback\n\t\tif ( first || ignored ) {\n\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\thasScripts = scripts.length;\n\n\t\t\t// Use the original fragment for the last item\n\t\t\t// instead of the first because it can end up\n\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tnode = fragment;\n\n\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\tif ( hasScripts ) {\n\n\t\t\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcallback.call( collection[ i ], node, i );\n\t\t\t}\n\n\t\t\tif ( hasScripts ) {\n\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t// Reenable scripts\n\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t!dataPriv.access( node, \"globalEval\" ) &&\n\t\t\t\t\t\tjQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\tif ( node.src && ( node.type || \"\" ).toLowerCase()  !== \"module\" ) {\n\n\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\tif ( jQuery._evalUrl && !node.noModule ) {\n\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src, {\n\t\t\t\t\t\t\t\t\tnonce: node.nonce || node.getAttribute( \"nonce\" )\n\t\t\t\t\t\t\t\t}, doc );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tDOMEval( node.textContent.replace( rcleanScript, \"\" ), node, doc );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn collection;\n}\n\nfunction remove( elem, selector, keepData ) {\n\tvar node,\n\t\tnodes = selector ? jQuery.filter( selector, elem ) : elem,\n\t\ti = 0;\n\n\tfor ( ; ( node = nodes[ i ] ) != null; i++ ) {\n\t\tif ( !keepData && node.nodeType === 1 ) {\n\t\t\tjQuery.cleanData( getAll( node ) );\n\t\t}\n\n\t\tif ( node.parentNode ) {\n\t\t\tif ( keepData && isAttached( node ) ) {\n\t\t\t\tsetGlobalEval( getAll( node, \"script\" ) );\n\t\t\t}\n\t\t\tnode.parentNode.removeChild( node );\n\t\t}\n\t}\n\n\treturn elem;\n}\n\njQuery.extend( {\n\thtmlPrefilter: function( html ) {\n\t\treturn html;\n\t},\n\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar i, l, srcElements, destElements,\n\t\t\tclone = elem.cloneNode( true ),\n\t\t\tinPage = isAttached( elem );\n\n\t\t// Fix IE cloning issues\n\t\tif ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&\n\t\t\t\t!jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\tfixInput( srcElements[ i ], destElements[ i ] );\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\t\tcloneCopyEvent( srcElements[ i ], destElements[ i ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tcleanData: function( elems ) {\n\t\tvar data, elem, type,\n\t\t\tspecial = jQuery.event.special,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {\n\t\t\tif ( acceptData( elem ) ) {\n\t\t\t\tif ( ( data = elem[ dataPriv.expando ] ) ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataPriv.expando ] = undefined;\n\t\t\t\t}\n\t\t\t\tif ( elem[ dataUser.expando ] ) {\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataUser.expando ] = undefined;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n} );\n\njQuery.fn.extend( {\n\tdetach: function( selector ) {\n\t\treturn remove( this, selector, true );\n\t},\n\n\tremove: function( selector ) {\n\t\treturn remove( this, selector );\n\t},\n\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().each( function() {\n\t\t\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\t\t\tthis.textContent = value;\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t} );\n\t},\n\n\tprepend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t} );\n\t},\n\n\tbefore: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t} );\n\t},\n\n\tafter: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t} );\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = this[ i ] ) != null; i++ ) {\n\t\t\tif ( elem.nodeType === 1 ) {\n\n\t\t\t\t// Prevent memory leaks\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\n\t\t\t\t// Remove any remaining nodes\n\t\t\t\telem.textContent = \"\";\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t} );\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined && elem.nodeType === 1 ) {\n\t\t\t\treturn elem.innerHTML;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t!wrapMap[ ( rtagName.exec( value ) || [ \"\", \"\" ] )[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = jQuery.htmlPrefilter( value );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\t\telem = this[ i ] || {};\n\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch ( e ) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar ignored = [];\n\n\t\t// Make the changes, replacing each non-ignored context element with the new content\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tvar parent = this.parentNode;\n\n\t\t\tif ( jQuery.inArray( this, ignored ) < 0 ) {\n\t\t\t\tjQuery.cleanData( getAll( this ) );\n\t\t\t\tif ( parent ) {\n\t\t\t\t\tparent.replaceChild( elem, this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Force callback invocation\n\t\t}, ignored );\n\t}\n} );\n\njQuery.each( {\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1,\n\t\t\ti = 0;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone( true );\n\t\t\tjQuery( insert[ i ] )[ original ]( elems );\n\n\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t// .get() because push.apply(_, arraylike) throws on ancient WebKit\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n} );\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\nvar getStyles = function( elem ) {\n\n\t\t// Support: IE <=11 only, Firefox <=30 (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tvar view = elem.ownerDocument.defaultView;\n\n\t\tif ( !view || !view.opener ) {\n\t\t\tview = window;\n\t\t}\n\n\t\treturn view.getComputedStyle( elem );\n\t};\n\nvar swap = function( elem, options, callback ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.call( elem );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar rboxStyle = new RegExp( cssExpand.join( \"|\" ), \"i\" );\n\n\n\n( function() {\n\n\t// Executing both pixelPosition & boxSizingReliable tests require only one layout\n\t// so they're executed at the same time to save the second computation.\n\tfunction computeStyleTests() {\n\n\t\t// This is a singleton, we need to execute it only once\n\t\tif ( !div ) {\n\t\t\treturn;\n\t\t}\n\n\t\tcontainer.style.cssText = \"position:absolute;left:-11111px;width:60px;\" +\n\t\t\t\"margin-top:1px;padding:0;border:0\";\n\t\tdiv.style.cssText =\n\t\t\t\"position:relative;display:block;box-sizing:border-box;overflow:scroll;\" +\n\t\t\t\"margin:auto;border:1px;padding:1px;\" +\n\t\t\t\"width:60%;top:1%\";\n\t\tdocumentElement.appendChild( container ).appendChild( div );\n\n\t\tvar divStyle = window.getComputedStyle( div );\n\t\tpixelPositionVal = divStyle.top !== \"1%\";\n\n\t\t// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44\n\t\treliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;\n\n\t\t// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3\n\t\t// Some styles come back with percentage values, even though they shouldn't\n\t\tdiv.style.right = \"60%\";\n\t\tpixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;\n\n\t\t// Support: IE 9 - 11 only\n\t\t// Detect misreporting of content dimensions for box-sizing:border-box elements\n\t\tboxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;\n\n\t\t// Support: IE 9 only\n\t\t// Detect overflow:scroll screwiness (gh-3699)\n\t\t// Support: Chrome <=64\n\t\t// Don't get tricked when zoom affects offsetWidth (gh-4029)\n\t\tdiv.style.position = \"absolute\";\n\t\tscrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12;\n\n\t\tdocumentElement.removeChild( container );\n\n\t\t// Nullify the div so it wouldn't be stored in the memory and\n\t\t// it will also be a sign that checks already performed\n\t\tdiv = null;\n\t}\n\n\tfunction roundPixelMeasures( measure ) {\n\t\treturn Math.round( parseFloat( measure ) );\n\t}\n\n\tvar pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,\n\t\treliableTrDimensionsVal, reliableMarginLeftVal,\n\t\tcontainer = document.createElement( \"div\" ),\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !div.style ) {\n\t\treturn;\n\t}\n\n\t// Support: IE <=9 - 11 only\n\t// Style of cloned element affects source element cloned (#8908)\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\tjQuery.extend( support, {\n\t\tboxSizingReliable: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\t\tpixelBoxStyles: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelBoxStylesVal;\n\t\t},\n\t\tpixelPosition: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelPositionVal;\n\t\t},\n\t\treliableMarginLeft: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn reliableMarginLeftVal;\n\t\t},\n\t\tscrollboxSize: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn scrollboxSizeVal;\n\t\t},\n\n\t\t// Support: IE 9 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Behavior in IE 9 is more subtle than in newer versions & it passes\n\t\t// some versions of this test; make sure not to make it pass there!\n\t\treliableTrDimensions: function() {\n\t\t\tvar table, tr, trChild, trStyle;\n\t\t\tif ( reliableTrDimensionsVal == null ) {\n\t\t\t\ttable = document.createElement( \"table\" );\n\t\t\t\ttr = document.createElement( \"tr\" );\n\t\t\t\ttrChild = document.createElement( \"div\" );\n\n\t\t\t\ttable.style.cssText = \"position:absolute;left:-11111px\";\n\t\t\t\ttr.style.height = \"1px\";\n\t\t\t\ttrChild.style.height = \"9px\";\n\n\t\t\t\tdocumentElement\n\t\t\t\t\t.appendChild( table )\n\t\t\t\t\t.appendChild( tr )\n\t\t\t\t\t.appendChild( trChild );\n\n\t\t\t\ttrStyle = window.getComputedStyle( tr );\n\t\t\t\treliableTrDimensionsVal = parseInt( trStyle.height ) > 3;\n\n\t\t\t\tdocumentElement.removeChild( table );\n\t\t\t}\n\t\t\treturn reliableTrDimensionsVal;\n\t\t}\n\t} );\n} )();\n\n\nfunction curCSS( elem, name, computed ) {\n\tvar width, minWidth, maxWidth, ret,\n\n\t\t// Support: Firefox 51+\n\t\t// Retrieving style before computed somehow\n\t\t// fixes an issue with getting wrong values\n\t\t// on detached elements\n\t\tstyle = elem.style;\n\n\tcomputed = computed || getStyles( elem );\n\n\t// getPropertyValue is needed for:\n\t//   .css('filter') (IE 9 only, #12537)\n\t//   .css('--customProperty) (#3144)\n\tif ( computed ) {\n\t\tret = computed.getPropertyValue( name ) || computed[ name ];\n\n\t\tif ( ret === \"\" && !isAttached( elem ) ) {\n\t\t\tret = jQuery.style( elem, name );\n\t\t}\n\n\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t// Android Browser returns percentage for some values,\n\t\t// but width seems to be reliably pixels.\n\t\t// This is against the CSSOM draft spec:\n\t\t// https://drafts.csswg.org/cssom/#resolved-values\n\t\tif ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\twidth = style.width;\n\t\t\tminWidth = style.minWidth;\n\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\tret = computed.width;\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.width = width;\n\t\t\tstyle.minWidth = minWidth;\n\t\t\tstyle.maxWidth = maxWidth;\n\t\t}\n\t}\n\n\treturn ret !== undefined ?\n\n\t\t// Support: IE <=9 - 11 only\n\t\t// IE returns zIndex value as an integer.\n\t\tret + \"\" :\n\t\tret;\n}\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tif ( conditionFn() ) {\n\n\t\t\t\t// Hook not needed (or it's not possible to use it due\n\t\t\t\t// to missing dependency), remove it.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\t\t\treturn ( this.get = hookFn ).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\nvar cssPrefixes = [ \"Webkit\", \"Moz\", \"ms\" ],\n\temptyStyle = document.createElement( \"div\" ).style,\n\tvendorProps = {};\n\n// Return a vendor-prefixed property or undefined\nfunction vendorPropName( name ) {\n\n\t// Check for vendor prefixed names\n\tvar capName = name[ 0 ].toUpperCase() + name.slice( 1 ),\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in emptyStyle ) {\n\t\t\treturn name;\n\t\t}\n\t}\n}\n\n// Return a potentially-mapped jQuery.cssProps or vendor prefixed property\nfunction finalPropName( name ) {\n\tvar final = jQuery.cssProps[ name ] || vendorProps[ name ];\n\n\tif ( final ) {\n\t\treturn final;\n\t}\n\tif ( name in emptyStyle ) {\n\t\treturn name;\n\t}\n\treturn vendorProps[ name ] = vendorPropName( name ) || name;\n}\n\n\nvar\n\n\t// Swappable if display is none or starts with table\n\t// except \"table\", \"table-cell\", or \"table-caption\"\n\t// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trcustomProp = /^--/,\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t};\n\nfunction setPositiveNumber( _elem, value, subtract ) {\n\n\t// Any relative (+/-) values have already been\n\t// normalized at this point\n\tvar matches = rcssNum.exec( value );\n\treturn matches ?\n\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {\n\tvar i = dimension === \"width\" ? 1 : 0,\n\t\textra = 0,\n\t\tdelta = 0;\n\n\t// Adjustment may not be necessary\n\tif ( box === ( isBorderBox ? \"border\" : \"content\" ) ) {\n\t\treturn 0;\n\t}\n\n\tfor ( ; i < 4; i += 2 ) {\n\n\t\t// Both box models exclude margin\n\t\tif ( box === \"margin\" ) {\n\t\t\tdelta += jQuery.css( elem, box + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\t// If we get here with a content-box, we're seeking \"padding\" or \"border\" or \"margin\"\n\t\tif ( !isBorderBox ) {\n\n\t\t\t// Add padding\n\t\t\tdelta += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// For \"border\" or \"margin\", add border\n\t\t\tif ( box !== \"padding\" ) {\n\t\t\t\tdelta += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\n\t\t\t// But still keep track of it otherwise\n\t\t\t} else {\n\t\t\t\textra += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\n\t\t// If we get here with a border-box (content + padding + border), we're seeking \"content\" or\n\t\t// \"padding\" or \"margin\"\n\t\t} else {\n\n\t\t\t// For \"content\", subtract padding\n\t\t\tif ( box === \"content\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// For \"content\" or \"padding\", subtract border\n\t\t\tif ( box !== \"margin\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Account for positive content-box scroll gutter when requested by providing computedVal\n\tif ( !isBorderBox && computedVal >= 0 ) {\n\n\t\t// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border\n\t\t// Assuming integer scroll gutter, subtract the rest and round down\n\t\tdelta += Math.max( 0, Math.ceil(\n\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\tcomputedVal -\n\t\t\tdelta -\n\t\t\textra -\n\t\t\t0.5\n\n\t\t// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter\n\t\t// Use an explicit zero to avoid NaN (gh-3964)\n\t\t) ) || 0;\n\t}\n\n\treturn delta;\n}\n\nfunction getWidthOrHeight( elem, dimension, extra ) {\n\n\t// Start with computed style\n\tvar styles = getStyles( elem ),\n\n\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).\n\t\t// Fake content-box until we know it's needed to know the true value.\n\t\tboxSizingNeeded = !support.boxSizingReliable() || extra,\n\t\tisBorderBox = boxSizingNeeded &&\n\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\tvalueIsBorderBox = isBorderBox,\n\n\t\tval = curCSS( elem, dimension, styles ),\n\t\toffsetProp = \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 );\n\n\t// Support: Firefox <=54\n\t// Return a confounding non-pixel value or feign ignorance, as appropriate.\n\tif ( rnumnonpx.test( val ) ) {\n\t\tif ( !extra ) {\n\t\t\treturn val;\n\t\t}\n\t\tval = \"auto\";\n\t}\n\n\n\t// Support: IE 9 - 11 only\n\t// Use offsetWidth/offsetHeight for when box sizing is unreliable.\n\t// In those cases, the computed value can be trusted to be border-box.\n\tif ( ( !support.boxSizingReliable() && isBorderBox ||\n\n\t\t// Support: IE 10 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Interestingly, in some cases IE 9 doesn't suffer from this issue.\n\t\t!support.reliableTrDimensions() && nodeName( elem, \"tr\" ) ||\n\n\t\t// Fall back to offsetWidth/offsetHeight when value is \"auto\"\n\t\t// This happens for inline elements with no explicit setting (gh-3571)\n\t\tval === \"auto\" ||\n\n\t\t// Support: Android <=4.1 - 4.3 only\n\t\t// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)\n\t\t!parseFloat( val ) && jQuery.css( elem, \"display\", false, styles ) === \"inline\" ) &&\n\n\t\t// Make sure the element is visible & connected\n\t\telem.getClientRects().length ) {\n\n\t\tisBorderBox = jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t\t// Where available, offsetWidth/offsetHeight approximate border box dimensions.\n\t\t// Where not available (e.g., SVG), assume unreliable box-sizing and interpret the\n\t\t// retrieved value as a content box dimension.\n\t\tvalueIsBorderBox = offsetProp in elem;\n\t\tif ( valueIsBorderBox ) {\n\t\t\tval = elem[ offsetProp ];\n\t\t}\n\t}\n\n\t// Normalize \"\" and auto\n\tval = parseFloat( val ) || 0;\n\n\t// Adjust for the element's box model\n\treturn ( val +\n\t\tboxModelAdjustment(\n\t\t\telem,\n\t\t\tdimension,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles,\n\n\t\t\t// Provide the current computed size to request scroll gutter calculation (gh-3589)\n\t\t\tval\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend( {\n\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"animationIterationCount\": true,\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"gridArea\": true,\n\t\t\"gridColumn\": true,\n\t\t\"gridColumnEnd\": true,\n\t\t\"gridColumnStart\": true,\n\t\t\"gridRow\": true,\n\t\t\"gridRowEnd\": true,\n\t\t\"gridRowStart\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name ),\n\t\t\tstyle = elem.style;\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to query the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Gets hook for the prefixed version, then unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// Convert \"+=\" or \"-=\" to relative numbers (#7345)\n\t\t\tif ( type === \"string\" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {\n\t\t\t\tvalue = adjustCSS( elem, name, ret );\n\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set (#7116)\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add the unit (except for certain CSS properties)\n\t\t\t// The isCustomProp check can be removed in jQuery 4.0 when we only auto-append\n\t\t\t// \"px\" to a few hardcoded values.\n\t\t\tif ( type === \"number\" && !isCustomProp ) {\n\t\t\t\tvalue += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? \"\" : \"px\" );\n\t\t\t}\n\n\t\t\t// background-* props affect original clone's values\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf( \"background\" ) === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !( \"set\" in hooks ) ||\n\t\t\t\t( value = hooks.set( elem, value, extra ) ) !== undefined ) {\n\n\t\t\t\tif ( isCustomProp ) {\n\t\t\t\t\tstyle.setProperty( name, value );\n\t\t\t\t} else {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else {\n\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks &&\n\t\t\t\t( ret = hooks.get( elem, false, extra ) ) !== undefined ) {\n\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar val, num, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name );\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to modify the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Try prefixed name followed by the unprefixed name\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t// Convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Make numeric if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || isFinite( num ) ? num || 0 : val;\n\t\t}\n\n\t\treturn val;\n\t}\n} );\n\njQuery.each( [ \"height\", \"width\" ], function( _i, dimension ) {\n\tjQuery.cssHooks[ dimension ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\n\t\t\t\t// Certain elements can have dimension info if we invisibly show them\n\t\t\t\t// but it must have a current display style that would benefit\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) &&\n\n\t\t\t\t\t// Support: Safari 8+\n\t\t\t\t\t// Table columns in Safari have non-zero offsetWidth & zero\n\t\t\t\t\t// getBoundingClientRect().width unless display is changed.\n\t\t\t\t\t// Support: IE <=11 only\n\t\t\t\t\t// Running getBoundingClientRect on a disconnected node\n\t\t\t\t\t// in IE throws an error.\n\t\t\t\t\t( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?\n\t\t\t\t\t\tswap( elem, cssShow, function() {\n\t\t\t\t\t\t\treturn getWidthOrHeight( elem, dimension, extra );\n\t\t\t\t\t\t} ) :\n\t\t\t\t\t\tgetWidthOrHeight( elem, dimension, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar matches,\n\t\t\t\tstyles = getStyles( elem ),\n\n\t\t\t\t// Only read styles.position if the test has a chance to fail\n\t\t\t\t// to avoid forcing a reflow.\n\t\t\t\tscrollboxSizeBuggy = !support.scrollboxSize() &&\n\t\t\t\t\tstyles.position === \"absolute\",\n\n\t\t\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)\n\t\t\t\tboxSizingNeeded = scrollboxSizeBuggy || extra,\n\t\t\t\tisBorderBox = boxSizingNeeded &&\n\t\t\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\tsubtract = extra ?\n\t\t\t\t\tboxModelAdjustment(\n\t\t\t\t\t\telem,\n\t\t\t\t\t\tdimension,\n\t\t\t\t\t\textra,\n\t\t\t\t\t\tisBorderBox,\n\t\t\t\t\t\tstyles\n\t\t\t\t\t) :\n\t\t\t\t\t0;\n\n\t\t\t// Account for unreliable border-box dimensions by comparing offset* to computed and\n\t\t\t// faking a content-box to get border and padding (gh-3699)\n\t\t\tif ( isBorderBox && scrollboxSizeBuggy ) {\n\t\t\t\tsubtract -= Math.ceil(\n\t\t\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\t\t\tparseFloat( styles[ dimension ] ) -\n\t\t\t\t\tboxModelAdjustment( elem, dimension, \"border\", false, styles ) -\n\t\t\t\t\t0.5\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Convert to pixels if value adjustment is needed\n\t\t\tif ( subtract && ( matches = rcssNum.exec( value ) ) &&\n\t\t\t\t( matches[ 3 ] || \"px\" ) !== \"px\" ) {\n\n\t\t\t\telem.style[ dimension ] = value;\n\t\t\t\tvalue = jQuery.css( elem, dimension );\n\t\t\t}\n\n\t\t\treturn setPositiveNumber( elem, value, subtract );\n\t\t}\n\t};\n} );\n\njQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn ( parseFloat( curCSS( elem, \"marginLeft\" ) ) ||\n\t\t\t\telem.getBoundingClientRect().left -\n\t\t\t\t\tswap( elem, { marginLeft: 0 }, function() {\n\t\t\t\t\t\treturn elem.getBoundingClientRect().left;\n\t\t\t\t\t} )\n\t\t\t\t) + \"px\";\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each( {\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// Assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split( \" \" ) : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( prefix !== \"margin\" ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n} );\n\njQuery.fn.extend( {\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( Array.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t}\n} );\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || jQuery.easing._default;\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\t// Use a property on the element directly when it is not a DOM element,\n\t\t\t// or when there is no matching style property that exists.\n\t\t\tif ( tween.elem.nodeType !== 1 ||\n\t\t\t\ttween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// Passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails.\n\t\t\t// Simple values such as \"10px\" are parsed to Float;\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as-is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\n\t\t\t// Use step hook for back compat.\n\t\t\t// Use cssHook if its there.\n\t\t\t// Use .style if available and use plain properties where available.\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.nodeType === 1 && (\n\t\t\t\t\tjQuery.cssHooks[ tween.prop ] ||\n\t\t\t\t\ttween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9 only\n// Panic based approach to setting things on disconnected nodes\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t},\n\t_default: \"swing\"\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, inProgress,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trrun = /queueHooks$/;\n\nfunction schedule() {\n\tif ( inProgress ) {\n\t\tif ( document.hidden === false && window.requestAnimationFrame ) {\n\t\t\twindow.requestAnimationFrame( schedule );\n\t\t} else {\n\t\t\twindow.setTimeout( schedule, jQuery.fx.interval );\n\t\t}\n\n\t\tjQuery.fx.tick();\n\t}\n}\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\twindow.setTimeout( function() {\n\t\tfxNow = undefined;\n\t} );\n\treturn ( fxNow = Date.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\ti = 0,\n\t\tattrs = { height: type };\n\n\t// If we include width, step value is 1 to do all cssExpand values,\n\t// otherwise step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {\n\n\t\t\t// We're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\tvar prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,\n\t\tisBox = \"width\" in props || \"height\" in props,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHiddenWithinTree( elem ),\n\t\tdataShow = dataPriv.get( elem, \"fxshow\" );\n\n\t// Queue-skipping animations hijack the fx hooks\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always( function() {\n\n\t\t\t// Ensure the complete handler is called before this completes\n\t\t\tanim.always( function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\t}\n\n\t// Detect show/hide animations\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.test( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// Pretend to be hidden if this is a \"show\" and\n\t\t\t\t// there is still data from a stopped show/hide\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\n\t\t\t\t// Ignore all other no-op show/hide data\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\t\t}\n\t}\n\n\t// Bail out if this is a no-op like .hide().hide()\n\tpropTween = !jQuery.isEmptyObject( props );\n\tif ( !propTween && jQuery.isEmptyObject( orig ) ) {\n\t\treturn;\n\t}\n\n\t// Restrict \"overflow\" and \"display\" styles during box animations\n\tif ( isBox && elem.nodeType === 1 ) {\n\n\t\t// Support: IE <=9 - 11, Edge 12 - 15\n\t\t// Record all 3 overflow attributes because IE does not infer the shorthand\n\t\t// from identically-valued overflowX and overflowY and Edge just mirrors\n\t\t// the overflowX value there.\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Identify a display type, preferring old show/hide data over the CSS cascade\n\t\trestoreDisplay = dataShow && dataShow.display;\n\t\tif ( restoreDisplay == null ) {\n\t\t\trestoreDisplay = dataPriv.get( elem, \"display\" );\n\t\t}\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\tif ( display === \"none\" ) {\n\t\t\tif ( restoreDisplay ) {\n\t\t\t\tdisplay = restoreDisplay;\n\t\t\t} else {\n\n\t\t\t\t// Get nonempty value(s) by temporarily forcing visibility\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t\trestoreDisplay = elem.style.display || restoreDisplay;\n\t\t\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\t\t\tshowHide( [ elem ] );\n\t\t\t}\n\t\t}\n\n\t\t// Animate inline elements as inline-block\n\t\tif ( display === \"inline\" || display === \"inline-block\" && restoreDisplay != null ) {\n\t\t\tif ( jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t\t// Restore the original display value at the end of pure show/hide animations\n\t\t\t\tif ( !propTween ) {\n\t\t\t\t\tanim.done( function() {\n\t\t\t\t\t\tstyle.display = restoreDisplay;\n\t\t\t\t\t} );\n\t\t\t\t\tif ( restoreDisplay == null ) {\n\t\t\t\t\t\tdisplay = style.display;\n\t\t\t\t\t\trestoreDisplay = display === \"none\" ? \"\" : display;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tanim.always( function() {\n\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t} );\n\t}\n\n\t// Implement show/hide animations\n\tpropTween = false;\n\tfor ( prop in orig ) {\n\n\t\t// General show/hide setup for this element animation\n\t\tif ( !propTween ) {\n\t\t\tif ( dataShow ) {\n\t\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\t\thidden = dataShow.hidden;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdataShow = dataPriv.access( elem, \"fxshow\", { display: restoreDisplay } );\n\t\t\t}\n\n\t\t\t// Store hidden/visible for toggle so `.stop().toggle()` \"reverses\"\n\t\t\tif ( toggle ) {\n\t\t\t\tdataShow.hidden = !hidden;\n\t\t\t}\n\n\t\t\t// Show elements before animating them\n\t\t\tif ( hidden ) {\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t}\n\n\t\t\t/* eslint-disable no-loop-func */\n\n\t\t\tanim.done( function() {\n\n\t\t\t/* eslint-enable no-loop-func */\n\n\t\t\t\t// The final step of a \"hide\" animation is actually hiding the element\n\t\t\t\tif ( !hidden ) {\n\t\t\t\t\tshowHide( [ elem ] );\n\t\t\t\t}\n\t\t\t\tdataPriv.remove( elem, \"fxshow\" );\n\t\t\t\tfor ( prop in orig ) {\n\t\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Per-property setup\n\t\tpropTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\t\tif ( !( prop in dataShow ) ) {\n\t\t\tdataShow[ prop ] = propTween.start;\n\t\t\tif ( hidden ) {\n\t\t\t\tpropTween.end = propTween.start;\n\t\t\t\tpropTween.start = 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( Array.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// Not quite $.extend, this won't overwrite existing keys.\n\t\t\t// Reusing 'index' because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = Animation.prefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\n\t\t\t// Don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t} ),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\n\t\t\t\t// Support: Android 2.3 only\n\t\t\t\t// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ] );\n\n\t\t\t// If there's more to do, yield\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t}\n\n\t\t\t// If this was an empty animation, synthesize a final progress notification\n\t\t\tif ( !length ) {\n\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t}\n\n\t\t\t// Resolve the animation and report its conclusion\n\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\treturn false;\n\t\t},\n\t\tanimation = deferred.promise( {\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, {\n\t\t\t\tspecialEasing: {},\n\t\t\t\teasing: jQuery.easing._default\n\t\t\t}, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\n\t\t\t\t\t// If we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// Resolve when we played the last frame; otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t} ),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length; index++ ) {\n\t\tresult = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\tif ( isFunction( result.stop ) ) {\n\t\t\t\tjQuery._queueHooks( animation.elem, animation.opts.queue ).stop =\n\t\t\t\t\tresult.stop.bind( result );\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\t// Attach callbacks from options\n\tanimation\n\t\t.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t} )\n\t);\n\n\treturn animation;\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\n\ttweeners: {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value );\n\t\t\tadjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );\n\t\t\treturn tween;\n\t\t} ]\n\t},\n\n\ttweener: function( props, callback ) {\n\t\tif ( isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.match( rnothtmlwhite );\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\tAnimation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];\n\t\t\tAnimation.tweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilters: [ defaultPrefilter ],\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tAnimation.prefilters.unshift( callback );\n\t\t} else {\n\t\t\tAnimation.prefilters.push( callback );\n\t\t}\n\t}\n} );\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tisFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !isFunction( easing ) && easing\n\t};\n\n\t// Go to the end state if fx are off\n\tif ( jQuery.fx.off ) {\n\t\topt.duration = 0;\n\n\t} else {\n\t\tif ( typeof opt.duration !== \"number\" ) {\n\t\t\tif ( opt.duration in jQuery.fx.speeds ) {\n\t\t\t\topt.duration = jQuery.fx.speeds[ opt.duration ];\n\n\t\t\t} else {\n\t\t\t\topt.duration = jQuery.fx.speeds._default;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend( {\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// Show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHiddenWithinTree ).css( \"opacity\", 0 ).show()\n\n\t\t\t// Animate to the value specified\n\t\t\t.end().animate( { opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || dataPriv.get( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = dataPriv.get( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this &&\n\t\t\t\t\t( type == null || timers[ index ].queue === type ) ) {\n\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Start the next in the queue if the last step wasn't forced.\n\t\t\t// Timers currently will call their complete callbacks, which\n\t\t\t// will dequeue but only if they were gotoEnd.\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t} );\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tvar index,\n\t\t\t\tdata = dataPriv.get( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// Enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// Empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// Look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t} );\n\t}\n} );\n\njQuery.each( [ \"toggle\", \"show\", \"hide\" ], function( _i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n} );\n\n// Generate shortcuts for custom animations\njQuery.each( {\n\tslideDown: genFx( \"show\" ),\n\tslideUp: genFx( \"hide\" ),\n\tslideToggle: genFx( \"toggle\" ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n} );\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ti = 0,\n\t\ttimers = jQuery.timers;\n\n\tfxNow = Date.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\n\t\t// Run the timer and safely remove it when done (allowing for external removal)\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tjQuery.fx.start();\n};\n\njQuery.fx.interval = 13;\njQuery.fx.start = function() {\n\tif ( inProgress ) {\n\t\treturn;\n\t}\n\n\tinProgress = true;\n\tschedule();\n};\n\njQuery.fx.stop = function() {\n\tinProgress = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = window.setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\twindow.clearTimeout( timeout );\n\t\t};\n\t} );\n};\n\n\n( function() {\n\tvar input = document.createElement( \"input\" ),\n\t\tselect = document.createElement( \"select\" ),\n\t\topt = select.appendChild( document.createElement( \"option\" ) );\n\n\tinput.type = \"checkbox\";\n\n\t// Support: Android <=4.3 only\n\t// Default value for a checkbox should be \"on\"\n\tsupport.checkOn = input.value !== \"\";\n\n\t// Support: IE <=11 only\n\t// Must access selectedIndex to make default options select\n\tsupport.optSelected = opt.selected;\n\n\t// Support: IE <=11 only\n\t// An input loses its value after becoming a radio\n\tinput = document.createElement( \"input\" );\n\tinput.value = \"t\";\n\tinput.type = \"radio\";\n\tsupport.radioValue = input.value === \"t\";\n} )();\n\n\nvar boolHook,\n\tattrHandle = jQuery.expr.attrHandle;\n\njQuery.fn.extend( {\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tattr: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set attributes on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// Attribute hooks are determined by the lowercase version\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\thooks = jQuery.attrHooks[ name.toLowerCase() ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\treturn value;\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tret = jQuery.find.attr( elem, name );\n\n\t\t// Non-existent attributes return null, we normalize to undefined\n\t\treturn ret == null ? undefined : ret;\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" &&\n\t\t\t\t\tnodeName( elem, \"input\" ) ) {\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name,\n\t\t\ti = 0,\n\n\t\t\t// Attribute names can contain non-HTML whitespace characters\n\t\t\t// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n\t\t\tattrNames = value && value.match( rnothtmlwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( ( name = attrNames[ i++ ] ) ) {\n\t\t\t\telem.removeAttribute( name );\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Hooks for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else {\n\t\t\telem.setAttribute( name, name );\n\t\t}\n\t\treturn name;\n\t}\n};\n\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( _i, name ) {\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = function( elem, name, isXML ) {\n\t\tvar ret, handle,\n\t\t\tlowercaseName = name.toLowerCase();\n\n\t\tif ( !isXML ) {\n\n\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\thandle = attrHandle[ lowercaseName ];\n\t\t\tattrHandle[ lowercaseName ] = ret;\n\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\tlowercaseName :\n\t\t\t\tnull;\n\t\t\tattrHandle[ lowercaseName ] = handle;\n\t\t}\n\t\treturn ret;\n\t};\n} );\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend( {\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tdelete this[ jQuery.propFix[ name ] || name ];\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set properties on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\treturn ( elem[ name ] = value );\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\treturn elem[ name ];\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\t// Support: IE <=9 - 11 only\n\t\t\t\t// elem.tabIndex doesn't always return the\n\t\t\t\t// correct value when it hasn't been explicitly set\n\t\t\t\t// https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\tif ( tabindex ) {\n\t\t\t\t\treturn parseInt( tabindex, 10 );\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\trfocusable.test( elem.nodeName ) ||\n\t\t\t\t\trclickable.test( elem.nodeName ) &&\n\t\t\t\t\telem.href\n\t\t\t\t) {\n\t\t\t\t\treturn 0;\n\t\t\t\t}\n\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t}\n} );\n\n// Support: IE <=11 only\n// Accessing the selectedIndex property\n// forces the browser to respect setting selected\n// on the option\n// The getter ensures a default option is selected\n// when in an optgroup\n// eslint rule \"no-unused-expressions\" is disabled for this code\n// since it considers such accessions noop\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent && parent.parentNode ) {\n\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\t\tset: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\njQuery.each( [\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n} );\n\n\n\n\n\t// Strip and collapse whitespace according to HTML spec\n\t// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace\n\tfunction stripAndCollapse( value ) {\n\t\tvar tokens = value.match( rnothtmlwhite ) || [];\n\t\treturn tokens.join( \" \" );\n\t}\n\n\nfunction getClass( elem ) {\n\treturn elem.getAttribute && elem.getAttribute( \"class\" ) || \"\";\n}\n\nfunction classesToArray( value ) {\n\tif ( Array.isArray( value ) ) {\n\t\treturn value;\n\t}\n\tif ( typeof value === \"string\" ) {\n\t\treturn value.match( rnothtmlwhite ) || [];\n\t}\n\treturn [];\n}\n\njQuery.fn.extend( {\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( !arguments.length ) {\n\t\t\treturn this.attr( \"class\", \"\" );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) > -1 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value,\n\t\t\tisValidValue = type === \"string\" || Array.isArray( value );\n\n\t\tif ( typeof stateVal === \"boolean\" && isValidValue ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).toggleClass(\n\t\t\t\t\tvalue.call( this, i, getClass( this ), stateVal ),\n\t\t\t\t\tstateVal\n\t\t\t\t);\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar className, i, self, classNames;\n\n\t\t\tif ( isValidValue ) {\n\n\t\t\t\t// Toggle individual class names\n\t\t\t\ti = 0;\n\t\t\t\tself = jQuery( this );\n\t\t\t\tclassNames = classesToArray( value );\n\n\t\t\t\twhile ( ( className = classNames[ i++ ] ) ) {\n\n\t\t\t\t\t// Check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( value === undefined || type === \"boolean\" ) {\n\t\t\t\tclassName = getClass( this );\n\t\t\t\tif ( className ) {\n\n\t\t\t\t\t// Store className if set\n\t\t\t\t\tdataPriv.set( this, \"__className__\", className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed `false`,\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tif ( this.setAttribute ) {\n\t\t\t\t\tthis.setAttribute( \"class\",\n\t\t\t\t\t\tclassName || value === false ?\n\t\t\t\t\t\t\"\" :\n\t\t\t\t\t\tdataPriv.get( this, \"__className__\" ) || \"\"\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className, elem,\n\t\t\ti = 0;\n\n\t\tclassName = \" \" + selector + \" \";\n\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\tif ( elem.nodeType === 1 &&\n\t\t\t\t( \" \" + stripAndCollapse( getClass( elem ) ) + \" \" ).indexOf( className ) > -1 ) {\n\t\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n} );\n\n\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend( {\n\tval: function( value ) {\n\t\tvar hooks, ret, valueIsFunction,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] ||\n\t\t\t\t\tjQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks &&\n\t\t\t\t\t\"get\" in hooks &&\n\t\t\t\t\t( ret = hooks.get( elem, \"value\" ) ) !== undefined\n\t\t\t\t) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\t// Handle most common string cases\n\t\t\t\tif ( typeof ret === \"string\" ) {\n\t\t\t\t\treturn ret.replace( rreturn, \"\" );\n\t\t\t\t}\n\n\t\t\t\t// Handle cases where value is null/undef or number\n\t\t\t\treturn ret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tvalueIsFunction = isFunction( value );\n\n\t\treturn this.each( function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\n\t\t\t} else if ( Array.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !( \"set\" in hooks ) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\n\t\t\t\t\t// Support: IE <=10 - 11 only\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\t// Strip and collapse whitespace\n\t\t\t\t\t// https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n\t\t\t\t\tstripAndCollapse( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option, i,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\",\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length;\n\n\t\t\t\tif ( index < 0 ) {\n\t\t\t\t\ti = max;\n\n\t\t\t\t} else {\n\t\t\t\t\ti = one ? index : 0;\n\t\t\t\t}\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t// IE8-9 doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t!option.disabled &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled ||\n\t\t\t\t\t\t\t\t!nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t/* eslint-disable no-cond-assign */\n\n\t\t\t\t\tif ( option.selected =\n\t\t\t\t\t\tjQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1\n\t\t\t\t\t) {\n\t\t\t\t\t\toptionSet = true;\n\t\t\t\t\t}\n\n\t\t\t\t\t/* eslint-enable no-cond-assign */\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\t\t\t\treturn values;\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Radios and checkboxes getter/setter\njQuery.each( [ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( Array.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\treturn elem.getAttribute( \"value\" ) === null ? \"on\" : elem.value;\n\t\t};\n\t}\n} );\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\nsupport.focusin = \"onfocusin\" in window;\n\n\nvar rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\tstopPropagationCallback = function( e ) {\n\t\te.stopPropagation();\n\t};\n\njQuery.extend( jQuery.event, {\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\n\t\tvar i, cur, tmp, bubbleType, ontype, handle, special, lastElement,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split( \".\" ) : [];\n\n\t\tcur = lastElement = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) > -1 ) {\n\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split( \".\" );\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf( \":\" ) < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.rnamespace = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === ( elem.ownerDocument || document ) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tlastElement = cur;\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = (\n\t\t\t\t\tdataPriv.get( cur, \"events\" ) || Object.create( null )\n\t\t\t\t)[ event.type ] &&\n\t\t\t\tdataPriv.get( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( ( !special._default ||\n\t\t\t\tspecial._default.apply( eventPath.pop(), data ) === false ) &&\n\t\t\t\tacceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name as the event.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.addEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\telem[ type ]();\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.removeEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\t// Piggyback on a donor event to simulate a different one\n\t// Used only for `focus(in | out)` events\n\tsimulate: function( type, elem, event ) {\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true\n\t\t\t}\n\t\t);\n\n\t\tjQuery.event.trigger( e, null, elem );\n\t}\n\n} );\n\njQuery.fn.extend( {\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t} );\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[ 0 ];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n} );\n\n\n// Support: Firefox <=44\n// Firefox doesn't have focus(in | out) events\n// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n//\n// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1\n// focus(in | out) events fire after focus & blur events,\n// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857\nif ( !support.focusin ) {\n\tjQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );\n\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\n\t\t\t\t// Handle: regular nodes (via `this.ownerDocument`), window\n\t\t\t\t// (via `this.document`) & document (via `this`).\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tdataPriv.access( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tdataPriv.remove( doc, fix );\n\n\t\t\t\t} else {\n\t\t\t\t\tdataPriv.access( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t} );\n}\nvar location = window.location;\n\nvar nonce = { guid: Date.now() };\n\nvar rquery = ( /\\?/ );\n\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\n\t// Support: IE 9 - 11 only\n\t// IE throws on parseFromString with invalid input.\n\ttry {\n\t\txml = ( new window.DOMParser() ).parseFromString( data, \"text/xml\" );\n\t} catch ( e ) {\n\t\txml = undefined;\n\t}\n\n\tif ( !xml || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( Array.isArray( obj ) ) {\n\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams(\n\t\t\t\t\tprefix + \"[\" + ( typeof v === \"object\" && v != null ? i : \"\" ) + \"]\",\n\t\t\t\t\tv,\n\t\t\t\t\ttraditional,\n\t\t\t\t\tadd\n\t\t\t\t);\n\t\t\t}\n\t\t} );\n\n\t} else if ( !traditional && toType( obj ) === \"object\" ) {\n\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, valueOrFunction ) {\n\n\t\t\t// If value is a function, invoke it and use its return value\n\t\t\tvar value = isFunction( valueOrFunction ) ?\n\t\t\t\tvalueOrFunction() :\n\t\t\t\tvalueOrFunction;\n\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" +\n\t\t\t\tencodeURIComponent( value == null ? \"\" : value );\n\t\t};\n\n\tif ( a == null ) {\n\t\treturn \"\";\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t} );\n\n\t} else {\n\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" );\n};\n\njQuery.fn.extend( {\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map( function() {\n\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t} )\n\t\t.filter( function() {\n\t\t\tvar type = this.type;\n\n\t\t\t// Use .is( \":disabled\" ) so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t} )\n\t\t.map( function( _i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\tif ( val == null ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tif ( Array.isArray( val ) ) {\n\t\t\t\treturn jQuery.map( val, function( val ) {\n\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t} ).get();\n\t}\n} );\n\n\nvar\n\tr20 = /%20/g,\n\trhash = /#.*$/,\n\trantiCache = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)$/mg,\n\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat( \"*\" ),\n\n\t// Anchor tag for parsing the document origin\n\toriginAnchor = document.createElement( \"a\" );\n\toriginAnchor.href = location.href;\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];\n\n\t\tif ( isFunction( func ) ) {\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( ( dataType = dataTypes[ i++ ] ) ) {\n\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType[ 0 ] === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" &&\n\t\t\t\t!seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t} );\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar key, deep,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\n\tvar ct, type, finalDataType, firstDataType,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"Content-Type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[ 0 ] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s.throws ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tstate: \"parsererror\",\n\t\t\t\t\t\t\t\terror: conv ? e : \"No conversion from \" + prev + \" to \" + current\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend( {\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: location.href,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( location.protocol ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /\\bxml\\b/,\n\t\t\thtml: /\\bhtml/,\n\t\t\tjson: /\\bjson\\b/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": JSON.parse,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar transport,\n\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\n\t\t\t// Response headers\n\t\t\tresponseHeadersString,\n\t\t\tresponseHeaders,\n\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// Url cleanup var\n\t\t\turlAnchor,\n\n\t\t\t// Request state (becomes false upon send and true upon completion)\n\t\t\tcompleted,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\t// Loop variable\n\t\t\ti,\n\n\t\t\t// uncached part of the url\n\t\t\tuncached,\n\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context &&\n\t\t\t\t( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\t\tjQuery.event,\n\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( completed ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[ 1 ].toLowerCase() + \" \" ] =\n\t\t\t\t\t\t\t\t\t( responseHeaders[ match[ 1 ].toLowerCase() + \" \" ] || [] )\n\t\t\t\t\t\t\t\t\t\t.concat( match[ 2 ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() + \" \" ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match.join( \", \" );\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn completed ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\tname = requestHeadersNames[ name.toLowerCase() ] =\n\t\t\t\t\t\t\trequestHeadersNames[ name.toLowerCase() ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( completed ) {\n\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Lazy-add the new callbacks in a way that preserves old ones\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR );\n\n\t\t// Add protocol if not provided (prefilters might expect it)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || location.href ) + \"\" )\n\t\t\t.replace( rprotocol, location.protocol + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = ( s.dataType || \"*\" ).toLowerCase().match( rnothtmlwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when the origin doesn't match the current origin.\n\t\tif ( s.crossDomain == null ) {\n\t\t\turlAnchor = document.createElement( \"a\" );\n\n\t\t\t// Support: IE <=8 - 11, Edge 12 - 15\n\t\t\t// IE throws exception on accessing the href property if url is malformed,\n\t\t\t// e.g. http://example.com:80x/\n\t\t\ttry {\n\t\t\t\turlAnchor.href = s.url;\n\n\t\t\t\t// Support: IE <=8 - 11 only\n\t\t\t\t// Anchor's host property isn't correctly set when s.url is relative\n\t\t\t\turlAnchor.href = urlAnchor.href;\n\t\t\t\ts.crossDomain = originAnchor.protocol + \"//\" + originAnchor.host !==\n\t\t\t\t\turlAnchor.protocol + \"//\" + urlAnchor.host;\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// If there is an error parsing the URL, assume it is crossDomain,\n\t\t\t\t// it can be rejected by the transport if it is invalid\n\t\t\t\ts.crossDomain = true;\n\t\t\t}\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( completed ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\t// Remove hash to simplify url manipulation\n\t\tcacheURL = s.url.replace( rhash, \"\" );\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// Remember the hash so we can put it back\n\t\t\tuncached = s.url.slice( cacheURL.length );\n\n\t\t\t// If data is available and should be processed, append data to url\n\t\t\tif ( s.data && ( s.processData || typeof s.data === \"string\" ) ) {\n\t\t\t\tcacheURL += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data;\n\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add or update anti-cache param if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\tcacheURL = cacheURL.replace( rantiCache, \"$1\" );\n\t\t\t\tuncached = ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + ( nonce.guid++ ) +\n\t\t\t\t\tuncached;\n\t\t\t}\n\n\t\t\t// Put hash and anti-cache on the URL that will be requested (gh-1732)\n\t\t\ts.url = cacheURL + uncached;\n\n\t\t// Change '%20' to '+' if this is encoded form body content (gh-2658)\n\t\t} else if ( s.data && s.processData &&\n\t\t\t( s.contentType || \"\" ).indexOf( \"application/x-www-form-urlencoded\" ) === 0 ) {\n\t\t\ts.data = s.data.replace( r20, \"+\" );\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[ 0 ] ] +\n\t\t\t\t\t( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend &&\n\t\t\t( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {\n\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// Aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tcompleteDeferred.add( s.complete );\n\t\tjqXHR.done( s.success );\n\t\tjqXHR.fail( s.error );\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\n\t\t\t// If request was aborted inside ajaxSend, stop there\n\t\t\tif ( completed ) {\n\t\t\t\treturn jqXHR;\n\t\t\t}\n\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = window.setTimeout( function() {\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tcompleted = false;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// Rethrow post-completion exceptions\n\t\t\t\tif ( completed ) {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\n\t\t\t\t// Propagate others as results\n\t\t\t\tdone( -1, e );\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Ignore repeat invocations\n\t\t\tif ( completed ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tcompleted = true;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\twindow.clearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Use a noop converter for missing script\n\t\t\tif ( !isSuccess && jQuery.inArray( \"script\", s.dataTypes ) > -1 ) {\n\t\t\t\ts.converters[ \"text script\" ] = function() {};\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"Last-Modified\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"etag\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Extract error from statusText and normalize for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n} );\n\njQuery.each( [ \"get\", \"post\" ], function( _i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\n\t\t// Shift arguments if data argument was omitted\n\t\tif ( isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\t// The url can be an options object (which then must have .url)\n\t\treturn jQuery.ajax( jQuery.extend( {\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t}, jQuery.isPlainObject( url ) && url ) );\n\t};\n} );\n\njQuery.ajaxPrefilter( function( s ) {\n\tvar i;\n\tfor ( i in s.headers ) {\n\t\tif ( i.toLowerCase() === \"content-type\" ) {\n\t\t\ts.contentType = s.headers[ i ] || \"\";\n\t\t}\n\t}\n} );\n\n\njQuery._evalUrl = function( url, options, doc ) {\n\treturn jQuery.ajax( {\n\t\turl: url,\n\n\t\t// Make this explicit, since user can override this through ajaxSetup (#11264)\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tcache: true,\n\t\tasync: false,\n\t\tglobal: false,\n\n\t\t// Only evaluate the response if it is successful (gh-4126)\n\t\t// dataFilter is not invoked for failure responses, so using it instead\n\t\t// of the default converter is kludgy but it works.\n\t\tconverters: {\n\t\t\t\"text script\": function() {}\n\t\t},\n\t\tdataFilter: function( response ) {\n\t\t\tjQuery.globalEval( response, options, doc );\n\t\t}\n\t} );\n};\n\n\njQuery.fn.extend( {\n\twrapAll: function( html ) {\n\t\tvar wrap;\n\n\t\tif ( this[ 0 ] ) {\n\t\t\tif ( isFunction( html ) ) {\n\t\t\t\thtml = html.call( this[ 0 ] );\n\t\t\t}\n\n\t\t\t// The elements to wrap the target around\n\t\t\twrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );\n\n\t\t\tif ( this[ 0 ].parentNode ) {\n\t\t\t\twrap.insertBefore( this[ 0 ] );\n\t\t\t}\n\n\t\t\twrap.map( function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstElementChild ) {\n\t\t\t\t\telem = elem.firstElementChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t} ).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapInner( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t} );\n\t},\n\n\twrap: function( html ) {\n\t\tvar htmlIsFunction = isFunction( html );\n\n\t\treturn this.each( function( i ) {\n\t\t\tjQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );\n\t\t} );\n\t},\n\n\tunwrap: function( selector ) {\n\t\tthis.parent( selector ).not( \"body\" ).each( function() {\n\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t} );\n\t\treturn this;\n\t}\n} );\n\n\njQuery.expr.pseudos.hidden = function( elem ) {\n\treturn !jQuery.expr.pseudos.visible( elem );\n};\njQuery.expr.pseudos.visible = function( elem ) {\n\treturn !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );\n};\n\n\n\n\njQuery.ajaxSettings.xhr = function() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch ( e ) {}\n};\n\nvar xhrSuccessStatus = {\n\n\t\t// File protocol always yields status code 0, assume 200\n\t\t0: 200,\n\n\t\t// Support: IE <=9 only\n\t\t// #1450: sometimes IE returns 1223 when it should be 204\n\t\t1223: 204\n\t},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nsupport.ajax = xhrSupported = !!xhrSupported;\n\njQuery.ajaxTransport( function( options ) {\n\tvar callback, errorCallback;\n\n\t// Cross domain only allowed if supported through XMLHttpRequest\n\tif ( support.cors || xhrSupported && !options.crossDomain ) {\n\t\treturn {\n\t\t\tsend: function( headers, complete ) {\n\t\t\t\tvar i,\n\t\t\t\t\txhr = options.xhr();\n\n\t\t\t\txhr.open(\n\t\t\t\t\toptions.type,\n\t\t\t\t\toptions.url,\n\t\t\t\t\toptions.async,\n\t\t\t\t\toptions.username,\n\t\t\t\t\toptions.password\n\t\t\t\t);\n\n\t\t\t\t// Apply custom fields if provided\n\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Override mime type if needed\n\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t}\n\n\t\t\t\t// X-Requested-With header\n\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\tif ( !options.crossDomain && !headers[ \"X-Requested-With\" ] ) {\n\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t}\n\n\t\t\t\t// Set headers\n\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] );\n\t\t\t\t}\n\n\t\t\t\t// Callback\n\t\t\t\tcallback = function( type ) {\n\t\t\t\t\treturn function() {\n\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\tcallback = errorCallback = xhr.onload =\n\t\t\t\t\t\t\t\txhr.onerror = xhr.onabort = xhr.ontimeout =\n\t\t\t\t\t\t\t\t\txhr.onreadystatechange = null;\n\n\t\t\t\t\t\t\tif ( type === \"abort\" ) {\n\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t} else if ( type === \"error\" ) {\n\n\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t// On a manual native abort, IE9 throws\n\t\t\t\t\t\t\t\t// errors on any property access that is not readyState\n\t\t\t\t\t\t\t\tif ( typeof xhr.status !== \"number\" ) {\n\t\t\t\t\t\t\t\t\tcomplete( 0, \"error\" );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcomplete(\n\n\t\t\t\t\t\t\t\t\t\t// File: protocol always yields status 0; see #8605, #14207\n\t\t\t\t\t\t\t\t\t\txhr.status,\n\t\t\t\t\t\t\t\t\t\txhr.statusText\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tcomplete(\n\t\t\t\t\t\t\t\t\txhrSuccessStatus[ xhr.status ] || xhr.status,\n\t\t\t\t\t\t\t\t\txhr.statusText,\n\n\t\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t\t// IE9 has no XHR2 but throws on binary (trac-11426)\n\t\t\t\t\t\t\t\t\t// For XHR2 non-text, let the caller handle it (gh-2498)\n\t\t\t\t\t\t\t\t\t( xhr.responseType || \"text\" ) !== \"text\"  ||\n\t\t\t\t\t\t\t\t\ttypeof xhr.responseText !== \"string\" ?\n\t\t\t\t\t\t\t\t\t\t{ binary: xhr.response } :\n\t\t\t\t\t\t\t\t\t\t{ text: xhr.responseText },\n\t\t\t\t\t\t\t\t\txhr.getAllResponseHeaders()\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t};\n\n\t\t\t\t// Listen to events\n\t\t\t\txhr.onload = callback();\n\t\t\t\terrorCallback = xhr.onerror = xhr.ontimeout = callback( \"error\" );\n\n\t\t\t\t// Support: IE 9 only\n\t\t\t\t// Use onreadystatechange to replace onabort\n\t\t\t\t// to handle uncaught aborts\n\t\t\t\tif ( xhr.onabort !== undefined ) {\n\t\t\t\t\txhr.onabort = errorCallback;\n\t\t\t\t} else {\n\t\t\t\t\txhr.onreadystatechange = function() {\n\n\t\t\t\t\t\t// Check readyState before timeout as it changes\n\t\t\t\t\t\tif ( xhr.readyState === 4 ) {\n\n\t\t\t\t\t\t\t// Allow onerror to be called first,\n\t\t\t\t\t\t\t// but that will not handle a native abort\n\t\t\t\t\t\t\t// Also, save errorCallback to a variable\n\t\t\t\t\t\t\t// as xhr.onerror cannot be accessed\n\t\t\t\t\t\t\twindow.setTimeout( function() {\n\t\t\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\t\t\terrorCallback();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\t// Create the abort callback\n\t\t\t\tcallback = callback( \"abort\" );\n\n\t\t\t\ttry {\n\n\t\t\t\t\t// Do send the request (this may raise an exception)\n\t\t\t\t\txhr.send( options.hasContent && options.data || null );\n\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t// #14683: Only rethrow if this hasn't been notified as an error yet\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tthrow e;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\n// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)\njQuery.ajaxPrefilter( function( s ) {\n\tif ( s.crossDomain ) {\n\t\ts.contents.script = false;\n\t}\n} );\n\n// Install script dataType\njQuery.ajaxSetup( {\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, \" +\n\t\t\t\"application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /\\b(?:java|ecma)script\\b/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n} );\n\n// Handle cache's special case and crossDomain\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t}\n} );\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function( s ) {\n\n\t// This transport only deals with cross domain or forced-by-attrs requests\n\tif ( s.crossDomain || s.scriptAttrs ) {\n\t\tvar script, callback;\n\t\treturn {\n\t\t\tsend: function( _, complete ) {\n\t\t\t\tscript = jQuery( \"<script>\" )\n\t\t\t\t\t.attr( s.scriptAttrs || {} )\n\t\t\t\t\t.prop( { charset: s.scriptCharset, src: s.url } )\n\t\t\t\t\t.on( \"load error\", callback = function( evt ) {\n\t\t\t\t\t\tscript.remove();\n\t\t\t\t\t\tcallback = null;\n\t\t\t\t\t\tif ( evt ) {\n\t\t\t\t\t\t\tcomplete( evt.type === \"error\" ? 404 : 200, evt.type );\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\tdocument.head.appendChild( script[ 0 ] );\n\t\t\t},\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup( {\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce.guid++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n} );\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" &&\n\t\t\t\t( s.contentType || \"\" )\n\t\t\t\t\t.indexOf( \"application/x-www-form-urlencoded\" ) === 0 &&\n\t\t\t\trjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[ \"script json\" ] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// Force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always( function() {\n\n\t\t\t// If previous value didn't exist - remove it\n\t\t\tif ( overwritten === undefined ) {\n\t\t\t\tjQuery( window ).removeProp( callbackName );\n\n\t\t\t// Otherwise restore preexisting value\n\t\t\t} else {\n\t\t\t\twindow[ callbackName ] = overwritten;\n\t\t\t}\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\n\t\t\t\t// Make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// Save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t} );\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n} );\n\n\n\n\n// Support: Safari 8 only\n// In Safari 8 documents created via document.implementation.createHTMLDocument\n// collapse sibling forms: the second one becomes a child of the first one.\n// Because of that, this security measure has to be disabled in Safari 8.\n// https://bugs.webkit.org/show_bug.cgi?id=137337\nsupport.createHTMLDocument = ( function() {\n\tvar body = document.implementation.createHTMLDocument( \"\" ).body;\n\tbody.innerHTML = \"<form></form><form></form>\";\n\treturn body.childNodes.length === 2;\n} )();\n\n\n// Argument \"data\" should be string of html\n// context (optional): If specified, the fragment will be created in this context,\n// defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( typeof data !== \"string\" ) {\n\t\treturn [];\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\n\tvar base, parsed, scripts;\n\n\tif ( !context ) {\n\n\t\t// Stop scripts or inline event handlers from being executed immediately\n\t\t// by using document.implementation\n\t\tif ( support.createHTMLDocument ) {\n\t\t\tcontext = document.implementation.createHTMLDocument( \"\" );\n\n\t\t\t// Set the base href for the created document\n\t\t\t// so any parsed elements with URLs\n\t\t\t// are based on the document's URL (gh-2965)\n\t\t\tbase = context.createElement( \"base\" );\n\t\t\tbase.href = document.location.href;\n\t\t\tcontext.head.appendChild( base );\n\t\t} else {\n\t\t\tcontext = document;\n\t\t}\n\t}\n\n\tparsed = rsingleTag.exec( data );\n\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[ 1 ] ) ];\n\t}\n\n\tparsed = buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tvar selector, type, response,\n\t\tself = this,\n\t\toff = url.indexOf( \" \" );\n\n\tif ( off > -1 ) {\n\t\tselector = stripAndCollapse( url.slice( off ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax( {\n\t\t\turl: url,\n\n\t\t\t// If \"type\" variable is undefined, then \"GET\" method will be used.\n\t\t\t// Make value of this field explicit since\n\t\t\t// user can override it through ajaxSetup method\n\t\t\ttype: type || \"GET\",\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t} ).done( function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery( \"<div>\" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t// If the request succeeds, this function gets \"data\", \"status\", \"jqXHR\"\n\t\t// but they are ignored because response was set above.\n\t\t// If it fails, this function gets \"jqXHR\", \"status\", \"error\"\n\t\t} ).always( callback && function( jqXHR, status ) {\n\t\t\tself.each( function() {\n\t\t\t\tcallback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t\t} );\n\t\t} );\n\t}\n\n\treturn this;\n};\n\n\n\n\njQuery.expr.pseudos.animated = function( elem ) {\n\treturn jQuery.grep( jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t} ).length;\n};\n\n\n\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// Set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\t( curCSSTop + curCSSLeft ).indexOf( \"auto\" ) > -1;\n\n\t\t// Need to be able to calculate position if either\n\t\t// top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( isFunction( options ) ) {\n\n\t\t\t// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)\n\t\t\toptions = options.call( elem, i, jQuery.extend( {}, curOffset ) );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\n\t\t} else {\n\t\t\tif ( typeof props.top === \"number\" ) {\n\t\t\t\tprops.top += \"px\";\n\t\t\t}\n\t\t\tif ( typeof props.left === \"number\" ) {\n\t\t\t\tprops.left += \"px\";\n\t\t\t}\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend( {\n\n\t// offset() relates an element's border box to the document origin\n\toffset: function( options ) {\n\n\t\t// Preserve chaining for setter\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each( function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t} );\n\t\t}\n\n\t\tvar rect, win,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !elem ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Return zeros for disconnected and hidden (display: none) elements (gh-2310)\n\t\t// Support: IE <=11 only\n\t\t// Running getBoundingClientRect on a\n\t\t// disconnected node in IE throws an error\n\t\tif ( !elem.getClientRects().length ) {\n\t\t\treturn { top: 0, left: 0 };\n\t\t}\n\n\t\t// Get document-relative position by adding viewport scroll to viewport-relative gBCR\n\t\trect = elem.getBoundingClientRect();\n\t\twin = elem.ownerDocument.defaultView;\n\t\treturn {\n\t\t\ttop: rect.top + win.pageYOffset,\n\t\t\tleft: rect.left + win.pageXOffset\n\t\t};\n\t},\n\n\t// position() relates an element's margin box to its offset parent's padding box\n\t// This corresponds to the behavior of CSS absolute positioning\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset, doc,\n\t\t\telem = this[ 0 ],\n\t\t\tparentOffset = { top: 0, left: 0 };\n\n\t\t// position:fixed elements are offset from the viewport, which itself always has zero offset\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\n\t\t\t// Assume position:fixed implies availability of getBoundingClientRect\n\t\t\toffset = elem.getBoundingClientRect();\n\n\t\t} else {\n\t\t\toffset = this.offset();\n\n\t\t\t// Account for the *real* offset parent, which can be the document or its root element\n\t\t\t// when a statically positioned element is identified\n\t\t\tdoc = elem.ownerDocument;\n\t\t\toffsetParent = elem.offsetParent || doc.documentElement;\n\t\t\twhile ( offsetParent &&\n\t\t\t\t( offsetParent === doc.body || offsetParent === doc.documentElement ) &&\n\t\t\t\tjQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\n\t\t\t\toffsetParent = offsetParent.parentNode;\n\t\t\t}\n\t\t\tif ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {\n\n\t\t\t\t// Incorporate borders into its offset, since they are outside its content origin\n\t\t\t\tparentOffset = jQuery( offsetParent ).offset();\n\t\t\t\tparentOffset.top += jQuery.css( offsetParent, \"borderTopWidth\", true );\n\t\t\t\tparentOffset.left += jQuery.css( offsetParent, \"borderLeftWidth\", true );\n\t\t\t}\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\treturn {\n\t\t\ttop: offset.top - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true )\n\t\t};\n\t},\n\n\t// This method will return documentElement in the following cases:\n\t// 1) For the element inside the iframe without offsetParent, this method will return\n\t//    documentElement of the parent window\n\t// 2) For the hidden or detached element\n\t// 3) For body or html element, i.e. in case of the html node - it will return itself\n\t//\n\t// but those exceptions were never presented as a real life use-cases\n\t// and might be considered as more preferable results.\n\t//\n\t// This logic, however, is not guaranteed and can change at any point in the future\n\toffsetParent: function() {\n\t\treturn this.map( function() {\n\t\t\tvar offsetParent = this.offsetParent;\n\n\t\t\twhile ( offsetParent && jQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\n\t\t\treturn offsetParent || documentElement;\n\t\t} );\n\t}\n} );\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = \"pageYOffset\" === prop;\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\n\t\t\t// Coalesce documents and windows\n\t\t\tvar win;\n\t\t\tif ( isWindow( elem ) ) {\n\t\t\t\twin = elem;\n\t\t\t} else if ( elem.nodeType === 9 ) {\n\t\t\t\twin = elem.defaultView;\n\t\t\t}\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? win[ prop ] : elem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : win.pageXOffset,\n\t\t\t\t\ttop ? val : win.pageYOffset\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length );\n\t};\n} );\n\n// Support: Safari <=7 - 9.1, Chrome <=37 - 49\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347\n// getComputedStyle returns percent when specified for top/left/bottom/right;\n// rather than make the css module depend on the offset module, just check for it here\njQuery.each( [ \"top\", \"left\" ], function( _i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\n\t\t\t\t// If curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n} );\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name },\n\t\tfunction( defaultExtra, funcName ) {\n\n\t\t// Margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( isWindow( elem ) ) {\n\n\t\t\t\t\t// $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)\n\t\t\t\t\treturn funcName.indexOf( \"outer\" ) === 0 ?\n\t\t\t\t\t\telem[ \"inner\" + name ] :\n\t\t\t\t\t\telem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],\n\t\t\t\t\t// whichever is greatest\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable );\n\t\t};\n\t} );\n} );\n\n\njQuery.each( [\n\t\"ajaxStart\",\n\t\"ajaxStop\",\n\t\"ajaxComplete\",\n\t\"ajaxError\",\n\t\"ajaxSuccess\",\n\t\"ajaxSend\"\n], function( _i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n} );\n\n\n\n\njQuery.fn.extend( {\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ?\n\t\t\tthis.off( selector, \"**\" ) :\n\t\t\tthis.off( types, selector || \"**\", fn );\n\t},\n\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t}\n} );\n\njQuery.each( ( \"blur focus focusin focusout resize scroll click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup contextmenu\" ).split( \" \" ),\n\tfunction( _i, name ) {\n\n\t\t// Handle event binding\n\t\tjQuery.fn[ name ] = function( data, fn ) {\n\t\t\treturn arguments.length > 0 ?\n\t\t\t\tthis.on( name, null, data, fn ) :\n\t\t\t\tthis.trigger( name );\n\t\t};\n\t} );\n\n\n\n\n// Support: Android <=4.0 only\n// Make sure we trim BOM and NBSP\nvar rtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g;\n\n// Bind a function to a context, optionally partially applying any\n// arguments.\n// jQuery.proxy is deprecated to promote standards (specifically Function#bind)\n// However, it is not slated for removal any time soon\njQuery.proxy = function( fn, context ) {\n\tvar tmp, args, proxy;\n\n\tif ( typeof context === \"string\" ) {\n\t\ttmp = fn[ context ];\n\t\tcontext = fn;\n\t\tfn = tmp;\n\t}\n\n\t// Quick check to determine if target is callable, in the spec\n\t// this throws a TypeError, but we will just return undefined.\n\tif ( !isFunction( fn ) ) {\n\t\treturn undefined;\n\t}\n\n\t// Simulated bind\n\targs = slice.call( arguments, 2 );\n\tproxy = function() {\n\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t};\n\n\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\treturn proxy;\n};\n\njQuery.holdReady = function( hold ) {\n\tif ( hold ) {\n\t\tjQuery.readyWait++;\n\t} else {\n\t\tjQuery.ready( true );\n\t}\n};\njQuery.isArray = Array.isArray;\njQuery.parseJSON = JSON.parse;\njQuery.nodeName = nodeName;\njQuery.isFunction = isFunction;\njQuery.isWindow = isWindow;\njQuery.camelCase = camelCase;\njQuery.type = toType;\n\njQuery.now = Date.now;\n\njQuery.isNumeric = function( obj ) {\n\n\t// As of jQuery 3.0, isNumeric is limited to\n\t// strings and numbers (primitives or objects)\n\t// that can be coerced to finite numbers (gh-2662)\n\tvar type = jQuery.type( obj );\n\treturn ( type === \"number\" || type === \"string\" ) &&\n\n\t\t// parseFloat NaNs numeric-cast false positives (\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t!isNaN( obj - parseFloat( obj ) );\n};\n\njQuery.trim = function( text ) {\n\treturn text == null ?\n\t\t\"\" :\n\t\t( text + \"\" ).replace( rtrim, \"\" );\n};\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t} );\n}\n\n\n\n\nvar\n\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in AMD\n// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === \"undefined\" ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n} );\n"
  },
  {
    "path": "images/04_variance/lib/plotly-binding-4.10.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    // Plotly.relayout() mutates the plot input object, so make sure to \n    // keep a reference to the user-supplied width/height *before*\n    // we call Plotly.plot();\n    var lay = x.layout || {};\n    instance.width = lay.width;\n    instance.height = lay.height;\n    instance.autosize = lay.autosize || true;\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if ((x.selectize || x.highlight.dynamic) && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.newPlot(graphDiv, x);\n      instance.plotly = true;\n      \n    } else if (x.layout.transition) {\n      \n      var plot = Plotly.react(graphDiv, x);\n    \n    } else {\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.newPlot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n            if (typeof pt.pointNumber === \"number\") {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber];\n            } else if (Array.isArray(pt.pointNumber)) {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber[0]][pt.pointNumber[1]];\n            } else if (Array.isArray(pt.pointNumbers)) {\n              obj[attrsToAttach[i]] = pt.pointNumbers.map(function(idx) { return attr[idx]; });\n            }\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode && Shiny.setInputValue) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_sunburstclick: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "images/04_variance/lib/plotly-binding-4.9.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if (x.selectize || x.highlight.dynamic && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.plot(graphDiv, x);\n      instance.plotly = true;\n      instance.autosize = x.layout.autosize || true;\n      instance.width = x.layout.width;\n      instance.height = x.layout.height;\n      \n    } else {\n      \n      // new x data could contain a new height/width...\n      // attach to instance so that resize logic knows about the new size\n      instance.width = x.layout.width || instance.width;\n      instance.height = x.layout.height || instance.height;\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.plot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n              // pointNumber can be an array (e.g., heatmaps)\n              // TODO: can pointNumber be 3D?\n              obj[attrsToAttach[i]] = typeof pt.pointNumber === \"number\" ? \n                attr[pt.pointNumber] : attr[pt.pointNumber[0]][pt.pointNumber[1]];\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "images/04_variance/lib/plotly-binding-4.9.1/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    // Plotly.relayout() mutates the plot input object, so make sure to \n    // keep a reference to the user-supplied width/height *before*\n    // we call Plotly.plot();\n    var lay = x.layout || {};\n    instance.width = lay.width;\n    instance.height = lay.height;\n    instance.autosize = lay.autosize || true;\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if (x.selectize || x.highlight.dynamic && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.plot(graphDiv, x);\n      instance.plotly = true;\n      \n    } else {\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.plot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n            if (typeof pt.pointNumber === \"number\") {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber];\n            } else if (Array.isArray(pt.pointNumber)) {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber[0]][pt.pointNumber[1]];\n            } else if (Array.isArray(pt.pointNumbers)) {\n              obj[attrsToAttach[i]] = pt.pointNumbers.map(function(idx) { return attr[idx]; });\n            }\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode && Shiny.setInputValue) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_sunburstclick: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "images/04_variance/lib/plotly-htmlwidgets-css-1.46.1/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "images/04_variance/lib/plotly-htmlwidgets-css-1.49.4/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "images/04_variance/lib/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "images/04_variance/mega_dots.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<meta charset=\"utf-8\"/>\n<style>body{background-color:white;}</style>\n<script src=\"lib/htmlwidgets-1.5.4/htmlwidgets.js\"></script>\n<script src=\"lib/plotly-binding-4.10.0/plotly.js\"></script>\n<script src=\"lib/typedarray-0.1/typedarray.min.js\"></script>\n<script src=\"lib/jquery-3.5.1/jquery.min.js\"></script>\n<link href=\"lib/crosstalk-1.2.0/css/crosstalk.min.css\" rel=\"stylesheet\" />\n<script src=\"lib/crosstalk-1.2.0/js/crosstalk.min.js\"></script>\n<link href=\"lib/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css\" rel=\"stylesheet\" />\n<script src=\"lib/plotly-main-2.5.1/plotly-latest.min.js\"></script>\n\n</head>\n<body>\n<div id=\"htmlwidget-77517bcddfbff689c1d2\" style=\"width:700px;height:450px;\" class=\"plotly html-widget\"></div>\n<script type=\"application/json\" data-for=\"htmlwidget-77517bcddfbff689c1d2\">{\"x\":{\"visdat\":{\"1437b6ae28f83\":[\"function () \",\"plotlyVisDat\"]},\"cur_data\":\"1437b6ae28f83\",\"attrs\":{\"1437b6ae28f83\":{\"mode\":\"markers\",\"x\":{},\"y\":{},\"marker\":{\"size\":20,\"opacity\":0.75},\"hoverinfo\":\"text\",\"text\":{},\"color\":{},\"frame\":{},\"colors\":[\"midnightblue\",\"skyblue2\"],\"alpha_stroke\":1,\"sizes\":[10,100],\"spans\":[1,20],\"type\":\"scatter\"}},\"layout\":{\"width\":700,\"height\":450,\"margin\":{\"b\":10,\"l\":100,\"t\":10,\"r\":100,\"pad\":4},\"autosize\":false,\"xaxis\":{\"domain\":[0,1],\"automargin\":true,\"range\":[7,20.5],\"zeroline\":false,\"title\":\"Mean\"},\"yaxis\":{\"domain\":[0,1],\"automargin\":true,\"range\":[-2,38],\"zeroline\":false,\"title\":\"Biased variance\"},\"shapes\":[{\"type\":\"line\",\"x0\":0,\"x1\":1,\"xref\":\"paper\",\"y0\":19.7549830207255,\"y1\":19.7549830207255,\"line\":{\"color\":\"black\",\"dash\":\"dash\",\"width\":3}},{\"type\":\"line\",\"y0\":0,\"y1\":1,\"yref\":\"paper\",\"x0\":13.9054257525725,\"x1\":13.9054257525725,\"line\":{\"color\":\"black\",\"dash\":\"dash\",\"width\":3}}],\"hovermode\":\"closest\",\"showlegend\":false,\"sliders\":[{\"currentvalue\":{\"prefix\":\"Number of Samples: \",\"xanchor\":\"right\",\"font\":{\"size\":14,\"color\":\"grey70\"}},\"steps\":[{\"method\":\"animate\",\"args\":[[\"0\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"0\",\"value\":\"0\"},{\"method\":\"animate\",\"args\":[[\"10\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"10\",\"value\":\"10\"},{\"method\":\"animate\",\"args\":[[\"20\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"20\",\"value\":\"20\"},{\"method\":\"animate\",\"args\":[[\"30\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"30\",\"value\":\"30\"},{\"method\":\"animate\",\"args\":[[\"40\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"40\",\"value\":\"40\"},{\"method\":\"animate\",\"args\":[[\"50\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"50\",\"value\":\"50\"},{\"method\":\"animate\",\"args\":[[\"60\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"60\",\"value\":\"60\"},{\"method\":\"animate\",\"args\":[[\"70\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"70\",\"value\":\"70\"},{\"method\":\"animate\",\"args\":[[\"80\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"80\",\"value\":\"80\"},{\"method\":\"animate\",\"args\":[[\"90\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"90\",\"value\":\"90\"},{\"method\":\"animate\",\"args\":[[\"100\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"100\",\"value\":\"100\"},{\"method\":\"animate\",\"args\":[[\"110\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"110\",\"value\":\"110\"},{\"method\":\"animate\",\"args\":[[\"120\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"120\",\"value\":\"120\"},{\"method\":\"animate\",\"args\":[[\"130\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"130\",\"value\":\"130\"},{\"method\":\"animate\",\"args\":[[\"140\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"140\",\"value\":\"140\"},{\"method\":\"animate\",\"args\":[[\"150\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"150\",\"value\":\"150\"},{\"method\":\"animate\",\"args\":[[\"160\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"160\",\"value\":\"160\"},{\"method\":\"animate\",\"args\":[[\"170\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"170\",\"value\":\"170\"},{\"method\":\"animate\",\"args\":[[\"180\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"180\",\"value\":\"180\"},{\"method\":\"animate\",\"args\":[[\"190\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"190\",\"value\":\"190\"},{\"method\":\"animate\",\"args\":[[\"200\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"200\",\"value\":\"200\"},{\"method\":\"animate\",\"args\":[[\"210\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"210\",\"value\":\"210\"},{\"method\":\"animate\",\"args\":[[\"220\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"220\",\"value\":\"220\"},{\"method\":\"animate\",\"args\":[[\"230\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"230\",\"value\":\"230\"},{\"method\":\"animate\",\"args\":[[\"240\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"240\",\"value\":\"240\"},{\"method\":\"animate\",\"args\":[[\"250\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"250\",\"value\":\"250\"},{\"method\":\"animate\",\"args\":[[\"260\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"260\",\"value\":\"260\"},{\"method\":\"animate\",\"args\":[[\"270\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"270\",\"value\":\"270\"},{\"method\":\"animate\",\"args\":[[\"280\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"280\",\"value\":\"280\"},{\"method\":\"animate\",\"args\":[[\"290\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"290\",\"value\":\"290\"},{\"method\":\"animate\",\"args\":[[\"300\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"300\",\"value\":\"300\"},{\"method\":\"animate\",\"args\":[[\"310\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"310\",\"value\":\"310\"},{\"method\":\"animate\",\"args\":[[\"320\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"320\",\"value\":\"320\"},{\"method\":\"animate\",\"args\":[[\"330\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"330\",\"value\":\"330\"},{\"method\":\"animate\",\"args\":[[\"340\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"340\",\"value\":\"340\"},{\"method\":\"animate\",\"args\":[[\"350\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"350\",\"value\":\"350\"},{\"method\":\"animate\",\"args\":[[\"360\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"360\",\"value\":\"360\"},{\"method\":\"animate\",\"args\":[[\"370\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"370\",\"value\":\"370\"},{\"method\":\"animate\",\"args\":[[\"380\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"380\",\"value\":\"380\"},{\"method\":\"animate\",\"args\":[[\"390\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"390\",\"value\":\"390\"},{\"method\":\"animate\",\"args\":[[\"400\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"400\",\"value\":\"400\"},{\"method\":\"animate\",\"args\":[[\"410\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"410\",\"value\":\"410\"},{\"method\":\"animate\",\"args\":[[\"420\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"420\",\"value\":\"420\"},{\"method\":\"animate\",\"args\":[[\"430\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"430\",\"value\":\"430\"},{\"method\":\"animate\",\"args\":[[\"440\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"440\",\"value\":\"440\"},{\"method\":\"animate\",\"args\":[[\"450\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"450\",\"value\":\"450\"},{\"method\":\"animate\",\"args\":[[\"460\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"460\",\"value\":\"460\"},{\"method\":\"animate\",\"args\":[[\"470\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"470\",\"value\":\"470\"},{\"method\":\"animate\",\"args\":[[\"480\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"480\",\"value\":\"480\"},{\"method\":\"animate\",\"args\":[[\"490\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"490\",\"value\":\"490\"},{\"method\":\"animate\",\"args\":[[\"500\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"500\",\"value\":\"500\"},{\"method\":\"animate\",\"args\":[[\"510\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"510\",\"value\":\"510\"},{\"method\":\"animate\",\"args\":[[\"520\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"520\",\"value\":\"520\"},{\"method\":\"animate\",\"args\":[[\"530\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"530\",\"value\":\"530\"},{\"method\":\"animate\",\"args\":[[\"540\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"540\",\"value\":\"540\"},{\"method\":\"animate\",\"args\":[[\"550\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"550\",\"value\":\"550\"},{\"method\":\"animate\",\"args\":[[\"560\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"560\",\"value\":\"560\"},{\"method\":\"animate\",\"args\":[[\"570\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"570\",\"value\":\"570\"},{\"method\":\"animate\",\"args\":[[\"580\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"580\",\"value\":\"580\"},{\"method\":\"animate\",\"args\":[[\"590\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"590\",\"value\":\"590\"},{\"method\":\"animate\",\"args\":[[\"600\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"600\",\"value\":\"600\"},{\"method\":\"animate\",\"args\":[[\"610\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"610\",\"value\":\"610\"},{\"method\":\"animate\",\"args\":[[\"620\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"620\",\"value\":\"620\"},{\"method\":\"animate\",\"args\":[[\"630\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"630\",\"value\":\"630\"},{\"method\":\"animate\",\"args\":[[\"640\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"640\",\"value\":\"640\"},{\"method\":\"animate\",\"args\":[[\"650\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"650\",\"value\":\"650\"},{\"method\":\"animate\",\"args\":[[\"660\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"660\",\"value\":\"660\"},{\"method\":\"animate\",\"args\":[[\"670\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"670\",\"value\":\"670\"},{\"method\":\"animate\",\"args\":[[\"680\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"680\",\"value\":\"680\"},{\"method\":\"animate\",\"args\":[[\"690\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"690\",\"value\":\"690\"},{\"method\":\"animate\",\"args\":[[\"700\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"700\",\"value\":\"700\"},{\"method\":\"animate\",\"args\":[[\"710\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"710\",\"value\":\"710\"},{\"method\":\"animate\",\"args\":[[\"720\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"720\",\"value\":\"720\"},{\"method\":\"animate\",\"args\":[[\"730\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"730\",\"value\":\"730\"},{\"method\":\"animate\",\"args\":[[\"740\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"740\",\"value\":\"740\"},{\"method\":\"animate\",\"args\":[[\"750\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"750\",\"value\":\"750\"},{\"method\":\"animate\",\"args\":[[\"760\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"760\",\"value\":\"760\"},{\"method\":\"animate\",\"args\":[[\"770\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"770\",\"value\":\"770\"},{\"method\":\"animate\",\"args\":[[\"780\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"780\",\"value\":\"780\"},{\"method\":\"animate\",\"args\":[[\"790\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"790\",\"value\":\"790\"},{\"method\":\"animate\",\"args\":[[\"800\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"800\",\"value\":\"800\"},{\"method\":\"animate\",\"args\":[[\"810\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"810\",\"value\":\"810\"},{\"method\":\"animate\",\"args\":[[\"820\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"820\",\"value\":\"820\"},{\"method\":\"animate\",\"args\":[[\"830\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"830\",\"value\":\"830\"},{\"method\":\"animate\",\"args\":[[\"840\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"840\",\"value\":\"840\"},{\"method\":\"animate\",\"args\":[[\"850\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"850\",\"value\":\"850\"},{\"method\":\"animate\",\"args\":[[\"860\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"860\",\"value\":\"860\"},{\"method\":\"animate\",\"args\":[[\"870\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"870\",\"value\":\"870\"},{\"method\":\"animate\",\"args\":[[\"880\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"880\",\"value\":\"880\"},{\"method\":\"animate\",\"args\":[[\"890\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"890\",\"value\":\"890\"},{\"method\":\"animate\",\"args\":[[\"900\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"900\",\"value\":\"900\"},{\"method\":\"animate\",\"args\":[[\"910\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"910\",\"value\":\"910\"},{\"method\":\"animate\",\"args\":[[\"920\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"920\",\"value\":\"920\"},{\"method\":\"animate\",\"args\":[[\"930\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"930\",\"value\":\"930\"},{\"method\":\"animate\",\"args\":[[\"940\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"940\",\"value\":\"940\"},{\"method\":\"animate\",\"args\":[[\"950\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"950\",\"value\":\"950\"},{\"method\":\"animate\",\"args\":[[\"960\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"960\",\"value\":\"960\"},{\"method\":\"animate\",\"args\":[[\"970\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"970\",\"value\":\"970\"},{\"method\":\"animate\",\"args\":[[\"980\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"980\",\"value\":\"980\"},{\"method\":\"animate\",\"args\":[[\"990\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"990\",\"value\":\"990\"},{\"method\":\"animate\",\"args\":[[\"1000\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1000\",\"value\":\"1000\"}],\"visible\":true,\"pad\":{\"t\":40}}],\"updatemenus\":[{\"type\":\"buttons\",\"direction\":\"right\",\"showactive\":false,\"y\":0,\"x\":0,\"yanchor\":\"top\",\"xanchor\":\"right\",\"pad\":{\"t\":60,\"r\":5},\"buttons\":[{\"label\":\"Play\",\"method\":\"animate\",\"args\":[null,{\"fromcurrent\":true,\"mode\":\"immediate\",\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":1,\"redraw\":false}}]}]}],\"legend\":{\"yanchor\":\"top\",\"y\":0.5}},\"source\":\"A\",\"config\":{\"modeBarButtonsToAdd\":[\"hoverclosest\",\"hovercompare\"],\"showSendToCloud\":false,\"displayModeBar\":false},\"data\":[{\"mode\":\"markers\",\"x\":[null],\"y\":[null],\"marker\":{\"color\":\"rgba(25,25,112,1)\",\"size\":20,\"opacity\":0.75,\"line\":{\"color\":\"rgba(25,25,112,1)\"}},\"hoverinfo\":\"text\",\"text\":\"Mean: Inf <br />Variance: Inf\",\"frame\":\"0\",\"type\":\"scatter\",\"textfont\":{\"color\":\"rgba(25,25,112,1)\"},\"error_y\":{\"color\":\"rgba(25,25,112,1)\"},\"error_x\":{\"color\":\"rgba(25,25,112,1)\"},\"line\":{\"color\":\"rgba(25,25,112,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[7.02530462043929,null],\"y\":[0.000464508112556394,null],\"type\":\"scatter\",\"mode\":\"markers\",\"opacity\":0,\"hoverinfo\":\"none\",\"showlegend\":false,\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2,\"len\":0.5,\"lenmode\":\"fraction\",\"y\":1,\"yanchor\":\"top\"},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":true,\"color\":[2,10],\"line\":{\"color\":\"rgba(255,127,14,1)\"}},\"xaxis\":\"x\",\"yaxis\":\"y\",\"frame\":null}],\"highlight\":{\"on\":\"plotly_click\",\"persistent\":false,\"dynamic\":false,\"selectize\":false,\"opacityDim\":0.2,\"selected\":{\"opacity\":1},\"debounce\":0},\"frames\":[{\"name\":\"0\",\"data\":[{\"mode\":\"markers\",\"x\":[null],\"y\":[null],\"marker\":{\"color\":\"rgba(25,25,112,1)\",\"size\":20,\"opacity\":0.75,\"line\":{\"color\":\"rgba(25,25,112,1)\"}},\"hoverinfo\":\"text\",\"text\":\"Mean: Inf <br />Variance: Inf\",\"frame\":\"0\",\"type\":\"scatter\",\"textfont\":{\"color\":\"rgba(25,25,112,1)\"},\"error_y\":{\"color\":\"rgba(25,25,112,1)\"},\"error_x\":{\"color\":\"rgba(25,25,112,1)\"},\"line\":{\"color\":\"rgba(25,25,112,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"10\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\"],\"frame\":\"10\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"20\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\"],\"frame\":\"20\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"30\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\"],\"frame\":\"30\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"40\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\"],\"frame\":\"40\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"50\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\"],\"frame\":\"50\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"60\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\"],\"frame\":\"60\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"70\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\"],\"frame\":\"70\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"80\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\"],\"frame\":\"80\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"90\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\"],\"frame\":\"90\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"100\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\"],\"frame\":\"100\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"110\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\"],\"frame\":\"110\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"120\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\"],\"frame\":\"120\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"130\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\"],\"frame\":\"130\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"140\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\"],\"frame\":\"140\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"150\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\"],\"frame\":\"150\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"160\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\"],\"frame\":\"160\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"170\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\"],\"frame\":\"170\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"180\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\"],\"frame\":\"180\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"190\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\"],\"frame\":\"190\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"200\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\"],\"frame\":\"200\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"210\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\"],\"frame\":\"210\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"220\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\"],\"frame\":\"220\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"230\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\"],\"frame\":\"230\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"240\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\"],\"frame\":\"240\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"250\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\"],\"frame\":\"250\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"260\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\"],\"frame\":\"260\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"270\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\"],\"frame\":\"270\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"280\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\"],\"frame\":\"280\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"290\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\"],\"frame\":\"290\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"300\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\"],\"frame\":\"300\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"310\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\"],\"frame\":\"310\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"320\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\"],\"frame\":\"320\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"330\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\"],\"frame\":\"330\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"340\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\"],\"frame\":\"340\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"350\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\"],\"frame\":\"350\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"360\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\"],\"frame\":\"360\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"370\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\"],\"frame\":\"370\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"380\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\"],\"frame\":\"380\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"390\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\"],\"frame\":\"390\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"400\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\"],\"frame\":\"400\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"410\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\"],\"frame\":\"410\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"420\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\"],\"frame\":\"420\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"430\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\"],\"frame\":\"430\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"440\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\"],\"frame\":\"440\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"450\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\"],\"frame\":\"450\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"460\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\"],\"frame\":\"460\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"470\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\"],\"frame\":\"470\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"480\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\"],\"frame\":\"480\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"490\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\"],\"frame\":\"490\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"500\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\"],\"frame\":\"500\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"510\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\"],\"frame\":\"510\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"520\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\"],\"frame\":\"520\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"530\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\"],\"frame\":\"530\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"540\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\"],\"frame\":\"540\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"550\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\"],\"frame\":\"550\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"560\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\"],\"frame\":\"560\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"570\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\"],\"frame\":\"570\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"580\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\"],\"frame\":\"580\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"590\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\"],\"frame\":\"590\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"600\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\"],\"frame\":\"600\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"610\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\"],\"frame\":\"610\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"620\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\"],\"frame\":\"620\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"630\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\"],\"frame\":\"630\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"640\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\"],\"frame\":\"640\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"650\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\"],\"frame\":\"650\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"660\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\"],\"frame\":\"660\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"670\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\"],\"frame\":\"670\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"680\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\"],\"frame\":\"680\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"690\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\"],\"frame\":\"690\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"700\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\"],\"frame\":\"700\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"710\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\"],\"frame\":\"710\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"720\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\"],\"frame\":\"720\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"730\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\"],\"frame\":\"730\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"740\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\"],\"frame\":\"740\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"750\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\"],\"frame\":\"750\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"760\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\"],\"frame\":\"760\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"770\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\"],\"frame\":\"770\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"780\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\"],\"frame\":\"780\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"790\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\"],\"frame\":\"790\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"800\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\"],\"frame\":\"800\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"810\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\"],\"frame\":\"810\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"820\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\"],\"frame\":\"820\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"830\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\"],\"frame\":\"830\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"840\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\"],\"frame\":\"840\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"850\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\"],\"frame\":\"850\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"860\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\"],\"frame\":\"860\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"870\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\"],\"frame\":\"870\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"880\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\"],\"frame\":\"880\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"890\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\"],\"frame\":\"890\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"900\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\"],\"frame\":\"900\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"910\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\"],\"frame\":\"910\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"920\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927,13.2851929866638,15.3695719450044,14.4459613543841,17.3006947978765,12.8891125909971,15.0331603308827,13.2054270096697,15.5856677575946,15.2051287372861,14.8196306940205],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552,26.5591603033638,19.335835459262,20.7036235465066,0.208641387288052,20.6115442876446,12.7430887403933,20.5868427324115,16.364575788813,17.9625945067458,17.7315741346053],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\",\"Mean: 13.29 <br />Variance: 26.56\",\"Mean: 15.37 <br />Variance: 19.34\",\"Mean: 14.45 <br />Variance: 20.7\",\"Mean: 17.3 <br />Variance: 0.21\",\"Mean: 12.89 <br />Variance: 20.61\",\"Mean: 15.03 <br />Variance: 12.74\",\"Mean: 13.21 <br />Variance: 20.59\",\"Mean: 15.59 <br />Variance: 16.36\",\"Mean: 15.21 <br />Variance: 17.96\",\"Mean: 14.82 <br />Variance: 17.73\"],\"frame\":\"920\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"930\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927,13.2851929866638,15.3695719450044,14.4459613543841,17.3006947978765,12.8891125909971,15.0331603308827,13.2054270096697,15.5856677575946,15.2051287372861,14.8196306940205,16.1631067468124,15.3599671371452,12.6592193382426,12.9214914940341,10.9621627646124,14.391371590318,12.7733783723621,8.82272025205295,13.7102812918842,12.0541193744177],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552,26.5591603033638,19.335835459262,20.7036235465066,0.208641387288052,20.6115442876446,12.7430887403933,20.5868427324115,16.364575788813,17.9625945067458,17.7315741346053,18.9574728157458,19.4296327887366,22.0681953325355,17.9654269464216,13.4525509909972,18.5114212073831,16.8024391866228,1.49471807338387,15.7960076004629,14.038998882859],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\",\"Mean: 13.29 <br />Variance: 26.56\",\"Mean: 15.37 <br />Variance: 19.34\",\"Mean: 14.45 <br />Variance: 20.7\",\"Mean: 17.3 <br />Variance: 0.21\",\"Mean: 12.89 <br />Variance: 20.61\",\"Mean: 15.03 <br />Variance: 12.74\",\"Mean: 13.21 <br />Variance: 20.59\",\"Mean: 15.59 <br />Variance: 16.36\",\"Mean: 15.21 <br />Variance: 17.96\",\"Mean: 14.82 <br />Variance: 17.73\",\"Mean: 16.16 <br />Variance: 18.96\",\"Mean: 15.36 <br />Variance: 19.43\",\"Mean: 12.66 <br />Variance: 22.07\",\"Mean: 12.92 <br />Variance: 17.97\",\"Mean: 10.96 <br />Variance: 13.45\",\"Mean: 14.39 <br />Variance: 18.51\",\"Mean: 12.77 <br />Variance: 16.8\",\"Mean: 8.82 <br />Variance: 1.49\",\"Mean: 13.71 <br />Variance: 15.8\",\"Mean: 12.05 <br />Variance: 14.04\"],\"frame\":\"930\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"940\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927,13.2851929866638,15.3695719450044,14.4459613543841,17.3006947978765,12.8891125909971,15.0331603308827,13.2054270096697,15.5856677575946,15.2051287372861,14.8196306940205,16.1631067468124,15.3599671371452,12.6592193382426,12.9214914940341,10.9621627646124,14.391371590318,12.7733783723621,8.82272025205295,13.7102812918842,12.0541193744177,15.4283675568904,16.1847309209782,12.8742074982595,13.3803330064499,10.815508421524,16.7022070194263,12.7919947651473,14.7660807549922,13.8725256106499,9.46772578621262],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552,26.5591603033638,19.335835459262,20.7036235465066,0.208641387288052,20.6115442876446,12.7430887403933,20.5868427324115,16.364575788813,17.9625945067458,17.7315741346053,18.9574728157458,19.4296327887366,22.0681953325355,17.9654269464216,13.4525509909972,18.5114212073831,16.8024391866228,1.49471807338387,15.7960076004629,14.038998882859,11.1617045917126,14.2045809720534,19.5632156615578,17.6166565086691,15.0506230826099,14.1553483813581,10.2206093982834,20.212610818768,30.5173794848566,1.45950691630166],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\",\"Mean: 13.29 <br />Variance: 26.56\",\"Mean: 15.37 <br />Variance: 19.34\",\"Mean: 14.45 <br />Variance: 20.7\",\"Mean: 17.3 <br />Variance: 0.21\",\"Mean: 12.89 <br />Variance: 20.61\",\"Mean: 15.03 <br />Variance: 12.74\",\"Mean: 13.21 <br />Variance: 20.59\",\"Mean: 15.59 <br />Variance: 16.36\",\"Mean: 15.21 <br />Variance: 17.96\",\"Mean: 14.82 <br />Variance: 17.73\",\"Mean: 16.16 <br />Variance: 18.96\",\"Mean: 15.36 <br />Variance: 19.43\",\"Mean: 12.66 <br />Variance: 22.07\",\"Mean: 12.92 <br />Variance: 17.97\",\"Mean: 10.96 <br />Variance: 13.45\",\"Mean: 14.39 <br />Variance: 18.51\",\"Mean: 12.77 <br />Variance: 16.8\",\"Mean: 8.82 <br />Variance: 1.49\",\"Mean: 13.71 <br />Variance: 15.8\",\"Mean: 12.05 <br />Variance: 14.04\",\"Mean: 15.43 <br />Variance: 11.16\",\"Mean: 16.18 <br />Variance: 14.2\",\"Mean: 12.87 <br />Variance: 19.56\",\"Mean: 13.38 <br />Variance: 17.62\",\"Mean: 10.82 <br />Variance: 15.05\",\"Mean: 16.7 <br />Variance: 14.16\",\"Mean: 12.79 <br />Variance: 10.22\",\"Mean: 14.77 <br />Variance: 20.21\",\"Mean: 13.87 <br />Variance: 30.52\",\"Mean: 9.47 <br />Variance: 1.46\"],\"frame\":\"940\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"950\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927,13.2851929866638,15.3695719450044,14.4459613543841,17.3006947978765,12.8891125909971,15.0331603308827,13.2054270096697,15.5856677575946,15.2051287372861,14.8196306940205,16.1631067468124,15.3599671371452,12.6592193382426,12.9214914940341,10.9621627646124,14.391371590318,12.7733783723621,8.82272025205295,13.7102812918842,12.0541193744177,15.4283675568904,16.1847309209782,12.8742074982595,13.3803330064499,10.815508421524,16.7022070194263,12.7919947651473,14.7660807549922,13.8725256106499,9.46772578621262,11.4242472040732,13.940712585737,13.0070703385898,14.1193610757061,14.012491484604,12.9995863865027,13.7545635545606,18.1449373648727,12.4010215052769,12.3957043778212],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552,26.5591603033638,19.335835459262,20.7036235465066,0.208641387288052,20.6115442876446,12.7430887403933,20.5868427324115,16.364575788813,17.9625945067458,17.7315741346053,18.9574728157458,19.4296327887366,22.0681953325355,17.9654269464216,13.4525509909972,18.5114212073831,16.8024391866228,1.49471807338387,15.7960076004629,14.038998882859,11.1617045917126,14.2045809720534,19.5632156615578,17.6166565086691,15.0506230826099,14.1553483813581,10.2206093982834,20.212610818768,30.5173794848566,1.45950691630166,21.2344286193916,23.838169530659,20.0523158110267,11.6492829090518,20.1413206637129,22.1840083959358,13.748688955124,0.338829419423433,19.6087106664744,17.4529740894337],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\",\"Mean: 13.29 <br />Variance: 26.56\",\"Mean: 15.37 <br />Variance: 19.34\",\"Mean: 14.45 <br />Variance: 20.7\",\"Mean: 17.3 <br />Variance: 0.21\",\"Mean: 12.89 <br />Variance: 20.61\",\"Mean: 15.03 <br />Variance: 12.74\",\"Mean: 13.21 <br />Variance: 20.59\",\"Mean: 15.59 <br />Variance: 16.36\",\"Mean: 15.21 <br />Variance: 17.96\",\"Mean: 14.82 <br />Variance: 17.73\",\"Mean: 16.16 <br />Variance: 18.96\",\"Mean: 15.36 <br />Variance: 19.43\",\"Mean: 12.66 <br />Variance: 22.07\",\"Mean: 12.92 <br />Variance: 17.97\",\"Mean: 10.96 <br />Variance: 13.45\",\"Mean: 14.39 <br />Variance: 18.51\",\"Mean: 12.77 <br />Variance: 16.8\",\"Mean: 8.82 <br />Variance: 1.49\",\"Mean: 13.71 <br />Variance: 15.8\",\"Mean: 12.05 <br />Variance: 14.04\",\"Mean: 15.43 <br />Variance: 11.16\",\"Mean: 16.18 <br />Variance: 14.2\",\"Mean: 12.87 <br />Variance: 19.56\",\"Mean: 13.38 <br />Variance: 17.62\",\"Mean: 10.82 <br />Variance: 15.05\",\"Mean: 16.7 <br />Variance: 14.16\",\"Mean: 12.79 <br />Variance: 10.22\",\"Mean: 14.77 <br />Variance: 20.21\",\"Mean: 13.87 <br />Variance: 30.52\",\"Mean: 9.47 <br />Variance: 1.46\",\"Mean: 11.42 <br />Variance: 21.23\",\"Mean: 13.94 <br />Variance: 23.84\",\"Mean: 13.01 <br />Variance: 20.05\",\"Mean: 14.12 <br />Variance: 11.65\",\"Mean: 14.01 <br />Variance: 20.14\",\"Mean: 13 <br />Variance: 22.18\",\"Mean: 13.75 <br />Variance: 13.75\",\"Mean: 18.14 <br />Variance: 0.34\",\"Mean: 12.4 <br />Variance: 19.61\",\"Mean: 12.4 <br />Variance: 17.45\"],\"frame\":\"950\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"960\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927,13.2851929866638,15.3695719450044,14.4459613543841,17.3006947978765,12.8891125909971,15.0331603308827,13.2054270096697,15.5856677575946,15.2051287372861,14.8196306940205,16.1631067468124,15.3599671371452,12.6592193382426,12.9214914940341,10.9621627646124,14.391371590318,12.7733783723621,8.82272025205295,13.7102812918842,12.0541193744177,15.4283675568904,16.1847309209782,12.8742074982595,13.3803330064499,10.815508421524,16.7022070194263,12.7919947651473,14.7660807549922,13.8725256106499,9.46772578621262,11.4242472040732,13.940712585737,13.0070703385898,14.1193610757061,14.012491484604,12.9995863865027,13.7545635545606,18.1449373648727,12.4010215052769,12.3957043778212,14.2345478269609,9.40337271238869,13.668621448493,13.0696102139665,12.2626034684959,14.7790016504005,11.980815899315,14.974995721293,14.8188150566672,15.0049385511056],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552,26.5591603033638,19.335835459262,20.7036235465066,0.208641387288052,20.6115442876446,12.7430887403933,20.5868427324115,16.364575788813,17.9625945067458,17.7315741346053,18.9574728157458,19.4296327887366,22.0681953325355,17.9654269464216,13.4525509909972,18.5114212073831,16.8024391866228,1.49471807338387,15.7960076004629,14.038998882859,11.1617045917126,14.2045809720534,19.5632156615578,17.6166565086691,15.0506230826099,14.1553483813581,10.2206093982834,20.212610818768,30.5173794848566,1.45950691630166,21.2344286193916,23.838169530659,20.0523158110267,11.6492829090518,20.1413206637129,22.1840083959358,13.748688955124,0.338829419423433,19.6087106664744,17.4529740894337,31.2835480800128,1.90105497935151,21.9318114025957,24.3260109476153,15.2280733289853,11.9927361295099,11.3623730150741,19.662961878407,12.3355288101397,15.3266933291041],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\",\"Mean: 13.29 <br />Variance: 26.56\",\"Mean: 15.37 <br />Variance: 19.34\",\"Mean: 14.45 <br />Variance: 20.7\",\"Mean: 17.3 <br />Variance: 0.21\",\"Mean: 12.89 <br />Variance: 20.61\",\"Mean: 15.03 <br />Variance: 12.74\",\"Mean: 13.21 <br />Variance: 20.59\",\"Mean: 15.59 <br />Variance: 16.36\",\"Mean: 15.21 <br />Variance: 17.96\",\"Mean: 14.82 <br />Variance: 17.73\",\"Mean: 16.16 <br />Variance: 18.96\",\"Mean: 15.36 <br />Variance: 19.43\",\"Mean: 12.66 <br />Variance: 22.07\",\"Mean: 12.92 <br />Variance: 17.97\",\"Mean: 10.96 <br />Variance: 13.45\",\"Mean: 14.39 <br />Variance: 18.51\",\"Mean: 12.77 <br />Variance: 16.8\",\"Mean: 8.82 <br />Variance: 1.49\",\"Mean: 13.71 <br />Variance: 15.8\",\"Mean: 12.05 <br />Variance: 14.04\",\"Mean: 15.43 <br />Variance: 11.16\",\"Mean: 16.18 <br />Variance: 14.2\",\"Mean: 12.87 <br />Variance: 19.56\",\"Mean: 13.38 <br />Variance: 17.62\",\"Mean: 10.82 <br />Variance: 15.05\",\"Mean: 16.7 <br />Variance: 14.16\",\"Mean: 12.79 <br />Variance: 10.22\",\"Mean: 14.77 <br />Variance: 20.21\",\"Mean: 13.87 <br />Variance: 30.52\",\"Mean: 9.47 <br />Variance: 1.46\",\"Mean: 11.42 <br />Variance: 21.23\",\"Mean: 13.94 <br />Variance: 23.84\",\"Mean: 13.01 <br />Variance: 20.05\",\"Mean: 14.12 <br />Variance: 11.65\",\"Mean: 14.01 <br />Variance: 20.14\",\"Mean: 13 <br />Variance: 22.18\",\"Mean: 13.75 <br />Variance: 13.75\",\"Mean: 18.14 <br />Variance: 0.34\",\"Mean: 12.4 <br />Variance: 19.61\",\"Mean: 12.4 <br />Variance: 17.45\",\"Mean: 14.23 <br />Variance: 31.28\",\"Mean: 9.4 <br />Variance: 1.9\",\"Mean: 13.67 <br />Variance: 21.93\",\"Mean: 13.07 <br />Variance: 24.33\",\"Mean: 12.26 <br />Variance: 15.23\",\"Mean: 14.78 <br />Variance: 11.99\",\"Mean: 11.98 <br />Variance: 11.36\",\"Mean: 14.97 <br />Variance: 19.66\",\"Mean: 14.82 <br />Variance: 12.34\",\"Mean: 15 <br />Variance: 15.33\"],\"frame\":\"960\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"970\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927,13.2851929866638,15.3695719450044,14.4459613543841,17.3006947978765,12.8891125909971,15.0331603308827,13.2054270096697,15.5856677575946,15.2051287372861,14.8196306940205,16.1631067468124,15.3599671371452,12.6592193382426,12.9214914940341,10.9621627646124,14.391371590318,12.7733783723621,8.82272025205295,13.7102812918842,12.0541193744177,15.4283675568904,16.1847309209782,12.8742074982595,13.3803330064499,10.815508421524,16.7022070194263,12.7919947651473,14.7660807549922,13.8725256106499,9.46772578621262,11.4242472040732,13.940712585737,13.0070703385898,14.1193610757061,14.012491484604,12.9995863865027,13.7545635545606,18.1449373648727,12.4010215052769,12.3957043778212,14.2345478269609,9.40337271238869,13.668621448493,13.0696102139665,12.2626034684959,14.7790016504005,11.980815899315,14.974995721293,14.8188150566672,15.0049385511056,13.0129670087957,12.9524452451709,17.677421507408,12.2151135347687,12.6275810190037,15.5185111236049,15.3961045681409,11.7206492958625,16.0151857358609,15.6954468216701],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552,26.5591603033638,19.335835459262,20.7036235465066,0.208641387288052,20.6115442876446,12.7430887403933,20.5868427324115,16.364575788813,17.9625945067458,17.7315741346053,18.9574728157458,19.4296327887366,22.0681953325355,17.9654269464216,13.4525509909972,18.5114212073831,16.8024391866228,1.49471807338387,15.7960076004629,14.038998882859,11.1617045917126,14.2045809720534,19.5632156615578,17.6166565086691,15.0506230826099,14.1553483813581,10.2206093982834,20.212610818768,30.5173794848566,1.45950691630166,21.2344286193916,23.838169530659,20.0523158110267,11.6492829090518,20.1413206637129,22.1840083959358,13.748688955124,0.338829419423433,19.6087106664744,17.4529740894337,31.2835480800128,1.90105497935151,21.9318114025957,24.3260109476153,15.2280733289853,11.9927361295099,11.3623730150741,19.662961878407,12.3355288101397,15.3266933291041,17.1049680715165,14.588298232003,0.107379516433379,17.0536408699266,11.9679001999832,6.23939213581793,24.4908365884475,16.9957838212789,10.884831591684,6.45722925044353],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8,7,8,2,5,7,3,2,4,8,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8,7,8,2,5,7,3,2,4,8,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\",\"Mean: 13.29 <br />Variance: 26.56\",\"Mean: 15.37 <br />Variance: 19.34\",\"Mean: 14.45 <br />Variance: 20.7\",\"Mean: 17.3 <br />Variance: 0.21\",\"Mean: 12.89 <br />Variance: 20.61\",\"Mean: 15.03 <br />Variance: 12.74\",\"Mean: 13.21 <br />Variance: 20.59\",\"Mean: 15.59 <br />Variance: 16.36\",\"Mean: 15.21 <br />Variance: 17.96\",\"Mean: 14.82 <br />Variance: 17.73\",\"Mean: 16.16 <br />Variance: 18.96\",\"Mean: 15.36 <br />Variance: 19.43\",\"Mean: 12.66 <br />Variance: 22.07\",\"Mean: 12.92 <br />Variance: 17.97\",\"Mean: 10.96 <br />Variance: 13.45\",\"Mean: 14.39 <br />Variance: 18.51\",\"Mean: 12.77 <br />Variance: 16.8\",\"Mean: 8.82 <br />Variance: 1.49\",\"Mean: 13.71 <br />Variance: 15.8\",\"Mean: 12.05 <br />Variance: 14.04\",\"Mean: 15.43 <br />Variance: 11.16\",\"Mean: 16.18 <br />Variance: 14.2\",\"Mean: 12.87 <br />Variance: 19.56\",\"Mean: 13.38 <br />Variance: 17.62\",\"Mean: 10.82 <br />Variance: 15.05\",\"Mean: 16.7 <br />Variance: 14.16\",\"Mean: 12.79 <br />Variance: 10.22\",\"Mean: 14.77 <br />Variance: 20.21\",\"Mean: 13.87 <br />Variance: 30.52\",\"Mean: 9.47 <br />Variance: 1.46\",\"Mean: 11.42 <br />Variance: 21.23\",\"Mean: 13.94 <br />Variance: 23.84\",\"Mean: 13.01 <br />Variance: 20.05\",\"Mean: 14.12 <br />Variance: 11.65\",\"Mean: 14.01 <br />Variance: 20.14\",\"Mean: 13 <br />Variance: 22.18\",\"Mean: 13.75 <br />Variance: 13.75\",\"Mean: 18.14 <br />Variance: 0.34\",\"Mean: 12.4 <br />Variance: 19.61\",\"Mean: 12.4 <br />Variance: 17.45\",\"Mean: 14.23 <br />Variance: 31.28\",\"Mean: 9.4 <br />Variance: 1.9\",\"Mean: 13.67 <br />Variance: 21.93\",\"Mean: 13.07 <br />Variance: 24.33\",\"Mean: 12.26 <br />Variance: 15.23\",\"Mean: 14.78 <br />Variance: 11.99\",\"Mean: 11.98 <br />Variance: 11.36\",\"Mean: 14.97 <br />Variance: 19.66\",\"Mean: 14.82 <br />Variance: 12.34\",\"Mean: 15 <br />Variance: 15.33\",\"Mean: 13.01 <br />Variance: 17.1\",\"Mean: 12.95 <br />Variance: 14.59\",\"Mean: 17.68 <br />Variance: 0.11\",\"Mean: 12.22 <br />Variance: 17.05\",\"Mean: 12.63 <br />Variance: 11.97\",\"Mean: 15.52 <br />Variance: 6.24\",\"Mean: 15.4 <br />Variance: 24.49\",\"Mean: 11.72 <br />Variance: 17\",\"Mean: 16.02 <br />Variance: 10.88\",\"Mean: 15.7 <br />Variance: 6.46\"],\"frame\":\"970\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"980\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927,13.2851929866638,15.3695719450044,14.4459613543841,17.3006947978765,12.8891125909971,15.0331603308827,13.2054270096697,15.5856677575946,15.2051287372861,14.8196306940205,16.1631067468124,15.3599671371452,12.6592193382426,12.9214914940341,10.9621627646124,14.391371590318,12.7733783723621,8.82272025205295,13.7102812918842,12.0541193744177,15.4283675568904,16.1847309209782,12.8742074982595,13.3803330064499,10.815508421524,16.7022070194263,12.7919947651473,14.7660807549922,13.8725256106499,9.46772578621262,11.4242472040732,13.940712585737,13.0070703385898,14.1193610757061,14.012491484604,12.9995863865027,13.7545635545606,18.1449373648727,12.4010215052769,12.3957043778212,14.2345478269609,9.40337271238869,13.668621448493,13.0696102139665,12.2626034684959,14.7790016504005,11.980815899315,14.974995721293,14.8188150566672,15.0049385511056,13.0129670087957,12.9524452451709,17.677421507408,12.2151135347687,12.6275810190037,15.5185111236049,15.3961045681409,11.7206492958625,16.0151857358609,15.6954468216701,15.6830938351203,13.7737810975369,17.0294754077116,13.8028275023401,14.8132583479551,12.1409441635177,13.9006775078297,10.3950024589752,12.5870084873251,13.9994892421814],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552,26.5591603033638,19.335835459262,20.7036235465066,0.208641387288052,20.6115442876446,12.7430887403933,20.5868427324115,16.364575788813,17.9625945067458,17.7315741346053,18.9574728157458,19.4296327887366,22.0681953325355,17.9654269464216,13.4525509909972,18.5114212073831,16.8024391866228,1.49471807338387,15.7960076004629,14.038998882859,11.1617045917126,14.2045809720534,19.5632156615578,17.6166565086691,15.0506230826099,14.1553483813581,10.2206093982834,20.212610818768,30.5173794848566,1.45950691630166,21.2344286193916,23.838169530659,20.0523158110267,11.6492829090518,20.1413206637129,22.1840083959358,13.748688955124,0.338829419423433,19.6087106664744,17.4529740894337,31.2835480800128,1.90105497935151,21.9318114025957,24.3260109476153,15.2280733289853,11.9927361295099,11.3623730150741,19.662961878407,12.3355288101397,15.3266933291041,17.1049680715165,14.588298232003,0.107379516433379,17.0536408699266,11.9679001999832,6.23939213581793,24.4908365884475,16.9957838212789,10.884831591684,6.45722925044353,12.471691707927,21.084650646786,6.37366885116658,22.9766834624955,17.0640291935766,18.3349115090502,21.8509835261901,0.955853402053476,16.275626672941,24.0327820881977],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8,7,8,2,5,7,3,2,4,8,2,5,8,6,8,10,2,9,3,9,3],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8,7,8,2,5,7,3,2,4,8,2,5,8,6,8,10,2,9,3,9,3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\",\"Mean: 13.29 <br />Variance: 26.56\",\"Mean: 15.37 <br />Variance: 19.34\",\"Mean: 14.45 <br />Variance: 20.7\",\"Mean: 17.3 <br />Variance: 0.21\",\"Mean: 12.89 <br />Variance: 20.61\",\"Mean: 15.03 <br />Variance: 12.74\",\"Mean: 13.21 <br />Variance: 20.59\",\"Mean: 15.59 <br />Variance: 16.36\",\"Mean: 15.21 <br />Variance: 17.96\",\"Mean: 14.82 <br />Variance: 17.73\",\"Mean: 16.16 <br />Variance: 18.96\",\"Mean: 15.36 <br />Variance: 19.43\",\"Mean: 12.66 <br />Variance: 22.07\",\"Mean: 12.92 <br />Variance: 17.97\",\"Mean: 10.96 <br />Variance: 13.45\",\"Mean: 14.39 <br />Variance: 18.51\",\"Mean: 12.77 <br />Variance: 16.8\",\"Mean: 8.82 <br />Variance: 1.49\",\"Mean: 13.71 <br />Variance: 15.8\",\"Mean: 12.05 <br />Variance: 14.04\",\"Mean: 15.43 <br />Variance: 11.16\",\"Mean: 16.18 <br />Variance: 14.2\",\"Mean: 12.87 <br />Variance: 19.56\",\"Mean: 13.38 <br />Variance: 17.62\",\"Mean: 10.82 <br />Variance: 15.05\",\"Mean: 16.7 <br />Variance: 14.16\",\"Mean: 12.79 <br />Variance: 10.22\",\"Mean: 14.77 <br />Variance: 20.21\",\"Mean: 13.87 <br />Variance: 30.52\",\"Mean: 9.47 <br />Variance: 1.46\",\"Mean: 11.42 <br />Variance: 21.23\",\"Mean: 13.94 <br />Variance: 23.84\",\"Mean: 13.01 <br />Variance: 20.05\",\"Mean: 14.12 <br />Variance: 11.65\",\"Mean: 14.01 <br />Variance: 20.14\",\"Mean: 13 <br />Variance: 22.18\",\"Mean: 13.75 <br />Variance: 13.75\",\"Mean: 18.14 <br />Variance: 0.34\",\"Mean: 12.4 <br />Variance: 19.61\",\"Mean: 12.4 <br />Variance: 17.45\",\"Mean: 14.23 <br />Variance: 31.28\",\"Mean: 9.4 <br />Variance: 1.9\",\"Mean: 13.67 <br />Variance: 21.93\",\"Mean: 13.07 <br />Variance: 24.33\",\"Mean: 12.26 <br />Variance: 15.23\",\"Mean: 14.78 <br />Variance: 11.99\",\"Mean: 11.98 <br />Variance: 11.36\",\"Mean: 14.97 <br />Variance: 19.66\",\"Mean: 14.82 <br />Variance: 12.34\",\"Mean: 15 <br />Variance: 15.33\",\"Mean: 13.01 <br />Variance: 17.1\",\"Mean: 12.95 <br />Variance: 14.59\",\"Mean: 17.68 <br />Variance: 0.11\",\"Mean: 12.22 <br />Variance: 17.05\",\"Mean: 12.63 <br />Variance: 11.97\",\"Mean: 15.52 <br />Variance: 6.24\",\"Mean: 15.4 <br />Variance: 24.49\",\"Mean: 11.72 <br />Variance: 17\",\"Mean: 16.02 <br />Variance: 10.88\",\"Mean: 15.7 <br />Variance: 6.46\",\"Mean: 15.68 <br />Variance: 12.47\",\"Mean: 13.77 <br />Variance: 21.08\",\"Mean: 17.03 <br />Variance: 6.37\",\"Mean: 13.8 <br />Variance: 22.98\",\"Mean: 14.81 <br />Variance: 17.06\",\"Mean: 12.14 <br />Variance: 18.33\",\"Mean: 13.9 <br />Variance: 21.85\",\"Mean: 10.4 <br />Variance: 0.96\",\"Mean: 12.59 <br />Variance: 16.28\",\"Mean: 14 <br />Variance: 24.03\"],\"frame\":\"980\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"990\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927,13.2851929866638,15.3695719450044,14.4459613543841,17.3006947978765,12.8891125909971,15.0331603308827,13.2054270096697,15.5856677575946,15.2051287372861,14.8196306940205,16.1631067468124,15.3599671371452,12.6592193382426,12.9214914940341,10.9621627646124,14.391371590318,12.7733783723621,8.82272025205295,13.7102812918842,12.0541193744177,15.4283675568904,16.1847309209782,12.8742074982595,13.3803330064499,10.815508421524,16.7022070194263,12.7919947651473,14.7660807549922,13.8725256106499,9.46772578621262,11.4242472040732,13.940712585737,13.0070703385898,14.1193610757061,14.012491484604,12.9995863865027,13.7545635545606,18.1449373648727,12.4010215052769,12.3957043778212,14.2345478269609,9.40337271238869,13.668621448493,13.0696102139665,12.2626034684959,14.7790016504005,11.980815899315,14.974995721293,14.8188150566672,15.0049385511056,13.0129670087957,12.9524452451709,17.677421507408,12.2151135347687,12.6275810190037,15.5185111236049,15.3961045681409,11.7206492958625,16.0151857358609,15.6954468216701,15.6830938351203,13.7737810975369,17.0294754077116,13.8028275023401,14.8132583479551,12.1409441635177,13.9006775078297,10.3950024589752,12.5870084873251,13.9994892421814,13.1465125122866,12.4918122232986,11.0933083618774,10.2519407957179,14.1059501058562,13.4002976804542,14.6040540739369,16.130622858654,9.85632641064244,12.7344953365197],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552,26.5591603033638,19.335835459262,20.7036235465066,0.208641387288052,20.6115442876446,12.7430887403933,20.5868427324115,16.364575788813,17.9625945067458,17.7315741346053,18.9574728157458,19.4296327887366,22.0681953325355,17.9654269464216,13.4525509909972,18.5114212073831,16.8024391866228,1.49471807338387,15.7960076004629,14.038998882859,11.1617045917126,14.2045809720534,19.5632156615578,17.6166565086691,15.0506230826099,14.1553483813581,10.2206093982834,20.212610818768,30.5173794848566,1.45950691630166,21.2344286193916,23.838169530659,20.0523158110267,11.6492829090518,20.1413206637129,22.1840083959358,13.748688955124,0.338829419423433,19.6087106664744,17.4529740894337,31.2835480800128,1.90105497935151,21.9318114025957,24.3260109476153,15.2280733289853,11.9927361295099,11.3623730150741,19.662961878407,12.3355288101397,15.3266933291041,17.1049680715165,14.588298232003,0.107379516433379,17.0536408699266,11.9679001999832,6.23939213581793,24.4908365884475,16.9957838212789,10.884831591684,6.45722925044353,12.471691707927,21.084650646786,6.37366885116658,22.9766834624955,17.0640291935766,18.3349115090502,21.8509835261901,0.955853402053476,16.275626672941,24.0327820881977,20.7338251339468,16.098787476293,11.9318482480831,1.46643845669488,19.7644436456831,20.4095158045324,11.4998578631633,15.3472272479616,0.865726282262343,25.4669716632679],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8,7,8,2,5,7,3,2,4,8,2,5,8,6,8,10,2,9,3,9,3,2,10,4,2,8,9,7,6,3,2],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8,7,8,2,5,7,3,2,4,8,2,5,8,6,8,10,2,9,3,9,3,2,10,4,2,8,9,7,6,3,2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\",\"Mean: 13.29 <br />Variance: 26.56\",\"Mean: 15.37 <br />Variance: 19.34\",\"Mean: 14.45 <br />Variance: 20.7\",\"Mean: 17.3 <br />Variance: 0.21\",\"Mean: 12.89 <br />Variance: 20.61\",\"Mean: 15.03 <br />Variance: 12.74\",\"Mean: 13.21 <br />Variance: 20.59\",\"Mean: 15.59 <br />Variance: 16.36\",\"Mean: 15.21 <br />Variance: 17.96\",\"Mean: 14.82 <br />Variance: 17.73\",\"Mean: 16.16 <br />Variance: 18.96\",\"Mean: 15.36 <br />Variance: 19.43\",\"Mean: 12.66 <br />Variance: 22.07\",\"Mean: 12.92 <br />Variance: 17.97\",\"Mean: 10.96 <br />Variance: 13.45\",\"Mean: 14.39 <br />Variance: 18.51\",\"Mean: 12.77 <br />Variance: 16.8\",\"Mean: 8.82 <br />Variance: 1.49\",\"Mean: 13.71 <br />Variance: 15.8\",\"Mean: 12.05 <br />Variance: 14.04\",\"Mean: 15.43 <br />Variance: 11.16\",\"Mean: 16.18 <br />Variance: 14.2\",\"Mean: 12.87 <br />Variance: 19.56\",\"Mean: 13.38 <br />Variance: 17.62\",\"Mean: 10.82 <br />Variance: 15.05\",\"Mean: 16.7 <br />Variance: 14.16\",\"Mean: 12.79 <br />Variance: 10.22\",\"Mean: 14.77 <br />Variance: 20.21\",\"Mean: 13.87 <br />Variance: 30.52\",\"Mean: 9.47 <br />Variance: 1.46\",\"Mean: 11.42 <br />Variance: 21.23\",\"Mean: 13.94 <br />Variance: 23.84\",\"Mean: 13.01 <br />Variance: 20.05\",\"Mean: 14.12 <br />Variance: 11.65\",\"Mean: 14.01 <br />Variance: 20.14\",\"Mean: 13 <br />Variance: 22.18\",\"Mean: 13.75 <br />Variance: 13.75\",\"Mean: 18.14 <br />Variance: 0.34\",\"Mean: 12.4 <br />Variance: 19.61\",\"Mean: 12.4 <br />Variance: 17.45\",\"Mean: 14.23 <br />Variance: 31.28\",\"Mean: 9.4 <br />Variance: 1.9\",\"Mean: 13.67 <br />Variance: 21.93\",\"Mean: 13.07 <br />Variance: 24.33\",\"Mean: 12.26 <br />Variance: 15.23\",\"Mean: 14.78 <br />Variance: 11.99\",\"Mean: 11.98 <br />Variance: 11.36\",\"Mean: 14.97 <br />Variance: 19.66\",\"Mean: 14.82 <br />Variance: 12.34\",\"Mean: 15 <br />Variance: 15.33\",\"Mean: 13.01 <br />Variance: 17.1\",\"Mean: 12.95 <br />Variance: 14.59\",\"Mean: 17.68 <br />Variance: 0.11\",\"Mean: 12.22 <br />Variance: 17.05\",\"Mean: 12.63 <br />Variance: 11.97\",\"Mean: 15.52 <br />Variance: 6.24\",\"Mean: 15.4 <br />Variance: 24.49\",\"Mean: 11.72 <br />Variance: 17\",\"Mean: 16.02 <br />Variance: 10.88\",\"Mean: 15.7 <br />Variance: 6.46\",\"Mean: 15.68 <br />Variance: 12.47\",\"Mean: 13.77 <br />Variance: 21.08\",\"Mean: 17.03 <br />Variance: 6.37\",\"Mean: 13.8 <br />Variance: 22.98\",\"Mean: 14.81 <br />Variance: 17.06\",\"Mean: 12.14 <br />Variance: 18.33\",\"Mean: 13.9 <br />Variance: 21.85\",\"Mean: 10.4 <br />Variance: 0.96\",\"Mean: 12.59 <br />Variance: 16.28\",\"Mean: 14 <br />Variance: 24.03\",\"Mean: 13.15 <br />Variance: 20.73\",\"Mean: 12.49 <br />Variance: 16.1\",\"Mean: 11.09 <br />Variance: 11.93\",\"Mean: 10.25 <br />Variance: 1.47\",\"Mean: 14.11 <br />Variance: 19.76\",\"Mean: 13.4 <br />Variance: 20.41\",\"Mean: 14.6 <br />Variance: 11.5\",\"Mean: 16.13 <br />Variance: 15.35\",\"Mean: 9.86 <br />Variance: 0.87\",\"Mean: 12.73 <br />Variance: 25.47\"],\"frame\":\"990\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1000\",\"data\":[{\"mode\":\"markers\",\"x\":[15.625940579061,12.626188480147,16.6195781039411,16.2647803207485,13.8799687396688,15.2826214703056,14.7425611651245,14.4351427464233,15.0785650071246,12.6595147853271,14.4200941411261,13.8701541327947,9.68418138309946,14.7352933037838,14.0821894804623,12.4069975138538,13.8517144261981,13.9448358726363,13.0802524828186,16.4969569602881,14.8829499043136,14.2964164765118,11.8681738676199,14.4763914840134,8.75556188737634,12.1390481308573,13.7332667080542,15.1656976961559,11.1117567362996,13.2484141236344,15.7026737480363,13.1846300061067,13.4893624568887,11.2773154603011,15.6440000553808,14.6912998993284,14.2386954709954,13.2367967325302,16.2558891834914,14.8211756529934,12.5304493710652,15.1081588075433,13.6770119501284,16.0906305306133,15.1606982784239,14.3163578579351,9.69660304709751,13.6861336311862,17.9948499253506,13.2521833668809,15.1305454757186,15.4022826775425,12.7914991070625,12.1771430089784,13.8815163031917,10.7034754618612,14.0094199881257,13.4675104232485,16.8586328639129,12.0035373724556,13.0260729312202,16.6378322304663,17.0676968918995,12.6436831693768,14.9206363330163,15.5615592418983,13.4337469561205,13.8305595198845,13.9760732484076,18.1818406512802,12.2815163244421,16.745914733496,14.7824797672103,15.5701244539567,12.8553183701192,13.2601387098512,8.39856481754623,13.7846840047045,13.8834202552274,15.897372210533,15.9057557791946,13.0848706594813,15.7153822036856,11.6964854994265,14.9219788220926,14.4917543073486,11.4403957328213,12.0115927102,18.7268168078026,14.4360125788776,10.0095593600141,14.5471291141221,13.2551881430571,14.9918989321118,13.1595181464202,13.8238267884148,14.3962202826764,12.6310879292298,14.1604633280371,10.0371059778964,14.8932951686192,12.9114928522527,14.3666784590717,16.0759546158689,14.5035378974673,14.3565229712167,14.3202756697902,15.771008594598,16.1839476969242,17.9178950733135,15.2575324784624,13.9100388134229,14.4680037873922,14.8028985751917,12.8938038936099,12.6425202346311,15.9599738992839,16.8850777347331,12.1812108959136,11.066259885917,12.1419747021316,11.1100165448907,15.5817800046924,13.5256086416716,14.3866177632881,14.2877255732795,14.9399048608108,18.2679216413595,13.9415275655323,12.014597518321,14.7810887783403,11.4758110377974,12.9919567461863,11.5858640418207,11.3184014081893,14.462328426299,9.71988194631091,13.2279249734933,15.0389902717634,15.5626892149711,11.6918527454777,12.6165291934304,13.1040283039742,14.9059444451082,13.7146007977508,14.0039839239271,12.1644643093103,14.2662395971149,13.5174877568256,9.63704801637055,11.2230454963859,13.8604034415435,14.8709763992255,18.2835941216295,13.0963375444319,12.1117952714745,12.8274051502458,14.3385892459154,17.9405685433672,15.1390834157793,14.4515658809614,15.0826074930641,13.5837581891003,17.1355915739888,13.9628650977155,14.7290557310624,17.749441925475,15.6057372873957,14.9262935351864,15.293503623083,15.2677336883271,14.6631221281929,15.5300687745088,14.2320883744998,12.5666770307391,13.6609022439524,9.19839657636261,15.2151860048691,12.9646784237996,15.3331313190021,16.6850743964734,13.3027700622607,12.6719795500821,15.9872197313793,14.4909039727381,14.0839878992447,12.6217876789833,14.3331798483774,16.1312375591769,19.2907405028761,10.6471970716963,11.7470504719838,13.26341273287,13.3190986439822,15.820954338053,15.7310939081712,14.4196521139812,16.8177808720237,12.2034028387094,13.847536130618,13.4946331338526,13.3993278696565,10.4733023878461,15.3097982956268,16.555609759144,10.4065963338062,16.2414778236175,16.7561662227552,15.2214220301654,15.2927523450031,14.5386416163044,14.0815736722081,10.673111679433,10.7656244946448,14.0080650621666,13.2375851621355,13.0082543180124,11.319006249174,13.2114694752327,15.9519802237495,14.4824776497582,13.9856442791601,13.0862956390424,15.908947842479,8.45173951592382,14.1079562713314,15.3445008307659,12.2698363259636,16.5010368080644,13.6477248633491,9.74594697488495,14.3331117794694,13.776528830642,16.2791437585395,10.0269851207667,12.2819085546418,11.1394384896683,11.1257062998579,15.659380105221,15.7567953924913,14.0380319124071,11.8211162265505,12.4295258072234,12.7112803985738,14.4003798401809,12.8228147491363,13.8998963070295,14.0075942362496,12.6271638613399,16.2509599701542,14.0795461624473,11.8890074765485,15.2927702695487,14.5784114530963,13.7701602779778,14.5749319024592,16.2578524531824,18.4758910355393,15.0534014383026,16.6311848937337,12.3870697323815,11.2899599248033,15.8822468632212,13.7646106039127,15.2198770226818,11.7004051851311,11.4291731722517,13.3792264176756,16.2617637095578,16.9314480047391,13.379717591771,14.2971483831944,10.9521127361633,11.9950878498224,15.53762560295,16.1513335148893,14.8907132133187,13.2348019377418,9.90524045497482,12.6005006932615,17.0013345766408,13.3822648075713,12.0507720823189,13.577059701997,13.8867582167599,16.3509930395918,13.494756672061,14.5012678629927,11.5209326541231,10.5877197456901,13.9817617991901,15.0238249973976,15.7014267957655,9.38201367863954,16.6024918125164,13.847340266248,13.2314294935392,11.351651827016,17.2712114742049,12.2288730952476,14.4093219571887,13.0930325110979,12.3820738251607,13.1710933684604,12.1184486549176,11.0249850539186,13.5367706563549,14.5632819385464,14.0178824902553,12.6775249949971,14.9379333456079,13.6796009351549,14.8522313974753,14.1052309827593,13.8688094281391,12.4422324758824,12.5229254189856,12.0355388318272,13.5954392323756,16.0708596264955,13.1111343382112,13.0489009004978,13.3514813810379,12.9935876137361,14.4950302053305,10.542049898479,13.6566587092798,13.7973412323897,15.1103102358094,13.822516097324,14.6478915339121,8.67079878863746,15.8869769736287,15.4233459039305,13.5852321835806,19.1502146252293,11.8682831479198,13.4063228025221,9.78218506772141,14.5124585146628,15.2680399218769,13.0868226689207,14.707837283217,15.3617971142792,12.5802424796661,16.9461348049636,12.5914816489628,15.6423138395657,13.8613144529183,10.0575451962328,9.64896921030577,13.7119135683627,15.1353388477801,13.5541326002,16.3853106832698,12.8559104651768,17.1331248277274,14.8154910638011,10.146007627302,11.0929880267952,13.4809177253828,11.7260960474394,13.9083449156195,13.1778179355281,13.7943115841312,13.1023154751644,15.4939967690218,12.4655943603491,16.4004066142797,11.2662442711856,8.51040744282301,14.2957687142567,12.6471342932366,16.7728492113883,17.1046551955431,14.1743782835411,11.5428629014275,15.8813805239077,19.428777243495,12.3578127378153,10.7936493539084,13.0643726276865,13.4353612410796,16.3180109693502,14.0252718951899,13.576076540337,14.768754338051,14.0970833707205,13.7531845297919,17.0122079740334,11.9047725321755,11.6747344645552,14.2921243051481,14.9535072343907,10.8339798576778,14.6857355994689,13.4857953230944,15.4387394058978,15.2909270481556,15.2068325131196,11.7047422117772,14.8420575053796,9.78533166990241,14.4501115284655,12.6389946008093,15.0779435706606,17.6608390390957,14.5587715302497,11.4568687474829,15.1354965121061,14.7317155068209,11.0618954927807,13.4566851844253,13.7373270090585,16.0267360186107,14.0684007349479,14.738150045899,14.8775002625383,10.4254522937202,14.6419478493495,14.2619429929713,11.7742474383322,14.5305730091687,13.5633358982364,12.969770510631,12.1588930697525,12.3827276641113,13.2102838744512,9.93033626629486,13.0980973485573,16.374055072917,14.7639238211953,16.6770377291492,14.3432458654069,9.22253249371916,13.117288358994,12.5438613705187,13.7322715706605,12.1899955944555,15.362718153484,14.3207880707718,11.7893254489864,11.2980838225934,13.2818616293282,14.9658194588121,13.2062103594485,16.9772075304589,11.676750883534,15.8993338989918,9.90765697684205,15.6265599420042,13.0620434791188,14.5664548575555,17.2075845819527,16.1579155218788,12.3680823625083,14.538356183076,11.9851996473842,12.7265379381095,14.5616186619221,16.2535702044149,16.7702119250708,15.3695226414758,9.6214448539563,14.0227189323595,14.1318916845266,15.5323327302237,13.4217323223556,13.1947742162228,13.4715308084361,13.9234097945809,16.4236126034487,13.2197145223769,12.0455990488373,13.5243027043342,14.9219219065948,11.8813501093886,11.2986055372539,13.2626130109482,15.0915956860125,16.0928398874178,18.0939047829722,12.8985846586425,13.8220988277723,17.4331340015491,12.6934704183138,15.0150383615957,11.4112935564147,14.2912776166918,12.2061329809194,11.7624098830167,13.7498759024414,13.245086267227,14.3943232063827,12.7590551775434,15.0785915637152,13.0961287744739,16.1475347457725,10.2217210869594,7.22279139500923,14.5850558163672,14.3254744248674,14.7605644859406,17.187772219624,14.5552115044033,18.186502722727,14.2628942512986,13.3434873297108,13.97806360484,15.9485377449677,12.324296899677,17.2699444359099,11.8190991713306,13.8283633155925,14.2512056635076,14.3747822152746,14.1498247150395,10.547447289761,15.1354824710331,12.4657199058392,9.25506149690221,12.015154914721,13.6038872998329,14.1830840917467,13.0932441015215,13.1002853382068,14.3334881424074,15.2567584288471,14.8148905531432,16.9096367934755,15.0672194678021,12.1764373042868,14.7468655809798,12.8809323518098,14.8371370112366,16.797062966866,15.5544428690361,13.6009585716863,13.783206522779,15.2405887614123,18.2022836433761,12.6653303034217,12.839474928487,14.0274266638839,12.8521624640474,13.6385491987607,16.589177796065,14.7020430067155,11.4832507309227,12.5966059290982,15.5236967475895,16.9622765367006,15.0328041546116,16.0905380875912,16.3681546940955,9.4767289965523,15.4773969259876,13.1373622977665,13.4371275312452,9.9074500480625,14.0770761019667,7.02530462043929,16.7258432007857,10.8264855018929,11.7380911395637,17.5072389743218,14.3387185189018,10.8474804431084,15.2213503706748,16.4175529085097,12.6279367138105,15.2308319119398,12.7997723342957,12.9580583403639,18.5763392829697,12.8389251898826,11.9012502887145,15.2388692405182,10.5258092818761,10.2183773337929,14.8790811568582,14.9532159644663,13.429556216529,13.1628554207849,12.9891610871675,13.5023572228985,12.1628728907718,12.990276699525,15.5244399293263,12.334337789579,13.0941759062354,14.5329407061429,13.2879252894067,7.74171282293319,9.56174262284971,16.7787329232214,10.8494388672007,17.3280182783855,18.1982206833954,13.6215406184762,13.0871169680399,15.5345133016104,12.7031122584011,12.5484328781683,13.9542289110361,14.2224915135109,13.2234196090848,11.9380476698438,13.5780852413861,13.0013994226519,11.1404330395365,13.722709946625,13.175999763326,10.7836644547359,15.3459693127303,11.1366412862661,16.81439123529,15.7597514421304,13.1721971990864,13.7065518299136,12.8586133737156,15.1469263980071,12.0810560022443,15.4718938474662,13.8394945865872,15.6748511452995,11.5930862516364,14.9417285476024,12.439058233559,9.46657483810839,10.4115758007519,17.2520322962218,14.0491028855518,17.6842058788333,16.2595656820965,13.1635039138405,13.8170716817717,13.1407303101626,14.4238549748182,14.9252062834432,14.4632591107171,14.9631218378866,8.88660340869419,14.3790662654692,13.159208744316,13.2021342107913,14.9900631996561,10.8180662921715,14.9668046716602,13.8746139967279,15.7927125228612,15.3117942295388,15.1603267063424,12.2516921489947,13.8580572440878,15.1356737958572,11.7926828497025,15.0797798886798,13.6269738559622,14.9337087541382,15.6230016394104,12.9563255348398,13.7262130934095,13.5326245711906,14.7300158919123,12.3989489159466,11.4806737651025,14.4375063346484,10.600364400961,11.8288868434289,15.5482832971733,14.1151583195292,14.2011573465232,13.2174121713189,13.7649566367876,19.7127959275871,13.5652474032383,14.9358162349887,15.8014037852198,13.6111426596297,15.2425789148673,15.4905751575457,13.3384161814608,15.5700885217863,14.79597644497,14.8736387806164,12.6700291403623,14.7235622707585,13.884002151446,13.1691827693157,9.77643786426107,13.273361737149,11.1187509011212,13.5877634230061,13.660585792767,12.1141826915708,13.0416665271398,14.8240835680492,14.521851081995,12.0301086842332,13.3572362173735,13.9476852742598,16.5188976291856,12.2124153430125,11.3095435104452,14.0470163834936,13.1551196460609,12.4422166257458,12.4735276248177,14.7285335007313,12.3189424987183,11.8459451965748,18.0357112854114,13.2047379003292,15.5660441000402,12.8525301807302,12.3734728663393,17.3809647833309,14.7765228956461,11.1457559973439,17.6261987790468,14.1528769030615,15.8960747617141,13.6667441976832,13.385085383852,11.7432756236112,13.8478940124063,11.4443269565034,13.754438681312,14.8796714531179,12.0599370745855,15.336051973216,13.3822903625797,13.1223895051481,15.6781568760222,14.2403984626245,12.7010374309134,17.3432556925206,15.126683883709,12.2218720749578,12.9705135636236,16.6147249727662,15.0898328077325,13.6959823890683,15.2517589617434,14.3580761499499,11.2971297826258,13.5414731105594,14.7131263842394,14.5427859880613,15.1020896650795,13.7964293766194,18.0817416315754,14.3685863528323,15.2022461087951,15.0311632054795,12.8279847814707,13.4433905419616,11.8386499007229,13.7150196972266,13.4276709534357,14.1212795339886,15.3710872668208,15.1292800273836,17.5536004812152,13.4231997772177,16.1199849807469,18.3943963206646,15.7701464254986,13.7823180049389,17.0300861990123,13.5451506614593,11.6706929687674,14.0361065200399,14.325537898339,12.4666048060626,12.227333162111,14.1772596809241,14.8886773872119,14.9478339592143,13.0951284389985,12.6225829833947,12.3068461013603,12.7990939483848,16.593514799643,15.5724889451113,10.0984586042399,15.7678524937938,15.304532556622,13.7650167955804,12.9025041323998,13.1810561673641,17.9882134672261,15.0817090504704,13.8177339157331,12.8776701921978,13.5916052908708,17.963616656975,14.0556237108128,11.970657245713,11.6911068577866,14.7428898809119,13.978619477576,11.8965850685882,13.4560439054314,10.8147691250109,13.794629700386,15.8874495388058,19.1212078031901,13.7938990235288,19.6805372442093,10.7025769919664,15.7106586459118,12.0909209284298,12.8734181183868,13.2862611057269,17.5592561974707,13.3740932656126,13.4965768340003,17.9838723930116,13.5329484070272,12.9699378503069,16.0059838104274,17.6782212545771,10.283287173945,15.5442571081736,18.1700727226945,15.8138068593545,13.4638491653386,12.6502898237421,15.4865686424509,14.9571896424506,16.7565372057201,13.0010394373921,10.8707032387882,14.1513819355393,13.7365706795863,16.1052594993367,11.040378557716,15.8005541024017,16.0222268938044,11.0472916117011,15.234381789594,16.6237671305207,12.7669867506894,14.9476231452606,13.9397965262362,16.3358929169544,13.4877992531649,12.1211868216419,16.0145636462752,14.5111253927925,14.0019058782433,11.0742044629671,15.2772939715557,18.5283895405446,13.7867549888412,16.5348063741886,10.1944686022182,10.0938909006264,13.1830934766979,18.2736520039034,12.8586078427528,13.9230309080806,15.8604869412172,19.0388890724675,18.1813492382797,10.7242501005983,12.9491442136819,15.1089727793858,11.9098250468038,9.6373063434246,13.8063519397714,13.8214848638102,13.6211064552089,12.8454143629668,11.8301156598008,14.4636736909819,17.333634344415,13.5923034937478,12.459505190923,15.2712274659703,15.0626531359969,13.0238454483853,13.2800355949638,14.2150234165253,8.44722671285847,9.19685836463809,13.2450799491871,12.7538346429348,12.0880105975596,12.7976932596301,13.3325672146766,14.7923072278471,12.5660740194477,14.5839364972199,12.913748743551,15.2774473858345,12.5155706469504,11.1018797230585,13.4370755038918,14.8844675338495,11.8525453647665,12.4625029894274,13.5312491965678,15.3081551179817,16.94913767459,14.641135076535,16.6278891732927,13.2851929866638,15.3695719450044,14.4459613543841,17.3006947978765,12.8891125909971,15.0331603308827,13.2054270096697,15.5856677575946,15.2051287372861,14.8196306940205,16.1631067468124,15.3599671371452,12.6592193382426,12.9214914940341,10.9621627646124,14.391371590318,12.7733783723621,8.82272025205295,13.7102812918842,12.0541193744177,15.4283675568904,16.1847309209782,12.8742074982595,13.3803330064499,10.815508421524,16.7022070194263,12.7919947651473,14.7660807549922,13.8725256106499,9.46772578621262,11.4242472040732,13.940712585737,13.0070703385898,14.1193610757061,14.012491484604,12.9995863865027,13.7545635545606,18.1449373648727,12.4010215052769,12.3957043778212,14.2345478269609,9.40337271238869,13.668621448493,13.0696102139665,12.2626034684959,14.7790016504005,11.980815899315,14.974995721293,14.8188150566672,15.0049385511056,13.0129670087957,12.9524452451709,17.677421507408,12.2151135347687,12.6275810190037,15.5185111236049,15.3961045681409,11.7206492958625,16.0151857358609,15.6954468216701,15.6830938351203,13.7737810975369,17.0294754077116,13.8028275023401,14.8132583479551,12.1409441635177,13.9006775078297,10.3950024589752,12.5870084873251,13.9994892421814,13.1465125122866,12.4918122232986,11.0933083618774,10.2519407957179,14.1059501058562,13.4002976804542,14.6040540739369,16.130622858654,9.85632641064244,12.7344953365197,11.2381287606482,15.7574137979064,13.8702778108934,13.7185875248914,12.7008106830612,12.1506264560787,14.334692985637,13.9556765391826,15.6177231586737,14.7537055296109],\"y\":[18.4996067868115,15.1909043775184,9.76017381430367,17.9466591130014,18.9697068855021,18.2973447470639,16.8777784732348,17.2723602772992,21.5424817882108,22.1841420448186,18.9971785397876,12.9951247163375,1.25507023200497,13.3670500090371,12.7693632907262,19.4077903836301,14.3193047078088,17.6304760624815,14.1974088841435,11.3955514109864,13.2191877340262,15.4440501493132,10.8373245951823,19.6648699162064,0.503629312665483,23.9118508736707,21.0593725143659,12.8251968575982,11.6584874179605,13.5572099529248,22.3644343445278,18.055672764807,21.6225165353778,15.4739844810109,17.7605604539847,16.6947968371141,15.1274805002653,22.668524757423,16.6717579403917,19.7491133524651,17.1523783726966,12.3337798454626,11.4433913522144,8.62180828679996,15.4895220019275,21.8909283565323,0.107125597683877,25.7669975312385,0.988019275294761,21.8970026963358,18.0067893770634,12.3986476832832,14.2922521496209,20.5382957635997,23.7368211912753,1.74367475715188,24.4258262363431,13.3819271090427,17.8228675997054,11.8418403554884,16.7780478350322,8.78120809482256,8.36274283907639,16.9206154617633,17.6772701308151,21.8667951249673,18.523712149402,12.5242359620474,21.1871156028912,0.33670998417368,16.2636904030554,4.45645206024902,0.407565069292625,14.017938843083,13.0255854924389,18.1782597276007,0.367102976830864,17.2509237096872,11.6730206068019,17.7195958012161,14.0225958253609,20.8212364508121,19.1394883192572,15.4536363538373,12.8420631695309,22.9414147605465,14.6072058983813,15.5162126763794,0.122339956762177,14.353178755209,16.0387718910284,20.2681720202291,24.5854370522624,13.7058969595652,13.5178004106017,17.0196537951208,25.0113890269336,16.3538561706652,20.9409068263122,1.25252643839032,17.5867129671188,22.5505766963247,16.4409457788636,22.8918177304908,22.7291449315142,12.6107221519105,16.6217441188629,12.3786830939929,11.4406895960857,1.23463419799063,19.0028986634387,26.6932315293998,19.5242041618646,13.8685547638709,17.5228988315295,20.7023301410771,12.4468759128705,10.2714336644444,19.8870006107179,24.0940144322537,20.0507196246058,33.218353597726,15.1573094824592,11.7225583708553,8.50567285001795,19.016886957728,30.0797067869829,0.333653101870986,15.2757711091722,17.4462245384921,19.1548739886002,8.12932576685305,24.678849551238,12.3787129489126,12.4455986023034,19.8386342130304,6.13014307522892,18.0105074068264,18.0763840326895,16.9070602653728,5.39423928479628,17.7084189252271,18.0924152052601,8.30584450871576,10.3505072108607,20.6002840955075,9.99012031361531,23.1441015073012,19.4927998433271,1.08988698543557,1.26900833959453,21.0851901078773,18.9148802411157,1.30183226973672,15.8633764312629,9.4534319035781,23.6030173574738,9.81057283660722,0.00416555398017095,15.3448839197427,19.6734489185197,24.260001761759,14.0156055010775,10.7176624717402,20.9752312930455,16.2704073478337,1.44262089765549,17.210336147155,13.3529248656329,25.8071542097268,14.4567636304149,14.1969895298732,12.4799292497176,15.554281411589,22.8021585723926,7.62848048885865,1.55971687640412,12.9490935204155,23.692967910654,17.71088956375,12.5124700279826,34.6983985510665,10.5034982671701,14.2991519996558,23.4998634414236,12.577833687287,18.6585349351844,19.7156758461247,22.0567064118528,1.11130770651539,19.3715315202656,12.3539481434891,27.4260303761082,28.3875951755839,15.4104438651647,11.9932960887633,24.5462951143861,15.8757201873656,11.8254568653303,16.5535396886004,22.7626796150204,22.5060722178941,0.0256137814070758,16.5137934498982,5.37881313924721,0.88616993427319,11.9909066826877,7.22405842587034,16.3601759447705,14.0976037153633,19.9736437911417,22.1210986475825,15.8502746882945,12.8659949878521,24.3035493516656,25.264378930245,19.5212463330977,16.6260137569774,26.6831758300995,16.0564503773184,22.2549591468488,11.6868385060948,18.7027847227676,12.0279332605095,0.085118068942484,17.3207205807687,16.7839376884105,14.9067064866075,3.36744589994321,20.4023128026199,1.20689157729958,21.3708082157151,15.9793163810099,15.9233053000334,0.490144388967626,16.8411175333025,19.9444635068864,8.83222649081786,11.0903041144035,2.60087823632497,21.9885596516351,22.1121904314247,16.4123629979625,13.0140965398447,13.0979730144667,20.4171120623582,24.0159745590831,21.2752736529194,21.0329297021344,11.9617584105098,17.4169784495037,17.0441376437853,19.9840666744284,21.8001133302993,22.6423168079333,11.3278973049167,12.2905788003153,0.475345836489465,22.2359320365979,0.0256180366984159,14.6068140786442,12.5381437267989,14.8894234412838,21.1798187367469,28.9029656043662,15.4907150443662,22.6194219703927,25.5517998526164,7.61934989964593,9.84554935876763,19.5168322688864,12.0508802217438,9.9034597852129,23.8826442369428,17.0728939770134,8.90341130814661,16.7703601872911,22.7302147084615,0.589309039369794,23.9356046123406,14.3483755592181,12.3704095392531,10.634511971296,15.4484316086182,20.0520475560311,12.7853349685759,20.7757093016039,13.477740026239,13.4634803732934,11.8749556287969,10.6121685730845,13.0426619641668,11.0657320351352,1.0995694426725,18.0106559929884,13.2304736122234,16.8324263822176,21.8442567041208,9.8265247201652,18.3804201489656,14.3463780052242,26.455820510023,24.5135218200338,7.4701779808411,14.194953234607,14.9719879890782,21.3988864205275,17.2450171435605,18.894487388088,20.3087906252357,21.768528466363,12.4698543582797,13.7889727845128,22.1123184338689,15.7190920206893,16.4674975120084,19.7918748126047,22.548181636238,22.3308771638629,14.1447771825747,13.7027152445022,14.6872569221059,18.7223416872251,15.5604106031847,23.3363080760747,11.5498793948098,21.6948305897908,14.5532259637715,19.2505465028631,19.1033860416438,21.4497807440739,0.341392171067628,8.45254787604831,15.9441308894534,14.8949597634728,1.62355298214012,23.0936041478805,15.9769480491542,0.588877112589459,16.0207103975356,12.1760789583814,15.7421926361353,12.9897828866015,9.8314771800926,16.3478118705778,8.27763759145035,17.7586159354092,15.9004602325002,24.5834166495921,18.0689079460216,0.534399756025486,20.7909860370979,10.934732329517,17.2977059736932,0.930111115632419,17.5493139716786,0.59823036967147,14.4309956913432,8.81086396615637,12.0501383179557,19.1665054988598,23.0529580809102,23.6628671114412,14.978508655551,29.8580681219375,13.6081733611181,1.82229813393596,15.8633893503369,13.1097847961062,15.5061745451101,0.269682717814793,25.4084768278054,24.4554874181918,11.2592365280443,0.464827448052769,24.3460407801122,4.40474528016697,16.53018228848,0.626531153412503,14.6761187039275,24.1238211796698,20.757696428684,16.342916721755,14.1883334778998,11.1839903613354,8.38132607482173,15.0148509056638,15.2504071391619,17.7459950697146,8.43701128275758,21.8394284178323,18.0906441160991,21.885130913679,14.5841361189474,18.0216469342816,19.5749381767283,14.5502798854905,14.4120899801916,11.0247729444112,14.8814834499547,5.33453255888836,18.5144336447186,5.43700406303157,14.219583945016,20.9131890783058,29.4828699115514,0.0967867383265458,18.5128498451911,22.6461237353012,16.2617369763168,18.3563633557624,12.7530414163881,18.9086006791511,26.4633648346355,11.6967547846443,18.1935968350496,26.874854147593,19.103140488651,12.1758859972631,21.8803751769521,14.6636733309547,17.588772955688,10.1290107504294,14.8963317454245,19.5704904632599,17.0784517530444,23.0352453155339,16.914468203342,0.267233750504603,18.738080934607,18.5574348692415,14.4820118926762,13.3002309181463,16.4489108765509,2.8165715034825,20.7599930161908,9.72658363048987,11.9769900245741,20.3694194154258,13.998632539718,11.8583203848938,2.88014195943952,14.9054235903828,17.3319366761617,19.4358387133105,18.156266444384,10.1648577484977,14.1382292364021,5.08513598202842,0.744642633585967,17.3492329391912,11.1344738800657,18.1773995766025,11.4484215030931,12.2518104930904,15.6663383651949,21.6012671373627,16.196225238028,23.5028428254095,19.9273121138633,14.5936616290816,9.96328822886477,12.2721073314435,9.50928022056212,13.9861811741087,19.0507711705727,14.2344499963608,23.729705805281,18.8259212946194,18.7566289611683,20.5057570559834,14.4887805241325,14.3111525119862,13.3308222443669,22.80484027029,17.4441492935421,22.3306616514373,17.4769117615651,26.5255700156192,15.4867941271598,9.71822935102068,0.155197586936667,20.9848515612598,15.9022537151428,0.0711926626468024,18.9784338145448,17.3425104559655,12.1964971017593,15.6190312705424,15.0799802212932,21.7889811927338,22.0888256952436,12.9712746120901,18.5948891529452,17.4279946526447,28.1332770593548,16.7268746838025,13.211589230247,1.39111099795053,1.48370814020566,16.1073083866325,20.4312429924721,14.7281549209081,5.73166166459916,16.5717511609185,0.588467405805135,9.65111887436434,18.3352342148357,20.836247840755,10.2393052747406,16.1591985722054,6.38988355892102,12.4385297349808,28.3185796280552,19.6219487687768,15.6168232316318,17.8389765567042,12.6159769986069,22.4305572459046,26.7089331246557,0.601647837704664,15.2878646684532,13.4078499167372,26.5571893889805,20.0719323816275,18.1740472414539,25.6686304988477,12.5196827882807,17.1360351370731,8.75708104655886,14.95217771213,9.00290134179779,15.9756681905251,15.7052869654738,19.8430641456042,9.56312656711966,14.1210348011434,18.0375093627796,17.049889666136,7.75889657395477,0.197861317773319,19.1465579773441,22.519868510393,18.4705024116482,15.8545262443995,25.0588119724008,1.3649010519834,19.8939368690808,11.5687272980542,26.8776977334944,14.5460947901745,12.4509523235829,15.8448500096906,6.57061705585066,13.842491182948,0.537640119760776,13.9580557074098,16.9783569735602,28.0143575902412,3.39949080391457,16.3458582973914,1.0416015278783,12.2775472640113,14.8974564073888,6.93721754934463,12.9318332536821,10.7982759800224,0.0277075671142082,20.0953019633237,7.81828309749245,15.8772354094704,21.7103691758181,18.7670349288468,15.7652141094572,1.00305679318513,15.2516916462202,19.8125199818167,13.1118588955181,1.14575909369983,2.19951318311837,14.1885017642394,13.4585952251365,20.2251009628694,15.7432055075603,20.4258781777712,20.3418625293508,7.03624322462572,16.6580827755149,19.215468610425,14.7309174371957,16.3774350572691,18.4363678826285,19.8802839141211,0.493995329057436,0.669538128925031,10.9846829036981,18.379501073511,0.288129579821631,0.686746067896872,14.753637123866,13.7205366850323,12.8671332931982,15.6816804212326,10.2317734301029,28.7282684276465,18.1241489904658,15.0957120039279,22.323280369006,15.9011162772766,19.3446814341962,4.19831253458557,23.986698760471,21.2250504932401,28.9449383066931,9.38375072308707,17.6769049372604,14.4867559171137,11.4602067449724,17.9793516301433,15.2801979994619,22.1587441028045,16.3981302071303,16.6952781445828,16.9500623402602,12.4759108489345,18.7858884768895,11.0767281266169,23.7918956038311,15.4354922070582,4.08299248860205,12.9803632071692,3.84205902232492,20.6024122003692,0.514899589019723,13.4987038731993,23.7072116484254,17.7199270600556,20.6775681827678,12.4250830764486,19.211149495145,20.4254278478707,16.1739588451409,0.0204815831436171,24.7401376592028,15.2793477282842,25.1037211160541,25.7340465113929,1.01540450225693,15.0771745276085,13.4296268648602,10.0052794331432,14.0493831535448,4.02398690620921,19.2235603085958,15.0721473474144,11.8000768049335,11.5719075949851,15.0483416496342,24.1766507781761,18.9404708331449,10.656270112479,18.6390107015031,22.2926913012502,16.5888914595874,22.7910734867595,18.5991615978245,8.35838952221655,15.8330610611024,10.9066711575437,10.1168527571868,18.9149969169507,16.6032717156917,20.9524870838779,4.85530571929464,17.595800892944,0.506382932055646,20.2694085514897,21.8162849916908,17.6282589699662,18.4690262659106,16.7636528524951,12.1861857679679,20.9012181946643,16.672017861274,19.3057688693748,6.22941931086882,11.9064628665004,14.627797899411,29.9594741136984,12.0995286526613,3.56469922755469,21.5380995752634,10.2987191502071,18.0272108381414,18.8541619758235,25.4200557849912,20.1179222065929,19.6012053555313,15.6691052599828,11.1482431188601,9.39812669817209,23.9609447461996,16.1587967243423,9.22834485905801,22.4830912107915,9.185060806182,17.8129888286641,21.1375563634433,17.3348890236778,18.9097808414542,14.9203027792938,16.250535950826,1.54012267335815,16.7532320658847,19.4507983810078,18.3264998492552,22.2698622352208,1.34673918929854,11.290621177277,10.2956260559658,5.91073358059824,18.2471261262781,13.9742077048991,19.3844052966932,15.5258231245404,13.5114774646398,22.616718135618,11.1894254467783,16.2591299019697,22.1818768299254,21.7846536379971,17.7664901638662,23.1848846503034,23.0898478206671,13.2462927148904,17.9943763498928,44.8407233024432,4.73322117856153,9.44051783480878,16.534184443267,11.0093175742644,7.79385144344121,21.4972679282067,24.5320190753711,18.9325477908361,20.7430070887798,22.7817433512541,17.2929594282347,17.9157754822883,20.9565656432455,17.6705000266174,22.1233234233338,0.087204383993381,10.0353775866591,14.9282317109265,14.2201677375807,18.3071148403081,17.7372040674317,17.9620911103875,18.4745722688542,16.5495645728789,18.0758970652415,15.4842166054357,15.8385367353347,0.041561799679447,17.6777314811572,13.363527376483,0.688432700334041,11.8237714388345,20.2024708363274,4.91825004525733,19.8120166174018,13.8597277338463,18.8437513642523,20.9008224413893,13.763806258455,18.4334379884417,22.6155911870589,20.3282103876646,19.0005299891184,18.6985941447589,23.437113515944,23.0504703548195,23.3605951451609,4.20968593256515,9.77590702094626,7.4585485617769,11.9783291516078,15.2914152509102,19.7173992414299,22.0793283544429,18.6443308515316,0.785212404430935,19.5987997068835,21.4713427244015,22.5367647149751,20.9241895874337,0.627364653073732,26.3957661495795,23.4764842302467,25.7017892597998,21.72257145042,21.6372380064899,16.6472633673623,17.3401717035438,7.09552958455934,22.5528953825894,19.8385766893142,0.0019480324384846,23.8565742676447,0.441412824801647,0.000464508112556394,13.591759911454,23.8106217366885,24.7751333740862,15.4827048210075,8.67688016408892,22.8581692089112,18.1105619798114,0.0511131556047167,22.4637066534257,24.7888502856481,12.3206683351914,9.86486305567463,8.24293826126708,13.8988897442339,1.41487780095652,17.23028087344,19.3295591349666,23.6668858099376,18.1296376255386,16.7468313895443,14.3635147852587,32.639493872186,23.9688494964042,22.4260613436749,28.7929373905071,19.0533565969279,12.1534227221864,12.3025932420605,11.5493073721388,19.4893031421888,13.6394847289893,14.4077672692603,17.0982757289322,21.1490627360369,24.4324996419854,13.2138552174925,18.774907935394,13.6653076130473,16.8808406928102,19.8539374285808,18.1449869437384,12.176855011724,11.5114676724758,0.481019067083246,15.9974621693251,12.6144865101578,1.33054777449743,2.07736873884665,21.1983731540296,0.375719852741825,15.7833243930449,16.8223675843024,16.09757231266,0.0014212166679212,0.246501048213991,0.0305137115635176,24.9963390511279,15.0528968972967,16.5328873277248,2.00759728354898,16.7606901802536,21.7577814436669,18.7705666757597,13.9461793236056,16.4863428347889,21.5261338580376,0.294190270505314,18.0703860005606,14.7512440946913,14.0003459970852,22.62282108137,15.5743502782464,12.3673177784383,23.6881473161773,0.0425811054304108,7.9419644554999,19.1375895326854,20.4523952446529,10.7220727501173,15.2454895745691,19.7627015432299,16.1169342281705,20.8438574214899,12.2307503974082,16.2445334656095,25.679342601551,24.9478036679106,9.27769774882184,25.8589869021362,14.76793681278,17.4148201519794,19.8455143341303,27.6046068091891,22.5685302636714,10.08985434638,17.40705278707,19.5195684652552,26.5591603033638,19.335835459262,20.7036235465066,0.208641387288052,20.6115442876446,12.7430887403933,20.5868427324115,16.364575788813,17.9625945067458,17.7315741346053,18.9574728157458,19.4296327887366,22.0681953325355,17.9654269464216,13.4525509909972,18.5114212073831,16.8024391866228,1.49471807338387,15.7960076004629,14.038998882859,11.1617045917126,14.2045809720534,19.5632156615578,17.6166565086691,15.0506230826099,14.1553483813581,10.2206093982834,20.212610818768,30.5173794848566,1.45950691630166,21.2344286193916,23.838169530659,20.0523158110267,11.6492829090518,20.1413206637129,22.1840083959358,13.748688955124,0.338829419423433,19.6087106664744,17.4529740894337,31.2835480800128,1.90105497935151,21.9318114025957,24.3260109476153,15.2280733289853,11.9927361295099,11.3623730150741,19.662961878407,12.3355288101397,15.3266933291041,17.1049680715165,14.588298232003,0.107379516433379,17.0536408699266,11.9679001999832,6.23939213581793,24.4908365884475,16.9957838212789,10.884831591684,6.45722925044353,12.471691707927,21.084650646786,6.37366885116658,22.9766834624955,17.0640291935766,18.3349115090502,21.8509835261901,0.955853402053476,16.275626672941,24.0327820881977,20.7338251339468,16.098787476293,11.9318482480831,1.46643845669488,19.7644436456831,20.4095158045324,11.4998578631633,15.3472272479616,0.865726282262343,25.4669716632679,19.9128310062752,16.0126995448318,10.5414206161858,18.09104734217,23.6715808824482,16.9223065974051,20.7285606335064,20.1415857155695,15.908031970387,13.8218863212505],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8,7,8,2,5,7,3,2,4,8,2,5,8,6,8,10,2,9,3,9,3,2,10,4,2,8,9,7,6,3,2,7,4,3,2,10,7,8,6,4,9],\"size\":20,\"opacity\":0.75,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[8,5,5,8,9,9,10,7,6,2,7,4,3,6,10,7,3,10,6,6,8,4,10,10,2,4,8,3,6,5,3,5,6,8,6,3,6,8,8,10,9,2,4,2,10,10,2,4,4,8,9,5,3,6,4,2,7,5,5,7,10,5,8,3,8,9,10,2,8,7,8,4,2,6,10,10,3,5,6,6,10,10,9,9,6,10,8,8,2,7,2,8,6,4,7,9,2,10,7,2,10,10,4,3,5,5,7,5,8,4,5,2,5,5,9,3,3,6,3,4,6,3,6,6,3,5,2,6,9,3,7,5,9,8,4,8,3,8,7,8,2,9,6,2,5,2,6,2,8,2,3,10,8,5,10,3,10,5,2,10,9,7,6,6,2,3,5,3,5,6,6,5,10,10,7,2,2,8,9,6,5,2,9,7,5,5,7,9,4,2,4,3,7,2,3,10,2,4,7,6,8,7,3,5,5,2,5,8,10,10,8,6,6,4,8,4,5,9,2,3,4,9,10,8,2,10,10,7,3,10,5,10,7,9,3,5,3,8,8,2,10,7,8,7,6,6,4,2,5,5,10,6,3,10,6,6,7,2,8,2,8,9,7,4,8,7,3,5,3,8,10,9,8,10,10,4,9,8,3,5,5,5,7,5,9,4,7,8,4,6,2,7,5,5,5,2,10,3,6,9,8,2,10,3,10,6,8,3,10,5,6,8,5,10,7,3,6,6,10,8,9,8,3,8,10,6,10,5,3,6,8,2,4,7,3,2,8,7,2,7,4,8,5,8,10,4,6,4,8,5,2,6,4,2,2,10,4,7,3,6,9,5,10,10,4,2,2,10,7,7,2,2,3,6,2,9,5,10,3,10,3,9,5,3,2,2,6,10,8,5,6,9,6,4,4,7,7,9,8,6,2,6,5,7,7,4,2,10,5,10,2,9,10,2,8,6,3,9,7,3,9,3,2,7,5,9,3,8,2,4,4,3,4,6,6,7,3,5,8,6,8,3,7,6,5,10,4,3,4,6,8,3,5,4,7,7,10,6,3,9,8,5,8,6,10,9,10,4,5,8,2,9,7,9,10,7,3,7,5,2,8,2,9,6,2,7,9,4,9,4,10,10,10,9,5,4,9,6,3,2,8,10,9,9,6,3,2,6,2,6,8,7,4,7,8,5,10,8,10,8,4,3,4,2,7,7,8,9,5,7,9,6,4,2,7,7,3,9,9,5,2,6,9,9,10,8,2,9,5,2,6,6,5,5,10,2,5,9,9,3,10,2,5,6,3,4,4,2,7,4,6,5,10,7,3,5,10,10,2,3,9,5,10,9,5,10,6,9,8,8,9,7,7,2,2,8,9,2,2,4,2,10,9,5,7,6,6,6,6,7,3,10,7,3,3,7,9,6,10,5,9,6,9,7,3,10,5,3,6,5,2,4,7,3,10,6,7,5,2,5,6,4,2,9,8,10,6,3,10,2,10,6,2,5,6,3,8,8,4,8,3,7,4,10,6,10,4,7,6,3,4,7,7,2,6,2,5,10,8,5,3,6,6,7,7,2,6,2,8,9,6,6,7,6,9,6,10,9,4,9,2,7,5,5,3,3,10,5,5,2,3,3,4,9,7,9,5,4,8,8,8,7,8,8,10,6,10,5,6,9,8,3,5,9,3,5,2,4,5,7,8,5,10,10,4,9,4,2,7,9,6,6,2,5,4,10,8,7,4,10,9,3,10,7,2,6,3,5,9,10,5,10,6,2,7,5,9,4,2,7,10,8,10,8,3,3,7,5,8,10,10,10,5,6,6,9,9,4,2,9,6,9,4,6,10,4,9,4,2,7,2,2,2,4,10,10,9,2,4,3,6,2,6,5,2,6,9,4,4,5,3,8,8,6,3,9,4,4,6,5,6,5,6,9,6,8,5,9,9,6,10,7,7,5,9,3,2,7,2,6,5,3,10,4,6,2,3,2,2,5,4,3,5,10,9,9,7,8,2,9,9,8,3,10,3,4,4,4,6,7,10,8,5,3,5,5,10,2,7,7,10,3,9,8,4,7,4,9,9,8,6,6,2,7,8,9,6,4,8,4,10,7,10,4,5,6,5,5,9,5,9,8,10,5,4,7,3,7,4,7,8,8,8,6,9,5,4,5,9,10,6,10,5,6,7,4,4,6,8,7,8,2,5,7,3,2,4,8,2,5,8,6,8,10,2,9,3,9,3,2,10,4,2,8,9,7,6,3,2,7,4,3,2,10,7,8,6,4,9]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Mean: 15.63 <br />Variance: 18.5\",\"Mean: 12.63 <br />Variance: 15.19\",\"Mean: 16.62 <br />Variance: 9.76\",\"Mean: 16.26 <br />Variance: 17.95\",\"Mean: 13.88 <br />Variance: 18.97\",\"Mean: 15.28 <br />Variance: 18.3\",\"Mean: 14.74 <br />Variance: 16.88\",\"Mean: 14.44 <br />Variance: 17.27\",\"Mean: 15.08 <br />Variance: 21.54\",\"Mean: 12.66 <br />Variance: 22.18\",\"Mean: 14.42 <br />Variance: 19\",\"Mean: 13.87 <br />Variance: 13\",\"Mean: 9.68 <br />Variance: 1.26\",\"Mean: 14.74 <br />Variance: 13.37\",\"Mean: 14.08 <br />Variance: 12.77\",\"Mean: 12.41 <br />Variance: 19.41\",\"Mean: 13.85 <br />Variance: 14.32\",\"Mean: 13.94 <br />Variance: 17.63\",\"Mean: 13.08 <br />Variance: 14.2\",\"Mean: 16.5 <br />Variance: 11.4\",\"Mean: 14.88 <br />Variance: 13.22\",\"Mean: 14.3 <br />Variance: 15.44\",\"Mean: 11.87 <br />Variance: 10.84\",\"Mean: 14.48 <br />Variance: 19.66\",\"Mean: 8.76 <br />Variance: 0.5\",\"Mean: 12.14 <br />Variance: 23.91\",\"Mean: 13.73 <br />Variance: 21.06\",\"Mean: 15.17 <br />Variance: 12.83\",\"Mean: 11.11 <br />Variance: 11.66\",\"Mean: 13.25 <br />Variance: 13.56\",\"Mean: 15.7 <br />Variance: 22.36\",\"Mean: 13.18 <br />Variance: 18.06\",\"Mean: 13.49 <br />Variance: 21.62\",\"Mean: 11.28 <br />Variance: 15.47\",\"Mean: 15.64 <br />Variance: 17.76\",\"Mean: 14.69 <br />Variance: 16.69\",\"Mean: 14.24 <br />Variance: 15.13\",\"Mean: 13.24 <br />Variance: 22.67\",\"Mean: 16.26 <br />Variance: 16.67\",\"Mean: 14.82 <br />Variance: 19.75\",\"Mean: 12.53 <br />Variance: 17.15\",\"Mean: 15.11 <br />Variance: 12.33\",\"Mean: 13.68 <br />Variance: 11.44\",\"Mean: 16.09 <br />Variance: 8.62\",\"Mean: 15.16 <br />Variance: 15.49\",\"Mean: 14.32 <br />Variance: 21.89\",\"Mean: 9.7 <br />Variance: 0.11\",\"Mean: 13.69 <br />Variance: 25.77\",\"Mean: 17.99 <br />Variance: 0.99\",\"Mean: 13.25 <br />Variance: 21.9\",\"Mean: 15.13 <br />Variance: 18.01\",\"Mean: 15.4 <br />Variance: 12.4\",\"Mean: 12.79 <br />Variance: 14.29\",\"Mean: 12.18 <br />Variance: 20.54\",\"Mean: 13.88 <br />Variance: 23.74\",\"Mean: 10.7 <br />Variance: 1.74\",\"Mean: 14.01 <br />Variance: 24.43\",\"Mean: 13.47 <br />Variance: 13.38\",\"Mean: 16.86 <br />Variance: 17.82\",\"Mean: 12 <br />Variance: 11.84\",\"Mean: 13.03 <br />Variance: 16.78\",\"Mean: 16.64 <br />Variance: 8.78\",\"Mean: 17.07 <br />Variance: 8.36\",\"Mean: 12.64 <br />Variance: 16.92\",\"Mean: 14.92 <br />Variance: 17.68\",\"Mean: 15.56 <br />Variance: 21.87\",\"Mean: 13.43 <br />Variance: 18.52\",\"Mean: 13.83 <br />Variance: 12.52\",\"Mean: 13.98 <br />Variance: 21.19\",\"Mean: 18.18 <br />Variance: 0.34\",\"Mean: 12.28 <br />Variance: 16.26\",\"Mean: 16.75 <br />Variance: 4.46\",\"Mean: 14.78 <br />Variance: 0.41\",\"Mean: 15.57 <br />Variance: 14.02\",\"Mean: 12.86 <br />Variance: 13.03\",\"Mean: 13.26 <br />Variance: 18.18\",\"Mean: 8.4 <br />Variance: 0.37\",\"Mean: 13.78 <br />Variance: 17.25\",\"Mean: 13.88 <br />Variance: 11.67\",\"Mean: 15.9 <br />Variance: 17.72\",\"Mean: 15.91 <br />Variance: 14.02\",\"Mean: 13.08 <br />Variance: 20.82\",\"Mean: 15.72 <br />Variance: 19.14\",\"Mean: 11.7 <br />Variance: 15.45\",\"Mean: 14.92 <br />Variance: 12.84\",\"Mean: 14.49 <br />Variance: 22.94\",\"Mean: 11.44 <br />Variance: 14.61\",\"Mean: 12.01 <br />Variance: 15.52\",\"Mean: 18.73 <br />Variance: 0.12\",\"Mean: 14.44 <br />Variance: 14.35\",\"Mean: 10.01 <br />Variance: 16.04\",\"Mean: 14.55 <br />Variance: 20.27\",\"Mean: 13.26 <br />Variance: 24.59\",\"Mean: 14.99 <br />Variance: 13.71\",\"Mean: 13.16 <br />Variance: 13.52\",\"Mean: 13.82 <br />Variance: 17.02\",\"Mean: 14.4 <br />Variance: 25.01\",\"Mean: 12.63 <br />Variance: 16.35\",\"Mean: 14.16 <br />Variance: 20.94\",\"Mean: 10.04 <br />Variance: 1.25\",\"Mean: 14.89 <br />Variance: 17.59\",\"Mean: 12.91 <br />Variance: 22.55\",\"Mean: 14.37 <br />Variance: 16.44\",\"Mean: 16.08 <br />Variance: 22.89\",\"Mean: 14.5 <br />Variance: 22.73\",\"Mean: 14.36 <br />Variance: 12.61\",\"Mean: 14.32 <br />Variance: 16.62\",\"Mean: 15.77 <br />Variance: 12.38\",\"Mean: 16.18 <br />Variance: 11.44\",\"Mean: 17.92 <br />Variance: 1.23\",\"Mean: 15.26 <br />Variance: 19\",\"Mean: 13.91 <br />Variance: 26.69\",\"Mean: 14.47 <br />Variance: 19.52\",\"Mean: 14.8 <br />Variance: 13.87\",\"Mean: 12.89 <br />Variance: 17.52\",\"Mean: 12.64 <br />Variance: 20.7\",\"Mean: 15.96 <br />Variance: 12.45\",\"Mean: 16.89 <br />Variance: 10.27\",\"Mean: 12.18 <br />Variance: 19.89\",\"Mean: 11.07 <br />Variance: 24.09\",\"Mean: 12.14 <br />Variance: 20.05\",\"Mean: 11.11 <br />Variance: 33.22\",\"Mean: 15.58 <br />Variance: 15.16\",\"Mean: 13.53 <br />Variance: 11.72\",\"Mean: 14.39 <br />Variance: 8.51\",\"Mean: 14.29 <br />Variance: 19.02\",\"Mean: 14.94 <br />Variance: 30.08\",\"Mean: 18.27 <br />Variance: 0.33\",\"Mean: 13.94 <br />Variance: 15.28\",\"Mean: 12.01 <br />Variance: 17.45\",\"Mean: 14.78 <br />Variance: 19.15\",\"Mean: 11.48 <br />Variance: 8.13\",\"Mean: 12.99 <br />Variance: 24.68\",\"Mean: 11.59 <br />Variance: 12.38\",\"Mean: 11.32 <br />Variance: 12.45\",\"Mean: 14.46 <br />Variance: 19.84\",\"Mean: 9.72 <br />Variance: 6.13\",\"Mean: 13.23 <br />Variance: 18.01\",\"Mean: 15.04 <br />Variance: 18.08\",\"Mean: 15.56 <br />Variance: 16.91\",\"Mean: 11.69 <br />Variance: 5.39\",\"Mean: 12.62 <br />Variance: 17.71\",\"Mean: 13.1 <br />Variance: 18.09\",\"Mean: 14.91 <br />Variance: 8.31\",\"Mean: 13.71 <br />Variance: 10.35\",\"Mean: 14 <br />Variance: 20.6\",\"Mean: 12.16 <br />Variance: 9.99\",\"Mean: 14.27 <br />Variance: 23.14\",\"Mean: 13.52 <br />Variance: 19.49\",\"Mean: 9.64 <br />Variance: 1.09\",\"Mean: 11.22 <br />Variance: 1.27\",\"Mean: 13.86 <br />Variance: 21.09\",\"Mean: 14.87 <br />Variance: 18.91\",\"Mean: 18.28 <br />Variance: 1.3\",\"Mean: 13.1 <br />Variance: 15.86\",\"Mean: 12.11 <br />Variance: 9.45\",\"Mean: 12.83 <br />Variance: 23.6\",\"Mean: 14.34 <br />Variance: 9.81\",\"Mean: 17.94 <br />Variance: 0\",\"Mean: 15.14 <br />Variance: 15.34\",\"Mean: 14.45 <br />Variance: 19.67\",\"Mean: 15.08 <br />Variance: 24.26\",\"Mean: 13.58 <br />Variance: 14.02\",\"Mean: 17.14 <br />Variance: 10.72\",\"Mean: 13.96 <br />Variance: 20.98\",\"Mean: 14.73 <br />Variance: 16.27\",\"Mean: 17.75 <br />Variance: 1.44\",\"Mean: 15.61 <br />Variance: 17.21\",\"Mean: 14.93 <br />Variance: 13.35\",\"Mean: 15.29 <br />Variance: 25.81\",\"Mean: 15.27 <br />Variance: 14.46\",\"Mean: 14.66 <br />Variance: 14.2\",\"Mean: 15.53 <br />Variance: 12.48\",\"Mean: 14.23 <br />Variance: 15.55\",\"Mean: 12.57 <br />Variance: 22.8\",\"Mean: 13.66 <br />Variance: 7.63\",\"Mean: 9.2 <br />Variance: 1.56\",\"Mean: 15.22 <br />Variance: 12.95\",\"Mean: 12.96 <br />Variance: 23.69\",\"Mean: 15.33 <br />Variance: 17.71\",\"Mean: 16.69 <br />Variance: 12.51\",\"Mean: 13.3 <br />Variance: 34.7\",\"Mean: 12.67 <br />Variance: 10.5\",\"Mean: 15.99 <br />Variance: 14.3\",\"Mean: 14.49 <br />Variance: 23.5\",\"Mean: 14.08 <br />Variance: 12.58\",\"Mean: 12.62 <br />Variance: 18.66\",\"Mean: 14.33 <br />Variance: 19.72\",\"Mean: 16.13 <br />Variance: 22.06\",\"Mean: 19.29 <br />Variance: 1.11\",\"Mean: 10.65 <br />Variance: 19.37\",\"Mean: 11.75 <br />Variance: 12.35\",\"Mean: 13.26 <br />Variance: 27.43\",\"Mean: 13.32 <br />Variance: 28.39\",\"Mean: 15.82 <br />Variance: 15.41\",\"Mean: 15.73 <br />Variance: 11.99\",\"Mean: 14.42 <br />Variance: 24.55\",\"Mean: 16.82 <br />Variance: 15.88\",\"Mean: 12.2 <br />Variance: 11.83\",\"Mean: 13.85 <br />Variance: 16.55\",\"Mean: 13.49 <br />Variance: 22.76\",\"Mean: 13.4 <br />Variance: 22.51\",\"Mean: 10.47 <br />Variance: 0.03\",\"Mean: 15.31 <br />Variance: 16.51\",\"Mean: 16.56 <br />Variance: 5.38\",\"Mean: 10.41 <br />Variance: 0.89\",\"Mean: 16.24 <br />Variance: 11.99\",\"Mean: 16.76 <br />Variance: 7.22\",\"Mean: 15.22 <br />Variance: 16.36\",\"Mean: 15.29 <br />Variance: 14.1\",\"Mean: 14.54 <br />Variance: 19.97\",\"Mean: 14.08 <br />Variance: 22.12\",\"Mean: 10.67 <br />Variance: 15.85\",\"Mean: 10.77 <br />Variance: 12.87\",\"Mean: 14.01 <br />Variance: 24.3\",\"Mean: 13.24 <br />Variance: 25.26\",\"Mean: 13.01 <br />Variance: 19.52\",\"Mean: 11.32 <br />Variance: 16.63\",\"Mean: 13.21 <br />Variance: 26.68\",\"Mean: 15.95 <br />Variance: 16.06\",\"Mean: 14.48 <br />Variance: 22.25\",\"Mean: 13.99 <br />Variance: 11.69\",\"Mean: 13.09 <br />Variance: 18.7\",\"Mean: 15.91 <br />Variance: 12.03\",\"Mean: 8.45 <br />Variance: 0.09\",\"Mean: 14.11 <br />Variance: 17.32\",\"Mean: 15.34 <br />Variance: 16.78\",\"Mean: 12.27 <br />Variance: 14.91\",\"Mean: 16.5 <br />Variance: 3.37\",\"Mean: 13.65 <br />Variance: 20.4\",\"Mean: 9.75 <br />Variance: 1.21\",\"Mean: 14.33 <br />Variance: 21.37\",\"Mean: 13.78 <br />Variance: 15.98\",\"Mean: 16.28 <br />Variance: 15.92\",\"Mean: 10.03 <br />Variance: 0.49\",\"Mean: 12.28 <br />Variance: 16.84\",\"Mean: 11.14 <br />Variance: 19.94\",\"Mean: 11.13 <br />Variance: 8.83\",\"Mean: 15.66 <br />Variance: 11.09\",\"Mean: 15.76 <br />Variance: 2.6\",\"Mean: 14.04 <br />Variance: 21.99\",\"Mean: 11.82 <br />Variance: 22.11\",\"Mean: 12.43 <br />Variance: 16.41\",\"Mean: 12.71 <br />Variance: 13.01\",\"Mean: 14.4 <br />Variance: 13.1\",\"Mean: 12.82 <br />Variance: 20.42\",\"Mean: 13.9 <br />Variance: 24.02\",\"Mean: 14.01 <br />Variance: 21.28\",\"Mean: 12.63 <br />Variance: 21.03\",\"Mean: 16.25 <br />Variance: 11.96\",\"Mean: 14.08 <br />Variance: 17.42\",\"Mean: 11.89 <br />Variance: 17.04\",\"Mean: 15.29 <br />Variance: 19.98\",\"Mean: 14.58 <br />Variance: 21.8\",\"Mean: 13.77 <br />Variance: 22.64\",\"Mean: 14.57 <br />Variance: 11.33\",\"Mean: 16.26 <br />Variance: 12.29\",\"Mean: 18.48 <br />Variance: 0.48\",\"Mean: 15.05 <br />Variance: 22.24\",\"Mean: 16.63 <br />Variance: 0.03\",\"Mean: 12.39 <br />Variance: 14.61\",\"Mean: 11.29 <br />Variance: 12.54\",\"Mean: 15.88 <br />Variance: 14.89\",\"Mean: 13.76 <br />Variance: 21.18\",\"Mean: 15.22 <br />Variance: 28.9\",\"Mean: 11.7 <br />Variance: 15.49\",\"Mean: 11.43 <br />Variance: 22.62\",\"Mean: 13.38 <br />Variance: 25.55\",\"Mean: 16.26 <br />Variance: 7.62\",\"Mean: 16.93 <br />Variance: 9.85\",\"Mean: 13.38 <br />Variance: 19.52\",\"Mean: 14.3 <br />Variance: 12.05\",\"Mean: 10.95 <br />Variance: 9.9\",\"Mean: 12 <br />Variance: 23.88\",\"Mean: 15.54 <br />Variance: 17.07\",\"Mean: 16.15 <br />Variance: 8.9\",\"Mean: 14.89 <br />Variance: 16.77\",\"Mean: 13.23 <br />Variance: 22.73\",\"Mean: 9.91 <br />Variance: 0.59\",\"Mean: 12.6 <br />Variance: 23.94\",\"Mean: 17 <br />Variance: 14.35\",\"Mean: 13.38 <br />Variance: 12.37\",\"Mean: 12.05 <br />Variance: 10.63\",\"Mean: 13.58 <br />Variance: 15.45\",\"Mean: 13.89 <br />Variance: 20.05\",\"Mean: 16.35 <br />Variance: 12.79\",\"Mean: 13.49 <br />Variance: 20.78\",\"Mean: 14.5 <br />Variance: 13.48\",\"Mean: 11.52 <br />Variance: 13.46\",\"Mean: 10.59 <br />Variance: 11.87\",\"Mean: 13.98 <br />Variance: 10.61\",\"Mean: 15.02 <br />Variance: 13.04\",\"Mean: 15.7 <br />Variance: 11.07\",\"Mean: 9.38 <br />Variance: 1.1\",\"Mean: 16.6 <br />Variance: 18.01\",\"Mean: 13.85 <br />Variance: 13.23\",\"Mean: 13.23 <br />Variance: 16.83\",\"Mean: 11.35 <br />Variance: 21.84\",\"Mean: 17.27 <br />Variance: 9.83\",\"Mean: 12.23 <br />Variance: 18.38\",\"Mean: 14.41 <br />Variance: 14.35\",\"Mean: 13.09 <br />Variance: 26.46\",\"Mean: 12.38 <br />Variance: 24.51\",\"Mean: 13.17 <br />Variance: 7.47\",\"Mean: 12.12 <br />Variance: 14.19\",\"Mean: 11.02 <br />Variance: 14.97\",\"Mean: 13.54 <br />Variance: 21.4\",\"Mean: 14.56 <br />Variance: 17.25\",\"Mean: 14.02 <br />Variance: 18.89\",\"Mean: 12.68 <br />Variance: 20.31\",\"Mean: 14.94 <br />Variance: 21.77\",\"Mean: 13.68 <br />Variance: 12.47\",\"Mean: 14.85 <br />Variance: 13.79\",\"Mean: 14.11 <br />Variance: 22.11\",\"Mean: 13.87 <br />Variance: 15.72\",\"Mean: 12.44 <br />Variance: 16.47\",\"Mean: 12.52 <br />Variance: 19.79\",\"Mean: 12.04 <br />Variance: 22.55\",\"Mean: 13.6 <br />Variance: 22.33\",\"Mean: 16.07 <br />Variance: 14.14\",\"Mean: 13.11 <br />Variance: 13.7\",\"Mean: 13.05 <br />Variance: 14.69\",\"Mean: 13.35 <br />Variance: 18.72\",\"Mean: 12.99 <br />Variance: 15.56\",\"Mean: 14.5 <br />Variance: 23.34\",\"Mean: 10.54 <br />Variance: 11.55\",\"Mean: 13.66 <br />Variance: 21.69\",\"Mean: 13.8 <br />Variance: 14.55\",\"Mean: 15.11 <br />Variance: 19.25\",\"Mean: 13.82 <br />Variance: 19.1\",\"Mean: 14.65 <br />Variance: 21.45\",\"Mean: 8.67 <br />Variance: 0.34\",\"Mean: 15.89 <br />Variance: 8.45\",\"Mean: 15.42 <br />Variance: 15.94\",\"Mean: 13.59 <br />Variance: 14.89\",\"Mean: 19.15 <br />Variance: 1.62\",\"Mean: 11.87 <br />Variance: 23.09\",\"Mean: 13.41 <br />Variance: 15.98\",\"Mean: 9.78 <br />Variance: 0.59\",\"Mean: 14.51 <br />Variance: 16.02\",\"Mean: 15.27 <br />Variance: 12.18\",\"Mean: 13.09 <br />Variance: 15.74\",\"Mean: 14.71 <br />Variance: 12.99\",\"Mean: 15.36 <br />Variance: 9.83\",\"Mean: 12.58 <br />Variance: 16.35\",\"Mean: 16.95 <br />Variance: 8.28\",\"Mean: 12.59 <br />Variance: 17.76\",\"Mean: 15.64 <br />Variance: 15.9\",\"Mean: 13.86 <br />Variance: 24.58\",\"Mean: 10.06 <br />Variance: 18.07\",\"Mean: 9.65 <br />Variance: 0.53\",\"Mean: 13.71 <br />Variance: 20.79\",\"Mean: 15.14 <br />Variance: 10.93\",\"Mean: 13.55 <br />Variance: 17.3\",\"Mean: 16.39 <br />Variance: 0.93\",\"Mean: 12.86 <br />Variance: 17.55\",\"Mean: 17.13 <br />Variance: 0.6\",\"Mean: 14.82 <br />Variance: 14.43\",\"Mean: 10.15 <br />Variance: 8.81\",\"Mean: 11.09 <br />Variance: 12.05\",\"Mean: 13.48 <br />Variance: 19.17\",\"Mean: 11.73 <br />Variance: 23.05\",\"Mean: 13.91 <br />Variance: 23.66\",\"Mean: 13.18 <br />Variance: 14.98\",\"Mean: 13.79 <br />Variance: 29.86\",\"Mean: 13.1 <br />Variance: 13.61\",\"Mean: 15.49 <br />Variance: 1.82\",\"Mean: 12.47 <br />Variance: 15.86\",\"Mean: 16.4 <br />Variance: 13.11\",\"Mean: 11.27 <br />Variance: 15.51\",\"Mean: 8.51 <br />Variance: 0.27\",\"Mean: 14.3 <br />Variance: 25.41\",\"Mean: 12.65 <br />Variance: 24.46\",\"Mean: 16.77 <br />Variance: 11.26\",\"Mean: 17.1 <br />Variance: 0.46\",\"Mean: 14.17 <br />Variance: 24.35\",\"Mean: 11.54 <br />Variance: 4.4\",\"Mean: 15.88 <br />Variance: 16.53\",\"Mean: 19.43 <br />Variance: 0.63\",\"Mean: 12.36 <br />Variance: 14.68\",\"Mean: 10.79 <br />Variance: 24.12\",\"Mean: 13.06 <br />Variance: 20.76\",\"Mean: 13.44 <br />Variance: 16.34\",\"Mean: 16.32 <br />Variance: 14.19\",\"Mean: 14.03 <br />Variance: 11.18\",\"Mean: 13.58 <br />Variance: 8.38\",\"Mean: 14.77 <br />Variance: 15.01\",\"Mean: 14.1 <br />Variance: 15.25\",\"Mean: 13.75 <br />Variance: 17.75\",\"Mean: 17.01 <br />Variance: 8.44\",\"Mean: 11.9 <br />Variance: 21.84\",\"Mean: 11.67 <br />Variance: 18.09\",\"Mean: 14.29 <br />Variance: 21.89\",\"Mean: 14.95 <br />Variance: 14.58\",\"Mean: 10.83 <br />Variance: 18.02\",\"Mean: 14.69 <br />Variance: 19.57\",\"Mean: 13.49 <br />Variance: 14.55\",\"Mean: 15.44 <br />Variance: 14.41\",\"Mean: 15.29 <br />Variance: 11.02\",\"Mean: 15.21 <br />Variance: 14.88\",\"Mean: 11.7 <br />Variance: 5.33\",\"Mean: 14.84 <br />Variance: 18.51\",\"Mean: 9.79 <br />Variance: 5.44\",\"Mean: 14.45 <br />Variance: 14.22\",\"Mean: 12.64 <br />Variance: 20.91\",\"Mean: 15.08 <br />Variance: 29.48\",\"Mean: 17.66 <br />Variance: 0.1\",\"Mean: 14.56 <br />Variance: 18.51\",\"Mean: 11.46 <br />Variance: 22.65\",\"Mean: 15.14 <br />Variance: 16.26\",\"Mean: 14.73 <br />Variance: 18.36\",\"Mean: 11.06 <br />Variance: 12.75\",\"Mean: 13.46 <br />Variance: 18.91\",\"Mean: 13.74 <br />Variance: 26.46\",\"Mean: 16.03 <br />Variance: 11.7\",\"Mean: 14.07 <br />Variance: 18.19\",\"Mean: 14.74 <br />Variance: 26.87\",\"Mean: 14.88 <br />Variance: 19.1\",\"Mean: 10.43 <br />Variance: 12.18\",\"Mean: 14.64 <br />Variance: 21.88\",\"Mean: 14.26 <br />Variance: 14.66\",\"Mean: 11.77 <br />Variance: 17.59\",\"Mean: 14.53 <br />Variance: 10.13\",\"Mean: 13.56 <br />Variance: 14.9\",\"Mean: 12.97 <br />Variance: 19.57\",\"Mean: 12.16 <br />Variance: 17.08\",\"Mean: 12.38 <br />Variance: 23.04\",\"Mean: 13.21 <br />Variance: 16.91\",\"Mean: 9.93 <br />Variance: 0.27\",\"Mean: 13.1 <br />Variance: 18.74\",\"Mean: 16.37 <br />Variance: 18.56\",\"Mean: 14.76 <br />Variance: 14.48\",\"Mean: 16.68 <br />Variance: 13.3\",\"Mean: 14.34 <br />Variance: 16.45\",\"Mean: 9.22 <br />Variance: 2.82\",\"Mean: 13.12 <br />Variance: 20.76\",\"Mean: 12.54 <br />Variance: 9.73\",\"Mean: 13.73 <br />Variance: 11.98\",\"Mean: 12.19 <br />Variance: 20.37\",\"Mean: 15.36 <br />Variance: 14\",\"Mean: 14.32 <br />Variance: 11.86\",\"Mean: 11.79 <br />Variance: 2.88\",\"Mean: 11.3 <br />Variance: 14.91\",\"Mean: 13.28 <br />Variance: 17.33\",\"Mean: 14.97 <br />Variance: 19.44\",\"Mean: 13.21 <br />Variance: 18.16\",\"Mean: 16.98 <br />Variance: 10.16\",\"Mean: 11.68 <br />Variance: 14.14\",\"Mean: 15.9 <br />Variance: 5.09\",\"Mean: 9.91 <br />Variance: 0.74\",\"Mean: 15.63 <br />Variance: 17.35\",\"Mean: 13.06 <br />Variance: 11.13\",\"Mean: 14.57 <br />Variance: 18.18\",\"Mean: 17.21 <br />Variance: 11.45\",\"Mean: 16.16 <br />Variance: 12.25\",\"Mean: 12.37 <br />Variance: 15.67\",\"Mean: 14.54 <br />Variance: 21.6\",\"Mean: 11.99 <br />Variance: 16.2\",\"Mean: 12.73 <br />Variance: 23.5\",\"Mean: 14.56 <br />Variance: 19.93\",\"Mean: 16.25 <br />Variance: 14.59\",\"Mean: 16.77 <br />Variance: 9.96\",\"Mean: 15.37 <br />Variance: 12.27\",\"Mean: 9.62 <br />Variance: 9.51\",\"Mean: 14.02 <br />Variance: 13.99\",\"Mean: 14.13 <br />Variance: 19.05\",\"Mean: 15.53 <br />Variance: 14.23\",\"Mean: 13.42 <br />Variance: 23.73\",\"Mean: 13.19 <br />Variance: 18.83\",\"Mean: 13.47 <br />Variance: 18.76\",\"Mean: 13.92 <br />Variance: 20.51\",\"Mean: 16.42 <br />Variance: 14.49\",\"Mean: 13.22 <br />Variance: 14.31\",\"Mean: 12.05 <br />Variance: 13.33\",\"Mean: 13.52 <br />Variance: 22.8\",\"Mean: 14.92 <br />Variance: 17.44\",\"Mean: 11.88 <br />Variance: 22.33\",\"Mean: 11.3 <br />Variance: 17.48\",\"Mean: 13.26 <br />Variance: 26.53\",\"Mean: 15.09 <br />Variance: 15.49\",\"Mean: 16.09 <br />Variance: 9.72\",\"Mean: 18.09 <br />Variance: 0.16\",\"Mean: 12.9 <br />Variance: 20.98\",\"Mean: 13.82 <br />Variance: 15.9\",\"Mean: 17.43 <br />Variance: 0.07\",\"Mean: 12.69 <br />Variance: 18.98\",\"Mean: 15.02 <br />Variance: 17.34\",\"Mean: 11.41 <br />Variance: 12.2\",\"Mean: 14.29 <br />Variance: 15.62\",\"Mean: 12.21 <br />Variance: 15.08\",\"Mean: 11.76 <br />Variance: 21.79\",\"Mean: 13.75 <br />Variance: 22.09\",\"Mean: 13.25 <br />Variance: 12.97\",\"Mean: 14.39 <br />Variance: 18.59\",\"Mean: 12.76 <br />Variance: 17.43\",\"Mean: 15.08 <br />Variance: 28.13\",\"Mean: 13.1 <br />Variance: 16.73\",\"Mean: 16.15 <br />Variance: 13.21\",\"Mean: 10.22 <br />Variance: 1.39\",\"Mean: 7.22 <br />Variance: 1.48\",\"Mean: 14.59 <br />Variance: 16.11\",\"Mean: 14.33 <br />Variance: 20.43\",\"Mean: 14.76 <br />Variance: 14.73\",\"Mean: 17.19 <br />Variance: 5.73\",\"Mean: 14.56 <br />Variance: 16.57\",\"Mean: 18.19 <br />Variance: 0.59\",\"Mean: 14.26 <br />Variance: 9.65\",\"Mean: 13.34 <br />Variance: 18.34\",\"Mean: 13.98 <br />Variance: 20.84\",\"Mean: 15.95 <br />Variance: 10.24\",\"Mean: 12.32 <br />Variance: 16.16\",\"Mean: 17.27 <br />Variance: 6.39\",\"Mean: 11.82 <br />Variance: 12.44\",\"Mean: 13.83 <br />Variance: 28.32\",\"Mean: 14.25 <br />Variance: 19.62\",\"Mean: 14.37 <br />Variance: 15.62\",\"Mean: 14.15 <br />Variance: 17.84\",\"Mean: 10.55 <br />Variance: 12.62\",\"Mean: 15.14 <br />Variance: 22.43\",\"Mean: 12.47 <br />Variance: 26.71\",\"Mean: 9.26 <br />Variance: 0.6\",\"Mean: 12.02 <br />Variance: 15.29\",\"Mean: 13.6 <br />Variance: 13.41\",\"Mean: 14.18 <br />Variance: 26.56\",\"Mean: 13.09 <br />Variance: 20.07\",\"Mean: 13.1 <br />Variance: 18.17\",\"Mean: 14.33 <br />Variance: 25.67\",\"Mean: 15.26 <br />Variance: 12.52\",\"Mean: 14.81 <br />Variance: 17.14\",\"Mean: 16.91 <br />Variance: 8.76\",\"Mean: 15.07 <br />Variance: 14.95\",\"Mean: 12.18 <br />Variance: 9\",\"Mean: 14.75 <br />Variance: 15.98\",\"Mean: 12.88 <br />Variance: 15.71\",\"Mean: 14.84 <br />Variance: 19.84\",\"Mean: 16.8 <br />Variance: 9.56\",\"Mean: 15.55 <br />Variance: 14.12\",\"Mean: 13.6 <br />Variance: 18.04\",\"Mean: 13.78 <br />Variance: 17.05\",\"Mean: 15.24 <br />Variance: 7.76\",\"Mean: 18.2 <br />Variance: 0.2\",\"Mean: 12.67 <br />Variance: 19.15\",\"Mean: 12.84 <br />Variance: 22.52\",\"Mean: 14.03 <br />Variance: 18.47\",\"Mean: 12.85 <br />Variance: 15.85\",\"Mean: 13.64 <br />Variance: 25.06\",\"Mean: 16.59 <br />Variance: 1.36\",\"Mean: 14.7 <br />Variance: 19.89\",\"Mean: 11.48 <br />Variance: 11.57\",\"Mean: 12.6 <br />Variance: 26.88\",\"Mean: 15.52 <br />Variance: 14.55\",\"Mean: 16.96 <br />Variance: 12.45\",\"Mean: 15.03 <br />Variance: 15.84\",\"Mean: 16.09 <br />Variance: 6.57\",\"Mean: 16.37 <br />Variance: 13.84\",\"Mean: 9.48 <br />Variance: 0.54\",\"Mean: 15.48 <br />Variance: 13.96\",\"Mean: 13.14 <br />Variance: 16.98\",\"Mean: 13.44 <br />Variance: 28.01\",\"Mean: 9.91 <br />Variance: 3.4\",\"Mean: 14.08 <br />Variance: 16.35\",\"Mean: 7.03 <br />Variance: 1.04\",\"Mean: 16.73 <br />Variance: 12.28\",\"Mean: 10.83 <br />Variance: 14.9\",\"Mean: 11.74 <br />Variance: 6.94\",\"Mean: 17.51 <br />Variance: 12.93\",\"Mean: 14.34 <br />Variance: 10.8\",\"Mean: 10.85 <br />Variance: 0.03\",\"Mean: 15.22 <br />Variance: 20.1\",\"Mean: 16.42 <br />Variance: 7.82\",\"Mean: 12.63 <br />Variance: 15.88\",\"Mean: 15.23 <br />Variance: 21.71\",\"Mean: 12.8 <br />Variance: 18.77\",\"Mean: 12.96 <br />Variance: 15.77\",\"Mean: 18.58 <br />Variance: 1\",\"Mean: 12.84 <br />Variance: 15.25\",\"Mean: 11.9 <br />Variance: 19.81\",\"Mean: 15.24 <br />Variance: 13.11\",\"Mean: 10.53 <br />Variance: 1.15\",\"Mean: 10.22 <br />Variance: 2.2\",\"Mean: 14.88 <br />Variance: 14.19\",\"Mean: 14.95 <br />Variance: 13.46\",\"Mean: 13.43 <br />Variance: 20.23\",\"Mean: 13.16 <br />Variance: 15.74\",\"Mean: 12.99 <br />Variance: 20.43\",\"Mean: 13.5 <br />Variance: 20.34\",\"Mean: 12.16 <br />Variance: 7.04\",\"Mean: 12.99 <br />Variance: 16.66\",\"Mean: 15.52 <br />Variance: 19.22\",\"Mean: 12.33 <br />Variance: 14.73\",\"Mean: 13.09 <br />Variance: 16.38\",\"Mean: 14.53 <br />Variance: 18.44\",\"Mean: 13.29 <br />Variance: 19.88\",\"Mean: 7.74 <br />Variance: 0.49\",\"Mean: 9.56 <br />Variance: 0.67\",\"Mean: 16.78 <br />Variance: 10.98\",\"Mean: 10.85 <br />Variance: 18.38\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 18.2 <br />Variance: 0.69\",\"Mean: 13.62 <br />Variance: 14.75\",\"Mean: 13.09 <br />Variance: 13.72\",\"Mean: 15.53 <br />Variance: 12.87\",\"Mean: 12.7 <br />Variance: 15.68\",\"Mean: 12.55 <br />Variance: 10.23\",\"Mean: 13.95 <br />Variance: 28.73\",\"Mean: 14.22 <br />Variance: 18.12\",\"Mean: 13.22 <br />Variance: 15.1\",\"Mean: 11.94 <br />Variance: 22.32\",\"Mean: 13.58 <br />Variance: 15.9\",\"Mean: 13 <br />Variance: 19.34\",\"Mean: 11.14 <br />Variance: 4.2\",\"Mean: 13.72 <br />Variance: 23.99\",\"Mean: 13.18 <br />Variance: 21.23\",\"Mean: 10.78 <br />Variance: 28.94\",\"Mean: 15.35 <br />Variance: 9.38\",\"Mean: 11.14 <br />Variance: 17.68\",\"Mean: 16.81 <br />Variance: 14.49\",\"Mean: 15.76 <br />Variance: 11.46\",\"Mean: 13.17 <br />Variance: 17.98\",\"Mean: 13.71 <br />Variance: 15.28\",\"Mean: 12.86 <br />Variance: 22.16\",\"Mean: 15.15 <br />Variance: 16.4\",\"Mean: 12.08 <br />Variance: 16.7\",\"Mean: 15.47 <br />Variance: 16.95\",\"Mean: 13.84 <br />Variance: 12.48\",\"Mean: 15.67 <br />Variance: 18.79\",\"Mean: 11.59 <br />Variance: 11.08\",\"Mean: 14.94 <br />Variance: 23.79\",\"Mean: 12.44 <br />Variance: 15.44\",\"Mean: 9.47 <br />Variance: 4.08\",\"Mean: 10.41 <br />Variance: 12.98\",\"Mean: 17.25 <br />Variance: 3.84\",\"Mean: 14.05 <br />Variance: 20.6\",\"Mean: 17.68 <br />Variance: 0.51\",\"Mean: 16.26 <br />Variance: 13.5\",\"Mean: 13.16 <br />Variance: 23.71\",\"Mean: 13.82 <br />Variance: 17.72\",\"Mean: 13.14 <br />Variance: 20.68\",\"Mean: 14.42 <br />Variance: 12.43\",\"Mean: 14.93 <br />Variance: 19.21\",\"Mean: 14.46 <br />Variance: 20.43\",\"Mean: 14.96 <br />Variance: 16.17\",\"Mean: 8.89 <br />Variance: 0.02\",\"Mean: 14.38 <br />Variance: 24.74\",\"Mean: 13.16 <br />Variance: 15.28\",\"Mean: 13.2 <br />Variance: 25.1\",\"Mean: 14.99 <br />Variance: 25.73\",\"Mean: 10.82 <br />Variance: 1.02\",\"Mean: 14.97 <br />Variance: 15.08\",\"Mean: 13.87 <br />Variance: 13.43\",\"Mean: 15.79 <br />Variance: 10.01\",\"Mean: 15.31 <br />Variance: 14.05\",\"Mean: 15.16 <br />Variance: 4.02\",\"Mean: 12.25 <br />Variance: 19.22\",\"Mean: 13.86 <br />Variance: 15.07\",\"Mean: 15.14 <br />Variance: 11.8\",\"Mean: 11.79 <br />Variance: 11.57\",\"Mean: 15.08 <br />Variance: 15.05\",\"Mean: 13.63 <br />Variance: 24.18\",\"Mean: 14.93 <br />Variance: 18.94\",\"Mean: 15.62 <br />Variance: 10.66\",\"Mean: 12.96 <br />Variance: 18.64\",\"Mean: 13.73 <br />Variance: 22.29\",\"Mean: 13.53 <br />Variance: 16.59\",\"Mean: 14.73 <br />Variance: 22.79\",\"Mean: 12.4 <br />Variance: 18.6\",\"Mean: 11.48 <br />Variance: 8.36\",\"Mean: 14.44 <br />Variance: 15.83\",\"Mean: 10.6 <br />Variance: 10.91\",\"Mean: 11.83 <br />Variance: 10.12\",\"Mean: 15.55 <br />Variance: 18.91\",\"Mean: 14.12 <br />Variance: 16.6\",\"Mean: 14.2 <br />Variance: 20.95\",\"Mean: 13.22 <br />Variance: 4.86\",\"Mean: 13.76 <br />Variance: 17.6\",\"Mean: 19.71 <br />Variance: 0.51\",\"Mean: 13.57 <br />Variance: 20.27\",\"Mean: 14.94 <br />Variance: 21.82\",\"Mean: 15.8 <br />Variance: 17.63\",\"Mean: 13.61 <br />Variance: 18.47\",\"Mean: 15.24 <br />Variance: 16.76\",\"Mean: 15.49 <br />Variance: 12.19\",\"Mean: 13.34 <br />Variance: 20.9\",\"Mean: 15.57 <br />Variance: 16.67\",\"Mean: 14.8 <br />Variance: 19.31\",\"Mean: 14.87 <br />Variance: 6.23\",\"Mean: 12.67 <br />Variance: 11.91\",\"Mean: 14.72 <br />Variance: 14.63\",\"Mean: 13.88 <br />Variance: 29.96\",\"Mean: 13.17 <br />Variance: 12.1\",\"Mean: 9.78 <br />Variance: 3.56\",\"Mean: 13.27 <br />Variance: 21.54\",\"Mean: 11.12 <br />Variance: 10.3\",\"Mean: 13.59 <br />Variance: 18.03\",\"Mean: 13.66 <br />Variance: 18.85\",\"Mean: 12.11 <br />Variance: 25.42\",\"Mean: 13.04 <br />Variance: 20.12\",\"Mean: 14.82 <br />Variance: 19.6\",\"Mean: 14.52 <br />Variance: 15.67\",\"Mean: 12.03 <br />Variance: 11.15\",\"Mean: 13.36 <br />Variance: 9.4\",\"Mean: 13.95 <br />Variance: 23.96\",\"Mean: 16.52 <br />Variance: 16.16\",\"Mean: 12.21 <br />Variance: 9.23\",\"Mean: 11.31 <br />Variance: 22.48\",\"Mean: 14.05 <br />Variance: 9.19\",\"Mean: 13.16 <br />Variance: 17.81\",\"Mean: 12.44 <br />Variance: 21.14\",\"Mean: 12.47 <br />Variance: 17.33\",\"Mean: 14.73 <br />Variance: 18.91\",\"Mean: 12.32 <br />Variance: 14.92\",\"Mean: 11.85 <br />Variance: 16.25\",\"Mean: 18.04 <br />Variance: 1.54\",\"Mean: 13.2 <br />Variance: 16.75\",\"Mean: 15.57 <br />Variance: 19.45\",\"Mean: 12.85 <br />Variance: 18.33\",\"Mean: 12.37 <br />Variance: 22.27\",\"Mean: 17.38 <br />Variance: 1.35\",\"Mean: 14.78 <br />Variance: 11.29\",\"Mean: 11.15 <br />Variance: 10.3\",\"Mean: 17.63 <br />Variance: 5.91\",\"Mean: 14.15 <br />Variance: 18.25\",\"Mean: 15.9 <br />Variance: 13.97\",\"Mean: 13.67 <br />Variance: 19.38\",\"Mean: 13.39 <br />Variance: 15.53\",\"Mean: 11.74 <br />Variance: 13.51\",\"Mean: 13.85 <br />Variance: 22.62\",\"Mean: 11.44 <br />Variance: 11.19\",\"Mean: 13.75 <br />Variance: 16.26\",\"Mean: 14.88 <br />Variance: 22.18\",\"Mean: 12.06 <br />Variance: 21.78\",\"Mean: 15.34 <br />Variance: 17.77\",\"Mean: 13.38 <br />Variance: 23.18\",\"Mean: 13.12 <br />Variance: 23.09\",\"Mean: 15.68 <br />Variance: 13.25\",\"Mean: 14.24 <br />Variance: 17.99\",\"Mean: 12.7 <br />Variance: 44.84\",\"Mean: 17.34 <br />Variance: 4.73\",\"Mean: 15.13 <br />Variance: 9.44\",\"Mean: 12.22 <br />Variance: 16.53\",\"Mean: 12.97 <br />Variance: 11.01\",\"Mean: 16.61 <br />Variance: 7.79\",\"Mean: 15.09 <br />Variance: 21.5\",\"Mean: 13.7 <br />Variance: 24.53\",\"Mean: 15.25 <br />Variance: 18.93\",\"Mean: 14.36 <br />Variance: 20.74\",\"Mean: 11.3 <br />Variance: 22.78\",\"Mean: 13.54 <br />Variance: 17.29\",\"Mean: 14.71 <br />Variance: 17.92\",\"Mean: 14.54 <br />Variance: 20.96\",\"Mean: 15.1 <br />Variance: 17.67\",\"Mean: 13.8 <br />Variance: 22.12\",\"Mean: 18.08 <br />Variance: 0.09\",\"Mean: 14.37 <br />Variance: 10.04\",\"Mean: 15.2 <br />Variance: 14.93\",\"Mean: 15.03 <br />Variance: 14.22\",\"Mean: 12.83 <br />Variance: 18.31\",\"Mean: 13.44 <br />Variance: 17.74\",\"Mean: 11.84 <br />Variance: 17.96\",\"Mean: 13.72 <br />Variance: 18.47\",\"Mean: 13.43 <br />Variance: 16.55\",\"Mean: 14.12 <br />Variance: 18.08\",\"Mean: 15.37 <br />Variance: 15.48\",\"Mean: 15.13 <br />Variance: 15.84\",\"Mean: 17.55 <br />Variance: 0.04\",\"Mean: 13.42 <br />Variance: 17.68\",\"Mean: 16.12 <br />Variance: 13.36\",\"Mean: 18.39 <br />Variance: 0.69\",\"Mean: 15.77 <br />Variance: 11.82\",\"Mean: 13.78 <br />Variance: 20.2\",\"Mean: 17.03 <br />Variance: 4.92\",\"Mean: 13.55 <br />Variance: 19.81\",\"Mean: 11.67 <br />Variance: 13.86\",\"Mean: 14.04 <br />Variance: 18.84\",\"Mean: 14.33 <br />Variance: 20.9\",\"Mean: 12.47 <br />Variance: 13.76\",\"Mean: 12.23 <br />Variance: 18.43\",\"Mean: 14.18 <br />Variance: 22.62\",\"Mean: 14.89 <br />Variance: 20.33\",\"Mean: 14.95 <br />Variance: 19\",\"Mean: 13.1 <br />Variance: 18.7\",\"Mean: 12.62 <br />Variance: 23.44\",\"Mean: 12.31 <br />Variance: 23.05\",\"Mean: 12.8 <br />Variance: 23.36\",\"Mean: 16.59 <br />Variance: 4.21\",\"Mean: 15.57 <br />Variance: 9.78\",\"Mean: 10.1 <br />Variance: 7.46\",\"Mean: 15.77 <br />Variance: 11.98\",\"Mean: 15.3 <br />Variance: 15.29\",\"Mean: 13.77 <br />Variance: 19.72\",\"Mean: 12.9 <br />Variance: 22.08\",\"Mean: 13.18 <br />Variance: 18.64\",\"Mean: 17.99 <br />Variance: 0.79\",\"Mean: 15.08 <br />Variance: 19.6\",\"Mean: 13.82 <br />Variance: 21.47\",\"Mean: 12.88 <br />Variance: 22.54\",\"Mean: 13.59 <br />Variance: 20.92\",\"Mean: 17.96 <br />Variance: 0.63\",\"Mean: 14.06 <br />Variance: 26.4\",\"Mean: 11.97 <br />Variance: 23.48\",\"Mean: 11.69 <br />Variance: 25.7\",\"Mean: 14.74 <br />Variance: 21.72\",\"Mean: 13.98 <br />Variance: 21.64\",\"Mean: 11.9 <br />Variance: 16.65\",\"Mean: 13.46 <br />Variance: 17.34\",\"Mean: 10.81 <br />Variance: 7.1\",\"Mean: 13.79 <br />Variance: 22.55\",\"Mean: 15.89 <br />Variance: 19.84\",\"Mean: 19.12 <br />Variance: 0\",\"Mean: 13.79 <br />Variance: 23.86\",\"Mean: 19.68 <br />Variance: 0.44\",\"Mean: 10.7 <br />Variance: 0\",\"Mean: 15.71 <br />Variance: 13.59\",\"Mean: 12.09 <br />Variance: 23.81\",\"Mean: 12.87 <br />Variance: 24.78\",\"Mean: 13.29 <br />Variance: 15.48\",\"Mean: 17.56 <br />Variance: 8.68\",\"Mean: 13.37 <br />Variance: 22.86\",\"Mean: 13.5 <br />Variance: 18.11\",\"Mean: 17.98 <br />Variance: 0.05\",\"Mean: 13.53 <br />Variance: 22.46\",\"Mean: 12.97 <br />Variance: 24.79\",\"Mean: 16.01 <br />Variance: 12.32\",\"Mean: 17.68 <br />Variance: 9.86\",\"Mean: 10.28 <br />Variance: 8.24\",\"Mean: 15.54 <br />Variance: 13.9\",\"Mean: 18.17 <br />Variance: 1.41\",\"Mean: 15.81 <br />Variance: 17.23\",\"Mean: 13.46 <br />Variance: 19.33\",\"Mean: 12.65 <br />Variance: 23.67\",\"Mean: 15.49 <br />Variance: 18.13\",\"Mean: 14.96 <br />Variance: 16.75\",\"Mean: 16.76 <br />Variance: 14.36\",\"Mean: 13 <br />Variance: 32.64\",\"Mean: 10.87 <br />Variance: 23.97\",\"Mean: 14.15 <br />Variance: 22.43\",\"Mean: 13.74 <br />Variance: 28.79\",\"Mean: 16.11 <br />Variance: 19.05\",\"Mean: 11.04 <br />Variance: 12.15\",\"Mean: 15.8 <br />Variance: 12.3\",\"Mean: 16.02 <br />Variance: 11.55\",\"Mean: 11.05 <br />Variance: 19.49\",\"Mean: 15.23 <br />Variance: 13.64\",\"Mean: 16.62 <br />Variance: 14.41\",\"Mean: 12.77 <br />Variance: 17.1\",\"Mean: 14.95 <br />Variance: 21.15\",\"Mean: 13.94 <br />Variance: 24.43\",\"Mean: 16.34 <br />Variance: 13.21\",\"Mean: 13.49 <br />Variance: 18.77\",\"Mean: 12.12 <br />Variance: 13.67\",\"Mean: 16.01 <br />Variance: 16.88\",\"Mean: 14.51 <br />Variance: 19.85\",\"Mean: 14 <br />Variance: 18.14\",\"Mean: 11.07 <br />Variance: 12.18\",\"Mean: 15.28 <br />Variance: 11.51\",\"Mean: 18.53 <br />Variance: 0.48\",\"Mean: 13.79 <br />Variance: 16\",\"Mean: 16.53 <br />Variance: 12.61\",\"Mean: 10.19 <br />Variance: 1.33\",\"Mean: 10.09 <br />Variance: 2.08\",\"Mean: 13.18 <br />Variance: 21.2\",\"Mean: 18.27 <br />Variance: 0.38\",\"Mean: 12.86 <br />Variance: 15.78\",\"Mean: 13.92 <br />Variance: 16.82\",\"Mean: 15.86 <br />Variance: 16.1\",\"Mean: 19.04 <br />Variance: 0\",\"Mean: 18.18 <br />Variance: 0.25\",\"Mean: 10.72 <br />Variance: 0.03\",\"Mean: 12.95 <br />Variance: 25\",\"Mean: 15.11 <br />Variance: 15.05\",\"Mean: 11.91 <br />Variance: 16.53\",\"Mean: 9.64 <br />Variance: 2.01\",\"Mean: 13.81 <br />Variance: 16.76\",\"Mean: 13.82 <br />Variance: 21.76\",\"Mean: 13.62 <br />Variance: 18.77\",\"Mean: 12.85 <br />Variance: 13.95\",\"Mean: 11.83 <br />Variance: 16.49\",\"Mean: 14.46 <br />Variance: 21.53\",\"Mean: 17.33 <br />Variance: 0.29\",\"Mean: 13.59 <br />Variance: 18.07\",\"Mean: 12.46 <br />Variance: 14.75\",\"Mean: 15.27 <br />Variance: 14\",\"Mean: 15.06 <br />Variance: 22.62\",\"Mean: 13.02 <br />Variance: 15.57\",\"Mean: 13.28 <br />Variance: 12.37\",\"Mean: 14.22 <br />Variance: 23.69\",\"Mean: 8.45 <br />Variance: 0.04\",\"Mean: 9.2 <br />Variance: 7.94\",\"Mean: 13.25 <br />Variance: 19.14\",\"Mean: 12.75 <br />Variance: 20.45\",\"Mean: 12.09 <br />Variance: 10.72\",\"Mean: 12.8 <br />Variance: 15.25\",\"Mean: 13.33 <br />Variance: 19.76\",\"Mean: 14.79 <br />Variance: 16.12\",\"Mean: 12.57 <br />Variance: 20.84\",\"Mean: 14.58 <br />Variance: 12.23\",\"Mean: 12.91 <br />Variance: 16.24\",\"Mean: 15.28 <br />Variance: 25.68\",\"Mean: 12.52 <br />Variance: 24.95\",\"Mean: 11.1 <br />Variance: 9.28\",\"Mean: 13.44 <br />Variance: 25.86\",\"Mean: 14.88 <br />Variance: 14.77\",\"Mean: 11.85 <br />Variance: 17.41\",\"Mean: 12.46 <br />Variance: 19.85\",\"Mean: 13.53 <br />Variance: 27.6\",\"Mean: 15.31 <br />Variance: 22.57\",\"Mean: 16.95 <br />Variance: 10.09\",\"Mean: 14.64 <br />Variance: 17.41\",\"Mean: 16.63 <br />Variance: 19.52\",\"Mean: 13.29 <br />Variance: 26.56\",\"Mean: 15.37 <br />Variance: 19.34\",\"Mean: 14.45 <br />Variance: 20.7\",\"Mean: 17.3 <br />Variance: 0.21\",\"Mean: 12.89 <br />Variance: 20.61\",\"Mean: 15.03 <br />Variance: 12.74\",\"Mean: 13.21 <br />Variance: 20.59\",\"Mean: 15.59 <br />Variance: 16.36\",\"Mean: 15.21 <br />Variance: 17.96\",\"Mean: 14.82 <br />Variance: 17.73\",\"Mean: 16.16 <br />Variance: 18.96\",\"Mean: 15.36 <br />Variance: 19.43\",\"Mean: 12.66 <br />Variance: 22.07\",\"Mean: 12.92 <br />Variance: 17.97\",\"Mean: 10.96 <br />Variance: 13.45\",\"Mean: 14.39 <br />Variance: 18.51\",\"Mean: 12.77 <br />Variance: 16.8\",\"Mean: 8.82 <br />Variance: 1.49\",\"Mean: 13.71 <br />Variance: 15.8\",\"Mean: 12.05 <br />Variance: 14.04\",\"Mean: 15.43 <br />Variance: 11.16\",\"Mean: 16.18 <br />Variance: 14.2\",\"Mean: 12.87 <br />Variance: 19.56\",\"Mean: 13.38 <br />Variance: 17.62\",\"Mean: 10.82 <br />Variance: 15.05\",\"Mean: 16.7 <br />Variance: 14.16\",\"Mean: 12.79 <br />Variance: 10.22\",\"Mean: 14.77 <br />Variance: 20.21\",\"Mean: 13.87 <br />Variance: 30.52\",\"Mean: 9.47 <br />Variance: 1.46\",\"Mean: 11.42 <br />Variance: 21.23\",\"Mean: 13.94 <br />Variance: 23.84\",\"Mean: 13.01 <br />Variance: 20.05\",\"Mean: 14.12 <br />Variance: 11.65\",\"Mean: 14.01 <br />Variance: 20.14\",\"Mean: 13 <br />Variance: 22.18\",\"Mean: 13.75 <br />Variance: 13.75\",\"Mean: 18.14 <br />Variance: 0.34\",\"Mean: 12.4 <br />Variance: 19.61\",\"Mean: 12.4 <br />Variance: 17.45\",\"Mean: 14.23 <br />Variance: 31.28\",\"Mean: 9.4 <br />Variance: 1.9\",\"Mean: 13.67 <br />Variance: 21.93\",\"Mean: 13.07 <br />Variance: 24.33\",\"Mean: 12.26 <br />Variance: 15.23\",\"Mean: 14.78 <br />Variance: 11.99\",\"Mean: 11.98 <br />Variance: 11.36\",\"Mean: 14.97 <br />Variance: 19.66\",\"Mean: 14.82 <br />Variance: 12.34\",\"Mean: 15 <br />Variance: 15.33\",\"Mean: 13.01 <br />Variance: 17.1\",\"Mean: 12.95 <br />Variance: 14.59\",\"Mean: 17.68 <br />Variance: 0.11\",\"Mean: 12.22 <br />Variance: 17.05\",\"Mean: 12.63 <br />Variance: 11.97\",\"Mean: 15.52 <br />Variance: 6.24\",\"Mean: 15.4 <br />Variance: 24.49\",\"Mean: 11.72 <br />Variance: 17\",\"Mean: 16.02 <br />Variance: 10.88\",\"Mean: 15.7 <br />Variance: 6.46\",\"Mean: 15.68 <br />Variance: 12.47\",\"Mean: 13.77 <br />Variance: 21.08\",\"Mean: 17.03 <br />Variance: 6.37\",\"Mean: 13.8 <br />Variance: 22.98\",\"Mean: 14.81 <br />Variance: 17.06\",\"Mean: 12.14 <br />Variance: 18.33\",\"Mean: 13.9 <br />Variance: 21.85\",\"Mean: 10.4 <br />Variance: 0.96\",\"Mean: 12.59 <br />Variance: 16.28\",\"Mean: 14 <br />Variance: 24.03\",\"Mean: 13.15 <br />Variance: 20.73\",\"Mean: 12.49 <br />Variance: 16.1\",\"Mean: 11.09 <br />Variance: 11.93\",\"Mean: 10.25 <br />Variance: 1.47\",\"Mean: 14.11 <br />Variance: 19.76\",\"Mean: 13.4 <br />Variance: 20.41\",\"Mean: 14.6 <br />Variance: 11.5\",\"Mean: 16.13 <br />Variance: 15.35\",\"Mean: 9.86 <br />Variance: 0.87\",\"Mean: 12.73 <br />Variance: 25.47\",\"Mean: 11.24 <br />Variance: 19.91\",\"Mean: 15.76 <br />Variance: 16.01\",\"Mean: 13.87 <br />Variance: 10.54\",\"Mean: 13.72 <br />Variance: 18.09\",\"Mean: 12.7 <br />Variance: 23.67\",\"Mean: 12.15 <br />Variance: 16.92\",\"Mean: 14.33 <br />Variance: 20.73\",\"Mean: 13.96 <br />Variance: 20.14\",\"Mean: 15.62 <br />Variance: 15.91\",\"Mean: 14.75 <br />Variance: 13.82\"],\"frame\":\"1000\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]}],\"shinyEvents\":[\"plotly_hover\",\"plotly_click\",\"plotly_selected\",\"plotly_relayout\",\"plotly_brushed\",\"plotly_brushing\",\"plotly_clickannotation\",\"plotly_doubleclick\",\"plotly_deselect\",\"plotly_afterplot\",\"plotly_sunburstclick\"],\"base_url\":\"https://plot.ly\"},\"evals\":[],\"jsHooks\":[]}</script>\n</body>\n</html>\n"
  },
  {
    "path": "images/04_variance/static_bar.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<meta charset=\"utf-8\"/>\n<style>body{background-color:white;}</style>\n<script src=\"lib/htmlwidgets-1.5.4/htmlwidgets.js\"></script>\n<script src=\"lib/plotly-binding-4.10.0/plotly.js\"></script>\n<script src=\"lib/typedarray-0.1/typedarray.min.js\"></script>\n<script src=\"lib/jquery-3.5.1/jquery.min.js\"></script>\n<link href=\"lib/crosstalk-1.2.0/css/crosstalk.min.css\" rel=\"stylesheet\" />\n<script src=\"lib/crosstalk-1.2.0/js/crosstalk.min.js\"></script>\n<link href=\"lib/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css\" rel=\"stylesheet\" />\n<script src=\"lib/plotly-main-2.5.1/plotly-latest.min.js\"></script>\n\n</head>\n<body>\n<div id=\"htmlwidget-505c454e0b778758cbee\" style=\"width:650px;height:350px;\" class=\"plotly html-widget\"></div>\n<script type=\"application/json\" data-for=\"htmlwidget-505c454e0b778758cbee\">{\"x\":{\"visdat\":{\"1437b295dfe43\":[\"function () \",\"plotlyVisDat\"]},\"cur_data\":\"1437b295dfe43\",\"attrs\":{\"1437b295dfe43\":{\"x\":{},\"y\":{},\"marker\":{\"size\":2,\"opacity\":1},\"hoverinfo\":\"y\",\"color\":{},\"colors\":[\"midnightblue\",\"skyblue2\"],\"alpha_stroke\":1,\"sizes\":[10,100],\"spans\":[1,20],\"type\":\"bar\"}},\"layout\":{\"width\":650,\"height\":350,\"margin\":{\"b\":10,\"l\":100,\"t\":10,\"r\":100,\"pad\":4},\"autosize\":false,\"yaxis\":{\"domain\":[0,1],\"automargin\":true,\"range\":[0,90],\"zeroline\":false,\"title\":\"Biased Sample variance / Pop. variance (%)\"},\"xaxis\":{\"domain\":[0,1],\"automargin\":true,\"title\":\"Sample Size\"},\"hovermode\":\"closest\",\"showlegend\":false,\"legend\":{\"yanchor\":\"top\",\"y\":0.5}},\"source\":\"A\",\"config\":{\"modeBarButtonsToAdd\":[\"hoverclosest\",\"hovercompare\"],\"showSendToCloud\":false,\"displayModeBar\":false},\"data\":[{\"x\":[2,3,4,5,6,7,8,9,10],\"y\":[48.6152963437656,67.0767457959402,75.5930514082707,80.0291964132669,83.6545607648594,85.1515992768087,87.4419687423834,88.7926759087281,90.8171312805006],\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[2,3,4,5,6,7,8,9,10],\"size\":2,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[2,3,4,5,6,7,8,9,10]}},\"hoverinfo\":[\"y\",\"y\",\"y\",\"y\",\"y\",\"y\",\"y\",\"y\",\"y\"],\"type\":\"bar\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"frame\":null},{\"x\":[2,10],\"y\":[48.6152963437656,90.8171312805006],\"type\":\"scatter\",\"mode\":\"markers\",\"opacity\":0,\"hoverinfo\":\"none\",\"showlegend\":false,\"marker\":{\"colorbar\":{\"title\":\"N\",\"ticklen\":2,\"len\":0.5,\"lenmode\":\"fraction\",\"y\":1,\"yanchor\":\"top\"},\"cmin\":2,\"cmax\":10,\"colorscale\":[[\"0\",\"rgba(25,25,112,1)\"],[\"0.0416666666666667\",\"rgba(31,32,117,1)\"],[\"0.0833333333333333\",\"rgba(37,38,122,1)\"],[\"0.125\",\"rgba(42,45,127,1)\"],[\"0.166666666666667\",\"rgba(47,51,132,1)\"],[\"0.208333333333333\",\"rgba(52,58,137,1)\"],[\"0.25\",\"rgba(56,64,142,1)\"],[\"0.291666666666667\",\"rgba(60,71,148,1)\"],[\"0.333333333333333\",\"rgba(65,78,153,1)\"],[\"0.375\",\"rgba(69,84,158,1)\"],[\"0.416666666666667\",\"rgba(73,91,163,1)\"],[\"0.458333333333333\",\"rgba(77,98,168,1)\"],[\"0.5\",\"rgba(81,105,174,1)\"],[\"0.541666666666667\",\"rgba(85,112,179,1)\"],[\"0.583333333333333\",\"rgba(89,119,184,1)\"],[\"0.625\",\"rgba(93,126,189,1)\"],[\"0.666666666666667\",\"rgba(97,133,195,1)\"],[\"0.708333333333333\",\"rgba(100,140,200,1)\"],[\"0.75\",\"rgba(104,147,205,1)\"],[\"0.791666666666667\",\"rgba(108,155,211,1)\"],[\"0.833333333333333\",\"rgba(112,162,216,1)\"],[\"0.875\",\"rgba(115,169,222,1)\"],[\"0.916666666666667\",\"rgba(119,177,227,1)\"],[\"0.958333333333333\",\"rgba(122,184,233,1)\"],[\"1\",\"rgba(126,192,238,1)\"]],\"showscale\":false,\"color\":[2,10],\"line\":{\"color\":\"rgba(255,127,14,1)\"}},\"xaxis\":\"x\",\"yaxis\":\"y\",\"frame\":null}],\"highlight\":{\"on\":\"plotly_click\",\"persistent\":false,\"dynamic\":false,\"selectize\":false,\"opacityDim\":0.2,\"selected\":{\"opacity\":1},\"debounce\":0},\"shinyEvents\":[\"plotly_hover\",\"plotly_click\",\"plotly_selected\",\"plotly_relayout\",\"plotly_brushed\",\"plotly_brushing\",\"plotly_clickannotation\",\"plotly_doubleclick\",\"plotly_deselect\",\"plotly_afterplot\",\"plotly_sunburstclick\"],\"base_url\":\"https://plot.ly\"},\"evals\":[],\"jsHooks\":[]}</script>\n</body>\n</html>\n"
  },
  {
    "path": "images/05_correlation/cov_vs_sxsy.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<meta charset=\"utf-8\"/>\n<style>body{background-color:white;}</style>\n<script src=\"lib/htmlwidgets-1.5.4/htmlwidgets.js\"></script>\n<script src=\"lib/plotly-binding-4.10.0/plotly.js\"></script>\n<script src=\"lib/typedarray-0.1/typedarray.min.js\"></script>\n<script src=\"lib/jquery-3.5.1/jquery.min.js\"></script>\n<link href=\"lib/crosstalk-1.2.0/css/crosstalk.min.css\" rel=\"stylesheet\" />\n<script src=\"lib/crosstalk-1.2.0/js/crosstalk.min.js\"></script>\n<link href=\"lib/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css\" rel=\"stylesheet\" />\n<script src=\"lib/plotly-main-2.5.1/plotly-latest.min.js\"></script>\n\n</head>\n<body>\n<div id=\"htmlwidget-74acc6e8c79a8ae9bca7\" style=\"width:700px;height:450px;\" class=\"plotly html-widget\"></div>\n<script type=\"application/json\" data-for=\"htmlwidget-74acc6e8c79a8ae9bca7\">{\"x\":{\"visdat\":{\"1437bcfa9715\":[\"function () \",\"plotlyVisDat\"]},\"cur_data\":\"1437bcfa9715\",\"attrs\":{\"1437bcfa9715\":{\"mode\":\"markers\",\"x\":{},\"y\":{},\"marker\":{\"size\":12,\"opacity\":1},\"hoverinfo\":\"text\",\"text\":{},\"color\":{},\"frame\":{},\"colors\":[\"#289BF8\",\"#FF5E78\"],\"alpha_stroke\":1,\"sizes\":[10,100],\"spans\":[1,20],\"type\":\"scatter\"}},\"layout\":{\"width\":700,\"height\":450,\"margin\":{\"b\":10,\"l\":100,\"t\":10,\"r\":100,\"pad\":4},\"autosize\":false,\"xaxis\":{\"domain\":[0,1],\"automargin\":true,\"range\":[-3,3],\"zeroline\":false,\"title\":\"Covariance\"},\"yaxis\":{\"domain\":[0,1],\"automargin\":true,\"range\":[-0.1,4.5],\"zeroline\":false,\"title\":\"Product of standard deviations\"},\"hovermode\":\"closest\",\"showlegend\":false,\"sliders\":[{\"currentvalue\":{\"prefix\":\"Number of Samples: \",\"xanchor\":\"right\",\"font\":{\"size\":14,\"color\":\"grey70\"}},\"steps\":[{\"method\":\"animate\",\"args\":[[\"0\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"0\",\"value\":\"0\"},{\"method\":\"animate\",\"args\":[[\"100\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"100\",\"value\":\"100\"},{\"method\":\"animate\",\"args\":[[\"200\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"200\",\"value\":\"200\"},{\"method\":\"animate\",\"args\":[[\"300\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"300\",\"value\":\"300\"},{\"method\":\"animate\",\"args\":[[\"400\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"400\",\"value\":\"400\"},{\"method\":\"animate\",\"args\":[[\"500\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"500\",\"value\":\"500\"},{\"method\":\"animate\",\"args\":[[\"600\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"600\",\"value\":\"600\"},{\"method\":\"animate\",\"args\":[[\"700\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"700\",\"value\":\"700\"},{\"method\":\"animate\",\"args\":[[\"800\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"800\",\"value\":\"800\"},{\"method\":\"animate\",\"args\":[[\"900\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"900\",\"value\":\"900\"},{\"method\":\"animate\",\"args\":[[\"1000\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1000\",\"value\":\"1000\"},{\"method\":\"animate\",\"args\":[[\"1100\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1100\",\"value\":\"1100\"},{\"method\":\"animate\",\"args\":[[\"1200\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1200\",\"value\":\"1200\"},{\"method\":\"animate\",\"args\":[[\"1300\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1300\",\"value\":\"1300\"},{\"method\":\"animate\",\"args\":[[\"1400\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1400\",\"value\":\"1400\"},{\"method\":\"animate\",\"args\":[[\"1500\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1500\",\"value\":\"1500\"},{\"method\":\"animate\",\"args\":[[\"1600\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1600\",\"value\":\"1600\"},{\"method\":\"animate\",\"args\":[[\"1700\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1700\",\"value\":\"1700\"},{\"method\":\"animate\",\"args\":[[\"1800\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1800\",\"value\":\"1800\"},{\"method\":\"animate\",\"args\":[[\"1900\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"1900\",\"value\":\"1900\"},{\"method\":\"animate\",\"args\":[[\"2000\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2000\",\"value\":\"2000\"},{\"method\":\"animate\",\"args\":[[\"2100\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2100\",\"value\":\"2100\"},{\"method\":\"animate\",\"args\":[[\"2200\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2200\",\"value\":\"2200\"},{\"method\":\"animate\",\"args\":[[\"2300\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2300\",\"value\":\"2300\"},{\"method\":\"animate\",\"args\":[[\"2400\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2400\",\"value\":\"2400\"},{\"method\":\"animate\",\"args\":[[\"2500\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2500\",\"value\":\"2500\"},{\"method\":\"animate\",\"args\":[[\"2600\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2600\",\"value\":\"2600\"},{\"method\":\"animate\",\"args\":[[\"2700\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2700\",\"value\":\"2700\"},{\"method\":\"animate\",\"args\":[[\"2800\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2800\",\"value\":\"2800\"},{\"method\":\"animate\",\"args\":[[\"2900\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"2900\",\"value\":\"2900\"},{\"method\":\"animate\",\"args\":[[\"3000\"],{\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false},\"mode\":\"immediate\"}],\"label\":\"3000\",\"value\":\"3000\"}],\"visible\":true,\"pad\":{\"t\":40}}],\"updatemenus\":[{\"type\":\"buttons\",\"direction\":\"right\",\"showactive\":false,\"y\":0,\"x\":0,\"yanchor\":\"top\",\"xanchor\":\"right\",\"pad\":{\"t\":60,\"r\":5},\"buttons\":[{\"label\":\"Play\",\"method\":\"animate\",\"args\":[null,{\"fromcurrent\":true,\"mode\":\"immediate\",\"transition\":{\"duration\":0,\"easing\":\"linear\"},\"frame\":{\"duration\":100,\"redraw\":false}}]}]}],\"legend\":{\"yanchor\":\"top\",\"y\":0.5}},\"source\":\"A\",\"config\":{\"modeBarButtonsToAdd\":[\"hoverclosest\",\"hovercompare\"],\"showSendToCloud\":false,\"displayModeBar\":false},\"data\":[{\"mode\":\"markers\",\"x\":[null],\"y\":[null],\"marker\":{\"color\":\"rgba(192,130,182,1)\",\"size\":12,\"opacity\":1,\"line\":{\"color\":\"rgba(192,130,182,1)\"}},\"hoverinfo\":\"text\",\"text\":\"Covariance: Inf <br />Pooled SD: Inf\",\"frame\":\"0\",\"type\":\"scatter\",\"textfont\":{\"color\":\"rgba(192,130,182,1)\"},\"error_y\":{\"color\":\"rgba(192,130,182,1)\"},\"error_x\":{\"color\":\"rgba(192,130,182,1)\"},\"line\":{\"color\":\"rgba(192,130,182,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true},{\"x\":[-3.39,null],\"y\":[0.07,null],\"type\":\"scatter\",\"mode\":\"markers\",\"opacity\":0,\"hoverinfo\":\"none\",\"showlegend\":false,\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2,\"len\":0.5,\"lenmode\":\"fraction\",\"y\":1,\"yanchor\":\"top\"},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":true,\"color\":[-0.99,0.98],\"line\":{\"color\":\"rgba(255,127,14,1)\"}},\"xaxis\":\"x\",\"yaxis\":\"y\",\"frame\":null}],\"highlight\":{\"on\":\"plotly_click\",\"persistent\":false,\"dynamic\":false,\"selectize\":false,\"opacityDim\":0.2,\"selected\":{\"opacity\":1},\"debounce\":0},\"frames\":[{\"name\":\"0\",\"data\":[{\"mode\":\"markers\",\"x\":[null],\"y\":[null],\"marker\":{\"color\":\"rgba(192,130,182,1)\",\"size\":12,\"opacity\":1,\"line\":{\"color\":\"rgba(192,130,182,1)\"}},\"hoverinfo\":\"text\",\"text\":\"Covariance: Inf <br />Pooled SD: Inf\",\"frame\":\"0\",\"type\":\"scatter\",\"textfont\":{\"color\":\"rgba(192,130,182,1)\"},\"error_y\":{\"color\":\"rgba(192,130,182,1)\"},\"error_x\":{\"color\":\"rgba(192,130,182,1)\"},\"line\":{\"color\":\"rgba(192,130,182,1)\"},\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"100\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\"],\"frame\":\"100\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"200\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\"],\"frame\":\"200\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"300\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\"],\"frame\":\"300\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"400\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\"],\"frame\":\"400\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"500\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\"],\"frame\":\"500\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"600\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\"],\"frame\":\"600\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"700\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\"],\"frame\":\"700\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"800\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\"],\"frame\":\"800\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"900\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\"],\"frame\":\"900\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1000\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\"],\"frame\":\"1000\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1100\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\"],\"frame\":\"1100\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1200\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\"],\"frame\":\"1200\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1300\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\"],\"frame\":\"1300\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1400\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\"],\"frame\":\"1400\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1500\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\"],\"frame\":\"1500\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1600\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\"],\"frame\":\"1600\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1700\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\"],\"frame\":\"1700\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1800\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\"],\"frame\":\"1800\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"1900\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\"],\"frame\":\"1900\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2000\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\"],\"frame\":\"2000\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2100\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\"],\"frame\":\"2100\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2200\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7,0.17,-1.1,0.54,0.96,0.46,0.49,0.1,0.2,-0.03,0.45,0.13,0.05,-0.65,-0.3,0.66,-0.46,0.12,-0.16,0.35,-0.77,0.2,-0.57,0.76,0.18,0.11,0.02,-0.28,-0.62,-0.65,-0.12,0.32,-0.48,0.38,0.91,-0.69,-0.6,0.09,1.15,-0.57,0.05,0.3,-0.07,0.28,-0.01,-0.03,0.95,0.83,-0.97,0.04,-0.58,-0.96,0.23,0.81,-0.11,-0.54,0.58,-0.39,0.78,0.4,-0.32,-0.38,-0.57,-0.11,-0.08,-0.08,-0.57,0.33,-0.33,0.27,-1.12,1.37,-1.64,-2.13,-0.14,-1.43,0.06,0.13,0.03,0.08,0.22,-0.4,0.12,0.29,-0.93,0.81,0.46,-0.18,0.39,-1.82,0.52,-0.45,0.1,-0.65,-0.2,-0.42,0.25,-0.22,0.12,-0.28,1.16],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14,1.39,2.11,0.64,1.87,1.81,2.14,0.73,1.17,0.99,0.98,1.73,0.65,1.81,0.77,1.01,1.86,1.58,0.7,0.98,1.55,0.98,1.03,1.13,0.92,0.96,1.17,1.26,1.33,1.35,0.82,2.11,0.87,1.69,1.42,0.97,2.99,2.68,2.32,1.16,0.89,1.21,0.46,1.48,1.39,0.39,2.16,1.26,1.14,0.7,2.74,1.49,0.66,1.46,0.56,0.59,0.82,1.39,1.14,1.33,0.95,0.62,1.05,1.85,1.05,1.51,0.98,1.42,1.14,1.9,1.43,1.65,2.42,2.59,0.94,2.3,0.75,0.99,1.16,1.12,0.75,0.55,0.86,0.93,1.63,1.08,0.67,0.86,0.63,3.11,1.71,1.08,1.13,1.66,1.17,0.74,1.87,1.19,0.4,1.56,1.48],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\",\"Covariance: 0.17 <br />Pooled SD: 1.39\",\"Covariance: -1.1 <br />Pooled SD: 2.11\",\"Covariance: 0.54 <br />Pooled SD: 0.64\",\"Covariance: 0.96 <br />Pooled SD: 1.87\",\"Covariance: 0.46 <br />Pooled SD: 1.81\",\"Covariance: 0.49 <br />Pooled SD: 2.14\",\"Covariance: 0.1 <br />Pooled SD: 0.73\",\"Covariance: 0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.03 <br />Pooled SD: 0.99\",\"Covariance: 0.45 <br />Pooled SD: 0.98\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.81\",\"Covariance: -0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.66 <br />Pooled SD: 1.01\",\"Covariance: -0.46 <br />Pooled SD: 1.86\",\"Covariance: 0.12 <br />Pooled SD: 1.58\",\"Covariance: -0.16 <br />Pooled SD: 0.7\",\"Covariance: 0.35 <br />Pooled SD: 0.98\",\"Covariance: -0.77 <br />Pooled SD: 1.55\",\"Covariance: 0.2 <br />Pooled SD: 0.98\",\"Covariance: -0.57 <br />Pooled SD: 1.03\",\"Covariance: 0.76 <br />Pooled SD: 1.13\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.02 <br />Pooled SD: 1.17\",\"Covariance: -0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.33\",\"Covariance: -0.65 <br />Pooled SD: 1.35\",\"Covariance: -0.12 <br />Pooled SD: 0.82\",\"Covariance: 0.32 <br />Pooled SD: 2.11\",\"Covariance: -0.48 <br />Pooled SD: 0.87\",\"Covariance: 0.38 <br />Pooled SD: 1.69\",\"Covariance: 0.91 <br />Pooled SD: 1.42\",\"Covariance: -0.69 <br />Pooled SD: 0.97\",\"Covariance: -0.6 <br />Pooled SD: 2.99\",\"Covariance: 0.09 <br />Pooled SD: 2.68\",\"Covariance: 1.15 <br />Pooled SD: 2.32\",\"Covariance: -0.57 <br />Pooled SD: 1.16\",\"Covariance: 0.05 <br />Pooled SD: 0.89\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: -0.07 <br />Pooled SD: 0.46\",\"Covariance: 0.28 <br />Pooled SD: 1.48\",\"Covariance: -0.01 <br />Pooled SD: 1.39\",\"Covariance: -0.03 <br />Pooled SD: 0.39\",\"Covariance: 0.95 <br />Pooled SD: 2.16\",\"Covariance: 0.83 <br />Pooled SD: 1.26\",\"Covariance: -0.97 <br />Pooled SD: 1.14\",\"Covariance: 0.04 <br />Pooled SD: 0.7\",\"Covariance: -0.58 <br />Pooled SD: 2.74\",\"Covariance: -0.96 <br />Pooled SD: 1.49\",\"Covariance: 0.23 <br />Pooled SD: 0.66\",\"Covariance: 0.81 <br />Pooled SD: 1.46\",\"Covariance: -0.11 <br />Pooled SD: 0.56\",\"Covariance: -0.54 <br />Pooled SD: 0.59\",\"Covariance: 0.58 <br />Pooled SD: 0.82\",\"Covariance: -0.39 <br />Pooled SD: 1.39\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 0.4 <br />Pooled SD: 1.33\",\"Covariance: -0.32 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.57 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 1.05\",\"Covariance: -0.08 <br />Pooled SD: 1.51\",\"Covariance: -0.57 <br />Pooled SD: 0.98\",\"Covariance: 0.33 <br />Pooled SD: 1.42\",\"Covariance: -0.33 <br />Pooled SD: 1.14\",\"Covariance: 0.27 <br />Pooled SD: 1.9\",\"Covariance: -1.12 <br />Pooled SD: 1.43\",\"Covariance: 1.37 <br />Pooled SD: 1.65\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: -2.13 <br />Pooled SD: 2.59\",\"Covariance: -0.14 <br />Pooled SD: 0.94\",\"Covariance: -1.43 <br />Pooled SD: 2.3\",\"Covariance: 0.06 <br />Pooled SD: 0.75\",\"Covariance: 0.13 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 1.16\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.12 <br />Pooled SD: 0.86\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.93 <br />Pooled SD: 1.63\",\"Covariance: 0.81 <br />Pooled SD: 1.08\",\"Covariance: 0.46 <br />Pooled SD: 0.67\",\"Covariance: -0.18 <br />Pooled SD: 0.86\",\"Covariance: 0.39 <br />Pooled SD: 0.63\",\"Covariance: -1.82 <br />Pooled SD: 3.11\",\"Covariance: 0.52 <br />Pooled SD: 1.71\",\"Covariance: -0.45 <br />Pooled SD: 1.08\",\"Covariance: 0.1 <br />Pooled SD: 1.13\",\"Covariance: -0.65 <br />Pooled SD: 1.66\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 0.74\",\"Covariance: 0.25 <br />Pooled SD: 1.87\",\"Covariance: -0.22 <br />Pooled SD: 1.19\",\"Covariance: 0.12 <br />Pooled SD: 0.4\",\"Covariance: -0.28 <br />Pooled SD: 1.56\",\"Covariance: 1.16 <br />Pooled SD: 1.48\"],\"frame\":\"2200\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2300\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7,0.17,-1.1,0.54,0.96,0.46,0.49,0.1,0.2,-0.03,0.45,0.13,0.05,-0.65,-0.3,0.66,-0.46,0.12,-0.16,0.35,-0.77,0.2,-0.57,0.76,0.18,0.11,0.02,-0.28,-0.62,-0.65,-0.12,0.32,-0.48,0.38,0.91,-0.69,-0.6,0.09,1.15,-0.57,0.05,0.3,-0.07,0.28,-0.01,-0.03,0.95,0.83,-0.97,0.04,-0.58,-0.96,0.23,0.81,-0.11,-0.54,0.58,-0.39,0.78,0.4,-0.32,-0.38,-0.57,-0.11,-0.08,-0.08,-0.57,0.33,-0.33,0.27,-1.12,1.37,-1.64,-2.13,-0.14,-1.43,0.06,0.13,0.03,0.08,0.22,-0.4,0.12,0.29,-0.93,0.81,0.46,-0.18,0.39,-1.82,0.52,-0.45,0.1,-0.65,-0.2,-0.42,0.25,-0.22,0.12,-0.28,1.16,0.5,0.28,-1.01,0.38,1.33,0.61,0.03,0.75,0.57,-0.1,0.18,0.41,0.54,-0.03,0.61,0.05,0.34,-0.18,0.38,-0.38,0.41,-0.39,-0.26,1.37,-0.34,0.17,0.49,-0.11,-0.15,0.87,0.13,-0.2,0.04,-0.09,0.58,0.82,-0.05,0.35,0.12,-0.02,0.11,0.11,0.2,-0.16,0.06,-0.39,0.58,-0.75,-0.08,0.22,-0.1,-0.26,-0.94,-0.19,0.31,-0.17,1.21,-0.88,0.22,-1.27,0.75,-0.05,0.96,-0.39,0.52,-0.15,0.08,-0.33,0.26,-0.16,-0.86,0.16,-0.55,0.51,0.08,0.07,1.51,0.48,-0.22,0.91,0.63,1.31,0.97,-0.05,-0.21,0.55,0.57,0.36,-0.23,0,-0.28,-0.4,0.34,-0.23,0.47,0.66,0.63,0.1,-0.07,0.1],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14,1.39,2.11,0.64,1.87,1.81,2.14,0.73,1.17,0.99,0.98,1.73,0.65,1.81,0.77,1.01,1.86,1.58,0.7,0.98,1.55,0.98,1.03,1.13,0.92,0.96,1.17,1.26,1.33,1.35,0.82,2.11,0.87,1.69,1.42,0.97,2.99,2.68,2.32,1.16,0.89,1.21,0.46,1.48,1.39,0.39,2.16,1.26,1.14,0.7,2.74,1.49,0.66,1.46,0.56,0.59,0.82,1.39,1.14,1.33,0.95,0.62,1.05,1.85,1.05,1.51,0.98,1.42,1.14,1.9,1.43,1.65,2.42,2.59,0.94,2.3,0.75,0.99,1.16,1.12,0.75,0.55,0.86,0.93,1.63,1.08,0.67,0.86,0.63,3.11,1.71,1.08,1.13,1.66,1.17,0.74,1.87,1.19,0.4,1.56,1.48,0.71,0.9,1.56,0.74,1.7,2.04,0.94,1.42,1.44,0.49,0.41,0.95,1.05,0.9,1.02,0.73,0.92,2.43,1.37,1.33,1.64,1.02,0.62,1.88,1.68,2.41,1.6,1.51,2.26,2.39,0.25,0.65,0.48,1.5,1.71,1.63,0.75,1.08,0.77,1.06,0.69,0.93,1.41,0.85,1.86,1.11,1.12,1.12,1.71,0.35,1.05,1.53,1.57,0.4,0.9,0.96,2.18,1.88,0.58,2.39,2.15,1.81,1.59,1.71,1.16,0.86,0.95,0.86,1.31,1.03,1.8,1.17,1.9,1.28,0.36,0.98,1.56,1.18,2.7,1.98,1.3,1.86,2.1,0.6,0.89,1.12,3.05,0.97,0.85,0.38,1.18,0.72,0.86,1.07,1.64,2.35,1.4,1.41,0.51,0.99],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\",\"Covariance: 0.17 <br />Pooled SD: 1.39\",\"Covariance: -1.1 <br />Pooled SD: 2.11\",\"Covariance: 0.54 <br />Pooled SD: 0.64\",\"Covariance: 0.96 <br />Pooled SD: 1.87\",\"Covariance: 0.46 <br />Pooled SD: 1.81\",\"Covariance: 0.49 <br />Pooled SD: 2.14\",\"Covariance: 0.1 <br />Pooled SD: 0.73\",\"Covariance: 0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.03 <br />Pooled SD: 0.99\",\"Covariance: 0.45 <br />Pooled SD: 0.98\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.81\",\"Covariance: -0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.66 <br />Pooled SD: 1.01\",\"Covariance: -0.46 <br />Pooled SD: 1.86\",\"Covariance: 0.12 <br />Pooled SD: 1.58\",\"Covariance: -0.16 <br />Pooled SD: 0.7\",\"Covariance: 0.35 <br />Pooled SD: 0.98\",\"Covariance: -0.77 <br />Pooled SD: 1.55\",\"Covariance: 0.2 <br />Pooled SD: 0.98\",\"Covariance: -0.57 <br />Pooled SD: 1.03\",\"Covariance: 0.76 <br />Pooled SD: 1.13\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.02 <br />Pooled SD: 1.17\",\"Covariance: -0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.33\",\"Covariance: -0.65 <br />Pooled SD: 1.35\",\"Covariance: -0.12 <br />Pooled SD: 0.82\",\"Covariance: 0.32 <br />Pooled SD: 2.11\",\"Covariance: -0.48 <br />Pooled SD: 0.87\",\"Covariance: 0.38 <br />Pooled SD: 1.69\",\"Covariance: 0.91 <br />Pooled SD: 1.42\",\"Covariance: -0.69 <br />Pooled SD: 0.97\",\"Covariance: -0.6 <br />Pooled SD: 2.99\",\"Covariance: 0.09 <br />Pooled SD: 2.68\",\"Covariance: 1.15 <br />Pooled SD: 2.32\",\"Covariance: -0.57 <br />Pooled SD: 1.16\",\"Covariance: 0.05 <br />Pooled SD: 0.89\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: -0.07 <br />Pooled SD: 0.46\",\"Covariance: 0.28 <br />Pooled SD: 1.48\",\"Covariance: -0.01 <br />Pooled SD: 1.39\",\"Covariance: -0.03 <br />Pooled SD: 0.39\",\"Covariance: 0.95 <br />Pooled SD: 2.16\",\"Covariance: 0.83 <br />Pooled SD: 1.26\",\"Covariance: -0.97 <br />Pooled SD: 1.14\",\"Covariance: 0.04 <br />Pooled SD: 0.7\",\"Covariance: -0.58 <br />Pooled SD: 2.74\",\"Covariance: -0.96 <br />Pooled SD: 1.49\",\"Covariance: 0.23 <br />Pooled SD: 0.66\",\"Covariance: 0.81 <br />Pooled SD: 1.46\",\"Covariance: -0.11 <br />Pooled SD: 0.56\",\"Covariance: -0.54 <br />Pooled SD: 0.59\",\"Covariance: 0.58 <br />Pooled SD: 0.82\",\"Covariance: -0.39 <br />Pooled SD: 1.39\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 0.4 <br />Pooled SD: 1.33\",\"Covariance: -0.32 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.57 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 1.05\",\"Covariance: -0.08 <br />Pooled SD: 1.51\",\"Covariance: -0.57 <br />Pooled SD: 0.98\",\"Covariance: 0.33 <br />Pooled SD: 1.42\",\"Covariance: -0.33 <br />Pooled SD: 1.14\",\"Covariance: 0.27 <br />Pooled SD: 1.9\",\"Covariance: -1.12 <br />Pooled SD: 1.43\",\"Covariance: 1.37 <br />Pooled SD: 1.65\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: -2.13 <br />Pooled SD: 2.59\",\"Covariance: -0.14 <br />Pooled SD: 0.94\",\"Covariance: -1.43 <br />Pooled SD: 2.3\",\"Covariance: 0.06 <br />Pooled SD: 0.75\",\"Covariance: 0.13 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 1.16\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.12 <br />Pooled SD: 0.86\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.93 <br />Pooled SD: 1.63\",\"Covariance: 0.81 <br />Pooled SD: 1.08\",\"Covariance: 0.46 <br />Pooled SD: 0.67\",\"Covariance: -0.18 <br />Pooled SD: 0.86\",\"Covariance: 0.39 <br />Pooled SD: 0.63\",\"Covariance: -1.82 <br />Pooled SD: 3.11\",\"Covariance: 0.52 <br />Pooled SD: 1.71\",\"Covariance: -0.45 <br />Pooled SD: 1.08\",\"Covariance: 0.1 <br />Pooled SD: 1.13\",\"Covariance: -0.65 <br />Pooled SD: 1.66\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 0.74\",\"Covariance: 0.25 <br />Pooled SD: 1.87\",\"Covariance: -0.22 <br />Pooled SD: 1.19\",\"Covariance: 0.12 <br />Pooled SD: 0.4\",\"Covariance: -0.28 <br />Pooled SD: 1.56\",\"Covariance: 1.16 <br />Pooled SD: 1.48\",\"Covariance: 0.5 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 0.9\",\"Covariance: -1.01 <br />Pooled SD: 1.56\",\"Covariance: 0.38 <br />Pooled SD: 0.74\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.61 <br />Pooled SD: 2.04\",\"Covariance: 0.03 <br />Pooled SD: 0.94\",\"Covariance: 0.75 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 1.44\",\"Covariance: -0.1 <br />Pooled SD: 0.49\",\"Covariance: 0.18 <br />Pooled SD: 0.41\",\"Covariance: 0.41 <br />Pooled SD: 0.95\",\"Covariance: 0.54 <br />Pooled SD: 1.05\",\"Covariance: -0.03 <br />Pooled SD: 0.9\",\"Covariance: 0.61 <br />Pooled SD: 1.02\",\"Covariance: 0.05 <br />Pooled SD: 0.73\",\"Covariance: 0.34 <br />Pooled SD: 0.92\",\"Covariance: -0.18 <br />Pooled SD: 2.43\",\"Covariance: 0.38 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.33\",\"Covariance: 0.41 <br />Pooled SD: 1.64\",\"Covariance: -0.39 <br />Pooled SD: 1.02\",\"Covariance: -0.26 <br />Pooled SD: 0.62\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.17 <br />Pooled SD: 2.41\",\"Covariance: 0.49 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 2.26\",\"Covariance: 0.87 <br />Pooled SD: 2.39\",\"Covariance: 0.13 <br />Pooled SD: 0.25\",\"Covariance: -0.2 <br />Pooled SD: 0.65\",\"Covariance: 0.04 <br />Pooled SD: 0.48\",\"Covariance: -0.09 <br />Pooled SD: 1.5\",\"Covariance: 0.58 <br />Pooled SD: 1.71\",\"Covariance: 0.82 <br />Pooled SD: 1.63\",\"Covariance: -0.05 <br />Pooled SD: 0.75\",\"Covariance: 0.35 <br />Pooled SD: 1.08\",\"Covariance: 0.12 <br />Pooled SD: 0.77\",\"Covariance: -0.02 <br />Pooled SD: 1.06\",\"Covariance: 0.11 <br />Pooled SD: 0.69\",\"Covariance: 0.11 <br />Pooled SD: 0.93\",\"Covariance: 0.2 <br />Pooled SD: 1.41\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.06 <br />Pooled SD: 1.86\",\"Covariance: -0.39 <br />Pooled SD: 1.11\",\"Covariance: 0.58 <br />Pooled SD: 1.12\",\"Covariance: -0.75 <br />Pooled SD: 1.12\",\"Covariance: -0.08 <br />Pooled SD: 1.71\",\"Covariance: 0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.1 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 1.53\",\"Covariance: -0.94 <br />Pooled SD: 1.57\",\"Covariance: -0.19 <br />Pooled SD: 0.4\",\"Covariance: 0.31 <br />Pooled SD: 0.9\",\"Covariance: -0.17 <br />Pooled SD: 0.96\",\"Covariance: 1.21 <br />Pooled SD: 2.18\",\"Covariance: -0.88 <br />Pooled SD: 1.88\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: -1.27 <br />Pooled SD: 2.39\",\"Covariance: 0.75 <br />Pooled SD: 2.15\",\"Covariance: -0.05 <br />Pooled SD: 1.81\",\"Covariance: 0.96 <br />Pooled SD: 1.59\",\"Covariance: -0.39 <br />Pooled SD: 1.71\",\"Covariance: 0.52 <br />Pooled SD: 1.16\",\"Covariance: -0.15 <br />Pooled SD: 0.86\",\"Covariance: 0.08 <br />Pooled SD: 0.95\",\"Covariance: -0.33 <br />Pooled SD: 0.86\",\"Covariance: 0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.16 <br />Pooled SD: 1.03\",\"Covariance: -0.86 <br />Pooled SD: 1.8\",\"Covariance: 0.16 <br />Pooled SD: 1.17\",\"Covariance: -0.55 <br />Pooled SD: 1.9\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.08 <br />Pooled SD: 0.36\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: 1.51 <br />Pooled SD: 1.56\",\"Covariance: 0.48 <br />Pooled SD: 1.18\",\"Covariance: -0.22 <br />Pooled SD: 2.7\",\"Covariance: 0.91 <br />Pooled SD: 1.98\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: 1.31 <br />Pooled SD: 1.86\",\"Covariance: 0.97 <br />Pooled SD: 2.1\",\"Covariance: -0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.21 <br />Pooled SD: 0.89\",\"Covariance: 0.55 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 3.05\",\"Covariance: 0.36 <br />Pooled SD: 0.97\",\"Covariance: -0.23 <br />Pooled SD: 0.85\",\"Covariance: 0 <br />Pooled SD: 0.38\",\"Covariance: -0.28 <br />Pooled SD: 1.18\",\"Covariance: -0.4 <br />Pooled SD: 0.72\",\"Covariance: 0.34 <br />Pooled SD: 0.86\",\"Covariance: -0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.47 <br />Pooled SD: 1.64\",\"Covariance: 0.66 <br />Pooled SD: 2.35\",\"Covariance: 0.63 <br />Pooled SD: 1.4\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.51\",\"Covariance: 0.1 <br />Pooled SD: 0.99\"],\"frame\":\"2300\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2400\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7,0.17,-1.1,0.54,0.96,0.46,0.49,0.1,0.2,-0.03,0.45,0.13,0.05,-0.65,-0.3,0.66,-0.46,0.12,-0.16,0.35,-0.77,0.2,-0.57,0.76,0.18,0.11,0.02,-0.28,-0.62,-0.65,-0.12,0.32,-0.48,0.38,0.91,-0.69,-0.6,0.09,1.15,-0.57,0.05,0.3,-0.07,0.28,-0.01,-0.03,0.95,0.83,-0.97,0.04,-0.58,-0.96,0.23,0.81,-0.11,-0.54,0.58,-0.39,0.78,0.4,-0.32,-0.38,-0.57,-0.11,-0.08,-0.08,-0.57,0.33,-0.33,0.27,-1.12,1.37,-1.64,-2.13,-0.14,-1.43,0.06,0.13,0.03,0.08,0.22,-0.4,0.12,0.29,-0.93,0.81,0.46,-0.18,0.39,-1.82,0.52,-0.45,0.1,-0.65,-0.2,-0.42,0.25,-0.22,0.12,-0.28,1.16,0.5,0.28,-1.01,0.38,1.33,0.61,0.03,0.75,0.57,-0.1,0.18,0.41,0.54,-0.03,0.61,0.05,0.34,-0.18,0.38,-0.38,0.41,-0.39,-0.26,1.37,-0.34,0.17,0.49,-0.11,-0.15,0.87,0.13,-0.2,0.04,-0.09,0.58,0.82,-0.05,0.35,0.12,-0.02,0.11,0.11,0.2,-0.16,0.06,-0.39,0.58,-0.75,-0.08,0.22,-0.1,-0.26,-0.94,-0.19,0.31,-0.17,1.21,-0.88,0.22,-1.27,0.75,-0.05,0.96,-0.39,0.52,-0.15,0.08,-0.33,0.26,-0.16,-0.86,0.16,-0.55,0.51,0.08,0.07,1.51,0.48,-0.22,0.91,0.63,1.31,0.97,-0.05,-0.21,0.55,0.57,0.36,-0.23,0,-0.28,-0.4,0.34,-0.23,0.47,0.66,0.63,0.1,-0.07,0.1,0.23,-0.25,0.45,0.18,-0.46,-0.35,-0.38,0.53,-0.18,0.01,0.01,0.57,-0.44,0.13,0.78,-0.15,0.26,0.17,1.1,-0.09,-0.52,-0.12,0.38,0.64,0.18,-0.65,0.07,-0.66,0.12,1.45,0.5,0.06,0.04,0.7,0.66,0.08,-1.54,0.45,0.16,0.01,-0.06,-0.27,0.3,0,-0.44,-0.89,0.64,1.1,0.5,0.32,-0.48,-0.28,0.44,0,-0.02,0.13,-0.45,-0.02,-0.82,-0.26,0.7,0.37,0.2,1.99,-0.07,0.29,1.79,-1.05,0.39,0.7,0.07,-0.39,-1.65,0.34,0.23,-0,-0.86,0.27,-1.43,0.38,0.44,0.45,1.33,0.16,-0.26,1.01,0.12,-0.56,-0.47,-0.18,-0.21,-0.62,-0.8,-0.09,0.27,-0.48,0.06,-0.24,0.67,-0.19],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14,1.39,2.11,0.64,1.87,1.81,2.14,0.73,1.17,0.99,0.98,1.73,0.65,1.81,0.77,1.01,1.86,1.58,0.7,0.98,1.55,0.98,1.03,1.13,0.92,0.96,1.17,1.26,1.33,1.35,0.82,2.11,0.87,1.69,1.42,0.97,2.99,2.68,2.32,1.16,0.89,1.21,0.46,1.48,1.39,0.39,2.16,1.26,1.14,0.7,2.74,1.49,0.66,1.46,0.56,0.59,0.82,1.39,1.14,1.33,0.95,0.62,1.05,1.85,1.05,1.51,0.98,1.42,1.14,1.9,1.43,1.65,2.42,2.59,0.94,2.3,0.75,0.99,1.16,1.12,0.75,0.55,0.86,0.93,1.63,1.08,0.67,0.86,0.63,3.11,1.71,1.08,1.13,1.66,1.17,0.74,1.87,1.19,0.4,1.56,1.48,0.71,0.9,1.56,0.74,1.7,2.04,0.94,1.42,1.44,0.49,0.41,0.95,1.05,0.9,1.02,0.73,0.92,2.43,1.37,1.33,1.64,1.02,0.62,1.88,1.68,2.41,1.6,1.51,2.26,2.39,0.25,0.65,0.48,1.5,1.71,1.63,0.75,1.08,0.77,1.06,0.69,0.93,1.41,0.85,1.86,1.11,1.12,1.12,1.71,0.35,1.05,1.53,1.57,0.4,0.9,0.96,2.18,1.88,0.58,2.39,2.15,1.81,1.59,1.71,1.16,0.86,0.95,0.86,1.31,1.03,1.8,1.17,1.9,1.28,0.36,0.98,1.56,1.18,2.7,1.98,1.3,1.86,2.1,0.6,0.89,1.12,3.05,0.97,0.85,0.38,1.18,0.72,0.86,1.07,1.64,2.35,1.4,1.41,0.51,0.99,1.61,2.32,0.6,0.72,0.8,1.47,0.85,0.74,0.4,0.62,1.42,0.85,0.68,0.72,1.06,0.65,0.67,1.68,1.67,1.43,0.82,1.01,1.24,1.69,0.69,1.96,0.81,0.91,1.76,1.62,0.72,1.04,1.06,1.99,2.49,0.69,2.17,1.46,0.63,0.48,0.49,1.21,1.57,0.82,0.53,2.58,0.7,1.49,1.53,0.69,0.49,0.38,1.06,0.61,0.44,1.73,1.25,0.5,1.19,2.28,0.81,1.59,0.41,2.39,0.23,0.57,2.95,1.48,1.6,1,1.45,0.78,2.34,0.87,1.27,1.66,1.4,0.77,1.62,1.2,0.65,0.85,2.39,1.21,1.18,1.18,0.93,0.9,0.9,0.69,0.77,1.15,1.31,0.49,1.36,1.13,0.93,0.51,1.15,0.93],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\",\"Covariance: 0.17 <br />Pooled SD: 1.39\",\"Covariance: -1.1 <br />Pooled SD: 2.11\",\"Covariance: 0.54 <br />Pooled SD: 0.64\",\"Covariance: 0.96 <br />Pooled SD: 1.87\",\"Covariance: 0.46 <br />Pooled SD: 1.81\",\"Covariance: 0.49 <br />Pooled SD: 2.14\",\"Covariance: 0.1 <br />Pooled SD: 0.73\",\"Covariance: 0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.03 <br />Pooled SD: 0.99\",\"Covariance: 0.45 <br />Pooled SD: 0.98\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.81\",\"Covariance: -0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.66 <br />Pooled SD: 1.01\",\"Covariance: -0.46 <br />Pooled SD: 1.86\",\"Covariance: 0.12 <br />Pooled SD: 1.58\",\"Covariance: -0.16 <br />Pooled SD: 0.7\",\"Covariance: 0.35 <br />Pooled SD: 0.98\",\"Covariance: -0.77 <br />Pooled SD: 1.55\",\"Covariance: 0.2 <br />Pooled SD: 0.98\",\"Covariance: -0.57 <br />Pooled SD: 1.03\",\"Covariance: 0.76 <br />Pooled SD: 1.13\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.02 <br />Pooled SD: 1.17\",\"Covariance: -0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.33\",\"Covariance: -0.65 <br />Pooled SD: 1.35\",\"Covariance: -0.12 <br />Pooled SD: 0.82\",\"Covariance: 0.32 <br />Pooled SD: 2.11\",\"Covariance: -0.48 <br />Pooled SD: 0.87\",\"Covariance: 0.38 <br />Pooled SD: 1.69\",\"Covariance: 0.91 <br />Pooled SD: 1.42\",\"Covariance: -0.69 <br />Pooled SD: 0.97\",\"Covariance: -0.6 <br />Pooled SD: 2.99\",\"Covariance: 0.09 <br />Pooled SD: 2.68\",\"Covariance: 1.15 <br />Pooled SD: 2.32\",\"Covariance: -0.57 <br />Pooled SD: 1.16\",\"Covariance: 0.05 <br />Pooled SD: 0.89\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: -0.07 <br />Pooled SD: 0.46\",\"Covariance: 0.28 <br />Pooled SD: 1.48\",\"Covariance: -0.01 <br />Pooled SD: 1.39\",\"Covariance: -0.03 <br />Pooled SD: 0.39\",\"Covariance: 0.95 <br />Pooled SD: 2.16\",\"Covariance: 0.83 <br />Pooled SD: 1.26\",\"Covariance: -0.97 <br />Pooled SD: 1.14\",\"Covariance: 0.04 <br />Pooled SD: 0.7\",\"Covariance: -0.58 <br />Pooled SD: 2.74\",\"Covariance: -0.96 <br />Pooled SD: 1.49\",\"Covariance: 0.23 <br />Pooled SD: 0.66\",\"Covariance: 0.81 <br />Pooled SD: 1.46\",\"Covariance: -0.11 <br />Pooled SD: 0.56\",\"Covariance: -0.54 <br />Pooled SD: 0.59\",\"Covariance: 0.58 <br />Pooled SD: 0.82\",\"Covariance: -0.39 <br />Pooled SD: 1.39\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 0.4 <br />Pooled SD: 1.33\",\"Covariance: -0.32 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.57 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 1.05\",\"Covariance: -0.08 <br />Pooled SD: 1.51\",\"Covariance: -0.57 <br />Pooled SD: 0.98\",\"Covariance: 0.33 <br />Pooled SD: 1.42\",\"Covariance: -0.33 <br />Pooled SD: 1.14\",\"Covariance: 0.27 <br />Pooled SD: 1.9\",\"Covariance: -1.12 <br />Pooled SD: 1.43\",\"Covariance: 1.37 <br />Pooled SD: 1.65\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: -2.13 <br />Pooled SD: 2.59\",\"Covariance: -0.14 <br />Pooled SD: 0.94\",\"Covariance: -1.43 <br />Pooled SD: 2.3\",\"Covariance: 0.06 <br />Pooled SD: 0.75\",\"Covariance: 0.13 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 1.16\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.12 <br />Pooled SD: 0.86\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.93 <br />Pooled SD: 1.63\",\"Covariance: 0.81 <br />Pooled SD: 1.08\",\"Covariance: 0.46 <br />Pooled SD: 0.67\",\"Covariance: -0.18 <br />Pooled SD: 0.86\",\"Covariance: 0.39 <br />Pooled SD: 0.63\",\"Covariance: -1.82 <br />Pooled SD: 3.11\",\"Covariance: 0.52 <br />Pooled SD: 1.71\",\"Covariance: -0.45 <br />Pooled SD: 1.08\",\"Covariance: 0.1 <br />Pooled SD: 1.13\",\"Covariance: -0.65 <br />Pooled SD: 1.66\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 0.74\",\"Covariance: 0.25 <br />Pooled SD: 1.87\",\"Covariance: -0.22 <br />Pooled SD: 1.19\",\"Covariance: 0.12 <br />Pooled SD: 0.4\",\"Covariance: -0.28 <br />Pooled SD: 1.56\",\"Covariance: 1.16 <br />Pooled SD: 1.48\",\"Covariance: 0.5 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 0.9\",\"Covariance: -1.01 <br />Pooled SD: 1.56\",\"Covariance: 0.38 <br />Pooled SD: 0.74\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.61 <br />Pooled SD: 2.04\",\"Covariance: 0.03 <br />Pooled SD: 0.94\",\"Covariance: 0.75 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 1.44\",\"Covariance: -0.1 <br />Pooled SD: 0.49\",\"Covariance: 0.18 <br />Pooled SD: 0.41\",\"Covariance: 0.41 <br />Pooled SD: 0.95\",\"Covariance: 0.54 <br />Pooled SD: 1.05\",\"Covariance: -0.03 <br />Pooled SD: 0.9\",\"Covariance: 0.61 <br />Pooled SD: 1.02\",\"Covariance: 0.05 <br />Pooled SD: 0.73\",\"Covariance: 0.34 <br />Pooled SD: 0.92\",\"Covariance: -0.18 <br />Pooled SD: 2.43\",\"Covariance: 0.38 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.33\",\"Covariance: 0.41 <br />Pooled SD: 1.64\",\"Covariance: -0.39 <br />Pooled SD: 1.02\",\"Covariance: -0.26 <br />Pooled SD: 0.62\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.17 <br />Pooled SD: 2.41\",\"Covariance: 0.49 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 2.26\",\"Covariance: 0.87 <br />Pooled SD: 2.39\",\"Covariance: 0.13 <br />Pooled SD: 0.25\",\"Covariance: -0.2 <br />Pooled SD: 0.65\",\"Covariance: 0.04 <br />Pooled SD: 0.48\",\"Covariance: -0.09 <br />Pooled SD: 1.5\",\"Covariance: 0.58 <br />Pooled SD: 1.71\",\"Covariance: 0.82 <br />Pooled SD: 1.63\",\"Covariance: -0.05 <br />Pooled SD: 0.75\",\"Covariance: 0.35 <br />Pooled SD: 1.08\",\"Covariance: 0.12 <br />Pooled SD: 0.77\",\"Covariance: -0.02 <br />Pooled SD: 1.06\",\"Covariance: 0.11 <br />Pooled SD: 0.69\",\"Covariance: 0.11 <br />Pooled SD: 0.93\",\"Covariance: 0.2 <br />Pooled SD: 1.41\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.06 <br />Pooled SD: 1.86\",\"Covariance: -0.39 <br />Pooled SD: 1.11\",\"Covariance: 0.58 <br />Pooled SD: 1.12\",\"Covariance: -0.75 <br />Pooled SD: 1.12\",\"Covariance: -0.08 <br />Pooled SD: 1.71\",\"Covariance: 0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.1 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 1.53\",\"Covariance: -0.94 <br />Pooled SD: 1.57\",\"Covariance: -0.19 <br />Pooled SD: 0.4\",\"Covariance: 0.31 <br />Pooled SD: 0.9\",\"Covariance: -0.17 <br />Pooled SD: 0.96\",\"Covariance: 1.21 <br />Pooled SD: 2.18\",\"Covariance: -0.88 <br />Pooled SD: 1.88\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: -1.27 <br />Pooled SD: 2.39\",\"Covariance: 0.75 <br />Pooled SD: 2.15\",\"Covariance: -0.05 <br />Pooled SD: 1.81\",\"Covariance: 0.96 <br />Pooled SD: 1.59\",\"Covariance: -0.39 <br />Pooled SD: 1.71\",\"Covariance: 0.52 <br />Pooled SD: 1.16\",\"Covariance: -0.15 <br />Pooled SD: 0.86\",\"Covariance: 0.08 <br />Pooled SD: 0.95\",\"Covariance: -0.33 <br />Pooled SD: 0.86\",\"Covariance: 0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.16 <br />Pooled SD: 1.03\",\"Covariance: -0.86 <br />Pooled SD: 1.8\",\"Covariance: 0.16 <br />Pooled SD: 1.17\",\"Covariance: -0.55 <br />Pooled SD: 1.9\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.08 <br />Pooled SD: 0.36\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: 1.51 <br />Pooled SD: 1.56\",\"Covariance: 0.48 <br />Pooled SD: 1.18\",\"Covariance: -0.22 <br />Pooled SD: 2.7\",\"Covariance: 0.91 <br />Pooled SD: 1.98\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: 1.31 <br />Pooled SD: 1.86\",\"Covariance: 0.97 <br />Pooled SD: 2.1\",\"Covariance: -0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.21 <br />Pooled SD: 0.89\",\"Covariance: 0.55 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 3.05\",\"Covariance: 0.36 <br />Pooled SD: 0.97\",\"Covariance: -0.23 <br />Pooled SD: 0.85\",\"Covariance: 0 <br />Pooled SD: 0.38\",\"Covariance: -0.28 <br />Pooled SD: 1.18\",\"Covariance: -0.4 <br />Pooled SD: 0.72\",\"Covariance: 0.34 <br />Pooled SD: 0.86\",\"Covariance: -0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.47 <br />Pooled SD: 1.64\",\"Covariance: 0.66 <br />Pooled SD: 2.35\",\"Covariance: 0.63 <br />Pooled SD: 1.4\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.51\",\"Covariance: 0.1 <br />Pooled SD: 0.99\",\"Covariance: 0.23 <br />Pooled SD: 1.61\",\"Covariance: -0.25 <br />Pooled SD: 2.32\",\"Covariance: 0.45 <br />Pooled SD: 0.6\",\"Covariance: 0.18 <br />Pooled SD: 0.72\",\"Covariance: -0.46 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 1.47\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: 0.53 <br />Pooled SD: 0.74\",\"Covariance: -0.18 <br />Pooled SD: 0.4\",\"Covariance: 0.01 <br />Pooled SD: 0.62\",\"Covariance: 0.01 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 0.85\",\"Covariance: -0.44 <br />Pooled SD: 0.68\",\"Covariance: 0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.78 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.65\",\"Covariance: 0.26 <br />Pooled SD: 0.67\",\"Covariance: 0.17 <br />Pooled SD: 1.68\",\"Covariance: 1.1 <br />Pooled SD: 1.67\",\"Covariance: -0.09 <br />Pooled SD: 1.43\",\"Covariance: -0.52 <br />Pooled SD: 0.82\",\"Covariance: -0.12 <br />Pooled SD: 1.01\",\"Covariance: 0.38 <br />Pooled SD: 1.24\",\"Covariance: 0.64 <br />Pooled SD: 1.69\",\"Covariance: 0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.96\",\"Covariance: 0.07 <br />Pooled SD: 0.81\",\"Covariance: -0.66 <br />Pooled SD: 0.91\",\"Covariance: 0.12 <br />Pooled SD: 1.76\",\"Covariance: 1.45 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 0.72\",\"Covariance: 0.06 <br />Pooled SD: 1.04\",\"Covariance: 0.04 <br />Pooled SD: 1.06\",\"Covariance: 0.7 <br />Pooled SD: 1.99\",\"Covariance: 0.66 <br />Pooled SD: 2.49\",\"Covariance: 0.08 <br />Pooled SD: 0.69\",\"Covariance: -1.54 <br />Pooled SD: 2.17\",\"Covariance: 0.45 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.63\",\"Covariance: 0.01 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.49\",\"Covariance: -0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.3 <br />Pooled SD: 1.57\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: -0.44 <br />Pooled SD: 0.53\",\"Covariance: -0.89 <br />Pooled SD: 2.58\",\"Covariance: 0.64 <br />Pooled SD: 0.7\",\"Covariance: 1.1 <br />Pooled SD: 1.49\",\"Covariance: 0.5 <br />Pooled SD: 1.53\",\"Covariance: 0.32 <br />Pooled SD: 0.69\",\"Covariance: -0.48 <br />Pooled SD: 0.49\",\"Covariance: -0.28 <br />Pooled SD: 0.38\",\"Covariance: 0.44 <br />Pooled SD: 1.06\",\"Covariance: 0 <br />Pooled SD: 0.61\",\"Covariance: -0.02 <br />Pooled SD: 0.44\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: -0.45 <br />Pooled SD: 1.25\",\"Covariance: -0.02 <br />Pooled SD: 0.5\",\"Covariance: -0.82 <br />Pooled SD: 1.19\",\"Covariance: -0.26 <br />Pooled SD: 2.28\",\"Covariance: 0.7 <br />Pooled SD: 0.81\",\"Covariance: 0.37 <br />Pooled SD: 1.59\",\"Covariance: 0.2 <br />Pooled SD: 0.41\",\"Covariance: 1.99 <br />Pooled SD: 2.39\",\"Covariance: -0.07 <br />Pooled SD: 0.23\",\"Covariance: 0.29 <br />Pooled SD: 0.57\",\"Covariance: 1.79 <br />Pooled SD: 2.95\",\"Covariance: -1.05 <br />Pooled SD: 1.48\",\"Covariance: 0.39 <br />Pooled SD: 1.6\",\"Covariance: 0.7 <br />Pooled SD: 1\",\"Covariance: 0.07 <br />Pooled SD: 1.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -1.65 <br />Pooled SD: 2.34\",\"Covariance: 0.34 <br />Pooled SD: 0.87\",\"Covariance: 0.23 <br />Pooled SD: 1.27\",\"Covariance: 0 <br />Pooled SD: 1.66\",\"Covariance: -0.86 <br />Pooled SD: 1.4\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -1.43 <br />Pooled SD: 1.62\",\"Covariance: 0.38 <br />Pooled SD: 1.2\",\"Covariance: 0.44 <br />Pooled SD: 0.65\",\"Covariance: 0.45 <br />Pooled SD: 0.85\",\"Covariance: 1.33 <br />Pooled SD: 2.39\",\"Covariance: 0.16 <br />Pooled SD: 1.21\",\"Covariance: -0.26 <br />Pooled SD: 1.18\",\"Covariance: 1.01 <br />Pooled SD: 1.18\",\"Covariance: 0.12 <br />Pooled SD: 0.93\",\"Covariance: -0.56 <br />Pooled SD: 0.9\",\"Covariance: -0.47 <br />Pooled SD: 0.9\",\"Covariance: -0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.21 <br />Pooled SD: 0.77\",\"Covariance: -0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.8 <br />Pooled SD: 1.31\",\"Covariance: -0.09 <br />Pooled SD: 0.49\",\"Covariance: 0.27 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.13\",\"Covariance: 0.06 <br />Pooled SD: 0.93\",\"Covariance: -0.24 <br />Pooled SD: 0.51\",\"Covariance: 0.67 <br />Pooled SD: 1.15\",\"Covariance: -0.19 <br />Pooled SD: 0.93\"],\"frame\":\"2400\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2500\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7,0.17,-1.1,0.54,0.96,0.46,0.49,0.1,0.2,-0.03,0.45,0.13,0.05,-0.65,-0.3,0.66,-0.46,0.12,-0.16,0.35,-0.77,0.2,-0.57,0.76,0.18,0.11,0.02,-0.28,-0.62,-0.65,-0.12,0.32,-0.48,0.38,0.91,-0.69,-0.6,0.09,1.15,-0.57,0.05,0.3,-0.07,0.28,-0.01,-0.03,0.95,0.83,-0.97,0.04,-0.58,-0.96,0.23,0.81,-0.11,-0.54,0.58,-0.39,0.78,0.4,-0.32,-0.38,-0.57,-0.11,-0.08,-0.08,-0.57,0.33,-0.33,0.27,-1.12,1.37,-1.64,-2.13,-0.14,-1.43,0.06,0.13,0.03,0.08,0.22,-0.4,0.12,0.29,-0.93,0.81,0.46,-0.18,0.39,-1.82,0.52,-0.45,0.1,-0.65,-0.2,-0.42,0.25,-0.22,0.12,-0.28,1.16,0.5,0.28,-1.01,0.38,1.33,0.61,0.03,0.75,0.57,-0.1,0.18,0.41,0.54,-0.03,0.61,0.05,0.34,-0.18,0.38,-0.38,0.41,-0.39,-0.26,1.37,-0.34,0.17,0.49,-0.11,-0.15,0.87,0.13,-0.2,0.04,-0.09,0.58,0.82,-0.05,0.35,0.12,-0.02,0.11,0.11,0.2,-0.16,0.06,-0.39,0.58,-0.75,-0.08,0.22,-0.1,-0.26,-0.94,-0.19,0.31,-0.17,1.21,-0.88,0.22,-1.27,0.75,-0.05,0.96,-0.39,0.52,-0.15,0.08,-0.33,0.26,-0.16,-0.86,0.16,-0.55,0.51,0.08,0.07,1.51,0.48,-0.22,0.91,0.63,1.31,0.97,-0.05,-0.21,0.55,0.57,0.36,-0.23,0,-0.28,-0.4,0.34,-0.23,0.47,0.66,0.63,0.1,-0.07,0.1,0.23,-0.25,0.45,0.18,-0.46,-0.35,-0.38,0.53,-0.18,0.01,0.01,0.57,-0.44,0.13,0.78,-0.15,0.26,0.17,1.1,-0.09,-0.52,-0.12,0.38,0.64,0.18,-0.65,0.07,-0.66,0.12,1.45,0.5,0.06,0.04,0.7,0.66,0.08,-1.54,0.45,0.16,0.01,-0.06,-0.27,0.3,0,-0.44,-0.89,0.64,1.1,0.5,0.32,-0.48,-0.28,0.44,0,-0.02,0.13,-0.45,-0.02,-0.82,-0.26,0.7,0.37,0.2,1.99,-0.07,0.29,1.79,-1.05,0.39,0.7,0.07,-0.39,-1.65,0.34,0.23,-0,-0.86,0.27,-1.43,0.38,0.44,0.45,1.33,0.16,-0.26,1.01,0.12,-0.56,-0.47,-0.18,-0.21,-0.62,-0.8,-0.09,0.27,-0.48,0.06,-0.24,0.67,-0.19,-0.8,0.85,-0.19,-0.86,0.79,-0.76,0.22,0.1,-0.74,1,0.3,-0.98,-0.44,-0.19,-0.86,-0.13,0.17,-0.04,0.37,0.23,0.95,-0.88,0.18,0.19,-0.12,0.05,-0.27,0.43,1.16,0.19,0.51,0.05,0.56,-0.08,-3.39,-0.44,-0.93,0.07,-0.42,0.99,0.33,-0.31,0.11,0.33,0.39,-0.85,-0.53,-0.75,1.18,-1.21,0.83,-0.25,-0.74,-0.33,-0.46,1.62,0.16,-0.55,-0.13,-0.14,-0.21,-0.66,0.04,1.08,0.59,-0.02,-1.14,0.54,-0.83,-0.3,0.54,0.73,0.41,0.07,-0.14,0.16,-0.33,-0.32,0.35,-0.41,-0.11,0.32,-0.77,-0.44,-0.08,2.65,-0.38,0.15,-0.49,0.31,0.18,0.18,-0.01,0.16,0.23,-0.21,0.54,-0.37,0.71,-0],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14,1.39,2.11,0.64,1.87,1.81,2.14,0.73,1.17,0.99,0.98,1.73,0.65,1.81,0.77,1.01,1.86,1.58,0.7,0.98,1.55,0.98,1.03,1.13,0.92,0.96,1.17,1.26,1.33,1.35,0.82,2.11,0.87,1.69,1.42,0.97,2.99,2.68,2.32,1.16,0.89,1.21,0.46,1.48,1.39,0.39,2.16,1.26,1.14,0.7,2.74,1.49,0.66,1.46,0.56,0.59,0.82,1.39,1.14,1.33,0.95,0.62,1.05,1.85,1.05,1.51,0.98,1.42,1.14,1.9,1.43,1.65,2.42,2.59,0.94,2.3,0.75,0.99,1.16,1.12,0.75,0.55,0.86,0.93,1.63,1.08,0.67,0.86,0.63,3.11,1.71,1.08,1.13,1.66,1.17,0.74,1.87,1.19,0.4,1.56,1.48,0.71,0.9,1.56,0.74,1.7,2.04,0.94,1.42,1.44,0.49,0.41,0.95,1.05,0.9,1.02,0.73,0.92,2.43,1.37,1.33,1.64,1.02,0.62,1.88,1.68,2.41,1.6,1.51,2.26,2.39,0.25,0.65,0.48,1.5,1.71,1.63,0.75,1.08,0.77,1.06,0.69,0.93,1.41,0.85,1.86,1.11,1.12,1.12,1.71,0.35,1.05,1.53,1.57,0.4,0.9,0.96,2.18,1.88,0.58,2.39,2.15,1.81,1.59,1.71,1.16,0.86,0.95,0.86,1.31,1.03,1.8,1.17,1.9,1.28,0.36,0.98,1.56,1.18,2.7,1.98,1.3,1.86,2.1,0.6,0.89,1.12,3.05,0.97,0.85,0.38,1.18,0.72,0.86,1.07,1.64,2.35,1.4,1.41,0.51,0.99,1.61,2.32,0.6,0.72,0.8,1.47,0.85,0.74,0.4,0.62,1.42,0.85,0.68,0.72,1.06,0.65,0.67,1.68,1.67,1.43,0.82,1.01,1.24,1.69,0.69,1.96,0.81,0.91,1.76,1.62,0.72,1.04,1.06,1.99,2.49,0.69,2.17,1.46,0.63,0.48,0.49,1.21,1.57,0.82,0.53,2.58,0.7,1.49,1.53,0.69,0.49,0.38,1.06,0.61,0.44,1.73,1.25,0.5,1.19,2.28,0.81,1.59,0.41,2.39,0.23,0.57,2.95,1.48,1.6,1,1.45,0.78,2.34,0.87,1.27,1.66,1.4,0.77,1.62,1.2,0.65,0.85,2.39,1.21,1.18,1.18,0.93,0.9,0.9,0.69,0.77,1.15,1.31,0.49,1.36,1.13,0.93,0.51,1.15,0.93,1.25,1.34,1.94,2.03,1.38,1.97,0.58,0.37,1.13,1.74,1.63,1.54,0.73,0.8,1.82,0.74,1.01,0.46,0.56,0.69,1.84,1.32,0.59,0.91,1.27,0.87,0.73,2.73,1.7,0.58,1.72,0.64,1.14,2.25,3.65,1.08,1.64,1.46,1.38,1.1,0.98,2.19,2.18,1.83,0.99,1.7,2.21,0.85,1.55,1.61,0.99,0.49,2.13,1.5,0.99,3.64,0.86,0.93,0.76,1.48,1.22,1.37,1.5,2.4,0.96,2.59,2.22,1.16,2.07,1.19,0.88,1.95,0.61,1.21,0.78,0.51,1.8,1.35,1.82,1.31,1.61,0.65,1.15,1.85,0.44,2.86,0.87,1.06,0.85,1.15,0.81,0.44,0.58,2.39,0.89,0.7,0.84,1.57,1,0.71],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\",\"Covariance: 0.17 <br />Pooled SD: 1.39\",\"Covariance: -1.1 <br />Pooled SD: 2.11\",\"Covariance: 0.54 <br />Pooled SD: 0.64\",\"Covariance: 0.96 <br />Pooled SD: 1.87\",\"Covariance: 0.46 <br />Pooled SD: 1.81\",\"Covariance: 0.49 <br />Pooled SD: 2.14\",\"Covariance: 0.1 <br />Pooled SD: 0.73\",\"Covariance: 0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.03 <br />Pooled SD: 0.99\",\"Covariance: 0.45 <br />Pooled SD: 0.98\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.81\",\"Covariance: -0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.66 <br />Pooled SD: 1.01\",\"Covariance: -0.46 <br />Pooled SD: 1.86\",\"Covariance: 0.12 <br />Pooled SD: 1.58\",\"Covariance: -0.16 <br />Pooled SD: 0.7\",\"Covariance: 0.35 <br />Pooled SD: 0.98\",\"Covariance: -0.77 <br />Pooled SD: 1.55\",\"Covariance: 0.2 <br />Pooled SD: 0.98\",\"Covariance: -0.57 <br />Pooled SD: 1.03\",\"Covariance: 0.76 <br />Pooled SD: 1.13\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.02 <br />Pooled SD: 1.17\",\"Covariance: -0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.33\",\"Covariance: -0.65 <br />Pooled SD: 1.35\",\"Covariance: -0.12 <br />Pooled SD: 0.82\",\"Covariance: 0.32 <br />Pooled SD: 2.11\",\"Covariance: -0.48 <br />Pooled SD: 0.87\",\"Covariance: 0.38 <br />Pooled SD: 1.69\",\"Covariance: 0.91 <br />Pooled SD: 1.42\",\"Covariance: -0.69 <br />Pooled SD: 0.97\",\"Covariance: -0.6 <br />Pooled SD: 2.99\",\"Covariance: 0.09 <br />Pooled SD: 2.68\",\"Covariance: 1.15 <br />Pooled SD: 2.32\",\"Covariance: -0.57 <br />Pooled SD: 1.16\",\"Covariance: 0.05 <br />Pooled SD: 0.89\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: -0.07 <br />Pooled SD: 0.46\",\"Covariance: 0.28 <br />Pooled SD: 1.48\",\"Covariance: -0.01 <br />Pooled SD: 1.39\",\"Covariance: -0.03 <br />Pooled SD: 0.39\",\"Covariance: 0.95 <br />Pooled SD: 2.16\",\"Covariance: 0.83 <br />Pooled SD: 1.26\",\"Covariance: -0.97 <br />Pooled SD: 1.14\",\"Covariance: 0.04 <br />Pooled SD: 0.7\",\"Covariance: -0.58 <br />Pooled SD: 2.74\",\"Covariance: -0.96 <br />Pooled SD: 1.49\",\"Covariance: 0.23 <br />Pooled SD: 0.66\",\"Covariance: 0.81 <br />Pooled SD: 1.46\",\"Covariance: -0.11 <br />Pooled SD: 0.56\",\"Covariance: -0.54 <br />Pooled SD: 0.59\",\"Covariance: 0.58 <br />Pooled SD: 0.82\",\"Covariance: -0.39 <br />Pooled SD: 1.39\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 0.4 <br />Pooled SD: 1.33\",\"Covariance: -0.32 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.57 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 1.05\",\"Covariance: -0.08 <br />Pooled SD: 1.51\",\"Covariance: -0.57 <br />Pooled SD: 0.98\",\"Covariance: 0.33 <br />Pooled SD: 1.42\",\"Covariance: -0.33 <br />Pooled SD: 1.14\",\"Covariance: 0.27 <br />Pooled SD: 1.9\",\"Covariance: -1.12 <br />Pooled SD: 1.43\",\"Covariance: 1.37 <br />Pooled SD: 1.65\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: -2.13 <br />Pooled SD: 2.59\",\"Covariance: -0.14 <br />Pooled SD: 0.94\",\"Covariance: -1.43 <br />Pooled SD: 2.3\",\"Covariance: 0.06 <br />Pooled SD: 0.75\",\"Covariance: 0.13 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 1.16\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.12 <br />Pooled SD: 0.86\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.93 <br />Pooled SD: 1.63\",\"Covariance: 0.81 <br />Pooled SD: 1.08\",\"Covariance: 0.46 <br />Pooled SD: 0.67\",\"Covariance: -0.18 <br />Pooled SD: 0.86\",\"Covariance: 0.39 <br />Pooled SD: 0.63\",\"Covariance: -1.82 <br />Pooled SD: 3.11\",\"Covariance: 0.52 <br />Pooled SD: 1.71\",\"Covariance: -0.45 <br />Pooled SD: 1.08\",\"Covariance: 0.1 <br />Pooled SD: 1.13\",\"Covariance: -0.65 <br />Pooled SD: 1.66\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 0.74\",\"Covariance: 0.25 <br />Pooled SD: 1.87\",\"Covariance: -0.22 <br />Pooled SD: 1.19\",\"Covariance: 0.12 <br />Pooled SD: 0.4\",\"Covariance: -0.28 <br />Pooled SD: 1.56\",\"Covariance: 1.16 <br />Pooled SD: 1.48\",\"Covariance: 0.5 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 0.9\",\"Covariance: -1.01 <br />Pooled SD: 1.56\",\"Covariance: 0.38 <br />Pooled SD: 0.74\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.61 <br />Pooled SD: 2.04\",\"Covariance: 0.03 <br />Pooled SD: 0.94\",\"Covariance: 0.75 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 1.44\",\"Covariance: -0.1 <br />Pooled SD: 0.49\",\"Covariance: 0.18 <br />Pooled SD: 0.41\",\"Covariance: 0.41 <br />Pooled SD: 0.95\",\"Covariance: 0.54 <br />Pooled SD: 1.05\",\"Covariance: -0.03 <br />Pooled SD: 0.9\",\"Covariance: 0.61 <br />Pooled SD: 1.02\",\"Covariance: 0.05 <br />Pooled SD: 0.73\",\"Covariance: 0.34 <br />Pooled SD: 0.92\",\"Covariance: -0.18 <br />Pooled SD: 2.43\",\"Covariance: 0.38 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.33\",\"Covariance: 0.41 <br />Pooled SD: 1.64\",\"Covariance: -0.39 <br />Pooled SD: 1.02\",\"Covariance: -0.26 <br />Pooled SD: 0.62\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.17 <br />Pooled SD: 2.41\",\"Covariance: 0.49 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 2.26\",\"Covariance: 0.87 <br />Pooled SD: 2.39\",\"Covariance: 0.13 <br />Pooled SD: 0.25\",\"Covariance: -0.2 <br />Pooled SD: 0.65\",\"Covariance: 0.04 <br />Pooled SD: 0.48\",\"Covariance: -0.09 <br />Pooled SD: 1.5\",\"Covariance: 0.58 <br />Pooled SD: 1.71\",\"Covariance: 0.82 <br />Pooled SD: 1.63\",\"Covariance: -0.05 <br />Pooled SD: 0.75\",\"Covariance: 0.35 <br />Pooled SD: 1.08\",\"Covariance: 0.12 <br />Pooled SD: 0.77\",\"Covariance: -0.02 <br />Pooled SD: 1.06\",\"Covariance: 0.11 <br />Pooled SD: 0.69\",\"Covariance: 0.11 <br />Pooled SD: 0.93\",\"Covariance: 0.2 <br />Pooled SD: 1.41\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.06 <br />Pooled SD: 1.86\",\"Covariance: -0.39 <br />Pooled SD: 1.11\",\"Covariance: 0.58 <br />Pooled SD: 1.12\",\"Covariance: -0.75 <br />Pooled SD: 1.12\",\"Covariance: -0.08 <br />Pooled SD: 1.71\",\"Covariance: 0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.1 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 1.53\",\"Covariance: -0.94 <br />Pooled SD: 1.57\",\"Covariance: -0.19 <br />Pooled SD: 0.4\",\"Covariance: 0.31 <br />Pooled SD: 0.9\",\"Covariance: -0.17 <br />Pooled SD: 0.96\",\"Covariance: 1.21 <br />Pooled SD: 2.18\",\"Covariance: -0.88 <br />Pooled SD: 1.88\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: -1.27 <br />Pooled SD: 2.39\",\"Covariance: 0.75 <br />Pooled SD: 2.15\",\"Covariance: -0.05 <br />Pooled SD: 1.81\",\"Covariance: 0.96 <br />Pooled SD: 1.59\",\"Covariance: -0.39 <br />Pooled SD: 1.71\",\"Covariance: 0.52 <br />Pooled SD: 1.16\",\"Covariance: -0.15 <br />Pooled SD: 0.86\",\"Covariance: 0.08 <br />Pooled SD: 0.95\",\"Covariance: -0.33 <br />Pooled SD: 0.86\",\"Covariance: 0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.16 <br />Pooled SD: 1.03\",\"Covariance: -0.86 <br />Pooled SD: 1.8\",\"Covariance: 0.16 <br />Pooled SD: 1.17\",\"Covariance: -0.55 <br />Pooled SD: 1.9\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.08 <br />Pooled SD: 0.36\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: 1.51 <br />Pooled SD: 1.56\",\"Covariance: 0.48 <br />Pooled SD: 1.18\",\"Covariance: -0.22 <br />Pooled SD: 2.7\",\"Covariance: 0.91 <br />Pooled SD: 1.98\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: 1.31 <br />Pooled SD: 1.86\",\"Covariance: 0.97 <br />Pooled SD: 2.1\",\"Covariance: -0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.21 <br />Pooled SD: 0.89\",\"Covariance: 0.55 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 3.05\",\"Covariance: 0.36 <br />Pooled SD: 0.97\",\"Covariance: -0.23 <br />Pooled SD: 0.85\",\"Covariance: 0 <br />Pooled SD: 0.38\",\"Covariance: -0.28 <br />Pooled SD: 1.18\",\"Covariance: -0.4 <br />Pooled SD: 0.72\",\"Covariance: 0.34 <br />Pooled SD: 0.86\",\"Covariance: -0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.47 <br />Pooled SD: 1.64\",\"Covariance: 0.66 <br />Pooled SD: 2.35\",\"Covariance: 0.63 <br />Pooled SD: 1.4\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.51\",\"Covariance: 0.1 <br />Pooled SD: 0.99\",\"Covariance: 0.23 <br />Pooled SD: 1.61\",\"Covariance: -0.25 <br />Pooled SD: 2.32\",\"Covariance: 0.45 <br />Pooled SD: 0.6\",\"Covariance: 0.18 <br />Pooled SD: 0.72\",\"Covariance: -0.46 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 1.47\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: 0.53 <br />Pooled SD: 0.74\",\"Covariance: -0.18 <br />Pooled SD: 0.4\",\"Covariance: 0.01 <br />Pooled SD: 0.62\",\"Covariance: 0.01 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 0.85\",\"Covariance: -0.44 <br />Pooled SD: 0.68\",\"Covariance: 0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.78 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.65\",\"Covariance: 0.26 <br />Pooled SD: 0.67\",\"Covariance: 0.17 <br />Pooled SD: 1.68\",\"Covariance: 1.1 <br />Pooled SD: 1.67\",\"Covariance: -0.09 <br />Pooled SD: 1.43\",\"Covariance: -0.52 <br />Pooled SD: 0.82\",\"Covariance: -0.12 <br />Pooled SD: 1.01\",\"Covariance: 0.38 <br />Pooled SD: 1.24\",\"Covariance: 0.64 <br />Pooled SD: 1.69\",\"Covariance: 0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.96\",\"Covariance: 0.07 <br />Pooled SD: 0.81\",\"Covariance: -0.66 <br />Pooled SD: 0.91\",\"Covariance: 0.12 <br />Pooled SD: 1.76\",\"Covariance: 1.45 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 0.72\",\"Covariance: 0.06 <br />Pooled SD: 1.04\",\"Covariance: 0.04 <br />Pooled SD: 1.06\",\"Covariance: 0.7 <br />Pooled SD: 1.99\",\"Covariance: 0.66 <br />Pooled SD: 2.49\",\"Covariance: 0.08 <br />Pooled SD: 0.69\",\"Covariance: -1.54 <br />Pooled SD: 2.17\",\"Covariance: 0.45 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.63\",\"Covariance: 0.01 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.49\",\"Covariance: -0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.3 <br />Pooled SD: 1.57\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: -0.44 <br />Pooled SD: 0.53\",\"Covariance: -0.89 <br />Pooled SD: 2.58\",\"Covariance: 0.64 <br />Pooled SD: 0.7\",\"Covariance: 1.1 <br />Pooled SD: 1.49\",\"Covariance: 0.5 <br />Pooled SD: 1.53\",\"Covariance: 0.32 <br />Pooled SD: 0.69\",\"Covariance: -0.48 <br />Pooled SD: 0.49\",\"Covariance: -0.28 <br />Pooled SD: 0.38\",\"Covariance: 0.44 <br />Pooled SD: 1.06\",\"Covariance: 0 <br />Pooled SD: 0.61\",\"Covariance: -0.02 <br />Pooled SD: 0.44\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: -0.45 <br />Pooled SD: 1.25\",\"Covariance: -0.02 <br />Pooled SD: 0.5\",\"Covariance: -0.82 <br />Pooled SD: 1.19\",\"Covariance: -0.26 <br />Pooled SD: 2.28\",\"Covariance: 0.7 <br />Pooled SD: 0.81\",\"Covariance: 0.37 <br />Pooled SD: 1.59\",\"Covariance: 0.2 <br />Pooled SD: 0.41\",\"Covariance: 1.99 <br />Pooled SD: 2.39\",\"Covariance: -0.07 <br />Pooled SD: 0.23\",\"Covariance: 0.29 <br />Pooled SD: 0.57\",\"Covariance: 1.79 <br />Pooled SD: 2.95\",\"Covariance: -1.05 <br />Pooled SD: 1.48\",\"Covariance: 0.39 <br />Pooled SD: 1.6\",\"Covariance: 0.7 <br />Pooled SD: 1\",\"Covariance: 0.07 <br />Pooled SD: 1.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -1.65 <br />Pooled SD: 2.34\",\"Covariance: 0.34 <br />Pooled SD: 0.87\",\"Covariance: 0.23 <br />Pooled SD: 1.27\",\"Covariance: 0 <br />Pooled SD: 1.66\",\"Covariance: -0.86 <br />Pooled SD: 1.4\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -1.43 <br />Pooled SD: 1.62\",\"Covariance: 0.38 <br />Pooled SD: 1.2\",\"Covariance: 0.44 <br />Pooled SD: 0.65\",\"Covariance: 0.45 <br />Pooled SD: 0.85\",\"Covariance: 1.33 <br />Pooled SD: 2.39\",\"Covariance: 0.16 <br />Pooled SD: 1.21\",\"Covariance: -0.26 <br />Pooled SD: 1.18\",\"Covariance: 1.01 <br />Pooled SD: 1.18\",\"Covariance: 0.12 <br />Pooled SD: 0.93\",\"Covariance: -0.56 <br />Pooled SD: 0.9\",\"Covariance: -0.47 <br />Pooled SD: 0.9\",\"Covariance: -0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.21 <br />Pooled SD: 0.77\",\"Covariance: -0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.8 <br />Pooled SD: 1.31\",\"Covariance: -0.09 <br />Pooled SD: 0.49\",\"Covariance: 0.27 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.13\",\"Covariance: 0.06 <br />Pooled SD: 0.93\",\"Covariance: -0.24 <br />Pooled SD: 0.51\",\"Covariance: 0.67 <br />Pooled SD: 1.15\",\"Covariance: -0.19 <br />Pooled SD: 0.93\",\"Covariance: -0.8 <br />Pooled SD: 1.25\",\"Covariance: 0.85 <br />Pooled SD: 1.34\",\"Covariance: -0.19 <br />Pooled SD: 1.94\",\"Covariance: -0.86 <br />Pooled SD: 2.03\",\"Covariance: 0.79 <br />Pooled SD: 1.38\",\"Covariance: -0.76 <br />Pooled SD: 1.97\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: 0.1 <br />Pooled SD: 0.37\",\"Covariance: -0.74 <br />Pooled SD: 1.13\",\"Covariance: 1 <br />Pooled SD: 1.74\",\"Covariance: 0.3 <br />Pooled SD: 1.63\",\"Covariance: -0.98 <br />Pooled SD: 1.54\",\"Covariance: -0.44 <br />Pooled SD: 0.73\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.86 <br />Pooled SD: 1.82\",\"Covariance: -0.13 <br />Pooled SD: 0.74\",\"Covariance: 0.17 <br />Pooled SD: 1.01\",\"Covariance: -0.04 <br />Pooled SD: 0.46\",\"Covariance: 0.37 <br />Pooled SD: 0.56\",\"Covariance: 0.23 <br />Pooled SD: 0.69\",\"Covariance: 0.95 <br />Pooled SD: 1.84\",\"Covariance: -0.88 <br />Pooled SD: 1.32\",\"Covariance: 0.18 <br />Pooled SD: 0.59\",\"Covariance: 0.19 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.27\",\"Covariance: 0.05 <br />Pooled SD: 0.87\",\"Covariance: -0.27 <br />Pooled SD: 0.73\",\"Covariance: 0.43 <br />Pooled SD: 2.73\",\"Covariance: 1.16 <br />Pooled SD: 1.7\",\"Covariance: 0.19 <br />Pooled SD: 0.58\",\"Covariance: 0.51 <br />Pooled SD: 1.72\",\"Covariance: 0.05 <br />Pooled SD: 0.64\",\"Covariance: 0.56 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 2.25\",\"Covariance: -3.39 <br />Pooled SD: 3.65\",\"Covariance: -0.44 <br />Pooled SD: 1.08\",\"Covariance: -0.93 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.46\",\"Covariance: -0.42 <br />Pooled SD: 1.38\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.33 <br />Pooled SD: 0.98\",\"Covariance: -0.31 <br />Pooled SD: 2.19\",\"Covariance: 0.11 <br />Pooled SD: 2.18\",\"Covariance: 0.33 <br />Pooled SD: 1.83\",\"Covariance: 0.39 <br />Pooled SD: 0.99\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.53 <br />Pooled SD: 2.21\",\"Covariance: -0.75 <br />Pooled SD: 0.85\",\"Covariance: 1.18 <br />Pooled SD: 1.55\",\"Covariance: -1.21 <br />Pooled SD: 1.61\",\"Covariance: 0.83 <br />Pooled SD: 0.99\",\"Covariance: -0.25 <br />Pooled SD: 0.49\",\"Covariance: -0.74 <br />Pooled SD: 2.13\",\"Covariance: -0.33 <br />Pooled SD: 1.5\",\"Covariance: -0.46 <br />Pooled SD: 0.99\",\"Covariance: 1.62 <br />Pooled SD: 3.64\",\"Covariance: 0.16 <br />Pooled SD: 0.86\",\"Covariance: -0.55 <br />Pooled SD: 0.93\",\"Covariance: -0.13 <br />Pooled SD: 0.76\",\"Covariance: -0.14 <br />Pooled SD: 1.48\",\"Covariance: -0.21 <br />Pooled SD: 1.22\",\"Covariance: -0.66 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 1.5\",\"Covariance: 1.08 <br />Pooled SD: 2.4\",\"Covariance: 0.59 <br />Pooled SD: 0.96\",\"Covariance: -0.02 <br />Pooled SD: 2.59\",\"Covariance: -1.14 <br />Pooled SD: 2.22\",\"Covariance: 0.54 <br />Pooled SD: 1.16\",\"Covariance: -0.83 <br />Pooled SD: 2.07\",\"Covariance: -0.3 <br />Pooled SD: 1.19\",\"Covariance: 0.54 <br />Pooled SD: 0.88\",\"Covariance: 0.73 <br />Pooled SD: 1.95\",\"Covariance: 0.41 <br />Pooled SD: 0.61\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.14 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 0.51\",\"Covariance: -0.33 <br />Pooled SD: 1.8\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: 0.35 <br />Pooled SD: 1.82\",\"Covariance: -0.41 <br />Pooled SD: 1.31\",\"Covariance: -0.11 <br />Pooled SD: 1.61\",\"Covariance: 0.32 <br />Pooled SD: 0.65\",\"Covariance: -0.77 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 0.44\",\"Covariance: 2.65 <br />Pooled SD: 2.86\",\"Covariance: -0.38 <br />Pooled SD: 0.87\",\"Covariance: 0.15 <br />Pooled SD: 1.06\",\"Covariance: -0.49 <br />Pooled SD: 0.85\",\"Covariance: 0.31 <br />Pooled SD: 1.15\",\"Covariance: 0.18 <br />Pooled SD: 0.81\",\"Covariance: 0.18 <br />Pooled SD: 0.44\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: 0.16 <br />Pooled SD: 2.39\",\"Covariance: 0.23 <br />Pooled SD: 0.89\",\"Covariance: -0.21 <br />Pooled SD: 0.7\",\"Covariance: 0.54 <br />Pooled SD: 0.84\",\"Covariance: -0.37 <br />Pooled SD: 1.57\",\"Covariance: 0.71 <br />Pooled SD: 1\",\"Covariance: 0 <br />Pooled SD: 0.71\"],\"frame\":\"2500\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2600\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7,0.17,-1.1,0.54,0.96,0.46,0.49,0.1,0.2,-0.03,0.45,0.13,0.05,-0.65,-0.3,0.66,-0.46,0.12,-0.16,0.35,-0.77,0.2,-0.57,0.76,0.18,0.11,0.02,-0.28,-0.62,-0.65,-0.12,0.32,-0.48,0.38,0.91,-0.69,-0.6,0.09,1.15,-0.57,0.05,0.3,-0.07,0.28,-0.01,-0.03,0.95,0.83,-0.97,0.04,-0.58,-0.96,0.23,0.81,-0.11,-0.54,0.58,-0.39,0.78,0.4,-0.32,-0.38,-0.57,-0.11,-0.08,-0.08,-0.57,0.33,-0.33,0.27,-1.12,1.37,-1.64,-2.13,-0.14,-1.43,0.06,0.13,0.03,0.08,0.22,-0.4,0.12,0.29,-0.93,0.81,0.46,-0.18,0.39,-1.82,0.52,-0.45,0.1,-0.65,-0.2,-0.42,0.25,-0.22,0.12,-0.28,1.16,0.5,0.28,-1.01,0.38,1.33,0.61,0.03,0.75,0.57,-0.1,0.18,0.41,0.54,-0.03,0.61,0.05,0.34,-0.18,0.38,-0.38,0.41,-0.39,-0.26,1.37,-0.34,0.17,0.49,-0.11,-0.15,0.87,0.13,-0.2,0.04,-0.09,0.58,0.82,-0.05,0.35,0.12,-0.02,0.11,0.11,0.2,-0.16,0.06,-0.39,0.58,-0.75,-0.08,0.22,-0.1,-0.26,-0.94,-0.19,0.31,-0.17,1.21,-0.88,0.22,-1.27,0.75,-0.05,0.96,-0.39,0.52,-0.15,0.08,-0.33,0.26,-0.16,-0.86,0.16,-0.55,0.51,0.08,0.07,1.51,0.48,-0.22,0.91,0.63,1.31,0.97,-0.05,-0.21,0.55,0.57,0.36,-0.23,0,-0.28,-0.4,0.34,-0.23,0.47,0.66,0.63,0.1,-0.07,0.1,0.23,-0.25,0.45,0.18,-0.46,-0.35,-0.38,0.53,-0.18,0.01,0.01,0.57,-0.44,0.13,0.78,-0.15,0.26,0.17,1.1,-0.09,-0.52,-0.12,0.38,0.64,0.18,-0.65,0.07,-0.66,0.12,1.45,0.5,0.06,0.04,0.7,0.66,0.08,-1.54,0.45,0.16,0.01,-0.06,-0.27,0.3,0,-0.44,-0.89,0.64,1.1,0.5,0.32,-0.48,-0.28,0.44,0,-0.02,0.13,-0.45,-0.02,-0.82,-0.26,0.7,0.37,0.2,1.99,-0.07,0.29,1.79,-1.05,0.39,0.7,0.07,-0.39,-1.65,0.34,0.23,-0,-0.86,0.27,-1.43,0.38,0.44,0.45,1.33,0.16,-0.26,1.01,0.12,-0.56,-0.47,-0.18,-0.21,-0.62,-0.8,-0.09,0.27,-0.48,0.06,-0.24,0.67,-0.19,-0.8,0.85,-0.19,-0.86,0.79,-0.76,0.22,0.1,-0.74,1,0.3,-0.98,-0.44,-0.19,-0.86,-0.13,0.17,-0.04,0.37,0.23,0.95,-0.88,0.18,0.19,-0.12,0.05,-0.27,0.43,1.16,0.19,0.51,0.05,0.56,-0.08,-3.39,-0.44,-0.93,0.07,-0.42,0.99,0.33,-0.31,0.11,0.33,0.39,-0.85,-0.53,-0.75,1.18,-1.21,0.83,-0.25,-0.74,-0.33,-0.46,1.62,0.16,-0.55,-0.13,-0.14,-0.21,-0.66,0.04,1.08,0.59,-0.02,-1.14,0.54,-0.83,-0.3,0.54,0.73,0.41,0.07,-0.14,0.16,-0.33,-0.32,0.35,-0.41,-0.11,0.32,-0.77,-0.44,-0.08,2.65,-0.38,0.15,-0.49,0.31,0.18,0.18,-0.01,0.16,0.23,-0.21,0.54,-0.37,0.71,-0,0.76,0.07,-0.28,-0.15,0.33,-0.49,-0.25,-0.12,-0.66,-0.7,-0.56,-0.12,-0.12,0.06,0.78,-0.35,0.34,0.19,1,-0.17,0.67,-1.53,-0.54,0.8,0.34,-1.59,0.52,-0.1,0.42,-0.86,-0.78,-0.18,0.02,-0.42,-0.01,-0.11,-0.6,0.73,0.48,0.36,-0.47,-0.25,0.28,-0.72,0.25,-0.66,0.43,0.16,-0.31,0.68,-0.41,0.77,-0.05,-0.46,0.61,0.05,-0.67,-2.07,-0.82,-0.85,-0.03,0.76,-0.28,0.79,-0.74,-0.17,-0.1,-0.83,-0.22,0.78,0.97,-0.1,0,-0.16,0.93,0.83,0.77,-0.12,-0.41,0.13,-0.13,0.07,0.34,0.02,-0.55,-0.54,0.28,-0.05,0.48,0.42,0.4,0.37,0.14,-0.74,-1.09,0.19,-0.37,0.3,-0.08,-0.26],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14,1.39,2.11,0.64,1.87,1.81,2.14,0.73,1.17,0.99,0.98,1.73,0.65,1.81,0.77,1.01,1.86,1.58,0.7,0.98,1.55,0.98,1.03,1.13,0.92,0.96,1.17,1.26,1.33,1.35,0.82,2.11,0.87,1.69,1.42,0.97,2.99,2.68,2.32,1.16,0.89,1.21,0.46,1.48,1.39,0.39,2.16,1.26,1.14,0.7,2.74,1.49,0.66,1.46,0.56,0.59,0.82,1.39,1.14,1.33,0.95,0.62,1.05,1.85,1.05,1.51,0.98,1.42,1.14,1.9,1.43,1.65,2.42,2.59,0.94,2.3,0.75,0.99,1.16,1.12,0.75,0.55,0.86,0.93,1.63,1.08,0.67,0.86,0.63,3.11,1.71,1.08,1.13,1.66,1.17,0.74,1.87,1.19,0.4,1.56,1.48,0.71,0.9,1.56,0.74,1.7,2.04,0.94,1.42,1.44,0.49,0.41,0.95,1.05,0.9,1.02,0.73,0.92,2.43,1.37,1.33,1.64,1.02,0.62,1.88,1.68,2.41,1.6,1.51,2.26,2.39,0.25,0.65,0.48,1.5,1.71,1.63,0.75,1.08,0.77,1.06,0.69,0.93,1.41,0.85,1.86,1.11,1.12,1.12,1.71,0.35,1.05,1.53,1.57,0.4,0.9,0.96,2.18,1.88,0.58,2.39,2.15,1.81,1.59,1.71,1.16,0.86,0.95,0.86,1.31,1.03,1.8,1.17,1.9,1.28,0.36,0.98,1.56,1.18,2.7,1.98,1.3,1.86,2.1,0.6,0.89,1.12,3.05,0.97,0.85,0.38,1.18,0.72,0.86,1.07,1.64,2.35,1.4,1.41,0.51,0.99,1.61,2.32,0.6,0.72,0.8,1.47,0.85,0.74,0.4,0.62,1.42,0.85,0.68,0.72,1.06,0.65,0.67,1.68,1.67,1.43,0.82,1.01,1.24,1.69,0.69,1.96,0.81,0.91,1.76,1.62,0.72,1.04,1.06,1.99,2.49,0.69,2.17,1.46,0.63,0.48,0.49,1.21,1.57,0.82,0.53,2.58,0.7,1.49,1.53,0.69,0.49,0.38,1.06,0.61,0.44,1.73,1.25,0.5,1.19,2.28,0.81,1.59,0.41,2.39,0.23,0.57,2.95,1.48,1.6,1,1.45,0.78,2.34,0.87,1.27,1.66,1.4,0.77,1.62,1.2,0.65,0.85,2.39,1.21,1.18,1.18,0.93,0.9,0.9,0.69,0.77,1.15,1.31,0.49,1.36,1.13,0.93,0.51,1.15,0.93,1.25,1.34,1.94,2.03,1.38,1.97,0.58,0.37,1.13,1.74,1.63,1.54,0.73,0.8,1.82,0.74,1.01,0.46,0.56,0.69,1.84,1.32,0.59,0.91,1.27,0.87,0.73,2.73,1.7,0.58,1.72,0.64,1.14,2.25,3.65,1.08,1.64,1.46,1.38,1.1,0.98,2.19,2.18,1.83,0.99,1.7,2.21,0.85,1.55,1.61,0.99,0.49,2.13,1.5,0.99,3.64,0.86,0.93,0.76,1.48,1.22,1.37,1.5,2.4,0.96,2.59,2.22,1.16,2.07,1.19,0.88,1.95,0.61,1.21,0.78,0.51,1.8,1.35,1.82,1.31,1.61,0.65,1.15,1.85,0.44,2.86,0.87,1.06,0.85,1.15,0.81,0.44,0.58,2.39,0.89,0.7,0.84,1.57,1,0.71,1.64,1.21,0.8,1.12,1.23,1.81,1.18,0.39,0.88,1.43,0.67,1.33,0.35,0.88,1.73,0.85,1.44,0.97,1.15,0.47,1.16,1.81,1.32,1.44,0.95,2.18,1.13,0.77,2.03,1.35,1.44,1.18,0.62,1.24,0.58,0.24,1.3,1.02,0.94,0.57,1.22,1.75,1.99,0.99,1.21,1.24,1.39,1.84,0.8,1.14,1.69,1.5,1.17,0.92,2.33,0.48,1.15,3.33,1.12,1.24,2.15,0.77,0.95,1.41,2.43,1.23,1.21,2.01,2.12,1.33,1.22,0.8,1.45,0.57,1.36,1.56,1.42,1.29,1.12,0.91,0.67,1.22,0.69,0.67,0.66,1.02,0.4,1.12,1.47,1.65,2.57,1.07,0.98,1.46,1.45,1.5,1.45,0.83,1.4,0.68],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\",\"Covariance: 0.17 <br />Pooled SD: 1.39\",\"Covariance: -1.1 <br />Pooled SD: 2.11\",\"Covariance: 0.54 <br />Pooled SD: 0.64\",\"Covariance: 0.96 <br />Pooled SD: 1.87\",\"Covariance: 0.46 <br />Pooled SD: 1.81\",\"Covariance: 0.49 <br />Pooled SD: 2.14\",\"Covariance: 0.1 <br />Pooled SD: 0.73\",\"Covariance: 0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.03 <br />Pooled SD: 0.99\",\"Covariance: 0.45 <br />Pooled SD: 0.98\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.81\",\"Covariance: -0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.66 <br />Pooled SD: 1.01\",\"Covariance: -0.46 <br />Pooled SD: 1.86\",\"Covariance: 0.12 <br />Pooled SD: 1.58\",\"Covariance: -0.16 <br />Pooled SD: 0.7\",\"Covariance: 0.35 <br />Pooled SD: 0.98\",\"Covariance: -0.77 <br />Pooled SD: 1.55\",\"Covariance: 0.2 <br />Pooled SD: 0.98\",\"Covariance: -0.57 <br />Pooled SD: 1.03\",\"Covariance: 0.76 <br />Pooled SD: 1.13\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.02 <br />Pooled SD: 1.17\",\"Covariance: -0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.33\",\"Covariance: -0.65 <br />Pooled SD: 1.35\",\"Covariance: -0.12 <br />Pooled SD: 0.82\",\"Covariance: 0.32 <br />Pooled SD: 2.11\",\"Covariance: -0.48 <br />Pooled SD: 0.87\",\"Covariance: 0.38 <br />Pooled SD: 1.69\",\"Covariance: 0.91 <br />Pooled SD: 1.42\",\"Covariance: -0.69 <br />Pooled SD: 0.97\",\"Covariance: -0.6 <br />Pooled SD: 2.99\",\"Covariance: 0.09 <br />Pooled SD: 2.68\",\"Covariance: 1.15 <br />Pooled SD: 2.32\",\"Covariance: -0.57 <br />Pooled SD: 1.16\",\"Covariance: 0.05 <br />Pooled SD: 0.89\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: -0.07 <br />Pooled SD: 0.46\",\"Covariance: 0.28 <br />Pooled SD: 1.48\",\"Covariance: -0.01 <br />Pooled SD: 1.39\",\"Covariance: -0.03 <br />Pooled SD: 0.39\",\"Covariance: 0.95 <br />Pooled SD: 2.16\",\"Covariance: 0.83 <br />Pooled SD: 1.26\",\"Covariance: -0.97 <br />Pooled SD: 1.14\",\"Covariance: 0.04 <br />Pooled SD: 0.7\",\"Covariance: -0.58 <br />Pooled SD: 2.74\",\"Covariance: -0.96 <br />Pooled SD: 1.49\",\"Covariance: 0.23 <br />Pooled SD: 0.66\",\"Covariance: 0.81 <br />Pooled SD: 1.46\",\"Covariance: -0.11 <br />Pooled SD: 0.56\",\"Covariance: -0.54 <br />Pooled SD: 0.59\",\"Covariance: 0.58 <br />Pooled SD: 0.82\",\"Covariance: -0.39 <br />Pooled SD: 1.39\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 0.4 <br />Pooled SD: 1.33\",\"Covariance: -0.32 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.57 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 1.05\",\"Covariance: -0.08 <br />Pooled SD: 1.51\",\"Covariance: -0.57 <br />Pooled SD: 0.98\",\"Covariance: 0.33 <br />Pooled SD: 1.42\",\"Covariance: -0.33 <br />Pooled SD: 1.14\",\"Covariance: 0.27 <br />Pooled SD: 1.9\",\"Covariance: -1.12 <br />Pooled SD: 1.43\",\"Covariance: 1.37 <br />Pooled SD: 1.65\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: -2.13 <br />Pooled SD: 2.59\",\"Covariance: -0.14 <br />Pooled SD: 0.94\",\"Covariance: -1.43 <br />Pooled SD: 2.3\",\"Covariance: 0.06 <br />Pooled SD: 0.75\",\"Covariance: 0.13 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 1.16\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.12 <br />Pooled SD: 0.86\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.93 <br />Pooled SD: 1.63\",\"Covariance: 0.81 <br />Pooled SD: 1.08\",\"Covariance: 0.46 <br />Pooled SD: 0.67\",\"Covariance: -0.18 <br />Pooled SD: 0.86\",\"Covariance: 0.39 <br />Pooled SD: 0.63\",\"Covariance: -1.82 <br />Pooled SD: 3.11\",\"Covariance: 0.52 <br />Pooled SD: 1.71\",\"Covariance: -0.45 <br />Pooled SD: 1.08\",\"Covariance: 0.1 <br />Pooled SD: 1.13\",\"Covariance: -0.65 <br />Pooled SD: 1.66\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 0.74\",\"Covariance: 0.25 <br />Pooled SD: 1.87\",\"Covariance: -0.22 <br />Pooled SD: 1.19\",\"Covariance: 0.12 <br />Pooled SD: 0.4\",\"Covariance: -0.28 <br />Pooled SD: 1.56\",\"Covariance: 1.16 <br />Pooled SD: 1.48\",\"Covariance: 0.5 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 0.9\",\"Covariance: -1.01 <br />Pooled SD: 1.56\",\"Covariance: 0.38 <br />Pooled SD: 0.74\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.61 <br />Pooled SD: 2.04\",\"Covariance: 0.03 <br />Pooled SD: 0.94\",\"Covariance: 0.75 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 1.44\",\"Covariance: -0.1 <br />Pooled SD: 0.49\",\"Covariance: 0.18 <br />Pooled SD: 0.41\",\"Covariance: 0.41 <br />Pooled SD: 0.95\",\"Covariance: 0.54 <br />Pooled SD: 1.05\",\"Covariance: -0.03 <br />Pooled SD: 0.9\",\"Covariance: 0.61 <br />Pooled SD: 1.02\",\"Covariance: 0.05 <br />Pooled SD: 0.73\",\"Covariance: 0.34 <br />Pooled SD: 0.92\",\"Covariance: -0.18 <br />Pooled SD: 2.43\",\"Covariance: 0.38 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.33\",\"Covariance: 0.41 <br />Pooled SD: 1.64\",\"Covariance: -0.39 <br />Pooled SD: 1.02\",\"Covariance: -0.26 <br />Pooled SD: 0.62\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.17 <br />Pooled SD: 2.41\",\"Covariance: 0.49 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 2.26\",\"Covariance: 0.87 <br />Pooled SD: 2.39\",\"Covariance: 0.13 <br />Pooled SD: 0.25\",\"Covariance: -0.2 <br />Pooled SD: 0.65\",\"Covariance: 0.04 <br />Pooled SD: 0.48\",\"Covariance: -0.09 <br />Pooled SD: 1.5\",\"Covariance: 0.58 <br />Pooled SD: 1.71\",\"Covariance: 0.82 <br />Pooled SD: 1.63\",\"Covariance: -0.05 <br />Pooled SD: 0.75\",\"Covariance: 0.35 <br />Pooled SD: 1.08\",\"Covariance: 0.12 <br />Pooled SD: 0.77\",\"Covariance: -0.02 <br />Pooled SD: 1.06\",\"Covariance: 0.11 <br />Pooled SD: 0.69\",\"Covariance: 0.11 <br />Pooled SD: 0.93\",\"Covariance: 0.2 <br />Pooled SD: 1.41\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.06 <br />Pooled SD: 1.86\",\"Covariance: -0.39 <br />Pooled SD: 1.11\",\"Covariance: 0.58 <br />Pooled SD: 1.12\",\"Covariance: -0.75 <br />Pooled SD: 1.12\",\"Covariance: -0.08 <br />Pooled SD: 1.71\",\"Covariance: 0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.1 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 1.53\",\"Covariance: -0.94 <br />Pooled SD: 1.57\",\"Covariance: -0.19 <br />Pooled SD: 0.4\",\"Covariance: 0.31 <br />Pooled SD: 0.9\",\"Covariance: -0.17 <br />Pooled SD: 0.96\",\"Covariance: 1.21 <br />Pooled SD: 2.18\",\"Covariance: -0.88 <br />Pooled SD: 1.88\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: -1.27 <br />Pooled SD: 2.39\",\"Covariance: 0.75 <br />Pooled SD: 2.15\",\"Covariance: -0.05 <br />Pooled SD: 1.81\",\"Covariance: 0.96 <br />Pooled SD: 1.59\",\"Covariance: -0.39 <br />Pooled SD: 1.71\",\"Covariance: 0.52 <br />Pooled SD: 1.16\",\"Covariance: -0.15 <br />Pooled SD: 0.86\",\"Covariance: 0.08 <br />Pooled SD: 0.95\",\"Covariance: -0.33 <br />Pooled SD: 0.86\",\"Covariance: 0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.16 <br />Pooled SD: 1.03\",\"Covariance: -0.86 <br />Pooled SD: 1.8\",\"Covariance: 0.16 <br />Pooled SD: 1.17\",\"Covariance: -0.55 <br />Pooled SD: 1.9\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.08 <br />Pooled SD: 0.36\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: 1.51 <br />Pooled SD: 1.56\",\"Covariance: 0.48 <br />Pooled SD: 1.18\",\"Covariance: -0.22 <br />Pooled SD: 2.7\",\"Covariance: 0.91 <br />Pooled SD: 1.98\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: 1.31 <br />Pooled SD: 1.86\",\"Covariance: 0.97 <br />Pooled SD: 2.1\",\"Covariance: -0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.21 <br />Pooled SD: 0.89\",\"Covariance: 0.55 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 3.05\",\"Covariance: 0.36 <br />Pooled SD: 0.97\",\"Covariance: -0.23 <br />Pooled SD: 0.85\",\"Covariance: 0 <br />Pooled SD: 0.38\",\"Covariance: -0.28 <br />Pooled SD: 1.18\",\"Covariance: -0.4 <br />Pooled SD: 0.72\",\"Covariance: 0.34 <br />Pooled SD: 0.86\",\"Covariance: -0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.47 <br />Pooled SD: 1.64\",\"Covariance: 0.66 <br />Pooled SD: 2.35\",\"Covariance: 0.63 <br />Pooled SD: 1.4\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.51\",\"Covariance: 0.1 <br />Pooled SD: 0.99\",\"Covariance: 0.23 <br />Pooled SD: 1.61\",\"Covariance: -0.25 <br />Pooled SD: 2.32\",\"Covariance: 0.45 <br />Pooled SD: 0.6\",\"Covariance: 0.18 <br />Pooled SD: 0.72\",\"Covariance: -0.46 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 1.47\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: 0.53 <br />Pooled SD: 0.74\",\"Covariance: -0.18 <br />Pooled SD: 0.4\",\"Covariance: 0.01 <br />Pooled SD: 0.62\",\"Covariance: 0.01 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 0.85\",\"Covariance: -0.44 <br />Pooled SD: 0.68\",\"Covariance: 0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.78 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.65\",\"Covariance: 0.26 <br />Pooled SD: 0.67\",\"Covariance: 0.17 <br />Pooled SD: 1.68\",\"Covariance: 1.1 <br />Pooled SD: 1.67\",\"Covariance: -0.09 <br />Pooled SD: 1.43\",\"Covariance: -0.52 <br />Pooled SD: 0.82\",\"Covariance: -0.12 <br />Pooled SD: 1.01\",\"Covariance: 0.38 <br />Pooled SD: 1.24\",\"Covariance: 0.64 <br />Pooled SD: 1.69\",\"Covariance: 0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.96\",\"Covariance: 0.07 <br />Pooled SD: 0.81\",\"Covariance: -0.66 <br />Pooled SD: 0.91\",\"Covariance: 0.12 <br />Pooled SD: 1.76\",\"Covariance: 1.45 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 0.72\",\"Covariance: 0.06 <br />Pooled SD: 1.04\",\"Covariance: 0.04 <br />Pooled SD: 1.06\",\"Covariance: 0.7 <br />Pooled SD: 1.99\",\"Covariance: 0.66 <br />Pooled SD: 2.49\",\"Covariance: 0.08 <br />Pooled SD: 0.69\",\"Covariance: -1.54 <br />Pooled SD: 2.17\",\"Covariance: 0.45 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.63\",\"Covariance: 0.01 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.49\",\"Covariance: -0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.3 <br />Pooled SD: 1.57\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: -0.44 <br />Pooled SD: 0.53\",\"Covariance: -0.89 <br />Pooled SD: 2.58\",\"Covariance: 0.64 <br />Pooled SD: 0.7\",\"Covariance: 1.1 <br />Pooled SD: 1.49\",\"Covariance: 0.5 <br />Pooled SD: 1.53\",\"Covariance: 0.32 <br />Pooled SD: 0.69\",\"Covariance: -0.48 <br />Pooled SD: 0.49\",\"Covariance: -0.28 <br />Pooled SD: 0.38\",\"Covariance: 0.44 <br />Pooled SD: 1.06\",\"Covariance: 0 <br />Pooled SD: 0.61\",\"Covariance: -0.02 <br />Pooled SD: 0.44\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: -0.45 <br />Pooled SD: 1.25\",\"Covariance: -0.02 <br />Pooled SD: 0.5\",\"Covariance: -0.82 <br />Pooled SD: 1.19\",\"Covariance: -0.26 <br />Pooled SD: 2.28\",\"Covariance: 0.7 <br />Pooled SD: 0.81\",\"Covariance: 0.37 <br />Pooled SD: 1.59\",\"Covariance: 0.2 <br />Pooled SD: 0.41\",\"Covariance: 1.99 <br />Pooled SD: 2.39\",\"Covariance: -0.07 <br />Pooled SD: 0.23\",\"Covariance: 0.29 <br />Pooled SD: 0.57\",\"Covariance: 1.79 <br />Pooled SD: 2.95\",\"Covariance: -1.05 <br />Pooled SD: 1.48\",\"Covariance: 0.39 <br />Pooled SD: 1.6\",\"Covariance: 0.7 <br />Pooled SD: 1\",\"Covariance: 0.07 <br />Pooled SD: 1.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -1.65 <br />Pooled SD: 2.34\",\"Covariance: 0.34 <br />Pooled SD: 0.87\",\"Covariance: 0.23 <br />Pooled SD: 1.27\",\"Covariance: 0 <br />Pooled SD: 1.66\",\"Covariance: -0.86 <br />Pooled SD: 1.4\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -1.43 <br />Pooled SD: 1.62\",\"Covariance: 0.38 <br />Pooled SD: 1.2\",\"Covariance: 0.44 <br />Pooled SD: 0.65\",\"Covariance: 0.45 <br />Pooled SD: 0.85\",\"Covariance: 1.33 <br />Pooled SD: 2.39\",\"Covariance: 0.16 <br />Pooled SD: 1.21\",\"Covariance: -0.26 <br />Pooled SD: 1.18\",\"Covariance: 1.01 <br />Pooled SD: 1.18\",\"Covariance: 0.12 <br />Pooled SD: 0.93\",\"Covariance: -0.56 <br />Pooled SD: 0.9\",\"Covariance: -0.47 <br />Pooled SD: 0.9\",\"Covariance: -0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.21 <br />Pooled SD: 0.77\",\"Covariance: -0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.8 <br />Pooled SD: 1.31\",\"Covariance: -0.09 <br />Pooled SD: 0.49\",\"Covariance: 0.27 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.13\",\"Covariance: 0.06 <br />Pooled SD: 0.93\",\"Covariance: -0.24 <br />Pooled SD: 0.51\",\"Covariance: 0.67 <br />Pooled SD: 1.15\",\"Covariance: -0.19 <br />Pooled SD: 0.93\",\"Covariance: -0.8 <br />Pooled SD: 1.25\",\"Covariance: 0.85 <br />Pooled SD: 1.34\",\"Covariance: -0.19 <br />Pooled SD: 1.94\",\"Covariance: -0.86 <br />Pooled SD: 2.03\",\"Covariance: 0.79 <br />Pooled SD: 1.38\",\"Covariance: -0.76 <br />Pooled SD: 1.97\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: 0.1 <br />Pooled SD: 0.37\",\"Covariance: -0.74 <br />Pooled SD: 1.13\",\"Covariance: 1 <br />Pooled SD: 1.74\",\"Covariance: 0.3 <br />Pooled SD: 1.63\",\"Covariance: -0.98 <br />Pooled SD: 1.54\",\"Covariance: -0.44 <br />Pooled SD: 0.73\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.86 <br />Pooled SD: 1.82\",\"Covariance: -0.13 <br />Pooled SD: 0.74\",\"Covariance: 0.17 <br />Pooled SD: 1.01\",\"Covariance: -0.04 <br />Pooled SD: 0.46\",\"Covariance: 0.37 <br />Pooled SD: 0.56\",\"Covariance: 0.23 <br />Pooled SD: 0.69\",\"Covariance: 0.95 <br />Pooled SD: 1.84\",\"Covariance: -0.88 <br />Pooled SD: 1.32\",\"Covariance: 0.18 <br />Pooled SD: 0.59\",\"Covariance: 0.19 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.27\",\"Covariance: 0.05 <br />Pooled SD: 0.87\",\"Covariance: -0.27 <br />Pooled SD: 0.73\",\"Covariance: 0.43 <br />Pooled SD: 2.73\",\"Covariance: 1.16 <br />Pooled SD: 1.7\",\"Covariance: 0.19 <br />Pooled SD: 0.58\",\"Covariance: 0.51 <br />Pooled SD: 1.72\",\"Covariance: 0.05 <br />Pooled SD: 0.64\",\"Covariance: 0.56 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 2.25\",\"Covariance: -3.39 <br />Pooled SD: 3.65\",\"Covariance: -0.44 <br />Pooled SD: 1.08\",\"Covariance: -0.93 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.46\",\"Covariance: -0.42 <br />Pooled SD: 1.38\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.33 <br />Pooled SD: 0.98\",\"Covariance: -0.31 <br />Pooled SD: 2.19\",\"Covariance: 0.11 <br />Pooled SD: 2.18\",\"Covariance: 0.33 <br />Pooled SD: 1.83\",\"Covariance: 0.39 <br />Pooled SD: 0.99\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.53 <br />Pooled SD: 2.21\",\"Covariance: -0.75 <br />Pooled SD: 0.85\",\"Covariance: 1.18 <br />Pooled SD: 1.55\",\"Covariance: -1.21 <br />Pooled SD: 1.61\",\"Covariance: 0.83 <br />Pooled SD: 0.99\",\"Covariance: -0.25 <br />Pooled SD: 0.49\",\"Covariance: -0.74 <br />Pooled SD: 2.13\",\"Covariance: -0.33 <br />Pooled SD: 1.5\",\"Covariance: -0.46 <br />Pooled SD: 0.99\",\"Covariance: 1.62 <br />Pooled SD: 3.64\",\"Covariance: 0.16 <br />Pooled SD: 0.86\",\"Covariance: -0.55 <br />Pooled SD: 0.93\",\"Covariance: -0.13 <br />Pooled SD: 0.76\",\"Covariance: -0.14 <br />Pooled SD: 1.48\",\"Covariance: -0.21 <br />Pooled SD: 1.22\",\"Covariance: -0.66 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 1.5\",\"Covariance: 1.08 <br />Pooled SD: 2.4\",\"Covariance: 0.59 <br />Pooled SD: 0.96\",\"Covariance: -0.02 <br />Pooled SD: 2.59\",\"Covariance: -1.14 <br />Pooled SD: 2.22\",\"Covariance: 0.54 <br />Pooled SD: 1.16\",\"Covariance: -0.83 <br />Pooled SD: 2.07\",\"Covariance: -0.3 <br />Pooled SD: 1.19\",\"Covariance: 0.54 <br />Pooled SD: 0.88\",\"Covariance: 0.73 <br />Pooled SD: 1.95\",\"Covariance: 0.41 <br />Pooled SD: 0.61\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.14 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 0.51\",\"Covariance: -0.33 <br />Pooled SD: 1.8\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: 0.35 <br />Pooled SD: 1.82\",\"Covariance: -0.41 <br />Pooled SD: 1.31\",\"Covariance: -0.11 <br />Pooled SD: 1.61\",\"Covariance: 0.32 <br />Pooled SD: 0.65\",\"Covariance: -0.77 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 0.44\",\"Covariance: 2.65 <br />Pooled SD: 2.86\",\"Covariance: -0.38 <br />Pooled SD: 0.87\",\"Covariance: 0.15 <br />Pooled SD: 1.06\",\"Covariance: -0.49 <br />Pooled SD: 0.85\",\"Covariance: 0.31 <br />Pooled SD: 1.15\",\"Covariance: 0.18 <br />Pooled SD: 0.81\",\"Covariance: 0.18 <br />Pooled SD: 0.44\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: 0.16 <br />Pooled SD: 2.39\",\"Covariance: 0.23 <br />Pooled SD: 0.89\",\"Covariance: -0.21 <br />Pooled SD: 0.7\",\"Covariance: 0.54 <br />Pooled SD: 0.84\",\"Covariance: -0.37 <br />Pooled SD: 1.57\",\"Covariance: 0.71 <br />Pooled SD: 1\",\"Covariance: 0 <br />Pooled SD: 0.71\",\"Covariance: 0.76 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.28 <br />Pooled SD: 0.8\",\"Covariance: -0.15 <br />Pooled SD: 1.12\",\"Covariance: 0.33 <br />Pooled SD: 1.23\",\"Covariance: -0.49 <br />Pooled SD: 1.81\",\"Covariance: -0.25 <br />Pooled SD: 1.18\",\"Covariance: -0.12 <br />Pooled SD: 0.39\",\"Covariance: -0.66 <br />Pooled SD: 0.88\",\"Covariance: -0.7 <br />Pooled SD: 1.43\",\"Covariance: -0.56 <br />Pooled SD: 0.67\",\"Covariance: -0.12 <br />Pooled SD: 1.33\",\"Covariance: -0.12 <br />Pooled SD: 0.35\",\"Covariance: 0.06 <br />Pooled SD: 0.88\",\"Covariance: 0.78 <br />Pooled SD: 1.73\",\"Covariance: -0.35 <br />Pooled SD: 0.85\",\"Covariance: 0.34 <br />Pooled SD: 1.44\",\"Covariance: 0.19 <br />Pooled SD: 0.97\",\"Covariance: 1 <br />Pooled SD: 1.15\",\"Covariance: -0.17 <br />Pooled SD: 0.47\",\"Covariance: 0.67 <br />Pooled SD: 1.16\",\"Covariance: -1.53 <br />Pooled SD: 1.81\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.8 <br />Pooled SD: 1.44\",\"Covariance: 0.34 <br />Pooled SD: 0.95\",\"Covariance: -1.59 <br />Pooled SD: 2.18\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 0.77\",\"Covariance: 0.42 <br />Pooled SD: 2.03\",\"Covariance: -0.86 <br />Pooled SD: 1.35\",\"Covariance: -0.78 <br />Pooled SD: 1.44\",\"Covariance: -0.18 <br />Pooled SD: 1.18\",\"Covariance: 0.02 <br />Pooled SD: 0.62\",\"Covariance: -0.42 <br />Pooled SD: 1.24\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: -0.11 <br />Pooled SD: 0.24\",\"Covariance: -0.6 <br />Pooled SD: 1.3\",\"Covariance: 0.73 <br />Pooled SD: 1.02\",\"Covariance: 0.48 <br />Pooled SD: 0.94\",\"Covariance: 0.36 <br />Pooled SD: 0.57\",\"Covariance: -0.47 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: 0.28 <br />Pooled SD: 1.99\",\"Covariance: -0.72 <br />Pooled SD: 0.99\",\"Covariance: 0.25 <br />Pooled SD: 1.21\",\"Covariance: -0.66 <br />Pooled SD: 1.24\",\"Covariance: 0.43 <br />Pooled SD: 1.39\",\"Covariance: 0.16 <br />Pooled SD: 1.84\",\"Covariance: -0.31 <br />Pooled SD: 0.8\",\"Covariance: 0.68 <br />Pooled SD: 1.14\",\"Covariance: -0.41 <br />Pooled SD: 1.69\",\"Covariance: 0.77 <br />Pooled SD: 1.5\",\"Covariance: -0.05 <br />Pooled SD: 1.17\",\"Covariance: -0.46 <br />Pooled SD: 0.92\",\"Covariance: 0.61 <br />Pooled SD: 2.33\",\"Covariance: 0.05 <br />Pooled SD: 0.48\",\"Covariance: -0.67 <br />Pooled SD: 1.15\",\"Covariance: -2.07 <br />Pooled SD: 3.33\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: -0.85 <br />Pooled SD: 1.24\",\"Covariance: -0.03 <br />Pooled SD: 2.15\",\"Covariance: 0.76 <br />Pooled SD: 0.77\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: 0.79 <br />Pooled SD: 1.41\",\"Covariance: -0.74 <br />Pooled SD: 2.43\",\"Covariance: -0.17 <br />Pooled SD: 1.23\",\"Covariance: -0.1 <br />Pooled SD: 1.21\",\"Covariance: -0.83 <br />Pooled SD: 2.01\",\"Covariance: -0.22 <br />Pooled SD: 2.12\",\"Covariance: 0.78 <br />Pooled SD: 1.33\",\"Covariance: 0.97 <br />Pooled SD: 1.22\",\"Covariance: -0.1 <br />Pooled SD: 0.8\",\"Covariance: 0 <br />Pooled SD: 1.45\",\"Covariance: -0.16 <br />Pooled SD: 0.57\",\"Covariance: 0.93 <br />Pooled SD: 1.36\",\"Covariance: 0.83 <br />Pooled SD: 1.56\",\"Covariance: 0.77 <br />Pooled SD: 1.42\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.41 <br />Pooled SD: 1.12\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.13 <br />Pooled SD: 0.67\",\"Covariance: 0.07 <br />Pooled SD: 1.22\",\"Covariance: 0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.55 <br />Pooled SD: 0.66\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.12\",\"Covariance: 0.48 <br />Pooled SD: 1.47\",\"Covariance: 0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.4 <br />Pooled SD: 2.57\",\"Covariance: 0.37 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 0.98\",\"Covariance: -0.74 <br />Pooled SD: 1.46\",\"Covariance: -1.09 <br />Pooled SD: 1.45\",\"Covariance: 0.19 <br />Pooled SD: 1.5\",\"Covariance: -0.37 <br />Pooled SD: 1.45\",\"Covariance: 0.3 <br />Pooled SD: 0.83\",\"Covariance: -0.08 <br />Pooled SD: 1.4\",\"Covariance: -0.26 <br />Pooled SD: 0.68\"],\"frame\":\"2600\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2700\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7,0.17,-1.1,0.54,0.96,0.46,0.49,0.1,0.2,-0.03,0.45,0.13,0.05,-0.65,-0.3,0.66,-0.46,0.12,-0.16,0.35,-0.77,0.2,-0.57,0.76,0.18,0.11,0.02,-0.28,-0.62,-0.65,-0.12,0.32,-0.48,0.38,0.91,-0.69,-0.6,0.09,1.15,-0.57,0.05,0.3,-0.07,0.28,-0.01,-0.03,0.95,0.83,-0.97,0.04,-0.58,-0.96,0.23,0.81,-0.11,-0.54,0.58,-0.39,0.78,0.4,-0.32,-0.38,-0.57,-0.11,-0.08,-0.08,-0.57,0.33,-0.33,0.27,-1.12,1.37,-1.64,-2.13,-0.14,-1.43,0.06,0.13,0.03,0.08,0.22,-0.4,0.12,0.29,-0.93,0.81,0.46,-0.18,0.39,-1.82,0.52,-0.45,0.1,-0.65,-0.2,-0.42,0.25,-0.22,0.12,-0.28,1.16,0.5,0.28,-1.01,0.38,1.33,0.61,0.03,0.75,0.57,-0.1,0.18,0.41,0.54,-0.03,0.61,0.05,0.34,-0.18,0.38,-0.38,0.41,-0.39,-0.26,1.37,-0.34,0.17,0.49,-0.11,-0.15,0.87,0.13,-0.2,0.04,-0.09,0.58,0.82,-0.05,0.35,0.12,-0.02,0.11,0.11,0.2,-0.16,0.06,-0.39,0.58,-0.75,-0.08,0.22,-0.1,-0.26,-0.94,-0.19,0.31,-0.17,1.21,-0.88,0.22,-1.27,0.75,-0.05,0.96,-0.39,0.52,-0.15,0.08,-0.33,0.26,-0.16,-0.86,0.16,-0.55,0.51,0.08,0.07,1.51,0.48,-0.22,0.91,0.63,1.31,0.97,-0.05,-0.21,0.55,0.57,0.36,-0.23,0,-0.28,-0.4,0.34,-0.23,0.47,0.66,0.63,0.1,-0.07,0.1,0.23,-0.25,0.45,0.18,-0.46,-0.35,-0.38,0.53,-0.18,0.01,0.01,0.57,-0.44,0.13,0.78,-0.15,0.26,0.17,1.1,-0.09,-0.52,-0.12,0.38,0.64,0.18,-0.65,0.07,-0.66,0.12,1.45,0.5,0.06,0.04,0.7,0.66,0.08,-1.54,0.45,0.16,0.01,-0.06,-0.27,0.3,0,-0.44,-0.89,0.64,1.1,0.5,0.32,-0.48,-0.28,0.44,0,-0.02,0.13,-0.45,-0.02,-0.82,-0.26,0.7,0.37,0.2,1.99,-0.07,0.29,1.79,-1.05,0.39,0.7,0.07,-0.39,-1.65,0.34,0.23,-0,-0.86,0.27,-1.43,0.38,0.44,0.45,1.33,0.16,-0.26,1.01,0.12,-0.56,-0.47,-0.18,-0.21,-0.62,-0.8,-0.09,0.27,-0.48,0.06,-0.24,0.67,-0.19,-0.8,0.85,-0.19,-0.86,0.79,-0.76,0.22,0.1,-0.74,1,0.3,-0.98,-0.44,-0.19,-0.86,-0.13,0.17,-0.04,0.37,0.23,0.95,-0.88,0.18,0.19,-0.12,0.05,-0.27,0.43,1.16,0.19,0.51,0.05,0.56,-0.08,-3.39,-0.44,-0.93,0.07,-0.42,0.99,0.33,-0.31,0.11,0.33,0.39,-0.85,-0.53,-0.75,1.18,-1.21,0.83,-0.25,-0.74,-0.33,-0.46,1.62,0.16,-0.55,-0.13,-0.14,-0.21,-0.66,0.04,1.08,0.59,-0.02,-1.14,0.54,-0.83,-0.3,0.54,0.73,0.41,0.07,-0.14,0.16,-0.33,-0.32,0.35,-0.41,-0.11,0.32,-0.77,-0.44,-0.08,2.65,-0.38,0.15,-0.49,0.31,0.18,0.18,-0.01,0.16,0.23,-0.21,0.54,-0.37,0.71,-0,0.76,0.07,-0.28,-0.15,0.33,-0.49,-0.25,-0.12,-0.66,-0.7,-0.56,-0.12,-0.12,0.06,0.78,-0.35,0.34,0.19,1,-0.17,0.67,-1.53,-0.54,0.8,0.34,-1.59,0.52,-0.1,0.42,-0.86,-0.78,-0.18,0.02,-0.42,-0.01,-0.11,-0.6,0.73,0.48,0.36,-0.47,-0.25,0.28,-0.72,0.25,-0.66,0.43,0.16,-0.31,0.68,-0.41,0.77,-0.05,-0.46,0.61,0.05,-0.67,-2.07,-0.82,-0.85,-0.03,0.76,-0.28,0.79,-0.74,-0.17,-0.1,-0.83,-0.22,0.78,0.97,-0.1,0,-0.16,0.93,0.83,0.77,-0.12,-0.41,0.13,-0.13,0.07,0.34,0.02,-0.55,-0.54,0.28,-0.05,0.48,0.42,0.4,0.37,0.14,-0.74,-1.09,0.19,-0.37,0.3,-0.08,-0.26,0.27,0.13,0.03,0.79,0.04,0.21,-0.35,-0.71,0.25,-0.16,-0.66,-0.08,-0.74,0.13,0.15,0.09,-0.18,-0.45,-0.51,-0.32,-0.63,0.16,-0.33,0.37,1.46,0.48,-0.35,0.54,-0.7,0.8,-0.06,-0.5,0.43,-0.2,0,1.4,-0.53,0.72,-0.54,-0.54,0.52,-0.19,1.18,0.32,-0.87,0.52,-0.02,0.46,-0.43,-0.08,-1,0.87,-0.29,0.57,-0.6,-0.61,0.09,0.49,-0.06,-0.85,-0.18,0.2,0.04,0,0.64,-1.17,-0.08,0.25,-0.68,0.1,-0.44,-1.41,0.65,-0.76,0.84,-0.22,1.48,-0.1,0.58,-0.9,0.2,-1.21,0.35,-0.48,0.37,0.13,0.28,0.49,-0.39,-0.5,-0.17,0.36,0.22,-0.77,-0.13,0.11,-0.06,0.4,0.99,0.57],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14,1.39,2.11,0.64,1.87,1.81,2.14,0.73,1.17,0.99,0.98,1.73,0.65,1.81,0.77,1.01,1.86,1.58,0.7,0.98,1.55,0.98,1.03,1.13,0.92,0.96,1.17,1.26,1.33,1.35,0.82,2.11,0.87,1.69,1.42,0.97,2.99,2.68,2.32,1.16,0.89,1.21,0.46,1.48,1.39,0.39,2.16,1.26,1.14,0.7,2.74,1.49,0.66,1.46,0.56,0.59,0.82,1.39,1.14,1.33,0.95,0.62,1.05,1.85,1.05,1.51,0.98,1.42,1.14,1.9,1.43,1.65,2.42,2.59,0.94,2.3,0.75,0.99,1.16,1.12,0.75,0.55,0.86,0.93,1.63,1.08,0.67,0.86,0.63,3.11,1.71,1.08,1.13,1.66,1.17,0.74,1.87,1.19,0.4,1.56,1.48,0.71,0.9,1.56,0.74,1.7,2.04,0.94,1.42,1.44,0.49,0.41,0.95,1.05,0.9,1.02,0.73,0.92,2.43,1.37,1.33,1.64,1.02,0.62,1.88,1.68,2.41,1.6,1.51,2.26,2.39,0.25,0.65,0.48,1.5,1.71,1.63,0.75,1.08,0.77,1.06,0.69,0.93,1.41,0.85,1.86,1.11,1.12,1.12,1.71,0.35,1.05,1.53,1.57,0.4,0.9,0.96,2.18,1.88,0.58,2.39,2.15,1.81,1.59,1.71,1.16,0.86,0.95,0.86,1.31,1.03,1.8,1.17,1.9,1.28,0.36,0.98,1.56,1.18,2.7,1.98,1.3,1.86,2.1,0.6,0.89,1.12,3.05,0.97,0.85,0.38,1.18,0.72,0.86,1.07,1.64,2.35,1.4,1.41,0.51,0.99,1.61,2.32,0.6,0.72,0.8,1.47,0.85,0.74,0.4,0.62,1.42,0.85,0.68,0.72,1.06,0.65,0.67,1.68,1.67,1.43,0.82,1.01,1.24,1.69,0.69,1.96,0.81,0.91,1.76,1.62,0.72,1.04,1.06,1.99,2.49,0.69,2.17,1.46,0.63,0.48,0.49,1.21,1.57,0.82,0.53,2.58,0.7,1.49,1.53,0.69,0.49,0.38,1.06,0.61,0.44,1.73,1.25,0.5,1.19,2.28,0.81,1.59,0.41,2.39,0.23,0.57,2.95,1.48,1.6,1,1.45,0.78,2.34,0.87,1.27,1.66,1.4,0.77,1.62,1.2,0.65,0.85,2.39,1.21,1.18,1.18,0.93,0.9,0.9,0.69,0.77,1.15,1.31,0.49,1.36,1.13,0.93,0.51,1.15,0.93,1.25,1.34,1.94,2.03,1.38,1.97,0.58,0.37,1.13,1.74,1.63,1.54,0.73,0.8,1.82,0.74,1.01,0.46,0.56,0.69,1.84,1.32,0.59,0.91,1.27,0.87,0.73,2.73,1.7,0.58,1.72,0.64,1.14,2.25,3.65,1.08,1.64,1.46,1.38,1.1,0.98,2.19,2.18,1.83,0.99,1.7,2.21,0.85,1.55,1.61,0.99,0.49,2.13,1.5,0.99,3.64,0.86,0.93,0.76,1.48,1.22,1.37,1.5,2.4,0.96,2.59,2.22,1.16,2.07,1.19,0.88,1.95,0.61,1.21,0.78,0.51,1.8,1.35,1.82,1.31,1.61,0.65,1.15,1.85,0.44,2.86,0.87,1.06,0.85,1.15,0.81,0.44,0.58,2.39,0.89,0.7,0.84,1.57,1,0.71,1.64,1.21,0.8,1.12,1.23,1.81,1.18,0.39,0.88,1.43,0.67,1.33,0.35,0.88,1.73,0.85,1.44,0.97,1.15,0.47,1.16,1.81,1.32,1.44,0.95,2.18,1.13,0.77,2.03,1.35,1.44,1.18,0.62,1.24,0.58,0.24,1.3,1.02,0.94,0.57,1.22,1.75,1.99,0.99,1.21,1.24,1.39,1.84,0.8,1.14,1.69,1.5,1.17,0.92,2.33,0.48,1.15,3.33,1.12,1.24,2.15,0.77,0.95,1.41,2.43,1.23,1.21,2.01,2.12,1.33,1.22,0.8,1.45,0.57,1.36,1.56,1.42,1.29,1.12,0.91,0.67,1.22,0.69,0.67,0.66,1.02,0.4,1.12,1.47,1.65,2.57,1.07,0.98,1.46,1.45,1.5,1.45,0.83,1.4,0.68,1.78,0.24,0.42,2.15,1.23,1.33,0.84,1.11,1.43,0.73,1.15,1.18,2.21,1.22,2.2,0.48,1.46,0.89,1.04,0.52,0.78,2.17,1.79,1.1,1.87,2.23,1.23,1.36,1.06,1.36,1.03,0.81,0.86,1.25,0.86,1.59,0.99,1.23,1.35,1.45,0.88,0.48,1.38,2.23,1.92,1.02,0.56,0.94,1.98,0.22,1.19,2.22,2.18,0.91,2.06,1.92,0.52,0.87,1.73,1.62,0.44,1.51,0.68,0.82,1.44,1.6,0.69,1.44,0.77,1.38,0.78,2.79,1.62,2.06,1.79,1.16,1.89,1.47,2.82,2.01,2.26,2,1.36,1.08,0.93,2.85,0.73,3.45,0.78,2.23,1.15,0.88,0.79,2.21,1.34,1.66,2.59,0.8,1.1,1.72],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38,0.15,0.53,0.07,0.37,0.03,0.16,-0.41,-0.64,0.18,-0.22,-0.57,-0.07,-0.34,0.11,0.07,0.18,-0.13,-0.51,-0.49,-0.63,-0.8,0.07,-0.18,0.33,0.78,0.21,-0.28,0.4,-0.66,0.59,-0.06,-0.61,0.5,-0.16,0,0.88,-0.53,0.59,-0.4,-0.37,0.6,-0.4,0.85,0.14,-0.45,0.51,-0.03,0.49,-0.22,-0.37,-0.84,0.39,-0.14,0.63,-0.29,-0.31,0.18,0.56,-0.04,-0.53,-0.41,0.13,0.06,0,0.44,-0.73,-0.12,0.17,-0.88,0.07,-0.56,-0.5,0.4,-0.37,0.47,-0.19,0.78,-0.07,0.2,-0.45,0.09,-0.6,0.26,-0.44,0.4,0.05,0.39,0.14,-0.49,-0.22,-0.14,0.41,0.28,-0.35,-0.1,0.07,-0.02,0.5,0.9,0.33],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38,0.15,0.53,0.07,0.37,0.03,0.16,-0.41,-0.64,0.18,-0.22,-0.57,-0.07,-0.34,0.11,0.07,0.18,-0.13,-0.51,-0.49,-0.63,-0.8,0.07,-0.18,0.33,0.78,0.21,-0.28,0.4,-0.66,0.59,-0.06,-0.61,0.5,-0.16,0,0.88,-0.53,0.59,-0.4,-0.37,0.6,-0.4,0.85,0.14,-0.45,0.51,-0.03,0.49,-0.22,-0.37,-0.84,0.39,-0.14,0.63,-0.29,-0.31,0.18,0.56,-0.04,-0.53,-0.41,0.13,0.06,0,0.44,-0.73,-0.12,0.17,-0.88,0.07,-0.56,-0.5,0.4,-0.37,0.47,-0.19,0.78,-0.07,0.2,-0.45,0.09,-0.6,0.26,-0.44,0.4,0.05,0.39,0.14,-0.49,-0.22,-0.14,0.41,0.28,-0.35,-0.1,0.07,-0.02,0.5,0.9,0.33]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\",\"Covariance: 0.17 <br />Pooled SD: 1.39\",\"Covariance: -1.1 <br />Pooled SD: 2.11\",\"Covariance: 0.54 <br />Pooled SD: 0.64\",\"Covariance: 0.96 <br />Pooled SD: 1.87\",\"Covariance: 0.46 <br />Pooled SD: 1.81\",\"Covariance: 0.49 <br />Pooled SD: 2.14\",\"Covariance: 0.1 <br />Pooled SD: 0.73\",\"Covariance: 0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.03 <br />Pooled SD: 0.99\",\"Covariance: 0.45 <br />Pooled SD: 0.98\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.81\",\"Covariance: -0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.66 <br />Pooled SD: 1.01\",\"Covariance: -0.46 <br />Pooled SD: 1.86\",\"Covariance: 0.12 <br />Pooled SD: 1.58\",\"Covariance: -0.16 <br />Pooled SD: 0.7\",\"Covariance: 0.35 <br />Pooled SD: 0.98\",\"Covariance: -0.77 <br />Pooled SD: 1.55\",\"Covariance: 0.2 <br />Pooled SD: 0.98\",\"Covariance: -0.57 <br />Pooled SD: 1.03\",\"Covariance: 0.76 <br />Pooled SD: 1.13\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.02 <br />Pooled SD: 1.17\",\"Covariance: -0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.33\",\"Covariance: -0.65 <br />Pooled SD: 1.35\",\"Covariance: -0.12 <br />Pooled SD: 0.82\",\"Covariance: 0.32 <br />Pooled SD: 2.11\",\"Covariance: -0.48 <br />Pooled SD: 0.87\",\"Covariance: 0.38 <br />Pooled SD: 1.69\",\"Covariance: 0.91 <br />Pooled SD: 1.42\",\"Covariance: -0.69 <br />Pooled SD: 0.97\",\"Covariance: -0.6 <br />Pooled SD: 2.99\",\"Covariance: 0.09 <br />Pooled SD: 2.68\",\"Covariance: 1.15 <br />Pooled SD: 2.32\",\"Covariance: -0.57 <br />Pooled SD: 1.16\",\"Covariance: 0.05 <br />Pooled SD: 0.89\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: -0.07 <br />Pooled SD: 0.46\",\"Covariance: 0.28 <br />Pooled SD: 1.48\",\"Covariance: -0.01 <br />Pooled SD: 1.39\",\"Covariance: -0.03 <br />Pooled SD: 0.39\",\"Covariance: 0.95 <br />Pooled SD: 2.16\",\"Covariance: 0.83 <br />Pooled SD: 1.26\",\"Covariance: -0.97 <br />Pooled SD: 1.14\",\"Covariance: 0.04 <br />Pooled SD: 0.7\",\"Covariance: -0.58 <br />Pooled SD: 2.74\",\"Covariance: -0.96 <br />Pooled SD: 1.49\",\"Covariance: 0.23 <br />Pooled SD: 0.66\",\"Covariance: 0.81 <br />Pooled SD: 1.46\",\"Covariance: -0.11 <br />Pooled SD: 0.56\",\"Covariance: -0.54 <br />Pooled SD: 0.59\",\"Covariance: 0.58 <br />Pooled SD: 0.82\",\"Covariance: -0.39 <br />Pooled SD: 1.39\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 0.4 <br />Pooled SD: 1.33\",\"Covariance: -0.32 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.57 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 1.05\",\"Covariance: -0.08 <br />Pooled SD: 1.51\",\"Covariance: -0.57 <br />Pooled SD: 0.98\",\"Covariance: 0.33 <br />Pooled SD: 1.42\",\"Covariance: -0.33 <br />Pooled SD: 1.14\",\"Covariance: 0.27 <br />Pooled SD: 1.9\",\"Covariance: -1.12 <br />Pooled SD: 1.43\",\"Covariance: 1.37 <br />Pooled SD: 1.65\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: -2.13 <br />Pooled SD: 2.59\",\"Covariance: -0.14 <br />Pooled SD: 0.94\",\"Covariance: -1.43 <br />Pooled SD: 2.3\",\"Covariance: 0.06 <br />Pooled SD: 0.75\",\"Covariance: 0.13 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 1.16\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.12 <br />Pooled SD: 0.86\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.93 <br />Pooled SD: 1.63\",\"Covariance: 0.81 <br />Pooled SD: 1.08\",\"Covariance: 0.46 <br />Pooled SD: 0.67\",\"Covariance: -0.18 <br />Pooled SD: 0.86\",\"Covariance: 0.39 <br />Pooled SD: 0.63\",\"Covariance: -1.82 <br />Pooled SD: 3.11\",\"Covariance: 0.52 <br />Pooled SD: 1.71\",\"Covariance: -0.45 <br />Pooled SD: 1.08\",\"Covariance: 0.1 <br />Pooled SD: 1.13\",\"Covariance: -0.65 <br />Pooled SD: 1.66\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 0.74\",\"Covariance: 0.25 <br />Pooled SD: 1.87\",\"Covariance: -0.22 <br />Pooled SD: 1.19\",\"Covariance: 0.12 <br />Pooled SD: 0.4\",\"Covariance: -0.28 <br />Pooled SD: 1.56\",\"Covariance: 1.16 <br />Pooled SD: 1.48\",\"Covariance: 0.5 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 0.9\",\"Covariance: -1.01 <br />Pooled SD: 1.56\",\"Covariance: 0.38 <br />Pooled SD: 0.74\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.61 <br />Pooled SD: 2.04\",\"Covariance: 0.03 <br />Pooled SD: 0.94\",\"Covariance: 0.75 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 1.44\",\"Covariance: -0.1 <br />Pooled SD: 0.49\",\"Covariance: 0.18 <br />Pooled SD: 0.41\",\"Covariance: 0.41 <br />Pooled SD: 0.95\",\"Covariance: 0.54 <br />Pooled SD: 1.05\",\"Covariance: -0.03 <br />Pooled SD: 0.9\",\"Covariance: 0.61 <br />Pooled SD: 1.02\",\"Covariance: 0.05 <br />Pooled SD: 0.73\",\"Covariance: 0.34 <br />Pooled SD: 0.92\",\"Covariance: -0.18 <br />Pooled SD: 2.43\",\"Covariance: 0.38 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.33\",\"Covariance: 0.41 <br />Pooled SD: 1.64\",\"Covariance: -0.39 <br />Pooled SD: 1.02\",\"Covariance: -0.26 <br />Pooled SD: 0.62\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.17 <br />Pooled SD: 2.41\",\"Covariance: 0.49 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 2.26\",\"Covariance: 0.87 <br />Pooled SD: 2.39\",\"Covariance: 0.13 <br />Pooled SD: 0.25\",\"Covariance: -0.2 <br />Pooled SD: 0.65\",\"Covariance: 0.04 <br />Pooled SD: 0.48\",\"Covariance: -0.09 <br />Pooled SD: 1.5\",\"Covariance: 0.58 <br />Pooled SD: 1.71\",\"Covariance: 0.82 <br />Pooled SD: 1.63\",\"Covariance: -0.05 <br />Pooled SD: 0.75\",\"Covariance: 0.35 <br />Pooled SD: 1.08\",\"Covariance: 0.12 <br />Pooled SD: 0.77\",\"Covariance: -0.02 <br />Pooled SD: 1.06\",\"Covariance: 0.11 <br />Pooled SD: 0.69\",\"Covariance: 0.11 <br />Pooled SD: 0.93\",\"Covariance: 0.2 <br />Pooled SD: 1.41\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.06 <br />Pooled SD: 1.86\",\"Covariance: -0.39 <br />Pooled SD: 1.11\",\"Covariance: 0.58 <br />Pooled SD: 1.12\",\"Covariance: -0.75 <br />Pooled SD: 1.12\",\"Covariance: -0.08 <br />Pooled SD: 1.71\",\"Covariance: 0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.1 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 1.53\",\"Covariance: -0.94 <br />Pooled SD: 1.57\",\"Covariance: -0.19 <br />Pooled SD: 0.4\",\"Covariance: 0.31 <br />Pooled SD: 0.9\",\"Covariance: -0.17 <br />Pooled SD: 0.96\",\"Covariance: 1.21 <br />Pooled SD: 2.18\",\"Covariance: -0.88 <br />Pooled SD: 1.88\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: -1.27 <br />Pooled SD: 2.39\",\"Covariance: 0.75 <br />Pooled SD: 2.15\",\"Covariance: -0.05 <br />Pooled SD: 1.81\",\"Covariance: 0.96 <br />Pooled SD: 1.59\",\"Covariance: -0.39 <br />Pooled SD: 1.71\",\"Covariance: 0.52 <br />Pooled SD: 1.16\",\"Covariance: -0.15 <br />Pooled SD: 0.86\",\"Covariance: 0.08 <br />Pooled SD: 0.95\",\"Covariance: -0.33 <br />Pooled SD: 0.86\",\"Covariance: 0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.16 <br />Pooled SD: 1.03\",\"Covariance: -0.86 <br />Pooled SD: 1.8\",\"Covariance: 0.16 <br />Pooled SD: 1.17\",\"Covariance: -0.55 <br />Pooled SD: 1.9\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.08 <br />Pooled SD: 0.36\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: 1.51 <br />Pooled SD: 1.56\",\"Covariance: 0.48 <br />Pooled SD: 1.18\",\"Covariance: -0.22 <br />Pooled SD: 2.7\",\"Covariance: 0.91 <br />Pooled SD: 1.98\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: 1.31 <br />Pooled SD: 1.86\",\"Covariance: 0.97 <br />Pooled SD: 2.1\",\"Covariance: -0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.21 <br />Pooled SD: 0.89\",\"Covariance: 0.55 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 3.05\",\"Covariance: 0.36 <br />Pooled SD: 0.97\",\"Covariance: -0.23 <br />Pooled SD: 0.85\",\"Covariance: 0 <br />Pooled SD: 0.38\",\"Covariance: -0.28 <br />Pooled SD: 1.18\",\"Covariance: -0.4 <br />Pooled SD: 0.72\",\"Covariance: 0.34 <br />Pooled SD: 0.86\",\"Covariance: -0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.47 <br />Pooled SD: 1.64\",\"Covariance: 0.66 <br />Pooled SD: 2.35\",\"Covariance: 0.63 <br />Pooled SD: 1.4\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.51\",\"Covariance: 0.1 <br />Pooled SD: 0.99\",\"Covariance: 0.23 <br />Pooled SD: 1.61\",\"Covariance: -0.25 <br />Pooled SD: 2.32\",\"Covariance: 0.45 <br />Pooled SD: 0.6\",\"Covariance: 0.18 <br />Pooled SD: 0.72\",\"Covariance: -0.46 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 1.47\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: 0.53 <br />Pooled SD: 0.74\",\"Covariance: -0.18 <br />Pooled SD: 0.4\",\"Covariance: 0.01 <br />Pooled SD: 0.62\",\"Covariance: 0.01 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 0.85\",\"Covariance: -0.44 <br />Pooled SD: 0.68\",\"Covariance: 0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.78 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.65\",\"Covariance: 0.26 <br />Pooled SD: 0.67\",\"Covariance: 0.17 <br />Pooled SD: 1.68\",\"Covariance: 1.1 <br />Pooled SD: 1.67\",\"Covariance: -0.09 <br />Pooled SD: 1.43\",\"Covariance: -0.52 <br />Pooled SD: 0.82\",\"Covariance: -0.12 <br />Pooled SD: 1.01\",\"Covariance: 0.38 <br />Pooled SD: 1.24\",\"Covariance: 0.64 <br />Pooled SD: 1.69\",\"Covariance: 0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.96\",\"Covariance: 0.07 <br />Pooled SD: 0.81\",\"Covariance: -0.66 <br />Pooled SD: 0.91\",\"Covariance: 0.12 <br />Pooled SD: 1.76\",\"Covariance: 1.45 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 0.72\",\"Covariance: 0.06 <br />Pooled SD: 1.04\",\"Covariance: 0.04 <br />Pooled SD: 1.06\",\"Covariance: 0.7 <br />Pooled SD: 1.99\",\"Covariance: 0.66 <br />Pooled SD: 2.49\",\"Covariance: 0.08 <br />Pooled SD: 0.69\",\"Covariance: -1.54 <br />Pooled SD: 2.17\",\"Covariance: 0.45 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.63\",\"Covariance: 0.01 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.49\",\"Covariance: -0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.3 <br />Pooled SD: 1.57\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: -0.44 <br />Pooled SD: 0.53\",\"Covariance: -0.89 <br />Pooled SD: 2.58\",\"Covariance: 0.64 <br />Pooled SD: 0.7\",\"Covariance: 1.1 <br />Pooled SD: 1.49\",\"Covariance: 0.5 <br />Pooled SD: 1.53\",\"Covariance: 0.32 <br />Pooled SD: 0.69\",\"Covariance: -0.48 <br />Pooled SD: 0.49\",\"Covariance: -0.28 <br />Pooled SD: 0.38\",\"Covariance: 0.44 <br />Pooled SD: 1.06\",\"Covariance: 0 <br />Pooled SD: 0.61\",\"Covariance: -0.02 <br />Pooled SD: 0.44\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: -0.45 <br />Pooled SD: 1.25\",\"Covariance: -0.02 <br />Pooled SD: 0.5\",\"Covariance: -0.82 <br />Pooled SD: 1.19\",\"Covariance: -0.26 <br />Pooled SD: 2.28\",\"Covariance: 0.7 <br />Pooled SD: 0.81\",\"Covariance: 0.37 <br />Pooled SD: 1.59\",\"Covariance: 0.2 <br />Pooled SD: 0.41\",\"Covariance: 1.99 <br />Pooled SD: 2.39\",\"Covariance: -0.07 <br />Pooled SD: 0.23\",\"Covariance: 0.29 <br />Pooled SD: 0.57\",\"Covariance: 1.79 <br />Pooled SD: 2.95\",\"Covariance: -1.05 <br />Pooled SD: 1.48\",\"Covariance: 0.39 <br />Pooled SD: 1.6\",\"Covariance: 0.7 <br />Pooled SD: 1\",\"Covariance: 0.07 <br />Pooled SD: 1.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -1.65 <br />Pooled SD: 2.34\",\"Covariance: 0.34 <br />Pooled SD: 0.87\",\"Covariance: 0.23 <br />Pooled SD: 1.27\",\"Covariance: 0 <br />Pooled SD: 1.66\",\"Covariance: -0.86 <br />Pooled SD: 1.4\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -1.43 <br />Pooled SD: 1.62\",\"Covariance: 0.38 <br />Pooled SD: 1.2\",\"Covariance: 0.44 <br />Pooled SD: 0.65\",\"Covariance: 0.45 <br />Pooled SD: 0.85\",\"Covariance: 1.33 <br />Pooled SD: 2.39\",\"Covariance: 0.16 <br />Pooled SD: 1.21\",\"Covariance: -0.26 <br />Pooled SD: 1.18\",\"Covariance: 1.01 <br />Pooled SD: 1.18\",\"Covariance: 0.12 <br />Pooled SD: 0.93\",\"Covariance: -0.56 <br />Pooled SD: 0.9\",\"Covariance: -0.47 <br />Pooled SD: 0.9\",\"Covariance: -0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.21 <br />Pooled SD: 0.77\",\"Covariance: -0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.8 <br />Pooled SD: 1.31\",\"Covariance: -0.09 <br />Pooled SD: 0.49\",\"Covariance: 0.27 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.13\",\"Covariance: 0.06 <br />Pooled SD: 0.93\",\"Covariance: -0.24 <br />Pooled SD: 0.51\",\"Covariance: 0.67 <br />Pooled SD: 1.15\",\"Covariance: -0.19 <br />Pooled SD: 0.93\",\"Covariance: -0.8 <br />Pooled SD: 1.25\",\"Covariance: 0.85 <br />Pooled SD: 1.34\",\"Covariance: -0.19 <br />Pooled SD: 1.94\",\"Covariance: -0.86 <br />Pooled SD: 2.03\",\"Covariance: 0.79 <br />Pooled SD: 1.38\",\"Covariance: -0.76 <br />Pooled SD: 1.97\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: 0.1 <br />Pooled SD: 0.37\",\"Covariance: -0.74 <br />Pooled SD: 1.13\",\"Covariance: 1 <br />Pooled SD: 1.74\",\"Covariance: 0.3 <br />Pooled SD: 1.63\",\"Covariance: -0.98 <br />Pooled SD: 1.54\",\"Covariance: -0.44 <br />Pooled SD: 0.73\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.86 <br />Pooled SD: 1.82\",\"Covariance: -0.13 <br />Pooled SD: 0.74\",\"Covariance: 0.17 <br />Pooled SD: 1.01\",\"Covariance: -0.04 <br />Pooled SD: 0.46\",\"Covariance: 0.37 <br />Pooled SD: 0.56\",\"Covariance: 0.23 <br />Pooled SD: 0.69\",\"Covariance: 0.95 <br />Pooled SD: 1.84\",\"Covariance: -0.88 <br />Pooled SD: 1.32\",\"Covariance: 0.18 <br />Pooled SD: 0.59\",\"Covariance: 0.19 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.27\",\"Covariance: 0.05 <br />Pooled SD: 0.87\",\"Covariance: -0.27 <br />Pooled SD: 0.73\",\"Covariance: 0.43 <br />Pooled SD: 2.73\",\"Covariance: 1.16 <br />Pooled SD: 1.7\",\"Covariance: 0.19 <br />Pooled SD: 0.58\",\"Covariance: 0.51 <br />Pooled SD: 1.72\",\"Covariance: 0.05 <br />Pooled SD: 0.64\",\"Covariance: 0.56 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 2.25\",\"Covariance: -3.39 <br />Pooled SD: 3.65\",\"Covariance: -0.44 <br />Pooled SD: 1.08\",\"Covariance: -0.93 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.46\",\"Covariance: -0.42 <br />Pooled SD: 1.38\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.33 <br />Pooled SD: 0.98\",\"Covariance: -0.31 <br />Pooled SD: 2.19\",\"Covariance: 0.11 <br />Pooled SD: 2.18\",\"Covariance: 0.33 <br />Pooled SD: 1.83\",\"Covariance: 0.39 <br />Pooled SD: 0.99\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.53 <br />Pooled SD: 2.21\",\"Covariance: -0.75 <br />Pooled SD: 0.85\",\"Covariance: 1.18 <br />Pooled SD: 1.55\",\"Covariance: -1.21 <br />Pooled SD: 1.61\",\"Covariance: 0.83 <br />Pooled SD: 0.99\",\"Covariance: -0.25 <br />Pooled SD: 0.49\",\"Covariance: -0.74 <br />Pooled SD: 2.13\",\"Covariance: -0.33 <br />Pooled SD: 1.5\",\"Covariance: -0.46 <br />Pooled SD: 0.99\",\"Covariance: 1.62 <br />Pooled SD: 3.64\",\"Covariance: 0.16 <br />Pooled SD: 0.86\",\"Covariance: -0.55 <br />Pooled SD: 0.93\",\"Covariance: -0.13 <br />Pooled SD: 0.76\",\"Covariance: -0.14 <br />Pooled SD: 1.48\",\"Covariance: -0.21 <br />Pooled SD: 1.22\",\"Covariance: -0.66 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 1.5\",\"Covariance: 1.08 <br />Pooled SD: 2.4\",\"Covariance: 0.59 <br />Pooled SD: 0.96\",\"Covariance: -0.02 <br />Pooled SD: 2.59\",\"Covariance: -1.14 <br />Pooled SD: 2.22\",\"Covariance: 0.54 <br />Pooled SD: 1.16\",\"Covariance: -0.83 <br />Pooled SD: 2.07\",\"Covariance: -0.3 <br />Pooled SD: 1.19\",\"Covariance: 0.54 <br />Pooled SD: 0.88\",\"Covariance: 0.73 <br />Pooled SD: 1.95\",\"Covariance: 0.41 <br />Pooled SD: 0.61\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.14 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 0.51\",\"Covariance: -0.33 <br />Pooled SD: 1.8\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: 0.35 <br />Pooled SD: 1.82\",\"Covariance: -0.41 <br />Pooled SD: 1.31\",\"Covariance: -0.11 <br />Pooled SD: 1.61\",\"Covariance: 0.32 <br />Pooled SD: 0.65\",\"Covariance: -0.77 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 0.44\",\"Covariance: 2.65 <br />Pooled SD: 2.86\",\"Covariance: -0.38 <br />Pooled SD: 0.87\",\"Covariance: 0.15 <br />Pooled SD: 1.06\",\"Covariance: -0.49 <br />Pooled SD: 0.85\",\"Covariance: 0.31 <br />Pooled SD: 1.15\",\"Covariance: 0.18 <br />Pooled SD: 0.81\",\"Covariance: 0.18 <br />Pooled SD: 0.44\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: 0.16 <br />Pooled SD: 2.39\",\"Covariance: 0.23 <br />Pooled SD: 0.89\",\"Covariance: -0.21 <br />Pooled SD: 0.7\",\"Covariance: 0.54 <br />Pooled SD: 0.84\",\"Covariance: -0.37 <br />Pooled SD: 1.57\",\"Covariance: 0.71 <br />Pooled SD: 1\",\"Covariance: 0 <br />Pooled SD: 0.71\",\"Covariance: 0.76 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.28 <br />Pooled SD: 0.8\",\"Covariance: -0.15 <br />Pooled SD: 1.12\",\"Covariance: 0.33 <br />Pooled SD: 1.23\",\"Covariance: -0.49 <br />Pooled SD: 1.81\",\"Covariance: -0.25 <br />Pooled SD: 1.18\",\"Covariance: -0.12 <br />Pooled SD: 0.39\",\"Covariance: -0.66 <br />Pooled SD: 0.88\",\"Covariance: -0.7 <br />Pooled SD: 1.43\",\"Covariance: -0.56 <br />Pooled SD: 0.67\",\"Covariance: -0.12 <br />Pooled SD: 1.33\",\"Covariance: -0.12 <br />Pooled SD: 0.35\",\"Covariance: 0.06 <br />Pooled SD: 0.88\",\"Covariance: 0.78 <br />Pooled SD: 1.73\",\"Covariance: -0.35 <br />Pooled SD: 0.85\",\"Covariance: 0.34 <br />Pooled SD: 1.44\",\"Covariance: 0.19 <br />Pooled SD: 0.97\",\"Covariance: 1 <br />Pooled SD: 1.15\",\"Covariance: -0.17 <br />Pooled SD: 0.47\",\"Covariance: 0.67 <br />Pooled SD: 1.16\",\"Covariance: -1.53 <br />Pooled SD: 1.81\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.8 <br />Pooled SD: 1.44\",\"Covariance: 0.34 <br />Pooled SD: 0.95\",\"Covariance: -1.59 <br />Pooled SD: 2.18\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 0.77\",\"Covariance: 0.42 <br />Pooled SD: 2.03\",\"Covariance: -0.86 <br />Pooled SD: 1.35\",\"Covariance: -0.78 <br />Pooled SD: 1.44\",\"Covariance: -0.18 <br />Pooled SD: 1.18\",\"Covariance: 0.02 <br />Pooled SD: 0.62\",\"Covariance: -0.42 <br />Pooled SD: 1.24\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: -0.11 <br />Pooled SD: 0.24\",\"Covariance: -0.6 <br />Pooled SD: 1.3\",\"Covariance: 0.73 <br />Pooled SD: 1.02\",\"Covariance: 0.48 <br />Pooled SD: 0.94\",\"Covariance: 0.36 <br />Pooled SD: 0.57\",\"Covariance: -0.47 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: 0.28 <br />Pooled SD: 1.99\",\"Covariance: -0.72 <br />Pooled SD: 0.99\",\"Covariance: 0.25 <br />Pooled SD: 1.21\",\"Covariance: -0.66 <br />Pooled SD: 1.24\",\"Covariance: 0.43 <br />Pooled SD: 1.39\",\"Covariance: 0.16 <br />Pooled SD: 1.84\",\"Covariance: -0.31 <br />Pooled SD: 0.8\",\"Covariance: 0.68 <br />Pooled SD: 1.14\",\"Covariance: -0.41 <br />Pooled SD: 1.69\",\"Covariance: 0.77 <br />Pooled SD: 1.5\",\"Covariance: -0.05 <br />Pooled SD: 1.17\",\"Covariance: -0.46 <br />Pooled SD: 0.92\",\"Covariance: 0.61 <br />Pooled SD: 2.33\",\"Covariance: 0.05 <br />Pooled SD: 0.48\",\"Covariance: -0.67 <br />Pooled SD: 1.15\",\"Covariance: -2.07 <br />Pooled SD: 3.33\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: -0.85 <br />Pooled SD: 1.24\",\"Covariance: -0.03 <br />Pooled SD: 2.15\",\"Covariance: 0.76 <br />Pooled SD: 0.77\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: 0.79 <br />Pooled SD: 1.41\",\"Covariance: -0.74 <br />Pooled SD: 2.43\",\"Covariance: -0.17 <br />Pooled SD: 1.23\",\"Covariance: -0.1 <br />Pooled SD: 1.21\",\"Covariance: -0.83 <br />Pooled SD: 2.01\",\"Covariance: -0.22 <br />Pooled SD: 2.12\",\"Covariance: 0.78 <br />Pooled SD: 1.33\",\"Covariance: 0.97 <br />Pooled SD: 1.22\",\"Covariance: -0.1 <br />Pooled SD: 0.8\",\"Covariance: 0 <br />Pooled SD: 1.45\",\"Covariance: -0.16 <br />Pooled SD: 0.57\",\"Covariance: 0.93 <br />Pooled SD: 1.36\",\"Covariance: 0.83 <br />Pooled SD: 1.56\",\"Covariance: 0.77 <br />Pooled SD: 1.42\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.41 <br />Pooled SD: 1.12\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.13 <br />Pooled SD: 0.67\",\"Covariance: 0.07 <br />Pooled SD: 1.22\",\"Covariance: 0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.55 <br />Pooled SD: 0.66\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.12\",\"Covariance: 0.48 <br />Pooled SD: 1.47\",\"Covariance: 0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.4 <br />Pooled SD: 2.57\",\"Covariance: 0.37 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 0.98\",\"Covariance: -0.74 <br />Pooled SD: 1.46\",\"Covariance: -1.09 <br />Pooled SD: 1.45\",\"Covariance: 0.19 <br />Pooled SD: 1.5\",\"Covariance: -0.37 <br />Pooled SD: 1.45\",\"Covariance: 0.3 <br />Pooled SD: 0.83\",\"Covariance: -0.08 <br />Pooled SD: 1.4\",\"Covariance: -0.26 <br />Pooled SD: 0.68\",\"Covariance: 0.27 <br />Pooled SD: 1.78\",\"Covariance: 0.13 <br />Pooled SD: 0.24\",\"Covariance: 0.03 <br />Pooled SD: 0.42\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: 0.04 <br />Pooled SD: 1.23\",\"Covariance: 0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.35 <br />Pooled SD: 0.84\",\"Covariance: -0.71 <br />Pooled SD: 1.11\",\"Covariance: 0.25 <br />Pooled SD: 1.43\",\"Covariance: -0.16 <br />Pooled SD: 0.73\",\"Covariance: -0.66 <br />Pooled SD: 1.15\",\"Covariance: -0.08 <br />Pooled SD: 1.18\",\"Covariance: -0.74 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 1.22\",\"Covariance: 0.15 <br />Pooled SD: 2.2\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -0.18 <br />Pooled SD: 1.46\",\"Covariance: -0.45 <br />Pooled SD: 0.89\",\"Covariance: -0.51 <br />Pooled SD: 1.04\",\"Covariance: -0.32 <br />Pooled SD: 0.52\",\"Covariance: -0.63 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 2.17\",\"Covariance: -0.33 <br />Pooled SD: 1.79\",\"Covariance: 0.37 <br />Pooled SD: 1.1\",\"Covariance: 1.46 <br />Pooled SD: 1.87\",\"Covariance: 0.48 <br />Pooled SD: 2.23\",\"Covariance: -0.35 <br />Pooled SD: 1.23\",\"Covariance: 0.54 <br />Pooled SD: 1.36\",\"Covariance: -0.7 <br />Pooled SD: 1.06\",\"Covariance: 0.8 <br />Pooled SD: 1.36\",\"Covariance: -0.06 <br />Pooled SD: 1.03\",\"Covariance: -0.5 <br />Pooled SD: 0.81\",\"Covariance: 0.43 <br />Pooled SD: 0.86\",\"Covariance: -0.2 <br />Pooled SD: 1.25\",\"Covariance: 0 <br />Pooled SD: 0.86\",\"Covariance: 1.4 <br />Pooled SD: 1.59\",\"Covariance: -0.53 <br />Pooled SD: 0.99\",\"Covariance: 0.72 <br />Pooled SD: 1.23\",\"Covariance: -0.54 <br />Pooled SD: 1.35\",\"Covariance: -0.54 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.88\",\"Covariance: -0.19 <br />Pooled SD: 0.48\",\"Covariance: 1.18 <br />Pooled SD: 1.38\",\"Covariance: 0.32 <br />Pooled SD: 2.23\",\"Covariance: -0.87 <br />Pooled SD: 1.92\",\"Covariance: 0.52 <br />Pooled SD: 1.02\",\"Covariance: -0.02 <br />Pooled SD: 0.56\",\"Covariance: 0.46 <br />Pooled SD: 0.94\",\"Covariance: -0.43 <br />Pooled SD: 1.98\",\"Covariance: -0.08 <br />Pooled SD: 0.22\",\"Covariance: -1 <br />Pooled SD: 1.19\",\"Covariance: 0.87 <br />Pooled SD: 2.22\",\"Covariance: -0.29 <br />Pooled SD: 2.18\",\"Covariance: 0.57 <br />Pooled SD: 0.91\",\"Covariance: -0.6 <br />Pooled SD: 2.06\",\"Covariance: -0.61 <br />Pooled SD: 1.92\",\"Covariance: 0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.49 <br />Pooled SD: 0.87\",\"Covariance: -0.06 <br />Pooled SD: 1.73\",\"Covariance: -0.85 <br />Pooled SD: 1.62\",\"Covariance: -0.18 <br />Pooled SD: 0.44\",\"Covariance: 0.2 <br />Pooled SD: 1.51\",\"Covariance: 0.04 <br />Pooled SD: 0.68\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: 0.64 <br />Pooled SD: 1.44\",\"Covariance: -1.17 <br />Pooled SD: 1.6\",\"Covariance: -0.08 <br />Pooled SD: 0.69\",\"Covariance: 0.25 <br />Pooled SD: 1.44\",\"Covariance: -0.68 <br />Pooled SD: 0.77\",\"Covariance: 0.1 <br />Pooled SD: 1.38\",\"Covariance: -0.44 <br />Pooled SD: 0.78\",\"Covariance: -1.41 <br />Pooled SD: 2.79\",\"Covariance: 0.65 <br />Pooled SD: 1.62\",\"Covariance: -0.76 <br />Pooled SD: 2.06\",\"Covariance: 0.84 <br />Pooled SD: 1.79\",\"Covariance: -0.22 <br />Pooled SD: 1.16\",\"Covariance: 1.48 <br />Pooled SD: 1.89\",\"Covariance: -0.1 <br />Pooled SD: 1.47\",\"Covariance: 0.58 <br />Pooled SD: 2.82\",\"Covariance: -0.9 <br />Pooled SD: 2.01\",\"Covariance: 0.2 <br />Pooled SD: 2.26\",\"Covariance: -1.21 <br />Pooled SD: 2\",\"Covariance: 0.35 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.08\",\"Covariance: 0.37 <br />Pooled SD: 0.93\",\"Covariance: 0.13 <br />Pooled SD: 2.85\",\"Covariance: 0.28 <br />Pooled SD: 0.73\",\"Covariance: 0.49 <br />Pooled SD: 3.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -0.5 <br />Pooled SD: 2.23\",\"Covariance: -0.17 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 0.88\",\"Covariance: 0.22 <br />Pooled SD: 0.79\",\"Covariance: -0.77 <br />Pooled SD: 2.21\",\"Covariance: -0.13 <br />Pooled SD: 1.34\",\"Covariance: 0.11 <br />Pooled SD: 1.66\",\"Covariance: -0.06 <br />Pooled SD: 2.59\",\"Covariance: 0.4 <br />Pooled SD: 0.8\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.57 <br />Pooled SD: 1.72\"],\"frame\":\"2700\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2800\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7,0.17,-1.1,0.54,0.96,0.46,0.49,0.1,0.2,-0.03,0.45,0.13,0.05,-0.65,-0.3,0.66,-0.46,0.12,-0.16,0.35,-0.77,0.2,-0.57,0.76,0.18,0.11,0.02,-0.28,-0.62,-0.65,-0.12,0.32,-0.48,0.38,0.91,-0.69,-0.6,0.09,1.15,-0.57,0.05,0.3,-0.07,0.28,-0.01,-0.03,0.95,0.83,-0.97,0.04,-0.58,-0.96,0.23,0.81,-0.11,-0.54,0.58,-0.39,0.78,0.4,-0.32,-0.38,-0.57,-0.11,-0.08,-0.08,-0.57,0.33,-0.33,0.27,-1.12,1.37,-1.64,-2.13,-0.14,-1.43,0.06,0.13,0.03,0.08,0.22,-0.4,0.12,0.29,-0.93,0.81,0.46,-0.18,0.39,-1.82,0.52,-0.45,0.1,-0.65,-0.2,-0.42,0.25,-0.22,0.12,-0.28,1.16,0.5,0.28,-1.01,0.38,1.33,0.61,0.03,0.75,0.57,-0.1,0.18,0.41,0.54,-0.03,0.61,0.05,0.34,-0.18,0.38,-0.38,0.41,-0.39,-0.26,1.37,-0.34,0.17,0.49,-0.11,-0.15,0.87,0.13,-0.2,0.04,-0.09,0.58,0.82,-0.05,0.35,0.12,-0.02,0.11,0.11,0.2,-0.16,0.06,-0.39,0.58,-0.75,-0.08,0.22,-0.1,-0.26,-0.94,-0.19,0.31,-0.17,1.21,-0.88,0.22,-1.27,0.75,-0.05,0.96,-0.39,0.52,-0.15,0.08,-0.33,0.26,-0.16,-0.86,0.16,-0.55,0.51,0.08,0.07,1.51,0.48,-0.22,0.91,0.63,1.31,0.97,-0.05,-0.21,0.55,0.57,0.36,-0.23,0,-0.28,-0.4,0.34,-0.23,0.47,0.66,0.63,0.1,-0.07,0.1,0.23,-0.25,0.45,0.18,-0.46,-0.35,-0.38,0.53,-0.18,0.01,0.01,0.57,-0.44,0.13,0.78,-0.15,0.26,0.17,1.1,-0.09,-0.52,-0.12,0.38,0.64,0.18,-0.65,0.07,-0.66,0.12,1.45,0.5,0.06,0.04,0.7,0.66,0.08,-1.54,0.45,0.16,0.01,-0.06,-0.27,0.3,0,-0.44,-0.89,0.64,1.1,0.5,0.32,-0.48,-0.28,0.44,0,-0.02,0.13,-0.45,-0.02,-0.82,-0.26,0.7,0.37,0.2,1.99,-0.07,0.29,1.79,-1.05,0.39,0.7,0.07,-0.39,-1.65,0.34,0.23,-0,-0.86,0.27,-1.43,0.38,0.44,0.45,1.33,0.16,-0.26,1.01,0.12,-0.56,-0.47,-0.18,-0.21,-0.62,-0.8,-0.09,0.27,-0.48,0.06,-0.24,0.67,-0.19,-0.8,0.85,-0.19,-0.86,0.79,-0.76,0.22,0.1,-0.74,1,0.3,-0.98,-0.44,-0.19,-0.86,-0.13,0.17,-0.04,0.37,0.23,0.95,-0.88,0.18,0.19,-0.12,0.05,-0.27,0.43,1.16,0.19,0.51,0.05,0.56,-0.08,-3.39,-0.44,-0.93,0.07,-0.42,0.99,0.33,-0.31,0.11,0.33,0.39,-0.85,-0.53,-0.75,1.18,-1.21,0.83,-0.25,-0.74,-0.33,-0.46,1.62,0.16,-0.55,-0.13,-0.14,-0.21,-0.66,0.04,1.08,0.59,-0.02,-1.14,0.54,-0.83,-0.3,0.54,0.73,0.41,0.07,-0.14,0.16,-0.33,-0.32,0.35,-0.41,-0.11,0.32,-0.77,-0.44,-0.08,2.65,-0.38,0.15,-0.49,0.31,0.18,0.18,-0.01,0.16,0.23,-0.21,0.54,-0.37,0.71,-0,0.76,0.07,-0.28,-0.15,0.33,-0.49,-0.25,-0.12,-0.66,-0.7,-0.56,-0.12,-0.12,0.06,0.78,-0.35,0.34,0.19,1,-0.17,0.67,-1.53,-0.54,0.8,0.34,-1.59,0.52,-0.1,0.42,-0.86,-0.78,-0.18,0.02,-0.42,-0.01,-0.11,-0.6,0.73,0.48,0.36,-0.47,-0.25,0.28,-0.72,0.25,-0.66,0.43,0.16,-0.31,0.68,-0.41,0.77,-0.05,-0.46,0.61,0.05,-0.67,-2.07,-0.82,-0.85,-0.03,0.76,-0.28,0.79,-0.74,-0.17,-0.1,-0.83,-0.22,0.78,0.97,-0.1,0,-0.16,0.93,0.83,0.77,-0.12,-0.41,0.13,-0.13,0.07,0.34,0.02,-0.55,-0.54,0.28,-0.05,0.48,0.42,0.4,0.37,0.14,-0.74,-1.09,0.19,-0.37,0.3,-0.08,-0.26,0.27,0.13,0.03,0.79,0.04,0.21,-0.35,-0.71,0.25,-0.16,-0.66,-0.08,-0.74,0.13,0.15,0.09,-0.18,-0.45,-0.51,-0.32,-0.63,0.16,-0.33,0.37,1.46,0.48,-0.35,0.54,-0.7,0.8,-0.06,-0.5,0.43,-0.2,0,1.4,-0.53,0.72,-0.54,-0.54,0.52,-0.19,1.18,0.32,-0.87,0.52,-0.02,0.46,-0.43,-0.08,-1,0.87,-0.29,0.57,-0.6,-0.61,0.09,0.49,-0.06,-0.85,-0.18,0.2,0.04,0,0.64,-1.17,-0.08,0.25,-0.68,0.1,-0.44,-1.41,0.65,-0.76,0.84,-0.22,1.48,-0.1,0.58,-0.9,0.2,-1.21,0.35,-0.48,0.37,0.13,0.28,0.49,-0.39,-0.5,-0.17,0.36,0.22,-0.77,-0.13,0.11,-0.06,0.4,0.99,0.57,1.64,-0.21,0.18,0.1,-0.1,0.1,-0.28,0.49,0,-1.68,-0.68,-0.04,0.02,-0.22,0.58,0.29,-1.43,-0.35,-0.55,-0.2,0.54,-0.22,-0.1,1.11,-0.01,-0.43,-0.6,-0.1,0.92,-0.15,-0.32,0.81,0.45,0.51,0.33,0.41,0.31,-0.04,0.05,-0.05,-0.32,-0.71,-0.04,-0.92,-0.52,0.22,0.48,-0.32,-0.46,-1.11,-0.31,0.71,-0.65,0.06,0.67,0.89,0.4,0.27,0.31,-0.32,-0.3,0.76,0.34,-0.02,-0.77,-0.52,-1.27,1.23,1.09,0.53,0.64,0.06,0.04,0.33,-0.21,0.94,-0.62,0.39,0.16,-0.1,0.54,-0.15,0.27,-0.16,-0.21,0.03,0.44,-0.05,-0,-0.64,0.33,0.79,0.43,0.14,0.24,0.31,-0.23,0.17,1.01,-1.18],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14,1.39,2.11,0.64,1.87,1.81,2.14,0.73,1.17,0.99,0.98,1.73,0.65,1.81,0.77,1.01,1.86,1.58,0.7,0.98,1.55,0.98,1.03,1.13,0.92,0.96,1.17,1.26,1.33,1.35,0.82,2.11,0.87,1.69,1.42,0.97,2.99,2.68,2.32,1.16,0.89,1.21,0.46,1.48,1.39,0.39,2.16,1.26,1.14,0.7,2.74,1.49,0.66,1.46,0.56,0.59,0.82,1.39,1.14,1.33,0.95,0.62,1.05,1.85,1.05,1.51,0.98,1.42,1.14,1.9,1.43,1.65,2.42,2.59,0.94,2.3,0.75,0.99,1.16,1.12,0.75,0.55,0.86,0.93,1.63,1.08,0.67,0.86,0.63,3.11,1.71,1.08,1.13,1.66,1.17,0.74,1.87,1.19,0.4,1.56,1.48,0.71,0.9,1.56,0.74,1.7,2.04,0.94,1.42,1.44,0.49,0.41,0.95,1.05,0.9,1.02,0.73,0.92,2.43,1.37,1.33,1.64,1.02,0.62,1.88,1.68,2.41,1.6,1.51,2.26,2.39,0.25,0.65,0.48,1.5,1.71,1.63,0.75,1.08,0.77,1.06,0.69,0.93,1.41,0.85,1.86,1.11,1.12,1.12,1.71,0.35,1.05,1.53,1.57,0.4,0.9,0.96,2.18,1.88,0.58,2.39,2.15,1.81,1.59,1.71,1.16,0.86,0.95,0.86,1.31,1.03,1.8,1.17,1.9,1.28,0.36,0.98,1.56,1.18,2.7,1.98,1.3,1.86,2.1,0.6,0.89,1.12,3.05,0.97,0.85,0.38,1.18,0.72,0.86,1.07,1.64,2.35,1.4,1.41,0.51,0.99,1.61,2.32,0.6,0.72,0.8,1.47,0.85,0.74,0.4,0.62,1.42,0.85,0.68,0.72,1.06,0.65,0.67,1.68,1.67,1.43,0.82,1.01,1.24,1.69,0.69,1.96,0.81,0.91,1.76,1.62,0.72,1.04,1.06,1.99,2.49,0.69,2.17,1.46,0.63,0.48,0.49,1.21,1.57,0.82,0.53,2.58,0.7,1.49,1.53,0.69,0.49,0.38,1.06,0.61,0.44,1.73,1.25,0.5,1.19,2.28,0.81,1.59,0.41,2.39,0.23,0.57,2.95,1.48,1.6,1,1.45,0.78,2.34,0.87,1.27,1.66,1.4,0.77,1.62,1.2,0.65,0.85,2.39,1.21,1.18,1.18,0.93,0.9,0.9,0.69,0.77,1.15,1.31,0.49,1.36,1.13,0.93,0.51,1.15,0.93,1.25,1.34,1.94,2.03,1.38,1.97,0.58,0.37,1.13,1.74,1.63,1.54,0.73,0.8,1.82,0.74,1.01,0.46,0.56,0.69,1.84,1.32,0.59,0.91,1.27,0.87,0.73,2.73,1.7,0.58,1.72,0.64,1.14,2.25,3.65,1.08,1.64,1.46,1.38,1.1,0.98,2.19,2.18,1.83,0.99,1.7,2.21,0.85,1.55,1.61,0.99,0.49,2.13,1.5,0.99,3.64,0.86,0.93,0.76,1.48,1.22,1.37,1.5,2.4,0.96,2.59,2.22,1.16,2.07,1.19,0.88,1.95,0.61,1.21,0.78,0.51,1.8,1.35,1.82,1.31,1.61,0.65,1.15,1.85,0.44,2.86,0.87,1.06,0.85,1.15,0.81,0.44,0.58,2.39,0.89,0.7,0.84,1.57,1,0.71,1.64,1.21,0.8,1.12,1.23,1.81,1.18,0.39,0.88,1.43,0.67,1.33,0.35,0.88,1.73,0.85,1.44,0.97,1.15,0.47,1.16,1.81,1.32,1.44,0.95,2.18,1.13,0.77,2.03,1.35,1.44,1.18,0.62,1.24,0.58,0.24,1.3,1.02,0.94,0.57,1.22,1.75,1.99,0.99,1.21,1.24,1.39,1.84,0.8,1.14,1.69,1.5,1.17,0.92,2.33,0.48,1.15,3.33,1.12,1.24,2.15,0.77,0.95,1.41,2.43,1.23,1.21,2.01,2.12,1.33,1.22,0.8,1.45,0.57,1.36,1.56,1.42,1.29,1.12,0.91,0.67,1.22,0.69,0.67,0.66,1.02,0.4,1.12,1.47,1.65,2.57,1.07,0.98,1.46,1.45,1.5,1.45,0.83,1.4,0.68,1.78,0.24,0.42,2.15,1.23,1.33,0.84,1.11,1.43,0.73,1.15,1.18,2.21,1.22,2.2,0.48,1.46,0.89,1.04,0.52,0.78,2.17,1.79,1.1,1.87,2.23,1.23,1.36,1.06,1.36,1.03,0.81,0.86,1.25,0.86,1.59,0.99,1.23,1.35,1.45,0.88,0.48,1.38,2.23,1.92,1.02,0.56,0.94,1.98,0.22,1.19,2.22,2.18,0.91,2.06,1.92,0.52,0.87,1.73,1.62,0.44,1.51,0.68,0.82,1.44,1.6,0.69,1.44,0.77,1.38,0.78,2.79,1.62,2.06,1.79,1.16,1.89,1.47,2.82,2.01,2.26,2,1.36,1.08,0.93,2.85,0.73,3.45,0.78,2.23,1.15,0.88,0.79,2.21,1.34,1.66,2.59,0.8,1.1,1.72,1.89,1.05,0.99,1.52,0.65,1.49,2.17,0.79,1.09,2.96,1.22,1.7,1.03,0.31,1.41,1.05,1.63,1.94,0.7,1.17,0.83,2.03,1.37,1.63,2.46,1.55,1.09,0.85,1.53,0.57,0.75,1.57,0.93,1.06,1.65,0.89,1.32,1.33,0.25,2.09,1.43,2.1,0.97,1.57,1.03,0.91,1.16,1.52,1.12,2.18,1.24,0.95,1.18,1.14,1.52,1,0.67,1.21,1.34,1.42,1.52,1.35,1.87,1.66,0.87,1.73,2.37,1.65,2.1,1.86,1.71,1.09,1.98,1.25,0.55,1.06,1.53,0.9,0.53,2,1.08,0.58,0.77,1.41,1.05,0.55,1.71,0.53,1.56,0.83,0.76,1.12,0.82,2.04,1.53,1.35,0.57,1.41,1.23,2.03],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38,0.15,0.53,0.07,0.37,0.03,0.16,-0.41,-0.64,0.18,-0.22,-0.57,-0.07,-0.34,0.11,0.07,0.18,-0.13,-0.51,-0.49,-0.63,-0.8,0.07,-0.18,0.33,0.78,0.21,-0.28,0.4,-0.66,0.59,-0.06,-0.61,0.5,-0.16,0,0.88,-0.53,0.59,-0.4,-0.37,0.6,-0.4,0.85,0.14,-0.45,0.51,-0.03,0.49,-0.22,-0.37,-0.84,0.39,-0.14,0.63,-0.29,-0.31,0.18,0.56,-0.04,-0.53,-0.41,0.13,0.06,0,0.44,-0.73,-0.12,0.17,-0.88,0.07,-0.56,-0.5,0.4,-0.37,0.47,-0.19,0.78,-0.07,0.2,-0.45,0.09,-0.6,0.26,-0.44,0.4,0.05,0.39,0.14,-0.49,-0.22,-0.14,0.41,0.28,-0.35,-0.1,0.07,-0.02,0.5,0.9,0.33,0.87,-0.2,0.19,0.07,-0.15,0.06,-0.13,0.62,0,-0.57,-0.56,-0.02,0.02,-0.7,0.41,0.28,-0.88,-0.18,-0.78,-0.17,0.66,-0.11,-0.07,0.68,-0,-0.27,-0.55,-0.12,0.6,-0.26,-0.42,0.51,0.48,0.48,0.2,0.46,0.24,-0.03,0.2,-0.03,-0.23,-0.34,-0.04,-0.59,-0.5,0.24,0.42,-0.21,-0.41,-0.51,-0.25,0.75,-0.55,0.05,0.44,0.89,0.6,0.23,0.23,-0.22,-0.19,0.56,0.18,-0.01,-0.88,-0.3,-0.53,0.75,0.52,0.28,0.38,0.05,0.02,0.26,-0.39,0.88,-0.41,0.43,0.31,-0.05,0.5,-0.26,0.36,-0.11,-0.2,0.05,0.26,-0.1,-0,-0.78,0.44,0.7,0.52,0.07,0.16,0.23,-0.4,0.12,0.83,-0.58],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38,0.15,0.53,0.07,0.37,0.03,0.16,-0.41,-0.64,0.18,-0.22,-0.57,-0.07,-0.34,0.11,0.07,0.18,-0.13,-0.51,-0.49,-0.63,-0.8,0.07,-0.18,0.33,0.78,0.21,-0.28,0.4,-0.66,0.59,-0.06,-0.61,0.5,-0.16,0,0.88,-0.53,0.59,-0.4,-0.37,0.6,-0.4,0.85,0.14,-0.45,0.51,-0.03,0.49,-0.22,-0.37,-0.84,0.39,-0.14,0.63,-0.29,-0.31,0.18,0.56,-0.04,-0.53,-0.41,0.13,0.06,0,0.44,-0.73,-0.12,0.17,-0.88,0.07,-0.56,-0.5,0.4,-0.37,0.47,-0.19,0.78,-0.07,0.2,-0.45,0.09,-0.6,0.26,-0.44,0.4,0.05,0.39,0.14,-0.49,-0.22,-0.14,0.41,0.28,-0.35,-0.1,0.07,-0.02,0.5,0.9,0.33,0.87,-0.2,0.19,0.07,-0.15,0.06,-0.13,0.62,0,-0.57,-0.56,-0.02,0.02,-0.7,0.41,0.28,-0.88,-0.18,-0.78,-0.17,0.66,-0.11,-0.07,0.68,-0,-0.27,-0.55,-0.12,0.6,-0.26,-0.42,0.51,0.48,0.48,0.2,0.46,0.24,-0.03,0.2,-0.03,-0.23,-0.34,-0.04,-0.59,-0.5,0.24,0.42,-0.21,-0.41,-0.51,-0.25,0.75,-0.55,0.05,0.44,0.89,0.6,0.23,0.23,-0.22,-0.19,0.56,0.18,-0.01,-0.88,-0.3,-0.53,0.75,0.52,0.28,0.38,0.05,0.02,0.26,-0.39,0.88,-0.41,0.43,0.31,-0.05,0.5,-0.26,0.36,-0.11,-0.2,0.05,0.26,-0.1,-0,-0.78,0.44,0.7,0.52,0.07,0.16,0.23,-0.4,0.12,0.83,-0.58]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\",\"Covariance: 0.17 <br />Pooled SD: 1.39\",\"Covariance: -1.1 <br />Pooled SD: 2.11\",\"Covariance: 0.54 <br />Pooled SD: 0.64\",\"Covariance: 0.96 <br />Pooled SD: 1.87\",\"Covariance: 0.46 <br />Pooled SD: 1.81\",\"Covariance: 0.49 <br />Pooled SD: 2.14\",\"Covariance: 0.1 <br />Pooled SD: 0.73\",\"Covariance: 0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.03 <br />Pooled SD: 0.99\",\"Covariance: 0.45 <br />Pooled SD: 0.98\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.81\",\"Covariance: -0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.66 <br />Pooled SD: 1.01\",\"Covariance: -0.46 <br />Pooled SD: 1.86\",\"Covariance: 0.12 <br />Pooled SD: 1.58\",\"Covariance: -0.16 <br />Pooled SD: 0.7\",\"Covariance: 0.35 <br />Pooled SD: 0.98\",\"Covariance: -0.77 <br />Pooled SD: 1.55\",\"Covariance: 0.2 <br />Pooled SD: 0.98\",\"Covariance: -0.57 <br />Pooled SD: 1.03\",\"Covariance: 0.76 <br />Pooled SD: 1.13\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.02 <br />Pooled SD: 1.17\",\"Covariance: -0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.33\",\"Covariance: -0.65 <br />Pooled SD: 1.35\",\"Covariance: -0.12 <br />Pooled SD: 0.82\",\"Covariance: 0.32 <br />Pooled SD: 2.11\",\"Covariance: -0.48 <br />Pooled SD: 0.87\",\"Covariance: 0.38 <br />Pooled SD: 1.69\",\"Covariance: 0.91 <br />Pooled SD: 1.42\",\"Covariance: -0.69 <br />Pooled SD: 0.97\",\"Covariance: -0.6 <br />Pooled SD: 2.99\",\"Covariance: 0.09 <br />Pooled SD: 2.68\",\"Covariance: 1.15 <br />Pooled SD: 2.32\",\"Covariance: -0.57 <br />Pooled SD: 1.16\",\"Covariance: 0.05 <br />Pooled SD: 0.89\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: -0.07 <br />Pooled SD: 0.46\",\"Covariance: 0.28 <br />Pooled SD: 1.48\",\"Covariance: -0.01 <br />Pooled SD: 1.39\",\"Covariance: -0.03 <br />Pooled SD: 0.39\",\"Covariance: 0.95 <br />Pooled SD: 2.16\",\"Covariance: 0.83 <br />Pooled SD: 1.26\",\"Covariance: -0.97 <br />Pooled SD: 1.14\",\"Covariance: 0.04 <br />Pooled SD: 0.7\",\"Covariance: -0.58 <br />Pooled SD: 2.74\",\"Covariance: -0.96 <br />Pooled SD: 1.49\",\"Covariance: 0.23 <br />Pooled SD: 0.66\",\"Covariance: 0.81 <br />Pooled SD: 1.46\",\"Covariance: -0.11 <br />Pooled SD: 0.56\",\"Covariance: -0.54 <br />Pooled SD: 0.59\",\"Covariance: 0.58 <br />Pooled SD: 0.82\",\"Covariance: -0.39 <br />Pooled SD: 1.39\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 0.4 <br />Pooled SD: 1.33\",\"Covariance: -0.32 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.57 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 1.05\",\"Covariance: -0.08 <br />Pooled SD: 1.51\",\"Covariance: -0.57 <br />Pooled SD: 0.98\",\"Covariance: 0.33 <br />Pooled SD: 1.42\",\"Covariance: -0.33 <br />Pooled SD: 1.14\",\"Covariance: 0.27 <br />Pooled SD: 1.9\",\"Covariance: -1.12 <br />Pooled SD: 1.43\",\"Covariance: 1.37 <br />Pooled SD: 1.65\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: -2.13 <br />Pooled SD: 2.59\",\"Covariance: -0.14 <br />Pooled SD: 0.94\",\"Covariance: -1.43 <br />Pooled SD: 2.3\",\"Covariance: 0.06 <br />Pooled SD: 0.75\",\"Covariance: 0.13 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 1.16\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.12 <br />Pooled SD: 0.86\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.93 <br />Pooled SD: 1.63\",\"Covariance: 0.81 <br />Pooled SD: 1.08\",\"Covariance: 0.46 <br />Pooled SD: 0.67\",\"Covariance: -0.18 <br />Pooled SD: 0.86\",\"Covariance: 0.39 <br />Pooled SD: 0.63\",\"Covariance: -1.82 <br />Pooled SD: 3.11\",\"Covariance: 0.52 <br />Pooled SD: 1.71\",\"Covariance: -0.45 <br />Pooled SD: 1.08\",\"Covariance: 0.1 <br />Pooled SD: 1.13\",\"Covariance: -0.65 <br />Pooled SD: 1.66\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 0.74\",\"Covariance: 0.25 <br />Pooled SD: 1.87\",\"Covariance: -0.22 <br />Pooled SD: 1.19\",\"Covariance: 0.12 <br />Pooled SD: 0.4\",\"Covariance: -0.28 <br />Pooled SD: 1.56\",\"Covariance: 1.16 <br />Pooled SD: 1.48\",\"Covariance: 0.5 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 0.9\",\"Covariance: -1.01 <br />Pooled SD: 1.56\",\"Covariance: 0.38 <br />Pooled SD: 0.74\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.61 <br />Pooled SD: 2.04\",\"Covariance: 0.03 <br />Pooled SD: 0.94\",\"Covariance: 0.75 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 1.44\",\"Covariance: -0.1 <br />Pooled SD: 0.49\",\"Covariance: 0.18 <br />Pooled SD: 0.41\",\"Covariance: 0.41 <br />Pooled SD: 0.95\",\"Covariance: 0.54 <br />Pooled SD: 1.05\",\"Covariance: -0.03 <br />Pooled SD: 0.9\",\"Covariance: 0.61 <br />Pooled SD: 1.02\",\"Covariance: 0.05 <br />Pooled SD: 0.73\",\"Covariance: 0.34 <br />Pooled SD: 0.92\",\"Covariance: -0.18 <br />Pooled SD: 2.43\",\"Covariance: 0.38 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.33\",\"Covariance: 0.41 <br />Pooled SD: 1.64\",\"Covariance: -0.39 <br />Pooled SD: 1.02\",\"Covariance: -0.26 <br />Pooled SD: 0.62\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.17 <br />Pooled SD: 2.41\",\"Covariance: 0.49 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 2.26\",\"Covariance: 0.87 <br />Pooled SD: 2.39\",\"Covariance: 0.13 <br />Pooled SD: 0.25\",\"Covariance: -0.2 <br />Pooled SD: 0.65\",\"Covariance: 0.04 <br />Pooled SD: 0.48\",\"Covariance: -0.09 <br />Pooled SD: 1.5\",\"Covariance: 0.58 <br />Pooled SD: 1.71\",\"Covariance: 0.82 <br />Pooled SD: 1.63\",\"Covariance: -0.05 <br />Pooled SD: 0.75\",\"Covariance: 0.35 <br />Pooled SD: 1.08\",\"Covariance: 0.12 <br />Pooled SD: 0.77\",\"Covariance: -0.02 <br />Pooled SD: 1.06\",\"Covariance: 0.11 <br />Pooled SD: 0.69\",\"Covariance: 0.11 <br />Pooled SD: 0.93\",\"Covariance: 0.2 <br />Pooled SD: 1.41\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.06 <br />Pooled SD: 1.86\",\"Covariance: -0.39 <br />Pooled SD: 1.11\",\"Covariance: 0.58 <br />Pooled SD: 1.12\",\"Covariance: -0.75 <br />Pooled SD: 1.12\",\"Covariance: -0.08 <br />Pooled SD: 1.71\",\"Covariance: 0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.1 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 1.53\",\"Covariance: -0.94 <br />Pooled SD: 1.57\",\"Covariance: -0.19 <br />Pooled SD: 0.4\",\"Covariance: 0.31 <br />Pooled SD: 0.9\",\"Covariance: -0.17 <br />Pooled SD: 0.96\",\"Covariance: 1.21 <br />Pooled SD: 2.18\",\"Covariance: -0.88 <br />Pooled SD: 1.88\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: -1.27 <br />Pooled SD: 2.39\",\"Covariance: 0.75 <br />Pooled SD: 2.15\",\"Covariance: -0.05 <br />Pooled SD: 1.81\",\"Covariance: 0.96 <br />Pooled SD: 1.59\",\"Covariance: -0.39 <br />Pooled SD: 1.71\",\"Covariance: 0.52 <br />Pooled SD: 1.16\",\"Covariance: -0.15 <br />Pooled SD: 0.86\",\"Covariance: 0.08 <br />Pooled SD: 0.95\",\"Covariance: -0.33 <br />Pooled SD: 0.86\",\"Covariance: 0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.16 <br />Pooled SD: 1.03\",\"Covariance: -0.86 <br />Pooled SD: 1.8\",\"Covariance: 0.16 <br />Pooled SD: 1.17\",\"Covariance: -0.55 <br />Pooled SD: 1.9\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.08 <br />Pooled SD: 0.36\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: 1.51 <br />Pooled SD: 1.56\",\"Covariance: 0.48 <br />Pooled SD: 1.18\",\"Covariance: -0.22 <br />Pooled SD: 2.7\",\"Covariance: 0.91 <br />Pooled SD: 1.98\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: 1.31 <br />Pooled SD: 1.86\",\"Covariance: 0.97 <br />Pooled SD: 2.1\",\"Covariance: -0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.21 <br />Pooled SD: 0.89\",\"Covariance: 0.55 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 3.05\",\"Covariance: 0.36 <br />Pooled SD: 0.97\",\"Covariance: -0.23 <br />Pooled SD: 0.85\",\"Covariance: 0 <br />Pooled SD: 0.38\",\"Covariance: -0.28 <br />Pooled SD: 1.18\",\"Covariance: -0.4 <br />Pooled SD: 0.72\",\"Covariance: 0.34 <br />Pooled SD: 0.86\",\"Covariance: -0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.47 <br />Pooled SD: 1.64\",\"Covariance: 0.66 <br />Pooled SD: 2.35\",\"Covariance: 0.63 <br />Pooled SD: 1.4\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.51\",\"Covariance: 0.1 <br />Pooled SD: 0.99\",\"Covariance: 0.23 <br />Pooled SD: 1.61\",\"Covariance: -0.25 <br />Pooled SD: 2.32\",\"Covariance: 0.45 <br />Pooled SD: 0.6\",\"Covariance: 0.18 <br />Pooled SD: 0.72\",\"Covariance: -0.46 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 1.47\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: 0.53 <br />Pooled SD: 0.74\",\"Covariance: -0.18 <br />Pooled SD: 0.4\",\"Covariance: 0.01 <br />Pooled SD: 0.62\",\"Covariance: 0.01 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 0.85\",\"Covariance: -0.44 <br />Pooled SD: 0.68\",\"Covariance: 0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.78 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.65\",\"Covariance: 0.26 <br />Pooled SD: 0.67\",\"Covariance: 0.17 <br />Pooled SD: 1.68\",\"Covariance: 1.1 <br />Pooled SD: 1.67\",\"Covariance: -0.09 <br />Pooled SD: 1.43\",\"Covariance: -0.52 <br />Pooled SD: 0.82\",\"Covariance: -0.12 <br />Pooled SD: 1.01\",\"Covariance: 0.38 <br />Pooled SD: 1.24\",\"Covariance: 0.64 <br />Pooled SD: 1.69\",\"Covariance: 0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.96\",\"Covariance: 0.07 <br />Pooled SD: 0.81\",\"Covariance: -0.66 <br />Pooled SD: 0.91\",\"Covariance: 0.12 <br />Pooled SD: 1.76\",\"Covariance: 1.45 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 0.72\",\"Covariance: 0.06 <br />Pooled SD: 1.04\",\"Covariance: 0.04 <br />Pooled SD: 1.06\",\"Covariance: 0.7 <br />Pooled SD: 1.99\",\"Covariance: 0.66 <br />Pooled SD: 2.49\",\"Covariance: 0.08 <br />Pooled SD: 0.69\",\"Covariance: -1.54 <br />Pooled SD: 2.17\",\"Covariance: 0.45 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.63\",\"Covariance: 0.01 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.49\",\"Covariance: -0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.3 <br />Pooled SD: 1.57\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: -0.44 <br />Pooled SD: 0.53\",\"Covariance: -0.89 <br />Pooled SD: 2.58\",\"Covariance: 0.64 <br />Pooled SD: 0.7\",\"Covariance: 1.1 <br />Pooled SD: 1.49\",\"Covariance: 0.5 <br />Pooled SD: 1.53\",\"Covariance: 0.32 <br />Pooled SD: 0.69\",\"Covariance: -0.48 <br />Pooled SD: 0.49\",\"Covariance: -0.28 <br />Pooled SD: 0.38\",\"Covariance: 0.44 <br />Pooled SD: 1.06\",\"Covariance: 0 <br />Pooled SD: 0.61\",\"Covariance: -0.02 <br />Pooled SD: 0.44\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: -0.45 <br />Pooled SD: 1.25\",\"Covariance: -0.02 <br />Pooled SD: 0.5\",\"Covariance: -0.82 <br />Pooled SD: 1.19\",\"Covariance: -0.26 <br />Pooled SD: 2.28\",\"Covariance: 0.7 <br />Pooled SD: 0.81\",\"Covariance: 0.37 <br />Pooled SD: 1.59\",\"Covariance: 0.2 <br />Pooled SD: 0.41\",\"Covariance: 1.99 <br />Pooled SD: 2.39\",\"Covariance: -0.07 <br />Pooled SD: 0.23\",\"Covariance: 0.29 <br />Pooled SD: 0.57\",\"Covariance: 1.79 <br />Pooled SD: 2.95\",\"Covariance: -1.05 <br />Pooled SD: 1.48\",\"Covariance: 0.39 <br />Pooled SD: 1.6\",\"Covariance: 0.7 <br />Pooled SD: 1\",\"Covariance: 0.07 <br />Pooled SD: 1.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -1.65 <br />Pooled SD: 2.34\",\"Covariance: 0.34 <br />Pooled SD: 0.87\",\"Covariance: 0.23 <br />Pooled SD: 1.27\",\"Covariance: 0 <br />Pooled SD: 1.66\",\"Covariance: -0.86 <br />Pooled SD: 1.4\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -1.43 <br />Pooled SD: 1.62\",\"Covariance: 0.38 <br />Pooled SD: 1.2\",\"Covariance: 0.44 <br />Pooled SD: 0.65\",\"Covariance: 0.45 <br />Pooled SD: 0.85\",\"Covariance: 1.33 <br />Pooled SD: 2.39\",\"Covariance: 0.16 <br />Pooled SD: 1.21\",\"Covariance: -0.26 <br />Pooled SD: 1.18\",\"Covariance: 1.01 <br />Pooled SD: 1.18\",\"Covariance: 0.12 <br />Pooled SD: 0.93\",\"Covariance: -0.56 <br />Pooled SD: 0.9\",\"Covariance: -0.47 <br />Pooled SD: 0.9\",\"Covariance: -0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.21 <br />Pooled SD: 0.77\",\"Covariance: -0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.8 <br />Pooled SD: 1.31\",\"Covariance: -0.09 <br />Pooled SD: 0.49\",\"Covariance: 0.27 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.13\",\"Covariance: 0.06 <br />Pooled SD: 0.93\",\"Covariance: -0.24 <br />Pooled SD: 0.51\",\"Covariance: 0.67 <br />Pooled SD: 1.15\",\"Covariance: -0.19 <br />Pooled SD: 0.93\",\"Covariance: -0.8 <br />Pooled SD: 1.25\",\"Covariance: 0.85 <br />Pooled SD: 1.34\",\"Covariance: -0.19 <br />Pooled SD: 1.94\",\"Covariance: -0.86 <br />Pooled SD: 2.03\",\"Covariance: 0.79 <br />Pooled SD: 1.38\",\"Covariance: -0.76 <br />Pooled SD: 1.97\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: 0.1 <br />Pooled SD: 0.37\",\"Covariance: -0.74 <br />Pooled SD: 1.13\",\"Covariance: 1 <br />Pooled SD: 1.74\",\"Covariance: 0.3 <br />Pooled SD: 1.63\",\"Covariance: -0.98 <br />Pooled SD: 1.54\",\"Covariance: -0.44 <br />Pooled SD: 0.73\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.86 <br />Pooled SD: 1.82\",\"Covariance: -0.13 <br />Pooled SD: 0.74\",\"Covariance: 0.17 <br />Pooled SD: 1.01\",\"Covariance: -0.04 <br />Pooled SD: 0.46\",\"Covariance: 0.37 <br />Pooled SD: 0.56\",\"Covariance: 0.23 <br />Pooled SD: 0.69\",\"Covariance: 0.95 <br />Pooled SD: 1.84\",\"Covariance: -0.88 <br />Pooled SD: 1.32\",\"Covariance: 0.18 <br />Pooled SD: 0.59\",\"Covariance: 0.19 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.27\",\"Covariance: 0.05 <br />Pooled SD: 0.87\",\"Covariance: -0.27 <br />Pooled SD: 0.73\",\"Covariance: 0.43 <br />Pooled SD: 2.73\",\"Covariance: 1.16 <br />Pooled SD: 1.7\",\"Covariance: 0.19 <br />Pooled SD: 0.58\",\"Covariance: 0.51 <br />Pooled SD: 1.72\",\"Covariance: 0.05 <br />Pooled SD: 0.64\",\"Covariance: 0.56 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 2.25\",\"Covariance: -3.39 <br />Pooled SD: 3.65\",\"Covariance: -0.44 <br />Pooled SD: 1.08\",\"Covariance: -0.93 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.46\",\"Covariance: -0.42 <br />Pooled SD: 1.38\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.33 <br />Pooled SD: 0.98\",\"Covariance: -0.31 <br />Pooled SD: 2.19\",\"Covariance: 0.11 <br />Pooled SD: 2.18\",\"Covariance: 0.33 <br />Pooled SD: 1.83\",\"Covariance: 0.39 <br />Pooled SD: 0.99\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.53 <br />Pooled SD: 2.21\",\"Covariance: -0.75 <br />Pooled SD: 0.85\",\"Covariance: 1.18 <br />Pooled SD: 1.55\",\"Covariance: -1.21 <br />Pooled SD: 1.61\",\"Covariance: 0.83 <br />Pooled SD: 0.99\",\"Covariance: -0.25 <br />Pooled SD: 0.49\",\"Covariance: -0.74 <br />Pooled SD: 2.13\",\"Covariance: -0.33 <br />Pooled SD: 1.5\",\"Covariance: -0.46 <br />Pooled SD: 0.99\",\"Covariance: 1.62 <br />Pooled SD: 3.64\",\"Covariance: 0.16 <br />Pooled SD: 0.86\",\"Covariance: -0.55 <br />Pooled SD: 0.93\",\"Covariance: -0.13 <br />Pooled SD: 0.76\",\"Covariance: -0.14 <br />Pooled SD: 1.48\",\"Covariance: -0.21 <br />Pooled SD: 1.22\",\"Covariance: -0.66 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 1.5\",\"Covariance: 1.08 <br />Pooled SD: 2.4\",\"Covariance: 0.59 <br />Pooled SD: 0.96\",\"Covariance: -0.02 <br />Pooled SD: 2.59\",\"Covariance: -1.14 <br />Pooled SD: 2.22\",\"Covariance: 0.54 <br />Pooled SD: 1.16\",\"Covariance: -0.83 <br />Pooled SD: 2.07\",\"Covariance: -0.3 <br />Pooled SD: 1.19\",\"Covariance: 0.54 <br />Pooled SD: 0.88\",\"Covariance: 0.73 <br />Pooled SD: 1.95\",\"Covariance: 0.41 <br />Pooled SD: 0.61\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.14 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 0.51\",\"Covariance: -0.33 <br />Pooled SD: 1.8\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: 0.35 <br />Pooled SD: 1.82\",\"Covariance: -0.41 <br />Pooled SD: 1.31\",\"Covariance: -0.11 <br />Pooled SD: 1.61\",\"Covariance: 0.32 <br />Pooled SD: 0.65\",\"Covariance: -0.77 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 0.44\",\"Covariance: 2.65 <br />Pooled SD: 2.86\",\"Covariance: -0.38 <br />Pooled SD: 0.87\",\"Covariance: 0.15 <br />Pooled SD: 1.06\",\"Covariance: -0.49 <br />Pooled SD: 0.85\",\"Covariance: 0.31 <br />Pooled SD: 1.15\",\"Covariance: 0.18 <br />Pooled SD: 0.81\",\"Covariance: 0.18 <br />Pooled SD: 0.44\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: 0.16 <br />Pooled SD: 2.39\",\"Covariance: 0.23 <br />Pooled SD: 0.89\",\"Covariance: -0.21 <br />Pooled SD: 0.7\",\"Covariance: 0.54 <br />Pooled SD: 0.84\",\"Covariance: -0.37 <br />Pooled SD: 1.57\",\"Covariance: 0.71 <br />Pooled SD: 1\",\"Covariance: 0 <br />Pooled SD: 0.71\",\"Covariance: 0.76 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.28 <br />Pooled SD: 0.8\",\"Covariance: -0.15 <br />Pooled SD: 1.12\",\"Covariance: 0.33 <br />Pooled SD: 1.23\",\"Covariance: -0.49 <br />Pooled SD: 1.81\",\"Covariance: -0.25 <br />Pooled SD: 1.18\",\"Covariance: -0.12 <br />Pooled SD: 0.39\",\"Covariance: -0.66 <br />Pooled SD: 0.88\",\"Covariance: -0.7 <br />Pooled SD: 1.43\",\"Covariance: -0.56 <br />Pooled SD: 0.67\",\"Covariance: -0.12 <br />Pooled SD: 1.33\",\"Covariance: -0.12 <br />Pooled SD: 0.35\",\"Covariance: 0.06 <br />Pooled SD: 0.88\",\"Covariance: 0.78 <br />Pooled SD: 1.73\",\"Covariance: -0.35 <br />Pooled SD: 0.85\",\"Covariance: 0.34 <br />Pooled SD: 1.44\",\"Covariance: 0.19 <br />Pooled SD: 0.97\",\"Covariance: 1 <br />Pooled SD: 1.15\",\"Covariance: -0.17 <br />Pooled SD: 0.47\",\"Covariance: 0.67 <br />Pooled SD: 1.16\",\"Covariance: -1.53 <br />Pooled SD: 1.81\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.8 <br />Pooled SD: 1.44\",\"Covariance: 0.34 <br />Pooled SD: 0.95\",\"Covariance: -1.59 <br />Pooled SD: 2.18\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 0.77\",\"Covariance: 0.42 <br />Pooled SD: 2.03\",\"Covariance: -0.86 <br />Pooled SD: 1.35\",\"Covariance: -0.78 <br />Pooled SD: 1.44\",\"Covariance: -0.18 <br />Pooled SD: 1.18\",\"Covariance: 0.02 <br />Pooled SD: 0.62\",\"Covariance: -0.42 <br />Pooled SD: 1.24\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: -0.11 <br />Pooled SD: 0.24\",\"Covariance: -0.6 <br />Pooled SD: 1.3\",\"Covariance: 0.73 <br />Pooled SD: 1.02\",\"Covariance: 0.48 <br />Pooled SD: 0.94\",\"Covariance: 0.36 <br />Pooled SD: 0.57\",\"Covariance: -0.47 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: 0.28 <br />Pooled SD: 1.99\",\"Covariance: -0.72 <br />Pooled SD: 0.99\",\"Covariance: 0.25 <br />Pooled SD: 1.21\",\"Covariance: -0.66 <br />Pooled SD: 1.24\",\"Covariance: 0.43 <br />Pooled SD: 1.39\",\"Covariance: 0.16 <br />Pooled SD: 1.84\",\"Covariance: -0.31 <br />Pooled SD: 0.8\",\"Covariance: 0.68 <br />Pooled SD: 1.14\",\"Covariance: -0.41 <br />Pooled SD: 1.69\",\"Covariance: 0.77 <br />Pooled SD: 1.5\",\"Covariance: -0.05 <br />Pooled SD: 1.17\",\"Covariance: -0.46 <br />Pooled SD: 0.92\",\"Covariance: 0.61 <br />Pooled SD: 2.33\",\"Covariance: 0.05 <br />Pooled SD: 0.48\",\"Covariance: -0.67 <br />Pooled SD: 1.15\",\"Covariance: -2.07 <br />Pooled SD: 3.33\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: -0.85 <br />Pooled SD: 1.24\",\"Covariance: -0.03 <br />Pooled SD: 2.15\",\"Covariance: 0.76 <br />Pooled SD: 0.77\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: 0.79 <br />Pooled SD: 1.41\",\"Covariance: -0.74 <br />Pooled SD: 2.43\",\"Covariance: -0.17 <br />Pooled SD: 1.23\",\"Covariance: -0.1 <br />Pooled SD: 1.21\",\"Covariance: -0.83 <br />Pooled SD: 2.01\",\"Covariance: -0.22 <br />Pooled SD: 2.12\",\"Covariance: 0.78 <br />Pooled SD: 1.33\",\"Covariance: 0.97 <br />Pooled SD: 1.22\",\"Covariance: -0.1 <br />Pooled SD: 0.8\",\"Covariance: 0 <br />Pooled SD: 1.45\",\"Covariance: -0.16 <br />Pooled SD: 0.57\",\"Covariance: 0.93 <br />Pooled SD: 1.36\",\"Covariance: 0.83 <br />Pooled SD: 1.56\",\"Covariance: 0.77 <br />Pooled SD: 1.42\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.41 <br />Pooled SD: 1.12\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.13 <br />Pooled SD: 0.67\",\"Covariance: 0.07 <br />Pooled SD: 1.22\",\"Covariance: 0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.55 <br />Pooled SD: 0.66\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.12\",\"Covariance: 0.48 <br />Pooled SD: 1.47\",\"Covariance: 0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.4 <br />Pooled SD: 2.57\",\"Covariance: 0.37 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 0.98\",\"Covariance: -0.74 <br />Pooled SD: 1.46\",\"Covariance: -1.09 <br />Pooled SD: 1.45\",\"Covariance: 0.19 <br />Pooled SD: 1.5\",\"Covariance: -0.37 <br />Pooled SD: 1.45\",\"Covariance: 0.3 <br />Pooled SD: 0.83\",\"Covariance: -0.08 <br />Pooled SD: 1.4\",\"Covariance: -0.26 <br />Pooled SD: 0.68\",\"Covariance: 0.27 <br />Pooled SD: 1.78\",\"Covariance: 0.13 <br />Pooled SD: 0.24\",\"Covariance: 0.03 <br />Pooled SD: 0.42\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: 0.04 <br />Pooled SD: 1.23\",\"Covariance: 0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.35 <br />Pooled SD: 0.84\",\"Covariance: -0.71 <br />Pooled SD: 1.11\",\"Covariance: 0.25 <br />Pooled SD: 1.43\",\"Covariance: -0.16 <br />Pooled SD: 0.73\",\"Covariance: -0.66 <br />Pooled SD: 1.15\",\"Covariance: -0.08 <br />Pooled SD: 1.18\",\"Covariance: -0.74 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 1.22\",\"Covariance: 0.15 <br />Pooled SD: 2.2\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -0.18 <br />Pooled SD: 1.46\",\"Covariance: -0.45 <br />Pooled SD: 0.89\",\"Covariance: -0.51 <br />Pooled SD: 1.04\",\"Covariance: -0.32 <br />Pooled SD: 0.52\",\"Covariance: -0.63 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 2.17\",\"Covariance: -0.33 <br />Pooled SD: 1.79\",\"Covariance: 0.37 <br />Pooled SD: 1.1\",\"Covariance: 1.46 <br />Pooled SD: 1.87\",\"Covariance: 0.48 <br />Pooled SD: 2.23\",\"Covariance: -0.35 <br />Pooled SD: 1.23\",\"Covariance: 0.54 <br />Pooled SD: 1.36\",\"Covariance: -0.7 <br />Pooled SD: 1.06\",\"Covariance: 0.8 <br />Pooled SD: 1.36\",\"Covariance: -0.06 <br />Pooled SD: 1.03\",\"Covariance: -0.5 <br />Pooled SD: 0.81\",\"Covariance: 0.43 <br />Pooled SD: 0.86\",\"Covariance: -0.2 <br />Pooled SD: 1.25\",\"Covariance: 0 <br />Pooled SD: 0.86\",\"Covariance: 1.4 <br />Pooled SD: 1.59\",\"Covariance: -0.53 <br />Pooled SD: 0.99\",\"Covariance: 0.72 <br />Pooled SD: 1.23\",\"Covariance: -0.54 <br />Pooled SD: 1.35\",\"Covariance: -0.54 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.88\",\"Covariance: -0.19 <br />Pooled SD: 0.48\",\"Covariance: 1.18 <br />Pooled SD: 1.38\",\"Covariance: 0.32 <br />Pooled SD: 2.23\",\"Covariance: -0.87 <br />Pooled SD: 1.92\",\"Covariance: 0.52 <br />Pooled SD: 1.02\",\"Covariance: -0.02 <br />Pooled SD: 0.56\",\"Covariance: 0.46 <br />Pooled SD: 0.94\",\"Covariance: -0.43 <br />Pooled SD: 1.98\",\"Covariance: -0.08 <br />Pooled SD: 0.22\",\"Covariance: -1 <br />Pooled SD: 1.19\",\"Covariance: 0.87 <br />Pooled SD: 2.22\",\"Covariance: -0.29 <br />Pooled SD: 2.18\",\"Covariance: 0.57 <br />Pooled SD: 0.91\",\"Covariance: -0.6 <br />Pooled SD: 2.06\",\"Covariance: -0.61 <br />Pooled SD: 1.92\",\"Covariance: 0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.49 <br />Pooled SD: 0.87\",\"Covariance: -0.06 <br />Pooled SD: 1.73\",\"Covariance: -0.85 <br />Pooled SD: 1.62\",\"Covariance: -0.18 <br />Pooled SD: 0.44\",\"Covariance: 0.2 <br />Pooled SD: 1.51\",\"Covariance: 0.04 <br />Pooled SD: 0.68\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: 0.64 <br />Pooled SD: 1.44\",\"Covariance: -1.17 <br />Pooled SD: 1.6\",\"Covariance: -0.08 <br />Pooled SD: 0.69\",\"Covariance: 0.25 <br />Pooled SD: 1.44\",\"Covariance: -0.68 <br />Pooled SD: 0.77\",\"Covariance: 0.1 <br />Pooled SD: 1.38\",\"Covariance: -0.44 <br />Pooled SD: 0.78\",\"Covariance: -1.41 <br />Pooled SD: 2.79\",\"Covariance: 0.65 <br />Pooled SD: 1.62\",\"Covariance: -0.76 <br />Pooled SD: 2.06\",\"Covariance: 0.84 <br />Pooled SD: 1.79\",\"Covariance: -0.22 <br />Pooled SD: 1.16\",\"Covariance: 1.48 <br />Pooled SD: 1.89\",\"Covariance: -0.1 <br />Pooled SD: 1.47\",\"Covariance: 0.58 <br />Pooled SD: 2.82\",\"Covariance: -0.9 <br />Pooled SD: 2.01\",\"Covariance: 0.2 <br />Pooled SD: 2.26\",\"Covariance: -1.21 <br />Pooled SD: 2\",\"Covariance: 0.35 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.08\",\"Covariance: 0.37 <br />Pooled SD: 0.93\",\"Covariance: 0.13 <br />Pooled SD: 2.85\",\"Covariance: 0.28 <br />Pooled SD: 0.73\",\"Covariance: 0.49 <br />Pooled SD: 3.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -0.5 <br />Pooled SD: 2.23\",\"Covariance: -0.17 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 0.88\",\"Covariance: 0.22 <br />Pooled SD: 0.79\",\"Covariance: -0.77 <br />Pooled SD: 2.21\",\"Covariance: -0.13 <br />Pooled SD: 1.34\",\"Covariance: 0.11 <br />Pooled SD: 1.66\",\"Covariance: -0.06 <br />Pooled SD: 2.59\",\"Covariance: 0.4 <br />Pooled SD: 0.8\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.57 <br />Pooled SD: 1.72\",\"Covariance: 1.64 <br />Pooled SD: 1.89\",\"Covariance: -0.21 <br />Pooled SD: 1.05\",\"Covariance: 0.18 <br />Pooled SD: 0.99\",\"Covariance: 0.1 <br />Pooled SD: 1.52\",\"Covariance: -0.1 <br />Pooled SD: 0.65\",\"Covariance: 0.1 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 2.17\",\"Covariance: 0.49 <br />Pooled SD: 0.79\",\"Covariance: 0 <br />Pooled SD: 1.09\",\"Covariance: -1.68 <br />Pooled SD: 2.96\",\"Covariance: -0.68 <br />Pooled SD: 1.22\",\"Covariance: -0.04 <br />Pooled SD: 1.7\",\"Covariance: 0.02 <br />Pooled SD: 1.03\",\"Covariance: -0.22 <br />Pooled SD: 0.31\",\"Covariance: 0.58 <br />Pooled SD: 1.41\",\"Covariance: 0.29 <br />Pooled SD: 1.05\",\"Covariance: -1.43 <br />Pooled SD: 1.63\",\"Covariance: -0.35 <br />Pooled SD: 1.94\",\"Covariance: -0.55 <br />Pooled SD: 0.7\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: 0.54 <br />Pooled SD: 0.83\",\"Covariance: -0.22 <br />Pooled SD: 2.03\",\"Covariance: -0.1 <br />Pooled SD: 1.37\",\"Covariance: 1.11 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 2.46\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: -0.6 <br />Pooled SD: 1.09\",\"Covariance: -0.1 <br />Pooled SD: 0.85\",\"Covariance: 0.92 <br />Pooled SD: 1.53\",\"Covariance: -0.15 <br />Pooled SD: 0.57\",\"Covariance: -0.32 <br />Pooled SD: 0.75\",\"Covariance: 0.81 <br />Pooled SD: 1.57\",\"Covariance: 0.45 <br />Pooled SD: 0.93\",\"Covariance: 0.51 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.65\",\"Covariance: 0.41 <br />Pooled SD: 0.89\",\"Covariance: 0.31 <br />Pooled SD: 1.32\",\"Covariance: -0.04 <br />Pooled SD: 1.33\",\"Covariance: 0.05 <br />Pooled SD: 0.25\",\"Covariance: -0.05 <br />Pooled SD: 2.09\",\"Covariance: -0.32 <br />Pooled SD: 1.43\",\"Covariance: -0.71 <br />Pooled SD: 2.1\",\"Covariance: -0.04 <br />Pooled SD: 0.97\",\"Covariance: -0.92 <br />Pooled SD: 1.57\",\"Covariance: -0.52 <br />Pooled SD: 1.03\",\"Covariance: 0.22 <br />Pooled SD: 0.91\",\"Covariance: 0.48 <br />Pooled SD: 1.16\",\"Covariance: -0.32 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: -1.11 <br />Pooled SD: 2.18\",\"Covariance: -0.31 <br />Pooled SD: 1.24\",\"Covariance: 0.71 <br />Pooled SD: 0.95\",\"Covariance: -0.65 <br />Pooled SD: 1.18\",\"Covariance: 0.06 <br />Pooled SD: 1.14\",\"Covariance: 0.67 <br />Pooled SD: 1.52\",\"Covariance: 0.89 <br />Pooled SD: 1\",\"Covariance: 0.4 <br />Pooled SD: 0.67\",\"Covariance: 0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.31 <br />Pooled SD: 1.34\",\"Covariance: -0.32 <br />Pooled SD: 1.42\",\"Covariance: -0.3 <br />Pooled SD: 1.52\",\"Covariance: 0.76 <br />Pooled SD: 1.35\",\"Covariance: 0.34 <br />Pooled SD: 1.87\",\"Covariance: -0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.77 <br />Pooled SD: 0.87\",\"Covariance: -0.52 <br />Pooled SD: 1.73\",\"Covariance: -1.27 <br />Pooled SD: 2.37\",\"Covariance: 1.23 <br />Pooled SD: 1.65\",\"Covariance: 1.09 <br />Pooled SD: 2.1\",\"Covariance: 0.53 <br />Pooled SD: 1.86\",\"Covariance: 0.64 <br />Pooled SD: 1.71\",\"Covariance: 0.06 <br />Pooled SD: 1.09\",\"Covariance: 0.04 <br />Pooled SD: 1.98\",\"Covariance: 0.33 <br />Pooled SD: 1.25\",\"Covariance: -0.21 <br />Pooled SD: 0.55\",\"Covariance: 0.94 <br />Pooled SD: 1.06\",\"Covariance: -0.62 <br />Pooled SD: 1.53\",\"Covariance: 0.39 <br />Pooled SD: 0.9\",\"Covariance: 0.16 <br />Pooled SD: 0.53\",\"Covariance: -0.1 <br />Pooled SD: 2\",\"Covariance: 0.54 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.05\",\"Covariance: 0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.44 <br />Pooled SD: 1.71\",\"Covariance: -0.05 <br />Pooled SD: 0.53\",\"Covariance: 0 <br />Pooled SD: 1.56\",\"Covariance: -0.64 <br />Pooled SD: 0.83\",\"Covariance: 0.33 <br />Pooled SD: 0.76\",\"Covariance: 0.79 <br />Pooled SD: 1.12\",\"Covariance: 0.43 <br />Pooled SD: 0.82\",\"Covariance: 0.14 <br />Pooled SD: 2.04\",\"Covariance: 0.24 <br />Pooled SD: 1.53\",\"Covariance: 0.31 <br />Pooled SD: 1.35\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.17 <br />Pooled SD: 1.41\",\"Covariance: 1.01 <br />Pooled SD: 1.23\",\"Covariance: -1.18 <br />Pooled SD: 2.03\"],\"frame\":\"2800\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"2900\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7,0.17,-1.1,0.54,0.96,0.46,0.49,0.1,0.2,-0.03,0.45,0.13,0.05,-0.65,-0.3,0.66,-0.46,0.12,-0.16,0.35,-0.77,0.2,-0.57,0.76,0.18,0.11,0.02,-0.28,-0.62,-0.65,-0.12,0.32,-0.48,0.38,0.91,-0.69,-0.6,0.09,1.15,-0.57,0.05,0.3,-0.07,0.28,-0.01,-0.03,0.95,0.83,-0.97,0.04,-0.58,-0.96,0.23,0.81,-0.11,-0.54,0.58,-0.39,0.78,0.4,-0.32,-0.38,-0.57,-0.11,-0.08,-0.08,-0.57,0.33,-0.33,0.27,-1.12,1.37,-1.64,-2.13,-0.14,-1.43,0.06,0.13,0.03,0.08,0.22,-0.4,0.12,0.29,-0.93,0.81,0.46,-0.18,0.39,-1.82,0.52,-0.45,0.1,-0.65,-0.2,-0.42,0.25,-0.22,0.12,-0.28,1.16,0.5,0.28,-1.01,0.38,1.33,0.61,0.03,0.75,0.57,-0.1,0.18,0.41,0.54,-0.03,0.61,0.05,0.34,-0.18,0.38,-0.38,0.41,-0.39,-0.26,1.37,-0.34,0.17,0.49,-0.11,-0.15,0.87,0.13,-0.2,0.04,-0.09,0.58,0.82,-0.05,0.35,0.12,-0.02,0.11,0.11,0.2,-0.16,0.06,-0.39,0.58,-0.75,-0.08,0.22,-0.1,-0.26,-0.94,-0.19,0.31,-0.17,1.21,-0.88,0.22,-1.27,0.75,-0.05,0.96,-0.39,0.52,-0.15,0.08,-0.33,0.26,-0.16,-0.86,0.16,-0.55,0.51,0.08,0.07,1.51,0.48,-0.22,0.91,0.63,1.31,0.97,-0.05,-0.21,0.55,0.57,0.36,-0.23,0,-0.28,-0.4,0.34,-0.23,0.47,0.66,0.63,0.1,-0.07,0.1,0.23,-0.25,0.45,0.18,-0.46,-0.35,-0.38,0.53,-0.18,0.01,0.01,0.57,-0.44,0.13,0.78,-0.15,0.26,0.17,1.1,-0.09,-0.52,-0.12,0.38,0.64,0.18,-0.65,0.07,-0.66,0.12,1.45,0.5,0.06,0.04,0.7,0.66,0.08,-1.54,0.45,0.16,0.01,-0.06,-0.27,0.3,0,-0.44,-0.89,0.64,1.1,0.5,0.32,-0.48,-0.28,0.44,0,-0.02,0.13,-0.45,-0.02,-0.82,-0.26,0.7,0.37,0.2,1.99,-0.07,0.29,1.79,-1.05,0.39,0.7,0.07,-0.39,-1.65,0.34,0.23,-0,-0.86,0.27,-1.43,0.38,0.44,0.45,1.33,0.16,-0.26,1.01,0.12,-0.56,-0.47,-0.18,-0.21,-0.62,-0.8,-0.09,0.27,-0.48,0.06,-0.24,0.67,-0.19,-0.8,0.85,-0.19,-0.86,0.79,-0.76,0.22,0.1,-0.74,1,0.3,-0.98,-0.44,-0.19,-0.86,-0.13,0.17,-0.04,0.37,0.23,0.95,-0.88,0.18,0.19,-0.12,0.05,-0.27,0.43,1.16,0.19,0.51,0.05,0.56,-0.08,-3.39,-0.44,-0.93,0.07,-0.42,0.99,0.33,-0.31,0.11,0.33,0.39,-0.85,-0.53,-0.75,1.18,-1.21,0.83,-0.25,-0.74,-0.33,-0.46,1.62,0.16,-0.55,-0.13,-0.14,-0.21,-0.66,0.04,1.08,0.59,-0.02,-1.14,0.54,-0.83,-0.3,0.54,0.73,0.41,0.07,-0.14,0.16,-0.33,-0.32,0.35,-0.41,-0.11,0.32,-0.77,-0.44,-0.08,2.65,-0.38,0.15,-0.49,0.31,0.18,0.18,-0.01,0.16,0.23,-0.21,0.54,-0.37,0.71,-0,0.76,0.07,-0.28,-0.15,0.33,-0.49,-0.25,-0.12,-0.66,-0.7,-0.56,-0.12,-0.12,0.06,0.78,-0.35,0.34,0.19,1,-0.17,0.67,-1.53,-0.54,0.8,0.34,-1.59,0.52,-0.1,0.42,-0.86,-0.78,-0.18,0.02,-0.42,-0.01,-0.11,-0.6,0.73,0.48,0.36,-0.47,-0.25,0.28,-0.72,0.25,-0.66,0.43,0.16,-0.31,0.68,-0.41,0.77,-0.05,-0.46,0.61,0.05,-0.67,-2.07,-0.82,-0.85,-0.03,0.76,-0.28,0.79,-0.74,-0.17,-0.1,-0.83,-0.22,0.78,0.97,-0.1,0,-0.16,0.93,0.83,0.77,-0.12,-0.41,0.13,-0.13,0.07,0.34,0.02,-0.55,-0.54,0.28,-0.05,0.48,0.42,0.4,0.37,0.14,-0.74,-1.09,0.19,-0.37,0.3,-0.08,-0.26,0.27,0.13,0.03,0.79,0.04,0.21,-0.35,-0.71,0.25,-0.16,-0.66,-0.08,-0.74,0.13,0.15,0.09,-0.18,-0.45,-0.51,-0.32,-0.63,0.16,-0.33,0.37,1.46,0.48,-0.35,0.54,-0.7,0.8,-0.06,-0.5,0.43,-0.2,0,1.4,-0.53,0.72,-0.54,-0.54,0.52,-0.19,1.18,0.32,-0.87,0.52,-0.02,0.46,-0.43,-0.08,-1,0.87,-0.29,0.57,-0.6,-0.61,0.09,0.49,-0.06,-0.85,-0.18,0.2,0.04,0,0.64,-1.17,-0.08,0.25,-0.68,0.1,-0.44,-1.41,0.65,-0.76,0.84,-0.22,1.48,-0.1,0.58,-0.9,0.2,-1.21,0.35,-0.48,0.37,0.13,0.28,0.49,-0.39,-0.5,-0.17,0.36,0.22,-0.77,-0.13,0.11,-0.06,0.4,0.99,0.57,1.64,-0.21,0.18,0.1,-0.1,0.1,-0.28,0.49,0,-1.68,-0.68,-0.04,0.02,-0.22,0.58,0.29,-1.43,-0.35,-0.55,-0.2,0.54,-0.22,-0.1,1.11,-0.01,-0.43,-0.6,-0.1,0.92,-0.15,-0.32,0.81,0.45,0.51,0.33,0.41,0.31,-0.04,0.05,-0.05,-0.32,-0.71,-0.04,-0.92,-0.52,0.22,0.48,-0.32,-0.46,-1.11,-0.31,0.71,-0.65,0.06,0.67,0.89,0.4,0.27,0.31,-0.32,-0.3,0.76,0.34,-0.02,-0.77,-0.52,-1.27,1.23,1.09,0.53,0.64,0.06,0.04,0.33,-0.21,0.94,-0.62,0.39,0.16,-0.1,0.54,-0.15,0.27,-0.16,-0.21,0.03,0.44,-0.05,-0,-0.64,0.33,0.79,0.43,0.14,0.24,0.31,-0.23,0.17,1.01,-1.18,0.48,-0.02,0.2,0.55,0.35,0.21,0.38,0.17,0.04,-0.08,-0.06,0.25,0.78,0.09,-0.35,-0.2,0.26,0.49,-0.31,-0.18,0.06,-0.66,0.36,-0.61,-0.29,-0.67,0.38,-0.17,0.31,0.5,0.25,-0,-0.54,0.56,0.34,0.7,0.04,0.31,0.51,0.16,-0.71,0.05,-0.04,-0.07,-0.17,0.42,0.43,-0.07,-0.53,-0.17,-0.12,0.04,-0.22,1.54,0.58,0.34,-0.35,0.51,-0.82,-0.87,0.29,-1.15,0.93,0.18,0.61,-0.03,0.51,-0.07,1.18,-0.05,0.08,-0.67,0.04,1.35,-0.71,-0.24,-0.54,-0.26,-0.38,-0.35,-0.64,0.56,0.06,0.48,1.27,0.94,-0.08,-0.17,0.64,-0.5,-0.61,0.24,-0.36,0.2,0.29,0.32,0.46,0.4,-0.81,-1.07],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14,1.39,2.11,0.64,1.87,1.81,2.14,0.73,1.17,0.99,0.98,1.73,0.65,1.81,0.77,1.01,1.86,1.58,0.7,0.98,1.55,0.98,1.03,1.13,0.92,0.96,1.17,1.26,1.33,1.35,0.82,2.11,0.87,1.69,1.42,0.97,2.99,2.68,2.32,1.16,0.89,1.21,0.46,1.48,1.39,0.39,2.16,1.26,1.14,0.7,2.74,1.49,0.66,1.46,0.56,0.59,0.82,1.39,1.14,1.33,0.95,0.62,1.05,1.85,1.05,1.51,0.98,1.42,1.14,1.9,1.43,1.65,2.42,2.59,0.94,2.3,0.75,0.99,1.16,1.12,0.75,0.55,0.86,0.93,1.63,1.08,0.67,0.86,0.63,3.11,1.71,1.08,1.13,1.66,1.17,0.74,1.87,1.19,0.4,1.56,1.48,0.71,0.9,1.56,0.74,1.7,2.04,0.94,1.42,1.44,0.49,0.41,0.95,1.05,0.9,1.02,0.73,0.92,2.43,1.37,1.33,1.64,1.02,0.62,1.88,1.68,2.41,1.6,1.51,2.26,2.39,0.25,0.65,0.48,1.5,1.71,1.63,0.75,1.08,0.77,1.06,0.69,0.93,1.41,0.85,1.86,1.11,1.12,1.12,1.71,0.35,1.05,1.53,1.57,0.4,0.9,0.96,2.18,1.88,0.58,2.39,2.15,1.81,1.59,1.71,1.16,0.86,0.95,0.86,1.31,1.03,1.8,1.17,1.9,1.28,0.36,0.98,1.56,1.18,2.7,1.98,1.3,1.86,2.1,0.6,0.89,1.12,3.05,0.97,0.85,0.38,1.18,0.72,0.86,1.07,1.64,2.35,1.4,1.41,0.51,0.99,1.61,2.32,0.6,0.72,0.8,1.47,0.85,0.74,0.4,0.62,1.42,0.85,0.68,0.72,1.06,0.65,0.67,1.68,1.67,1.43,0.82,1.01,1.24,1.69,0.69,1.96,0.81,0.91,1.76,1.62,0.72,1.04,1.06,1.99,2.49,0.69,2.17,1.46,0.63,0.48,0.49,1.21,1.57,0.82,0.53,2.58,0.7,1.49,1.53,0.69,0.49,0.38,1.06,0.61,0.44,1.73,1.25,0.5,1.19,2.28,0.81,1.59,0.41,2.39,0.23,0.57,2.95,1.48,1.6,1,1.45,0.78,2.34,0.87,1.27,1.66,1.4,0.77,1.62,1.2,0.65,0.85,2.39,1.21,1.18,1.18,0.93,0.9,0.9,0.69,0.77,1.15,1.31,0.49,1.36,1.13,0.93,0.51,1.15,0.93,1.25,1.34,1.94,2.03,1.38,1.97,0.58,0.37,1.13,1.74,1.63,1.54,0.73,0.8,1.82,0.74,1.01,0.46,0.56,0.69,1.84,1.32,0.59,0.91,1.27,0.87,0.73,2.73,1.7,0.58,1.72,0.64,1.14,2.25,3.65,1.08,1.64,1.46,1.38,1.1,0.98,2.19,2.18,1.83,0.99,1.7,2.21,0.85,1.55,1.61,0.99,0.49,2.13,1.5,0.99,3.64,0.86,0.93,0.76,1.48,1.22,1.37,1.5,2.4,0.96,2.59,2.22,1.16,2.07,1.19,0.88,1.95,0.61,1.21,0.78,0.51,1.8,1.35,1.82,1.31,1.61,0.65,1.15,1.85,0.44,2.86,0.87,1.06,0.85,1.15,0.81,0.44,0.58,2.39,0.89,0.7,0.84,1.57,1,0.71,1.64,1.21,0.8,1.12,1.23,1.81,1.18,0.39,0.88,1.43,0.67,1.33,0.35,0.88,1.73,0.85,1.44,0.97,1.15,0.47,1.16,1.81,1.32,1.44,0.95,2.18,1.13,0.77,2.03,1.35,1.44,1.18,0.62,1.24,0.58,0.24,1.3,1.02,0.94,0.57,1.22,1.75,1.99,0.99,1.21,1.24,1.39,1.84,0.8,1.14,1.69,1.5,1.17,0.92,2.33,0.48,1.15,3.33,1.12,1.24,2.15,0.77,0.95,1.41,2.43,1.23,1.21,2.01,2.12,1.33,1.22,0.8,1.45,0.57,1.36,1.56,1.42,1.29,1.12,0.91,0.67,1.22,0.69,0.67,0.66,1.02,0.4,1.12,1.47,1.65,2.57,1.07,0.98,1.46,1.45,1.5,1.45,0.83,1.4,0.68,1.78,0.24,0.42,2.15,1.23,1.33,0.84,1.11,1.43,0.73,1.15,1.18,2.21,1.22,2.2,0.48,1.46,0.89,1.04,0.52,0.78,2.17,1.79,1.1,1.87,2.23,1.23,1.36,1.06,1.36,1.03,0.81,0.86,1.25,0.86,1.59,0.99,1.23,1.35,1.45,0.88,0.48,1.38,2.23,1.92,1.02,0.56,0.94,1.98,0.22,1.19,2.22,2.18,0.91,2.06,1.92,0.52,0.87,1.73,1.62,0.44,1.51,0.68,0.82,1.44,1.6,0.69,1.44,0.77,1.38,0.78,2.79,1.62,2.06,1.79,1.16,1.89,1.47,2.82,2.01,2.26,2,1.36,1.08,0.93,2.85,0.73,3.45,0.78,2.23,1.15,0.88,0.79,2.21,1.34,1.66,2.59,0.8,1.1,1.72,1.89,1.05,0.99,1.52,0.65,1.49,2.17,0.79,1.09,2.96,1.22,1.7,1.03,0.31,1.41,1.05,1.63,1.94,0.7,1.17,0.83,2.03,1.37,1.63,2.46,1.55,1.09,0.85,1.53,0.57,0.75,1.57,0.93,1.06,1.65,0.89,1.32,1.33,0.25,2.09,1.43,2.1,0.97,1.57,1.03,0.91,1.16,1.52,1.12,2.18,1.24,0.95,1.18,1.14,1.52,1,0.67,1.21,1.34,1.42,1.52,1.35,1.87,1.66,0.87,1.73,2.37,1.65,2.1,1.86,1.71,1.09,1.98,1.25,0.55,1.06,1.53,0.9,0.53,2,1.08,0.58,0.77,1.41,1.05,0.55,1.71,0.53,1.56,0.83,0.76,1.12,0.82,2.04,1.53,1.35,0.57,1.41,1.23,2.03,1.97,0.77,1.72,1.35,0.82,1.5,0.67,0.59,1.19,0.71,1.91,0.61,2.4,1.56,1.02,0.84,1.07,2.78,1.45,1.21,1.4,0.77,1.56,0.74,1.29,1.44,0.95,0.89,0.78,2.26,0.51,0.64,1.29,1.36,1.04,2.71,0.26,0.84,1.28,0.97,1.17,0.52,1.41,0.57,1.12,1.32,0.95,0.71,0.73,0.95,1.98,2.62,0.44,2.05,1.27,0.89,0.86,0.56,1.75,1.12,1.05,1.64,1.2,1.55,1.42,1.27,0.71,1.07,1.43,1.19,1.46,1.72,1.1,2.4,1.53,0.79,1.34,0.41,1.29,0.97,1.74,1.59,2.18,2.01,3.4,1.48,0.33,0.98,1.26,0.89,0.67,2.08,1.4,1.09,0.63,1.88,1.22,1.06,1.04,1.2],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38,0.15,0.53,0.07,0.37,0.03,0.16,-0.41,-0.64,0.18,-0.22,-0.57,-0.07,-0.34,0.11,0.07,0.18,-0.13,-0.51,-0.49,-0.63,-0.8,0.07,-0.18,0.33,0.78,0.21,-0.28,0.4,-0.66,0.59,-0.06,-0.61,0.5,-0.16,0,0.88,-0.53,0.59,-0.4,-0.37,0.6,-0.4,0.85,0.14,-0.45,0.51,-0.03,0.49,-0.22,-0.37,-0.84,0.39,-0.14,0.63,-0.29,-0.31,0.18,0.56,-0.04,-0.53,-0.41,0.13,0.06,0,0.44,-0.73,-0.12,0.17,-0.88,0.07,-0.56,-0.5,0.4,-0.37,0.47,-0.19,0.78,-0.07,0.2,-0.45,0.09,-0.6,0.26,-0.44,0.4,0.05,0.39,0.14,-0.49,-0.22,-0.14,0.41,0.28,-0.35,-0.1,0.07,-0.02,0.5,0.9,0.33,0.87,-0.2,0.19,0.07,-0.15,0.06,-0.13,0.62,0,-0.57,-0.56,-0.02,0.02,-0.7,0.41,0.28,-0.88,-0.18,-0.78,-0.17,0.66,-0.11,-0.07,0.68,-0,-0.27,-0.55,-0.12,0.6,-0.26,-0.42,0.51,0.48,0.48,0.2,0.46,0.24,-0.03,0.2,-0.03,-0.23,-0.34,-0.04,-0.59,-0.5,0.24,0.42,-0.21,-0.41,-0.51,-0.25,0.75,-0.55,0.05,0.44,0.89,0.6,0.23,0.23,-0.22,-0.19,0.56,0.18,-0.01,-0.88,-0.3,-0.53,0.75,0.52,0.28,0.38,0.05,0.02,0.26,-0.39,0.88,-0.41,0.43,0.31,-0.05,0.5,-0.26,0.36,-0.11,-0.2,0.05,0.26,-0.1,-0,-0.78,0.44,0.7,0.52,0.07,0.16,0.23,-0.4,0.12,0.83,-0.58,0.24,-0.02,0.12,0.41,0.43,0.14,0.56,0.28,0.03,-0.11,-0.03,0.41,0.32,0.06,-0.34,-0.24,0.24,0.18,-0.22,-0.15,0.05,-0.86,0.23,-0.83,-0.22,-0.46,0.4,-0.19,0.4,0.22,0.49,-0,-0.42,0.41,0.33,0.26,0.17,0.37,0.4,0.16,-0.61,0.1,-0.03,-0.13,-0.15,0.32,0.46,-0.09,-0.72,-0.18,-0.06,0.02,-0.51,0.75,0.45,0.38,-0.4,0.9,-0.47,-0.78,0.28,-0.7,0.77,0.11,0.43,-0.02,0.72,-0.07,0.82,-0.05,0.06,-0.39,0.03,0.57,-0.46,-0.3,-0.4,-0.63,-0.3,-0.36,-0.37,0.35,0.03,0.24,0.37,0.64,-0.24,-0.18,0.51,-0.56,-0.9,0.12,-0.26,0.18,0.47,0.17,0.38,0.38,-0.78,-0.89],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38,0.15,0.53,0.07,0.37,0.03,0.16,-0.41,-0.64,0.18,-0.22,-0.57,-0.07,-0.34,0.11,0.07,0.18,-0.13,-0.51,-0.49,-0.63,-0.8,0.07,-0.18,0.33,0.78,0.21,-0.28,0.4,-0.66,0.59,-0.06,-0.61,0.5,-0.16,0,0.88,-0.53,0.59,-0.4,-0.37,0.6,-0.4,0.85,0.14,-0.45,0.51,-0.03,0.49,-0.22,-0.37,-0.84,0.39,-0.14,0.63,-0.29,-0.31,0.18,0.56,-0.04,-0.53,-0.41,0.13,0.06,0,0.44,-0.73,-0.12,0.17,-0.88,0.07,-0.56,-0.5,0.4,-0.37,0.47,-0.19,0.78,-0.07,0.2,-0.45,0.09,-0.6,0.26,-0.44,0.4,0.05,0.39,0.14,-0.49,-0.22,-0.14,0.41,0.28,-0.35,-0.1,0.07,-0.02,0.5,0.9,0.33,0.87,-0.2,0.19,0.07,-0.15,0.06,-0.13,0.62,0,-0.57,-0.56,-0.02,0.02,-0.7,0.41,0.28,-0.88,-0.18,-0.78,-0.17,0.66,-0.11,-0.07,0.68,-0,-0.27,-0.55,-0.12,0.6,-0.26,-0.42,0.51,0.48,0.48,0.2,0.46,0.24,-0.03,0.2,-0.03,-0.23,-0.34,-0.04,-0.59,-0.5,0.24,0.42,-0.21,-0.41,-0.51,-0.25,0.75,-0.55,0.05,0.44,0.89,0.6,0.23,0.23,-0.22,-0.19,0.56,0.18,-0.01,-0.88,-0.3,-0.53,0.75,0.52,0.28,0.38,0.05,0.02,0.26,-0.39,0.88,-0.41,0.43,0.31,-0.05,0.5,-0.26,0.36,-0.11,-0.2,0.05,0.26,-0.1,-0,-0.78,0.44,0.7,0.52,0.07,0.16,0.23,-0.4,0.12,0.83,-0.58,0.24,-0.02,0.12,0.41,0.43,0.14,0.56,0.28,0.03,-0.11,-0.03,0.41,0.32,0.06,-0.34,-0.24,0.24,0.18,-0.22,-0.15,0.05,-0.86,0.23,-0.83,-0.22,-0.46,0.4,-0.19,0.4,0.22,0.49,-0,-0.42,0.41,0.33,0.26,0.17,0.37,0.4,0.16,-0.61,0.1,-0.03,-0.13,-0.15,0.32,0.46,-0.09,-0.72,-0.18,-0.06,0.02,-0.51,0.75,0.45,0.38,-0.4,0.9,-0.47,-0.78,0.28,-0.7,0.77,0.11,0.43,-0.02,0.72,-0.07,0.82,-0.05,0.06,-0.39,0.03,0.57,-0.46,-0.3,-0.4,-0.63,-0.3,-0.36,-0.37,0.35,0.03,0.24,0.37,0.64,-0.24,-0.18,0.51,-0.56,-0.9,0.12,-0.26,0.18,0.47,0.17,0.38,0.38,-0.78,-0.89]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\",\"Covariance: 0.17 <br />Pooled SD: 1.39\",\"Covariance: -1.1 <br />Pooled SD: 2.11\",\"Covariance: 0.54 <br />Pooled SD: 0.64\",\"Covariance: 0.96 <br />Pooled SD: 1.87\",\"Covariance: 0.46 <br />Pooled SD: 1.81\",\"Covariance: 0.49 <br />Pooled SD: 2.14\",\"Covariance: 0.1 <br />Pooled SD: 0.73\",\"Covariance: 0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.03 <br />Pooled SD: 0.99\",\"Covariance: 0.45 <br />Pooled SD: 0.98\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.81\",\"Covariance: -0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.66 <br />Pooled SD: 1.01\",\"Covariance: -0.46 <br />Pooled SD: 1.86\",\"Covariance: 0.12 <br />Pooled SD: 1.58\",\"Covariance: -0.16 <br />Pooled SD: 0.7\",\"Covariance: 0.35 <br />Pooled SD: 0.98\",\"Covariance: -0.77 <br />Pooled SD: 1.55\",\"Covariance: 0.2 <br />Pooled SD: 0.98\",\"Covariance: -0.57 <br />Pooled SD: 1.03\",\"Covariance: 0.76 <br />Pooled SD: 1.13\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.02 <br />Pooled SD: 1.17\",\"Covariance: -0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.33\",\"Covariance: -0.65 <br />Pooled SD: 1.35\",\"Covariance: -0.12 <br />Pooled SD: 0.82\",\"Covariance: 0.32 <br />Pooled SD: 2.11\",\"Covariance: -0.48 <br />Pooled SD: 0.87\",\"Covariance: 0.38 <br />Pooled SD: 1.69\",\"Covariance: 0.91 <br />Pooled SD: 1.42\",\"Covariance: -0.69 <br />Pooled SD: 0.97\",\"Covariance: -0.6 <br />Pooled SD: 2.99\",\"Covariance: 0.09 <br />Pooled SD: 2.68\",\"Covariance: 1.15 <br />Pooled SD: 2.32\",\"Covariance: -0.57 <br />Pooled SD: 1.16\",\"Covariance: 0.05 <br />Pooled SD: 0.89\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: -0.07 <br />Pooled SD: 0.46\",\"Covariance: 0.28 <br />Pooled SD: 1.48\",\"Covariance: -0.01 <br />Pooled SD: 1.39\",\"Covariance: -0.03 <br />Pooled SD: 0.39\",\"Covariance: 0.95 <br />Pooled SD: 2.16\",\"Covariance: 0.83 <br />Pooled SD: 1.26\",\"Covariance: -0.97 <br />Pooled SD: 1.14\",\"Covariance: 0.04 <br />Pooled SD: 0.7\",\"Covariance: -0.58 <br />Pooled SD: 2.74\",\"Covariance: -0.96 <br />Pooled SD: 1.49\",\"Covariance: 0.23 <br />Pooled SD: 0.66\",\"Covariance: 0.81 <br />Pooled SD: 1.46\",\"Covariance: -0.11 <br />Pooled SD: 0.56\",\"Covariance: -0.54 <br />Pooled SD: 0.59\",\"Covariance: 0.58 <br />Pooled SD: 0.82\",\"Covariance: -0.39 <br />Pooled SD: 1.39\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 0.4 <br />Pooled SD: 1.33\",\"Covariance: -0.32 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.57 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 1.05\",\"Covariance: -0.08 <br />Pooled SD: 1.51\",\"Covariance: -0.57 <br />Pooled SD: 0.98\",\"Covariance: 0.33 <br />Pooled SD: 1.42\",\"Covariance: -0.33 <br />Pooled SD: 1.14\",\"Covariance: 0.27 <br />Pooled SD: 1.9\",\"Covariance: -1.12 <br />Pooled SD: 1.43\",\"Covariance: 1.37 <br />Pooled SD: 1.65\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: -2.13 <br />Pooled SD: 2.59\",\"Covariance: -0.14 <br />Pooled SD: 0.94\",\"Covariance: -1.43 <br />Pooled SD: 2.3\",\"Covariance: 0.06 <br />Pooled SD: 0.75\",\"Covariance: 0.13 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 1.16\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.12 <br />Pooled SD: 0.86\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.93 <br />Pooled SD: 1.63\",\"Covariance: 0.81 <br />Pooled SD: 1.08\",\"Covariance: 0.46 <br />Pooled SD: 0.67\",\"Covariance: -0.18 <br />Pooled SD: 0.86\",\"Covariance: 0.39 <br />Pooled SD: 0.63\",\"Covariance: -1.82 <br />Pooled SD: 3.11\",\"Covariance: 0.52 <br />Pooled SD: 1.71\",\"Covariance: -0.45 <br />Pooled SD: 1.08\",\"Covariance: 0.1 <br />Pooled SD: 1.13\",\"Covariance: -0.65 <br />Pooled SD: 1.66\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 0.74\",\"Covariance: 0.25 <br />Pooled SD: 1.87\",\"Covariance: -0.22 <br />Pooled SD: 1.19\",\"Covariance: 0.12 <br />Pooled SD: 0.4\",\"Covariance: -0.28 <br />Pooled SD: 1.56\",\"Covariance: 1.16 <br />Pooled SD: 1.48\",\"Covariance: 0.5 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 0.9\",\"Covariance: -1.01 <br />Pooled SD: 1.56\",\"Covariance: 0.38 <br />Pooled SD: 0.74\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.61 <br />Pooled SD: 2.04\",\"Covariance: 0.03 <br />Pooled SD: 0.94\",\"Covariance: 0.75 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 1.44\",\"Covariance: -0.1 <br />Pooled SD: 0.49\",\"Covariance: 0.18 <br />Pooled SD: 0.41\",\"Covariance: 0.41 <br />Pooled SD: 0.95\",\"Covariance: 0.54 <br />Pooled SD: 1.05\",\"Covariance: -0.03 <br />Pooled SD: 0.9\",\"Covariance: 0.61 <br />Pooled SD: 1.02\",\"Covariance: 0.05 <br />Pooled SD: 0.73\",\"Covariance: 0.34 <br />Pooled SD: 0.92\",\"Covariance: -0.18 <br />Pooled SD: 2.43\",\"Covariance: 0.38 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.33\",\"Covariance: 0.41 <br />Pooled SD: 1.64\",\"Covariance: -0.39 <br />Pooled SD: 1.02\",\"Covariance: -0.26 <br />Pooled SD: 0.62\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.17 <br />Pooled SD: 2.41\",\"Covariance: 0.49 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 2.26\",\"Covariance: 0.87 <br />Pooled SD: 2.39\",\"Covariance: 0.13 <br />Pooled SD: 0.25\",\"Covariance: -0.2 <br />Pooled SD: 0.65\",\"Covariance: 0.04 <br />Pooled SD: 0.48\",\"Covariance: -0.09 <br />Pooled SD: 1.5\",\"Covariance: 0.58 <br />Pooled SD: 1.71\",\"Covariance: 0.82 <br />Pooled SD: 1.63\",\"Covariance: -0.05 <br />Pooled SD: 0.75\",\"Covariance: 0.35 <br />Pooled SD: 1.08\",\"Covariance: 0.12 <br />Pooled SD: 0.77\",\"Covariance: -0.02 <br />Pooled SD: 1.06\",\"Covariance: 0.11 <br />Pooled SD: 0.69\",\"Covariance: 0.11 <br />Pooled SD: 0.93\",\"Covariance: 0.2 <br />Pooled SD: 1.41\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.06 <br />Pooled SD: 1.86\",\"Covariance: -0.39 <br />Pooled SD: 1.11\",\"Covariance: 0.58 <br />Pooled SD: 1.12\",\"Covariance: -0.75 <br />Pooled SD: 1.12\",\"Covariance: -0.08 <br />Pooled SD: 1.71\",\"Covariance: 0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.1 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 1.53\",\"Covariance: -0.94 <br />Pooled SD: 1.57\",\"Covariance: -0.19 <br />Pooled SD: 0.4\",\"Covariance: 0.31 <br />Pooled SD: 0.9\",\"Covariance: -0.17 <br />Pooled SD: 0.96\",\"Covariance: 1.21 <br />Pooled SD: 2.18\",\"Covariance: -0.88 <br />Pooled SD: 1.88\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: -1.27 <br />Pooled SD: 2.39\",\"Covariance: 0.75 <br />Pooled SD: 2.15\",\"Covariance: -0.05 <br />Pooled SD: 1.81\",\"Covariance: 0.96 <br />Pooled SD: 1.59\",\"Covariance: -0.39 <br />Pooled SD: 1.71\",\"Covariance: 0.52 <br />Pooled SD: 1.16\",\"Covariance: -0.15 <br />Pooled SD: 0.86\",\"Covariance: 0.08 <br />Pooled SD: 0.95\",\"Covariance: -0.33 <br />Pooled SD: 0.86\",\"Covariance: 0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.16 <br />Pooled SD: 1.03\",\"Covariance: -0.86 <br />Pooled SD: 1.8\",\"Covariance: 0.16 <br />Pooled SD: 1.17\",\"Covariance: -0.55 <br />Pooled SD: 1.9\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.08 <br />Pooled SD: 0.36\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: 1.51 <br />Pooled SD: 1.56\",\"Covariance: 0.48 <br />Pooled SD: 1.18\",\"Covariance: -0.22 <br />Pooled SD: 2.7\",\"Covariance: 0.91 <br />Pooled SD: 1.98\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: 1.31 <br />Pooled SD: 1.86\",\"Covariance: 0.97 <br />Pooled SD: 2.1\",\"Covariance: -0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.21 <br />Pooled SD: 0.89\",\"Covariance: 0.55 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 3.05\",\"Covariance: 0.36 <br />Pooled SD: 0.97\",\"Covariance: -0.23 <br />Pooled SD: 0.85\",\"Covariance: 0 <br />Pooled SD: 0.38\",\"Covariance: -0.28 <br />Pooled SD: 1.18\",\"Covariance: -0.4 <br />Pooled SD: 0.72\",\"Covariance: 0.34 <br />Pooled SD: 0.86\",\"Covariance: -0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.47 <br />Pooled SD: 1.64\",\"Covariance: 0.66 <br />Pooled SD: 2.35\",\"Covariance: 0.63 <br />Pooled SD: 1.4\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.51\",\"Covariance: 0.1 <br />Pooled SD: 0.99\",\"Covariance: 0.23 <br />Pooled SD: 1.61\",\"Covariance: -0.25 <br />Pooled SD: 2.32\",\"Covariance: 0.45 <br />Pooled SD: 0.6\",\"Covariance: 0.18 <br />Pooled SD: 0.72\",\"Covariance: -0.46 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 1.47\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: 0.53 <br />Pooled SD: 0.74\",\"Covariance: -0.18 <br />Pooled SD: 0.4\",\"Covariance: 0.01 <br />Pooled SD: 0.62\",\"Covariance: 0.01 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 0.85\",\"Covariance: -0.44 <br />Pooled SD: 0.68\",\"Covariance: 0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.78 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.65\",\"Covariance: 0.26 <br />Pooled SD: 0.67\",\"Covariance: 0.17 <br />Pooled SD: 1.68\",\"Covariance: 1.1 <br />Pooled SD: 1.67\",\"Covariance: -0.09 <br />Pooled SD: 1.43\",\"Covariance: -0.52 <br />Pooled SD: 0.82\",\"Covariance: -0.12 <br />Pooled SD: 1.01\",\"Covariance: 0.38 <br />Pooled SD: 1.24\",\"Covariance: 0.64 <br />Pooled SD: 1.69\",\"Covariance: 0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.96\",\"Covariance: 0.07 <br />Pooled SD: 0.81\",\"Covariance: -0.66 <br />Pooled SD: 0.91\",\"Covariance: 0.12 <br />Pooled SD: 1.76\",\"Covariance: 1.45 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 0.72\",\"Covariance: 0.06 <br />Pooled SD: 1.04\",\"Covariance: 0.04 <br />Pooled SD: 1.06\",\"Covariance: 0.7 <br />Pooled SD: 1.99\",\"Covariance: 0.66 <br />Pooled SD: 2.49\",\"Covariance: 0.08 <br />Pooled SD: 0.69\",\"Covariance: -1.54 <br />Pooled SD: 2.17\",\"Covariance: 0.45 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.63\",\"Covariance: 0.01 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.49\",\"Covariance: -0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.3 <br />Pooled SD: 1.57\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: -0.44 <br />Pooled SD: 0.53\",\"Covariance: -0.89 <br />Pooled SD: 2.58\",\"Covariance: 0.64 <br />Pooled SD: 0.7\",\"Covariance: 1.1 <br />Pooled SD: 1.49\",\"Covariance: 0.5 <br />Pooled SD: 1.53\",\"Covariance: 0.32 <br />Pooled SD: 0.69\",\"Covariance: -0.48 <br />Pooled SD: 0.49\",\"Covariance: -0.28 <br />Pooled SD: 0.38\",\"Covariance: 0.44 <br />Pooled SD: 1.06\",\"Covariance: 0 <br />Pooled SD: 0.61\",\"Covariance: -0.02 <br />Pooled SD: 0.44\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: -0.45 <br />Pooled SD: 1.25\",\"Covariance: -0.02 <br />Pooled SD: 0.5\",\"Covariance: -0.82 <br />Pooled SD: 1.19\",\"Covariance: -0.26 <br />Pooled SD: 2.28\",\"Covariance: 0.7 <br />Pooled SD: 0.81\",\"Covariance: 0.37 <br />Pooled SD: 1.59\",\"Covariance: 0.2 <br />Pooled SD: 0.41\",\"Covariance: 1.99 <br />Pooled SD: 2.39\",\"Covariance: -0.07 <br />Pooled SD: 0.23\",\"Covariance: 0.29 <br />Pooled SD: 0.57\",\"Covariance: 1.79 <br />Pooled SD: 2.95\",\"Covariance: -1.05 <br />Pooled SD: 1.48\",\"Covariance: 0.39 <br />Pooled SD: 1.6\",\"Covariance: 0.7 <br />Pooled SD: 1\",\"Covariance: 0.07 <br />Pooled SD: 1.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -1.65 <br />Pooled SD: 2.34\",\"Covariance: 0.34 <br />Pooled SD: 0.87\",\"Covariance: 0.23 <br />Pooled SD: 1.27\",\"Covariance: 0 <br />Pooled SD: 1.66\",\"Covariance: -0.86 <br />Pooled SD: 1.4\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -1.43 <br />Pooled SD: 1.62\",\"Covariance: 0.38 <br />Pooled SD: 1.2\",\"Covariance: 0.44 <br />Pooled SD: 0.65\",\"Covariance: 0.45 <br />Pooled SD: 0.85\",\"Covariance: 1.33 <br />Pooled SD: 2.39\",\"Covariance: 0.16 <br />Pooled SD: 1.21\",\"Covariance: -0.26 <br />Pooled SD: 1.18\",\"Covariance: 1.01 <br />Pooled SD: 1.18\",\"Covariance: 0.12 <br />Pooled SD: 0.93\",\"Covariance: -0.56 <br />Pooled SD: 0.9\",\"Covariance: -0.47 <br />Pooled SD: 0.9\",\"Covariance: -0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.21 <br />Pooled SD: 0.77\",\"Covariance: -0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.8 <br />Pooled SD: 1.31\",\"Covariance: -0.09 <br />Pooled SD: 0.49\",\"Covariance: 0.27 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.13\",\"Covariance: 0.06 <br />Pooled SD: 0.93\",\"Covariance: -0.24 <br />Pooled SD: 0.51\",\"Covariance: 0.67 <br />Pooled SD: 1.15\",\"Covariance: -0.19 <br />Pooled SD: 0.93\",\"Covariance: -0.8 <br />Pooled SD: 1.25\",\"Covariance: 0.85 <br />Pooled SD: 1.34\",\"Covariance: -0.19 <br />Pooled SD: 1.94\",\"Covariance: -0.86 <br />Pooled SD: 2.03\",\"Covariance: 0.79 <br />Pooled SD: 1.38\",\"Covariance: -0.76 <br />Pooled SD: 1.97\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: 0.1 <br />Pooled SD: 0.37\",\"Covariance: -0.74 <br />Pooled SD: 1.13\",\"Covariance: 1 <br />Pooled SD: 1.74\",\"Covariance: 0.3 <br />Pooled SD: 1.63\",\"Covariance: -0.98 <br />Pooled SD: 1.54\",\"Covariance: -0.44 <br />Pooled SD: 0.73\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.86 <br />Pooled SD: 1.82\",\"Covariance: -0.13 <br />Pooled SD: 0.74\",\"Covariance: 0.17 <br />Pooled SD: 1.01\",\"Covariance: -0.04 <br />Pooled SD: 0.46\",\"Covariance: 0.37 <br />Pooled SD: 0.56\",\"Covariance: 0.23 <br />Pooled SD: 0.69\",\"Covariance: 0.95 <br />Pooled SD: 1.84\",\"Covariance: -0.88 <br />Pooled SD: 1.32\",\"Covariance: 0.18 <br />Pooled SD: 0.59\",\"Covariance: 0.19 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.27\",\"Covariance: 0.05 <br />Pooled SD: 0.87\",\"Covariance: -0.27 <br />Pooled SD: 0.73\",\"Covariance: 0.43 <br />Pooled SD: 2.73\",\"Covariance: 1.16 <br />Pooled SD: 1.7\",\"Covariance: 0.19 <br />Pooled SD: 0.58\",\"Covariance: 0.51 <br />Pooled SD: 1.72\",\"Covariance: 0.05 <br />Pooled SD: 0.64\",\"Covariance: 0.56 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 2.25\",\"Covariance: -3.39 <br />Pooled SD: 3.65\",\"Covariance: -0.44 <br />Pooled SD: 1.08\",\"Covariance: -0.93 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.46\",\"Covariance: -0.42 <br />Pooled SD: 1.38\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.33 <br />Pooled SD: 0.98\",\"Covariance: -0.31 <br />Pooled SD: 2.19\",\"Covariance: 0.11 <br />Pooled SD: 2.18\",\"Covariance: 0.33 <br />Pooled SD: 1.83\",\"Covariance: 0.39 <br />Pooled SD: 0.99\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.53 <br />Pooled SD: 2.21\",\"Covariance: -0.75 <br />Pooled SD: 0.85\",\"Covariance: 1.18 <br />Pooled SD: 1.55\",\"Covariance: -1.21 <br />Pooled SD: 1.61\",\"Covariance: 0.83 <br />Pooled SD: 0.99\",\"Covariance: -0.25 <br />Pooled SD: 0.49\",\"Covariance: -0.74 <br />Pooled SD: 2.13\",\"Covariance: -0.33 <br />Pooled SD: 1.5\",\"Covariance: -0.46 <br />Pooled SD: 0.99\",\"Covariance: 1.62 <br />Pooled SD: 3.64\",\"Covariance: 0.16 <br />Pooled SD: 0.86\",\"Covariance: -0.55 <br />Pooled SD: 0.93\",\"Covariance: -0.13 <br />Pooled SD: 0.76\",\"Covariance: -0.14 <br />Pooled SD: 1.48\",\"Covariance: -0.21 <br />Pooled SD: 1.22\",\"Covariance: -0.66 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 1.5\",\"Covariance: 1.08 <br />Pooled SD: 2.4\",\"Covariance: 0.59 <br />Pooled SD: 0.96\",\"Covariance: -0.02 <br />Pooled SD: 2.59\",\"Covariance: -1.14 <br />Pooled SD: 2.22\",\"Covariance: 0.54 <br />Pooled SD: 1.16\",\"Covariance: -0.83 <br />Pooled SD: 2.07\",\"Covariance: -0.3 <br />Pooled SD: 1.19\",\"Covariance: 0.54 <br />Pooled SD: 0.88\",\"Covariance: 0.73 <br />Pooled SD: 1.95\",\"Covariance: 0.41 <br />Pooled SD: 0.61\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.14 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 0.51\",\"Covariance: -0.33 <br />Pooled SD: 1.8\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: 0.35 <br />Pooled SD: 1.82\",\"Covariance: -0.41 <br />Pooled SD: 1.31\",\"Covariance: -0.11 <br />Pooled SD: 1.61\",\"Covariance: 0.32 <br />Pooled SD: 0.65\",\"Covariance: -0.77 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 0.44\",\"Covariance: 2.65 <br />Pooled SD: 2.86\",\"Covariance: -0.38 <br />Pooled SD: 0.87\",\"Covariance: 0.15 <br />Pooled SD: 1.06\",\"Covariance: -0.49 <br />Pooled SD: 0.85\",\"Covariance: 0.31 <br />Pooled SD: 1.15\",\"Covariance: 0.18 <br />Pooled SD: 0.81\",\"Covariance: 0.18 <br />Pooled SD: 0.44\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: 0.16 <br />Pooled SD: 2.39\",\"Covariance: 0.23 <br />Pooled SD: 0.89\",\"Covariance: -0.21 <br />Pooled SD: 0.7\",\"Covariance: 0.54 <br />Pooled SD: 0.84\",\"Covariance: -0.37 <br />Pooled SD: 1.57\",\"Covariance: 0.71 <br />Pooled SD: 1\",\"Covariance: 0 <br />Pooled SD: 0.71\",\"Covariance: 0.76 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.28 <br />Pooled SD: 0.8\",\"Covariance: -0.15 <br />Pooled SD: 1.12\",\"Covariance: 0.33 <br />Pooled SD: 1.23\",\"Covariance: -0.49 <br />Pooled SD: 1.81\",\"Covariance: -0.25 <br />Pooled SD: 1.18\",\"Covariance: -0.12 <br />Pooled SD: 0.39\",\"Covariance: -0.66 <br />Pooled SD: 0.88\",\"Covariance: -0.7 <br />Pooled SD: 1.43\",\"Covariance: -0.56 <br />Pooled SD: 0.67\",\"Covariance: -0.12 <br />Pooled SD: 1.33\",\"Covariance: -0.12 <br />Pooled SD: 0.35\",\"Covariance: 0.06 <br />Pooled SD: 0.88\",\"Covariance: 0.78 <br />Pooled SD: 1.73\",\"Covariance: -0.35 <br />Pooled SD: 0.85\",\"Covariance: 0.34 <br />Pooled SD: 1.44\",\"Covariance: 0.19 <br />Pooled SD: 0.97\",\"Covariance: 1 <br />Pooled SD: 1.15\",\"Covariance: -0.17 <br />Pooled SD: 0.47\",\"Covariance: 0.67 <br />Pooled SD: 1.16\",\"Covariance: -1.53 <br />Pooled SD: 1.81\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.8 <br />Pooled SD: 1.44\",\"Covariance: 0.34 <br />Pooled SD: 0.95\",\"Covariance: -1.59 <br />Pooled SD: 2.18\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 0.77\",\"Covariance: 0.42 <br />Pooled SD: 2.03\",\"Covariance: -0.86 <br />Pooled SD: 1.35\",\"Covariance: -0.78 <br />Pooled SD: 1.44\",\"Covariance: -0.18 <br />Pooled SD: 1.18\",\"Covariance: 0.02 <br />Pooled SD: 0.62\",\"Covariance: -0.42 <br />Pooled SD: 1.24\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: -0.11 <br />Pooled SD: 0.24\",\"Covariance: -0.6 <br />Pooled SD: 1.3\",\"Covariance: 0.73 <br />Pooled SD: 1.02\",\"Covariance: 0.48 <br />Pooled SD: 0.94\",\"Covariance: 0.36 <br />Pooled SD: 0.57\",\"Covariance: -0.47 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: 0.28 <br />Pooled SD: 1.99\",\"Covariance: -0.72 <br />Pooled SD: 0.99\",\"Covariance: 0.25 <br />Pooled SD: 1.21\",\"Covariance: -0.66 <br />Pooled SD: 1.24\",\"Covariance: 0.43 <br />Pooled SD: 1.39\",\"Covariance: 0.16 <br />Pooled SD: 1.84\",\"Covariance: -0.31 <br />Pooled SD: 0.8\",\"Covariance: 0.68 <br />Pooled SD: 1.14\",\"Covariance: -0.41 <br />Pooled SD: 1.69\",\"Covariance: 0.77 <br />Pooled SD: 1.5\",\"Covariance: -0.05 <br />Pooled SD: 1.17\",\"Covariance: -0.46 <br />Pooled SD: 0.92\",\"Covariance: 0.61 <br />Pooled SD: 2.33\",\"Covariance: 0.05 <br />Pooled SD: 0.48\",\"Covariance: -0.67 <br />Pooled SD: 1.15\",\"Covariance: -2.07 <br />Pooled SD: 3.33\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: -0.85 <br />Pooled SD: 1.24\",\"Covariance: -0.03 <br />Pooled SD: 2.15\",\"Covariance: 0.76 <br />Pooled SD: 0.77\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: 0.79 <br />Pooled SD: 1.41\",\"Covariance: -0.74 <br />Pooled SD: 2.43\",\"Covariance: -0.17 <br />Pooled SD: 1.23\",\"Covariance: -0.1 <br />Pooled SD: 1.21\",\"Covariance: -0.83 <br />Pooled SD: 2.01\",\"Covariance: -0.22 <br />Pooled SD: 2.12\",\"Covariance: 0.78 <br />Pooled SD: 1.33\",\"Covariance: 0.97 <br />Pooled SD: 1.22\",\"Covariance: -0.1 <br />Pooled SD: 0.8\",\"Covariance: 0 <br />Pooled SD: 1.45\",\"Covariance: -0.16 <br />Pooled SD: 0.57\",\"Covariance: 0.93 <br />Pooled SD: 1.36\",\"Covariance: 0.83 <br />Pooled SD: 1.56\",\"Covariance: 0.77 <br />Pooled SD: 1.42\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.41 <br />Pooled SD: 1.12\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.13 <br />Pooled SD: 0.67\",\"Covariance: 0.07 <br />Pooled SD: 1.22\",\"Covariance: 0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.55 <br />Pooled SD: 0.66\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.12\",\"Covariance: 0.48 <br />Pooled SD: 1.47\",\"Covariance: 0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.4 <br />Pooled SD: 2.57\",\"Covariance: 0.37 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 0.98\",\"Covariance: -0.74 <br />Pooled SD: 1.46\",\"Covariance: -1.09 <br />Pooled SD: 1.45\",\"Covariance: 0.19 <br />Pooled SD: 1.5\",\"Covariance: -0.37 <br />Pooled SD: 1.45\",\"Covariance: 0.3 <br />Pooled SD: 0.83\",\"Covariance: -0.08 <br />Pooled SD: 1.4\",\"Covariance: -0.26 <br />Pooled SD: 0.68\",\"Covariance: 0.27 <br />Pooled SD: 1.78\",\"Covariance: 0.13 <br />Pooled SD: 0.24\",\"Covariance: 0.03 <br />Pooled SD: 0.42\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: 0.04 <br />Pooled SD: 1.23\",\"Covariance: 0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.35 <br />Pooled SD: 0.84\",\"Covariance: -0.71 <br />Pooled SD: 1.11\",\"Covariance: 0.25 <br />Pooled SD: 1.43\",\"Covariance: -0.16 <br />Pooled SD: 0.73\",\"Covariance: -0.66 <br />Pooled SD: 1.15\",\"Covariance: -0.08 <br />Pooled SD: 1.18\",\"Covariance: -0.74 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 1.22\",\"Covariance: 0.15 <br />Pooled SD: 2.2\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -0.18 <br />Pooled SD: 1.46\",\"Covariance: -0.45 <br />Pooled SD: 0.89\",\"Covariance: -0.51 <br />Pooled SD: 1.04\",\"Covariance: -0.32 <br />Pooled SD: 0.52\",\"Covariance: -0.63 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 2.17\",\"Covariance: -0.33 <br />Pooled SD: 1.79\",\"Covariance: 0.37 <br />Pooled SD: 1.1\",\"Covariance: 1.46 <br />Pooled SD: 1.87\",\"Covariance: 0.48 <br />Pooled SD: 2.23\",\"Covariance: -0.35 <br />Pooled SD: 1.23\",\"Covariance: 0.54 <br />Pooled SD: 1.36\",\"Covariance: -0.7 <br />Pooled SD: 1.06\",\"Covariance: 0.8 <br />Pooled SD: 1.36\",\"Covariance: -0.06 <br />Pooled SD: 1.03\",\"Covariance: -0.5 <br />Pooled SD: 0.81\",\"Covariance: 0.43 <br />Pooled SD: 0.86\",\"Covariance: -0.2 <br />Pooled SD: 1.25\",\"Covariance: 0 <br />Pooled SD: 0.86\",\"Covariance: 1.4 <br />Pooled SD: 1.59\",\"Covariance: -0.53 <br />Pooled SD: 0.99\",\"Covariance: 0.72 <br />Pooled SD: 1.23\",\"Covariance: -0.54 <br />Pooled SD: 1.35\",\"Covariance: -0.54 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.88\",\"Covariance: -0.19 <br />Pooled SD: 0.48\",\"Covariance: 1.18 <br />Pooled SD: 1.38\",\"Covariance: 0.32 <br />Pooled SD: 2.23\",\"Covariance: -0.87 <br />Pooled SD: 1.92\",\"Covariance: 0.52 <br />Pooled SD: 1.02\",\"Covariance: -0.02 <br />Pooled SD: 0.56\",\"Covariance: 0.46 <br />Pooled SD: 0.94\",\"Covariance: -0.43 <br />Pooled SD: 1.98\",\"Covariance: -0.08 <br />Pooled SD: 0.22\",\"Covariance: -1 <br />Pooled SD: 1.19\",\"Covariance: 0.87 <br />Pooled SD: 2.22\",\"Covariance: -0.29 <br />Pooled SD: 2.18\",\"Covariance: 0.57 <br />Pooled SD: 0.91\",\"Covariance: -0.6 <br />Pooled SD: 2.06\",\"Covariance: -0.61 <br />Pooled SD: 1.92\",\"Covariance: 0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.49 <br />Pooled SD: 0.87\",\"Covariance: -0.06 <br />Pooled SD: 1.73\",\"Covariance: -0.85 <br />Pooled SD: 1.62\",\"Covariance: -0.18 <br />Pooled SD: 0.44\",\"Covariance: 0.2 <br />Pooled SD: 1.51\",\"Covariance: 0.04 <br />Pooled SD: 0.68\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: 0.64 <br />Pooled SD: 1.44\",\"Covariance: -1.17 <br />Pooled SD: 1.6\",\"Covariance: -0.08 <br />Pooled SD: 0.69\",\"Covariance: 0.25 <br />Pooled SD: 1.44\",\"Covariance: -0.68 <br />Pooled SD: 0.77\",\"Covariance: 0.1 <br />Pooled SD: 1.38\",\"Covariance: -0.44 <br />Pooled SD: 0.78\",\"Covariance: -1.41 <br />Pooled SD: 2.79\",\"Covariance: 0.65 <br />Pooled SD: 1.62\",\"Covariance: -0.76 <br />Pooled SD: 2.06\",\"Covariance: 0.84 <br />Pooled SD: 1.79\",\"Covariance: -0.22 <br />Pooled SD: 1.16\",\"Covariance: 1.48 <br />Pooled SD: 1.89\",\"Covariance: -0.1 <br />Pooled SD: 1.47\",\"Covariance: 0.58 <br />Pooled SD: 2.82\",\"Covariance: -0.9 <br />Pooled SD: 2.01\",\"Covariance: 0.2 <br />Pooled SD: 2.26\",\"Covariance: -1.21 <br />Pooled SD: 2\",\"Covariance: 0.35 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.08\",\"Covariance: 0.37 <br />Pooled SD: 0.93\",\"Covariance: 0.13 <br />Pooled SD: 2.85\",\"Covariance: 0.28 <br />Pooled SD: 0.73\",\"Covariance: 0.49 <br />Pooled SD: 3.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -0.5 <br />Pooled SD: 2.23\",\"Covariance: -0.17 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 0.88\",\"Covariance: 0.22 <br />Pooled SD: 0.79\",\"Covariance: -0.77 <br />Pooled SD: 2.21\",\"Covariance: -0.13 <br />Pooled SD: 1.34\",\"Covariance: 0.11 <br />Pooled SD: 1.66\",\"Covariance: -0.06 <br />Pooled SD: 2.59\",\"Covariance: 0.4 <br />Pooled SD: 0.8\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.57 <br />Pooled SD: 1.72\",\"Covariance: 1.64 <br />Pooled SD: 1.89\",\"Covariance: -0.21 <br />Pooled SD: 1.05\",\"Covariance: 0.18 <br />Pooled SD: 0.99\",\"Covariance: 0.1 <br />Pooled SD: 1.52\",\"Covariance: -0.1 <br />Pooled SD: 0.65\",\"Covariance: 0.1 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 2.17\",\"Covariance: 0.49 <br />Pooled SD: 0.79\",\"Covariance: 0 <br />Pooled SD: 1.09\",\"Covariance: -1.68 <br />Pooled SD: 2.96\",\"Covariance: -0.68 <br />Pooled SD: 1.22\",\"Covariance: -0.04 <br />Pooled SD: 1.7\",\"Covariance: 0.02 <br />Pooled SD: 1.03\",\"Covariance: -0.22 <br />Pooled SD: 0.31\",\"Covariance: 0.58 <br />Pooled SD: 1.41\",\"Covariance: 0.29 <br />Pooled SD: 1.05\",\"Covariance: -1.43 <br />Pooled SD: 1.63\",\"Covariance: -0.35 <br />Pooled SD: 1.94\",\"Covariance: -0.55 <br />Pooled SD: 0.7\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: 0.54 <br />Pooled SD: 0.83\",\"Covariance: -0.22 <br />Pooled SD: 2.03\",\"Covariance: -0.1 <br />Pooled SD: 1.37\",\"Covariance: 1.11 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 2.46\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: -0.6 <br />Pooled SD: 1.09\",\"Covariance: -0.1 <br />Pooled SD: 0.85\",\"Covariance: 0.92 <br />Pooled SD: 1.53\",\"Covariance: -0.15 <br />Pooled SD: 0.57\",\"Covariance: -0.32 <br />Pooled SD: 0.75\",\"Covariance: 0.81 <br />Pooled SD: 1.57\",\"Covariance: 0.45 <br />Pooled SD: 0.93\",\"Covariance: 0.51 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.65\",\"Covariance: 0.41 <br />Pooled SD: 0.89\",\"Covariance: 0.31 <br />Pooled SD: 1.32\",\"Covariance: -0.04 <br />Pooled SD: 1.33\",\"Covariance: 0.05 <br />Pooled SD: 0.25\",\"Covariance: -0.05 <br />Pooled SD: 2.09\",\"Covariance: -0.32 <br />Pooled SD: 1.43\",\"Covariance: -0.71 <br />Pooled SD: 2.1\",\"Covariance: -0.04 <br />Pooled SD: 0.97\",\"Covariance: -0.92 <br />Pooled SD: 1.57\",\"Covariance: -0.52 <br />Pooled SD: 1.03\",\"Covariance: 0.22 <br />Pooled SD: 0.91\",\"Covariance: 0.48 <br />Pooled SD: 1.16\",\"Covariance: -0.32 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: -1.11 <br />Pooled SD: 2.18\",\"Covariance: -0.31 <br />Pooled SD: 1.24\",\"Covariance: 0.71 <br />Pooled SD: 0.95\",\"Covariance: -0.65 <br />Pooled SD: 1.18\",\"Covariance: 0.06 <br />Pooled SD: 1.14\",\"Covariance: 0.67 <br />Pooled SD: 1.52\",\"Covariance: 0.89 <br />Pooled SD: 1\",\"Covariance: 0.4 <br />Pooled SD: 0.67\",\"Covariance: 0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.31 <br />Pooled SD: 1.34\",\"Covariance: -0.32 <br />Pooled SD: 1.42\",\"Covariance: -0.3 <br />Pooled SD: 1.52\",\"Covariance: 0.76 <br />Pooled SD: 1.35\",\"Covariance: 0.34 <br />Pooled SD: 1.87\",\"Covariance: -0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.77 <br />Pooled SD: 0.87\",\"Covariance: -0.52 <br />Pooled SD: 1.73\",\"Covariance: -1.27 <br />Pooled SD: 2.37\",\"Covariance: 1.23 <br />Pooled SD: 1.65\",\"Covariance: 1.09 <br />Pooled SD: 2.1\",\"Covariance: 0.53 <br />Pooled SD: 1.86\",\"Covariance: 0.64 <br />Pooled SD: 1.71\",\"Covariance: 0.06 <br />Pooled SD: 1.09\",\"Covariance: 0.04 <br />Pooled SD: 1.98\",\"Covariance: 0.33 <br />Pooled SD: 1.25\",\"Covariance: -0.21 <br />Pooled SD: 0.55\",\"Covariance: 0.94 <br />Pooled SD: 1.06\",\"Covariance: -0.62 <br />Pooled SD: 1.53\",\"Covariance: 0.39 <br />Pooled SD: 0.9\",\"Covariance: 0.16 <br />Pooled SD: 0.53\",\"Covariance: -0.1 <br />Pooled SD: 2\",\"Covariance: 0.54 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.05\",\"Covariance: 0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.44 <br />Pooled SD: 1.71\",\"Covariance: -0.05 <br />Pooled SD: 0.53\",\"Covariance: 0 <br />Pooled SD: 1.56\",\"Covariance: -0.64 <br />Pooled SD: 0.83\",\"Covariance: 0.33 <br />Pooled SD: 0.76\",\"Covariance: 0.79 <br />Pooled SD: 1.12\",\"Covariance: 0.43 <br />Pooled SD: 0.82\",\"Covariance: 0.14 <br />Pooled SD: 2.04\",\"Covariance: 0.24 <br />Pooled SD: 1.53\",\"Covariance: 0.31 <br />Pooled SD: 1.35\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.17 <br />Pooled SD: 1.41\",\"Covariance: 1.01 <br />Pooled SD: 1.23\",\"Covariance: -1.18 <br />Pooled SD: 2.03\",\"Covariance: 0.48 <br />Pooled SD: 1.97\",\"Covariance: -0.02 <br />Pooled SD: 0.77\",\"Covariance: 0.2 <br />Pooled SD: 1.72\",\"Covariance: 0.55 <br />Pooled SD: 1.35\",\"Covariance: 0.35 <br />Pooled SD: 0.82\",\"Covariance: 0.21 <br />Pooled SD: 1.5\",\"Covariance: 0.38 <br />Pooled SD: 0.67\",\"Covariance: 0.17 <br />Pooled SD: 0.59\",\"Covariance: 0.04 <br />Pooled SD: 1.19\",\"Covariance: -0.08 <br />Pooled SD: 0.71\",\"Covariance: -0.06 <br />Pooled SD: 1.91\",\"Covariance: 0.25 <br />Pooled SD: 0.61\",\"Covariance: 0.78 <br />Pooled SD: 2.4\",\"Covariance: 0.09 <br />Pooled SD: 1.56\",\"Covariance: -0.35 <br />Pooled SD: 1.02\",\"Covariance: -0.2 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 1.07\",\"Covariance: 0.49 <br />Pooled SD: 2.78\",\"Covariance: -0.31 <br />Pooled SD: 1.45\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.66 <br />Pooled SD: 0.77\",\"Covariance: 0.36 <br />Pooled SD: 1.56\",\"Covariance: -0.61 <br />Pooled SD: 0.74\",\"Covariance: -0.29 <br />Pooled SD: 1.29\",\"Covariance: -0.67 <br />Pooled SD: 1.44\",\"Covariance: 0.38 <br />Pooled SD: 0.95\",\"Covariance: -0.17 <br />Pooled SD: 0.89\",\"Covariance: 0.31 <br />Pooled SD: 0.78\",\"Covariance: 0.5 <br />Pooled SD: 2.26\",\"Covariance: 0.25 <br />Pooled SD: 0.51\",\"Covariance: 0 <br />Pooled SD: 0.64\",\"Covariance: -0.54 <br />Pooled SD: 1.29\",\"Covariance: 0.56 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 1.04\",\"Covariance: 0.7 <br />Pooled SD: 2.71\",\"Covariance: 0.04 <br />Pooled SD: 0.26\",\"Covariance: 0.31 <br />Pooled SD: 0.84\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.16 <br />Pooled SD: 0.97\",\"Covariance: -0.71 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 0.52\",\"Covariance: -0.04 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.57\",\"Covariance: -0.17 <br />Pooled SD: 1.12\",\"Covariance: 0.42 <br />Pooled SD: 1.32\",\"Covariance: 0.43 <br />Pooled SD: 0.95\",\"Covariance: -0.07 <br />Pooled SD: 0.71\",\"Covariance: -0.53 <br />Pooled SD: 0.73\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -0.12 <br />Pooled SD: 1.98\",\"Covariance: 0.04 <br />Pooled SD: 2.62\",\"Covariance: -0.22 <br />Pooled SD: 0.44\",\"Covariance: 1.54 <br />Pooled SD: 2.05\",\"Covariance: 0.58 <br />Pooled SD: 1.27\",\"Covariance: 0.34 <br />Pooled SD: 0.89\",\"Covariance: -0.35 <br />Pooled SD: 0.86\",\"Covariance: 0.51 <br />Pooled SD: 0.56\",\"Covariance: -0.82 <br />Pooled SD: 1.75\",\"Covariance: -0.87 <br />Pooled SD: 1.12\",\"Covariance: 0.29 <br />Pooled SD: 1.05\",\"Covariance: -1.15 <br />Pooled SD: 1.64\",\"Covariance: 0.93 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 1.55\",\"Covariance: 0.61 <br />Pooled SD: 1.42\",\"Covariance: -0.03 <br />Pooled SD: 1.27\",\"Covariance: 0.51 <br />Pooled SD: 0.71\",\"Covariance: -0.07 <br />Pooled SD: 1.07\",\"Covariance: 1.18 <br />Pooled SD: 1.43\",\"Covariance: -0.05 <br />Pooled SD: 1.19\",\"Covariance: 0.08 <br />Pooled SD: 1.46\",\"Covariance: -0.67 <br />Pooled SD: 1.72\",\"Covariance: 0.04 <br />Pooled SD: 1.1\",\"Covariance: 1.35 <br />Pooled SD: 2.4\",\"Covariance: -0.71 <br />Pooled SD: 1.53\",\"Covariance: -0.24 <br />Pooled SD: 0.79\",\"Covariance: -0.54 <br />Pooled SD: 1.34\",\"Covariance: -0.26 <br />Pooled SD: 0.41\",\"Covariance: -0.38 <br />Pooled SD: 1.29\",\"Covariance: -0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.74\",\"Covariance: 0.56 <br />Pooled SD: 1.59\",\"Covariance: 0.06 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 2.01\",\"Covariance: 1.27 <br />Pooled SD: 3.4\",\"Covariance: 0.94 <br />Pooled SD: 1.48\",\"Covariance: -0.08 <br />Pooled SD: 0.33\",\"Covariance: -0.17 <br />Pooled SD: 0.98\",\"Covariance: 0.64 <br />Pooled SD: 1.26\",\"Covariance: -0.5 <br />Pooled SD: 0.89\",\"Covariance: -0.61 <br />Pooled SD: 0.67\",\"Covariance: 0.24 <br />Pooled SD: 2.08\",\"Covariance: -0.36 <br />Pooled SD: 1.4\",\"Covariance: 0.2 <br />Pooled SD: 1.09\",\"Covariance: 0.29 <br />Pooled SD: 0.63\",\"Covariance: 0.32 <br />Pooled SD: 1.88\",\"Covariance: 0.46 <br />Pooled SD: 1.22\",\"Covariance: 0.4 <br />Pooled SD: 1.06\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -1.07 <br />Pooled SD: 1.2\"],\"frame\":\"2900\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]},{\"name\":\"3000\",\"data\":[{\"mode\":\"markers\",\"x\":[1.07,-0.15,-0.64,-0.3,0.97,-1.53,0.6,0.14,0.14,-0.21,-0.41,-0.4,-0.27,0.11,0.75,-2.14,-0.82,0.71,-0.12,0.62,-0.2,0.27,-0.07,-0.8,0.88,0.15,-0.22,-0.17,0.21,-0.53,-0.33,-1.27,0.41,-0.01,0.98,-0.11,0.39,1.25,0.34,-0.34,0.44,0.44,0.09,-0.75,-0.3,0.17,0.95,0,0.14,0.22,0.01,-0.02,-0.02,-0.86,0.28,0.05,-0.5,0.04,0.16,-0.72,0.27,-0.25,0.81,-0.17,0.27,1.7,-0.05,-0.27,0.64,0.04,-0.35,0.42,-0.12,1.5,0.48,-0.54,0.13,-0.28,-0.18,1.01,-0.46,0.4,-0.41,-0.13,0.25,0.47,-0.46,-0.17,-0.55,0.4,0.04,-0.17,0.42,0.66,-0.23,0.02,1.2,0.45,-0.2,0.22,-0.32,1.27,-0.88,0.4,0.88,1.49,-0.48,-0.91,0.35,0.44,0.47,-0.32,0.44,-0.14,0.08,-0.97,0.83,0.01,0.05,0.43,-0.48,0.57,0.85,-0.41,0.78,1.12,-0.12,-0.24,0.14,-0.19,-0.6,0.52,0.35,0.44,-0.33,0.19,-0.04,0.78,-0.38,0.26,-0.39,-0.59,-0.36,-0.79,0.01,-0.61,-0.1,-0.28,-0.3,-0.55,1.84,0.14,0.49,0.26,-0.5,0.2,-0.54,0.23,1.19,-0.09,-0.31,-1.33,0.25,0.06,-0.22,-0.83,-1.38,0.38,-0.45,-0.07,-0.55,0.03,0.88,0.24,0.1,-0.18,0.33,-0.37,0.29,-0.8,-1.99,0.49,0.09,0.87,-0.16,0.05,-0.38,0.14,0.05,1.26,0.58,0.38,0.2,1.22,-1.44,0.73,-0.06,0.33,0.11,-0.13,-0.76,-0.13,-0.04,0.62,0.35,0.55,0.18,-0.21,0.73,-0.27,-0.5,1.32,-0.17,0.88,0.6,0.32,-1.65,0.08,0.03,1.76,0.11,0.28,-0.27,-0.01,0.27,-0.65,0.51,-0.6,-1.08,1.25,-1.34,1.22,0.07,-0.76,-1.9,0.44,-1.01,2.54,0.42,0.85,-0.26,-0.34,0.41,-0.11,-1.38,-1.7,0.61,-0.11,0.3,-0.38,0.78,0.68,0.48,1.61,0.44,1.33,0.31,0.06,-0.9,-0.85,-0.71,1.06,0.76,1.29,0.05,0.42,0.1,0.13,-0.21,-1.03,-0.41,0.18,1.38,0.08,-0.34,-2.29,-0.48,-0.64,0.34,-1.2,1.35,0.11,0.01,0.33,0.08,-0.52,0.16,0.55,-0.75,-0.36,-0.64,-0.03,-0.66,-0.06,-0.19,0.77,-0.28,0.15,-0.34,-1.66,-0.79,0.3,0.39,-0.34,-0.27,0.2,-0.44,0.16,-0.13,0.64,0.65,-0.07,0.1,-0.14,0.81,0.07,0.6,1.03,-1.04,0.52,0.66,-0.77,0.49,0.48,0.09,-0.2,-0.21,-0.49,-0.48,1.03,0.49,0.15,0.14,0.66,-0.24,0.45,0.48,-0.05,-0.88,-0.95,0.36,-0.83,0.95,0.2,0.87,0.15,0.25,-0.39,1.23,0.75,0.33,-0.32,-0.47,-0.13,-0.68,0.37,1.05,-0.14,-0.04,-0.1,0.46,0.55,0.31,1.07,-0.14,-0.18,-0.35,0.03,-0.1,1.49,-0.17,-0.75,0.12,0.11,0.74,0.97,0.18,0.75,0.28,1.04,-0.69,0.32,0.24,0.16,0.37,0.66,-1.15,-0.22,-0.25,-0.5,0.89,0.04,-0.8,-0.46,0.16,-0.22,-0.11,0.13,-0.52,-0.34,0.09,-0.76,-0.47,-0.15,0.28,0.33,0.04,-0.04,0.45,-0.32,0.4,0.06,-1.14,0.27,-0.89,1.31,0.76,0.52,-0.33,0.05,-0.65,-0.16,0.47,-0.69,0.21,-0.21,-0.01,0.01,-0.24,-0.54,-0.54,0.63,-1.31,0.34,0.33,0.02,0.49,-0.02,0.1,0.57,0.1,-0.71,-0.09,0.1,-0.42,0.19,0.28,-0.04,0.5,-0.21,-0.37,0.41,0.14,0.87,-0.15,-0.51,0.12,2.07,-0.1,-0.4,-0.72,0.15,-0.06,-0.19,-0.24,-0.87,0.94,-1.12,-1.3,0.02,-0.06,0.15,0.64,0.03,-0.16,0.27,0.41,-0.59,1.37,0.26,-1,-0.41,0.09,0.43,-0.22,0.36,-0.61,0.45,0.24,0.97,-0.21,-0.34,-0.35,-0.9,-0.59,0.48,-0.73,0.1,-0.13,-0.59,0.48,0.4,-0.11,0.2,-0.24,0.17,-0.27,0.18,-0.09,-0.75,-0.47,-0.42,-0.2,-0.37,-0.49,-0.08,-0.05,1.26,0.4,0.59,-0.38,-0.15,0.38,0.18,0.28,-0.53,-0.16,-0.37,0.72,-0.59,-0.02,-0.1,0.43,0.23,-1.1,0.21,0.08,-1.6,-0.49,-0.58,-0.46,0.29,0.49,-0.48,-0.4,0.18,0.72,-0.04,0.01,-0.38,-0.05,0.02,1.11,0.07,0.58,0.46,0.2,0.02,-0.56,0.17,1,0.83,1.15,-0.4,-0.52,0.65,-0.95,-0.6,-0.35,-0.22,0.47,-0.89,0.01,-0.65,0.38,-0.5,0.36,-0.19,-0.04,-0.02,-0.57,-0.75,-0.09,-0.37,0.09,0.37,0.18,-1.14,0.05,-0.45,-0.35,-0.33,0.47,-0.18,-0.1,0.02,0.07,0.36,0.86,-0.3,-0.29,-0.57,0.25,0.28,0.03,-0.02,-0.49,0.36,0.09,-0.33,0.09,-0.4,-0.61,1.08,0.19,0.5,0.63,-0.05,0.58,0.58,-0.43,-0.17,-0.7,0.53,0.19,0.33,-0.34,0.44,0.44,-0.27,-1.18,0.56,-0.49,0.7,-0.5,0.25,0.13,-0.03,1.92,0.21,0.48,0.9,-0.37,0.03,0.4,0.05,-0.58,-0.47,-0.25,0.1,-0.59,-0.15,-0.47,0.26,-0.07,1.72,0.42,0.44,0.57,-1.16,-1.19,-0.95,-1.21,0.3,-0.71,-0.11,-0.02,0.62,0.22,-0.34,0.26,0.25,-0.15,-0.01,0.29,-0.12,0.21,-0.02,-0.57,-0.23,-1.36,-0.46,-0.82,0.6,0.35,-0.47,0.18,0.05,0.45,-0.42,-0.38,-0.11,0.06,-0.07,-0.51,-1.75,0.69,0.31,-0.62,0.51,0.27,0.78,0.09,-0.47,0.28,-0.56,0.15,-0.52,0.15,0.44,1.04,-0.41,-0.11,-0.11,-0.98,0.02,0.38,-0.21,-0.4,0.25,0.7,-0.25,-0.28,0.3,-0.01,0.28,-0.02,-0.38,0.07,-0.14,1.86,0.55,-0.09,-0.6,0.12,0.25,-1.25,0.17,-1.5,-0.27,-0.21,-0.42,0.55,-0.23,0.3,-0.85,0.63,0.74,0.06,0.06,0.33,1.89,-0.85,1.45,-0.18,-0.51,-0.12,-0.24,1.33,0.04,-0.24,0.1,0.08,0.2,0.44,-0.37,-0.85,0.75,-0.61,0.04,0.24,-0.22,-0.16,0.2,0.54,-0,-0.35,-0.48,-0.55,-0.29,0.23,0.22,0.04,0.61,1.27,0.72,0.26,-0.2,1.01,0.76,-1.36,-0.05,-0.37,-0.03,0.45,0.02,1.8,-0.44,-0.21,0.69,-1.66,1.26,0.2,0.12,0.07,0.3,0.33,0.14,-0.05,0.06,1.3,0.05,0.57,0.99,-0.46,0.66,-0.96,0.91,-0.02,0.12,0.19,1.78,-1.2,-1.2,-0.01,0.75,0.62,-0.06,-0.85,-0.72,0.99,0.08,-0.18,0.45,-0.82,-0.09,0.94,-0.12,0.37,0.19,0.7,0.03,0.17,-0.31,0.58,-0.97,-0.25,-0.58,0.33,0.53,-0.01,-0.1,1.84,-0.5,-0.65,-0.46,0.44,-0.44,-0.23,1.24,0.59,-0.33,-0.04,0.17,-0.22,-1.59,-0.17,-0.77,0.3,-0.88,0.53,-0.18,0.29,-0.64,-0.38,-0.78,1.38,0.18,-0.24,0.47,1.41,0.91,1.35,-0.56,-0.41,-0.15,-0.6,-0.62,-0.07,-0.3,1.11,0.34,0.3,-0.05,-0.07,0.19,-0.38,0.19,-0.26,-0.4,-0.03,0,0.51,-0.01,-0.75,0.72,0.9,-0.42,-1.21,0.6,1.03,-1.64,1.12,1.01,-0.12,-0.63,0.06,0.11,-0.19,0.14,0.65,0.22,-0.35,-0.64,-0.21,-0.6,0.13,0.21,-0.49,-0.99,-0.24,0.24,1.14,-0.16,0.36,0.16,0.59,-0.59,-0.75,-0.74,0.42,-0.6,-0.43,-0.84,0.16,-0.45,0.03,-0.65,0.45,1.63,1.12,0.19,1.07,0.39,-0.31,1.7,-0.74,-0.97,-0.02,0.28,-0.19,-0.53,-0.76,-0.16,-1.42,0.04,-0.32,0.2,0.45,0.13,0.12,0.06,0.55,0.42,-0.58,0.03,-0.22,-0.51,-0.05,0.24,-1.13,0.46,-1.33,0.27,0.21,1.22,-0.49,-0.62,0.82,-0.11,-0.58,-0.26,-0.21,0.3,0.11,-0.48,0.08,0.23,-0.27,-0.53,0.78,-0.18,-0.03,-0.25,0.61,0.25,0.13,0.15,-0.59,0.24,0.84,1.05,0.81,-0.07,-0.07,0.63,0.89,-0.27,-0.93,-0.43,-0.49,0.49,-0.14,0.16,-0.06,-0.25,-0.19,0.22,-0.24,-0.19,-0.58,0.19,-0.67,-0.09,0.09,-0.73,-0.06,0.23,-0.38,-0.29,0.34,0.17,0.61,-0.89,1.18,1.02,0.63,0.34,0.98,0.8,-0.1,-0.23,-0.46,0.02,-0,-0.43,0.23,-0.69,-1.06,0.2,1.2,-1.08,0.6,-0.39,-0.01,-0.25,0.44,0.34,-0.48,0.64,0.47,0.18,0.01,0.13,0.3,0.61,0.52,0.26,0.45,0.52,-0.44,-0.64,0.17,-0.31,-0.58,1.96,0.7,-0.11,-0.07,0.82,0.25,0.96,1.27,2.17,-0.41,0.43,0.41,-0.31,-0.18,-0.29,0.92,0.6,-0.36,0.25,-1.23,-1.82,0.1,-0.17,-0.92,-0.51,-0.38,-0.65,-0,0.32,-0.19,-0.25,0.66,0.96,-0.53,0.81,0.62,-0.44,-0.64,0.59,-0.25,1.25,0.45,0.38,1.05,0.24,0.4,-0.26,-0.04,0.46,-0.26,-0.28,1.81,-0.18,-0.09,-0.02,-0.33,0.1,0.3,1.78,-0.03,1.18,0.6,1.17,0.71,0.36,-0.52,-0.49,-0.19,-0.67,-0.4,-0.54,0.78,0.83,0.76,-0.26,-0.47,-0.68,-0.08,0.37,0.49,-0.41,0.05,1.33,0.02,-0.11,0.11,-0.49,-0.28,0.01,1.91,-0.38,0.84,-0.88,0.11,0.95,-1.44,-1.1,0.2,0.53,0,0.1,-0.85,0,0.45,2.01,-0.07,-0.52,0.36,0.31,0.16,0.14,0.64,0.53,-0.84,-0.12,-0.02,0.26,-0.15,0.61,0.4,-0.35,0.44,-0.52,-1.82,0.42,-0,0.09,-1.12,-1.82,-0.39,1.12,0.35,0.3,0.99,0.34,0.67,-0.21,0.39,-0.33,0.25,0.29,-1.42,0.74,-0.02,-1.12,-0.63,0.5,-1.29,0.38,-0.2,-0.49,0.09,-0.09,0.37,0.04,0.05,-0.68,-0.07,0.14,-0.39,-0.78,0.17,0.2,-0.33,-0.8,-0.82,-0.41,0.5,-0.23,0.22,0.39,-2.13,-1.51,0.1,0.69,-0.09,0.05,-0.25,-0.42,1.4,0.21,-1.26,0.97,-0.74,0.32,0.26,-0.38,0.63,1.26,0.32,-0.27,-0.29,-0.42,0.26,0.23,0.54,-0.7,0.37,-0.11,-0.85,0.2,-0.39,1.03,-2.3,0.63,-0.01,0.09,0.43,-0.12,0.7,0.1,-0.43,0.36,1.18,0.12,-0.05,-0.37,0.28,0.15,-0.42,-0.01,-0.65,0.63,-0.32,-0.24,0.4,0.33,0.26,0.18,-0.27,-0.25,-0.08,0.13,-0.37,0.74,1,0.34,-0.07,0.67,0.25,-1.1,-1.04,-0.54,0.28,-0.1,-0.47,-0.95,-1.09,0.58,-0.08,-0.05,-0.45,0.19,-0.04,-0.04,-0.48,1.3,0.28,1.36,0.3,0.58,-0.02,0.4,-0.12,0.09,1.19,0.44,1.29,0.29,-0.51,0.48,0.42,-0.84,-0.22,0,-0.38,0.51,0.43,0.27,0.44,-0.08,0.26,-0.68,-0.28,-0.37,-0.38,-0,0.5,-1.2,0.54,-0.59,0.56,0.75,0.13,0.43,-0.34,-0.18,1.24,-0.18,0.22,-0.09,0.09,0.07,0.48,0.44,-0.65,0.04,-0.38,-0.73,0.3,0.83,-0.25,-0.25,-1.32,-0.17,-1.19,-0.66,0.72,0.34,0.02,-0.9,0.19,-0.05,-0.1,0.17,0.13,0.14,-0.68,0.03,-0.24,0.05,0.19,1.24,0.12,0.1,0.6,0.39,-1.48,0.19,-0.33,-0.02,-0.68,-0.2,0.5,-1.33,-0.11,-0.06,0.98,-0.56,-0.58,0.07,-0.14,0.46,0.3,0.26,0.76,-0.74,-0.04,0.22,-1.24,-0.66,-0.34,0.52,-0.9,-0.01,0.5,-0.15,0.28,0.41,0.5,-0.63,-1.13,0.82,-0.34,0.19,-0.84,0.21,0.11,-0.01,-0.46,0.12,-0.67,0.77,0.49,-0.5,-0.74,-0.06,0.35,0.11,0.56,-0.06,-0.34,-0.19,0.06,-0.33,-0.38,-0.46,-0.01,-0.45,0.77,0.49,0.9,0.87,0,0.11,0.24,1.62,0.09,1.56,-1.13,0.96,0.83,0.92,0.29,-1.06,0.37,0.11,-0.25,-0.6,-0.57,-0.07,0.48,-0.25,0.76,-0.11,-0.22,-0.52,1.55,0.03,0.75,0.4,0.12,0.06,-0.23,0.13,1.46,0.02,0.37,-0.28,-0.4,-0.11,0.94,0.45,-0.5,0.3,-0.03,-0.46,1.77,-0.36,0.25,0.59,0.59,0.11,0.61,0.53,-0.08,-0.95,-1.31,0.36,-1.36,0.51,-0.26,0.79,-0.66,0.39,-0.36,-0.42,-0.54,-0.9,0.64,0.41,-0.39,-0.26,-0.09,-0.05,-0.05,0.37,0.39,0.48,-1.67,1.88,-0.63,-0.96,-0.9,1.23,0.41,-0.14,0.13,2.49,0.24,0.28,0.57,-0.6,0.52,-0.8,-0.6,-0.96,0.63,0.54,0.37,0.22,0.11,0.17,0.77,0.77,-0.22,0.22,-0.41,0.79,-0.13,0.37,1.75,0.16,0.13,0.06,-0.28,-0.13,0.05,0.07,0.1,0.7,1.17,-0.7,-0.26,-0.22,0.22,-0.01,-0.71,1.43,-0.75,-0.3,0.63,-0.07,-0.13,0.51,1.27,0.85,-0.01,-0.15,-0.27,0.14,-0.14,0.08,0.68,0.12,0.46,-0.12,-0.38,0.68,1.27,-1.29,-0.37,-0.01,-0.61,0.02,0.4,0.86,-0.68,-0.09,0.7,0.17,-0.44,0.08,0.02,0.61,-0.15,0.27,0.17,0.26,-0.92,0.63,1.1,-1.07,-0.52,-0.94,0.16,0.62,-0.14,0.13,0.84,-0.17,-0.76,-0.95,0.76,0.3,0.82,-0.29,-0.01,-0.04,0.08,-0.12,0.39,0.89,0.45,-0.65,0.57,-0.34,-0.66,0.09,0.49,0.61,-0.66,-0.59,1.06,0.44,0.35,-0.22,0.09,-0.47,-0.15,-0.77,-0.3,0.28,-0.18,-0.06,1.31,0.05,0.51,-0.04,0.72,-0.62,1.45,-0.42,0.23,-0.07,-0.49,-0.6,0.76,-0.76,-0.55,-0.29,1.18,0.37,0.13,-0.64,-0.42,0.25,0.28,-0.77,0.14,0,0.91,0.34,0.18,-0.55,1.97,-0.13,-0.03,-0.8,0.72,-0.02,-0.12,0.41,-0.41,-0.67,0.26,0.25,-0.38,0.09,-0.58,-0.41,0.04,0.66,-0.15,-0.04,0.15,-0.35,-0.24,-1.47,0.4,0.27,0.03,-0.35,-1.03,-0.9,-0.01,-1.18,-0.09,-0.76,2.09,0.54,0.45,-0.39,-0.32,-0.68,0.13,0.31,0.39,-1.19,0.19,-0.77,0.38,-0.47,0.86,0.06,0.51,0.03,0.35,-0.01,0.38,-0.16,-0.74,-1.65,-0.35,-0.13,-0.68,-0.16,0.37,0.22,0.1,0.18,0.17,-0.43,-0.32,-0.7,-0.23,-0.59,0.12,-0.44,0.04,0.09,0.37,0.86,0.51,-1.86,0.33,-1.37,0.41,1.15,-0.17,-0.04,0.52,-0.02,-0.08,0.25,0.98,0.05,0.8,-0.79,0.61,0.71,0.45,0.62,-0.1,-0.78,-0.63,0.1,0.48,1.24,-1.36,0.01,0.53,0.48,-0.07,0.26,0.1,0.44,0.64,-0.28,-0.11,-0.19,-0.2,-0.91,0.35,-0.66,0.75,0.47,-0.46,-0.18,0.21,0.09,0.85,-0.4,0.28,0.13,0.02,0.69,-0.11,-0.15,0.28,-0.17,-0.29,0.1,-0.17,-0.29,-0.03,0.14,0.82,-0.98,0.49,-0.45,0.07,-1.68,-1.11,-0.18,-1.72,0.14,-0.8,-0.98,0.37,-1.45,-0.32,0.11,0.14,1.02,0.04,0.26,0.61,0.14,0.25,-0,-0.81,-0.33,0.48,-1.15,0.55,-0.06,-1.04,-0.43,0.85,-0.2,-0.38,-0.28,-0.21,-0.03,-1.1,-1.98,-0.7,0.34,-0,-0.89,-1.15,0.73,0.68,-0.85,-0.45,0.98,0.11,-0.1,0.2,0.43,0.77,0.58,-0.28,-0.8,2.03,0.07,-0.55,-0.08,0.29,0.34,-0.11,0.47,0.36,-1.39,-0.24,-0.14,0.77,0.98,0.84,-0.38,-0.92,0.54,-0.26,0.4,0.67,-0.05,0.04,0.06,-0.17,0.3,0.12,-0.54,0.15,0.4,-0.34,0.05,0.09,0.18,0.57,0.27,-0.08,-1.03,0.41,-0.77,-0.06,-0.92,0.48,0.2,-0.43,1.18,0.8,0.24,0.34,-1.77,-0.35,-1.42,-0.49,-1.69,0.92,1.23,-0.36,0.64,0.25,0.33,-0.13,-0.7,0.5,0.85,-0.28,-0.26,0.08,0.03,0.83,0.39,-0.47,1.29,-0.13,0.22,0.18,-0.52,0.21,0.51,-0.26,-1.29,-0.57,-0.33,-0.14,-0.74,-0.32,-0.56,-0.39,0.5,-0.14,0.14,-1.09,-0.2,-0.25,-0.92,-0.1,-0.07,0.38,-0.28,0.5,0.06,0.75,-0.76,0.07,-0.58,0.76,0.57,1.94,0.46,1.26,0.17,-0.41,0.2,-0.8,0.97,-1.5,-0.03,-0.13,0.55,-1.5,0.13,-1.03,-0.15,0.25,0.13,-0.27,-0.17,-1.21,0.06,-0.04,0.81,0.53,0.25,-0.78,0.12,-0.08,-0.41,0.5,0.62,-0.06,0.68,-0.62,-0.32,0.41,0.52,0.16,-0.38,1.09,-0.22,-0.2,0.14,0.17,-0.35,0.05,0.13,0.76,0.51,0.22,-0.11,0.1,0.05,-0.36,0.22,-0.21,-1.67,1.25,-0.07,0.27,0.13,2.7,0.17,-1.1,0.54,0.96,0.46,0.49,0.1,0.2,-0.03,0.45,0.13,0.05,-0.65,-0.3,0.66,-0.46,0.12,-0.16,0.35,-0.77,0.2,-0.57,0.76,0.18,0.11,0.02,-0.28,-0.62,-0.65,-0.12,0.32,-0.48,0.38,0.91,-0.69,-0.6,0.09,1.15,-0.57,0.05,0.3,-0.07,0.28,-0.01,-0.03,0.95,0.83,-0.97,0.04,-0.58,-0.96,0.23,0.81,-0.11,-0.54,0.58,-0.39,0.78,0.4,-0.32,-0.38,-0.57,-0.11,-0.08,-0.08,-0.57,0.33,-0.33,0.27,-1.12,1.37,-1.64,-2.13,-0.14,-1.43,0.06,0.13,0.03,0.08,0.22,-0.4,0.12,0.29,-0.93,0.81,0.46,-0.18,0.39,-1.82,0.52,-0.45,0.1,-0.65,-0.2,-0.42,0.25,-0.22,0.12,-0.28,1.16,0.5,0.28,-1.01,0.38,1.33,0.61,0.03,0.75,0.57,-0.1,0.18,0.41,0.54,-0.03,0.61,0.05,0.34,-0.18,0.38,-0.38,0.41,-0.39,-0.26,1.37,-0.34,0.17,0.49,-0.11,-0.15,0.87,0.13,-0.2,0.04,-0.09,0.58,0.82,-0.05,0.35,0.12,-0.02,0.11,0.11,0.2,-0.16,0.06,-0.39,0.58,-0.75,-0.08,0.22,-0.1,-0.26,-0.94,-0.19,0.31,-0.17,1.21,-0.88,0.22,-1.27,0.75,-0.05,0.96,-0.39,0.52,-0.15,0.08,-0.33,0.26,-0.16,-0.86,0.16,-0.55,0.51,0.08,0.07,1.51,0.48,-0.22,0.91,0.63,1.31,0.97,-0.05,-0.21,0.55,0.57,0.36,-0.23,0,-0.28,-0.4,0.34,-0.23,0.47,0.66,0.63,0.1,-0.07,0.1,0.23,-0.25,0.45,0.18,-0.46,-0.35,-0.38,0.53,-0.18,0.01,0.01,0.57,-0.44,0.13,0.78,-0.15,0.26,0.17,1.1,-0.09,-0.52,-0.12,0.38,0.64,0.18,-0.65,0.07,-0.66,0.12,1.45,0.5,0.06,0.04,0.7,0.66,0.08,-1.54,0.45,0.16,0.01,-0.06,-0.27,0.3,0,-0.44,-0.89,0.64,1.1,0.5,0.32,-0.48,-0.28,0.44,0,-0.02,0.13,-0.45,-0.02,-0.82,-0.26,0.7,0.37,0.2,1.99,-0.07,0.29,1.79,-1.05,0.39,0.7,0.07,-0.39,-1.65,0.34,0.23,-0,-0.86,0.27,-1.43,0.38,0.44,0.45,1.33,0.16,-0.26,1.01,0.12,-0.56,-0.47,-0.18,-0.21,-0.62,-0.8,-0.09,0.27,-0.48,0.06,-0.24,0.67,-0.19,-0.8,0.85,-0.19,-0.86,0.79,-0.76,0.22,0.1,-0.74,1,0.3,-0.98,-0.44,-0.19,-0.86,-0.13,0.17,-0.04,0.37,0.23,0.95,-0.88,0.18,0.19,-0.12,0.05,-0.27,0.43,1.16,0.19,0.51,0.05,0.56,-0.08,-3.39,-0.44,-0.93,0.07,-0.42,0.99,0.33,-0.31,0.11,0.33,0.39,-0.85,-0.53,-0.75,1.18,-1.21,0.83,-0.25,-0.74,-0.33,-0.46,1.62,0.16,-0.55,-0.13,-0.14,-0.21,-0.66,0.04,1.08,0.59,-0.02,-1.14,0.54,-0.83,-0.3,0.54,0.73,0.41,0.07,-0.14,0.16,-0.33,-0.32,0.35,-0.41,-0.11,0.32,-0.77,-0.44,-0.08,2.65,-0.38,0.15,-0.49,0.31,0.18,0.18,-0.01,0.16,0.23,-0.21,0.54,-0.37,0.71,-0,0.76,0.07,-0.28,-0.15,0.33,-0.49,-0.25,-0.12,-0.66,-0.7,-0.56,-0.12,-0.12,0.06,0.78,-0.35,0.34,0.19,1,-0.17,0.67,-1.53,-0.54,0.8,0.34,-1.59,0.52,-0.1,0.42,-0.86,-0.78,-0.18,0.02,-0.42,-0.01,-0.11,-0.6,0.73,0.48,0.36,-0.47,-0.25,0.28,-0.72,0.25,-0.66,0.43,0.16,-0.31,0.68,-0.41,0.77,-0.05,-0.46,0.61,0.05,-0.67,-2.07,-0.82,-0.85,-0.03,0.76,-0.28,0.79,-0.74,-0.17,-0.1,-0.83,-0.22,0.78,0.97,-0.1,0,-0.16,0.93,0.83,0.77,-0.12,-0.41,0.13,-0.13,0.07,0.34,0.02,-0.55,-0.54,0.28,-0.05,0.48,0.42,0.4,0.37,0.14,-0.74,-1.09,0.19,-0.37,0.3,-0.08,-0.26,0.27,0.13,0.03,0.79,0.04,0.21,-0.35,-0.71,0.25,-0.16,-0.66,-0.08,-0.74,0.13,0.15,0.09,-0.18,-0.45,-0.51,-0.32,-0.63,0.16,-0.33,0.37,1.46,0.48,-0.35,0.54,-0.7,0.8,-0.06,-0.5,0.43,-0.2,0,1.4,-0.53,0.72,-0.54,-0.54,0.52,-0.19,1.18,0.32,-0.87,0.52,-0.02,0.46,-0.43,-0.08,-1,0.87,-0.29,0.57,-0.6,-0.61,0.09,0.49,-0.06,-0.85,-0.18,0.2,0.04,0,0.64,-1.17,-0.08,0.25,-0.68,0.1,-0.44,-1.41,0.65,-0.76,0.84,-0.22,1.48,-0.1,0.58,-0.9,0.2,-1.21,0.35,-0.48,0.37,0.13,0.28,0.49,-0.39,-0.5,-0.17,0.36,0.22,-0.77,-0.13,0.11,-0.06,0.4,0.99,0.57,1.64,-0.21,0.18,0.1,-0.1,0.1,-0.28,0.49,0,-1.68,-0.68,-0.04,0.02,-0.22,0.58,0.29,-1.43,-0.35,-0.55,-0.2,0.54,-0.22,-0.1,1.11,-0.01,-0.43,-0.6,-0.1,0.92,-0.15,-0.32,0.81,0.45,0.51,0.33,0.41,0.31,-0.04,0.05,-0.05,-0.32,-0.71,-0.04,-0.92,-0.52,0.22,0.48,-0.32,-0.46,-1.11,-0.31,0.71,-0.65,0.06,0.67,0.89,0.4,0.27,0.31,-0.32,-0.3,0.76,0.34,-0.02,-0.77,-0.52,-1.27,1.23,1.09,0.53,0.64,0.06,0.04,0.33,-0.21,0.94,-0.62,0.39,0.16,-0.1,0.54,-0.15,0.27,-0.16,-0.21,0.03,0.44,-0.05,-0,-0.64,0.33,0.79,0.43,0.14,0.24,0.31,-0.23,0.17,1.01,-1.18,0.48,-0.02,0.2,0.55,0.35,0.21,0.38,0.17,0.04,-0.08,-0.06,0.25,0.78,0.09,-0.35,-0.2,0.26,0.49,-0.31,-0.18,0.06,-0.66,0.36,-0.61,-0.29,-0.67,0.38,-0.17,0.31,0.5,0.25,-0,-0.54,0.56,0.34,0.7,0.04,0.31,0.51,0.16,-0.71,0.05,-0.04,-0.07,-0.17,0.42,0.43,-0.07,-0.53,-0.17,-0.12,0.04,-0.22,1.54,0.58,0.34,-0.35,0.51,-0.82,-0.87,0.29,-1.15,0.93,0.18,0.61,-0.03,0.51,-0.07,1.18,-0.05,0.08,-0.67,0.04,1.35,-0.71,-0.24,-0.54,-0.26,-0.38,-0.35,-0.64,0.56,0.06,0.48,1.27,0.94,-0.08,-0.17,0.64,-0.5,-0.61,0.24,-0.36,0.2,0.29,0.32,0.46,0.4,-0.81,-1.07,-0.15,-0.75,0.34,0.05,-0.2,0.55,0.51,-1.49,0.85,-0.03,-0.59,-0.68,-1.61,-0.39,-0.08,-0.38,-0.13,0.14,1.26,-0.01,0.12,-0.35,0.73,0.87,0.41,0.09,0.27,-0.6,-0.33,0.38,-0.29,-1.19,-0.17,0.03,0.69,-0.61,0.67,0.29,0.53,-0.73,0.16,0.19,0.83,1.34,-0.96,-0.29,-0.09,-0.32,0.33,-1.44,-1.16,0.64,-0.62,-0.63,-0.52,0.16,1.44,-0.17,-0.35,-0.01,0.11,0.63,0.35,-0.75,0.39,0.25,0.17,-0.01,-0.4,0.31,0.47,0.24,0.3,0.03,-0.35,0.19,0.46,-1.53,-0.43,0.04,-1.38,0.79,0.05,0.16,0.2,-0.04,0.23,-0.32,0.24,0.26,-0.31,0.18,-0.88,-1.41,-0.42,-0.87,0.65,-0.08,0.05,0.67],\"y\":[1.28,0.99,1.62,1.82,1.25,1.64,1.06,1.07,2.69,0.9,1.15,1.03,0.45,0.52,2.06,2.81,1.12,1.04,1.09,1.15,1.35,0.79,0.8,1.28,1.77,1.28,1.35,0.69,0.7,0.67,0.5,2.54,1.29,0.42,1.5,1.36,0.44,1.45,0.76,1.54,0.89,1.49,1.85,1.58,0.95,0.99,1.92,0.75,0.81,0.49,1.38,0.7,0.26,2.32,0.48,1.04,3.15,1.46,0.78,0.97,0.76,0.32,2.82,1.43,0.66,2.38,0.95,1.51,1.31,1.66,0.71,0.93,1.36,2.3,0.91,1.61,0.91,0.49,0.74,1.87,0.88,2.27,1.29,0.89,1.29,0.91,1.52,1.6,1.99,1.22,1.29,0.34,0.72,1.67,0.52,1.93,2.58,1.55,0.67,0.89,0.8,3.06,1.81,1.11,1.98,2.36,0.79,1.03,1.12,0.69,0.59,1.38,2.27,2.67,1.62,1.16,2.03,1.22,0.65,2.43,0.75,2.18,1.59,1.71,1.14,1.78,2.97,1.58,0.92,2.05,2.76,0.87,1.07,0.77,0.78,0.81,0.49,1,0.82,0.79,0.58,0.66,0.54,1.95,0.13,1.34,0.91,0.95,1.51,0.98,2.17,1.22,1.12,0.77,0.62,2.38,1.32,0.91,1.7,0.95,0.4,1.4,1.62,0.94,0.54,0.98,2.44,0.9,1.47,0.72,0.67,0.84,1.56,0.67,1.14,0.85,1.02,0.62,1.75,1.17,3.53,0.93,1.21,0.95,1.17,1.01,1.82,0.48,0.57,2.1,1.21,1.05,0.85,1.59,1.98,1.4,1.06,1.32,1.69,1.04,1.07,1.95,0.89,1.9,1.15,1.64,0.33,1.11,1.07,0.39,0.92,2.47,0.7,1.73,1.81,0.89,2.04,2.08,0.5,2.11,2.52,1.58,0.69,1.11,0.71,1.23,1.2,1.13,3.38,1.69,2.18,1.97,0.79,1.5,2.17,0.94,1.19,3.15,0.97,1.08,1.04,1.24,1.04,0.57,1.94,2.2,1.09,1.07,0.72,2.18,3.25,1.52,1.57,2.91,1.78,1.7,0.77,1.22,1.05,1.7,1.76,1.43,1.57,1.37,1.1,1.07,0.86,2.54,1.9,1.47,0.8,1.3,1.81,1.84,0.98,2.66,0.97,1.19,1.39,1.63,1.66,1.12,0.38,0.78,1.12,0.73,1.15,1.18,1.38,0.65,0.98,0.62,0.76,0.57,1.05,1.35,2.48,0.85,0.93,2.41,1.51,2.31,0.79,1.17,1.26,0.66,0.99,0.58,1.49,1.27,1.2,0.95,0.59,1.06,1.34,1.94,2.38,2.05,1.45,0.99,1.71,1.52,2.18,0.77,1.45,1.34,2.39,1.1,1.82,2.03,1.14,2.27,0.32,1.19,0.8,0.87,1.67,0.71,2.33,1.15,1.17,1.77,1.19,1.8,1.41,1.39,0.63,0.55,1.46,1.31,0.5,0.98,0.67,0.81,1.55,1.38,1.62,0.5,1.71,0.92,1.7,0.92,0.8,2.84,0.57,0.45,1.7,0.56,0.74,2.61,1,2.02,1.07,1.41,1.09,1.56,0.92,1.4,0.66,1.3,0.94,1.12,0.94,0.62,0.9,1.7,3.03,1,1.42,2.1,1.26,0.69,1.59,0.89,2.6,0.69,0.78,1.31,1.15,0.52,1.73,1.21,1,1.11,1.15,0.85,1.04,0.58,1.48,0.94,0.87,0.44,1.69,0.7,1.06,1.56,1.2,2.14,1.3,1.63,1.5,0.85,0.73,0.83,0.72,0.67,0.7,0.71,1.63,0.81,1.85,1.37,2.22,1.03,0.84,0.84,1.5,1.47,0.88,1.68,0.68,0.93,1.39,0.84,1.65,0.71,1.06,0.44,1.31,0.81,0.61,1.38,1.41,1.51,1.39,1.74,0.99,3.78,0.83,1,1.04,0.92,0.8,0.8,1.82,1.1,1.35,1.72,3.19,0.99,1.61,0.58,1.76,0.73,0.88,0.53,3.02,1.33,1.88,1.77,1.46,0.82,0.46,0.6,0.93,1.88,1.42,0.92,1.93,1.44,0.9,1.2,1.26,2.4,1.61,0.84,0.87,0.4,1.49,1.24,0.96,0.52,0.87,1.99,1.47,0.88,1.47,0.79,0.84,1.42,0.99,1.4,1.79,1.2,0.8,1.23,1.77,2.07,1.1,1.33,1.06,0.76,1,1.59,0.78,1.35,0.31,1.34,1.34,1.21,1.31,0.98,0.79,2.15,1.94,1.3,0.94,1.93,0.55,1.72,0.65,1.22,0.75,1.14,1.19,0.58,1.47,0.68,1.27,1.58,1.02,0.53,2.5,0.61,1.35,1.45,1.05,1.66,0.88,0.57,1.24,1.18,1.37,2.73,1.17,2.15,1.5,0.87,1.25,1.12,1.49,1.44,1.16,1.36,1.57,1.34,0.58,1.23,1.22,0.3,2.29,1.06,0.27,2.53,1.21,1.36,0.24,1.62,0.34,2.19,1.79,1.05,1.47,1.11,1.03,0.78,0.78,0.94,1.48,1.77,1.15,0.88,0.67,0.63,1.24,1.73,1.1,0.67,0.54,0.92,0.62,2.23,0.93,1.5,0.56,1.94,1.3,0.95,0.94,1.72,0.92,1.21,1.15,2.05,1.85,0.78,0.69,0.76,2.79,1.26,2.26,1.76,1.22,1.79,1.57,1.72,1.76,0.45,2.28,1.51,1.05,1.18,0.94,0.16,0.87,0.88,1.24,1.76,0.88,0.7,1.12,0.82,0.85,1.22,0.66,2.14,1.28,1.35,0.8,1.93,2.95,3.18,2.01,0.88,1.85,0.3,0.79,1.3,1.66,1.68,2.11,1.2,0.59,1.07,1.01,0.91,1.17,0.07,1.12,0.54,1.41,1,1.98,1.39,0.97,1.45,1.5,1.35,1.3,1.39,0.62,0.47,0.94,0.32,1.28,2.14,1.64,1.75,0.82,1.15,1.25,1.48,0.63,0.54,1.03,1.49,1.56,0.79,0.87,1.53,1.6,0.83,0.68,0.77,1.73,1.26,1.41,1.33,0.78,0.68,2.08,1.37,0.65,1.28,0.57,0.62,0.27,1.8,0.56,1.26,1.96,1.57,1.09,1.9,1.61,0.4,1.99,1.32,1.72,0.79,0.32,0.91,0.84,1.12,0.9,1.25,2.46,1.75,0.68,0.77,0.74,2.54,1.49,2.63,1.15,1.48,1.26,0.75,2.23,1.57,1.17,0.98,0.67,1.43,0.71,1.35,1.18,0.99,1.74,1.16,1.01,0.97,2.15,0.68,1.34,0.8,0.5,1.46,0.73,1.73,1.32,1.78,0.72,1.91,1.35,1.03,0.75,1.8,2.18,1.65,1.76,0.73,1.28,0.55,1.05,1.67,1.87,0.99,2.3,0.71,3.49,1.86,0.34,1.43,1.32,1.26,1.41,0.76,0.43,1.7,1.96,0.6,2.19,1.33,0.64,1.26,1.94,1.11,1.15,0.54,0.47,2.27,1.46,1.47,0.63,2.54,1.41,0.87,1.84,1.21,1.97,0.86,0.83,1.06,1.3,1.33,2.46,1.41,0.75,0.99,1.59,1.5,0.37,0.97,1.55,1.32,1.37,0.8,2.72,1.74,0.37,1.07,2.3,1.69,0.9,1.12,1.05,1.61,1.38,3.82,0.71,2.13,0.29,0.68,0.96,1.69,0.55,1.41,1.18,1.51,0.84,1.8,0.93,0.95,0.58,1.07,2.2,1.03,0.56,0.76,1.97,1.5,1.79,0.64,1.23,0.67,1.81,1,0.67,0.94,2.32,1.23,0.51,1.83,0.74,1.68,0.92,1.62,1.09,1.6,0.78,1.28,0.57,1.37,1.57,1.52,1.16,1.6,3.06,0.71,1.6,2.42,1.52,1.06,1.29,1.88,0.39,1.69,0.83,1.43,1.17,1.16,0.9,1.37,1.07,0.79,0.66,1.11,0.82,1.35,1.23,1.62,1.47,1.41,0.77,1.04,1.15,1.2,0.94,1.37,0.86,1.73,0.73,1.23,0.31,0.87,1.52,1.6,1.09,1.94,1.78,1.06,1.69,1.87,2.11,2.18,1.56,1.08,1.26,1.33,0.47,1.34,1.03,1.55,2.73,0.93,0.47,1.2,0.61,0.64,1.93,0.9,2.15,0.68,1.17,2.19,0.67,1.21,0.76,2.43,1.8,1.23,1.5,0.45,0.68,1.41,0.82,1.51,2.61,0.78,1.05,0.73,1.13,0.48,0.9,0.81,1.17,1.1,1.41,1.31,1.18,0.42,0.68,0.55,2.52,0.67,1.28,0.56,1.04,0.78,1.75,1.4,1.58,1.59,1.48,1.55,1.59,2.35,1.7,0.63,2.29,0.78,1.61,1.57,0.5,1.75,0.34,1.62,1.84,1.56,2.24,1.07,0.97,0.93,1.26,1.04,1.13,1.37,1.45,1.36,0.91,1.88,0.93,2.03,1.96,1.43,1.13,1.65,1.46,1.15,1.17,0.59,1.12,0.19,1.42,2.13,0.71,0.73,2.53,0.67,1.5,1.28,1.27,1.04,0.66,1.4,1.08,1.45,1.05,0.73,1.2,0.88,1.09,0.68,0.41,2.34,0.78,0.56,1.19,0.92,1.42,1.14,1.28,1.23,0.98,2.22,1.16,1.78,0.52,0.89,2.61,1.57,2.55,3.13,1.33,1,1.72,1.54,0.73,1.06,1.3,1.56,1.09,0.83,1.9,2.06,0.7,1.08,1.52,1.43,0.65,1.56,1.31,1.13,1.25,0.73,2.38,1.21,1.51,2.32,1.96,1.23,0.85,1.24,1.43,1.41,1.59,1.21,2.25,0.74,1.44,0.53,0.7,1.52,1.31,1.1,2.3,0.75,1.08,0.67,0.48,1.55,2.04,1.97,1.3,2.12,1.5,2.09,1.19,1.45,1.82,1.76,1.05,2.11,1.27,1.06,1.07,1.34,1.57,0.47,1.23,0.86,1.22,1.18,0.77,2.16,0.5,1.85,0.84,0.22,0.71,0.74,1,1.25,2.69,0.68,0.9,2.21,1.38,1.49,1.68,1.67,0.43,1.22,0.26,0.95,1.94,0.39,1.93,2.46,3.65,0.62,0.76,1.95,0.67,0.27,1.66,0.84,1.87,0.78,0.64,0.65,1.08,1.32,1.01,0.68,1,1.26,2.36,1.33,1.36,0.48,1.47,2.91,1.57,1.56,0.81,0.4,2.44,0.96,1.49,1.09,0.91,1.18,0.91,1.04,3.04,1.31,0.31,1.46,1.44,0.93,1.63,0.88,1.04,1.44,1.59,1.36,1.91,1.08,0.6,0.97,1.01,1.92,0.59,2.05,0.79,0.79,0.8,1.42,1.41,1.34,0.54,1.52,1.05,1.16,2.36,1.83,0.63,2.22,1.41,1.74,1.17,2.07,3.55,1.85,1.96,1.51,1.95,1.93,1.39,0.61,2,2.37,1.05,1.01,1.04,0.59,1.17,1.07,1.71,0.97,0.65,0.33,1.63,2.3,0.75,1.49,2.76,0.75,0.91,0.79,0.44,3.7,2.27,1.48,2.07,0.94,1.54,1.2,1.23,1.61,2.74,1.49,0.91,2.01,1.27,1.17,0.89,0.59,1.34,1.18,0.58,1.08,1.58,0.6,1.25,0.89,1.49,1.01,1.42,1.09,0.33,1.62,1.11,1.51,1.4,1.02,1.13,1.55,1.09,1.38,1.49,1.45,0.4,1.35,1.89,1.33,1.25,1,1.57,2.34,0.88,1.5,1.32,0.87,1.53,0.91,1.87,0.79,2.09,1.76,1.5,0.86,2.53,2.25,1.78,1.66,1.13,1.9,1.31,0.65,0.78,0.5,1.47,0.98,0.5,1.28,0.83,1.04,0.64,0.58,1.74,2.26,0.86,1.23,1.22,1.45,0.54,1.8,2.03,1.21,1.59,0.74,0.81,0.95,1.3,1.05,1.54,1.43,1.37,0.2,0.98,0.99,0.87,1.22,1.51,0.56,1.7,0.68,1.47,2.61,1.64,1.08,1.34,1.34,1.99,1.53,0.58,0.9,0.56,1.69,1.21,1.86,0.73,1.31,0.29,1.35,0.28,0.79,2.27,1.04,2.22,0.77,0.92,1.23,1.28,0.44,0.82,1.42,1.46,0.27,1.94,0.99,1.53,0.95,1.12,0.84,0.84,0.73,1.74,2.48,1.27,1.67,1.25,1.02,0.68,0.87,1.63,1.08,0.79,1.3,0.76,1.02,0.65,1.14,1.55,1.17,1.93,0.64,2.64,1.44,1.04,1.52,1.64,0.75,1.09,1.91,1.11,1.05,1.12,2.54,0.59,0.46,1.2,1.4,1.85,1.51,1.06,0.78,1.52,1.68,2.09,1.09,1.48,1.54,1.11,2.98,0.58,1,1.85,4.07,1.71,1.61,1.22,1.79,1.54,1.18,0.53,1.59,0.81,0.81,0.6,1.44,1.15,0.93,1.09,0.8,1.6,1.8,1.9,1.12,3.16,1.12,1.41,1.03,1.03,0.3,0.57,0.94,1.75,0.29,0.68,1.2,0.77,1.84,1.2,1.01,1.06,2.92,0.66,0.59,2.96,0.8,1.28,1.62,0.88,1.36,1.52,1.14,0.97,1.82,1.83,0.9,2.6,1.38,0.74,2.15,0.81,0.91,0.59,1.17,1.46,1.19,1.38,2.12,1.53,0.92,0.71,0.73,1.03,0.97,1.05,2.15,2.42,2.8,1.41,1.66,1.49,1.81,1.68,1.42,1.6,3.05,0.85,0.67,1.65,1.58,1.03,2.81,1.24,1.79,1.01,1.22,1.2,1.14,1.26,1.37,1.61,2.3,0.93,0.75,1.07,2.22,0.72,1.44,4.72,0.84,0.96,0.53,0.59,1.63,0.26,2.2,0.48,1.48,2.02,1.59,0.49,0.67,0.37,0.98,1.61,2.12,1.73,0.46,1.28,0.37,0.8,1.53,2.12,1.25,1.11,0.67,1.38,1.02,1.61,1.24,1.5,0.7,0.55,0.83,2.5,0.94,1.95,1.4,0.68,0.4,0.98,1.26,0.55,1.53,0.89,0.52,2,1.02,1.81,1.25,1.02,1.08,1.48,2.64,1.03,0.51,1.76,1.2,2.84,1.58,0.77,1.15,1.16,1.12,0.88,1.41,1.48,1.92,1.29,1.65,2.05,1.21,0.92,1.04,1.26,1.14,0.28,0.44,1.72,0.94,0.69,1.12,1.27,1.49,1.09,0.86,1.49,1.31,0.8,0.77,1.55,1.26,1.06,0.74,1.03,1.33,1.19,1.52,0.56,1.26,0.48,0.79,1.85,2.5,1.68,1.01,1.07,1.09,1.97,1.21,2.22,0.27,1.03,0.76,1.26,1.16,1.72,1.39,1.78,0.81,1.07,1.55,1.4,1.54,0.49,1.35,1.18,0.69,1.39,1.75,0.79,0.94,3.66,0.93,2.33,2.42,1.57,0.15,0.42,1.18,1.27,2.02,1.81,0.7,0.99,0.55,0.87,0.94,0.72,1.3,0.88,1.1,2.46,2.43,0.91,2.03,0.6,0.99,0.52,1.68,1.61,0.99,1.07,2.24,1.04,1.36,2.82,1.07,1.7,1.08,0.59,1.29,1.92,0.67,1.07,1.39,0.9,0.89,1.35,1.29,2.24,0.6,1.14,0.51,1.5,1.17,0.76,1.11,1.43,2,1.03,0.78,0.97,0.23,1.11,0.55,1.46,0.82,0.72,1.07,1.35,0.92,1.12,1.78,1.15,1.02,0.86,0.51,0.87,1.24,1.15,2.83,1.68,1.97,0.94,2.29,0.83,1.37,1.13,2.06,0.76,1.53,1.34,1.4,1.76,1.28,1.28,0.98,0.76,0.98,2.09,1.24,1.79,1.1,0.92,2.05,2.27,0.68,1.08,0.73,1.19,1.46,1.19,0.97,1.32,0.71,0.97,0.78,0.62,1.94,1.63,1.21,2.26,1.07,0.73,1.39,1.79,1.47,0.98,0.78,0.64,1.44,0.29,1.71,1.94,0.51,1.06,1,1.17,1.41,0.55,0.92,0.45,0.77,1.71,1.74,0.66,0.78,0.89,2.1,1.26,0.9,2.04,0.74,1.28,1.26,1.47,2.08,0.33,0.8,0.33,1.37,0.94,0.58,1.79,0.76,1.72,0.72,1.04,1.17,0.85,1.75,0.64,0.47,1.52,0.58,1.31,2.07,0.74,0.88,0.66,0.55,1.81,2.03,1.19,1.18,0.49,1.12,2.11,2.89,1,3.3,1.19,1.84,0.71,0.97,0.94,0.5,1.35,1.16,1.46,1.58,2.5,0.98,1.45,1.1,1.25,1.5,0.96,2.24,3.05,1.78,0.61,1.21,1.26,1.9,1.43,0.85,2.54,1.44,0.82,1.54,1.49,1.39,0.52,0.94,1.18,1.17,1.4,1.07,0.41,0.79,1.08,0.4,1.67,1.46,1.69,0.82,1.3,1.98,1.67,0.81,0.61,1.18,1.46,2.02,1.55,1.6,1.31,1.1,0.49,2.3,1.05,2.5,1.65,2.2,1.25,1.59,1.07,1.29,1.32,1.09,0.89,1.62,1.36,2.46,1.03,0.8,1.63,0.4,1.2,1.98,1.08,1.89,0.19,0.77,2.11,1.39,0.38,1.53,0.61,1.86,1.12,0.66,1.5,1.71,1.93,0.75,1.65,1.96,1.46,0.79,1.8,0.6,0.64,1.06,0.43,0.64,1.49,1.86,1.02,0.89,1.23,1.63,0.35,0.83,1.28,0.97,3.5,1.13,1.79,0.67,0.72,0.89,1.38,1.44,2.97,0.4,0.71,2.35,2.21,0.65,1.12,1.17,1.51,0.55,1.37,0.95,2.14,0.61,0.23,1.06,0.9,0.98,1.56,1.4,1.86,1.2,1.79,0.98,0.9,1.18,1.28,0.56,1.79,1.91,0.74,0.91,2.09,0.35,1.39,1.55,2.18,1.58,0.8,1.38,1.24,0.96,1.05,0.46,1.42,0.39,1.56,1.56,1.02,1.75,1.5,0.87,1.11,0.52,3.14,1.39,2.11,0.64,1.87,1.81,2.14,0.73,1.17,0.99,0.98,1.73,0.65,1.81,0.77,1.01,1.86,1.58,0.7,0.98,1.55,0.98,1.03,1.13,0.92,0.96,1.17,1.26,1.33,1.35,0.82,2.11,0.87,1.69,1.42,0.97,2.99,2.68,2.32,1.16,0.89,1.21,0.46,1.48,1.39,0.39,2.16,1.26,1.14,0.7,2.74,1.49,0.66,1.46,0.56,0.59,0.82,1.39,1.14,1.33,0.95,0.62,1.05,1.85,1.05,1.51,0.98,1.42,1.14,1.9,1.43,1.65,2.42,2.59,0.94,2.3,0.75,0.99,1.16,1.12,0.75,0.55,0.86,0.93,1.63,1.08,0.67,0.86,0.63,3.11,1.71,1.08,1.13,1.66,1.17,0.74,1.87,1.19,0.4,1.56,1.48,0.71,0.9,1.56,0.74,1.7,2.04,0.94,1.42,1.44,0.49,0.41,0.95,1.05,0.9,1.02,0.73,0.92,2.43,1.37,1.33,1.64,1.02,0.62,1.88,1.68,2.41,1.6,1.51,2.26,2.39,0.25,0.65,0.48,1.5,1.71,1.63,0.75,1.08,0.77,1.06,0.69,0.93,1.41,0.85,1.86,1.11,1.12,1.12,1.71,0.35,1.05,1.53,1.57,0.4,0.9,0.96,2.18,1.88,0.58,2.39,2.15,1.81,1.59,1.71,1.16,0.86,0.95,0.86,1.31,1.03,1.8,1.17,1.9,1.28,0.36,0.98,1.56,1.18,2.7,1.98,1.3,1.86,2.1,0.6,0.89,1.12,3.05,0.97,0.85,0.38,1.18,0.72,0.86,1.07,1.64,2.35,1.4,1.41,0.51,0.99,1.61,2.32,0.6,0.72,0.8,1.47,0.85,0.74,0.4,0.62,1.42,0.85,0.68,0.72,1.06,0.65,0.67,1.68,1.67,1.43,0.82,1.01,1.24,1.69,0.69,1.96,0.81,0.91,1.76,1.62,0.72,1.04,1.06,1.99,2.49,0.69,2.17,1.46,0.63,0.48,0.49,1.21,1.57,0.82,0.53,2.58,0.7,1.49,1.53,0.69,0.49,0.38,1.06,0.61,0.44,1.73,1.25,0.5,1.19,2.28,0.81,1.59,0.41,2.39,0.23,0.57,2.95,1.48,1.6,1,1.45,0.78,2.34,0.87,1.27,1.66,1.4,0.77,1.62,1.2,0.65,0.85,2.39,1.21,1.18,1.18,0.93,0.9,0.9,0.69,0.77,1.15,1.31,0.49,1.36,1.13,0.93,0.51,1.15,0.93,1.25,1.34,1.94,2.03,1.38,1.97,0.58,0.37,1.13,1.74,1.63,1.54,0.73,0.8,1.82,0.74,1.01,0.46,0.56,0.69,1.84,1.32,0.59,0.91,1.27,0.87,0.73,2.73,1.7,0.58,1.72,0.64,1.14,2.25,3.65,1.08,1.64,1.46,1.38,1.1,0.98,2.19,2.18,1.83,0.99,1.7,2.21,0.85,1.55,1.61,0.99,0.49,2.13,1.5,0.99,3.64,0.86,0.93,0.76,1.48,1.22,1.37,1.5,2.4,0.96,2.59,2.22,1.16,2.07,1.19,0.88,1.95,0.61,1.21,0.78,0.51,1.8,1.35,1.82,1.31,1.61,0.65,1.15,1.85,0.44,2.86,0.87,1.06,0.85,1.15,0.81,0.44,0.58,2.39,0.89,0.7,0.84,1.57,1,0.71,1.64,1.21,0.8,1.12,1.23,1.81,1.18,0.39,0.88,1.43,0.67,1.33,0.35,0.88,1.73,0.85,1.44,0.97,1.15,0.47,1.16,1.81,1.32,1.44,0.95,2.18,1.13,0.77,2.03,1.35,1.44,1.18,0.62,1.24,0.58,0.24,1.3,1.02,0.94,0.57,1.22,1.75,1.99,0.99,1.21,1.24,1.39,1.84,0.8,1.14,1.69,1.5,1.17,0.92,2.33,0.48,1.15,3.33,1.12,1.24,2.15,0.77,0.95,1.41,2.43,1.23,1.21,2.01,2.12,1.33,1.22,0.8,1.45,0.57,1.36,1.56,1.42,1.29,1.12,0.91,0.67,1.22,0.69,0.67,0.66,1.02,0.4,1.12,1.47,1.65,2.57,1.07,0.98,1.46,1.45,1.5,1.45,0.83,1.4,0.68,1.78,0.24,0.42,2.15,1.23,1.33,0.84,1.11,1.43,0.73,1.15,1.18,2.21,1.22,2.2,0.48,1.46,0.89,1.04,0.52,0.78,2.17,1.79,1.1,1.87,2.23,1.23,1.36,1.06,1.36,1.03,0.81,0.86,1.25,0.86,1.59,0.99,1.23,1.35,1.45,0.88,0.48,1.38,2.23,1.92,1.02,0.56,0.94,1.98,0.22,1.19,2.22,2.18,0.91,2.06,1.92,0.52,0.87,1.73,1.62,0.44,1.51,0.68,0.82,1.44,1.6,0.69,1.44,0.77,1.38,0.78,2.79,1.62,2.06,1.79,1.16,1.89,1.47,2.82,2.01,2.26,2,1.36,1.08,0.93,2.85,0.73,3.45,0.78,2.23,1.15,0.88,0.79,2.21,1.34,1.66,2.59,0.8,1.1,1.72,1.89,1.05,0.99,1.52,0.65,1.49,2.17,0.79,1.09,2.96,1.22,1.7,1.03,0.31,1.41,1.05,1.63,1.94,0.7,1.17,0.83,2.03,1.37,1.63,2.46,1.55,1.09,0.85,1.53,0.57,0.75,1.57,0.93,1.06,1.65,0.89,1.32,1.33,0.25,2.09,1.43,2.1,0.97,1.57,1.03,0.91,1.16,1.52,1.12,2.18,1.24,0.95,1.18,1.14,1.52,1,0.67,1.21,1.34,1.42,1.52,1.35,1.87,1.66,0.87,1.73,2.37,1.65,2.1,1.86,1.71,1.09,1.98,1.25,0.55,1.06,1.53,0.9,0.53,2,1.08,0.58,0.77,1.41,1.05,0.55,1.71,0.53,1.56,0.83,0.76,1.12,0.82,2.04,1.53,1.35,0.57,1.41,1.23,2.03,1.97,0.77,1.72,1.35,0.82,1.5,0.67,0.59,1.19,0.71,1.91,0.61,2.4,1.56,1.02,0.84,1.07,2.78,1.45,1.21,1.4,0.77,1.56,0.74,1.29,1.44,0.95,0.89,0.78,2.26,0.51,0.64,1.29,1.36,1.04,2.71,0.26,0.84,1.28,0.97,1.17,0.52,1.41,0.57,1.12,1.32,0.95,0.71,0.73,0.95,1.98,2.62,0.44,2.05,1.27,0.89,0.86,0.56,1.75,1.12,1.05,1.64,1.2,1.55,1.42,1.27,0.71,1.07,1.43,1.19,1.46,1.72,1.1,2.4,1.53,0.79,1.34,0.41,1.29,0.97,1.74,1.59,2.18,2.01,3.4,1.48,0.33,0.98,1.26,0.89,0.67,2.08,1.4,1.09,0.63,1.88,1.22,1.06,1.04,1.2,0.78,1.32,0.48,1.01,0.54,0.95,1.06,3.5,2.39,2.63,1.91,2.18,2.18,1.47,1.06,1.13,2.66,2.01,1.97,0.26,1.21,1.69,2.12,1.34,1.01,0.66,2.22,1.08,1.67,0.62,0.72,2.1,1.37,1.03,1.08,1,1.11,0.94,0.91,1.25,0.71,0.85,1.93,1.57,3.92,2.9,0.29,1.25,0.65,1.67,1.58,1.26,1.78,1.34,1.62,0.42,1.52,1.05,1.14,0.53,2.06,0.94,0.89,1.35,3.64,1.58,1.29,1.8,2.33,0.89,1.49,1.89,0.77,0.39,1.05,1.43,1.1,2.27,0.98,1.76,3.15,1.86,1.06,1.64,0.7,1.67,1.3,1.07,1.5,1.78,1,0.7,3.2,1.81,0.92,2.2,1.24,1.5,0.33,1.53],\"marker\":{\"colorbar\":{\"title\":\"cor\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38,0.15,0.53,0.07,0.37,0.03,0.16,-0.41,-0.64,0.18,-0.22,-0.57,-0.07,-0.34,0.11,0.07,0.18,-0.13,-0.51,-0.49,-0.63,-0.8,0.07,-0.18,0.33,0.78,0.21,-0.28,0.4,-0.66,0.59,-0.06,-0.61,0.5,-0.16,0,0.88,-0.53,0.59,-0.4,-0.37,0.6,-0.4,0.85,0.14,-0.45,0.51,-0.03,0.49,-0.22,-0.37,-0.84,0.39,-0.14,0.63,-0.29,-0.31,0.18,0.56,-0.04,-0.53,-0.41,0.13,0.06,0,0.44,-0.73,-0.12,0.17,-0.88,0.07,-0.56,-0.5,0.4,-0.37,0.47,-0.19,0.78,-0.07,0.2,-0.45,0.09,-0.6,0.26,-0.44,0.4,0.05,0.39,0.14,-0.49,-0.22,-0.14,0.41,0.28,-0.35,-0.1,0.07,-0.02,0.5,0.9,0.33,0.87,-0.2,0.19,0.07,-0.15,0.06,-0.13,0.62,0,-0.57,-0.56,-0.02,0.02,-0.7,0.41,0.28,-0.88,-0.18,-0.78,-0.17,0.66,-0.11,-0.07,0.68,-0,-0.27,-0.55,-0.12,0.6,-0.26,-0.42,0.51,0.48,0.48,0.2,0.46,0.24,-0.03,0.2,-0.03,-0.23,-0.34,-0.04,-0.59,-0.5,0.24,0.42,-0.21,-0.41,-0.51,-0.25,0.75,-0.55,0.05,0.44,0.89,0.6,0.23,0.23,-0.22,-0.19,0.56,0.18,-0.01,-0.88,-0.3,-0.53,0.75,0.52,0.28,0.38,0.05,0.02,0.26,-0.39,0.88,-0.41,0.43,0.31,-0.05,0.5,-0.26,0.36,-0.11,-0.2,0.05,0.26,-0.1,-0,-0.78,0.44,0.7,0.52,0.07,0.16,0.23,-0.4,0.12,0.83,-0.58,0.24,-0.02,0.12,0.41,0.43,0.14,0.56,0.28,0.03,-0.11,-0.03,0.41,0.32,0.06,-0.34,-0.24,0.24,0.18,-0.22,-0.15,0.05,-0.86,0.23,-0.83,-0.22,-0.46,0.4,-0.19,0.4,0.22,0.49,-0,-0.42,0.41,0.33,0.26,0.17,0.37,0.4,0.16,-0.61,0.1,-0.03,-0.13,-0.15,0.32,0.46,-0.09,-0.72,-0.18,-0.06,0.02,-0.51,0.75,0.45,0.38,-0.4,0.9,-0.47,-0.78,0.28,-0.7,0.77,0.11,0.43,-0.02,0.72,-0.07,0.82,-0.05,0.06,-0.39,0.03,0.57,-0.46,-0.3,-0.4,-0.63,-0.3,-0.36,-0.37,0.35,0.03,0.24,0.37,0.64,-0.24,-0.18,0.51,-0.56,-0.9,0.12,-0.26,0.18,0.47,0.17,0.38,0.38,-0.78,-0.89,-0.19,-0.57,0.7,0.05,-0.37,0.58,0.48,-0.43,0.36,-0.01,-0.31,-0.31,-0.74,-0.27,-0.08,-0.33,-0.05,0.07,0.64,-0.04,0.1,-0.2,0.34,0.65,0.4,0.13,0.12,-0.56,-0.2,0.62,-0.4,-0.57,-0.12,0.03,0.64,-0.6,0.6,0.31,0.58,-0.59,0.22,0.23,0.43,0.85,-0.25,-0.1,-0.33,-0.26,0.5,-0.86,-0.74,0.5,-0.35,-0.47,-0.32,0.37,0.95,-0.16,-0.31,-0.02,0.05,0.67,0.39,-0.56,0.11,0.16,0.14,-0,-0.17,0.35,0.32,0.13,0.39,0.07,-0.33,0.14,0.41,-0.68,-0.43,0.02,-0.44,0.42,0.05,0.1,0.29,-0.03,0.18,-0.3,0.16,0.14,-0.31,0.26,-0.28,-0.78,-0.46,-0.39,0.52,-0.05,0.15,0.44],\"size\":12,\"opacity\":1,\"line\":{\"colorbar\":{\"title\":\"\",\"ticklen\":2},\"cmin\":-0.99,\"cmax\":0.98,\"colorscale\":[[\"0\",\"rgba(40,155,248,1)\"],[\"0.0416666666666666\",\"rgba(72,153,242,1)\"],[\"0.0833333333333333\",\"rgba(93,151,237,1)\"],[\"0.125\",\"rgba(109,149,231,1)\"],[\"0.166666666666667\",\"rgba(122,147,226,1)\"],[\"0.208333333333333\",\"rgba(134,146,221,1)\"],[\"0.25\",\"rgba(144,143,215,1)\"],[\"0.291666666666667\",\"rgba(154,141,210,1)\"],[\"0.333333333333333\",\"rgba(163,139,204,1)\"],[\"0.375\",\"rgba(171,137,199,1)\"],[\"0.416666666666667\",\"rgba(178,135,193,1)\"],[\"0.458333333333333\",\"rgba(185,133,188,1)\"],[\"0.5\",\"rgba(192,130,183,1)\"],[\"0.541666666666667\",\"rgba(199,128,177,1)\"],[\"0.583333333333333\",\"rgba(205,125,172,1)\"],[\"0.625\",\"rgba(211,123,167,1)\"],[\"0.666666666666667\",\"rgba(216,120,162,1)\"],[\"0.708333333333333\",\"rgba(222,117,156,1)\"],[\"0.75\",\"rgba(227,114,151,1)\"],[\"0.791666666666667\",\"rgba(232,111,146,1)\"],[\"0.833333333333333\",\"rgba(237,108,141,1)\"],[\"0.875\",\"rgba(241,105,136,1)\"],[\"0.916666666666667\",\"rgba(246,101,130,1)\"],[\"0.958333333333333\",\"rgba(251,98,125,1)\"],[\"1\",\"rgba(255,94,120,1)\"]],\"showscale\":false,\"color\":[0.83,-0.15,-0.39,-0.16,0.77,-0.93,0.57,0.13,0.05,-0.23,-0.36,-0.39,-0.6,0.21,0.36,-0.76,-0.73,0.69,-0.11,0.54,-0.15,0.34,-0.09,-0.63,0.5,0.12,-0.17,-0.24,0.29,-0.79,-0.65,-0.5,0.32,-0.02,0.65,-0.08,0.88,0.86,0.45,-0.22,0.49,0.29,0.05,-0.47,-0.32,0.17,0.49,0,0.17,0.45,0,-0.04,-0.09,-0.37,0.58,0.05,-0.16,0.03,0.2,-0.74,0.35,-0.77,0.29,-0.12,0.41,0.71,-0.05,-0.18,0.49,0.02,-0.49,0.45,-0.09,0.65,0.52,-0.34,0.14,-0.57,-0.25,0.54,-0.53,0.18,-0.31,-0.15,0.2,0.52,-0.3,-0.11,-0.27,0.33,0.03,-0.5,0.58,0.4,-0.44,0.01,0.46,0.29,-0.3,0.25,-0.4,0.42,-0.49,0.36,0.45,0.63,-0.61,-0.88,0.31,0.63,0.8,-0.23,0.19,-0.05,0.05,-0.84,0.41,0.01,0.08,0.18,-0.63,0.26,0.53,-0.24,0.68,0.63,-0.04,-0.15,0.16,-0.09,-0.22,0.59,0.33,0.57,-0.43,0.23,-0.08,0.78,-0.46,0.33,-0.67,-0.89,-0.66,-0.41,0.07,-0.45,-0.12,-0.29,-0.2,-0.56,0.85,0.12,0.44,0.34,-0.81,0.08,-0.41,0.25,0.7,-0.09,-0.78,-0.96,0.15,0.06,-0.41,-0.85,-0.56,0.42,-0.31,-0.09,-0.82,0.04,0.57,0.36,0.08,-0.21,0.33,-0.6,0.17,-0.68,-0.56,0.52,0.07,0.92,-0.14,0.05,-0.21,0.3,0.09,0.6,0.48,0.37,0.24,0.77,-0.73,0.52,-0.06,0.25,0.07,-0.12,-0.71,-0.07,-0.04,0.33,0.31,0.34,0.54,-0.19,0.69,-0.7,-0.54,0.54,-0.24,0.51,0.33,0.36,-0.81,0.04,0.06,0.83,0.04,0.18,-0.39,-0.01,0.38,-0.53,0.43,-0.53,-0.32,0.74,-0.62,0.62,0.09,-0.51,-0.88,0.47,-0.84,0.81,0.44,0.79,-0.25,-0.28,0.39,-0.2,-0.71,-0.77,0.56,-0.1,0.41,-0.18,0.24,0.44,0.31,0.55,0.25,0.78,0.41,0.05,-0.86,-0.5,-0.4,0.74,0.48,0.94,0.05,0.4,0.12,0.05,-0.11,-0.71,-0.51,0.14,0.76,0.04,-0.35,-0.86,-0.49,-0.54,0.25,-0.74,0.81,0.1,0.02,0.42,0.07,-0.71,0.14,0.47,-0.54,-0.56,-0.66,-0.05,-0.87,-0.11,-0.19,0.57,-0.11,0.18,-0.36,-0.69,-0.52,0.13,0.5,-0.29,-0.21,0.3,-0.45,0.28,-0.09,0.5,0.54,-0.07,0.16,-0.13,0.6,0.03,0.25,0.5,-0.72,0.52,0.39,-0.51,0.22,0.62,0.06,-0.15,-0.09,-0.45,-0.27,0.51,0.43,0.07,0.44,0.56,-0.3,0.52,0.29,-0.07,-0.38,-0.82,0.31,-0.47,0.8,0.11,0.61,0.11,0.4,-0.71,0.84,0.57,0.66,-0.33,-0.69,-0.16,-0.44,0.27,0.65,-0.28,-0.02,-0.11,0.27,0.59,0.38,0.38,-0.25,-0.41,-0.2,0.06,-0.13,0.57,-0.17,-0.37,0.11,0.08,0.68,0.62,0.19,0.54,0.42,0.8,-0.73,0.29,0.25,0.26,0.41,0.39,-0.38,-0.22,-0.18,-0.24,0.71,0.06,-0.5,-0.52,0.06,-0.33,-0.14,0.1,-0.45,-0.65,0.05,-0.62,-0.47,-0.14,0.24,0.39,0.04,-0.08,0.3,-0.34,0.45,0.13,-0.67,0.39,-0.84,0.84,0.63,0.24,-0.25,0.03,-0.43,-0.19,0.64,-0.83,0.29,-0.31,-0.02,0.02,-0.15,-0.66,-0.29,0.46,-0.59,0.33,0.39,0.03,0.33,-0.01,0.12,0.34,0.15,-0.76,-0.07,0.12,-0.26,0.26,0.27,-0.1,0.38,-0.26,-0.61,0.3,0.1,0.58,-0.11,-0.29,0.12,0.55,-0.12,-0.41,-0.69,0.16,-0.07,-0.23,-0.13,-0.79,0.7,-0.65,-0.41,0.02,-0.04,0.27,0.37,0.04,-0.18,0.51,0.13,-0.44,0.73,0.15,-0.68,-0.5,0.2,0.72,-0.24,0.19,-0.43,0.49,0.13,0.68,-0.23,-0.28,-0.28,-0.38,-0.37,0.57,-0.83,0.24,-0.09,-0.48,0.5,0.77,-0.12,0.1,-0.17,0.2,-0.18,0.23,-0.11,-0.52,-0.47,-0.3,-0.11,-0.31,-0.6,-0.07,-0.03,0.61,0.37,0.45,-0.36,-0.2,0.38,0.11,0.36,-0.4,-0.51,-0.27,0.54,-0.49,-0.02,-0.1,0.55,0.11,-0.57,0.16,0.08,-0.83,-0.89,-0.34,-0.7,0.24,0.65,-0.42,-0.33,0.31,0.49,-0.06,0.01,-0.24,-0.05,0.04,0.45,0.12,0.43,0.32,0.19,0.01,-0.64,0.3,0.81,0.7,0.84,-0.15,-0.44,0.3,-0.63,-0.69,-0.28,-0.2,0.31,-0.62,0.01,-0.48,0.24,-0.37,0.62,-0.16,-0.04,-0.08,-0.25,-0.71,-0.35,-0.15,0.08,0.27,0.76,-0.71,0.16,-0.21,-0.2,-0.31,0.32,-0.16,-0.1,0.03,0.09,0.38,0.58,-0.17,-0.26,-0.65,0.36,0.43,0.03,-0.01,-0.44,0.53,0.16,-0.36,0.14,-0.18,-0.66,0.72,0.35,0.26,0.49,-0.05,0.62,0.34,-0.46,-0.14,-0.61,0.26,0.1,0.43,-0.49,0.57,0.16,-0.22,-0.52,0.31,-0.4,0.39,-0.32,0.14,0.07,-0.06,0.84,0.14,0.46,0.77,-0.4,0.16,0.45,0.06,-0.47,-0.27,-0.28,0.14,-0.53,-0.18,-0.55,0.21,-0.11,0.8,0.33,0.32,0.72,-0.6,-0.41,-0.3,-0.6,0.34,-0.38,-0.36,-0.03,0.48,0.14,-0.2,0.12,0.21,-0.26,-0.01,0.28,-0.14,0.18,-0.27,-0.51,-0.42,-0.96,-0.46,-0.41,0.43,0.36,-0.33,0.12,0.04,0.34,-0.3,-0.6,-0.23,0.06,-0.21,-0.4,-0.82,0.42,0.18,-0.75,0.44,0.22,0.53,0.15,-0.87,0.27,-0.38,0.1,-0.66,0.18,0.29,0.65,-0.5,-0.16,-0.15,-0.57,0.02,0.27,-0.16,-0.51,0.36,0.34,-0.18,-0.42,0.23,-0.02,0.46,-0.08,-0.21,0.12,-0.11,0.95,0.35,-0.08,-0.32,0.08,0.64,-0.63,0.13,-0.87,-0.33,-0.66,-0.46,0.66,-0.2,0.34,-0.68,0.25,0.42,0.09,0.07,0.45,0.74,-0.57,0.55,-0.16,-0.35,-0.1,-0.33,0.6,0.02,-0.2,0.1,0.12,0.14,0.62,-0.28,-0.72,0.75,-0.35,0.03,0.23,-0.22,-0.07,0.29,0.41,-0.01,-0.71,-0.33,-0.75,-0.17,0.17,0.12,0.05,0.32,0.95,0.7,0.34,-0.11,0.46,0.46,-0.77,-0.07,-0.29,-0.06,0.43,0.01,0.96,-0.44,-0.09,0.97,-0.47,0.68,0.61,0.08,0.05,0.24,0.23,0.19,-0.12,0.04,0.66,0.09,0.26,0.74,-0.71,0.52,-0.5,0.82,-0.02,0.23,0.41,0.79,-0.82,-0.82,-0.01,0.3,0.44,-0.07,-0.46,-0.59,0.5,0.09,-0.21,0.43,-0.63,-0.06,0.38,-0.09,0.49,0.19,0.44,0.02,0.46,-0.32,0.38,-0.74,-0.18,-0.72,0.12,0.3,-0.03,-0.1,0.8,-0.3,-0.72,-0.41,0.42,-0.28,-0.17,0.33,0.83,-0.16,-0.14,0.25,-0.22,-0.94,-0.31,-0.55,0.25,-0.59,0.63,-0.1,0.31,-0.67,-0.65,-0.73,0.63,0.18,-0.42,0.63,0.72,0.6,0.75,-0.87,-0.34,-0.23,-0.33,-0.62,-0.11,-0.32,0.48,0.27,0.6,-0.03,-0.09,0.11,-0.42,0.12,-0.24,-0.25,-0.04,0,0.9,-0.01,-0.47,0.48,0.78,-0.26,-0.4,0.85,0.65,-0.68,0.74,0.96,-0.09,-0.33,0.14,0.07,-0.23,0.09,0.56,0.19,-0.39,-0.47,-0.19,-0.76,0.21,0.19,-0.6,-0.73,-0.19,0.15,0.78,-0.11,0.46,0.16,0.51,-0.49,-0.8,-0.54,0.48,-0.35,-0.6,-0.68,0.51,-0.52,0.02,-0.41,0.42,0.84,0.63,0.18,0.63,0.21,-0.15,0.78,-0.47,-0.9,-0.01,0.21,-0.41,-0.39,-0.74,-0.1,-0.52,0.04,-0.68,0.17,0.74,0.2,0.06,0.06,0.26,0.62,-0.5,0.02,-0.34,-0.42,-0.07,0.1,-0.62,0.37,-0.89,0.59,0.3,0.87,-0.6,-0.41,0.32,-0.15,-0.55,-0.36,-0.18,0.62,0.12,-0.59,0.07,0.21,-0.19,-0.4,0.66,-0.42,-0.05,-0.47,0.24,0.37,0.1,0.27,-0.57,0.3,0.48,0.75,0.51,-0.05,-0.05,0.41,0.56,-0.12,-0.55,-0.68,-0.22,0.63,-0.09,0.1,-0.12,-0.14,-0.55,0.14,-0.13,-0.12,-0.26,0.18,-0.69,-0.1,0.07,-0.71,-0.05,0.17,-0.26,-0.21,0.38,0.09,0.65,-0.44,0.6,0.71,0.56,0.21,0.67,0.69,-0.09,-0.39,-0.41,0.11,-0,-0.2,0.32,-0.95,-0.42,0.3,0.8,-0.84,0.47,-0.37,-0.01,-0.18,0.41,0.24,-0.45,0.88,0.39,0.21,0.01,0.2,0.73,0.26,0.66,0.46,0.38,0.56,-0.31,-0.56,0.13,-0.26,-0.59,0.88,0.6,-0.06,-0.14,0.93,0.1,0.61,0.5,0.69,-0.31,0.44,0.24,-0.2,-0.24,-0.27,0.71,0.39,-0.33,0.3,-0.65,-0.88,0.14,-0.15,-0.6,-0.35,-0.59,-0.42,-0,0.29,-0.15,-0.35,0.28,0.8,-0.35,0.35,0.32,-0.35,-0.76,0.48,-0.17,0.89,0.28,0.32,0.47,0.32,0.28,-0.5,-0.06,0.3,-0.2,-0.25,0.79,-0.23,-0.09,-0.03,-0.68,0.06,0.15,0.9,-0.02,0.56,0.4,0.56,0.59,0.25,-0.28,-0.28,-0.18,-0.32,-0.32,-0.51,0.73,0.62,0.49,-0.56,-0.38,-0.79,-0.06,0.31,0.64,-0.19,0.1,0.72,0.03,-0.5,0.15,-0.66,-0.28,0.01,0.71,-0.55,0.93,-0.4,0.08,0.64,-0.86,-0.66,0.47,0.43,0.01,0.1,-0.44,0.01,0.23,0.82,-0.02,-0.84,0.47,0.16,0.24,0.5,0.39,0.63,-0.45,-0.15,-0.03,0.39,-0.14,0.46,0.4,-0.51,0.44,-0.41,-0.77,0.32,-0,0.18,-0.76,-0.63,-0.25,0.72,0.43,0.75,0.41,0.35,0.45,-0.19,0.43,-0.28,0.27,0.28,-0.47,0.56,-0.07,-0.77,-0.44,0.53,-0.79,0.43,-0.19,-0.34,0.06,-0.06,0.2,0.04,0.08,-0.7,-0.07,0.07,-0.66,-0.38,0.21,0.25,-0.41,-0.56,-0.58,-0.31,0.92,-0.15,0.21,0.34,-0.9,-0.83,0.16,0.31,-0.06,0.03,-0.21,-0.2,0.39,0.11,-0.65,0.64,-0.38,0.16,0.19,-0.62,0.32,0.53,0.31,-0.27,-0.28,-0.72,0.23,0.21,0.31,-0.72,0.57,-0.34,-0.52,0.09,-0.53,0.69,-0.83,0.84,-0.01,0.11,0.97,-0.03,0.31,0.07,-0.21,0.39,0.76,0.1,-0.04,-0.23,0.1,0.1,-0.46,-0,-0.51,0.54,-0.36,-0.4,0.3,0.28,0.44,0.17,-0.17,-0.42,-0.07,0.15,-0.25,0.73,0.7,0.31,-0.2,0.41,0.22,-0.73,-0.74,-0.53,0.25,-0.07,-0.43,-0.69,-0.73,0.4,-0.19,-0.04,-0.24,0.14,-0.03,-0.04,-0.31,0.55,0.32,0.91,0.23,0.67,-0.02,0.44,-0.07,0.12,0.57,0.25,0.86,0.33,-0.2,0.21,0.24,-0.51,-0.19,0,-0.29,0.78,0.55,0.54,0.3,-0.08,0.53,-0.53,-0.33,-0.35,-0.6,-0,0.29,-0.53,0.63,-0.48,0.46,0.52,0.24,0.24,-0.17,-0.15,0.78,-0.24,0.27,-0.1,0.07,0.06,0.31,0.31,-0.47,0.19,-0.38,-0.73,0.35,0.67,-0.17,-0.45,-0.78,-0.25,-0.81,-0.25,0.44,0.31,0.02,-0.67,0.1,-0.04,-0.17,0.19,0.24,0.08,-0.57,0.02,-0.32,0.04,0.64,0.92,0.43,0.13,0.26,0.38,-0.67,0.25,-0.36,-0.01,-0.53,-0.46,0.61,-0.94,-0.07,-0.22,0.51,-0.56,-0.38,0.07,-0.12,0.54,0.36,0.35,0.44,-0.3,-0.03,0.13,-0.99,-0.65,-0.51,0.6,-0.55,-0.01,0.64,-0.11,0.36,0.41,0.76,-0.55,-0.73,0.7,-0.18,0.29,-0.32,0.15,0.11,-0.01,-0.28,0.16,-0.61,0.4,0.44,-0.48,-0.66,-0.02,0.59,0.23,0.46,-0.04,-0.19,-0.13,0.06,-0.42,-0.25,-0.27,-0.01,-0.41,0.52,0.32,0.81,0.29,0.01,0.11,0.13,0.4,0.05,0.97,-0.92,0.54,0.54,0.78,0.54,-0.67,0.46,0.14,-0.43,-0.41,-0.49,-0.08,0.44,-0.31,0.47,-0.06,-0.12,-0.47,0.49,0.03,0.53,0.39,0.11,0.18,-0.41,0.14,0.83,0.05,0.54,-0.24,-0.52,-0.06,0.78,0.44,-0.47,0.1,-0.04,-0.78,0.6,-0.45,0.2,0.36,0.67,0.08,0.4,0.46,-0.08,-0.52,-0.71,0.4,-0.52,0.37,-0.36,0.37,-0.81,0.42,-0.62,-0.36,-0.37,-0.76,0.46,0.19,-0.26,-0.28,-0.13,-0.07,-0.05,0.38,0.37,0.22,-0.69,0.67,-0.45,-0.58,-0.61,0.68,0.25,-0.1,0.08,0.82,0.29,0.42,0.35,-0.38,0.51,-0.28,-0.48,-0.54,0.62,0.44,0.31,0.19,0.09,0.13,0.48,0.33,-0.23,0.3,-0.38,0.36,-0.19,0.26,0.37,0.19,0.14,0.1,-0.48,-0.08,0.19,0.03,0.21,0.47,0.58,-0.44,-0.52,-0.33,0.58,-0.01,-0.44,0.67,-0.43,-0.65,0.49,-0.18,-0.17,0.34,0.6,0.68,-0.01,-0.23,-0.19,0.14,-0.09,0.06,0.45,0.17,0.83,-0.15,-0.15,0.73,0.65,-0.92,-0.54,-0.01,-0.63,0.02,0.72,0.56,-0.76,-0.17,0.35,0.17,-0.24,0.06,0.02,0.57,-0.1,0.1,0.16,0.51,-0.52,0.53,0.39,-0.68,-0.68,-0.82,0.14,0.56,-0.15,0.09,0.57,-0.09,-0.59,-0.58,0.37,0.24,0.89,-0.28,-0.01,-0.04,0.29,-0.26,0.23,0.95,0.65,-0.59,0.45,-0.23,-0.6,0.11,0.33,0.46,-0.82,-0.77,0.69,0.35,0.33,-0.3,0.08,-0.35,-0.12,-0.5,-0.54,0.22,-0.37,-0.07,0.71,0.02,0.31,-0.04,0.67,-0.57,0.74,-0.34,0.1,-0.25,-0.47,-0.79,0.61,-0.65,-0.32,-0.21,0.66,0.45,0.12,-0.41,-0.3,0.16,0.58,-0.57,0.12,0.01,0.66,0.19,0.23,-0.59,0.54,-0.14,-0.01,-0.33,0.46,-0.13,-0.3,0.35,-0.32,-0.33,0.15,0.36,-0.38,0.16,-0.67,-0.44,0.05,0.51,-0.17,-0.04,0.06,-0.14,-0.26,-0.72,0.67,0.28,0.07,-0.21,-0.64,-0.91,-0.01,-0.52,-0.09,-0.56,0.74,0.5,0.26,-0.36,-0.54,-0.52,0.07,0.47,0.37,-0.85,0.21,-0.86,0.28,-0.36,0.38,0.11,0.45,0.06,0.23,-0.01,0.5,-0.14,-0.51,-0.82,-0.34,-0.17,-0.7,-0.71,0.34,0.4,0.07,0.23,0.23,-0.4,-0.24,-0.76,-0.2,-0.33,0.1,-0.43,0.05,0.18,0.42,0.7,0.45,-0.66,0.2,-0.7,0.43,0.5,-0.21,-0.03,0.46,-0.01,-0.1,0.17,0.73,0.04,0.46,-0.62,0.48,0.72,0.59,0.64,-0.05,-0.63,-0.35,0.09,0.53,0.6,-0.6,0.02,0.49,0.65,-0.06,0.18,0.08,0.45,0.48,-0.39,-0.11,-0.24,-0.32,-0.47,0.22,-0.55,0.33,0.44,-0.63,-0.13,0.12,0.06,0.87,-0.52,0.44,0.09,0.07,0.4,-0.06,-0.3,0.26,-0.17,-0.25,0.07,-0.32,-0.32,-0.08,0.19,0.48,-0.56,0.73,-0.59,0.08,-0.8,-0.88,-0.2,-0.85,0.19,-0.62,-0.77,0.25,-0.69,-0.97,0.14,0.42,0.74,0.04,0.44,0.34,0.18,0.15,-0,-0.78,-0.28,0.56,-0.66,0.86,-0.12,-0.68,-0.74,0.65,-0.1,-0.5,-0.32,-0.32,-0.05,-0.61,-0.98,-0.59,0.29,-0,-0.8,-0.54,0.25,0.68,-0.26,-0.38,0.53,0.16,-0.11,0.21,0.86,0.57,0.5,-0.19,-0.5,0.81,0.07,-0.38,-0.07,0.23,0.23,-0.12,0.21,0.12,-0.78,-0.38,-0.11,0.61,0.52,0.59,-0.45,-0.36,0.38,-0.32,0.26,0.45,-0.04,0.08,0.06,-0.14,0.25,0.09,-0.51,0.37,0.51,-0.32,0.13,0.06,0.13,0.34,0.33,-0.06,-0.52,0.25,-0.94,-0.1,-0.78,0.33,0.1,-0.27,0.73,0.61,0.22,0.71,-0.77,-0.34,-0.57,-0.3,-0.77,0.74,0.77,-0.34,0.5,0.19,0.31,-0.14,-0.43,0.37,0.34,-0.27,-0.33,0.05,0.06,0.69,0.2,-0.43,0.68,-0.68,0.28,0.08,-0.37,0.54,0.34,-0.42,-0.69,-0.51,-0.5,-0.09,-0.43,-0.17,-0.75,-0.23,0.25,-0.1,0.18,-0.61,-0.33,-0.4,-0.87,-0.24,-0.11,0.25,-0.15,0.49,0.06,0.61,-0.47,0.2,-0.71,0.59,0.58,0.55,0.4,0.7,0.26,-0.57,0.23,-0.58,0.67,-0.51,-0.08,-0.18,0.23,-0.68,0.19,-0.92,-0.13,0.17,0.24,-0.2,-0.18,-0.56,0.1,-0.17,0.77,0.59,0.25,-0.5,0.08,-0.04,-0.35,0.28,0.63,-0.07,0.58,-0.49,-0.56,0.23,0.27,0.21,-0.42,0.52,-0.63,-0.14,0.09,0.08,-0.22,0.06,0.09,0.61,0.53,0.21,-0.23,0.07,0.14,-0.23,0.14,-0.21,-0.95,0.83,-0.08,0.25,0.25,0.86,0.12,-0.52,0.84,0.51,0.26,0.23,0.14,0.17,-0.03,0.46,0.07,0.08,-0.36,-0.39,0.66,-0.25,0.08,-0.23,0.35,-0.5,0.21,-0.56,0.67,0.19,0.12,0.02,-0.23,-0.47,-0.48,-0.14,0.15,-0.55,0.22,0.64,-0.71,-0.2,0.03,0.49,-0.49,0.05,0.25,-0.16,0.19,-0,-0.07,0.44,0.66,-0.85,0.06,-0.21,-0.64,0.34,0.55,-0.19,-0.91,0.71,-0.28,0.69,0.3,-0.34,-0.61,-0.55,-0.06,-0.08,-0.05,-0.58,0.23,-0.29,0.14,-0.78,0.83,-0.68,-0.82,-0.15,-0.62,0.08,0.13,0.03,0.08,0.29,-0.73,0.14,0.31,-0.57,0.75,0.68,-0.21,0.63,-0.58,0.31,-0.41,0.09,-0.39,-0.17,-0.56,0.13,-0.18,0.31,-0.18,0.78,0.71,0.31,-0.65,0.52,0.78,0.3,0.04,0.53,0.4,-0.2,0.43,0.43,0.52,-0.03,0.6,0.07,0.37,-0.07,0.28,-0.29,0.25,-0.38,-0.42,0.73,-0.2,0.07,0.3,-0.07,-0.06,0.36,0.5,-0.31,0.07,-0.06,0.34,0.5,-0.06,0.33,0.16,-0.02,0.16,0.12,0.14,-0.19,0.03,-0.35,0.52,-0.67,-0.05,0.62,-0.1,-0.17,-0.6,-0.48,0.34,-0.18,0.55,-0.47,0.38,-0.53,0.35,-0.03,0.61,-0.23,0.45,-0.17,0.08,-0.39,0.19,-0.16,-0.48,0.14,-0.29,0.4,0.24,0.07,0.97,0.41,-0.08,0.46,0.48,0.71,0.46,-0.08,-0.24,0.49,0.19,0.37,-0.26,0.01,-0.24,-0.56,0.4,-0.21,0.28,0.28,0.45,0.07,-0.13,0.11,0.14,-0.11,0.75,0.26,-0.58,-0.24,-0.45,0.71,-0.46,0.01,0.01,0.67,-0.64,0.18,0.74,-0.23,0.38,0.1,0.66,-0.07,-0.63,-0.12,0.31,0.38,0.25,-0.33,0.09,-0.73,0.07,0.9,0.7,0.06,0.04,0.35,0.26,0.12,-0.71,0.31,0.25,0.01,-0.11,-0.22,0.19,0,-0.83,-0.34,0.92,0.74,0.33,0.46,-0.97,-0.74,0.42,0,-0.05,0.08,-0.36,-0.03,-0.68,-0.11,0.87,0.23,0.48,0.83,-0.3,0.51,0.61,-0.71,0.24,0.7,0.05,-0.5,-0.7,0.39,0.18,-0,-0.61,0.35,-0.88,0.32,0.67,0.53,0.56,0.13,-0.22,0.85,0.12,-0.62,-0.52,-0.27,-0.27,-0.54,-0.61,-0.18,0.2,-0.42,0.06,-0.46,0.58,-0.2,-0.64,0.63,-0.1,-0.42,0.57,-0.38,0.38,0.28,-0.65,0.58,0.19,-0.63,-0.6,-0.23,-0.47,-0.18,0.16,-0.1,0.65,0.33,0.51,-0.66,0.31,0.21,-0.1,0.05,-0.37,0.16,0.69,0.32,0.29,0.08,0.49,-0.04,-0.93,-0.41,-0.57,0.05,-0.3,0.9,0.33,-0.14,0.05,0.18,0.39,-0.5,-0.24,-0.88,0.76,-0.75,0.84,-0.51,-0.35,-0.22,-0.47,0.45,0.19,-0.59,-0.17,-0.09,-0.17,-0.48,0.02,0.45,0.61,-0.01,-0.51,0.47,-0.4,-0.25,0.61,0.38,0.67,0.06,-0.18,0.31,-0.18,-0.23,0.19,-0.31,-0.07,0.49,-0.67,-0.24,-0.18,0.93,-0.44,0.14,-0.57,0.27,0.22,0.41,-0.02,0.07,0.26,-0.3,0.64,-0.24,0.71,-0,0.46,0.06,-0.35,-0.14,0.27,-0.27,-0.21,-0.31,-0.76,-0.49,-0.84,-0.09,-0.36,0.07,0.45,-0.41,0.24,0.2,0.87,-0.36,0.58,-0.85,-0.41,0.56,0.36,-0.73,0.46,-0.12,0.21,-0.64,-0.54,-0.15,0.03,-0.33,-0.01,-0.47,-0.46,0.72,0.52,0.63,-0.38,-0.14,0.14,-0.73,0.21,-0.54,0.31,0.08,-0.39,0.6,-0.24,0.51,-0.04,-0.5,0.26,0.1,-0.59,-0.62,-0.73,-0.68,-0.01,0.98,-0.3,0.56,-0.3,-0.14,-0.08,-0.41,-0.1,0.59,0.8,-0.12,0,-0.29,0.68,0.53,0.54,-0.09,-0.37,0.14,-0.19,0.06,0.49,0.03,-0.83,-0.53,0.7,-0.05,0.32,0.25,0.16,0.35,0.14,-0.51,-0.75,0.13,-0.25,0.37,-0.05,-0.38,0.15,0.53,0.07,0.37,0.03,0.16,-0.41,-0.64,0.18,-0.22,-0.57,-0.07,-0.34,0.11,0.07,0.18,-0.13,-0.51,-0.49,-0.63,-0.8,0.07,-0.18,0.33,0.78,0.21,-0.28,0.4,-0.66,0.59,-0.06,-0.61,0.5,-0.16,0,0.88,-0.53,0.59,-0.4,-0.37,0.6,-0.4,0.85,0.14,-0.45,0.51,-0.03,0.49,-0.22,-0.37,-0.84,0.39,-0.14,0.63,-0.29,-0.31,0.18,0.56,-0.04,-0.53,-0.41,0.13,0.06,0,0.44,-0.73,-0.12,0.17,-0.88,0.07,-0.56,-0.5,0.4,-0.37,0.47,-0.19,0.78,-0.07,0.2,-0.45,0.09,-0.6,0.26,-0.44,0.4,0.05,0.39,0.14,-0.49,-0.22,-0.14,0.41,0.28,-0.35,-0.1,0.07,-0.02,0.5,0.9,0.33,0.87,-0.2,0.19,0.07,-0.15,0.06,-0.13,0.62,0,-0.57,-0.56,-0.02,0.02,-0.7,0.41,0.28,-0.88,-0.18,-0.78,-0.17,0.66,-0.11,-0.07,0.68,-0,-0.27,-0.55,-0.12,0.6,-0.26,-0.42,0.51,0.48,0.48,0.2,0.46,0.24,-0.03,0.2,-0.03,-0.23,-0.34,-0.04,-0.59,-0.5,0.24,0.42,-0.21,-0.41,-0.51,-0.25,0.75,-0.55,0.05,0.44,0.89,0.6,0.23,0.23,-0.22,-0.19,0.56,0.18,-0.01,-0.88,-0.3,-0.53,0.75,0.52,0.28,0.38,0.05,0.02,0.26,-0.39,0.88,-0.41,0.43,0.31,-0.05,0.5,-0.26,0.36,-0.11,-0.2,0.05,0.26,-0.1,-0,-0.78,0.44,0.7,0.52,0.07,0.16,0.23,-0.4,0.12,0.83,-0.58,0.24,-0.02,0.12,0.41,0.43,0.14,0.56,0.28,0.03,-0.11,-0.03,0.41,0.32,0.06,-0.34,-0.24,0.24,0.18,-0.22,-0.15,0.05,-0.86,0.23,-0.83,-0.22,-0.46,0.4,-0.19,0.4,0.22,0.49,-0,-0.42,0.41,0.33,0.26,0.17,0.37,0.4,0.16,-0.61,0.1,-0.03,-0.13,-0.15,0.32,0.46,-0.09,-0.72,-0.18,-0.06,0.02,-0.51,0.75,0.45,0.38,-0.4,0.9,-0.47,-0.78,0.28,-0.7,0.77,0.11,0.43,-0.02,0.72,-0.07,0.82,-0.05,0.06,-0.39,0.03,0.57,-0.46,-0.3,-0.4,-0.63,-0.3,-0.36,-0.37,0.35,0.03,0.24,0.37,0.64,-0.24,-0.18,0.51,-0.56,-0.9,0.12,-0.26,0.18,0.47,0.17,0.38,0.38,-0.78,-0.89,-0.19,-0.57,0.7,0.05,-0.37,0.58,0.48,-0.43,0.36,-0.01,-0.31,-0.31,-0.74,-0.27,-0.08,-0.33,-0.05,0.07,0.64,-0.04,0.1,-0.2,0.34,0.65,0.4,0.13,0.12,-0.56,-0.2,0.62,-0.4,-0.57,-0.12,0.03,0.64,-0.6,0.6,0.31,0.58,-0.59,0.22,0.23,0.43,0.85,-0.25,-0.1,-0.33,-0.26,0.5,-0.86,-0.74,0.5,-0.35,-0.47,-0.32,0.37,0.95,-0.16,-0.31,-0.02,0.05,0.67,0.39,-0.56,0.11,0.16,0.14,-0,-0.17,0.35,0.32,0.13,0.39,0.07,-0.33,0.14,0.41,-0.68,-0.43,0.02,-0.44,0.42,0.05,0.1,0.29,-0.03,0.18,-0.3,0.16,0.14,-0.31,0.26,-0.28,-0.78,-0.46,-0.39,0.52,-0.05,0.15,0.44]}},\"hoverinfo\":[\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\",\"text\"],\"text\":[\"Covariance: 1.07 <br />Pooled SD: 1.28\",\"Covariance: -0.15 <br />Pooled SD: 0.99\",\"Covariance: -0.64 <br />Pooled SD: 1.62\",\"Covariance: -0.3 <br />Pooled SD: 1.82\",\"Covariance: 0.97 <br />Pooled SD: 1.25\",\"Covariance: -1.53 <br />Pooled SD: 1.64\",\"Covariance: 0.6 <br />Pooled SD: 1.06\",\"Covariance: 0.14 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 2.69\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.41 <br />Pooled SD: 1.15\",\"Covariance: -0.4 <br />Pooled SD: 1.03\",\"Covariance: -0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.11 <br />Pooled SD: 0.52\",\"Covariance: 0.75 <br />Pooled SD: 2.06\",\"Covariance: -2.14 <br />Pooled SD: 2.81\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: 0.71 <br />Pooled SD: 1.04\",\"Covariance: -0.12 <br />Pooled SD: 1.09\",\"Covariance: 0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.2 <br />Pooled SD: 1.35\",\"Covariance: 0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.07 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: 0.88 <br />Pooled SD: 1.77\",\"Covariance: 0.15 <br />Pooled SD: 1.28\",\"Covariance: -0.22 <br />Pooled SD: 1.35\",\"Covariance: -0.17 <br />Pooled SD: 0.69\",\"Covariance: 0.21 <br />Pooled SD: 0.7\",\"Covariance: -0.53 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.5\",\"Covariance: -1.27 <br />Pooled SD: 2.54\",\"Covariance: 0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 0.42\",\"Covariance: 0.98 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.39 <br />Pooled SD: 0.44\",\"Covariance: 1.25 <br />Pooled SD: 1.45\",\"Covariance: 0.34 <br />Pooled SD: 0.76\",\"Covariance: -0.34 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 0.89\",\"Covariance: 0.44 <br />Pooled SD: 1.49\",\"Covariance: 0.09 <br />Pooled SD: 1.85\",\"Covariance: -0.75 <br />Pooled SD: 1.58\",\"Covariance: -0.3 <br />Pooled SD: 0.95\",\"Covariance: 0.17 <br />Pooled SD: 0.99\",\"Covariance: 0.95 <br />Pooled SD: 1.92\",\"Covariance: 0 <br />Pooled SD: 0.75\",\"Covariance: 0.14 <br />Pooled SD: 0.81\",\"Covariance: 0.22 <br />Pooled SD: 0.49\",\"Covariance: 0.01 <br />Pooled SD: 1.38\",\"Covariance: -0.02 <br />Pooled SD: 0.7\",\"Covariance: -0.02 <br />Pooled SD: 0.26\",\"Covariance: -0.86 <br />Pooled SD: 2.32\",\"Covariance: 0.28 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.04\",\"Covariance: -0.5 <br />Pooled SD: 3.15\",\"Covariance: 0.04 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.78\",\"Covariance: -0.72 <br />Pooled SD: 0.97\",\"Covariance: 0.27 <br />Pooled SD: 0.76\",\"Covariance: -0.25 <br />Pooled SD: 0.32\",\"Covariance: 0.81 <br />Pooled SD: 2.82\",\"Covariance: -0.17 <br />Pooled SD: 1.43\",\"Covariance: 0.27 <br />Pooled SD: 0.66\",\"Covariance: 1.7 <br />Pooled SD: 2.38\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: -0.27 <br />Pooled SD: 1.51\",\"Covariance: 0.64 <br />Pooled SD: 1.31\",\"Covariance: 0.04 <br />Pooled SD: 1.66\",\"Covariance: -0.35 <br />Pooled SD: 0.71\",\"Covariance: 0.42 <br />Pooled SD: 0.93\",\"Covariance: -0.12 <br />Pooled SD: 1.36\",\"Covariance: 1.5 <br />Pooled SD: 2.3\",\"Covariance: 0.48 <br />Pooled SD: 0.91\",\"Covariance: -0.54 <br />Pooled SD: 1.61\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 1.01 <br />Pooled SD: 1.87\",\"Covariance: -0.46 <br />Pooled SD: 0.88\",\"Covariance: 0.4 <br />Pooled SD: 2.27\",\"Covariance: -0.41 <br />Pooled SD: 1.29\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 1.29\",\"Covariance: 0.47 <br />Pooled SD: 0.91\",\"Covariance: -0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.6\",\"Covariance: -0.55 <br />Pooled SD: 1.99\",\"Covariance: 0.4 <br />Pooled SD: 1.22\",\"Covariance: 0.04 <br />Pooled SD: 1.29\",\"Covariance: -0.17 <br />Pooled SD: 0.34\",\"Covariance: 0.42 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.67\",\"Covariance: -0.23 <br />Pooled SD: 0.52\",\"Covariance: 0.02 <br />Pooled SD: 1.93\",\"Covariance: 1.2 <br />Pooled SD: 2.58\",\"Covariance: 0.45 <br />Pooled SD: 1.55\",\"Covariance: -0.2 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.89\",\"Covariance: -0.32 <br />Pooled SD: 0.8\",\"Covariance: 1.27 <br />Pooled SD: 3.06\",\"Covariance: -0.88 <br />Pooled SD: 1.81\",\"Covariance: 0.4 <br />Pooled SD: 1.11\",\"Covariance: 0.88 <br />Pooled SD: 1.98\",\"Covariance: 1.49 <br />Pooled SD: 2.36\",\"Covariance: -0.48 <br />Pooled SD: 0.79\",\"Covariance: -0.91 <br />Pooled SD: 1.03\",\"Covariance: 0.35 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 0.69\",\"Covariance: 0.47 <br />Pooled SD: 0.59\",\"Covariance: -0.32 <br />Pooled SD: 1.38\",\"Covariance: 0.44 <br />Pooled SD: 2.27\",\"Covariance: -0.14 <br />Pooled SD: 2.67\",\"Covariance: 0.08 <br />Pooled SD: 1.62\",\"Covariance: -0.97 <br />Pooled SD: 1.16\",\"Covariance: 0.83 <br />Pooled SD: 2.03\",\"Covariance: 0.01 <br />Pooled SD: 1.22\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 2.43\",\"Covariance: -0.48 <br />Pooled SD: 0.75\",\"Covariance: 0.57 <br />Pooled SD: 2.18\",\"Covariance: 0.85 <br />Pooled SD: 1.59\",\"Covariance: -0.41 <br />Pooled SD: 1.71\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: -0.12 <br />Pooled SD: 2.97\",\"Covariance: -0.24 <br />Pooled SD: 1.58\",\"Covariance: 0.14 <br />Pooled SD: 0.92\",\"Covariance: -0.19 <br />Pooled SD: 2.05\",\"Covariance: -0.6 <br />Pooled SD: 2.76\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: 0.35 <br />Pooled SD: 1.07\",\"Covariance: 0.44 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.19 <br />Pooled SD: 0.81\",\"Covariance: -0.04 <br />Pooled SD: 0.49\",\"Covariance: 0.78 <br />Pooled SD: 1\",\"Covariance: -0.38 <br />Pooled SD: 0.82\",\"Covariance: 0.26 <br />Pooled SD: 0.79\",\"Covariance: -0.39 <br />Pooled SD: 0.58\",\"Covariance: -0.59 <br />Pooled SD: 0.66\",\"Covariance: -0.36 <br />Pooled SD: 0.54\",\"Covariance: -0.79 <br />Pooled SD: 1.95\",\"Covariance: 0.01 <br />Pooled SD: 0.13\",\"Covariance: -0.61 <br />Pooled SD: 1.34\",\"Covariance: -0.1 <br />Pooled SD: 0.91\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: -0.3 <br />Pooled SD: 1.51\",\"Covariance: -0.55 <br />Pooled SD: 0.98\",\"Covariance: 1.84 <br />Pooled SD: 2.17\",\"Covariance: 0.14 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 1.12\",\"Covariance: 0.26 <br />Pooled SD: 0.77\",\"Covariance: -0.5 <br />Pooled SD: 0.62\",\"Covariance: 0.2 <br />Pooled SD: 2.38\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.23 <br />Pooled SD: 0.91\",\"Covariance: 1.19 <br />Pooled SD: 1.7\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: -0.31 <br />Pooled SD: 0.4\",\"Covariance: -1.33 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.62\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.22 <br />Pooled SD: 0.54\",\"Covariance: -0.83 <br />Pooled SD: 0.98\",\"Covariance: -1.38 <br />Pooled SD: 2.44\",\"Covariance: 0.38 <br />Pooled SD: 0.9\",\"Covariance: -0.45 <br />Pooled SD: 1.47\",\"Covariance: -0.07 <br />Pooled SD: 0.72\",\"Covariance: -0.55 <br />Pooled SD: 0.67\",\"Covariance: 0.03 <br />Pooled SD: 0.84\",\"Covariance: 0.88 <br />Pooled SD: 1.56\",\"Covariance: 0.24 <br />Pooled SD: 0.67\",\"Covariance: 0.1 <br />Pooled SD: 1.14\",\"Covariance: -0.18 <br />Pooled SD: 0.85\",\"Covariance: 0.33 <br />Pooled SD: 1.02\",\"Covariance: -0.37 <br />Pooled SD: 0.62\",\"Covariance: 0.29 <br />Pooled SD: 1.75\",\"Covariance: -0.8 <br />Pooled SD: 1.17\",\"Covariance: -1.99 <br />Pooled SD: 3.53\",\"Covariance: 0.49 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.87 <br />Pooled SD: 0.95\",\"Covariance: -0.16 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.38 <br />Pooled SD: 1.82\",\"Covariance: 0.14 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 0.57\",\"Covariance: 1.26 <br />Pooled SD: 2.1\",\"Covariance: 0.58 <br />Pooled SD: 1.21\",\"Covariance: 0.38 <br />Pooled SD: 1.05\",\"Covariance: 0.2 <br />Pooled SD: 0.85\",\"Covariance: 1.22 <br />Pooled SD: 1.59\",\"Covariance: -1.44 <br />Pooled SD: 1.98\",\"Covariance: 0.73 <br />Pooled SD: 1.4\",\"Covariance: -0.06 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.32\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.13 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.07\",\"Covariance: -0.13 <br />Pooled SD: 1.95\",\"Covariance: -0.04 <br />Pooled SD: 0.89\",\"Covariance: 0.62 <br />Pooled SD: 1.9\",\"Covariance: 0.35 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.64\",\"Covariance: 0.18 <br />Pooled SD: 0.33\",\"Covariance: -0.21 <br />Pooled SD: 1.11\",\"Covariance: 0.73 <br />Pooled SD: 1.07\",\"Covariance: -0.27 <br />Pooled SD: 0.39\",\"Covariance: -0.5 <br />Pooled SD: 0.92\",\"Covariance: 1.32 <br />Pooled SD: 2.47\",\"Covariance: -0.17 <br />Pooled SD: 0.7\",\"Covariance: 0.88 <br />Pooled SD: 1.73\",\"Covariance: 0.6 <br />Pooled SD: 1.81\",\"Covariance: 0.32 <br />Pooled SD: 0.89\",\"Covariance: -1.65 <br />Pooled SD: 2.04\",\"Covariance: 0.08 <br />Pooled SD: 2.08\",\"Covariance: 0.03 <br />Pooled SD: 0.5\",\"Covariance: 1.76 <br />Pooled SD: 2.11\",\"Covariance: 0.11 <br />Pooled SD: 2.52\",\"Covariance: 0.28 <br />Pooled SD: 1.58\",\"Covariance: -0.27 <br />Pooled SD: 0.69\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: 0.27 <br />Pooled SD: 0.71\",\"Covariance: -0.65 <br />Pooled SD: 1.23\",\"Covariance: 0.51 <br />Pooled SD: 1.2\",\"Covariance: -0.6 <br />Pooled SD: 1.13\",\"Covariance: -1.08 <br />Pooled SD: 3.38\",\"Covariance: 1.25 <br />Pooled SD: 1.69\",\"Covariance: -1.34 <br />Pooled SD: 2.18\",\"Covariance: 1.22 <br />Pooled SD: 1.97\",\"Covariance: 0.07 <br />Pooled SD: 0.79\",\"Covariance: -0.76 <br />Pooled SD: 1.5\",\"Covariance: -1.9 <br />Pooled SD: 2.17\",\"Covariance: 0.44 <br />Pooled SD: 0.94\",\"Covariance: -1.01 <br />Pooled SD: 1.19\",\"Covariance: 2.54 <br />Pooled SD: 3.15\",\"Covariance: 0.42 <br />Pooled SD: 0.97\",\"Covariance: 0.85 <br />Pooled SD: 1.08\",\"Covariance: -0.26 <br />Pooled SD: 1.04\",\"Covariance: -0.34 <br />Pooled SD: 1.24\",\"Covariance: 0.41 <br />Pooled SD: 1.04\",\"Covariance: -0.11 <br />Pooled SD: 0.57\",\"Covariance: -1.38 <br />Pooled SD: 1.94\",\"Covariance: -1.7 <br />Pooled SD: 2.2\",\"Covariance: 0.61 <br />Pooled SD: 1.09\",\"Covariance: -0.11 <br />Pooled SD: 1.07\",\"Covariance: 0.3 <br />Pooled SD: 0.72\",\"Covariance: -0.38 <br />Pooled SD: 2.18\",\"Covariance: 0.78 <br />Pooled SD: 3.25\",\"Covariance: 0.68 <br />Pooled SD: 1.52\",\"Covariance: 0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.61 <br />Pooled SD: 2.91\",\"Covariance: 0.44 <br />Pooled SD: 1.78\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.31 <br />Pooled SD: 0.77\",\"Covariance: 0.06 <br />Pooled SD: 1.22\",\"Covariance: -0.9 <br />Pooled SD: 1.05\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.71 <br />Pooled SD: 1.76\",\"Covariance: 1.06 <br />Pooled SD: 1.43\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: 1.29 <br />Pooled SD: 1.37\",\"Covariance: 0.05 <br />Pooled SD: 1.1\",\"Covariance: 0.42 <br />Pooled SD: 1.07\",\"Covariance: 0.1 <br />Pooled SD: 0.86\",\"Covariance: 0.13 <br />Pooled SD: 2.54\",\"Covariance: -0.21 <br />Pooled SD: 1.9\",\"Covariance: -1.03 <br />Pooled SD: 1.47\",\"Covariance: -0.41 <br />Pooled SD: 0.8\",\"Covariance: 0.18 <br />Pooled SD: 1.3\",\"Covariance: 1.38 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.84\",\"Covariance: -0.34 <br />Pooled SD: 0.98\",\"Covariance: -2.29 <br />Pooled SD: 2.66\",\"Covariance: -0.48 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.39\",\"Covariance: -1.2 <br />Pooled SD: 1.63\",\"Covariance: 1.35 <br />Pooled SD: 1.66\",\"Covariance: 0.11 <br />Pooled SD: 1.12\",\"Covariance: 0.01 <br />Pooled SD: 0.38\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: -0.52 <br />Pooled SD: 0.73\",\"Covariance: 0.16 <br />Pooled SD: 1.15\",\"Covariance: 0.55 <br />Pooled SD: 1.18\",\"Covariance: -0.75 <br />Pooled SD: 1.38\",\"Covariance: -0.36 <br />Pooled SD: 0.65\",\"Covariance: -0.64 <br />Pooled SD: 0.98\",\"Covariance: -0.03 <br />Pooled SD: 0.62\",\"Covariance: -0.66 <br />Pooled SD: 0.76\",\"Covariance: -0.06 <br />Pooled SD: 0.57\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: -0.28 <br />Pooled SD: 2.48\",\"Covariance: 0.15 <br />Pooled SD: 0.85\",\"Covariance: -0.34 <br />Pooled SD: 0.93\",\"Covariance: -1.66 <br />Pooled SD: 2.41\",\"Covariance: -0.79 <br />Pooled SD: 1.51\",\"Covariance: 0.3 <br />Pooled SD: 2.31\",\"Covariance: 0.39 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.17\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: 0.2 <br />Pooled SD: 0.66\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: 0.16 <br />Pooled SD: 0.58\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: 0.64 <br />Pooled SD: 1.27\",\"Covariance: 0.65 <br />Pooled SD: 1.2\",\"Covariance: -0.07 <br />Pooled SD: 0.95\",\"Covariance: 0.1 <br />Pooled SD: 0.59\",\"Covariance: -0.14 <br />Pooled SD: 1.06\",\"Covariance: 0.81 <br />Pooled SD: 1.34\",\"Covariance: 0.07 <br />Pooled SD: 1.94\",\"Covariance: 0.6 <br />Pooled SD: 2.38\",\"Covariance: 1.03 <br />Pooled SD: 2.05\",\"Covariance: -1.04 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.99\",\"Covariance: 0.66 <br />Pooled SD: 1.71\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: 0.49 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 0.77\",\"Covariance: 0.09 <br />Pooled SD: 1.45\",\"Covariance: -0.2 <br />Pooled SD: 1.34\",\"Covariance: -0.21 <br />Pooled SD: 2.39\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: -0.48 <br />Pooled SD: 1.82\",\"Covariance: 1.03 <br />Pooled SD: 2.03\",\"Covariance: 0.49 <br />Pooled SD: 1.14\",\"Covariance: 0.15 <br />Pooled SD: 2.27\",\"Covariance: 0.14 <br />Pooled SD: 0.32\",\"Covariance: 0.66 <br />Pooled SD: 1.19\",\"Covariance: -0.24 <br />Pooled SD: 0.8\",\"Covariance: 0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.48 <br />Pooled SD: 1.67\",\"Covariance: -0.05 <br />Pooled SD: 0.71\",\"Covariance: -0.88 <br />Pooled SD: 2.33\",\"Covariance: -0.95 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 1.17\",\"Covariance: -0.83 <br />Pooled SD: 1.77\",\"Covariance: 0.95 <br />Pooled SD: 1.19\",\"Covariance: 0.2 <br />Pooled SD: 1.8\",\"Covariance: 0.87 <br />Pooled SD: 1.41\",\"Covariance: 0.15 <br />Pooled SD: 1.39\",\"Covariance: 0.25 <br />Pooled SD: 0.63\",\"Covariance: -0.39 <br />Pooled SD: 0.55\",\"Covariance: 1.23 <br />Pooled SD: 1.46\",\"Covariance: 0.75 <br />Pooled SD: 1.31\",\"Covariance: 0.33 <br />Pooled SD: 0.5\",\"Covariance: -0.32 <br />Pooled SD: 0.98\",\"Covariance: -0.47 <br />Pooled SD: 0.67\",\"Covariance: -0.13 <br />Pooled SD: 0.81\",\"Covariance: -0.68 <br />Pooled SD: 1.55\",\"Covariance: 0.37 <br />Pooled SD: 1.38\",\"Covariance: 1.05 <br />Pooled SD: 1.62\",\"Covariance: -0.14 <br />Pooled SD: 0.5\",\"Covariance: -0.04 <br />Pooled SD: 1.71\",\"Covariance: -0.1 <br />Pooled SD: 0.92\",\"Covariance: 0.46 <br />Pooled SD: 1.7\",\"Covariance: 0.55 <br />Pooled SD: 0.92\",\"Covariance: 0.31 <br />Pooled SD: 0.8\",\"Covariance: 1.07 <br />Pooled SD: 2.84\",\"Covariance: -0.14 <br />Pooled SD: 0.57\",\"Covariance: -0.18 <br />Pooled SD: 0.45\",\"Covariance: -0.35 <br />Pooled SD: 1.7\",\"Covariance: 0.03 <br />Pooled SD: 0.56\",\"Covariance: -0.1 <br />Pooled SD: 0.74\",\"Covariance: 1.49 <br />Pooled SD: 2.61\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.75 <br />Pooled SD: 2.02\",\"Covariance: 0.12 <br />Pooled SD: 1.07\",\"Covariance: 0.11 <br />Pooled SD: 1.41\",\"Covariance: 0.74 <br />Pooled SD: 1.09\",\"Covariance: 0.97 <br />Pooled SD: 1.56\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.75 <br />Pooled SD: 1.4\",\"Covariance: 0.28 <br />Pooled SD: 0.66\",\"Covariance: 1.04 <br />Pooled SD: 1.3\",\"Covariance: -0.69 <br />Pooled SD: 0.94\",\"Covariance: 0.32 <br />Pooled SD: 1.12\",\"Covariance: 0.24 <br />Pooled SD: 0.94\",\"Covariance: 0.16 <br />Pooled SD: 0.62\",\"Covariance: 0.37 <br />Pooled SD: 0.9\",\"Covariance: 0.66 <br />Pooled SD: 1.7\",\"Covariance: -1.15 <br />Pooled SD: 3.03\",\"Covariance: -0.22 <br />Pooled SD: 1\",\"Covariance: -0.25 <br />Pooled SD: 1.42\",\"Covariance: -0.5 <br />Pooled SD: 2.1\",\"Covariance: 0.89 <br />Pooled SD: 1.26\",\"Covariance: 0.04 <br />Pooled SD: 0.69\",\"Covariance: -0.8 <br />Pooled SD: 1.59\",\"Covariance: -0.46 <br />Pooled SD: 0.89\",\"Covariance: 0.16 <br />Pooled SD: 2.6\",\"Covariance: -0.22 <br />Pooled SD: 0.69\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: 0.13 <br />Pooled SD: 1.31\",\"Covariance: -0.52 <br />Pooled SD: 1.15\",\"Covariance: -0.34 <br />Pooled SD: 0.52\",\"Covariance: 0.09 <br />Pooled SD: 1.73\",\"Covariance: -0.76 <br />Pooled SD: 1.21\",\"Covariance: -0.47 <br />Pooled SD: 1\",\"Covariance: -0.15 <br />Pooled SD: 1.11\",\"Covariance: 0.28 <br />Pooled SD: 1.15\",\"Covariance: 0.33 <br />Pooled SD: 0.85\",\"Covariance: 0.04 <br />Pooled SD: 1.04\",\"Covariance: -0.04 <br />Pooled SD: 0.58\",\"Covariance: 0.45 <br />Pooled SD: 1.48\",\"Covariance: -0.32 <br />Pooled SD: 0.94\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.06 <br />Pooled SD: 0.44\",\"Covariance: -1.14 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.7\",\"Covariance: -0.89 <br />Pooled SD: 1.06\",\"Covariance: 1.31 <br />Pooled SD: 1.56\",\"Covariance: 0.76 <br />Pooled SD: 1.2\",\"Covariance: 0.52 <br />Pooled SD: 2.14\",\"Covariance: -0.33 <br />Pooled SD: 1.3\",\"Covariance: 0.05 <br />Pooled SD: 1.63\",\"Covariance: -0.65 <br />Pooled SD: 1.5\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.47 <br />Pooled SD: 0.73\",\"Covariance: -0.69 <br />Pooled SD: 0.83\",\"Covariance: 0.21 <br />Pooled SD: 0.72\",\"Covariance: -0.21 <br />Pooled SD: 0.67\",\"Covariance: -0.01 <br />Pooled SD: 0.7\",\"Covariance: 0.01 <br />Pooled SD: 0.71\",\"Covariance: -0.24 <br />Pooled SD: 1.63\",\"Covariance: -0.54 <br />Pooled SD: 0.81\",\"Covariance: -0.54 <br />Pooled SD: 1.85\",\"Covariance: 0.63 <br />Pooled SD: 1.37\",\"Covariance: -1.31 <br />Pooled SD: 2.22\",\"Covariance: 0.34 <br />Pooled SD: 1.03\",\"Covariance: 0.33 <br />Pooled SD: 0.84\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: 0.49 <br />Pooled SD: 1.5\",\"Covariance: -0.02 <br />Pooled SD: 1.47\",\"Covariance: 0.1 <br />Pooled SD: 0.88\",\"Covariance: 0.57 <br />Pooled SD: 1.68\",\"Covariance: 0.1 <br />Pooled SD: 0.68\",\"Covariance: -0.71 <br />Pooled SD: 0.93\",\"Covariance: -0.09 <br />Pooled SD: 1.39\",\"Covariance: 0.1 <br />Pooled SD: 0.84\",\"Covariance: -0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.19 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.04 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 1.31\",\"Covariance: -0.21 <br />Pooled SD: 0.81\",\"Covariance: -0.37 <br />Pooled SD: 0.61\",\"Covariance: 0.41 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.41\",\"Covariance: 0.87 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 1.39\",\"Covariance: -0.51 <br />Pooled SD: 1.74\",\"Covariance: 0.12 <br />Pooled SD: 0.99\",\"Covariance: 2.07 <br />Pooled SD: 3.78\",\"Covariance: -0.1 <br />Pooled SD: 0.83\",\"Covariance: -0.4 <br />Pooled SD: 1\",\"Covariance: -0.72 <br />Pooled SD: 1.04\",\"Covariance: 0.15 <br />Pooled SD: 0.92\",\"Covariance: -0.06 <br />Pooled SD: 0.8\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.24 <br />Pooled SD: 1.82\",\"Covariance: -0.87 <br />Pooled SD: 1.1\",\"Covariance: 0.94 <br />Pooled SD: 1.35\",\"Covariance: -1.12 <br />Pooled SD: 1.72\",\"Covariance: -1.3 <br />Pooled SD: 3.19\",\"Covariance: 0.02 <br />Pooled SD: 0.99\",\"Covariance: -0.06 <br />Pooled SD: 1.61\",\"Covariance: 0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.64 <br />Pooled SD: 1.76\",\"Covariance: 0.03 <br />Pooled SD: 0.73\",\"Covariance: -0.16 <br />Pooled SD: 0.88\",\"Covariance: 0.27 <br />Pooled SD: 0.53\",\"Covariance: 0.41 <br />Pooled SD: 3.02\",\"Covariance: -0.59 <br />Pooled SD: 1.33\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: 0.26 <br />Pooled SD: 1.77\",\"Covariance: -1 <br />Pooled SD: 1.46\",\"Covariance: -0.41 <br />Pooled SD: 0.82\",\"Covariance: 0.09 <br />Pooled SD: 0.46\",\"Covariance: 0.43 <br />Pooled SD: 0.6\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.36 <br />Pooled SD: 1.88\",\"Covariance: -0.61 <br />Pooled SD: 1.42\",\"Covariance: 0.45 <br />Pooled SD: 0.92\",\"Covariance: 0.24 <br />Pooled SD: 1.93\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -0.21 <br />Pooled SD: 0.9\",\"Covariance: -0.34 <br />Pooled SD: 1.2\",\"Covariance: -0.35 <br />Pooled SD: 1.26\",\"Covariance: -0.9 <br />Pooled SD: 2.4\",\"Covariance: -0.59 <br />Pooled SD: 1.61\",\"Covariance: 0.48 <br />Pooled SD: 0.84\",\"Covariance: -0.73 <br />Pooled SD: 0.87\",\"Covariance: 0.1 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 1.49\",\"Covariance: -0.59 <br />Pooled SD: 1.24\",\"Covariance: 0.48 <br />Pooled SD: 0.96\",\"Covariance: 0.4 <br />Pooled SD: 0.52\",\"Covariance: -0.11 <br />Pooled SD: 0.87\",\"Covariance: 0.2 <br />Pooled SD: 1.99\",\"Covariance: -0.24 <br />Pooled SD: 1.47\",\"Covariance: 0.17 <br />Pooled SD: 0.88\",\"Covariance: -0.27 <br />Pooled SD: 1.47\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.09 <br />Pooled SD: 0.84\",\"Covariance: -0.75 <br />Pooled SD: 1.42\",\"Covariance: -0.47 <br />Pooled SD: 0.99\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: -0.2 <br />Pooled SD: 1.79\",\"Covariance: -0.37 <br />Pooled SD: 1.2\",\"Covariance: -0.49 <br />Pooled SD: 0.8\",\"Covariance: -0.08 <br />Pooled SD: 1.23\",\"Covariance: -0.05 <br />Pooled SD: 1.77\",\"Covariance: 1.26 <br />Pooled SD: 2.07\",\"Covariance: 0.4 <br />Pooled SD: 1.1\",\"Covariance: 0.59 <br />Pooled SD: 1.33\",\"Covariance: -0.38 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.76\",\"Covariance: 0.38 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 1.59\",\"Covariance: 0.28 <br />Pooled SD: 0.78\",\"Covariance: -0.53 <br />Pooled SD: 1.35\",\"Covariance: -0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.37 <br />Pooled SD: 1.34\",\"Covariance: 0.72 <br />Pooled SD: 1.34\",\"Covariance: -0.59 <br />Pooled SD: 1.21\",\"Covariance: -0.02 <br />Pooled SD: 1.31\",\"Covariance: -0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.43 <br />Pooled SD: 0.79\",\"Covariance: 0.23 <br />Pooled SD: 2.15\",\"Covariance: -1.1 <br />Pooled SD: 1.94\",\"Covariance: 0.21 <br />Pooled SD: 1.3\",\"Covariance: 0.08 <br />Pooled SD: 0.94\",\"Covariance: -1.6 <br />Pooled SD: 1.93\",\"Covariance: -0.49 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.46 <br />Pooled SD: 0.65\",\"Covariance: 0.29 <br />Pooled SD: 1.22\",\"Covariance: 0.49 <br />Pooled SD: 0.75\",\"Covariance: -0.48 <br />Pooled SD: 1.14\",\"Covariance: -0.4 <br />Pooled SD: 1.19\",\"Covariance: 0.18 <br />Pooled SD: 0.58\",\"Covariance: 0.72 <br />Pooled SD: 1.47\",\"Covariance: -0.04 <br />Pooled SD: 0.68\",\"Covariance: 0.01 <br />Pooled SD: 1.27\",\"Covariance: -0.38 <br />Pooled SD: 1.58\",\"Covariance: -0.05 <br />Pooled SD: 1.02\",\"Covariance: 0.02 <br />Pooled SD: 0.53\",\"Covariance: 1.11 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.61\",\"Covariance: 0.58 <br />Pooled SD: 1.35\",\"Covariance: 0.46 <br />Pooled SD: 1.45\",\"Covariance: 0.2 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.56 <br />Pooled SD: 0.88\",\"Covariance: 0.17 <br />Pooled SD: 0.57\",\"Covariance: 1 <br />Pooled SD: 1.24\",\"Covariance: 0.83 <br />Pooled SD: 1.18\",\"Covariance: 1.15 <br />Pooled SD: 1.37\",\"Covariance: -0.4 <br />Pooled SD: 2.73\",\"Covariance: -0.52 <br />Pooled SD: 1.17\",\"Covariance: 0.65 <br />Pooled SD: 2.15\",\"Covariance: -0.95 <br />Pooled SD: 1.5\",\"Covariance: -0.6 <br />Pooled SD: 0.87\",\"Covariance: -0.35 <br />Pooled SD: 1.25\",\"Covariance: -0.22 <br />Pooled SD: 1.12\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: -0.89 <br />Pooled SD: 1.44\",\"Covariance: 0.01 <br />Pooled SD: 1.16\",\"Covariance: -0.65 <br />Pooled SD: 1.36\",\"Covariance: 0.38 <br />Pooled SD: 1.57\",\"Covariance: -0.5 <br />Pooled SD: 1.34\",\"Covariance: 0.36 <br />Pooled SD: 0.58\",\"Covariance: -0.19 <br />Pooled SD: 1.23\",\"Covariance: -0.04 <br />Pooled SD: 1.22\",\"Covariance: -0.02 <br />Pooled SD: 0.3\",\"Covariance: -0.57 <br />Pooled SD: 2.29\",\"Covariance: -0.75 <br />Pooled SD: 1.06\",\"Covariance: -0.09 <br />Pooled SD: 0.27\",\"Covariance: -0.37 <br />Pooled SD: 2.53\",\"Covariance: 0.09 <br />Pooled SD: 1.21\",\"Covariance: 0.37 <br />Pooled SD: 1.36\",\"Covariance: 0.18 <br />Pooled SD: 0.24\",\"Covariance: -1.14 <br />Pooled SD: 1.62\",\"Covariance: 0.05 <br />Pooled SD: 0.34\",\"Covariance: -0.45 <br />Pooled SD: 2.19\",\"Covariance: -0.35 <br />Pooled SD: 1.79\",\"Covariance: -0.33 <br />Pooled SD: 1.05\",\"Covariance: 0.47 <br />Pooled SD: 1.47\",\"Covariance: -0.18 <br />Pooled SD: 1.11\",\"Covariance: -0.1 <br />Pooled SD: 1.03\",\"Covariance: 0.02 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.78\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 0.86 <br />Pooled SD: 1.48\",\"Covariance: -0.3 <br />Pooled SD: 1.77\",\"Covariance: -0.29 <br />Pooled SD: 1.15\",\"Covariance: -0.57 <br />Pooled SD: 0.88\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.28 <br />Pooled SD: 0.63\",\"Covariance: 0.03 <br />Pooled SD: 1.24\",\"Covariance: -0.02 <br />Pooled SD: 1.73\",\"Covariance: -0.49 <br />Pooled SD: 1.1\",\"Covariance: 0.36 <br />Pooled SD: 0.67\",\"Covariance: 0.09 <br />Pooled SD: 0.54\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: 0.09 <br />Pooled SD: 0.62\",\"Covariance: -0.4 <br />Pooled SD: 2.23\",\"Covariance: -0.61 <br />Pooled SD: 0.93\",\"Covariance: 1.08 <br />Pooled SD: 1.5\",\"Covariance: 0.19 <br />Pooled SD: 0.56\",\"Covariance: 0.5 <br />Pooled SD: 1.94\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: -0.05 <br />Pooled SD: 0.95\",\"Covariance: 0.58 <br />Pooled SD: 0.94\",\"Covariance: 0.58 <br />Pooled SD: 1.72\",\"Covariance: -0.43 <br />Pooled SD: 0.92\",\"Covariance: -0.17 <br />Pooled SD: 1.21\",\"Covariance: -0.7 <br />Pooled SD: 1.15\",\"Covariance: 0.53 <br />Pooled SD: 2.05\",\"Covariance: 0.19 <br />Pooled SD: 1.85\",\"Covariance: 0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.44 <br />Pooled SD: 0.76\",\"Covariance: 0.44 <br />Pooled SD: 2.79\",\"Covariance: -0.27 <br />Pooled SD: 1.26\",\"Covariance: -1.18 <br />Pooled SD: 2.26\",\"Covariance: 0.56 <br />Pooled SD: 1.76\",\"Covariance: -0.49 <br />Pooled SD: 1.22\",\"Covariance: 0.7 <br />Pooled SD: 1.79\",\"Covariance: -0.5 <br />Pooled SD: 1.57\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0.13 <br />Pooled SD: 1.76\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 1.92 <br />Pooled SD: 2.28\",\"Covariance: 0.21 <br />Pooled SD: 1.51\",\"Covariance: 0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.9 <br />Pooled SD: 1.18\",\"Covariance: -0.37 <br />Pooled SD: 0.94\",\"Covariance: 0.03 <br />Pooled SD: 0.16\",\"Covariance: 0.4 <br />Pooled SD: 0.87\",\"Covariance: 0.05 <br />Pooled SD: 0.88\",\"Covariance: -0.58 <br />Pooled SD: 1.24\",\"Covariance: -0.47 <br />Pooled SD: 1.76\",\"Covariance: -0.25 <br />Pooled SD: 0.88\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.59 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 0.82\",\"Covariance: -0.47 <br />Pooled SD: 0.85\",\"Covariance: 0.26 <br />Pooled SD: 1.22\",\"Covariance: -0.07 <br />Pooled SD: 0.66\",\"Covariance: 1.72 <br />Pooled SD: 2.14\",\"Covariance: 0.42 <br />Pooled SD: 1.28\",\"Covariance: 0.44 <br />Pooled SD: 1.35\",\"Covariance: 0.57 <br />Pooled SD: 0.8\",\"Covariance: -1.16 <br />Pooled SD: 1.93\",\"Covariance: -1.19 <br />Pooled SD: 2.95\",\"Covariance: -0.95 <br />Pooled SD: 3.18\",\"Covariance: -1.21 <br />Pooled SD: 2.01\",\"Covariance: 0.3 <br />Pooled SD: 0.88\",\"Covariance: -0.71 <br />Pooled SD: 1.85\",\"Covariance: -0.11 <br />Pooled SD: 0.3\",\"Covariance: -0.02 <br />Pooled SD: 0.79\",\"Covariance: 0.62 <br />Pooled SD: 1.3\",\"Covariance: 0.22 <br />Pooled SD: 1.66\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.26 <br />Pooled SD: 2.11\",\"Covariance: 0.25 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.59\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: 0.29 <br />Pooled SD: 1.01\",\"Covariance: -0.12 <br />Pooled SD: 0.91\",\"Covariance: 0.21 <br />Pooled SD: 1.17\",\"Covariance: -0.02 <br />Pooled SD: 0.07\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.23 <br />Pooled SD: 0.54\",\"Covariance: -1.36 <br />Pooled SD: 1.41\",\"Covariance: -0.46 <br />Pooled SD: 1\",\"Covariance: -0.82 <br />Pooled SD: 1.98\",\"Covariance: 0.6 <br />Pooled SD: 1.39\",\"Covariance: 0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.47 <br />Pooled SD: 1.45\",\"Covariance: 0.18 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 1.35\",\"Covariance: 0.45 <br />Pooled SD: 1.3\",\"Covariance: -0.42 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.11 <br />Pooled SD: 0.47\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.07 <br />Pooled SD: 0.32\",\"Covariance: -0.51 <br />Pooled SD: 1.28\",\"Covariance: -1.75 <br />Pooled SD: 2.14\",\"Covariance: 0.69 <br />Pooled SD: 1.64\",\"Covariance: 0.31 <br />Pooled SD: 1.75\",\"Covariance: -0.62 <br />Pooled SD: 0.82\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: 0.27 <br />Pooled SD: 1.25\",\"Covariance: 0.78 <br />Pooled SD: 1.48\",\"Covariance: 0.09 <br />Pooled SD: 0.63\",\"Covariance: -0.47 <br />Pooled SD: 0.54\",\"Covariance: 0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.56 <br />Pooled SD: 1.49\",\"Covariance: 0.15 <br />Pooled SD: 1.56\",\"Covariance: -0.52 <br />Pooled SD: 0.79\",\"Covariance: 0.15 <br />Pooled SD: 0.87\",\"Covariance: 0.44 <br />Pooled SD: 1.53\",\"Covariance: 1.04 <br />Pooled SD: 1.6\",\"Covariance: -0.41 <br />Pooled SD: 0.83\",\"Covariance: -0.11 <br />Pooled SD: 0.68\",\"Covariance: -0.11 <br />Pooled SD: 0.77\",\"Covariance: -0.98 <br />Pooled SD: 1.73\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.38 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.25 <br />Pooled SD: 0.68\",\"Covariance: 0.7 <br />Pooled SD: 2.08\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.28 <br />Pooled SD: 0.65\",\"Covariance: 0.3 <br />Pooled SD: 1.28\",\"Covariance: -0.01 <br />Pooled SD: 0.57\",\"Covariance: 0.28 <br />Pooled SD: 0.62\",\"Covariance: -0.02 <br />Pooled SD: 0.27\",\"Covariance: -0.38 <br />Pooled SD: 1.8\",\"Covariance: 0.07 <br />Pooled SD: 0.56\",\"Covariance: -0.14 <br />Pooled SD: 1.26\",\"Covariance: 1.86 <br />Pooled SD: 1.96\",\"Covariance: 0.55 <br />Pooled SD: 1.57\",\"Covariance: -0.09 <br />Pooled SD: 1.09\",\"Covariance: -0.6 <br />Pooled SD: 1.9\",\"Covariance: 0.12 <br />Pooled SD: 1.61\",\"Covariance: 0.25 <br />Pooled SD: 0.4\",\"Covariance: -1.25 <br />Pooled SD: 1.99\",\"Covariance: 0.17 <br />Pooled SD: 1.32\",\"Covariance: -1.5 <br />Pooled SD: 1.72\",\"Covariance: -0.27 <br />Pooled SD: 0.79\",\"Covariance: -0.21 <br />Pooled SD: 0.32\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: 0.55 <br />Pooled SD: 0.84\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: 0.3 <br />Pooled SD: 0.9\",\"Covariance: -0.85 <br />Pooled SD: 1.25\",\"Covariance: 0.63 <br />Pooled SD: 2.46\",\"Covariance: 0.74 <br />Pooled SD: 1.75\",\"Covariance: 0.06 <br />Pooled SD: 0.68\",\"Covariance: 0.06 <br />Pooled SD: 0.77\",\"Covariance: 0.33 <br />Pooled SD: 0.74\",\"Covariance: 1.89 <br />Pooled SD: 2.54\",\"Covariance: -0.85 <br />Pooled SD: 1.49\",\"Covariance: 1.45 <br />Pooled SD: 2.63\",\"Covariance: -0.18 <br />Pooled SD: 1.15\",\"Covariance: -0.51 <br />Pooled SD: 1.48\",\"Covariance: -0.12 <br />Pooled SD: 1.26\",\"Covariance: -0.24 <br />Pooled SD: 0.75\",\"Covariance: 1.33 <br />Pooled SD: 2.23\",\"Covariance: 0.04 <br />Pooled SD: 1.57\",\"Covariance: -0.24 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 0.98\",\"Covariance: 0.08 <br />Pooled SD: 0.67\",\"Covariance: 0.2 <br />Pooled SD: 1.43\",\"Covariance: 0.44 <br />Pooled SD: 0.71\",\"Covariance: -0.37 <br />Pooled SD: 1.35\",\"Covariance: -0.85 <br />Pooled SD: 1.18\",\"Covariance: 0.75 <br />Pooled SD: 0.99\",\"Covariance: -0.61 <br />Pooled SD: 1.74\",\"Covariance: 0.04 <br />Pooled SD: 1.16\",\"Covariance: 0.24 <br />Pooled SD: 1.01\",\"Covariance: -0.22 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 2.15\",\"Covariance: 0.2 <br />Pooled SD: 0.68\",\"Covariance: 0.54 <br />Pooled SD: 1.34\",\"Covariance: 0 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 0.5\",\"Covariance: -0.48 <br />Pooled SD: 1.46\",\"Covariance: -0.55 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.73\",\"Covariance: 0.23 <br />Pooled SD: 1.32\",\"Covariance: 0.22 <br />Pooled SD: 1.78\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.61 <br />Pooled SD: 1.91\",\"Covariance: 1.27 <br />Pooled SD: 1.35\",\"Covariance: 0.72 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.75\",\"Covariance: -0.2 <br />Pooled SD: 1.8\",\"Covariance: 1.01 <br />Pooled SD: 2.18\",\"Covariance: 0.76 <br />Pooled SD: 1.65\",\"Covariance: -1.36 <br />Pooled SD: 1.76\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.37 <br />Pooled SD: 1.28\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.45 <br />Pooled SD: 1.05\",\"Covariance: 0.02 <br />Pooled SD: 1.67\",\"Covariance: 1.8 <br />Pooled SD: 1.87\",\"Covariance: -0.44 <br />Pooled SD: 0.99\",\"Covariance: -0.21 <br />Pooled SD: 2.3\",\"Covariance: 0.69 <br />Pooled SD: 0.71\",\"Covariance: -1.66 <br />Pooled SD: 3.49\",\"Covariance: 1.26 <br />Pooled SD: 1.86\",\"Covariance: 0.2 <br />Pooled SD: 0.34\",\"Covariance: 0.12 <br />Pooled SD: 1.43\",\"Covariance: 0.07 <br />Pooled SD: 1.32\",\"Covariance: 0.3 <br />Pooled SD: 1.26\",\"Covariance: 0.33 <br />Pooled SD: 1.41\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: -0.05 <br />Pooled SD: 0.43\",\"Covariance: 0.06 <br />Pooled SD: 1.7\",\"Covariance: 1.3 <br />Pooled SD: 1.96\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: 0.57 <br />Pooled SD: 2.19\",\"Covariance: 0.99 <br />Pooled SD: 1.33\",\"Covariance: -0.46 <br />Pooled SD: 0.64\",\"Covariance: 0.66 <br />Pooled SD: 1.26\",\"Covariance: -0.96 <br />Pooled SD: 1.94\",\"Covariance: 0.91 <br />Pooled SD: 1.11\",\"Covariance: -0.02 <br />Pooled SD: 1.15\",\"Covariance: 0.12 <br />Pooled SD: 0.54\",\"Covariance: 0.19 <br />Pooled SD: 0.47\",\"Covariance: 1.78 <br />Pooled SD: 2.27\",\"Covariance: -1.2 <br />Pooled SD: 1.46\",\"Covariance: -1.2 <br />Pooled SD: 1.47\",\"Covariance: -0.01 <br />Pooled SD: 0.63\",\"Covariance: 0.75 <br />Pooled SD: 2.54\",\"Covariance: 0.62 <br />Pooled SD: 1.41\",\"Covariance: -0.06 <br />Pooled SD: 0.87\",\"Covariance: -0.85 <br />Pooled SD: 1.84\",\"Covariance: -0.72 <br />Pooled SD: 1.21\",\"Covariance: 0.99 <br />Pooled SD: 1.97\",\"Covariance: 0.08 <br />Pooled SD: 0.86\",\"Covariance: -0.18 <br />Pooled SD: 0.83\",\"Covariance: 0.45 <br />Pooled SD: 1.06\",\"Covariance: -0.82 <br />Pooled SD: 1.3\",\"Covariance: -0.09 <br />Pooled SD: 1.33\",\"Covariance: 0.94 <br />Pooled SD: 2.46\",\"Covariance: -0.12 <br />Pooled SD: 1.41\",\"Covariance: 0.37 <br />Pooled SD: 0.75\",\"Covariance: 0.19 <br />Pooled SD: 0.99\",\"Covariance: 0.7 <br />Pooled SD: 1.59\",\"Covariance: 0.03 <br />Pooled SD: 1.5\",\"Covariance: 0.17 <br />Pooled SD: 0.37\",\"Covariance: -0.31 <br />Pooled SD: 0.97\",\"Covariance: 0.58 <br />Pooled SD: 1.55\",\"Covariance: -0.97 <br />Pooled SD: 1.32\",\"Covariance: -0.25 <br />Pooled SD: 1.37\",\"Covariance: -0.58 <br />Pooled SD: 0.8\",\"Covariance: 0.33 <br />Pooled SD: 2.72\",\"Covariance: 0.53 <br />Pooled SD: 1.74\",\"Covariance: -0.01 <br />Pooled SD: 0.37\",\"Covariance: -0.1 <br />Pooled SD: 1.07\",\"Covariance: 1.84 <br />Pooled SD: 2.3\",\"Covariance: -0.5 <br />Pooled SD: 1.69\",\"Covariance: -0.65 <br />Pooled SD: 0.9\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.44 <br />Pooled SD: 1.05\",\"Covariance: -0.44 <br />Pooled SD: 1.61\",\"Covariance: -0.23 <br />Pooled SD: 1.38\",\"Covariance: 1.24 <br />Pooled SD: 3.82\",\"Covariance: 0.59 <br />Pooled SD: 0.71\",\"Covariance: -0.33 <br />Pooled SD: 2.13\",\"Covariance: -0.04 <br />Pooled SD: 0.29\",\"Covariance: 0.17 <br />Pooled SD: 0.68\",\"Covariance: -0.22 <br />Pooled SD: 0.96\",\"Covariance: -1.59 <br />Pooled SD: 1.69\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.77 <br />Pooled SD: 1.41\",\"Covariance: 0.3 <br />Pooled SD: 1.18\",\"Covariance: -0.88 <br />Pooled SD: 1.51\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.18 <br />Pooled SD: 1.8\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.64 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.58\",\"Covariance: -0.78 <br />Pooled SD: 1.07\",\"Covariance: 1.38 <br />Pooled SD: 2.2\",\"Covariance: 0.18 <br />Pooled SD: 1.03\",\"Covariance: -0.24 <br />Pooled SD: 0.56\",\"Covariance: 0.47 <br />Pooled SD: 0.76\",\"Covariance: 1.41 <br />Pooled SD: 1.97\",\"Covariance: 0.91 <br />Pooled SD: 1.5\",\"Covariance: 1.35 <br />Pooled SD: 1.79\",\"Covariance: -0.56 <br />Pooled SD: 0.64\",\"Covariance: -0.41 <br />Pooled SD: 1.23\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.6 <br />Pooled SD: 1.81\",\"Covariance: -0.62 <br />Pooled SD: 1\",\"Covariance: -0.07 <br />Pooled SD: 0.67\",\"Covariance: -0.3 <br />Pooled SD: 0.94\",\"Covariance: 1.11 <br />Pooled SD: 2.32\",\"Covariance: 0.34 <br />Pooled SD: 1.23\",\"Covariance: 0.3 <br />Pooled SD: 0.51\",\"Covariance: -0.05 <br />Pooled SD: 1.83\",\"Covariance: -0.07 <br />Pooled SD: 0.74\",\"Covariance: 0.19 <br />Pooled SD: 1.68\",\"Covariance: -0.38 <br />Pooled SD: 0.92\",\"Covariance: 0.19 <br />Pooled SD: 1.62\",\"Covariance: -0.26 <br />Pooled SD: 1.09\",\"Covariance: -0.4 <br />Pooled SD: 1.6\",\"Covariance: -0.03 <br />Pooled SD: 0.78\",\"Covariance: 0 <br />Pooled SD: 1.28\",\"Covariance: 0.51 <br />Pooled SD: 0.57\",\"Covariance: -0.01 <br />Pooled SD: 1.37\",\"Covariance: -0.75 <br />Pooled SD: 1.57\",\"Covariance: 0.72 <br />Pooled SD: 1.52\",\"Covariance: 0.9 <br />Pooled SD: 1.16\",\"Covariance: -0.42 <br />Pooled SD: 1.6\",\"Covariance: -1.21 <br />Pooled SD: 3.06\",\"Covariance: 0.6 <br />Pooled SD: 0.71\",\"Covariance: 1.03 <br />Pooled SD: 1.6\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: 1.12 <br />Pooled SD: 1.52\",\"Covariance: 1.01 <br />Pooled SD: 1.06\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.63 <br />Pooled SD: 1.88\",\"Covariance: 0.06 <br />Pooled SD: 0.39\",\"Covariance: 0.11 <br />Pooled SD: 1.69\",\"Covariance: -0.19 <br />Pooled SD: 0.83\",\"Covariance: 0.14 <br />Pooled SD: 1.43\",\"Covariance: 0.65 <br />Pooled SD: 1.17\",\"Covariance: 0.22 <br />Pooled SD: 1.16\",\"Covariance: -0.35 <br />Pooled SD: 0.9\",\"Covariance: -0.64 <br />Pooled SD: 1.37\",\"Covariance: -0.21 <br />Pooled SD: 1.07\",\"Covariance: -0.6 <br />Pooled SD: 0.79\",\"Covariance: 0.13 <br />Pooled SD: 0.66\",\"Covariance: 0.21 <br />Pooled SD: 1.11\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.99 <br />Pooled SD: 1.35\",\"Covariance: -0.24 <br />Pooled SD: 1.23\",\"Covariance: 0.24 <br />Pooled SD: 1.62\",\"Covariance: 1.14 <br />Pooled SD: 1.47\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: 0.36 <br />Pooled SD: 0.77\",\"Covariance: 0.16 <br />Pooled SD: 1.04\",\"Covariance: 0.59 <br />Pooled SD: 1.15\",\"Covariance: -0.59 <br />Pooled SD: 1.2\",\"Covariance: -0.75 <br />Pooled SD: 0.94\",\"Covariance: -0.74 <br />Pooled SD: 1.37\",\"Covariance: 0.42 <br />Pooled SD: 0.86\",\"Covariance: -0.6 <br />Pooled SD: 1.73\",\"Covariance: -0.43 <br />Pooled SD: 0.73\",\"Covariance: -0.84 <br />Pooled SD: 1.23\",\"Covariance: 0.16 <br />Pooled SD: 0.31\",\"Covariance: -0.45 <br />Pooled SD: 0.87\",\"Covariance: 0.03 <br />Pooled SD: 1.52\",\"Covariance: -0.65 <br />Pooled SD: 1.6\",\"Covariance: 0.45 <br />Pooled SD: 1.09\",\"Covariance: 1.63 <br />Pooled SD: 1.94\",\"Covariance: 1.12 <br />Pooled SD: 1.78\",\"Covariance: 0.19 <br />Pooled SD: 1.06\",\"Covariance: 1.07 <br />Pooled SD: 1.69\",\"Covariance: 0.39 <br />Pooled SD: 1.87\",\"Covariance: -0.31 <br />Pooled SD: 2.11\",\"Covariance: 1.7 <br />Pooled SD: 2.18\",\"Covariance: -0.74 <br />Pooled SD: 1.56\",\"Covariance: -0.97 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.28 <br />Pooled SD: 1.33\",\"Covariance: -0.19 <br />Pooled SD: 0.47\",\"Covariance: -0.53 <br />Pooled SD: 1.34\",\"Covariance: -0.76 <br />Pooled SD: 1.03\",\"Covariance: -0.16 <br />Pooled SD: 1.55\",\"Covariance: -1.42 <br />Pooled SD: 2.73\",\"Covariance: 0.04 <br />Pooled SD: 0.93\",\"Covariance: -0.32 <br />Pooled SD: 0.47\",\"Covariance: 0.2 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 0.61\",\"Covariance: 0.13 <br />Pooled SD: 0.64\",\"Covariance: 0.12 <br />Pooled SD: 1.93\",\"Covariance: 0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.55 <br />Pooled SD: 2.15\",\"Covariance: 0.42 <br />Pooled SD: 0.68\",\"Covariance: -0.58 <br />Pooled SD: 1.17\",\"Covariance: 0.03 <br />Pooled SD: 2.19\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: -0.51 <br />Pooled SD: 1.21\",\"Covariance: -0.05 <br />Pooled SD: 0.76\",\"Covariance: 0.24 <br />Pooled SD: 2.43\",\"Covariance: -1.13 <br />Pooled SD: 1.8\",\"Covariance: 0.46 <br />Pooled SD: 1.23\",\"Covariance: -1.33 <br />Pooled SD: 1.5\",\"Covariance: 0.27 <br />Pooled SD: 0.45\",\"Covariance: 0.21 <br />Pooled SD: 0.68\",\"Covariance: 1.22 <br />Pooled SD: 1.41\",\"Covariance: -0.49 <br />Pooled SD: 0.82\",\"Covariance: -0.62 <br />Pooled SD: 1.51\",\"Covariance: 0.82 <br />Pooled SD: 2.61\",\"Covariance: -0.11 <br />Pooled SD: 0.78\",\"Covariance: -0.58 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 0.73\",\"Covariance: -0.21 <br />Pooled SD: 1.13\",\"Covariance: 0.3 <br />Pooled SD: 0.48\",\"Covariance: 0.11 <br />Pooled SD: 0.9\",\"Covariance: -0.48 <br />Pooled SD: 0.81\",\"Covariance: 0.08 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.1\",\"Covariance: -0.27 <br />Pooled SD: 1.41\",\"Covariance: -0.53 <br />Pooled SD: 1.31\",\"Covariance: 0.78 <br />Pooled SD: 1.18\",\"Covariance: -0.18 <br />Pooled SD: 0.42\",\"Covariance: -0.03 <br />Pooled SD: 0.68\",\"Covariance: -0.25 <br />Pooled SD: 0.55\",\"Covariance: 0.61 <br />Pooled SD: 2.52\",\"Covariance: 0.25 <br />Pooled SD: 0.67\",\"Covariance: 0.13 <br />Pooled SD: 1.28\",\"Covariance: 0.15 <br />Pooled SD: 0.56\",\"Covariance: -0.59 <br />Pooled SD: 1.04\",\"Covariance: 0.24 <br />Pooled SD: 0.78\",\"Covariance: 0.84 <br />Pooled SD: 1.75\",\"Covariance: 1.05 <br />Pooled SD: 1.4\",\"Covariance: 0.81 <br />Pooled SD: 1.58\",\"Covariance: -0.07 <br />Pooled SD: 1.59\",\"Covariance: -0.07 <br />Pooled SD: 1.48\",\"Covariance: 0.63 <br />Pooled SD: 1.55\",\"Covariance: 0.89 <br />Pooled SD: 1.59\",\"Covariance: -0.27 <br />Pooled SD: 2.35\",\"Covariance: -0.93 <br />Pooled SD: 1.7\",\"Covariance: -0.43 <br />Pooled SD: 0.63\",\"Covariance: -0.49 <br />Pooled SD: 2.29\",\"Covariance: 0.49 <br />Pooled SD: 0.78\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.16 <br />Pooled SD: 1.57\",\"Covariance: -0.06 <br />Pooled SD: 0.5\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: -0.19 <br />Pooled SD: 0.34\",\"Covariance: 0.22 <br />Pooled SD: 1.62\",\"Covariance: -0.24 <br />Pooled SD: 1.84\",\"Covariance: -0.19 <br />Pooled SD: 1.56\",\"Covariance: -0.58 <br />Pooled SD: 2.24\",\"Covariance: 0.19 <br />Pooled SD: 1.07\",\"Covariance: -0.67 <br />Pooled SD: 0.97\",\"Covariance: -0.09 <br />Pooled SD: 0.93\",\"Covariance: 0.09 <br />Pooled SD: 1.26\",\"Covariance: -0.73 <br />Pooled SD: 1.04\",\"Covariance: -0.06 <br />Pooled SD: 1.13\",\"Covariance: 0.23 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.45\",\"Covariance: -0.29 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 0.91\",\"Covariance: 0.17 <br />Pooled SD: 1.88\",\"Covariance: 0.61 <br />Pooled SD: 0.93\",\"Covariance: -0.89 <br />Pooled SD: 2.03\",\"Covariance: 1.18 <br />Pooled SD: 1.96\",\"Covariance: 1.02 <br />Pooled SD: 1.43\",\"Covariance: 0.63 <br />Pooled SD: 1.13\",\"Covariance: 0.34 <br />Pooled SD: 1.65\",\"Covariance: 0.98 <br />Pooled SD: 1.46\",\"Covariance: 0.8 <br />Pooled SD: 1.15\",\"Covariance: -0.1 <br />Pooled SD: 1.17\",\"Covariance: -0.23 <br />Pooled SD: 0.59\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: 0.02 <br />Pooled SD: 0.19\",\"Covariance: 0 <br />Pooled SD: 1.42\",\"Covariance: -0.43 <br />Pooled SD: 2.13\",\"Covariance: 0.23 <br />Pooled SD: 0.71\",\"Covariance: -0.69 <br />Pooled SD: 0.73\",\"Covariance: -1.06 <br />Pooled SD: 2.53\",\"Covariance: 0.2 <br />Pooled SD: 0.67\",\"Covariance: 1.2 <br />Pooled SD: 1.5\",\"Covariance: -1.08 <br />Pooled SD: 1.28\",\"Covariance: 0.6 <br />Pooled SD: 1.27\",\"Covariance: -0.39 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 0.66\",\"Covariance: -0.25 <br />Pooled SD: 1.4\",\"Covariance: 0.44 <br />Pooled SD: 1.08\",\"Covariance: 0.34 <br />Pooled SD: 1.45\",\"Covariance: -0.48 <br />Pooled SD: 1.05\",\"Covariance: 0.64 <br />Pooled SD: 0.73\",\"Covariance: 0.47 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 0.88\",\"Covariance: 0.01 <br />Pooled SD: 1.09\",\"Covariance: 0.13 <br />Pooled SD: 0.68\",\"Covariance: 0.3 <br />Pooled SD: 0.41\",\"Covariance: 0.61 <br />Pooled SD: 2.34\",\"Covariance: 0.52 <br />Pooled SD: 0.78\",\"Covariance: 0.26 <br />Pooled SD: 0.56\",\"Covariance: 0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.52 <br />Pooled SD: 0.92\",\"Covariance: -0.44 <br />Pooled SD: 1.42\",\"Covariance: -0.64 <br />Pooled SD: 1.14\",\"Covariance: 0.17 <br />Pooled SD: 1.28\",\"Covariance: -0.31 <br />Pooled SD: 1.23\",\"Covariance: -0.58 <br />Pooled SD: 0.98\",\"Covariance: 1.96 <br />Pooled SD: 2.22\",\"Covariance: 0.7 <br />Pooled SD: 1.16\",\"Covariance: -0.11 <br />Pooled SD: 1.78\",\"Covariance: -0.07 <br />Pooled SD: 0.52\",\"Covariance: 0.82 <br />Pooled SD: 0.89\",\"Covariance: 0.25 <br />Pooled SD: 2.61\",\"Covariance: 0.96 <br />Pooled SD: 1.57\",\"Covariance: 1.27 <br />Pooled SD: 2.55\",\"Covariance: 2.17 <br />Pooled SD: 3.13\",\"Covariance: -0.41 <br />Pooled SD: 1.33\",\"Covariance: 0.43 <br />Pooled SD: 1\",\"Covariance: 0.41 <br />Pooled SD: 1.72\",\"Covariance: -0.31 <br />Pooled SD: 1.54\",\"Covariance: -0.18 <br />Pooled SD: 0.73\",\"Covariance: -0.29 <br />Pooled SD: 1.06\",\"Covariance: 0.92 <br />Pooled SD: 1.3\",\"Covariance: 0.6 <br />Pooled SD: 1.56\",\"Covariance: -0.36 <br />Pooled SD: 1.09\",\"Covariance: 0.25 <br />Pooled SD: 0.83\",\"Covariance: -1.23 <br />Pooled SD: 1.9\",\"Covariance: -1.82 <br />Pooled SD: 2.06\",\"Covariance: 0.1 <br />Pooled SD: 0.7\",\"Covariance: -0.17 <br />Pooled SD: 1.08\",\"Covariance: -0.92 <br />Pooled SD: 1.52\",\"Covariance: -0.51 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.56\",\"Covariance: 0 <br />Pooled SD: 1.31\",\"Covariance: 0.32 <br />Pooled SD: 1.13\",\"Covariance: -0.19 <br />Pooled SD: 1.25\",\"Covariance: -0.25 <br />Pooled SD: 0.73\",\"Covariance: 0.66 <br />Pooled SD: 2.38\",\"Covariance: 0.96 <br />Pooled SD: 1.21\",\"Covariance: -0.53 <br />Pooled SD: 1.51\",\"Covariance: 0.81 <br />Pooled SD: 2.32\",\"Covariance: 0.62 <br />Pooled SD: 1.96\",\"Covariance: -0.44 <br />Pooled SD: 1.23\",\"Covariance: -0.64 <br />Pooled SD: 0.85\",\"Covariance: 0.59 <br />Pooled SD: 1.24\",\"Covariance: -0.25 <br />Pooled SD: 1.43\",\"Covariance: 1.25 <br />Pooled SD: 1.41\",\"Covariance: 0.45 <br />Pooled SD: 1.59\",\"Covariance: 0.38 <br />Pooled SD: 1.21\",\"Covariance: 1.05 <br />Pooled SD: 2.25\",\"Covariance: 0.24 <br />Pooled SD: 0.74\",\"Covariance: 0.4 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.53\",\"Covariance: -0.04 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 1.52\",\"Covariance: -0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.28 <br />Pooled SD: 1.1\",\"Covariance: 1.81 <br />Pooled SD: 2.3\",\"Covariance: -0.18 <br />Pooled SD: 0.75\",\"Covariance: -0.09 <br />Pooled SD: 1.08\",\"Covariance: -0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.33 <br />Pooled SD: 0.48\",\"Covariance: 0.1 <br />Pooled SD: 1.55\",\"Covariance: 0.3 <br />Pooled SD: 2.04\",\"Covariance: 1.78 <br />Pooled SD: 1.97\",\"Covariance: -0.03 <br />Pooled SD: 1.3\",\"Covariance: 1.18 <br />Pooled SD: 2.12\",\"Covariance: 0.6 <br />Pooled SD: 1.5\",\"Covariance: 1.17 <br />Pooled SD: 2.09\",\"Covariance: 0.71 <br />Pooled SD: 1.19\",\"Covariance: 0.36 <br />Pooled SD: 1.45\",\"Covariance: -0.52 <br />Pooled SD: 1.82\",\"Covariance: -0.49 <br />Pooled SD: 1.76\",\"Covariance: -0.19 <br />Pooled SD: 1.05\",\"Covariance: -0.67 <br />Pooled SD: 2.11\",\"Covariance: -0.4 <br />Pooled SD: 1.27\",\"Covariance: -0.54 <br />Pooled SD: 1.06\",\"Covariance: 0.78 <br />Pooled SD: 1.07\",\"Covariance: 0.83 <br />Pooled SD: 1.34\",\"Covariance: 0.76 <br />Pooled SD: 1.57\",\"Covariance: -0.26 <br />Pooled SD: 0.47\",\"Covariance: -0.47 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 0.86\",\"Covariance: -0.08 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.18\",\"Covariance: 0.49 <br />Pooled SD: 0.77\",\"Covariance: -0.41 <br />Pooled SD: 2.16\",\"Covariance: 0.05 <br />Pooled SD: 0.5\",\"Covariance: 1.33 <br />Pooled SD: 1.85\",\"Covariance: 0.02 <br />Pooled SD: 0.84\",\"Covariance: -0.11 <br />Pooled SD: 0.22\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.49 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 1\",\"Covariance: 0.01 <br />Pooled SD: 1.25\",\"Covariance: 1.91 <br />Pooled SD: 2.69\",\"Covariance: -0.38 <br />Pooled SD: 0.68\",\"Covariance: 0.84 <br />Pooled SD: 0.9\",\"Covariance: -0.88 <br />Pooled SD: 2.21\",\"Covariance: 0.11 <br />Pooled SD: 1.38\",\"Covariance: 0.95 <br />Pooled SD: 1.49\",\"Covariance: -1.44 <br />Pooled SD: 1.68\",\"Covariance: -1.1 <br />Pooled SD: 1.67\",\"Covariance: 0.2 <br />Pooled SD: 0.43\",\"Covariance: 0.53 <br />Pooled SD: 1.22\",\"Covariance: 0 <br />Pooled SD: 0.26\",\"Covariance: 0.1 <br />Pooled SD: 0.95\",\"Covariance: -0.85 <br />Pooled SD: 1.94\",\"Covariance: 0 <br />Pooled SD: 0.39\",\"Covariance: 0.45 <br />Pooled SD: 1.93\",\"Covariance: 2.01 <br />Pooled SD: 2.46\",\"Covariance: -0.07 <br />Pooled SD: 3.65\",\"Covariance: -0.52 <br />Pooled SD: 0.62\",\"Covariance: 0.36 <br />Pooled SD: 0.76\",\"Covariance: 0.31 <br />Pooled SD: 1.95\",\"Covariance: 0.16 <br />Pooled SD: 0.67\",\"Covariance: 0.14 <br />Pooled SD: 0.27\",\"Covariance: 0.64 <br />Pooled SD: 1.66\",\"Covariance: 0.53 <br />Pooled SD: 0.84\",\"Covariance: -0.84 <br />Pooled SD: 1.87\",\"Covariance: -0.12 <br />Pooled SD: 0.78\",\"Covariance: -0.02 <br />Pooled SD: 0.64\",\"Covariance: 0.26 <br />Pooled SD: 0.65\",\"Covariance: -0.15 <br />Pooled SD: 1.08\",\"Covariance: 0.61 <br />Pooled SD: 1.32\",\"Covariance: 0.4 <br />Pooled SD: 1.01\",\"Covariance: -0.35 <br />Pooled SD: 0.68\",\"Covariance: 0.44 <br />Pooled SD: 1\",\"Covariance: -0.52 <br />Pooled SD: 1.26\",\"Covariance: -1.82 <br />Pooled SD: 2.36\",\"Covariance: 0.42 <br />Pooled SD: 1.33\",\"Covariance: 0 <br />Pooled SD: 1.36\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -1.12 <br />Pooled SD: 1.47\",\"Covariance: -1.82 <br />Pooled SD: 2.91\",\"Covariance: -0.39 <br />Pooled SD: 1.57\",\"Covariance: 1.12 <br />Pooled SD: 1.56\",\"Covariance: 0.35 <br />Pooled SD: 0.81\",\"Covariance: 0.3 <br />Pooled SD: 0.4\",\"Covariance: 0.99 <br />Pooled SD: 2.44\",\"Covariance: 0.34 <br />Pooled SD: 0.96\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.21 <br />Pooled SD: 1.09\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.25 <br />Pooled SD: 0.91\",\"Covariance: 0.29 <br />Pooled SD: 1.04\",\"Covariance: -1.42 <br />Pooled SD: 3.04\",\"Covariance: 0.74 <br />Pooled SD: 1.31\",\"Covariance: -0.02 <br />Pooled SD: 0.31\",\"Covariance: -1.12 <br />Pooled SD: 1.46\",\"Covariance: -0.63 <br />Pooled SD: 1.44\",\"Covariance: 0.5 <br />Pooled SD: 0.93\",\"Covariance: -1.29 <br />Pooled SD: 1.63\",\"Covariance: 0.38 <br />Pooled SD: 0.88\",\"Covariance: -0.2 <br />Pooled SD: 1.04\",\"Covariance: -0.49 <br />Pooled SD: 1.44\",\"Covariance: 0.09 <br />Pooled SD: 1.59\",\"Covariance: -0.09 <br />Pooled SD: 1.36\",\"Covariance: 0.37 <br />Pooled SD: 1.91\",\"Covariance: 0.04 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.07 <br />Pooled SD: 1.01\",\"Covariance: 0.14 <br />Pooled SD: 1.92\",\"Covariance: -0.39 <br />Pooled SD: 0.59\",\"Covariance: -0.78 <br />Pooled SD: 2.05\",\"Covariance: 0.17 <br />Pooled SD: 0.79\",\"Covariance: 0.2 <br />Pooled SD: 0.79\",\"Covariance: -0.33 <br />Pooled SD: 0.8\",\"Covariance: -0.8 <br />Pooled SD: 1.42\",\"Covariance: -0.82 <br />Pooled SD: 1.41\",\"Covariance: -0.41 <br />Pooled SD: 1.34\",\"Covariance: 0.5 <br />Pooled SD: 0.54\",\"Covariance: -0.23 <br />Pooled SD: 1.52\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: 0.39 <br />Pooled SD: 1.16\",\"Covariance: -2.13 <br />Pooled SD: 2.36\",\"Covariance: -1.51 <br />Pooled SD: 1.83\",\"Covariance: 0.1 <br />Pooled SD: 0.63\",\"Covariance: 0.69 <br />Pooled SD: 2.22\",\"Covariance: -0.09 <br />Pooled SD: 1.41\",\"Covariance: 0.05 <br />Pooled SD: 1.74\",\"Covariance: -0.25 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 2.07\",\"Covariance: 1.4 <br />Pooled SD: 3.55\",\"Covariance: 0.21 <br />Pooled SD: 1.85\",\"Covariance: -1.26 <br />Pooled SD: 1.96\",\"Covariance: 0.97 <br />Pooled SD: 1.51\",\"Covariance: -0.74 <br />Pooled SD: 1.95\",\"Covariance: 0.32 <br />Pooled SD: 1.93\",\"Covariance: 0.26 <br />Pooled SD: 1.39\",\"Covariance: -0.38 <br />Pooled SD: 0.61\",\"Covariance: 0.63 <br />Pooled SD: 2\",\"Covariance: 1.26 <br />Pooled SD: 2.37\",\"Covariance: 0.32 <br />Pooled SD: 1.05\",\"Covariance: -0.27 <br />Pooled SD: 1.01\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.42 <br />Pooled SD: 0.59\",\"Covariance: 0.26 <br />Pooled SD: 1.17\",\"Covariance: 0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.54 <br />Pooled SD: 1.71\",\"Covariance: -0.7 <br />Pooled SD: 0.97\",\"Covariance: 0.37 <br />Pooled SD: 0.65\",\"Covariance: -0.11 <br />Pooled SD: 0.33\",\"Covariance: -0.85 <br />Pooled SD: 1.63\",\"Covariance: 0.2 <br />Pooled SD: 2.3\",\"Covariance: -0.39 <br />Pooled SD: 0.75\",\"Covariance: 1.03 <br />Pooled SD: 1.49\",\"Covariance: -2.3 <br />Pooled SD: 2.76\",\"Covariance: 0.63 <br />Pooled SD: 0.75\",\"Covariance: -0.01 <br />Pooled SD: 0.91\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 0.43 <br />Pooled SD: 0.44\",\"Covariance: -0.12 <br />Pooled SD: 3.7\",\"Covariance: 0.7 <br />Pooled SD: 2.27\",\"Covariance: 0.1 <br />Pooled SD: 1.48\",\"Covariance: -0.43 <br />Pooled SD: 2.07\",\"Covariance: 0.36 <br />Pooled SD: 0.94\",\"Covariance: 1.18 <br />Pooled SD: 1.54\",\"Covariance: 0.12 <br />Pooled SD: 1.2\",\"Covariance: -0.05 <br />Pooled SD: 1.23\",\"Covariance: -0.37 <br />Pooled SD: 1.61\",\"Covariance: 0.28 <br />Pooled SD: 2.74\",\"Covariance: 0.15 <br />Pooled SD: 1.49\",\"Covariance: -0.42 <br />Pooled SD: 0.91\",\"Covariance: -0.01 <br />Pooled SD: 2.01\",\"Covariance: -0.65 <br />Pooled SD: 1.27\",\"Covariance: 0.63 <br />Pooled SD: 1.17\",\"Covariance: -0.32 <br />Pooled SD: 0.89\",\"Covariance: -0.24 <br />Pooled SD: 0.59\",\"Covariance: 0.4 <br />Pooled SD: 1.34\",\"Covariance: 0.33 <br />Pooled SD: 1.18\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.18 <br />Pooled SD: 1.08\",\"Covariance: -0.27 <br />Pooled SD: 1.58\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.37 <br />Pooled SD: 1.49\",\"Covariance: 0.74 <br />Pooled SD: 1.01\",\"Covariance: 1 <br />Pooled SD: 1.42\",\"Covariance: 0.34 <br />Pooled SD: 1.09\",\"Covariance: -0.07 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.62\",\"Covariance: 0.25 <br />Pooled SD: 1.11\",\"Covariance: -1.1 <br />Pooled SD: 1.51\",\"Covariance: -1.04 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 1.55\",\"Covariance: -0.47 <br />Pooled SD: 1.09\",\"Covariance: -0.95 <br />Pooled SD: 1.38\",\"Covariance: -1.09 <br />Pooled SD: 1.49\",\"Covariance: 0.58 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.35\",\"Covariance: -0.45 <br />Pooled SD: 1.89\",\"Covariance: 0.19 <br />Pooled SD: 1.33\",\"Covariance: -0.04 <br />Pooled SD: 1.25\",\"Covariance: -0.04 <br />Pooled SD: 1\",\"Covariance: -0.48 <br />Pooled SD: 1.57\",\"Covariance: 1.3 <br />Pooled SD: 2.34\",\"Covariance: 0.28 <br />Pooled SD: 0.88\",\"Covariance: 1.36 <br />Pooled SD: 1.5\",\"Covariance: 0.3 <br />Pooled SD: 1.32\",\"Covariance: 0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.02 <br />Pooled SD: 1.53\",\"Covariance: 0.4 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.87\",\"Covariance: 0.09 <br />Pooled SD: 0.79\",\"Covariance: 1.19 <br />Pooled SD: 2.09\",\"Covariance: 0.44 <br />Pooled SD: 1.76\",\"Covariance: 1.29 <br />Pooled SD: 1.5\",\"Covariance: 0.29 <br />Pooled SD: 0.86\",\"Covariance: -0.51 <br />Pooled SD: 2.53\",\"Covariance: 0.48 <br />Pooled SD: 2.25\",\"Covariance: 0.42 <br />Pooled SD: 1.78\",\"Covariance: -0.84 <br />Pooled SD: 1.66\",\"Covariance: -0.22 <br />Pooled SD: 1.13\",\"Covariance: 0 <br />Pooled SD: 1.9\",\"Covariance: -0.38 <br />Pooled SD: 1.31\",\"Covariance: 0.51 <br />Pooled SD: 0.65\",\"Covariance: 0.43 <br />Pooled SD: 0.78\",\"Covariance: 0.27 <br />Pooled SD: 0.5\",\"Covariance: 0.44 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 0.98\",\"Covariance: 0.26 <br />Pooled SD: 0.5\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.28 <br />Pooled SD: 0.83\",\"Covariance: -0.37 <br />Pooled SD: 1.04\",\"Covariance: -0.38 <br />Pooled SD: 0.64\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.5 <br />Pooled SD: 1.74\",\"Covariance: -1.2 <br />Pooled SD: 2.26\",\"Covariance: 0.54 <br />Pooled SD: 0.86\",\"Covariance: -0.59 <br />Pooled SD: 1.23\",\"Covariance: 0.56 <br />Pooled SD: 1.22\",\"Covariance: 0.75 <br />Pooled SD: 1.45\",\"Covariance: 0.13 <br />Pooled SD: 0.54\",\"Covariance: 0.43 <br />Pooled SD: 1.8\",\"Covariance: -0.34 <br />Pooled SD: 2.03\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 1.24 <br />Pooled SD: 1.59\",\"Covariance: -0.18 <br />Pooled SD: 0.74\",\"Covariance: 0.22 <br />Pooled SD: 0.81\",\"Covariance: -0.09 <br />Pooled SD: 0.95\",\"Covariance: 0.09 <br />Pooled SD: 1.3\",\"Covariance: 0.07 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 1.54\",\"Covariance: 0.44 <br />Pooled SD: 1.43\",\"Covariance: -0.65 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.2\",\"Covariance: -0.38 <br />Pooled SD: 0.98\",\"Covariance: -0.73 <br />Pooled SD: 0.99\",\"Covariance: 0.3 <br />Pooled SD: 0.87\",\"Covariance: 0.83 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.51\",\"Covariance: -0.25 <br />Pooled SD: 0.56\",\"Covariance: -1.32 <br />Pooled SD: 1.7\",\"Covariance: -0.17 <br />Pooled SD: 0.68\",\"Covariance: -1.19 <br />Pooled SD: 1.47\",\"Covariance: -0.66 <br />Pooled SD: 2.61\",\"Covariance: 0.72 <br />Pooled SD: 1.64\",\"Covariance: 0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.02 <br />Pooled SD: 1.34\",\"Covariance: -0.9 <br />Pooled SD: 1.34\",\"Covariance: 0.19 <br />Pooled SD: 1.99\",\"Covariance: -0.05 <br />Pooled SD: 1.53\",\"Covariance: -0.1 <br />Pooled SD: 0.58\",\"Covariance: 0.17 <br />Pooled SD: 0.9\",\"Covariance: 0.13 <br />Pooled SD: 0.56\",\"Covariance: 0.14 <br />Pooled SD: 1.69\",\"Covariance: -0.68 <br />Pooled SD: 1.21\",\"Covariance: 0.03 <br />Pooled SD: 1.86\",\"Covariance: -0.24 <br />Pooled SD: 0.73\",\"Covariance: 0.05 <br />Pooled SD: 1.31\",\"Covariance: 0.19 <br />Pooled SD: 0.29\",\"Covariance: 1.24 <br />Pooled SD: 1.35\",\"Covariance: 0.12 <br />Pooled SD: 0.28\",\"Covariance: 0.1 <br />Pooled SD: 0.79\",\"Covariance: 0.6 <br />Pooled SD: 2.27\",\"Covariance: 0.39 <br />Pooled SD: 1.04\",\"Covariance: -1.48 <br />Pooled SD: 2.22\",\"Covariance: 0.19 <br />Pooled SD: 0.77\",\"Covariance: -0.33 <br />Pooled SD: 0.92\",\"Covariance: -0.02 <br />Pooled SD: 1.23\",\"Covariance: -0.68 <br />Pooled SD: 1.28\",\"Covariance: -0.2 <br />Pooled SD: 0.44\",\"Covariance: 0.5 <br />Pooled SD: 0.82\",\"Covariance: -1.33 <br />Pooled SD: 1.42\",\"Covariance: -0.11 <br />Pooled SD: 1.46\",\"Covariance: -0.06 <br />Pooled SD: 0.27\",\"Covariance: 0.98 <br />Pooled SD: 1.94\",\"Covariance: -0.56 <br />Pooled SD: 0.99\",\"Covariance: -0.58 <br />Pooled SD: 1.53\",\"Covariance: 0.07 <br />Pooled SD: 0.95\",\"Covariance: -0.14 <br />Pooled SD: 1.12\",\"Covariance: 0.46 <br />Pooled SD: 0.84\",\"Covariance: 0.3 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 0.73\",\"Covariance: 0.76 <br />Pooled SD: 1.74\",\"Covariance: -0.74 <br />Pooled SD: 2.48\",\"Covariance: -0.04 <br />Pooled SD: 1.27\",\"Covariance: 0.22 <br />Pooled SD: 1.67\",\"Covariance: -1.24 <br />Pooled SD: 1.25\",\"Covariance: -0.66 <br />Pooled SD: 1.02\",\"Covariance: -0.34 <br />Pooled SD: 0.68\",\"Covariance: 0.52 <br />Pooled SD: 0.87\",\"Covariance: -0.9 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 1.08\",\"Covariance: 0.5 <br />Pooled SD: 0.79\",\"Covariance: -0.15 <br />Pooled SD: 1.3\",\"Covariance: 0.28 <br />Pooled SD: 0.76\",\"Covariance: 0.41 <br />Pooled SD: 1.02\",\"Covariance: 0.5 <br />Pooled SD: 0.65\",\"Covariance: -0.63 <br />Pooled SD: 1.14\",\"Covariance: -1.13 <br />Pooled SD: 1.55\",\"Covariance: 0.82 <br />Pooled SD: 1.17\",\"Covariance: -0.34 <br />Pooled SD: 1.93\",\"Covariance: 0.19 <br />Pooled SD: 0.64\",\"Covariance: -0.84 <br />Pooled SD: 2.64\",\"Covariance: 0.21 <br />Pooled SD: 1.44\",\"Covariance: 0.11 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.64\",\"Covariance: 0.12 <br />Pooled SD: 0.75\",\"Covariance: -0.67 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.91\",\"Covariance: 0.49 <br />Pooled SD: 1.11\",\"Covariance: -0.5 <br />Pooled SD: 1.05\",\"Covariance: -0.74 <br />Pooled SD: 1.12\",\"Covariance: -0.06 <br />Pooled SD: 2.54\",\"Covariance: 0.35 <br />Pooled SD: 0.59\",\"Covariance: 0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.56 <br />Pooled SD: 1.2\",\"Covariance: -0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.34 <br />Pooled SD: 1.85\",\"Covariance: -0.19 <br />Pooled SD: 1.51\",\"Covariance: 0.06 <br />Pooled SD: 1.06\",\"Covariance: -0.33 <br />Pooled SD: 0.78\",\"Covariance: -0.38 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.68\",\"Covariance: -0.01 <br />Pooled SD: 2.09\",\"Covariance: -0.45 <br />Pooled SD: 1.09\",\"Covariance: 0.77 <br />Pooled SD: 1.48\",\"Covariance: 0.49 <br />Pooled SD: 1.54\",\"Covariance: 0.9 <br />Pooled SD: 1.11\",\"Covariance: 0.87 <br />Pooled SD: 2.98\",\"Covariance: 0 <br />Pooled SD: 0.58\",\"Covariance: 0.11 <br />Pooled SD: 1\",\"Covariance: 0.24 <br />Pooled SD: 1.85\",\"Covariance: 1.62 <br />Pooled SD: 4.07\",\"Covariance: 0.09 <br />Pooled SD: 1.71\",\"Covariance: 1.56 <br />Pooled SD: 1.61\",\"Covariance: -1.13 <br />Pooled SD: 1.22\",\"Covariance: 0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.83 <br />Pooled SD: 1.54\",\"Covariance: 0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.29 <br />Pooled SD: 0.53\",\"Covariance: -1.06 <br />Pooled SD: 1.59\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.11 <br />Pooled SD: 0.81\",\"Covariance: -0.25 <br />Pooled SD: 0.6\",\"Covariance: -0.6 <br />Pooled SD: 1.44\",\"Covariance: -0.57 <br />Pooled SD: 1.15\",\"Covariance: -0.07 <br />Pooled SD: 0.93\",\"Covariance: 0.48 <br />Pooled SD: 1.09\",\"Covariance: -0.25 <br />Pooled SD: 0.8\",\"Covariance: 0.76 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.8\",\"Covariance: -0.22 <br />Pooled SD: 1.9\",\"Covariance: -0.52 <br />Pooled SD: 1.12\",\"Covariance: 1.55 <br />Pooled SD: 3.16\",\"Covariance: 0.03 <br />Pooled SD: 1.12\",\"Covariance: 0.75 <br />Pooled SD: 1.41\",\"Covariance: 0.4 <br />Pooled SD: 1.03\",\"Covariance: 0.12 <br />Pooled SD: 1.03\",\"Covariance: 0.06 <br />Pooled SD: 0.3\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.13 <br />Pooled SD: 0.94\",\"Covariance: 1.46 <br />Pooled SD: 1.75\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.28 <br />Pooled SD: 1.2\",\"Covariance: -0.4 <br />Pooled SD: 0.77\",\"Covariance: -0.11 <br />Pooled SD: 1.84\",\"Covariance: 0.94 <br />Pooled SD: 1.2\",\"Covariance: 0.45 <br />Pooled SD: 1.01\",\"Covariance: -0.5 <br />Pooled SD: 1.06\",\"Covariance: 0.3 <br />Pooled SD: 2.92\",\"Covariance: -0.03 <br />Pooled SD: 0.66\",\"Covariance: -0.46 <br />Pooled SD: 0.59\",\"Covariance: 1.77 <br />Pooled SD: 2.96\",\"Covariance: -0.36 <br />Pooled SD: 0.8\",\"Covariance: 0.25 <br />Pooled SD: 1.28\",\"Covariance: 0.59 <br />Pooled SD: 1.62\",\"Covariance: 0.59 <br />Pooled SD: 0.88\",\"Covariance: 0.11 <br />Pooled SD: 1.36\",\"Covariance: 0.61 <br />Pooled SD: 1.52\",\"Covariance: 0.53 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 0.97\",\"Covariance: -0.95 <br />Pooled SD: 1.82\",\"Covariance: -1.31 <br />Pooled SD: 1.83\",\"Covariance: 0.36 <br />Pooled SD: 0.9\",\"Covariance: -1.36 <br />Pooled SD: 2.6\",\"Covariance: 0.51 <br />Pooled SD: 1.38\",\"Covariance: -0.26 <br />Pooled SD: 0.74\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: -0.66 <br />Pooled SD: 0.81\",\"Covariance: 0.39 <br />Pooled SD: 0.91\",\"Covariance: -0.36 <br />Pooled SD: 0.59\",\"Covariance: -0.42 <br />Pooled SD: 1.17\",\"Covariance: -0.54 <br />Pooled SD: 1.46\",\"Covariance: -0.9 <br />Pooled SD: 1.19\",\"Covariance: 0.64 <br />Pooled SD: 1.38\",\"Covariance: 0.41 <br />Pooled SD: 2.12\",\"Covariance: -0.39 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.92\",\"Covariance: -0.09 <br />Pooled SD: 0.71\",\"Covariance: -0.05 <br />Pooled SD: 0.73\",\"Covariance: -0.05 <br />Pooled SD: 1.03\",\"Covariance: 0.37 <br />Pooled SD: 0.97\",\"Covariance: 0.39 <br />Pooled SD: 1.05\",\"Covariance: 0.48 <br />Pooled SD: 2.15\",\"Covariance: -1.67 <br />Pooled SD: 2.42\",\"Covariance: 1.88 <br />Pooled SD: 2.8\",\"Covariance: -0.63 <br />Pooled SD: 1.41\",\"Covariance: -0.96 <br />Pooled SD: 1.66\",\"Covariance: -0.9 <br />Pooled SD: 1.49\",\"Covariance: 1.23 <br />Pooled SD: 1.81\",\"Covariance: 0.41 <br />Pooled SD: 1.68\",\"Covariance: -0.14 <br />Pooled SD: 1.42\",\"Covariance: 0.13 <br />Pooled SD: 1.6\",\"Covariance: 2.49 <br />Pooled SD: 3.05\",\"Covariance: 0.24 <br />Pooled SD: 0.85\",\"Covariance: 0.28 <br />Pooled SD: 0.67\",\"Covariance: 0.57 <br />Pooled SD: 1.65\",\"Covariance: -0.6 <br />Pooled SD: 1.58\",\"Covariance: 0.52 <br />Pooled SD: 1.03\",\"Covariance: -0.8 <br />Pooled SD: 2.81\",\"Covariance: -0.6 <br />Pooled SD: 1.24\",\"Covariance: -0.96 <br />Pooled SD: 1.79\",\"Covariance: 0.63 <br />Pooled SD: 1.01\",\"Covariance: 0.54 <br />Pooled SD: 1.22\",\"Covariance: 0.37 <br />Pooled SD: 1.2\",\"Covariance: 0.22 <br />Pooled SD: 1.14\",\"Covariance: 0.11 <br />Pooled SD: 1.26\",\"Covariance: 0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.77 <br />Pooled SD: 1.61\",\"Covariance: 0.77 <br />Pooled SD: 2.3\",\"Covariance: -0.22 <br />Pooled SD: 0.93\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.41 <br />Pooled SD: 1.07\",\"Covariance: 0.79 <br />Pooled SD: 2.22\",\"Covariance: -0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.37 <br />Pooled SD: 1.44\",\"Covariance: 1.75 <br />Pooled SD: 4.72\",\"Covariance: 0.16 <br />Pooled SD: 0.84\",\"Covariance: 0.13 <br />Pooled SD: 0.96\",\"Covariance: 0.06 <br />Pooled SD: 0.53\",\"Covariance: -0.28 <br />Pooled SD: 0.59\",\"Covariance: -0.13 <br />Pooled SD: 1.63\",\"Covariance: 0.05 <br />Pooled SD: 0.26\",\"Covariance: 0.07 <br />Pooled SD: 2.2\",\"Covariance: 0.1 <br />Pooled SD: 0.48\",\"Covariance: 0.7 <br />Pooled SD: 1.48\",\"Covariance: 1.17 <br />Pooled SD: 2.02\",\"Covariance: -0.7 <br />Pooled SD: 1.59\",\"Covariance: -0.26 <br />Pooled SD: 0.49\",\"Covariance: -0.22 <br />Pooled SD: 0.67\",\"Covariance: 0.22 <br />Pooled SD: 0.37\",\"Covariance: -0.01 <br />Pooled SD: 0.98\",\"Covariance: -0.71 <br />Pooled SD: 1.61\",\"Covariance: 1.43 <br />Pooled SD: 2.12\",\"Covariance: -0.75 <br />Pooled SD: 1.73\",\"Covariance: -0.3 <br />Pooled SD: 0.46\",\"Covariance: 0.63 <br />Pooled SD: 1.28\",\"Covariance: -0.07 <br />Pooled SD: 0.37\",\"Covariance: -0.13 <br />Pooled SD: 0.8\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: 1.27 <br />Pooled SD: 2.12\",\"Covariance: 0.85 <br />Pooled SD: 1.25\",\"Covariance: -0.01 <br />Pooled SD: 1.11\",\"Covariance: -0.15 <br />Pooled SD: 0.67\",\"Covariance: -0.27 <br />Pooled SD: 1.38\",\"Covariance: 0.14 <br />Pooled SD: 1.02\",\"Covariance: -0.14 <br />Pooled SD: 1.61\",\"Covariance: 0.08 <br />Pooled SD: 1.24\",\"Covariance: 0.68 <br />Pooled SD: 1.5\",\"Covariance: 0.12 <br />Pooled SD: 0.7\",\"Covariance: 0.46 <br />Pooled SD: 0.55\",\"Covariance: -0.12 <br />Pooled SD: 0.83\",\"Covariance: -0.38 <br />Pooled SD: 2.5\",\"Covariance: 0.68 <br />Pooled SD: 0.94\",\"Covariance: 1.27 <br />Pooled SD: 1.95\",\"Covariance: -1.29 <br />Pooled SD: 1.4\",\"Covariance: -0.37 <br />Pooled SD: 0.68\",\"Covariance: -0.01 <br />Pooled SD: 0.4\",\"Covariance: -0.61 <br />Pooled SD: 0.98\",\"Covariance: 0.02 <br />Pooled SD: 1.26\",\"Covariance: 0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.86 <br />Pooled SD: 1.53\",\"Covariance: -0.68 <br />Pooled SD: 0.89\",\"Covariance: -0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.7 <br />Pooled SD: 2\",\"Covariance: 0.17 <br />Pooled SD: 1.02\",\"Covariance: -0.44 <br />Pooled SD: 1.81\",\"Covariance: 0.08 <br />Pooled SD: 1.25\",\"Covariance: 0.02 <br />Pooled SD: 1.02\",\"Covariance: 0.61 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 1.48\",\"Covariance: 0.27 <br />Pooled SD: 2.64\",\"Covariance: 0.17 <br />Pooled SD: 1.03\",\"Covariance: 0.26 <br />Pooled SD: 0.51\",\"Covariance: -0.92 <br />Pooled SD: 1.76\",\"Covariance: 0.63 <br />Pooled SD: 1.2\",\"Covariance: 1.1 <br />Pooled SD: 2.84\",\"Covariance: -1.07 <br />Pooled SD: 1.58\",\"Covariance: -0.52 <br />Pooled SD: 0.77\",\"Covariance: -0.94 <br />Pooled SD: 1.15\",\"Covariance: 0.16 <br />Pooled SD: 1.16\",\"Covariance: 0.62 <br />Pooled SD: 1.12\",\"Covariance: -0.14 <br />Pooled SD: 0.88\",\"Covariance: 0.13 <br />Pooled SD: 1.41\",\"Covariance: 0.84 <br />Pooled SD: 1.48\",\"Covariance: -0.17 <br />Pooled SD: 1.92\",\"Covariance: -0.76 <br />Pooled SD: 1.29\",\"Covariance: -0.95 <br />Pooled SD: 1.65\",\"Covariance: 0.76 <br />Pooled SD: 2.05\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: 0.82 <br />Pooled SD: 0.92\",\"Covariance: -0.29 <br />Pooled SD: 1.04\",\"Covariance: -0.01 <br />Pooled SD: 1.26\",\"Covariance: -0.04 <br />Pooled SD: 1.14\",\"Covariance: 0.08 <br />Pooled SD: 0.28\",\"Covariance: -0.12 <br />Pooled SD: 0.44\",\"Covariance: 0.39 <br />Pooled SD: 1.72\",\"Covariance: 0.89 <br />Pooled SD: 0.94\",\"Covariance: 0.45 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 1.27\",\"Covariance: -0.34 <br />Pooled SD: 1.49\",\"Covariance: -0.66 <br />Pooled SD: 1.09\",\"Covariance: 0.09 <br />Pooled SD: 0.86\",\"Covariance: 0.49 <br />Pooled SD: 1.49\",\"Covariance: 0.61 <br />Pooled SD: 1.31\",\"Covariance: -0.66 <br />Pooled SD: 0.8\",\"Covariance: -0.59 <br />Pooled SD: 0.77\",\"Covariance: 1.06 <br />Pooled SD: 1.55\",\"Covariance: 0.44 <br />Pooled SD: 1.26\",\"Covariance: 0.35 <br />Pooled SD: 1.06\",\"Covariance: -0.22 <br />Pooled SD: 0.74\",\"Covariance: 0.09 <br />Pooled SD: 1.03\",\"Covariance: -0.47 <br />Pooled SD: 1.33\",\"Covariance: -0.15 <br />Pooled SD: 1.19\",\"Covariance: -0.77 <br />Pooled SD: 1.52\",\"Covariance: -0.3 <br />Pooled SD: 0.56\",\"Covariance: 0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.79\",\"Covariance: 1.31 <br />Pooled SD: 1.85\",\"Covariance: 0.05 <br />Pooled SD: 2.5\",\"Covariance: 0.51 <br />Pooled SD: 1.68\",\"Covariance: -0.04 <br />Pooled SD: 1.01\",\"Covariance: 0.72 <br />Pooled SD: 1.07\",\"Covariance: -0.62 <br />Pooled SD: 1.09\",\"Covariance: 1.45 <br />Pooled SD: 1.97\",\"Covariance: -0.42 <br />Pooled SD: 1.21\",\"Covariance: 0.23 <br />Pooled SD: 2.22\",\"Covariance: -0.07 <br />Pooled SD: 0.27\",\"Covariance: -0.49 <br />Pooled SD: 1.03\",\"Covariance: -0.6 <br />Pooled SD: 0.76\",\"Covariance: 0.76 <br />Pooled SD: 1.26\",\"Covariance: -0.76 <br />Pooled SD: 1.16\",\"Covariance: -0.55 <br />Pooled SD: 1.72\",\"Covariance: -0.29 <br />Pooled SD: 1.39\",\"Covariance: 1.18 <br />Pooled SD: 1.78\",\"Covariance: 0.37 <br />Pooled SD: 0.81\",\"Covariance: 0.13 <br />Pooled SD: 1.07\",\"Covariance: -0.64 <br />Pooled SD: 1.55\",\"Covariance: -0.42 <br />Pooled SD: 1.4\",\"Covariance: 0.25 <br />Pooled SD: 1.54\",\"Covariance: 0.28 <br />Pooled SD: 0.49\",\"Covariance: -0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.14 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.69\",\"Covariance: 0.91 <br />Pooled SD: 1.39\",\"Covariance: 0.34 <br />Pooled SD: 1.75\",\"Covariance: 0.18 <br />Pooled SD: 0.79\",\"Covariance: -0.55 <br />Pooled SD: 0.94\",\"Covariance: 1.97 <br />Pooled SD: 3.66\",\"Covariance: -0.13 <br />Pooled SD: 0.93\",\"Covariance: -0.03 <br />Pooled SD: 2.33\",\"Covariance: -0.8 <br />Pooled SD: 2.42\",\"Covariance: 0.72 <br />Pooled SD: 1.57\",\"Covariance: -0.02 <br />Pooled SD: 0.15\",\"Covariance: -0.12 <br />Pooled SD: 0.42\",\"Covariance: 0.41 <br />Pooled SD: 1.18\",\"Covariance: -0.41 <br />Pooled SD: 1.27\",\"Covariance: -0.67 <br />Pooled SD: 2.02\",\"Covariance: 0.26 <br />Pooled SD: 1.81\",\"Covariance: 0.25 <br />Pooled SD: 0.7\",\"Covariance: -0.38 <br />Pooled SD: 0.99\",\"Covariance: 0.09 <br />Pooled SD: 0.55\",\"Covariance: -0.58 <br />Pooled SD: 0.87\",\"Covariance: -0.41 <br />Pooled SD: 0.94\",\"Covariance: 0.04 <br />Pooled SD: 0.72\",\"Covariance: 0.66 <br />Pooled SD: 1.3\",\"Covariance: -0.15 <br />Pooled SD: 0.88\",\"Covariance: -0.04 <br />Pooled SD: 1.1\",\"Covariance: 0.15 <br />Pooled SD: 2.46\",\"Covariance: -0.35 <br />Pooled SD: 2.43\",\"Covariance: -0.24 <br />Pooled SD: 0.91\",\"Covariance: -1.47 <br />Pooled SD: 2.03\",\"Covariance: 0.4 <br />Pooled SD: 0.6\",\"Covariance: 0.27 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 0.52\",\"Covariance: -0.35 <br />Pooled SD: 1.68\",\"Covariance: -1.03 <br />Pooled SD: 1.61\",\"Covariance: -0.9 <br />Pooled SD: 0.99\",\"Covariance: -0.01 <br />Pooled SD: 1.07\",\"Covariance: -1.18 <br />Pooled SD: 2.24\",\"Covariance: -0.09 <br />Pooled SD: 1.04\",\"Covariance: -0.76 <br />Pooled SD: 1.36\",\"Covariance: 2.09 <br />Pooled SD: 2.82\",\"Covariance: 0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.45 <br />Pooled SD: 1.7\",\"Covariance: -0.39 <br />Pooled SD: 1.08\",\"Covariance: -0.32 <br />Pooled SD: 0.59\",\"Covariance: -0.68 <br />Pooled SD: 1.29\",\"Covariance: 0.13 <br />Pooled SD: 1.92\",\"Covariance: 0.31 <br />Pooled SD: 0.67\",\"Covariance: 0.39 <br />Pooled SD: 1.07\",\"Covariance: -1.19 <br />Pooled SD: 1.39\",\"Covariance: 0.19 <br />Pooled SD: 0.9\",\"Covariance: -0.77 <br />Pooled SD: 0.89\",\"Covariance: 0.38 <br />Pooled SD: 1.35\",\"Covariance: -0.47 <br />Pooled SD: 1.29\",\"Covariance: 0.86 <br />Pooled SD: 2.24\",\"Covariance: 0.06 <br />Pooled SD: 0.6\",\"Covariance: 0.51 <br />Pooled SD: 1.14\",\"Covariance: 0.03 <br />Pooled SD: 0.51\",\"Covariance: 0.35 <br />Pooled SD: 1.5\",\"Covariance: -0.01 <br />Pooled SD: 1.17\",\"Covariance: 0.38 <br />Pooled SD: 0.76\",\"Covariance: -0.16 <br />Pooled SD: 1.11\",\"Covariance: -0.74 <br />Pooled SD: 1.43\",\"Covariance: -1.65 <br />Pooled SD: 2\",\"Covariance: -0.35 <br />Pooled SD: 1.03\",\"Covariance: -0.13 <br />Pooled SD: 0.78\",\"Covariance: -0.68 <br />Pooled SD: 0.97\",\"Covariance: -0.16 <br />Pooled SD: 0.23\",\"Covariance: 0.37 <br />Pooled SD: 1.11\",\"Covariance: 0.22 <br />Pooled SD: 0.55\",\"Covariance: 0.1 <br />Pooled SD: 1.46\",\"Covariance: 0.18 <br />Pooled SD: 0.82\",\"Covariance: 0.17 <br />Pooled SD: 0.72\",\"Covariance: -0.43 <br />Pooled SD: 1.07\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: -0.7 <br />Pooled SD: 0.92\",\"Covariance: -0.23 <br />Pooled SD: 1.12\",\"Covariance: -0.59 <br />Pooled SD: 1.78\",\"Covariance: 0.12 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.02\",\"Covariance: 0.04 <br />Pooled SD: 0.86\",\"Covariance: 0.09 <br />Pooled SD: 0.51\",\"Covariance: 0.37 <br />Pooled SD: 0.87\",\"Covariance: 0.86 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 1.15\",\"Covariance: -1.86 <br />Pooled SD: 2.83\",\"Covariance: 0.33 <br />Pooled SD: 1.68\",\"Covariance: -1.37 <br />Pooled SD: 1.97\",\"Covariance: 0.41 <br />Pooled SD: 0.94\",\"Covariance: 1.15 <br />Pooled SD: 2.29\",\"Covariance: -0.17 <br />Pooled SD: 0.83\",\"Covariance: -0.04 <br />Pooled SD: 1.37\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.02 <br />Pooled SD: 2.06\",\"Covariance: -0.08 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.53\",\"Covariance: 0.98 <br />Pooled SD: 1.34\",\"Covariance: 0.05 <br />Pooled SD: 1.4\",\"Covariance: 0.8 <br />Pooled SD: 1.76\",\"Covariance: -0.79 <br />Pooled SD: 1.28\",\"Covariance: 0.61 <br />Pooled SD: 1.28\",\"Covariance: 0.71 <br />Pooled SD: 0.98\",\"Covariance: 0.45 <br />Pooled SD: 0.76\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.1 <br />Pooled SD: 2.09\",\"Covariance: -0.78 <br />Pooled SD: 1.24\",\"Covariance: -0.63 <br />Pooled SD: 1.79\",\"Covariance: 0.1 <br />Pooled SD: 1.1\",\"Covariance: 0.48 <br />Pooled SD: 0.92\",\"Covariance: 1.24 <br />Pooled SD: 2.05\",\"Covariance: -1.36 <br />Pooled SD: 2.27\",\"Covariance: 0.01 <br />Pooled SD: 0.68\",\"Covariance: 0.53 <br />Pooled SD: 1.08\",\"Covariance: 0.48 <br />Pooled SD: 0.73\",\"Covariance: -0.07 <br />Pooled SD: 1.19\",\"Covariance: 0.26 <br />Pooled SD: 1.46\",\"Covariance: 0.1 <br />Pooled SD: 1.19\",\"Covariance: 0.44 <br />Pooled SD: 0.97\",\"Covariance: 0.64 <br />Pooled SD: 1.32\",\"Covariance: -0.28 <br />Pooled SD: 0.71\",\"Covariance: -0.11 <br />Pooled SD: 0.97\",\"Covariance: -0.19 <br />Pooled SD: 0.78\",\"Covariance: -0.2 <br />Pooled SD: 0.62\",\"Covariance: -0.91 <br />Pooled SD: 1.94\",\"Covariance: 0.35 <br />Pooled SD: 1.63\",\"Covariance: -0.66 <br />Pooled SD: 1.21\",\"Covariance: 0.75 <br />Pooled SD: 2.26\",\"Covariance: 0.47 <br />Pooled SD: 1.07\",\"Covariance: -0.46 <br />Pooled SD: 0.73\",\"Covariance: -0.18 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 1.79\",\"Covariance: 0.09 <br />Pooled SD: 1.47\",\"Covariance: 0.85 <br />Pooled SD: 0.98\",\"Covariance: -0.4 <br />Pooled SD: 0.78\",\"Covariance: 0.28 <br />Pooled SD: 0.64\",\"Covariance: 0.13 <br />Pooled SD: 1.44\",\"Covariance: 0.02 <br />Pooled SD: 0.29\",\"Covariance: 0.69 <br />Pooled SD: 1.71\",\"Covariance: -0.11 <br />Pooled SD: 1.94\",\"Covariance: -0.15 <br />Pooled SD: 0.51\",\"Covariance: 0.28 <br />Pooled SD: 1.06\",\"Covariance: -0.17 <br />Pooled SD: 1\",\"Covariance: -0.29 <br />Pooled SD: 1.17\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.17 <br />Pooled SD: 0.55\",\"Covariance: -0.29 <br />Pooled SD: 0.92\",\"Covariance: -0.03 <br />Pooled SD: 0.45\",\"Covariance: 0.14 <br />Pooled SD: 0.77\",\"Covariance: 0.82 <br />Pooled SD: 1.71\",\"Covariance: -0.98 <br />Pooled SD: 1.74\",\"Covariance: 0.49 <br />Pooled SD: 0.66\",\"Covariance: -0.45 <br />Pooled SD: 0.78\",\"Covariance: 0.07 <br />Pooled SD: 0.89\",\"Covariance: -1.68 <br />Pooled SD: 2.1\",\"Covariance: -1.11 <br />Pooled SD: 1.26\",\"Covariance: -0.18 <br />Pooled SD: 0.9\",\"Covariance: -1.72 <br />Pooled SD: 2.04\",\"Covariance: 0.14 <br />Pooled SD: 0.74\",\"Covariance: -0.8 <br />Pooled SD: 1.28\",\"Covariance: -0.98 <br />Pooled SD: 1.26\",\"Covariance: 0.37 <br />Pooled SD: 1.47\",\"Covariance: -1.45 <br />Pooled SD: 2.08\",\"Covariance: -0.32 <br />Pooled SD: 0.33\",\"Covariance: 0.11 <br />Pooled SD: 0.8\",\"Covariance: 0.14 <br />Pooled SD: 0.33\",\"Covariance: 1.02 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 0.94\",\"Covariance: 0.26 <br />Pooled SD: 0.58\",\"Covariance: 0.61 <br />Pooled SD: 1.79\",\"Covariance: 0.14 <br />Pooled SD: 0.76\",\"Covariance: 0.25 <br />Pooled SD: 1.72\",\"Covariance: 0 <br />Pooled SD: 0.72\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -0.33 <br />Pooled SD: 1.17\",\"Covariance: 0.48 <br />Pooled SD: 0.85\",\"Covariance: -1.15 <br />Pooled SD: 1.75\",\"Covariance: 0.55 <br />Pooled SD: 0.64\",\"Covariance: -0.06 <br />Pooled SD: 0.47\",\"Covariance: -1.04 <br />Pooled SD: 1.52\",\"Covariance: -0.43 <br />Pooled SD: 0.58\",\"Covariance: 0.85 <br />Pooled SD: 1.31\",\"Covariance: -0.2 <br />Pooled SD: 2.07\",\"Covariance: -0.38 <br />Pooled SD: 0.74\",\"Covariance: -0.28 <br />Pooled SD: 0.88\",\"Covariance: -0.21 <br />Pooled SD: 0.66\",\"Covariance: -0.03 <br />Pooled SD: 0.55\",\"Covariance: -1.1 <br />Pooled SD: 1.81\",\"Covariance: -1.98 <br />Pooled SD: 2.03\",\"Covariance: -0.7 <br />Pooled SD: 1.19\",\"Covariance: 0.34 <br />Pooled SD: 1.18\",\"Covariance: 0 <br />Pooled SD: 0.49\",\"Covariance: -0.89 <br />Pooled SD: 1.12\",\"Covariance: -1.15 <br />Pooled SD: 2.11\",\"Covariance: 0.73 <br />Pooled SD: 2.89\",\"Covariance: 0.68 <br />Pooled SD: 1\",\"Covariance: -0.85 <br />Pooled SD: 3.3\",\"Covariance: -0.45 <br />Pooled SD: 1.19\",\"Covariance: 0.98 <br />Pooled SD: 1.84\",\"Covariance: 0.11 <br />Pooled SD: 0.71\",\"Covariance: -0.1 <br />Pooled SD: 0.97\",\"Covariance: 0.2 <br />Pooled SD: 0.94\",\"Covariance: 0.43 <br />Pooled SD: 0.5\",\"Covariance: 0.77 <br />Pooled SD: 1.35\",\"Covariance: 0.58 <br />Pooled SD: 1.16\",\"Covariance: -0.28 <br />Pooled SD: 1.46\",\"Covariance: -0.8 <br />Pooled SD: 1.58\",\"Covariance: 2.03 <br />Pooled SD: 2.5\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: -0.55 <br />Pooled SD: 1.45\",\"Covariance: -0.08 <br />Pooled SD: 1.1\",\"Covariance: 0.29 <br />Pooled SD: 1.25\",\"Covariance: 0.34 <br />Pooled SD: 1.5\",\"Covariance: -0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.47 <br />Pooled SD: 2.24\",\"Covariance: 0.36 <br />Pooled SD: 3.05\",\"Covariance: -1.39 <br />Pooled SD: 1.78\",\"Covariance: -0.24 <br />Pooled SD: 0.61\",\"Covariance: -0.14 <br />Pooled SD: 1.21\",\"Covariance: 0.77 <br />Pooled SD: 1.26\",\"Covariance: 0.98 <br />Pooled SD: 1.9\",\"Covariance: 0.84 <br />Pooled SD: 1.43\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: -0.92 <br />Pooled SD: 2.54\",\"Covariance: 0.54 <br />Pooled SD: 1.44\",\"Covariance: -0.26 <br />Pooled SD: 0.82\",\"Covariance: 0.4 <br />Pooled SD: 1.54\",\"Covariance: 0.67 <br />Pooled SD: 1.49\",\"Covariance: -0.05 <br />Pooled SD: 1.39\",\"Covariance: 0.04 <br />Pooled SD: 0.52\",\"Covariance: 0.06 <br />Pooled SD: 0.94\",\"Covariance: -0.17 <br />Pooled SD: 1.18\",\"Covariance: 0.3 <br />Pooled SD: 1.17\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.54 <br />Pooled SD: 1.07\",\"Covariance: 0.15 <br />Pooled SD: 0.41\",\"Covariance: 0.4 <br />Pooled SD: 0.79\",\"Covariance: -0.34 <br />Pooled SD: 1.08\",\"Covariance: 0.05 <br />Pooled SD: 0.4\",\"Covariance: 0.09 <br />Pooled SD: 1.67\",\"Covariance: 0.18 <br />Pooled SD: 1.46\",\"Covariance: 0.57 <br />Pooled SD: 1.69\",\"Covariance: 0.27 <br />Pooled SD: 0.82\",\"Covariance: -0.08 <br />Pooled SD: 1.3\",\"Covariance: -1.03 <br />Pooled SD: 1.98\",\"Covariance: 0.41 <br />Pooled SD: 1.67\",\"Covariance: -0.77 <br />Pooled SD: 0.81\",\"Covariance: -0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.92 <br />Pooled SD: 1.18\",\"Covariance: 0.48 <br />Pooled SD: 1.46\",\"Covariance: 0.2 <br />Pooled SD: 2.02\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: 1.18 <br />Pooled SD: 1.6\",\"Covariance: 0.8 <br />Pooled SD: 1.31\",\"Covariance: 0.24 <br />Pooled SD: 1.1\",\"Covariance: 0.34 <br />Pooled SD: 0.49\",\"Covariance: -1.77 <br />Pooled SD: 2.3\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: -1.42 <br />Pooled SD: 2.5\",\"Covariance: -0.49 <br />Pooled SD: 1.65\",\"Covariance: -1.69 <br />Pooled SD: 2.2\",\"Covariance: 0.92 <br />Pooled SD: 1.25\",\"Covariance: 1.23 <br />Pooled SD: 1.59\",\"Covariance: -0.36 <br />Pooled SD: 1.07\",\"Covariance: 0.64 <br />Pooled SD: 1.29\",\"Covariance: 0.25 <br />Pooled SD: 1.32\",\"Covariance: 0.33 <br />Pooled SD: 1.09\",\"Covariance: -0.13 <br />Pooled SD: 0.89\",\"Covariance: -0.7 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 1.36\",\"Covariance: 0.85 <br />Pooled SD: 2.46\",\"Covariance: -0.28 <br />Pooled SD: 1.03\",\"Covariance: -0.26 <br />Pooled SD: 0.8\",\"Covariance: 0.08 <br />Pooled SD: 1.63\",\"Covariance: 0.03 <br />Pooled SD: 0.4\",\"Covariance: 0.83 <br />Pooled SD: 1.2\",\"Covariance: 0.39 <br />Pooled SD: 1.98\",\"Covariance: -0.47 <br />Pooled SD: 1.08\",\"Covariance: 1.29 <br />Pooled SD: 1.89\",\"Covariance: -0.13 <br />Pooled SD: 0.19\",\"Covariance: 0.22 <br />Pooled SD: 0.77\",\"Covariance: 0.18 <br />Pooled SD: 2.11\",\"Covariance: -0.52 <br />Pooled SD: 1.39\",\"Covariance: 0.21 <br />Pooled SD: 0.38\",\"Covariance: 0.51 <br />Pooled SD: 1.53\",\"Covariance: -0.26 <br />Pooled SD: 0.61\",\"Covariance: -1.29 <br />Pooled SD: 1.86\",\"Covariance: -0.57 <br />Pooled SD: 1.12\",\"Covariance: -0.33 <br />Pooled SD: 0.66\",\"Covariance: -0.14 <br />Pooled SD: 1.5\",\"Covariance: -0.74 <br />Pooled SD: 1.71\",\"Covariance: -0.32 <br />Pooled SD: 1.93\",\"Covariance: -0.56 <br />Pooled SD: 0.75\",\"Covariance: -0.39 <br />Pooled SD: 1.65\",\"Covariance: 0.5 <br />Pooled SD: 1.96\",\"Covariance: -0.14 <br />Pooled SD: 1.46\",\"Covariance: 0.14 <br />Pooled SD: 0.79\",\"Covariance: -1.09 <br />Pooled SD: 1.8\",\"Covariance: -0.2 <br />Pooled SD: 0.6\",\"Covariance: -0.25 <br />Pooled SD: 0.64\",\"Covariance: -0.92 <br />Pooled SD: 1.06\",\"Covariance: -0.1 <br />Pooled SD: 0.43\",\"Covariance: -0.07 <br />Pooled SD: 0.64\",\"Covariance: 0.38 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 1.86\",\"Covariance: 0.5 <br />Pooled SD: 1.02\",\"Covariance: 0.06 <br />Pooled SD: 0.89\",\"Covariance: 0.75 <br />Pooled SD: 1.23\",\"Covariance: -0.76 <br />Pooled SD: 1.63\",\"Covariance: 0.07 <br />Pooled SD: 0.35\",\"Covariance: -0.58 <br />Pooled SD: 0.83\",\"Covariance: 0.76 <br />Pooled SD: 1.28\",\"Covariance: 0.57 <br />Pooled SD: 0.97\",\"Covariance: 1.94 <br />Pooled SD: 3.5\",\"Covariance: 0.46 <br />Pooled SD: 1.13\",\"Covariance: 1.26 <br />Pooled SD: 1.79\",\"Covariance: 0.17 <br />Pooled SD: 0.67\",\"Covariance: -0.41 <br />Pooled SD: 0.72\",\"Covariance: 0.2 <br />Pooled SD: 0.89\",\"Covariance: -0.8 <br />Pooled SD: 1.38\",\"Covariance: 0.97 <br />Pooled SD: 1.44\",\"Covariance: -1.5 <br />Pooled SD: 2.97\",\"Covariance: -0.03 <br />Pooled SD: 0.4\",\"Covariance: -0.13 <br />Pooled SD: 0.71\",\"Covariance: 0.55 <br />Pooled SD: 2.35\",\"Covariance: -1.5 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 0.65\",\"Covariance: -1.03 <br />Pooled SD: 1.12\",\"Covariance: -0.15 <br />Pooled SD: 1.17\",\"Covariance: 0.25 <br />Pooled SD: 1.51\",\"Covariance: 0.13 <br />Pooled SD: 0.55\",\"Covariance: -0.27 <br />Pooled SD: 1.37\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -1.21 <br />Pooled SD: 2.14\",\"Covariance: 0.06 <br />Pooled SD: 0.61\",\"Covariance: -0.04 <br />Pooled SD: 0.23\",\"Covariance: 0.81 <br />Pooled SD: 1.06\",\"Covariance: 0.53 <br />Pooled SD: 0.9\",\"Covariance: 0.25 <br />Pooled SD: 0.98\",\"Covariance: -0.78 <br />Pooled SD: 1.56\",\"Covariance: 0.12 <br />Pooled SD: 1.4\",\"Covariance: -0.08 <br />Pooled SD: 1.86\",\"Covariance: -0.41 <br />Pooled SD: 1.2\",\"Covariance: 0.5 <br />Pooled SD: 1.79\",\"Covariance: 0.62 <br />Pooled SD: 0.98\",\"Covariance: -0.06 <br />Pooled SD: 0.9\",\"Covariance: 0.68 <br />Pooled SD: 1.18\",\"Covariance: -0.62 <br />Pooled SD: 1.28\",\"Covariance: -0.32 <br />Pooled SD: 0.56\",\"Covariance: 0.41 <br />Pooled SD: 1.79\",\"Covariance: 0.52 <br />Pooled SD: 1.91\",\"Covariance: 0.16 <br />Pooled SD: 0.74\",\"Covariance: -0.38 <br />Pooled SD: 0.91\",\"Covariance: 1.09 <br />Pooled SD: 2.09\",\"Covariance: -0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.2 <br />Pooled SD: 1.39\",\"Covariance: 0.14 <br />Pooled SD: 1.55\",\"Covariance: 0.17 <br />Pooled SD: 2.18\",\"Covariance: -0.35 <br />Pooled SD: 1.58\",\"Covariance: 0.05 <br />Pooled SD: 0.8\",\"Covariance: 0.13 <br />Pooled SD: 1.38\",\"Covariance: 0.76 <br />Pooled SD: 1.24\",\"Covariance: 0.51 <br />Pooled SD: 0.96\",\"Covariance: 0.22 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 0.46\",\"Covariance: 0.1 <br />Pooled SD: 1.42\",\"Covariance: 0.05 <br />Pooled SD: 0.39\",\"Covariance: -0.36 <br />Pooled SD: 1.56\",\"Covariance: 0.22 <br />Pooled SD: 1.56\",\"Covariance: -0.21 <br />Pooled SD: 1.02\",\"Covariance: -1.67 <br />Pooled SD: 1.75\",\"Covariance: 1.25 <br />Pooled SD: 1.5\",\"Covariance: -0.07 <br />Pooled SD: 0.87\",\"Covariance: 0.27 <br />Pooled SD: 1.11\",\"Covariance: 0.13 <br />Pooled SD: 0.52\",\"Covariance: 2.7 <br />Pooled SD: 3.14\",\"Covariance: 0.17 <br />Pooled SD: 1.39\",\"Covariance: -1.1 <br />Pooled SD: 2.11\",\"Covariance: 0.54 <br />Pooled SD: 0.64\",\"Covariance: 0.96 <br />Pooled SD: 1.87\",\"Covariance: 0.46 <br />Pooled SD: 1.81\",\"Covariance: 0.49 <br />Pooled SD: 2.14\",\"Covariance: 0.1 <br />Pooled SD: 0.73\",\"Covariance: 0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.03 <br />Pooled SD: 0.99\",\"Covariance: 0.45 <br />Pooled SD: 0.98\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: 0.05 <br />Pooled SD: 0.65\",\"Covariance: -0.65 <br />Pooled SD: 1.81\",\"Covariance: -0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.66 <br />Pooled SD: 1.01\",\"Covariance: -0.46 <br />Pooled SD: 1.86\",\"Covariance: 0.12 <br />Pooled SD: 1.58\",\"Covariance: -0.16 <br />Pooled SD: 0.7\",\"Covariance: 0.35 <br />Pooled SD: 0.98\",\"Covariance: -0.77 <br />Pooled SD: 1.55\",\"Covariance: 0.2 <br />Pooled SD: 0.98\",\"Covariance: -0.57 <br />Pooled SD: 1.03\",\"Covariance: 0.76 <br />Pooled SD: 1.13\",\"Covariance: 0.18 <br />Pooled SD: 0.92\",\"Covariance: 0.11 <br />Pooled SD: 0.96\",\"Covariance: 0.02 <br />Pooled SD: 1.17\",\"Covariance: -0.28 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.33\",\"Covariance: -0.65 <br />Pooled SD: 1.35\",\"Covariance: -0.12 <br />Pooled SD: 0.82\",\"Covariance: 0.32 <br />Pooled SD: 2.11\",\"Covariance: -0.48 <br />Pooled SD: 0.87\",\"Covariance: 0.38 <br />Pooled SD: 1.69\",\"Covariance: 0.91 <br />Pooled SD: 1.42\",\"Covariance: -0.69 <br />Pooled SD: 0.97\",\"Covariance: -0.6 <br />Pooled SD: 2.99\",\"Covariance: 0.09 <br />Pooled SD: 2.68\",\"Covariance: 1.15 <br />Pooled SD: 2.32\",\"Covariance: -0.57 <br />Pooled SD: 1.16\",\"Covariance: 0.05 <br />Pooled SD: 0.89\",\"Covariance: 0.3 <br />Pooled SD: 1.21\",\"Covariance: -0.07 <br />Pooled SD: 0.46\",\"Covariance: 0.28 <br />Pooled SD: 1.48\",\"Covariance: -0.01 <br />Pooled SD: 1.39\",\"Covariance: -0.03 <br />Pooled SD: 0.39\",\"Covariance: 0.95 <br />Pooled SD: 2.16\",\"Covariance: 0.83 <br />Pooled SD: 1.26\",\"Covariance: -0.97 <br />Pooled SD: 1.14\",\"Covariance: 0.04 <br />Pooled SD: 0.7\",\"Covariance: -0.58 <br />Pooled SD: 2.74\",\"Covariance: -0.96 <br />Pooled SD: 1.49\",\"Covariance: 0.23 <br />Pooled SD: 0.66\",\"Covariance: 0.81 <br />Pooled SD: 1.46\",\"Covariance: -0.11 <br />Pooled SD: 0.56\",\"Covariance: -0.54 <br />Pooled SD: 0.59\",\"Covariance: 0.58 <br />Pooled SD: 0.82\",\"Covariance: -0.39 <br />Pooled SD: 1.39\",\"Covariance: 0.78 <br />Pooled SD: 1.14\",\"Covariance: 0.4 <br />Pooled SD: 1.33\",\"Covariance: -0.32 <br />Pooled SD: 0.95\",\"Covariance: -0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.57 <br />Pooled SD: 1.05\",\"Covariance: -0.11 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 1.05\",\"Covariance: -0.08 <br />Pooled SD: 1.51\",\"Covariance: -0.57 <br />Pooled SD: 0.98\",\"Covariance: 0.33 <br />Pooled SD: 1.42\",\"Covariance: -0.33 <br />Pooled SD: 1.14\",\"Covariance: 0.27 <br />Pooled SD: 1.9\",\"Covariance: -1.12 <br />Pooled SD: 1.43\",\"Covariance: 1.37 <br />Pooled SD: 1.65\",\"Covariance: -1.64 <br />Pooled SD: 2.42\",\"Covariance: -2.13 <br />Pooled SD: 2.59\",\"Covariance: -0.14 <br />Pooled SD: 0.94\",\"Covariance: -1.43 <br />Pooled SD: 2.3\",\"Covariance: 0.06 <br />Pooled SD: 0.75\",\"Covariance: 0.13 <br />Pooled SD: 0.99\",\"Covariance: 0.03 <br />Pooled SD: 1.16\",\"Covariance: 0.08 <br />Pooled SD: 1.12\",\"Covariance: 0.22 <br />Pooled SD: 0.75\",\"Covariance: -0.4 <br />Pooled SD: 0.55\",\"Covariance: 0.12 <br />Pooled SD: 0.86\",\"Covariance: 0.29 <br />Pooled SD: 0.93\",\"Covariance: -0.93 <br />Pooled SD: 1.63\",\"Covariance: 0.81 <br />Pooled SD: 1.08\",\"Covariance: 0.46 <br />Pooled SD: 0.67\",\"Covariance: -0.18 <br />Pooled SD: 0.86\",\"Covariance: 0.39 <br />Pooled SD: 0.63\",\"Covariance: -1.82 <br />Pooled SD: 3.11\",\"Covariance: 0.52 <br />Pooled SD: 1.71\",\"Covariance: -0.45 <br />Pooled SD: 1.08\",\"Covariance: 0.1 <br />Pooled SD: 1.13\",\"Covariance: -0.65 <br />Pooled SD: 1.66\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: -0.42 <br />Pooled SD: 0.74\",\"Covariance: 0.25 <br />Pooled SD: 1.87\",\"Covariance: -0.22 <br />Pooled SD: 1.19\",\"Covariance: 0.12 <br />Pooled SD: 0.4\",\"Covariance: -0.28 <br />Pooled SD: 1.56\",\"Covariance: 1.16 <br />Pooled SD: 1.48\",\"Covariance: 0.5 <br />Pooled SD: 0.71\",\"Covariance: 0.28 <br />Pooled SD: 0.9\",\"Covariance: -1.01 <br />Pooled SD: 1.56\",\"Covariance: 0.38 <br />Pooled SD: 0.74\",\"Covariance: 1.33 <br />Pooled SD: 1.7\",\"Covariance: 0.61 <br />Pooled SD: 2.04\",\"Covariance: 0.03 <br />Pooled SD: 0.94\",\"Covariance: 0.75 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 1.44\",\"Covariance: -0.1 <br />Pooled SD: 0.49\",\"Covariance: 0.18 <br />Pooled SD: 0.41\",\"Covariance: 0.41 <br />Pooled SD: 0.95\",\"Covariance: 0.54 <br />Pooled SD: 1.05\",\"Covariance: -0.03 <br />Pooled SD: 0.9\",\"Covariance: 0.61 <br />Pooled SD: 1.02\",\"Covariance: 0.05 <br />Pooled SD: 0.73\",\"Covariance: 0.34 <br />Pooled SD: 0.92\",\"Covariance: -0.18 <br />Pooled SD: 2.43\",\"Covariance: 0.38 <br />Pooled SD: 1.37\",\"Covariance: -0.38 <br />Pooled SD: 1.33\",\"Covariance: 0.41 <br />Pooled SD: 1.64\",\"Covariance: -0.39 <br />Pooled SD: 1.02\",\"Covariance: -0.26 <br />Pooled SD: 0.62\",\"Covariance: 1.37 <br />Pooled SD: 1.88\",\"Covariance: -0.34 <br />Pooled SD: 1.68\",\"Covariance: 0.17 <br />Pooled SD: 2.41\",\"Covariance: 0.49 <br />Pooled SD: 1.6\",\"Covariance: -0.11 <br />Pooled SD: 1.51\",\"Covariance: -0.15 <br />Pooled SD: 2.26\",\"Covariance: 0.87 <br />Pooled SD: 2.39\",\"Covariance: 0.13 <br />Pooled SD: 0.25\",\"Covariance: -0.2 <br />Pooled SD: 0.65\",\"Covariance: 0.04 <br />Pooled SD: 0.48\",\"Covariance: -0.09 <br />Pooled SD: 1.5\",\"Covariance: 0.58 <br />Pooled SD: 1.71\",\"Covariance: 0.82 <br />Pooled SD: 1.63\",\"Covariance: -0.05 <br />Pooled SD: 0.75\",\"Covariance: 0.35 <br />Pooled SD: 1.08\",\"Covariance: 0.12 <br />Pooled SD: 0.77\",\"Covariance: -0.02 <br />Pooled SD: 1.06\",\"Covariance: 0.11 <br />Pooled SD: 0.69\",\"Covariance: 0.11 <br />Pooled SD: 0.93\",\"Covariance: 0.2 <br />Pooled SD: 1.41\",\"Covariance: -0.16 <br />Pooled SD: 0.85\",\"Covariance: 0.06 <br />Pooled SD: 1.86\",\"Covariance: -0.39 <br />Pooled SD: 1.11\",\"Covariance: 0.58 <br />Pooled SD: 1.12\",\"Covariance: -0.75 <br />Pooled SD: 1.12\",\"Covariance: -0.08 <br />Pooled SD: 1.71\",\"Covariance: 0.22 <br />Pooled SD: 0.35\",\"Covariance: -0.1 <br />Pooled SD: 1.05\",\"Covariance: -0.26 <br />Pooled SD: 1.53\",\"Covariance: -0.94 <br />Pooled SD: 1.57\",\"Covariance: -0.19 <br />Pooled SD: 0.4\",\"Covariance: 0.31 <br />Pooled SD: 0.9\",\"Covariance: -0.17 <br />Pooled SD: 0.96\",\"Covariance: 1.21 <br />Pooled SD: 2.18\",\"Covariance: -0.88 <br />Pooled SD: 1.88\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: -1.27 <br />Pooled SD: 2.39\",\"Covariance: 0.75 <br />Pooled SD: 2.15\",\"Covariance: -0.05 <br />Pooled SD: 1.81\",\"Covariance: 0.96 <br />Pooled SD: 1.59\",\"Covariance: -0.39 <br />Pooled SD: 1.71\",\"Covariance: 0.52 <br />Pooled SD: 1.16\",\"Covariance: -0.15 <br />Pooled SD: 0.86\",\"Covariance: 0.08 <br />Pooled SD: 0.95\",\"Covariance: -0.33 <br />Pooled SD: 0.86\",\"Covariance: 0.26 <br />Pooled SD: 1.31\",\"Covariance: -0.16 <br />Pooled SD: 1.03\",\"Covariance: -0.86 <br />Pooled SD: 1.8\",\"Covariance: 0.16 <br />Pooled SD: 1.17\",\"Covariance: -0.55 <br />Pooled SD: 1.9\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.08 <br />Pooled SD: 0.36\",\"Covariance: 0.07 <br />Pooled SD: 0.98\",\"Covariance: 1.51 <br />Pooled SD: 1.56\",\"Covariance: 0.48 <br />Pooled SD: 1.18\",\"Covariance: -0.22 <br />Pooled SD: 2.7\",\"Covariance: 0.91 <br />Pooled SD: 1.98\",\"Covariance: 0.63 <br />Pooled SD: 1.3\",\"Covariance: 1.31 <br />Pooled SD: 1.86\",\"Covariance: 0.97 <br />Pooled SD: 2.1\",\"Covariance: -0.05 <br />Pooled SD: 0.6\",\"Covariance: -0.21 <br />Pooled SD: 0.89\",\"Covariance: 0.55 <br />Pooled SD: 1.12\",\"Covariance: 0.57 <br />Pooled SD: 3.05\",\"Covariance: 0.36 <br />Pooled SD: 0.97\",\"Covariance: -0.23 <br />Pooled SD: 0.85\",\"Covariance: 0 <br />Pooled SD: 0.38\",\"Covariance: -0.28 <br />Pooled SD: 1.18\",\"Covariance: -0.4 <br />Pooled SD: 0.72\",\"Covariance: 0.34 <br />Pooled SD: 0.86\",\"Covariance: -0.23 <br />Pooled SD: 1.07\",\"Covariance: 0.47 <br />Pooled SD: 1.64\",\"Covariance: 0.66 <br />Pooled SD: 2.35\",\"Covariance: 0.63 <br />Pooled SD: 1.4\",\"Covariance: 0.1 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.51\",\"Covariance: 0.1 <br />Pooled SD: 0.99\",\"Covariance: 0.23 <br />Pooled SD: 1.61\",\"Covariance: -0.25 <br />Pooled SD: 2.32\",\"Covariance: 0.45 <br />Pooled SD: 0.6\",\"Covariance: 0.18 <br />Pooled SD: 0.72\",\"Covariance: -0.46 <br />Pooled SD: 0.8\",\"Covariance: -0.35 <br />Pooled SD: 1.47\",\"Covariance: -0.38 <br />Pooled SD: 0.85\",\"Covariance: 0.53 <br />Pooled SD: 0.74\",\"Covariance: -0.18 <br />Pooled SD: 0.4\",\"Covariance: 0.01 <br />Pooled SD: 0.62\",\"Covariance: 0.01 <br />Pooled SD: 1.42\",\"Covariance: 0.57 <br />Pooled SD: 0.85\",\"Covariance: -0.44 <br />Pooled SD: 0.68\",\"Covariance: 0.13 <br />Pooled SD: 0.72\",\"Covariance: 0.78 <br />Pooled SD: 1.06\",\"Covariance: -0.15 <br />Pooled SD: 0.65\",\"Covariance: 0.26 <br />Pooled SD: 0.67\",\"Covariance: 0.17 <br />Pooled SD: 1.68\",\"Covariance: 1.1 <br />Pooled SD: 1.67\",\"Covariance: -0.09 <br />Pooled SD: 1.43\",\"Covariance: -0.52 <br />Pooled SD: 0.82\",\"Covariance: -0.12 <br />Pooled SD: 1.01\",\"Covariance: 0.38 <br />Pooled SD: 1.24\",\"Covariance: 0.64 <br />Pooled SD: 1.69\",\"Covariance: 0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.65 <br />Pooled SD: 1.96\",\"Covariance: 0.07 <br />Pooled SD: 0.81\",\"Covariance: -0.66 <br />Pooled SD: 0.91\",\"Covariance: 0.12 <br />Pooled SD: 1.76\",\"Covariance: 1.45 <br />Pooled SD: 1.62\",\"Covariance: 0.5 <br />Pooled SD: 0.72\",\"Covariance: 0.06 <br />Pooled SD: 1.04\",\"Covariance: 0.04 <br />Pooled SD: 1.06\",\"Covariance: 0.7 <br />Pooled SD: 1.99\",\"Covariance: 0.66 <br />Pooled SD: 2.49\",\"Covariance: 0.08 <br />Pooled SD: 0.69\",\"Covariance: -1.54 <br />Pooled SD: 2.17\",\"Covariance: 0.45 <br />Pooled SD: 1.46\",\"Covariance: 0.16 <br />Pooled SD: 0.63\",\"Covariance: 0.01 <br />Pooled SD: 0.48\",\"Covariance: -0.06 <br />Pooled SD: 0.49\",\"Covariance: -0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.3 <br />Pooled SD: 1.57\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: -0.44 <br />Pooled SD: 0.53\",\"Covariance: -0.89 <br />Pooled SD: 2.58\",\"Covariance: 0.64 <br />Pooled SD: 0.7\",\"Covariance: 1.1 <br />Pooled SD: 1.49\",\"Covariance: 0.5 <br />Pooled SD: 1.53\",\"Covariance: 0.32 <br />Pooled SD: 0.69\",\"Covariance: -0.48 <br />Pooled SD: 0.49\",\"Covariance: -0.28 <br />Pooled SD: 0.38\",\"Covariance: 0.44 <br />Pooled SD: 1.06\",\"Covariance: 0 <br />Pooled SD: 0.61\",\"Covariance: -0.02 <br />Pooled SD: 0.44\",\"Covariance: 0.13 <br />Pooled SD: 1.73\",\"Covariance: -0.45 <br />Pooled SD: 1.25\",\"Covariance: -0.02 <br />Pooled SD: 0.5\",\"Covariance: -0.82 <br />Pooled SD: 1.19\",\"Covariance: -0.26 <br />Pooled SD: 2.28\",\"Covariance: 0.7 <br />Pooled SD: 0.81\",\"Covariance: 0.37 <br />Pooled SD: 1.59\",\"Covariance: 0.2 <br />Pooled SD: 0.41\",\"Covariance: 1.99 <br />Pooled SD: 2.39\",\"Covariance: -0.07 <br />Pooled SD: 0.23\",\"Covariance: 0.29 <br />Pooled SD: 0.57\",\"Covariance: 1.79 <br />Pooled SD: 2.95\",\"Covariance: -1.05 <br />Pooled SD: 1.48\",\"Covariance: 0.39 <br />Pooled SD: 1.6\",\"Covariance: 0.7 <br />Pooled SD: 1\",\"Covariance: 0.07 <br />Pooled SD: 1.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -1.65 <br />Pooled SD: 2.34\",\"Covariance: 0.34 <br />Pooled SD: 0.87\",\"Covariance: 0.23 <br />Pooled SD: 1.27\",\"Covariance: 0 <br />Pooled SD: 1.66\",\"Covariance: -0.86 <br />Pooled SD: 1.4\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -1.43 <br />Pooled SD: 1.62\",\"Covariance: 0.38 <br />Pooled SD: 1.2\",\"Covariance: 0.44 <br />Pooled SD: 0.65\",\"Covariance: 0.45 <br />Pooled SD: 0.85\",\"Covariance: 1.33 <br />Pooled SD: 2.39\",\"Covariance: 0.16 <br />Pooled SD: 1.21\",\"Covariance: -0.26 <br />Pooled SD: 1.18\",\"Covariance: 1.01 <br />Pooled SD: 1.18\",\"Covariance: 0.12 <br />Pooled SD: 0.93\",\"Covariance: -0.56 <br />Pooled SD: 0.9\",\"Covariance: -0.47 <br />Pooled SD: 0.9\",\"Covariance: -0.18 <br />Pooled SD: 0.69\",\"Covariance: -0.21 <br />Pooled SD: 0.77\",\"Covariance: -0.62 <br />Pooled SD: 1.15\",\"Covariance: -0.8 <br />Pooled SD: 1.31\",\"Covariance: -0.09 <br />Pooled SD: 0.49\",\"Covariance: 0.27 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.13\",\"Covariance: 0.06 <br />Pooled SD: 0.93\",\"Covariance: -0.24 <br />Pooled SD: 0.51\",\"Covariance: 0.67 <br />Pooled SD: 1.15\",\"Covariance: -0.19 <br />Pooled SD: 0.93\",\"Covariance: -0.8 <br />Pooled SD: 1.25\",\"Covariance: 0.85 <br />Pooled SD: 1.34\",\"Covariance: -0.19 <br />Pooled SD: 1.94\",\"Covariance: -0.86 <br />Pooled SD: 2.03\",\"Covariance: 0.79 <br />Pooled SD: 1.38\",\"Covariance: -0.76 <br />Pooled SD: 1.97\",\"Covariance: 0.22 <br />Pooled SD: 0.58\",\"Covariance: 0.1 <br />Pooled SD: 0.37\",\"Covariance: -0.74 <br />Pooled SD: 1.13\",\"Covariance: 1 <br />Pooled SD: 1.74\",\"Covariance: 0.3 <br />Pooled SD: 1.63\",\"Covariance: -0.98 <br />Pooled SD: 1.54\",\"Covariance: -0.44 <br />Pooled SD: 0.73\",\"Covariance: -0.19 <br />Pooled SD: 0.8\",\"Covariance: -0.86 <br />Pooled SD: 1.82\",\"Covariance: -0.13 <br />Pooled SD: 0.74\",\"Covariance: 0.17 <br />Pooled SD: 1.01\",\"Covariance: -0.04 <br />Pooled SD: 0.46\",\"Covariance: 0.37 <br />Pooled SD: 0.56\",\"Covariance: 0.23 <br />Pooled SD: 0.69\",\"Covariance: 0.95 <br />Pooled SD: 1.84\",\"Covariance: -0.88 <br />Pooled SD: 1.32\",\"Covariance: 0.18 <br />Pooled SD: 0.59\",\"Covariance: 0.19 <br />Pooled SD: 0.91\",\"Covariance: -0.12 <br />Pooled SD: 1.27\",\"Covariance: 0.05 <br />Pooled SD: 0.87\",\"Covariance: -0.27 <br />Pooled SD: 0.73\",\"Covariance: 0.43 <br />Pooled SD: 2.73\",\"Covariance: 1.16 <br />Pooled SD: 1.7\",\"Covariance: 0.19 <br />Pooled SD: 0.58\",\"Covariance: 0.51 <br />Pooled SD: 1.72\",\"Covariance: 0.05 <br />Pooled SD: 0.64\",\"Covariance: 0.56 <br />Pooled SD: 1.14\",\"Covariance: -0.08 <br />Pooled SD: 2.25\",\"Covariance: -3.39 <br />Pooled SD: 3.65\",\"Covariance: -0.44 <br />Pooled SD: 1.08\",\"Covariance: -0.93 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.46\",\"Covariance: -0.42 <br />Pooled SD: 1.38\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.33 <br />Pooled SD: 0.98\",\"Covariance: -0.31 <br />Pooled SD: 2.19\",\"Covariance: 0.11 <br />Pooled SD: 2.18\",\"Covariance: 0.33 <br />Pooled SD: 1.83\",\"Covariance: 0.39 <br />Pooled SD: 0.99\",\"Covariance: -0.85 <br />Pooled SD: 1.7\",\"Covariance: -0.53 <br />Pooled SD: 2.21\",\"Covariance: -0.75 <br />Pooled SD: 0.85\",\"Covariance: 1.18 <br />Pooled SD: 1.55\",\"Covariance: -1.21 <br />Pooled SD: 1.61\",\"Covariance: 0.83 <br />Pooled SD: 0.99\",\"Covariance: -0.25 <br />Pooled SD: 0.49\",\"Covariance: -0.74 <br />Pooled SD: 2.13\",\"Covariance: -0.33 <br />Pooled SD: 1.5\",\"Covariance: -0.46 <br />Pooled SD: 0.99\",\"Covariance: 1.62 <br />Pooled SD: 3.64\",\"Covariance: 0.16 <br />Pooled SD: 0.86\",\"Covariance: -0.55 <br />Pooled SD: 0.93\",\"Covariance: -0.13 <br />Pooled SD: 0.76\",\"Covariance: -0.14 <br />Pooled SD: 1.48\",\"Covariance: -0.21 <br />Pooled SD: 1.22\",\"Covariance: -0.66 <br />Pooled SD: 1.37\",\"Covariance: 0.04 <br />Pooled SD: 1.5\",\"Covariance: 1.08 <br />Pooled SD: 2.4\",\"Covariance: 0.59 <br />Pooled SD: 0.96\",\"Covariance: -0.02 <br />Pooled SD: 2.59\",\"Covariance: -1.14 <br />Pooled SD: 2.22\",\"Covariance: 0.54 <br />Pooled SD: 1.16\",\"Covariance: -0.83 <br />Pooled SD: 2.07\",\"Covariance: -0.3 <br />Pooled SD: 1.19\",\"Covariance: 0.54 <br />Pooled SD: 0.88\",\"Covariance: 0.73 <br />Pooled SD: 1.95\",\"Covariance: 0.41 <br />Pooled SD: 0.61\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.14 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 0.51\",\"Covariance: -0.33 <br />Pooled SD: 1.8\",\"Covariance: -0.32 <br />Pooled SD: 1.35\",\"Covariance: 0.35 <br />Pooled SD: 1.82\",\"Covariance: -0.41 <br />Pooled SD: 1.31\",\"Covariance: -0.11 <br />Pooled SD: 1.61\",\"Covariance: 0.32 <br />Pooled SD: 0.65\",\"Covariance: -0.77 <br />Pooled SD: 1.15\",\"Covariance: -0.44 <br />Pooled SD: 1.85\",\"Covariance: -0.08 <br />Pooled SD: 0.44\",\"Covariance: 2.65 <br />Pooled SD: 2.86\",\"Covariance: -0.38 <br />Pooled SD: 0.87\",\"Covariance: 0.15 <br />Pooled SD: 1.06\",\"Covariance: -0.49 <br />Pooled SD: 0.85\",\"Covariance: 0.31 <br />Pooled SD: 1.15\",\"Covariance: 0.18 <br />Pooled SD: 0.81\",\"Covariance: 0.18 <br />Pooled SD: 0.44\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: 0.16 <br />Pooled SD: 2.39\",\"Covariance: 0.23 <br />Pooled SD: 0.89\",\"Covariance: -0.21 <br />Pooled SD: 0.7\",\"Covariance: 0.54 <br />Pooled SD: 0.84\",\"Covariance: -0.37 <br />Pooled SD: 1.57\",\"Covariance: 0.71 <br />Pooled SD: 1\",\"Covariance: 0 <br />Pooled SD: 0.71\",\"Covariance: 0.76 <br />Pooled SD: 1.64\",\"Covariance: 0.07 <br />Pooled SD: 1.21\",\"Covariance: -0.28 <br />Pooled SD: 0.8\",\"Covariance: -0.15 <br />Pooled SD: 1.12\",\"Covariance: 0.33 <br />Pooled SD: 1.23\",\"Covariance: -0.49 <br />Pooled SD: 1.81\",\"Covariance: -0.25 <br />Pooled SD: 1.18\",\"Covariance: -0.12 <br />Pooled SD: 0.39\",\"Covariance: -0.66 <br />Pooled SD: 0.88\",\"Covariance: -0.7 <br />Pooled SD: 1.43\",\"Covariance: -0.56 <br />Pooled SD: 0.67\",\"Covariance: -0.12 <br />Pooled SD: 1.33\",\"Covariance: -0.12 <br />Pooled SD: 0.35\",\"Covariance: 0.06 <br />Pooled SD: 0.88\",\"Covariance: 0.78 <br />Pooled SD: 1.73\",\"Covariance: -0.35 <br />Pooled SD: 0.85\",\"Covariance: 0.34 <br />Pooled SD: 1.44\",\"Covariance: 0.19 <br />Pooled SD: 0.97\",\"Covariance: 1 <br />Pooled SD: 1.15\",\"Covariance: -0.17 <br />Pooled SD: 0.47\",\"Covariance: 0.67 <br />Pooled SD: 1.16\",\"Covariance: -1.53 <br />Pooled SD: 1.81\",\"Covariance: -0.54 <br />Pooled SD: 1.32\",\"Covariance: 0.8 <br />Pooled SD: 1.44\",\"Covariance: 0.34 <br />Pooled SD: 0.95\",\"Covariance: -1.59 <br />Pooled SD: 2.18\",\"Covariance: 0.52 <br />Pooled SD: 1.13\",\"Covariance: -0.1 <br />Pooled SD: 0.77\",\"Covariance: 0.42 <br />Pooled SD: 2.03\",\"Covariance: -0.86 <br />Pooled SD: 1.35\",\"Covariance: -0.78 <br />Pooled SD: 1.44\",\"Covariance: -0.18 <br />Pooled SD: 1.18\",\"Covariance: 0.02 <br />Pooled SD: 0.62\",\"Covariance: -0.42 <br />Pooled SD: 1.24\",\"Covariance: -0.01 <br />Pooled SD: 0.58\",\"Covariance: -0.11 <br />Pooled SD: 0.24\",\"Covariance: -0.6 <br />Pooled SD: 1.3\",\"Covariance: 0.73 <br />Pooled SD: 1.02\",\"Covariance: 0.48 <br />Pooled SD: 0.94\",\"Covariance: 0.36 <br />Pooled SD: 0.57\",\"Covariance: -0.47 <br />Pooled SD: 1.22\",\"Covariance: -0.25 <br />Pooled SD: 1.75\",\"Covariance: 0.28 <br />Pooled SD: 1.99\",\"Covariance: -0.72 <br />Pooled SD: 0.99\",\"Covariance: 0.25 <br />Pooled SD: 1.21\",\"Covariance: -0.66 <br />Pooled SD: 1.24\",\"Covariance: 0.43 <br />Pooled SD: 1.39\",\"Covariance: 0.16 <br />Pooled SD: 1.84\",\"Covariance: -0.31 <br />Pooled SD: 0.8\",\"Covariance: 0.68 <br />Pooled SD: 1.14\",\"Covariance: -0.41 <br />Pooled SD: 1.69\",\"Covariance: 0.77 <br />Pooled SD: 1.5\",\"Covariance: -0.05 <br />Pooled SD: 1.17\",\"Covariance: -0.46 <br />Pooled SD: 0.92\",\"Covariance: 0.61 <br />Pooled SD: 2.33\",\"Covariance: 0.05 <br />Pooled SD: 0.48\",\"Covariance: -0.67 <br />Pooled SD: 1.15\",\"Covariance: -2.07 <br />Pooled SD: 3.33\",\"Covariance: -0.82 <br />Pooled SD: 1.12\",\"Covariance: -0.85 <br />Pooled SD: 1.24\",\"Covariance: -0.03 <br />Pooled SD: 2.15\",\"Covariance: 0.76 <br />Pooled SD: 0.77\",\"Covariance: -0.28 <br />Pooled SD: 0.95\",\"Covariance: 0.79 <br />Pooled SD: 1.41\",\"Covariance: -0.74 <br />Pooled SD: 2.43\",\"Covariance: -0.17 <br />Pooled SD: 1.23\",\"Covariance: -0.1 <br />Pooled SD: 1.21\",\"Covariance: -0.83 <br />Pooled SD: 2.01\",\"Covariance: -0.22 <br />Pooled SD: 2.12\",\"Covariance: 0.78 <br />Pooled SD: 1.33\",\"Covariance: 0.97 <br />Pooled SD: 1.22\",\"Covariance: -0.1 <br />Pooled SD: 0.8\",\"Covariance: 0 <br />Pooled SD: 1.45\",\"Covariance: -0.16 <br />Pooled SD: 0.57\",\"Covariance: 0.93 <br />Pooled SD: 1.36\",\"Covariance: 0.83 <br />Pooled SD: 1.56\",\"Covariance: 0.77 <br />Pooled SD: 1.42\",\"Covariance: -0.12 <br />Pooled SD: 1.29\",\"Covariance: -0.41 <br />Pooled SD: 1.12\",\"Covariance: 0.13 <br />Pooled SD: 0.91\",\"Covariance: -0.13 <br />Pooled SD: 0.67\",\"Covariance: 0.07 <br />Pooled SD: 1.22\",\"Covariance: 0.34 <br />Pooled SD: 0.69\",\"Covariance: 0.02 <br />Pooled SD: 0.67\",\"Covariance: -0.55 <br />Pooled SD: 0.66\",\"Covariance: -0.54 <br />Pooled SD: 1.02\",\"Covariance: 0.28 <br />Pooled SD: 0.4\",\"Covariance: -0.05 <br />Pooled SD: 1.12\",\"Covariance: 0.48 <br />Pooled SD: 1.47\",\"Covariance: 0.42 <br />Pooled SD: 1.65\",\"Covariance: 0.4 <br />Pooled SD: 2.57\",\"Covariance: 0.37 <br />Pooled SD: 1.07\",\"Covariance: 0.14 <br />Pooled SD: 0.98\",\"Covariance: -0.74 <br />Pooled SD: 1.46\",\"Covariance: -1.09 <br />Pooled SD: 1.45\",\"Covariance: 0.19 <br />Pooled SD: 1.5\",\"Covariance: -0.37 <br />Pooled SD: 1.45\",\"Covariance: 0.3 <br />Pooled SD: 0.83\",\"Covariance: -0.08 <br />Pooled SD: 1.4\",\"Covariance: -0.26 <br />Pooled SD: 0.68\",\"Covariance: 0.27 <br />Pooled SD: 1.78\",\"Covariance: 0.13 <br />Pooled SD: 0.24\",\"Covariance: 0.03 <br />Pooled SD: 0.42\",\"Covariance: 0.79 <br />Pooled SD: 2.15\",\"Covariance: 0.04 <br />Pooled SD: 1.23\",\"Covariance: 0.21 <br />Pooled SD: 1.33\",\"Covariance: -0.35 <br />Pooled SD: 0.84\",\"Covariance: -0.71 <br />Pooled SD: 1.11\",\"Covariance: 0.25 <br />Pooled SD: 1.43\",\"Covariance: -0.16 <br />Pooled SD: 0.73\",\"Covariance: -0.66 <br />Pooled SD: 1.15\",\"Covariance: -0.08 <br />Pooled SD: 1.18\",\"Covariance: -0.74 <br />Pooled SD: 2.21\",\"Covariance: 0.13 <br />Pooled SD: 1.22\",\"Covariance: 0.15 <br />Pooled SD: 2.2\",\"Covariance: 0.09 <br />Pooled SD: 0.48\",\"Covariance: -0.18 <br />Pooled SD: 1.46\",\"Covariance: -0.45 <br />Pooled SD: 0.89\",\"Covariance: -0.51 <br />Pooled SD: 1.04\",\"Covariance: -0.32 <br />Pooled SD: 0.52\",\"Covariance: -0.63 <br />Pooled SD: 0.78\",\"Covariance: 0.16 <br />Pooled SD: 2.17\",\"Covariance: -0.33 <br />Pooled SD: 1.79\",\"Covariance: 0.37 <br />Pooled SD: 1.1\",\"Covariance: 1.46 <br />Pooled SD: 1.87\",\"Covariance: 0.48 <br />Pooled SD: 2.23\",\"Covariance: -0.35 <br />Pooled SD: 1.23\",\"Covariance: 0.54 <br />Pooled SD: 1.36\",\"Covariance: -0.7 <br />Pooled SD: 1.06\",\"Covariance: 0.8 <br />Pooled SD: 1.36\",\"Covariance: -0.06 <br />Pooled SD: 1.03\",\"Covariance: -0.5 <br />Pooled SD: 0.81\",\"Covariance: 0.43 <br />Pooled SD: 0.86\",\"Covariance: -0.2 <br />Pooled SD: 1.25\",\"Covariance: 0 <br />Pooled SD: 0.86\",\"Covariance: 1.4 <br />Pooled SD: 1.59\",\"Covariance: -0.53 <br />Pooled SD: 0.99\",\"Covariance: 0.72 <br />Pooled SD: 1.23\",\"Covariance: -0.54 <br />Pooled SD: 1.35\",\"Covariance: -0.54 <br />Pooled SD: 1.45\",\"Covariance: 0.52 <br />Pooled SD: 0.88\",\"Covariance: -0.19 <br />Pooled SD: 0.48\",\"Covariance: 1.18 <br />Pooled SD: 1.38\",\"Covariance: 0.32 <br />Pooled SD: 2.23\",\"Covariance: -0.87 <br />Pooled SD: 1.92\",\"Covariance: 0.52 <br />Pooled SD: 1.02\",\"Covariance: -0.02 <br />Pooled SD: 0.56\",\"Covariance: 0.46 <br />Pooled SD: 0.94\",\"Covariance: -0.43 <br />Pooled SD: 1.98\",\"Covariance: -0.08 <br />Pooled SD: 0.22\",\"Covariance: -1 <br />Pooled SD: 1.19\",\"Covariance: 0.87 <br />Pooled SD: 2.22\",\"Covariance: -0.29 <br />Pooled SD: 2.18\",\"Covariance: 0.57 <br />Pooled SD: 0.91\",\"Covariance: -0.6 <br />Pooled SD: 2.06\",\"Covariance: -0.61 <br />Pooled SD: 1.92\",\"Covariance: 0.09 <br />Pooled SD: 0.52\",\"Covariance: 0.49 <br />Pooled SD: 0.87\",\"Covariance: -0.06 <br />Pooled SD: 1.73\",\"Covariance: -0.85 <br />Pooled SD: 1.62\",\"Covariance: -0.18 <br />Pooled SD: 0.44\",\"Covariance: 0.2 <br />Pooled SD: 1.51\",\"Covariance: 0.04 <br />Pooled SD: 0.68\",\"Covariance: 0 <br />Pooled SD: 0.82\",\"Covariance: 0.64 <br />Pooled SD: 1.44\",\"Covariance: -1.17 <br />Pooled SD: 1.6\",\"Covariance: -0.08 <br />Pooled SD: 0.69\",\"Covariance: 0.25 <br />Pooled SD: 1.44\",\"Covariance: -0.68 <br />Pooled SD: 0.77\",\"Covariance: 0.1 <br />Pooled SD: 1.38\",\"Covariance: -0.44 <br />Pooled SD: 0.78\",\"Covariance: -1.41 <br />Pooled SD: 2.79\",\"Covariance: 0.65 <br />Pooled SD: 1.62\",\"Covariance: -0.76 <br />Pooled SD: 2.06\",\"Covariance: 0.84 <br />Pooled SD: 1.79\",\"Covariance: -0.22 <br />Pooled SD: 1.16\",\"Covariance: 1.48 <br />Pooled SD: 1.89\",\"Covariance: -0.1 <br />Pooled SD: 1.47\",\"Covariance: 0.58 <br />Pooled SD: 2.82\",\"Covariance: -0.9 <br />Pooled SD: 2.01\",\"Covariance: 0.2 <br />Pooled SD: 2.26\",\"Covariance: -1.21 <br />Pooled SD: 2\",\"Covariance: 0.35 <br />Pooled SD: 1.36\",\"Covariance: -0.48 <br />Pooled SD: 1.08\",\"Covariance: 0.37 <br />Pooled SD: 0.93\",\"Covariance: 0.13 <br />Pooled SD: 2.85\",\"Covariance: 0.28 <br />Pooled SD: 0.73\",\"Covariance: 0.49 <br />Pooled SD: 3.45\",\"Covariance: -0.39 <br />Pooled SD: 0.78\",\"Covariance: -0.5 <br />Pooled SD: 2.23\",\"Covariance: -0.17 <br />Pooled SD: 1.15\",\"Covariance: 0.36 <br />Pooled SD: 0.88\",\"Covariance: 0.22 <br />Pooled SD: 0.79\",\"Covariance: -0.77 <br />Pooled SD: 2.21\",\"Covariance: -0.13 <br />Pooled SD: 1.34\",\"Covariance: 0.11 <br />Pooled SD: 1.66\",\"Covariance: -0.06 <br />Pooled SD: 2.59\",\"Covariance: 0.4 <br />Pooled SD: 0.8\",\"Covariance: 0.99 <br />Pooled SD: 1.1\",\"Covariance: 0.57 <br />Pooled SD: 1.72\",\"Covariance: 1.64 <br />Pooled SD: 1.89\",\"Covariance: -0.21 <br />Pooled SD: 1.05\",\"Covariance: 0.18 <br />Pooled SD: 0.99\",\"Covariance: 0.1 <br />Pooled SD: 1.52\",\"Covariance: -0.1 <br />Pooled SD: 0.65\",\"Covariance: 0.1 <br />Pooled SD: 1.49\",\"Covariance: -0.28 <br />Pooled SD: 2.17\",\"Covariance: 0.49 <br />Pooled SD: 0.79\",\"Covariance: 0 <br />Pooled SD: 1.09\",\"Covariance: -1.68 <br />Pooled SD: 2.96\",\"Covariance: -0.68 <br />Pooled SD: 1.22\",\"Covariance: -0.04 <br />Pooled SD: 1.7\",\"Covariance: 0.02 <br />Pooled SD: 1.03\",\"Covariance: -0.22 <br />Pooled SD: 0.31\",\"Covariance: 0.58 <br />Pooled SD: 1.41\",\"Covariance: 0.29 <br />Pooled SD: 1.05\",\"Covariance: -1.43 <br />Pooled SD: 1.63\",\"Covariance: -0.35 <br />Pooled SD: 1.94\",\"Covariance: -0.55 <br />Pooled SD: 0.7\",\"Covariance: -0.2 <br />Pooled SD: 1.17\",\"Covariance: 0.54 <br />Pooled SD: 0.83\",\"Covariance: -0.22 <br />Pooled SD: 2.03\",\"Covariance: -0.1 <br />Pooled SD: 1.37\",\"Covariance: 1.11 <br />Pooled SD: 1.63\",\"Covariance: -0.01 <br />Pooled SD: 2.46\",\"Covariance: -0.43 <br />Pooled SD: 1.55\",\"Covariance: -0.6 <br />Pooled SD: 1.09\",\"Covariance: -0.1 <br />Pooled SD: 0.85\",\"Covariance: 0.92 <br />Pooled SD: 1.53\",\"Covariance: -0.15 <br />Pooled SD: 0.57\",\"Covariance: -0.32 <br />Pooled SD: 0.75\",\"Covariance: 0.81 <br />Pooled SD: 1.57\",\"Covariance: 0.45 <br />Pooled SD: 0.93\",\"Covariance: 0.51 <br />Pooled SD: 1.06\",\"Covariance: 0.33 <br />Pooled SD: 1.65\",\"Covariance: 0.41 <br />Pooled SD: 0.89\",\"Covariance: 0.31 <br />Pooled SD: 1.32\",\"Covariance: -0.04 <br />Pooled SD: 1.33\",\"Covariance: 0.05 <br />Pooled SD: 0.25\",\"Covariance: -0.05 <br />Pooled SD: 2.09\",\"Covariance: -0.32 <br />Pooled SD: 1.43\",\"Covariance: -0.71 <br />Pooled SD: 2.1\",\"Covariance: -0.04 <br />Pooled SD: 0.97\",\"Covariance: -0.92 <br />Pooled SD: 1.57\",\"Covariance: -0.52 <br />Pooled SD: 1.03\",\"Covariance: 0.22 <br />Pooled SD: 0.91\",\"Covariance: 0.48 <br />Pooled SD: 1.16\",\"Covariance: -0.32 <br />Pooled SD: 1.52\",\"Covariance: -0.46 <br />Pooled SD: 1.12\",\"Covariance: -1.11 <br />Pooled SD: 2.18\",\"Covariance: -0.31 <br />Pooled SD: 1.24\",\"Covariance: 0.71 <br />Pooled SD: 0.95\",\"Covariance: -0.65 <br />Pooled SD: 1.18\",\"Covariance: 0.06 <br />Pooled SD: 1.14\",\"Covariance: 0.67 <br />Pooled SD: 1.52\",\"Covariance: 0.89 <br />Pooled SD: 1\",\"Covariance: 0.4 <br />Pooled SD: 0.67\",\"Covariance: 0.27 <br />Pooled SD: 1.21\",\"Covariance: 0.31 <br />Pooled SD: 1.34\",\"Covariance: -0.32 <br />Pooled SD: 1.42\",\"Covariance: -0.3 <br />Pooled SD: 1.52\",\"Covariance: 0.76 <br />Pooled SD: 1.35\",\"Covariance: 0.34 <br />Pooled SD: 1.87\",\"Covariance: -0.02 <br />Pooled SD: 1.66\",\"Covariance: -0.77 <br />Pooled SD: 0.87\",\"Covariance: -0.52 <br />Pooled SD: 1.73\",\"Covariance: -1.27 <br />Pooled SD: 2.37\",\"Covariance: 1.23 <br />Pooled SD: 1.65\",\"Covariance: 1.09 <br />Pooled SD: 2.1\",\"Covariance: 0.53 <br />Pooled SD: 1.86\",\"Covariance: 0.64 <br />Pooled SD: 1.71\",\"Covariance: 0.06 <br />Pooled SD: 1.09\",\"Covariance: 0.04 <br />Pooled SD: 1.98\",\"Covariance: 0.33 <br />Pooled SD: 1.25\",\"Covariance: -0.21 <br />Pooled SD: 0.55\",\"Covariance: 0.94 <br />Pooled SD: 1.06\",\"Covariance: -0.62 <br />Pooled SD: 1.53\",\"Covariance: 0.39 <br />Pooled SD: 0.9\",\"Covariance: 0.16 <br />Pooled SD: 0.53\",\"Covariance: -0.1 <br />Pooled SD: 2\",\"Covariance: 0.54 <br />Pooled SD: 1.08\",\"Covariance: -0.15 <br />Pooled SD: 0.58\",\"Covariance: 0.27 <br />Pooled SD: 0.77\",\"Covariance: -0.16 <br />Pooled SD: 1.41\",\"Covariance: -0.21 <br />Pooled SD: 1.05\",\"Covariance: 0.03 <br />Pooled SD: 0.55\",\"Covariance: 0.44 <br />Pooled SD: 1.71\",\"Covariance: -0.05 <br />Pooled SD: 0.53\",\"Covariance: 0 <br />Pooled SD: 1.56\",\"Covariance: -0.64 <br />Pooled SD: 0.83\",\"Covariance: 0.33 <br />Pooled SD: 0.76\",\"Covariance: 0.79 <br />Pooled SD: 1.12\",\"Covariance: 0.43 <br />Pooled SD: 0.82\",\"Covariance: 0.14 <br />Pooled SD: 2.04\",\"Covariance: 0.24 <br />Pooled SD: 1.53\",\"Covariance: 0.31 <br />Pooled SD: 1.35\",\"Covariance: -0.23 <br />Pooled SD: 0.57\",\"Covariance: 0.17 <br />Pooled SD: 1.41\",\"Covariance: 1.01 <br />Pooled SD: 1.23\",\"Covariance: -1.18 <br />Pooled SD: 2.03\",\"Covariance: 0.48 <br />Pooled SD: 1.97\",\"Covariance: -0.02 <br />Pooled SD: 0.77\",\"Covariance: 0.2 <br />Pooled SD: 1.72\",\"Covariance: 0.55 <br />Pooled SD: 1.35\",\"Covariance: 0.35 <br />Pooled SD: 0.82\",\"Covariance: 0.21 <br />Pooled SD: 1.5\",\"Covariance: 0.38 <br />Pooled SD: 0.67\",\"Covariance: 0.17 <br />Pooled SD: 0.59\",\"Covariance: 0.04 <br />Pooled SD: 1.19\",\"Covariance: -0.08 <br />Pooled SD: 0.71\",\"Covariance: -0.06 <br />Pooled SD: 1.91\",\"Covariance: 0.25 <br />Pooled SD: 0.61\",\"Covariance: 0.78 <br />Pooled SD: 2.4\",\"Covariance: 0.09 <br />Pooled SD: 1.56\",\"Covariance: -0.35 <br />Pooled SD: 1.02\",\"Covariance: -0.2 <br />Pooled SD: 0.84\",\"Covariance: 0.26 <br />Pooled SD: 1.07\",\"Covariance: 0.49 <br />Pooled SD: 2.78\",\"Covariance: -0.31 <br />Pooled SD: 1.45\",\"Covariance: -0.18 <br />Pooled SD: 1.21\",\"Covariance: 0.06 <br />Pooled SD: 1.4\",\"Covariance: -0.66 <br />Pooled SD: 0.77\",\"Covariance: 0.36 <br />Pooled SD: 1.56\",\"Covariance: -0.61 <br />Pooled SD: 0.74\",\"Covariance: -0.29 <br />Pooled SD: 1.29\",\"Covariance: -0.67 <br />Pooled SD: 1.44\",\"Covariance: 0.38 <br />Pooled SD: 0.95\",\"Covariance: -0.17 <br />Pooled SD: 0.89\",\"Covariance: 0.31 <br />Pooled SD: 0.78\",\"Covariance: 0.5 <br />Pooled SD: 2.26\",\"Covariance: 0.25 <br />Pooled SD: 0.51\",\"Covariance: 0 <br />Pooled SD: 0.64\",\"Covariance: -0.54 <br />Pooled SD: 1.29\",\"Covariance: 0.56 <br />Pooled SD: 1.36\",\"Covariance: 0.34 <br />Pooled SD: 1.04\",\"Covariance: 0.7 <br />Pooled SD: 2.71\",\"Covariance: 0.04 <br />Pooled SD: 0.26\",\"Covariance: 0.31 <br />Pooled SD: 0.84\",\"Covariance: 0.51 <br />Pooled SD: 1.28\",\"Covariance: 0.16 <br />Pooled SD: 0.97\",\"Covariance: -0.71 <br />Pooled SD: 1.17\",\"Covariance: 0.05 <br />Pooled SD: 0.52\",\"Covariance: -0.04 <br />Pooled SD: 1.41\",\"Covariance: -0.07 <br />Pooled SD: 0.57\",\"Covariance: -0.17 <br />Pooled SD: 1.12\",\"Covariance: 0.42 <br />Pooled SD: 1.32\",\"Covariance: 0.43 <br />Pooled SD: 0.95\",\"Covariance: -0.07 <br />Pooled SD: 0.71\",\"Covariance: -0.53 <br />Pooled SD: 0.73\",\"Covariance: -0.17 <br />Pooled SD: 0.95\",\"Covariance: -0.12 <br />Pooled SD: 1.98\",\"Covariance: 0.04 <br />Pooled SD: 2.62\",\"Covariance: -0.22 <br />Pooled SD: 0.44\",\"Covariance: 1.54 <br />Pooled SD: 2.05\",\"Covariance: 0.58 <br />Pooled SD: 1.27\",\"Covariance: 0.34 <br />Pooled SD: 0.89\",\"Covariance: -0.35 <br />Pooled SD: 0.86\",\"Covariance: 0.51 <br />Pooled SD: 0.56\",\"Covariance: -0.82 <br />Pooled SD: 1.75\",\"Covariance: -0.87 <br />Pooled SD: 1.12\",\"Covariance: 0.29 <br />Pooled SD: 1.05\",\"Covariance: -1.15 <br />Pooled SD: 1.64\",\"Covariance: 0.93 <br />Pooled SD: 1.2\",\"Covariance: 0.18 <br />Pooled SD: 1.55\",\"Covariance: 0.61 <br />Pooled SD: 1.42\",\"Covariance: -0.03 <br />Pooled SD: 1.27\",\"Covariance: 0.51 <br />Pooled SD: 0.71\",\"Covariance: -0.07 <br />Pooled SD: 1.07\",\"Covariance: 1.18 <br />Pooled SD: 1.43\",\"Covariance: -0.05 <br />Pooled SD: 1.19\",\"Covariance: 0.08 <br />Pooled SD: 1.46\",\"Covariance: -0.67 <br />Pooled SD: 1.72\",\"Covariance: 0.04 <br />Pooled SD: 1.1\",\"Covariance: 1.35 <br />Pooled SD: 2.4\",\"Covariance: -0.71 <br />Pooled SD: 1.53\",\"Covariance: -0.24 <br />Pooled SD: 0.79\",\"Covariance: -0.54 <br />Pooled SD: 1.34\",\"Covariance: -0.26 <br />Pooled SD: 0.41\",\"Covariance: -0.38 <br />Pooled SD: 1.29\",\"Covariance: -0.35 <br />Pooled SD: 0.97\",\"Covariance: -0.64 <br />Pooled SD: 1.74\",\"Covariance: 0.56 <br />Pooled SD: 1.59\",\"Covariance: 0.06 <br />Pooled SD: 2.18\",\"Covariance: 0.48 <br />Pooled SD: 2.01\",\"Covariance: 1.27 <br />Pooled SD: 3.4\",\"Covariance: 0.94 <br />Pooled SD: 1.48\",\"Covariance: -0.08 <br />Pooled SD: 0.33\",\"Covariance: -0.17 <br />Pooled SD: 0.98\",\"Covariance: 0.64 <br />Pooled SD: 1.26\",\"Covariance: -0.5 <br />Pooled SD: 0.89\",\"Covariance: -0.61 <br />Pooled SD: 0.67\",\"Covariance: 0.24 <br />Pooled SD: 2.08\",\"Covariance: -0.36 <br />Pooled SD: 1.4\",\"Covariance: 0.2 <br />Pooled SD: 1.09\",\"Covariance: 0.29 <br />Pooled SD: 0.63\",\"Covariance: 0.32 <br />Pooled SD: 1.88\",\"Covariance: 0.46 <br />Pooled SD: 1.22\",\"Covariance: 0.4 <br />Pooled SD: 1.06\",\"Covariance: -0.81 <br />Pooled SD: 1.04\",\"Covariance: -1.07 <br />Pooled SD: 1.2\",\"Covariance: -0.15 <br />Pooled SD: 0.78\",\"Covariance: -0.75 <br />Pooled SD: 1.32\",\"Covariance: 0.34 <br />Pooled SD: 0.48\",\"Covariance: 0.05 <br />Pooled SD: 1.01\",\"Covariance: -0.2 <br />Pooled SD: 0.54\",\"Covariance: 0.55 <br />Pooled SD: 0.95\",\"Covariance: 0.51 <br />Pooled SD: 1.06\",\"Covariance: -1.49 <br />Pooled SD: 3.5\",\"Covariance: 0.85 <br />Pooled SD: 2.39\",\"Covariance: -0.03 <br />Pooled SD: 2.63\",\"Covariance: -0.59 <br />Pooled SD: 1.91\",\"Covariance: -0.68 <br />Pooled SD: 2.18\",\"Covariance: -1.61 <br />Pooled SD: 2.18\",\"Covariance: -0.39 <br />Pooled SD: 1.47\",\"Covariance: -0.08 <br />Pooled SD: 1.06\",\"Covariance: -0.38 <br />Pooled SD: 1.13\",\"Covariance: -0.13 <br />Pooled SD: 2.66\",\"Covariance: 0.14 <br />Pooled SD: 2.01\",\"Covariance: 1.26 <br />Pooled SD: 1.97\",\"Covariance: -0.01 <br />Pooled SD: 0.26\",\"Covariance: 0.12 <br />Pooled SD: 1.21\",\"Covariance: -0.35 <br />Pooled SD: 1.69\",\"Covariance: 0.73 <br />Pooled SD: 2.12\",\"Covariance: 0.87 <br />Pooled SD: 1.34\",\"Covariance: 0.41 <br />Pooled SD: 1.01\",\"Covariance: 0.09 <br />Pooled SD: 0.66\",\"Covariance: 0.27 <br />Pooled SD: 2.22\",\"Covariance: -0.6 <br />Pooled SD: 1.08\",\"Covariance: -0.33 <br />Pooled SD: 1.67\",\"Covariance: 0.38 <br />Pooled SD: 0.62\",\"Covariance: -0.29 <br />Pooled SD: 0.72\",\"Covariance: -1.19 <br />Pooled SD: 2.1\",\"Covariance: -0.17 <br />Pooled SD: 1.37\",\"Covariance: 0.03 <br />Pooled SD: 1.03\",\"Covariance: 0.69 <br />Pooled SD: 1.08\",\"Covariance: -0.61 <br />Pooled SD: 1\",\"Covariance: 0.67 <br />Pooled SD: 1.11\",\"Covariance: 0.29 <br />Pooled SD: 0.94\",\"Covariance: 0.53 <br />Pooled SD: 0.91\",\"Covariance: -0.73 <br />Pooled SD: 1.25\",\"Covariance: 0.16 <br />Pooled SD: 0.71\",\"Covariance: 0.19 <br />Pooled SD: 0.85\",\"Covariance: 0.83 <br />Pooled SD: 1.93\",\"Covariance: 1.34 <br />Pooled SD: 1.57\",\"Covariance: -0.96 <br />Pooled SD: 3.92\",\"Covariance: -0.29 <br />Pooled SD: 2.9\",\"Covariance: -0.09 <br />Pooled SD: 0.29\",\"Covariance: -0.32 <br />Pooled SD: 1.25\",\"Covariance: 0.33 <br />Pooled SD: 0.65\",\"Covariance: -1.44 <br />Pooled SD: 1.67\",\"Covariance: -1.16 <br />Pooled SD: 1.58\",\"Covariance: 0.64 <br />Pooled SD: 1.26\",\"Covariance: -0.62 <br />Pooled SD: 1.78\",\"Covariance: -0.63 <br />Pooled SD: 1.34\",\"Covariance: -0.52 <br />Pooled SD: 1.62\",\"Covariance: 0.16 <br />Pooled SD: 0.42\",\"Covariance: 1.44 <br />Pooled SD: 1.52\",\"Covariance: -0.17 <br />Pooled SD: 1.05\",\"Covariance: -0.35 <br />Pooled SD: 1.14\",\"Covariance: -0.01 <br />Pooled SD: 0.53\",\"Covariance: 0.11 <br />Pooled SD: 2.06\",\"Covariance: 0.63 <br />Pooled SD: 0.94\",\"Covariance: 0.35 <br />Pooled SD: 0.89\",\"Covariance: -0.75 <br />Pooled SD: 1.35\",\"Covariance: 0.39 <br />Pooled SD: 3.64\",\"Covariance: 0.25 <br />Pooled SD: 1.58\",\"Covariance: 0.17 <br />Pooled SD: 1.29\",\"Covariance: -0.01 <br />Pooled SD: 1.8\",\"Covariance: -0.4 <br />Pooled SD: 2.33\",\"Covariance: 0.31 <br />Pooled SD: 0.89\",\"Covariance: 0.47 <br />Pooled SD: 1.49\",\"Covariance: 0.24 <br />Pooled SD: 1.89\",\"Covariance: 0.3 <br />Pooled SD: 0.77\",\"Covariance: 0.03 <br />Pooled SD: 0.39\",\"Covariance: -0.35 <br />Pooled SD: 1.05\",\"Covariance: 0.19 <br />Pooled SD: 1.43\",\"Covariance: 0.46 <br />Pooled SD: 1.1\",\"Covariance: -1.53 <br />Pooled SD: 2.27\",\"Covariance: -0.43 <br />Pooled SD: 0.98\",\"Covariance: 0.04 <br />Pooled SD: 1.76\",\"Covariance: -1.38 <br />Pooled SD: 3.15\",\"Covariance: 0.79 <br />Pooled SD: 1.86\",\"Covariance: 0.05 <br />Pooled SD: 1.06\",\"Covariance: 0.16 <br />Pooled SD: 1.64\",\"Covariance: 0.2 <br />Pooled SD: 0.7\",\"Covariance: -0.04 <br />Pooled SD: 1.67\",\"Covariance: 0.23 <br />Pooled SD: 1.3\",\"Covariance: -0.32 <br />Pooled SD: 1.07\",\"Covariance: 0.24 <br />Pooled SD: 1.5\",\"Covariance: 0.26 <br />Pooled SD: 1.78\",\"Covariance: -0.31 <br />Pooled SD: 1\",\"Covariance: 0.18 <br />Pooled SD: 0.7\",\"Covariance: -0.88 <br />Pooled SD: 3.2\",\"Covariance: -1.41 <br />Pooled SD: 1.81\",\"Covariance: -0.42 <br />Pooled SD: 0.92\",\"Covariance: -0.87 <br />Pooled SD: 2.2\",\"Covariance: 0.65 <br />Pooled SD: 1.24\",\"Covariance: -0.08 <br />Pooled SD: 1.5\",\"Covariance: 0.05 <br />Pooled SD: 0.33\",\"Covariance: 0.67 <br />Pooled SD: 1.53\"],\"frame\":\"3000\",\"type\":\"scatter\",\"xaxis\":\"x\",\"yaxis\":\"y\",\"visible\":true}],\"traces\":[0]}],\"shinyEvents\":[\"plotly_hover\",\"plotly_click\",\"plotly_selected\",\"plotly_relayout\",\"plotly_brushed\",\"plotly_brushing\",\"plotly_clickannotation\",\"plotly_doubleclick\",\"plotly_deselect\",\"plotly_afterplot\",\"plotly_sunburstclick\"],\"base_url\":\"https://plot.ly\"},\"evals\":[],\"jsHooks\":[]}</script>\n</body>\n</html>\n"
  },
  {
    "path": "images/05_correlation/lib/crosstalk-1.0.0/css/crosstalk.css",
    "content": "/* Adjust margins outwards, so column contents line up with the edges of the\n   parent of container-fluid. */\n.container-fluid.crosstalk-bscols {\n  margin-left: -30px;\n  margin-right: -30px;\n  white-space: normal;\n}\n\n/* But don't adjust the margins outwards if we're directly under the body,\n   i.e. we were the top-level of something at the console. */\nbody > .container-fluid.crosstalk-bscols {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n  display: inline-block;\n  padding-right: 12px;\n  vertical-align: top;\n}\n\n@media only screen and (max-width:480px) {\n  .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n    display: block;\n    padding-right: inherit;\n  }\n}\n"
  },
  {
    "path": "images/05_correlation/lib/crosstalk-1.0.0/js/crosstalk.js",
    "content": "(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Events = function () {\n  function Events() {\n    _classCallCheck(this, Events);\n\n    this._types = {};\n    this._seq = 0;\n  }\n\n  _createClass(Events, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var subs = this._types[eventType];\n      if (!subs) {\n        subs = this._types[eventType] = {};\n      }\n      var sub = \"sub\" + this._seq++;\n      subs[sub] = listener;\n      return sub;\n    }\n\n    // Returns false if no match, or string for sub name if matched\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var subs = this._types[eventType];\n      if (typeof listener === \"function\") {\n        for (var key in subs) {\n          if (subs.hasOwnProperty(key)) {\n            if (subs[key] === listener) {\n              delete subs[key];\n              return key;\n            }\n          }\n        }\n        return false;\n      } else if (typeof listener === \"string\") {\n        if (subs && subs[listener]) {\n          delete subs[listener];\n          return listener;\n        }\n        return false;\n      } else {\n        throw new Error(\"Unexpected type for listener\");\n      }\n    }\n  }, {\n    key: \"trigger\",\n    value: function trigger(eventType, arg, thisObj) {\n      var subs = this._types[eventType];\n      for (var key in subs) {\n        if (subs.hasOwnProperty(key)) {\n          subs[key].call(thisObj, arg);\n        }\n      }\n    }\n  }]);\n\n  return Events;\n}();\n\nexports.default = Events;\n\n},{}],2:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.FilterHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _filterset = require(\"./filterset\");\n\nvar _filterset2 = _interopRequireDefault(_filterset);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction getFilterSet(group) {\n  var fsVar = group.var(\"filterset\");\n  var result = fsVar.get();\n  if (!result) {\n    result = new _filterset2.default();\n    fsVar.set(result);\n  }\n  return result;\n}\n\nvar id = 1;\nfunction nextId() {\n  return id++;\n}\n\nvar FilterHandle = exports.FilterHandle = function () {\n  /**\n   * @classdesc\n   * Use this class to contribute to, and listen for changes to, the filter set\n   * for the given group of widgets. Filter input controls should create one\n   * `FilterHandle` and only call {@link FilterHandle#set}. Output widgets that\n   * wish to displayed filtered data should create one `FilterHandle` and use\n   * the {@link FilterHandle#filteredKeys} property and listen for change\n   * events.\n   *\n   * If two (or more) `FilterHandle` instances in the same webpage share the\n   * same group name, they will contribute to a single \"filter set\". Each\n   * `FilterHandle` starts out with a `null` value, which means they take\n   * nothing away from the set of data that should be shown. To make a\n   * `FilterHandle` actually remove data from the filter set, set its value to\n   * an array of keys which should be displayed. Crosstalk will aggregate the\n   * various key arrays by finding their intersection; only keys that are\n   * present in all non-null filter handles are considered part of the filter\n   * set.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the @{link FilterHandle#setGroup} method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function FilterHandle(group, extraInfo) {\n    _classCallCheck(this, FilterHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The filterSet that we're tracking, if any. Can change over time.\n    this._filterSet = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._filterVar = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this._id = \"filter\" + nextId();\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this FilterHandle. If `set()` was\n   * previously called on this handle, switching groups will clear those keys\n   * from the old group's filter set. These keys will not be applied to the new\n   * group's filter set either. In other words, `setGroup()` effectively calls\n   * `clear()` before switching groups.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(FilterHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._filterVar) {\n        this._filterVar.off(\"change\", this._varOnChangeSub);\n        this.clear();\n        this._varOnChangeSub = null;\n        this._filterVar = null;\n        this._filterSet = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        group = (0, _group2.default)(group);\n        this._filterSet = getFilterSet(group);\n        this._filterVar = (0, _group2.default)(group).var(\"filter\");\n        var sub = this._filterVar.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Combine the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n    value: function _mergeExtraInfo(extraInfo) {\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Close the handle. This clears this handle's contribution to the filter set,\n     * and unsubscribes all event listeners.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.clear();\n      this.setGroup(null);\n    }\n\n    /**\n     * Clear this handle's contribution to the filter set.\n     *\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.clear(this._id);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * Set this handle's contribution to the filter set. This array should consist\n     * of the keys of the rows that _should_ be displayed; any keys that are not\n     * present in the array will be considered _filtered out_. Note that multiple\n     * `FilterHandle` instances in the group may each contribute an array of keys,\n     * and only those keys that appear in _all_ of the arrays make it through the\n     * filter.\n     *\n     * @param {string[]} keys - Empty array, or array of keys. To clear the\n     *   filter, don't pass an empty array; instead, use the\n     *   {@link FilterHandle#clear} method.\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(keys, extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.update(this._id, keys);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * @return {string[]|null} - Either: 1) an array of keys that made it through\n     *   all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n     *   is being applied (all data should be displayed).\n     */\n\n  }, {\n    key: \"on\",\n\n\n    /**\n     * Subscribe to events on this `FilterHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {FilterHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n     *   this subscription.\n     */\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancel event subscriptions created by {@link FilterHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|FilterHandle~listener} listener - Either the callback\n     *   function previously passed into {@link FilterHandle#on}, or the\n     *   string that was returned from {@link FilterHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n  }, {\n    key: \"_onChange\",\n    value: function _onChange(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * @callback FilterHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the filter set, or `null` if no filter set is active),\n     *   `oldValue` (the previous value of the filter set), and `sender` (the\n     *   `FilterHandle` instance that made the change).\n     */\n\n    /**\n     * @event FilterHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the filter set, or `null`\n     *   if no filter set is active.\n     * @property {object} oldValue - The previous value of the filter set.\n     * @property {FilterHandle} sender - The `FilterHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"filteredKeys\",\n    get: function get() {\n      return this._filterSet ? this._filterSet.value : null;\n    }\n  }]);\n\n  return FilterHandle;\n}();\n\n},{\"./events\":1,\"./filterset\":3,\"./group\":4,\"./util\":11}],3:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _util = require(\"./util\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction naturalComparator(a, b) {\n  if (a === b) {\n    return 0;\n  } else if (a < b) {\n    return -1;\n  } else if (a > b) {\n    return 1;\n  }\n}\n\n/**\n * @private\n */\n\nvar FilterSet = function () {\n  function FilterSet() {\n    _classCallCheck(this, FilterSet);\n\n    this.reset();\n  }\n\n  _createClass(FilterSet, [{\n    key: \"reset\",\n    value: function reset() {\n      // Key: handle ID, Value: array of selected keys, or null\n      this._handles = {};\n      // Key: key string, Value: count of handles that include it\n      this._keys = {};\n      this._value = null;\n      this._activeHandles = 0;\n    }\n  }, {\n    key: \"update\",\n    value: function update(handleId, keys) {\n      if (keys !== null) {\n        keys = keys.slice(0); // clone before sorting\n        keys.sort(naturalComparator);\n      }\n\n      var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys),\n          added = _diffSortedLists.added,\n          removed = _diffSortedLists.removed;\n\n      this._handles[handleId] = keys;\n\n      for (var i = 0; i < added.length; i++) {\n        this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n      }\n      for (var _i = 0; _i < removed.length; _i++) {\n        this._keys[removed[_i]]--;\n      }\n\n      this._updateValue(keys);\n    }\n\n    /**\n     * @param {string[]} keys Sorted array of strings that indicate\n     * a superset of possible keys.\n     * @private\n     */\n\n  }, {\n    key: \"_updateValue\",\n    value: function _updateValue() {\n      var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys;\n\n      var handleCount = Object.keys(this._handles).length;\n      if (handleCount === 0) {\n        this._value = null;\n      } else {\n        this._value = [];\n        for (var i = 0; i < keys.length; i++) {\n          var count = this._keys[keys[i]];\n          if (count === handleCount) {\n            this._value.push(keys[i]);\n          }\n        }\n      }\n    }\n  }, {\n    key: \"clear\",\n    value: function clear(handleId) {\n      if (typeof this._handles[handleId] === \"undefined\") {\n        return;\n      }\n\n      var keys = this._handles[handleId];\n      if (!keys) {\n        keys = [];\n      }\n\n      for (var i = 0; i < keys.length; i++) {\n        this._keys[keys[i]]--;\n      }\n      delete this._handles[handleId];\n\n      this._updateValue();\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"_allKeys\",\n    get: function get() {\n      var allKeys = Object.keys(this._keys);\n      allKeys.sort(naturalComparator);\n      return allKeys;\n    }\n  }]);\n\n  return FilterSet;\n}();\n\nexports.default = FilterSet;\n\n},{\"./util\":11}],4:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.default = group;\n\nvar _var2 = require(\"./var\");\n\nvar _var3 = _interopRequireDefault(_var2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nvar groups = global.__crosstalk_groups;\n\nfunction group(groupName) {\n  if (groupName && typeof groupName === \"string\") {\n    if (!groups.hasOwnProperty(groupName)) {\n      groups[groupName] = new Group(groupName);\n    }\n    return groups[groupName];\n  } else if ((typeof groupName === \"undefined\" ? \"undefined\" : _typeof(groupName)) === \"object\" && groupName._vars && groupName.var) {\n    // Appears to already be a group object\n    return groupName;\n  } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === \"string\") {\n    return group(groupName[0]);\n  } else {\n    throw new Error(\"Invalid groupName argument\");\n  }\n}\n\nvar Group = function () {\n  function Group(name) {\n    _classCallCheck(this, Group);\n\n    this.name = name;\n    this._vars = {};\n  }\n\n  _createClass(Group, [{\n    key: \"var\",\n    value: function _var(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name);\n      return this._vars[name];\n    }\n  }, {\n    key: \"has\",\n    value: function has(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      return this._vars.hasOwnProperty(name);\n    }\n  }]);\n\n  return Group;\n}();\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./var\":12}],5:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _selection = require(\"./selection\");\n\nvar _filter = require(\"./filter\");\n\nrequire(\"./input\");\n\nrequire(\"./input_selectize\");\n\nrequire(\"./input_checkboxgroup\");\n\nrequire(\"./input_slider\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar defaultGroup = (0, _group2.default)(\"default\");\n\nfunction var_(name) {\n  return defaultGroup.var(name);\n}\n\nfunction has(name) {\n  return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n  global.Shiny.addCustomMessageHandler(\"update-client-value\", function (message) {\n    if (typeof message.group === \"string\") {\n      (0, _group2.default)(message.group).var(message.name).set(message.value);\n    } else {\n      var_(message.name).set(message.value);\n    }\n  });\n}\n\nvar crosstalk = {\n  group: _group2.default,\n  var: var_,\n  has: has,\n  SelectionHandle: _selection.SelectionHandle,\n  FilterHandle: _filter.FilterHandle\n};\n\n/**\n * @namespace crosstalk\n */\nexports.default = crosstalk;\n\nglobal.crosstalk = crosstalk;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./group\":4,\"./input\":6,\"./input_checkboxgroup\":7,\"./input_selectize\":8,\"./input_slider\":9,\"./selection\":10}],6:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.register = register;\nvar $ = global.jQuery;\n\nvar bindings = {};\n\nfunction register(reg) {\n  bindings[reg.className] = reg;\n  if (global.document && global.document.readyState !== \"complete\") {\n    $(function () {\n      bind();\n    });\n  } else if (global.document) {\n    setTimeout(bind, 100);\n  }\n}\n\nfunction bind() {\n  Object.keys(bindings).forEach(function (className) {\n    var binding = bindings[className];\n    $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function (i, el) {\n      bindInstance(binding, el);\n    });\n  });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n  return val.replace(/([!\"#$%&'()*+,.\\/:;<=>?@\\[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n  var $el = $(el);\n  Object.keys(bindings).forEach(function (className) {\n    if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n      var binding = bindings[className];\n      bindInstance(binding, el);\n    }\n  });\n}\n\nfunction bindInstance(binding, el) {\n  var jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n  var data = JSON.parse(jsonEl[0].innerText);\n\n  var instance = binding.factory(el, data);\n  $(el).data(\"crosstalk-instance\", instance);\n  $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n  (function () {\n    var inputBinding = new global.Shiny.InputBinding();\n    var $ = global.jQuery;\n    $.extend(inputBinding, {\n      find: function find(scope) {\n        return $(scope).find(\".crosstalk-input\");\n      },\n      initialize: function initialize(el) {\n        if (!$(el).hasClass(\"crosstalk-input-bound\")) {\n          bindEl(el);\n        }\n      },\n      getId: function getId(el) {\n        return el.id;\n      },\n      getValue: function getValue(el) {},\n      setValue: function setValue(el, value) {},\n      receiveMessage: function receiveMessage(el, data) {},\n      subscribe: function subscribe(el, callback) {\n        $(el).data(\"crosstalk-instance\").resume();\n      },\n      unsubscribe: function unsubscribe(el) {\n        $(el).data(\"crosstalk-instance\").suspend();\n      }\n    });\n    global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n  })();\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{}],7:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-checkboxgroup\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    var $el = $(el);\n    $el.on(\"change\", \"input[type='checkbox']\", function () {\n      var checked = $el.find(\"input[type='checkbox']:checked\");\n      if (checked.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          checked.each(function () {\n            data.map[this.value].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],8:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-select\",\n\n  factory: function factory(el, data) {\n    /*\n     * items: {value: [...], label: [...]}\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n\n    var first = [{ value: \"\", label: \"(All)\" }];\n    var items = util.dataframeToD3(data.items);\n    var opts = {\n      options: first.concat(items),\n      valueField: \"value\",\n      labelField: \"label\",\n      searchField: \"label\"\n    };\n\n    var select = $(el).find(\"select\")[0];\n\n    var selectize = $(select).selectize(opts)[0].selectize;\n\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    selectize.on(\"change\", function () {\n      if (selectize.items.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          selectize.items.forEach(function (group) {\n            data.map[group].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6,\"./util\":11}],9:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\nvar strftime = global.strftime;\n\ninput.register({\n  className: \"crosstalk-input-slider\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var opts = {};\n    var $el = $(el).find(\"input\");\n    var dataType = $el.data(\"data-type\");\n    var timeFormat = $el.data(\"time-format\");\n    var timeFormatter = void 0;\n\n    // Set up formatting functions\n    if (dataType === \"date\") {\n      timeFormatter = strftime.utc();\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"datetime\") {\n      var timezone = $el.data(\"timezone\");\n      if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime;\n\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    }\n\n    $el.ionRangeSlider(opts);\n\n    function getValue() {\n      var result = $el.data(\"ionRangeSlider\").result;\n\n      // Function for converting numeric value from slider to appropriate type.\n      var convert = void 0;\n      var dataType = $el.data(\"data-type\");\n      if (dataType === \"date\") {\n        convert = function convert(val) {\n          return formatDateUTC(new Date(+val));\n        };\n      } else if (dataType === \"datetime\") {\n        convert = function convert(val) {\n          // Convert ms to s\n          return +val / 1000;\n        };\n      } else {\n        convert = function convert(val) {\n          return +val;\n        };\n      }\n\n      if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n        return [convert(result.from), convert(result.to)];\n      } else {\n        return convert(result.from);\n      }\n    }\n\n    var lastKnownKeys = null;\n\n    $el.on(\"change.crosstalkSliderInput\", function (event) {\n      if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n        var _getValue = getValue(),\n            _getValue2 = _slicedToArray(_getValue, 2),\n            from = _getValue2[0],\n            to = _getValue2[1];\n\n        var keys = [];\n        for (var i = 0; i < data.values.length; i++) {\n          var val = data.values[i];\n          if (val >= from && val <= to) {\n            keys.push(data.keys[i]);\n          }\n        }\n        keys.sort();\n        ctHandle.set(keys);\n        lastKnownKeys = keys;\n      }\n    });\n\n    // let $el = $(el);\n    // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n    //   let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n    //   if (checked.length === 0) {\n    //     ctHandle.clear();\n    //   } else {\n    //     let keys = {};\n    //     checked.each(function() {\n    //       data.map[this.value].forEach(function(key) {\n    //         keys[key] = true;\n    //       });\n    //     });\n    //     let keyArray = Object.keys(keys);\n    //     keyArray.sort();\n    //     ctHandle.set(keyArray);\n    //   }\n    // });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n  var str = n.toString();\n  while (str.length < digits) {\n    str = \"0\" + str;\n  }return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n  if (date instanceof Date) {\n    return date.getUTCFullYear() + \"-\" + padZeros(date.getUTCMonth() + 1, 2) + \"-\" + padZeros(date.getUTCDate(), 2);\n  } else {\n    return null;\n  }\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],10:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.SelectionHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar SelectionHandle = exports.SelectionHandle = function () {\n\n  /**\n   * @classdesc\n   * Use this class to read and write (and listen for changes to) the selection\n   * for a Crosstalk group. This is intended to be used for linked brushing.\n   *\n   * If two (or more) `SelectionHandle` instances in the same webpage share the\n   * same group name, they will share the same state. Setting the selection using\n   * one `SelectionHandle` instance will result in the `value` property instantly\n   * changing across the others, and `\"change\"` event listeners on all instances\n   * (including the one that initiated the sending) will fire.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the [SelectionHandle#setGroup](#setGroup) method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function SelectionHandle() {\n    var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n    var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n\n    _classCallCheck(this, SelectionHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._var = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this SelectionHandle. The group\n   * being switched away from (if any) will not have its selection value\n   * modified as a result of calling `setGroup`, even if this handle was the\n   * most recent handle to set the selection of the group.\n   *\n   * The group being switched to (if any) will also not have its selection value\n   * modified as a result of calling `setGroup`. If you want to set the\n   * selection value of the new group, call `set` explicitly.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(SelectionHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._var) {\n        this._var.off(\"change\", this._varOnChangeSub);\n        this._var = null;\n        this._varOnChangeSub = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        this._var = (0, _group2.default)(group).var(\"selection\");\n        var sub = this._var.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Retrieves the current selection for the group represented by this\n     * `SelectionHandle`.\n     *\n     * - If no selection is active, then this value will be falsy.\n     * - If a selection is active, but no data points are selected, then this\n     *   value will be an empty array.\n     * - If a selection is active, and data points are selected, then the keys\n     *   of the selected data points will be present in the array.\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n\n\n    /**\n     * Combines the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n    value: function _mergeExtraInfo(extraInfo) {\n      // Important incidental effect: shallow clone is returned\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n     *   {@link SelectionHandle#value}).\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(selectedKeys, extraInfo) {\n      if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any that were passed\n     *   into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Subscribes to events on this `SelectionHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {SelectionHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n     *   this subscription.\n     */\n\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancels event subscriptions created by {@link SelectionHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|SelectionHandle~listener} listener - Either the callback\n     *   function previously passed into {@link SelectionHandle#on}, or the\n     *   string that was returned from {@link SelectionHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n\n    /**\n     * Shuts down the `SelectionHandle` object.\n     *\n     * Removes all event listeners that were added through this handle.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.setGroup(null);\n    }\n\n    /**\n     * @callback SelectionHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the selection, or `undefined` if no selection is active),\n     *   `oldValue` (the previous value of the selection), and `sender` (the\n     *   `SelectionHandle` instance that made the change).\n     */\n\n    /**\n     * @event SelectionHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the selection, or `undefined`\n     *   if no selection is active.\n     * @property {object} oldValue - The previous value of the selection.\n     * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._var ? this._var.get() : null;\n    }\n  }]);\n\n  return SelectionHandle;\n}();\n\n},{\"./events\":1,\"./group\":4,\"./util\":11}],11:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.extend = extend;\nexports.checkSorted = checkSorted;\nexports.diffSortedLists = diffSortedLists;\nexports.dataframeToD3 = dataframeToD3;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction extend(target) {\n  for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n    sources[_key - 1] = arguments[_key];\n  }\n\n  for (var i = 0; i < sources.length; i++) {\n    var src = sources[i];\n    if (typeof src === \"undefined\" || src === null) continue;\n\n    for (var key in src) {\n      if (src.hasOwnProperty(key)) {\n        target[key] = src[key];\n      }\n    }\n  }\n  return target;\n}\n\nfunction checkSorted(list) {\n  for (var i = 1; i < list.length; i++) {\n    if (list[i] <= list[i - 1]) {\n      throw new Error(\"List is not sorted or contains duplicate\");\n    }\n  }\n}\n\nfunction diffSortedLists(a, b) {\n  var i_a = 0;\n  var i_b = 0;\n\n  if (!a) a = [];\n  if (!b) b = [];\n\n  var a_only = [];\n  var b_only = [];\n\n  checkSorted(a);\n  checkSorted(b);\n\n  while (i_a < a.length && i_b < b.length) {\n    if (a[i_a] === b[i_b]) {\n      i_a++;\n      i_b++;\n    } else if (a[i_a] < b[i_b]) {\n      a_only.push(a[i_a++]);\n    } else {\n      b_only.push(b[i_b++]);\n    }\n  }\n\n  if (i_a < a.length) a_only = a_only.concat(a.slice(i_a));\n  if (i_b < b.length) b_only = b_only.concat(b.slice(i_b));\n  return {\n    removed: a_only,\n    added: b_only\n  };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nfunction dataframeToD3(df) {\n  var names = [];\n  var length = void 0;\n  for (var name in df) {\n    if (df.hasOwnProperty(name)) names.push(name);\n    if (_typeof(df[name]) !== \"object\" || typeof df[name].length === \"undefined\") {\n      throw new Error(\"All fields must be arrays\");\n    } else if (typeof length !== \"undefined\" && length !== df[name].length) {\n      throw new Error(\"All fields must be arrays of the same length\");\n    }\n    length = df[name].length;\n  }\n  var results = [];\n  var item = void 0;\n  for (var row = 0; row < length; row++) {\n    item = {};\n    for (var col = 0; col < names.length; col++) {\n      item[names[col]] = df[names[col]][row];\n    }\n    results.push(item);\n  }\n  return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\n\nvar SubscriptionTracker = exports.SubscriptionTracker = function () {\n  function SubscriptionTracker(emitter) {\n    _classCallCheck(this, SubscriptionTracker);\n\n    this._emitter = emitter;\n    this._subs = {};\n  }\n\n  _createClass(SubscriptionTracker, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var sub = this._emitter.on(eventType, listener);\n      this._subs[sub] = eventType;\n      return sub;\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var sub = this._emitter.off(eventType, listener);\n      if (sub) {\n        delete this._subs[sub];\n      }\n      return sub;\n    }\n  }, {\n    key: \"removeAllListeners\",\n    value: function removeAllListeners() {\n      var _this = this;\n\n      var current_subs = this._subs;\n      this._subs = {};\n      Object.keys(current_subs).forEach(function (sub) {\n        _this._emitter.off(current_subs[sub], sub);\n      });\n    }\n  }]);\n\n  return SubscriptionTracker;\n}();\n\n},{}],12:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Var = function () {\n  function Var(group, name, /*optional*/value) {\n    _classCallCheck(this, Var);\n\n    this._group = group;\n    this._name = name;\n    this._value = value;\n    this._events = new _events2.default();\n  }\n\n  _createClass(Var, [{\n    key: \"get\",\n    value: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"set\",\n    value: function set(value, /*optional*/event) {\n      if (this._value === value) {\n        // Do nothing; the value hasn't changed\n        return;\n      }\n      var oldValue = this._value;\n      this._value = value;\n      // Alert JavaScript listeners that the value has changed\n      var evt = {};\n      if (event && (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\") {\n        for (var k in event) {\n          if (event.hasOwnProperty(k)) evt[k] = event[k];\n        }\n      }\n      evt.oldValue = oldValue;\n      evt.value = value;\n      this._events.trigger(\"change\", evt, this);\n\n      // TODO: Make this extensible, to let arbitrary back-ends know that\n      // something has changed\n      if (global.Shiny && global.Shiny.onInputChange) {\n        global.Shiny.onInputChange(\".clientValue-\" + (this._group.name !== null ? this._group.name + \"-\" : \"\") + this._name, typeof value === \"undefined\" ? null : value);\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._events.on(eventType, listener);\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._events.off(eventType, listener);\n    }\n  }]);\n\n  return Var;\n}();\n\nexports.default = Var;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./events\":1}]},{},[5])\n//# sourceMappingURL=crosstalk.js.map\n"
  },
  {
    "path": "images/05_correlation/lib/crosstalk-1.2.0/js/crosstalk.js",
    "content": "(function(){function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s}return e})()({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Events = function () {\n  function Events() {\n    _classCallCheck(this, Events);\n\n    this._types = {};\n    this._seq = 0;\n  }\n\n  _createClass(Events, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var subs = this._types[eventType];\n      if (!subs) {\n        subs = this._types[eventType] = {};\n      }\n      var sub = \"sub\" + this._seq++;\n      subs[sub] = listener;\n      return sub;\n    }\n\n    // Returns false if no match, or string for sub name if matched\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var subs = this._types[eventType];\n      if (typeof listener === \"function\") {\n        for (var key in subs) {\n          if (subs.hasOwnProperty(key)) {\n            if (subs[key] === listener) {\n              delete subs[key];\n              return key;\n            }\n          }\n        }\n        return false;\n      } else if (typeof listener === \"string\") {\n        if (subs && subs[listener]) {\n          delete subs[listener];\n          return listener;\n        }\n        return false;\n      } else {\n        throw new Error(\"Unexpected type for listener\");\n      }\n    }\n  }, {\n    key: \"trigger\",\n    value: function trigger(eventType, arg, thisObj) {\n      var subs = this._types[eventType];\n      for (var key in subs) {\n        if (subs.hasOwnProperty(key)) {\n          subs[key].call(thisObj, arg);\n        }\n      }\n    }\n  }]);\n\n  return Events;\n}();\n\nexports.default = Events;\n\n},{}],2:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.FilterHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _filterset = require(\"./filterset\");\n\nvar _filterset2 = _interopRequireDefault(_filterset);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction getFilterSet(group) {\n  var fsVar = group.var(\"filterset\");\n  var result = fsVar.get();\n  if (!result) {\n    result = new _filterset2.default();\n    fsVar.set(result);\n  }\n  return result;\n}\n\nvar id = 1;\nfunction nextId() {\n  return id++;\n}\n\n/**\n * Use this class to contribute to, and listen for changes to, the filter set\n * for the given group of widgets. Filter input controls should create one\n * `FilterHandle` and only call {@link FilterHandle#set}. Output widgets that\n * wish to displayed filtered data should create one `FilterHandle` and use\n * the {@link FilterHandle#filteredKeys} property and listen for change\n * events.\n *\n * If two (or more) `FilterHandle` instances in the same webpage share the\n * same group name, they will contribute to a single \"filter set\". Each\n * `FilterHandle` starts out with a `null` value, which means they take\n * nothing away from the set of data that should be shown. To make a\n * `FilterHandle` actually remove data from the filter set, set its value to\n * an array of keys which should be displayed. Crosstalk will aggregate the\n * various key arrays by finding their intersection; only keys that are\n * present in all non-null filter handles are considered part of the filter\n * set.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n *   null or undefined (or any other falsy value). This can be changed later\n *   via the {@link FilterHandle#setGroup} method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n *   the event object whenever an event is emitted.\n */\n\nvar FilterHandle = exports.FilterHandle = function () {\n  function FilterHandle(group, extraInfo) {\n    _classCallCheck(this, FilterHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The filterSet that we're tracking, if any. Can change over time.\n    this._filterSet = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._filterVar = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this._id = \"filter\" + nextId();\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this FilterHandle. If `set()` was\n   * previously called on this handle, switching groups will clear those keys\n   * from the old group's filter set. These keys will not be applied to the new\n   * group's filter set either. In other words, `setGroup()` effectively calls\n   * `clear()` before switching groups.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(FilterHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._filterVar) {\n        this._filterVar.off(\"change\", this._varOnChangeSub);\n        this.clear();\n        this._varOnChangeSub = null;\n        this._filterVar = null;\n        this._filterSet = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        group = (0, _group2.default)(group);\n        this._filterSet = getFilterSet(group);\n        this._filterVar = (0, _group2.default)(group).var(\"filter\");\n        var sub = this._filterVar.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Combine the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n    value: function _mergeExtraInfo(extraInfo) {\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Close the handle. This clears this handle's contribution to the filter set,\n     * and unsubscribes all event listeners.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.clear();\n      this.setGroup(null);\n    }\n\n    /**\n     * Clear this handle's contribution to the filter set.\n     *\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     * \n     * @fires FilterHandle#change\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.clear(this._id);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * Set this handle's contribution to the filter set. This array should consist\n     * of the keys of the rows that _should_ be displayed; any keys that are not\n     * present in the array will be considered _filtered out_. Note that multiple\n     * `FilterHandle` instances in the group may each contribute an array of keys,\n     * and only those keys that appear in _all_ of the arrays make it through the\n     * filter.\n     *\n     * @param {string[]} keys - Empty array, or array of keys. To clear the\n     *   filter, don't pass an empty array; instead, use the\n     *   {@link FilterHandle#clear} method.\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     * \n     * @fires FilterHandle#change\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(keys, extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.update(this._id, keys);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * @return {string[]|null} - Either: 1) an array of keys that made it through\n     *   all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n     *   is being applied (all data should be displayed).\n     */\n\n  }, {\n    key: \"on\",\n\n\n    /**\n     * Subscribe to events on this `FilterHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {FilterHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n     *   this subscription.\n     */\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancel event subscriptions created by {@link FilterHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|FilterHandle~listener} listener - Either the callback\n     *   function previously passed into {@link FilterHandle#on}, or the\n     *   string that was returned from {@link FilterHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n  }, {\n    key: \"_onChange\",\n    value: function _onChange(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * @callback FilterHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the filter set, or `null` if no filter set is active),\n     *   `oldValue` (the previous value of the filter set), and `sender` (the\n     *   `FilterHandle` instance that made the change).\n     */\n\n  }, {\n    key: \"filteredKeys\",\n    get: function get() {\n      return this._filterSet ? this._filterSet.value : null;\n    }\n  }]);\n\n  return FilterHandle;\n}();\n\n/**\n * @event FilterHandle#change\n * @type {object}\n * @property {object} value - The new value of the filter set, or `null`\n *   if no filter set is active.\n * @property {object} oldValue - The previous value of the filter set.\n * @property {FilterHandle} sender - The `FilterHandle` instance that\n *   changed the value.\n */\n\n},{\"./events\":1,\"./filterset\":3,\"./group\":4,\"./util\":11}],3:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _util = require(\"./util\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction naturalComparator(a, b) {\n  if (a === b) {\n    return 0;\n  } else if (a < b) {\n    return -1;\n  } else if (a > b) {\n    return 1;\n  }\n}\n\n/**\n * @private\n */\n\nvar FilterSet = function () {\n  function FilterSet() {\n    _classCallCheck(this, FilterSet);\n\n    this.reset();\n  }\n\n  _createClass(FilterSet, [{\n    key: \"reset\",\n    value: function reset() {\n      // Key: handle ID, Value: array of selected keys, or null\n      this._handles = {};\n      // Key: key string, Value: count of handles that include it\n      this._keys = {};\n      this._value = null;\n      this._activeHandles = 0;\n    }\n  }, {\n    key: \"update\",\n    value: function update(handleId, keys) {\n      if (keys !== null) {\n        keys = keys.slice(0); // clone before sorting\n        keys.sort(naturalComparator);\n      }\n\n      var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys),\n          added = _diffSortedLists.added,\n          removed = _diffSortedLists.removed;\n\n      this._handles[handleId] = keys;\n\n      for (var i = 0; i < added.length; i++) {\n        this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n      }\n      for (var _i = 0; _i < removed.length; _i++) {\n        this._keys[removed[_i]]--;\n      }\n\n      this._updateValue(keys);\n    }\n\n    /**\n     * @param {string[]} keys Sorted array of strings that indicate\n     * a superset of possible keys.\n     * @private\n     */\n\n  }, {\n    key: \"_updateValue\",\n    value: function _updateValue() {\n      var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys;\n\n      var handleCount = Object.keys(this._handles).length;\n      if (handleCount === 0) {\n        this._value = null;\n      } else {\n        this._value = [];\n        for (var i = 0; i < keys.length; i++) {\n          var count = this._keys[keys[i]];\n          if (count === handleCount) {\n            this._value.push(keys[i]);\n          }\n        }\n      }\n    }\n  }, {\n    key: \"clear\",\n    value: function clear(handleId) {\n      if (typeof this._handles[handleId] === \"undefined\") {\n        return;\n      }\n\n      var keys = this._handles[handleId];\n      if (!keys) {\n        keys = [];\n      }\n\n      for (var i = 0; i < keys.length; i++) {\n        this._keys[keys[i]]--;\n      }\n      delete this._handles[handleId];\n\n      this._updateValue();\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"_allKeys\",\n    get: function get() {\n      var allKeys = Object.keys(this._keys);\n      allKeys.sort(naturalComparator);\n      return allKeys;\n    }\n  }]);\n\n  return FilterSet;\n}();\n\nexports.default = FilterSet;\n\n},{\"./util\":11}],4:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.default = group;\n\nvar _var2 = require(\"./var\");\n\nvar _var3 = _interopRequireDefault(_var2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nvar groups = global.__crosstalk_groups;\n\nfunction group(groupName) {\n  if (groupName && typeof groupName === \"string\") {\n    if (!groups.hasOwnProperty(groupName)) {\n      groups[groupName] = new Group(groupName);\n    }\n    return groups[groupName];\n  } else if ((typeof groupName === \"undefined\" ? \"undefined\" : _typeof(groupName)) === \"object\" && groupName._vars && groupName.var) {\n    // Appears to already be a group object\n    return groupName;\n  } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === \"string\") {\n    return group(groupName[0]);\n  } else {\n    throw new Error(\"Invalid groupName argument\");\n  }\n}\n\nvar Group = function () {\n  function Group(name) {\n    _classCallCheck(this, Group);\n\n    this.name = name;\n    this._vars = {};\n  }\n\n  _createClass(Group, [{\n    key: \"var\",\n    value: function _var(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name);\n      return this._vars[name];\n    }\n  }, {\n    key: \"has\",\n    value: function has(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      return this._vars.hasOwnProperty(name);\n    }\n  }]);\n\n  return Group;\n}();\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./var\":12}],5:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _selection = require(\"./selection\");\n\nvar _filter = require(\"./filter\");\n\nvar _input = require(\"./input\");\n\nrequire(\"./input_selectize\");\n\nrequire(\"./input_checkboxgroup\");\n\nrequire(\"./input_slider\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar defaultGroup = (0, _group2.default)(\"default\");\n\nfunction var_(name) {\n  return defaultGroup.var(name);\n}\n\nfunction has(name) {\n  return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n  global.Shiny.addCustomMessageHandler(\"update-client-value\", function (message) {\n    if (typeof message.group === \"string\") {\n      (0, _group2.default)(message.group).var(message.name).set(message.value);\n    } else {\n      var_(message.name).set(message.value);\n    }\n  });\n}\n\nvar crosstalk = {\n  group: _group2.default,\n  var: var_,\n  has: has,\n  SelectionHandle: _selection.SelectionHandle,\n  FilterHandle: _filter.FilterHandle,\n  bind: _input.bind\n};\n\n/**\n * @namespace crosstalk\n */\nexports.default = crosstalk;\n\nglobal.crosstalk = crosstalk;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./group\":4,\"./input\":6,\"./input_checkboxgroup\":7,\"./input_selectize\":8,\"./input_slider\":9,\"./selection\":10}],6:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.register = register;\nexports.bind = bind;\nvar $ = global.jQuery;\n\nvar bindings = {};\n\nfunction register(reg) {\n  bindings[reg.className] = reg;\n  if (global.document && global.document.readyState !== \"complete\") {\n    $(function () {\n      bind();\n    });\n  } else if (global.document) {\n    setTimeout(bind, 100);\n  }\n}\n\nfunction bind() {\n  Object.keys(bindings).forEach(function (className) {\n    var binding = bindings[className];\n    $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function (i, el) {\n      bindInstance(binding, el);\n    });\n  });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n  return val.replace(/([!\"#$%&'()*+,./:;<=>?@[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n  var $el = $(el);\n  Object.keys(bindings).forEach(function (className) {\n    if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n      var binding = bindings[className];\n      bindInstance(binding, el);\n    }\n  });\n}\n\nfunction bindInstance(binding, el) {\n  var jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n  var data = JSON.parse(jsonEl[0].innerText);\n\n  var instance = binding.factory(el, data);\n  $(el).data(\"crosstalk-instance\", instance);\n  $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n  var inputBinding = new global.Shiny.InputBinding();\n  var _$ = global.jQuery;\n  _$.extend(inputBinding, {\n    find: function find(scope) {\n      return _$(scope).find(\".crosstalk-input\");\n    },\n    initialize: function initialize(el) {\n      if (!_$(el).hasClass(\"crosstalk-input-bound\")) {\n        bindEl(el);\n      }\n    },\n    getId: function getId(el) {\n      return el.id;\n    },\n    getValue: function getValue(el) {},\n    setValue: function setValue(el, value) {},\n    receiveMessage: function receiveMessage(el, data) {},\n    subscribe: function subscribe(el, callback) {\n      _$(el).data(\"crosstalk-instance\").resume();\n    },\n    unsubscribe: function unsubscribe(el) {\n      _$(el).data(\"crosstalk-instance\").suspend();\n    }\n  });\n  global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{}],7:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-checkboxgroup\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    var $el = $(el);\n    $el.on(\"change\", \"input[type='checkbox']\", function () {\n      var checked = $el.find(\"input[type='checkbox']:checked\");\n      if (checked.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        var keys = {};\n        checked.each(function () {\n          data.map[this.value].forEach(function (key) {\n            keys[key] = true;\n          });\n        });\n        var keyArray = Object.keys(keys);\n        keyArray.sort();\n        lastKnownKeys = keyArray;\n        ctHandle.set(keyArray);\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],8:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-select\",\n\n  factory: function factory(el, data) {\n    /*\n     * items: {value: [...], label: [...]}\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n\n    var first = [{ value: \"\", label: \"(All)\" }];\n    var items = util.dataframeToD3(data.items);\n    var opts = {\n      options: first.concat(items),\n      valueField: \"value\",\n      labelField: \"label\",\n      searchField: \"label\"\n    };\n\n    var select = $(el).find(\"select\")[0];\n\n    var selectize = $(select).selectize(opts)[0].selectize;\n\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    selectize.on(\"change\", function () {\n      if (selectize.items.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        var keys = {};\n        selectize.items.forEach(function (group) {\n          data.map[group].forEach(function (key) {\n            keys[key] = true;\n          });\n        });\n        var keyArray = Object.keys(keys);\n        keyArray.sort();\n        lastKnownKeys = keyArray;\n        ctHandle.set(keyArray);\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6,\"./util\":11}],9:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\nvar strftime = global.strftime;\n\ninput.register({\n  className: \"crosstalk-input-slider\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var opts = {};\n    var $el = $(el).find(\"input\");\n    var dataType = $el.data(\"data-type\");\n    var timeFormat = $el.data(\"time-format\");\n    var round = $el.data(\"round\");\n    var timeFormatter = void 0;\n\n    // Set up formatting functions\n    if (dataType === \"date\") {\n      timeFormatter = strftime.utc();\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"datetime\") {\n      var timezone = $el.data(\"timezone\");\n      if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime;\n\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"number\") {\n      if (typeof round !== \"undefined\") opts.prettify = function (num) {\n        var factor = Math.pow(10, round);\n        return Math.round(num * factor) / factor;\n      };\n    }\n\n    $el.ionRangeSlider(opts);\n\n    function getValue() {\n      var result = $el.data(\"ionRangeSlider\").result;\n\n      // Function for converting numeric value from slider to appropriate type.\n      var convert = void 0;\n      var dataType = $el.data(\"data-type\");\n      if (dataType === \"date\") {\n        convert = function convert(val) {\n          return formatDateUTC(new Date(+val));\n        };\n      } else if (dataType === \"datetime\") {\n        convert = function convert(val) {\n          // Convert ms to s\n          return +val / 1000;\n        };\n      } else {\n        convert = function convert(val) {\n          return +val;\n        };\n      }\n\n      if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n        return [convert(result.from), convert(result.to)];\n      } else {\n        return convert(result.from);\n      }\n    }\n\n    var lastKnownKeys = null;\n\n    $el.on(\"change.crosstalkSliderInput\", function (event) {\n      if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n        var _getValue = getValue(),\n            _getValue2 = _slicedToArray(_getValue, 2),\n            from = _getValue2[0],\n            to = _getValue2[1];\n\n        var keys = [];\n        for (var i = 0; i < data.values.length; i++) {\n          var val = data.values[i];\n          if (val >= from && val <= to) {\n            keys.push(data.keys[i]);\n          }\n        }\n        keys.sort();\n        ctHandle.set(keys);\n        lastKnownKeys = keys;\n      }\n    });\n\n    // let $el = $(el);\n    // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n    //   let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n    //   if (checked.length === 0) {\n    //     ctHandle.clear();\n    //   } else {\n    //     let keys = {};\n    //     checked.each(function() {\n    //       data.map[this.value].forEach(function(key) {\n    //         keys[key] = true;\n    //       });\n    //     });\n    //     let keyArray = Object.keys(keys);\n    //     keyArray.sort();\n    //     ctHandle.set(keyArray);\n    //   }\n    // });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n  var str = n.toString();\n  while (str.length < digits) {\n    str = \"0\" + str;\n  }return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n  if (date instanceof Date) {\n    return date.getUTCFullYear() + \"-\" + padZeros(date.getUTCMonth() + 1, 2) + \"-\" + padZeros(date.getUTCDate(), 2);\n  } else {\n    return null;\n  }\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],10:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.SelectionHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n/**\n * Use this class to read and write (and listen for changes to) the selection\n * for a Crosstalk group. This is intended to be used for linked brushing.\n *\n * If two (or more) `SelectionHandle` instances in the same webpage share the\n * same group name, they will share the same state. Setting the selection using\n * one `SelectionHandle` instance will result in the `value` property instantly\n * changing across the others, and `\"change\"` event listeners on all instances\n * (including the one that initiated the sending) will fire.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n *   null or undefined (or any other falsy value). This can be changed later\n *   via the [SelectionHandle#setGroup](#setGroup) method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n *   the event object whenever an event is emitted.\n */\nvar SelectionHandle = exports.SelectionHandle = function () {\n  function SelectionHandle() {\n    var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n    var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n\n    _classCallCheck(this, SelectionHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._var = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this SelectionHandle. The group\n   * being switched away from (if any) will not have its selection value\n   * modified as a result of calling `setGroup`, even if this handle was the\n   * most recent handle to set the selection of the group.\n   *\n   * The group being switched to (if any) will also not have its selection value\n   * modified as a result of calling `setGroup`. If you want to set the\n   * selection value of the new group, call `set` explicitly.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(SelectionHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._var) {\n        this._var.off(\"change\", this._varOnChangeSub);\n        this._var = null;\n        this._varOnChangeSub = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        this._var = (0, _group2.default)(group).var(\"selection\");\n        var sub = this._var.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Retrieves the current selection for the group represented by this\n     * `SelectionHandle`.\n     *\n     * - If no selection is active, then this value will be falsy.\n     * - If a selection is active, but no data points are selected, then this\n     *   value will be an empty array.\n     * - If a selection is active, and data points are selected, then the keys\n     *   of the selected data points will be present in the array.\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n\n\n    /**\n     * Combines the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n    value: function _mergeExtraInfo(extraInfo) {\n      // Important incidental effect: shallow clone is returned\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n     *   {@link SelectionHandle#value}).\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(selectedKeys, extraInfo) {\n      if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any that were passed\n     *   into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Subscribes to events on this `SelectionHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {SelectionHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n     *   this subscription.\n     */\n\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancels event subscriptions created by {@link SelectionHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|SelectionHandle~listener} listener - Either the callback\n     *   function previously passed into {@link SelectionHandle#on}, or the\n     *   string that was returned from {@link SelectionHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n\n    /**\n     * Shuts down the `SelectionHandle` object.\n     *\n     * Removes all event listeners that were added through this handle.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.setGroup(null);\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._var ? this._var.get() : null;\n    }\n  }]);\n\n  return SelectionHandle;\n}();\n\n/**\n * @callback SelectionHandle~listener\n * @param {Object} event - An object containing details of the event. For\n *   `\"change\"` events, this includes the properties `value` (the new\n *   value of the selection, or `undefined` if no selection is active),\n *   `oldValue` (the previous value of the selection), and `sender` (the\n *   `SelectionHandle` instance that made the change).\n */\n\n/**\n * @event SelectionHandle#change\n * @type {object}\n * @property {object} value - The new value of the selection, or `undefined`\n *   if no selection is active.\n * @property {object} oldValue - The previous value of the selection.\n * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n *   changed the value.\n */\n\n},{\"./events\":1,\"./group\":4,\"./util\":11}],11:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.extend = extend;\nexports.checkSorted = checkSorted;\nexports.diffSortedLists = diffSortedLists;\nexports.dataframeToD3 = dataframeToD3;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction extend(target) {\n  for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n    sources[_key - 1] = arguments[_key];\n  }\n\n  for (var i = 0; i < sources.length; i++) {\n    var src = sources[i];\n    if (typeof src === \"undefined\" || src === null) continue;\n\n    for (var key in src) {\n      if (src.hasOwnProperty(key)) {\n        target[key] = src[key];\n      }\n    }\n  }\n  return target;\n}\n\nfunction checkSorted(list) {\n  for (var i = 1; i < list.length; i++) {\n    if (list[i] <= list[i - 1]) {\n      throw new Error(\"List is not sorted or contains duplicate\");\n    }\n  }\n}\n\nfunction diffSortedLists(a, b) {\n  var i_a = 0;\n  var i_b = 0;\n\n  if (!a) a = [];\n  if (!b) b = [];\n\n  var a_only = [];\n  var b_only = [];\n\n  checkSorted(a);\n  checkSorted(b);\n\n  while (i_a < a.length && i_b < b.length) {\n    if (a[i_a] === b[i_b]) {\n      i_a++;\n      i_b++;\n    } else if (a[i_a] < b[i_b]) {\n      a_only.push(a[i_a++]);\n    } else {\n      b_only.push(b[i_b++]);\n    }\n  }\n\n  if (i_a < a.length) a_only = a_only.concat(a.slice(i_a));\n  if (i_b < b.length) b_only = b_only.concat(b.slice(i_b));\n  return {\n    removed: a_only,\n    added: b_only\n  };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nfunction dataframeToD3(df) {\n  var names = [];\n  var length = void 0;\n  for (var name in df) {\n    if (df.hasOwnProperty(name)) names.push(name);\n    if (_typeof(df[name]) !== \"object\" || typeof df[name].length === \"undefined\") {\n      throw new Error(\"All fields must be arrays\");\n    } else if (typeof length !== \"undefined\" && length !== df[name].length) {\n      throw new Error(\"All fields must be arrays of the same length\");\n    }\n    length = df[name].length;\n  }\n  var results = [];\n  var item = void 0;\n  for (var row = 0; row < length; row++) {\n    item = {};\n    for (var col = 0; col < names.length; col++) {\n      item[names[col]] = df[names[col]][row];\n    }\n    results.push(item);\n  }\n  return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\n\nvar SubscriptionTracker = exports.SubscriptionTracker = function () {\n  function SubscriptionTracker(emitter) {\n    _classCallCheck(this, SubscriptionTracker);\n\n    this._emitter = emitter;\n    this._subs = {};\n  }\n\n  _createClass(SubscriptionTracker, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var sub = this._emitter.on(eventType, listener);\n      this._subs[sub] = eventType;\n      return sub;\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var sub = this._emitter.off(eventType, listener);\n      if (sub) {\n        delete this._subs[sub];\n      }\n      return sub;\n    }\n  }, {\n    key: \"removeAllListeners\",\n    value: function removeAllListeners() {\n      var _this = this;\n\n      var current_subs = this._subs;\n      this._subs = {};\n      Object.keys(current_subs).forEach(function (sub) {\n        _this._emitter.off(current_subs[sub], sub);\n      });\n    }\n  }]);\n\n  return SubscriptionTracker;\n}();\n\n},{}],12:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Var = function () {\n  function Var(group, name, /*optional*/value) {\n    _classCallCheck(this, Var);\n\n    this._group = group;\n    this._name = name;\n    this._value = value;\n    this._events = new _events2.default();\n  }\n\n  _createClass(Var, [{\n    key: \"get\",\n    value: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"set\",\n    value: function set(value, /*optional*/event) {\n      if (this._value === value) {\n        // Do nothing; the value hasn't changed\n        return;\n      }\n      var oldValue = this._value;\n      this._value = value;\n      // Alert JavaScript listeners that the value has changed\n      var evt = {};\n      if (event && (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\") {\n        for (var k in event) {\n          if (event.hasOwnProperty(k)) evt[k] = event[k];\n        }\n      }\n      evt.oldValue = oldValue;\n      evt.value = value;\n      this._events.trigger(\"change\", evt, this);\n\n      // TODO: Make this extensible, to let arbitrary back-ends know that\n      // something has changed\n      if (global.Shiny && global.Shiny.onInputChange) {\n        global.Shiny.onInputChange(\".clientValue-\" + (this._group.name !== null ? this._group.name + \"-\" : \"\") + this._name, typeof value === \"undefined\" ? null : value);\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._events.on(eventType, listener);\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._events.off(eventType, listener);\n    }\n  }]);\n\n  return Var;\n}();\n\nexports.default = Var;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./events\":1}]},{},[5])\n//# sourceMappingURL=crosstalk.js.map\n"
  },
  {
    "path": "images/05_correlation/lib/crosstalk-1.2.0/scss/crosstalk.scss",
    "content": "/* Adjust margins outwards, so column contents line up with the edges of the\n   parent of container-fluid. */\n.container-fluid.crosstalk-bscols {\n  margin-left: -30px;\n  margin-right: -30px;\n  white-space: normal;\n}\n\n/* But don't adjust the margins outwards if we're directly under the body,\n   i.e. we were the top-level of something at the console. */\nbody > .container-fluid.crosstalk-bscols {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n  display: inline-block;\n  padding-right: 12px;\n  vertical-align: top;\n}\n\n@media only screen and (max-width:480px) {\n  .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n    display: block;\n    padding-right: inherit;\n  }\n}\n\n/* Relevant BS3 styles to make filter_checkbox() look reasonable without Bootstrap */\n.crosstalk-input {\n  margin-bottom: 15px; /* a la .form-group */\n  .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  input[type=\"checkbox\"] {\n    margin: 4px 0 0;\n    margin-top: 1px;\n    line-height: normal;\n  }\n  .checkbox {\n    position: relative;\n    display: block;\n    margin-top: 10px;\n    margin-bottom: 10px;\n  }\n  .checkbox > label{\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: 400;\n    cursor: pointer;\n  }\n  .checkbox input[type=\"checkbox\"],\n  .checkbox-inline input[type=\"checkbox\"] {\n    position: absolute;\n    margin-top: 2px;\n    margin-left: -20px;\n  }\n  .checkbox + .checkbox {\n    margin-top: -5px;\n  }\n  .checkbox-inline {\n    position: relative;\n    display: inline-block;\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: 400;\n    vertical-align: middle;\n    cursor: pointer;\n  }\n  .checkbox-inline + .checkbox-inline {\n    margin-top: 0;\n    margin-left: 10px;\n  }\n}\n"
  },
  {
    "path": "images/05_correlation/lib/htmlwidgets-1.3/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = eval(\"(\" + task + \")\");\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n  // Wait until after the document has loaded to render the widgets.\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      window.HTMLWidgets.staticRender();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        window.HTMLWidgets.staticRender();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = eval(\"(\" + o[part] + \")\");\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "images/05_correlation/lib/htmlwidgets-1.5.4/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = tryEval(task);\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  // Attempt eval() both with and without enclosing in parentheses.\n  // Note that enclosing coerces a function declaration into\n  // an expression that eval() can parse\n  // (otherwise, a SyntaxError is thrown)\n  function tryEval(code) {\n    var result = null;\n    try {\n      result = eval(\"(\" + code + \")\");\n    } catch(error) {\n      if (!(error instanceof SyntaxError)) {\n        throw error;\n      }\n      try {\n        result = eval(code);\n      } catch(e) {\n        if (e instanceof SyntaxError) {\n          throw error;\n        } else {\n          throw e;\n        }\n      }\n    }\n    return result;\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n\n  function has_jQuery3() {\n    if (!window.jQuery) {\n      return false;\n    }\n    var $version = window.jQuery.fn.jquery;\n    var $major_version = parseInt($version.split(\".\")[0]);\n    return $major_version >= 3;\n  }\n\n  /*\n  / Shiny 1.4 bumped jQuery from 1.x to 3.x which means jQuery's\n  / on-ready handler (i.e., $(fn)) is now asyncronous (i.e., it now\n  / really means $(setTimeout(fn)).\n  / https://jquery.com/upgrade-guide/3.0/#breaking-change-document-ready-handlers-are-now-asynchronous\n  /\n  / Since Shiny uses $() to schedule initShiny, shiny>=1.4 calls initShiny\n  / one tick later than it did before, which means staticRender() is\n  / called renderValue() earlier than (advanced) widget authors might be expecting.\n  / https://github.com/rstudio/shiny/issues/2630\n  /\n  / For a concrete example, leaflet has some methods (e.g., updateBounds)\n  / which reference Shiny methods registered in initShiny (e.g., setInputValue).\n  / Since leaflet is privy to this life-cycle, it knows to use setTimeout() to\n  / delay execution of those methods (until Shiny methods are ready)\n  / https://github.com/rstudio/leaflet/blob/18ec981/javascript/src/index.js#L266-L268\n  /\n  / Ideally widget authors wouldn't need to use this setTimeout() hack that\n  / leaflet uses to call Shiny methods on a staticRender(). In the long run,\n  / the logic initShiny should be broken up so that method registration happens\n  / right away, but binding happens later.\n  */\n  function maybeStaticRenderLater() {\n    if (shinyMode && has_jQuery3()) {\n      window.jQuery(window.HTMLWidgets.staticRender);\n    } else {\n      window.HTMLWidgets.staticRender();\n    }\n  }\n\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      maybeStaticRenderLater();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        maybeStaticRenderLater();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = tryEval(o[part]);\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "images/05_correlation/lib/jquery-1.11.3/jquery-AUTHORS.txt",
    "content": "Authors ordered by first contribution.\n\nJohn Resig <jeresig@gmail.com>\nGilles van den Hoven <gilles0181@gmail.com>\nMichael Geary <mike@geary.com>\nStefan Petre <stefan.petre@gmail.com>\nYehuda Katz <wycats@gmail.com>\nCorey Jewett <cj@syntheticplayground.com>\nKlaus Hartl <klaus.hartl@googlemail.com>\nFranck Marcia <franck.marcia@gmail.com>\nJörn Zaefferer <joern.zaefferer@gmail.com>\nPaul Bakaus <paul.bakaus@googlemail.com>\nBrandon Aaron <brandon.aaron@gmail.com>\nMike Alsup <malsup@gmail.com>\nDave Methvin <dave.methvin@gmail.com>\nEd Engelhardt <edengelhardt@gmail.com>\nSean Catchpole <littlecooldude@gmail.com>\nPaul Mclanahan <pmclanahan@gmail.com>\nDavid Serduke <davidserduke@gmail.com>\nRichard D. Worth <rdworth@gmail.com>\nScott González <scott.gonzalez@gmail.com>\nAriel Flesler <aflesler@gmail.com>\nJon Evans <jon@springyweb.com>\nTJ Holowaychuk <tj@vision-media.ca>\nMichael Bensoussan <mickey@seesmic.com>\nRobert Katić <robert.katic@gmail.com>\nLouis-Rémi Babé <lrbabe@gmail.com>\nEarle Castledine <mrspeaker@gmail.com>\nDamian Janowski <damian.janowski@gmail.com>\nRich Dougherty <rich@rd.gen.nz>\nKim Dalsgaard <kim@kimdalsgaard.com>\nAndrea Giammarchi <andrea.giammarchi@gmail.com>\nMark Gibson <jollytoad@gmail.com>\nKarl Swedberg <kswedberg@gmail.com>\nJustin Meyer <justinbmeyer@gmail.com>\nBen Alman <cowboy@rj3.net>\nJames Padolsey <cla@padolsey.net>\nDavid Petersen <public@petersendidit.com>\nBatiste Bieler <batiste@gmail.com>\nAlexander Farkas <info@corrupt-system.de>\nRick Waldron <waldron.rick@gmail.com>\nFilipe Fortes <filipe@fortes.com>\nNeeraj Singh <neerajdotname@gmail.com>\nPaul Irish <paul.irish@gmail.com>\nIraê Carvalho <irae@irae.pro.br>\nMatt Curry <matt@pseudocoder.com>\nMichael Monteleone <michael@michaelmonteleone.net>\nNoah Sloan <noah.sloan@gmail.com>\nTom Viner <github@viner.tv>\nDouglas Neiner <doug@pixelgraphics.us>\nAdam J. Sontag <ajpiano@ajpiano.com>\nDave Reed <dareed@microsoft.com>\nRalph Whitbeck <ralph.whitbeck@gmail.com>\nCarl Fürstenberg <azatoth@gmail.com>\nJacob Wright <jacwright@gmail.com>\nJ. Ryan Stinnett <jryans@gmail.com>\nunknown <Igen005@.upcorp.ad.uprr.com>\ntemp01 <temp01irc@gmail.com>\nHeungsub Lee <h@subl.ee>\nColin Snover <colin@alpha.zetafleet.com>\nRyan W Tenney <ryan@10e.us>\nPinhook <contact@pinhooklabs.com>\nRon Otten <r.j.g.otten@gmail.com>\nJephte Clain <Jephte.Clain@univ-reunion.fr>\nAnton Matzneller <obhvsbypqghgc@gmail.com>\nAlex Sexton <AlexSexton@gmail.com>\nDan Heberden <danheberden@gmail.com>\nHenri Wiechers <hwiechers@gmail.com>\nRussell Holbrook <russell.holbrook@patch.com>\nJulian Aubourg <aubourg.julian@gmail.com>\nGianni Alessandro Chiappetta <gianni@runlevel6.org>\nScott Jehl <scott@scottjehl.com>\nJames Burke <jrburke@gmail.com>\nJonas Pfenniger <jonas@pfenniger.name>\nXavi Ramirez <xavi.rmz@gmail.com>\nJared Grippe <jared@deadlyicon.com>\nSylvester Keil <sylvester@keil.or.at>\nBrandon Sterne <bsterne@mozilla.com>\nMathias Bynens <mathias@qiwi.be>\nTimmy Willison <timmywillisn@gmail.com>\nCorey Frang <gnarf@gnarf.net>\nDigitalxero <digitalxero>\nAnton Kovalyov <anton@kovalyov.net>\nDavid Murdoch <musicisair@yahoo.com>\nJosh Varner <josh.varner@gmail.com>\nCharles McNulty <cmcnulty@kznf.com>\nJordan Boesch <jboesch26@gmail.com>\nJess Thrysoee <jess@thrysoee.dk>\nMichael Murray <m@murz.net>\nLee Carpenter <elcarpie@gmail.com>\nAlexis Abril <me@alexisabril.com>\nRob Morgan <robbym@gmail.com>\nJohn Firebaugh <john_firebaugh@bigfix.com>\nSam Bisbee <sam@sbisbee.com>\nGilmore Davidson <gilmoreorless@gmail.com>\nBrian Brennan <me@brianlovesthings.com>\nXavier Montillet <xavierm02.net@gmail.com>\nDaniel Pihlstrom <sciolist.se@gmail.com>\nSahab Yazdani <sahab.yazdani+github@gmail.com>\navaly <github-com@agachi.name>\nScott Hughes <hi@scott-hughes.me>\nMike Sherov <mike.sherov@gmail.com>\nGreg Hazel <ghazel@gmail.com>\nSchalk Neethling <schalk@ossreleasefeed.com>\nDenis Knauf <Denis.Knauf@gmail.com>\nTimo Tijhof <krinklemail@gmail.com>\nSteen Nielsen <swinedk@gmail.com>\nAnton Ryzhov <anton@ryzhov.me>\nShi Chuan <shichuanr@gmail.com>\nBerker Peksag <berker.peksag@gmail.com>\nToby Brain <tobyb@freshview.com>\nMatt Mueller <mattmuelle@gmail.com>\nJustin <drakefjustin@gmail.com>\nDaniel Herman <daniel.c.herman@gmail.com>\nOleg Gaidarenko <markelog@gmail.com>\nRichard Gibson <richard.gibson@gmail.com>\nRafaël Blais Masson <rafbmasson@gmail.com>\ncmc3cn <59194618@qq.com>\nJoe Presbrey <presbrey@gmail.com>\nSindre Sorhus <sindresorhus@gmail.com>\nArne de Bree <arne@bukkie.nl>\nVladislav Zarakovsky <vlad.zar@gmail.com>\nAndrew E Monat <amonat@gmail.com>\nOskari <admin@o-programs.com>\nJoao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>\ntsinha <tsinha@Anthonys-MacBook-Pro.local>\nMatt Farmer <matt@frmr.me>\nTrey Hunner <treyhunner@gmail.com>\nJason Moon <jmoon@socialcast.com>\nJeffery To <jeffery.to@gmail.com>\nKris Borchers <kris.borchers@gmail.com>\nVladimir Zhuravlev <private.face@gmail.com>\nJacob Thornton <jacobthornton@gmail.com>\nChad Killingsworth <chadkillingsworth@missouristate.edu>\nNowres Rafid <nowres.rafed@gmail.com>\nDavid Benjamin <davidben@mit.edu>\nUri Gilad <antishok@gmail.com>\nChris Faulkner <thefaulkner@gmail.com>\nElijah Manor <elijah.manor@gmail.com>\nDaniel Chatfield <chatfielddaniel@gmail.com>\nNikita Govorov <nikita.govorov@gmail.com>\nWesley Walser <wwalser@atlassian.com>\nMike Pennisi <mike@mikepennisi.com>\nMarkus Staab <markus.staab@redaxo.de>\nDave Riddle <david@joyvuu.com>\nCallum Macrae <callum@lynxphp.com>\nBenjamin Truyman <bentruyman@gmail.com>\nJames Huston <james@jameshuston.net>\nErick Ruiz de Chávez <erickrdch@gmail.com>\nDavid Bonner <dbonner@cogolabs.com>\nAkintayo Akinwunmi <aakinwunmi@judge.com>\nMORGAN <morgan@morgangraphics.com>\nIsmail Khair <ismail.khair@gmail.com>\nCarl Danley <carldanley@gmail.com>\nMike Petrovich <michael.c.petrovich@gmail.com>\nGreg Lavallee <greglavallee@wapolabs.com>\nDaniel Gálvez <dgalvez@editablething.com>\nSai Lung Wong <sai.wong@huffingtonpost.com>\nTom H Fuertes <TomFuertes@gmail.com>\nRoland Eckl <eckl.roland@googlemail.com>\nJay Merrifield <fracmak@gmail.com>\nAllen J Schmidt Jr <cobrasoft@gmail.com>\nJonathan Sampson <jjdsampson@gmail.com>\nMarcel Greter <marcel.greter@ocbnet.ch>\nMatthias Jäggli <matthias.jaeggli@gmail.com>\nDavid Fox <dfoxinator@gmail.com>\nYiming He <yiminghe@gmail.com>\nDevin Cooper <cooper.semantics@gmail.com>\nPaul Ramos <paul.b.ramos@gmail.com>\nRod Vagg <rod@vagg.org>\nBennett Sorbo <bsorbo@gmail.com>\nSebastian Burkhard <sebi.burkhard@gmail.com>\nnanto <nanto@moon.email.ne.jp>\nDanil Somsikov <danilasomsikov@gmail.com>\nRyunosuke SATO <tricknotes.rs@gmail.com>\nJean Boussier <jean.boussier@gmail.com>\nAdam Coulombe <me@adam.co>\nAndrew Plummer <plummer.andrew@gmail.com>\nMark Raddatz <mraddatz@gmail.com>\nDmitry Gusev <dmitry.gusev@gmail.com>\nMichał Gołębiowski <m.goleb@gmail.com>\nNguyen Phuc Lam <ruado1987@gmail.com>\nTom H Fuertes <tomfuertes@gmail.com>\nBrandon Johnson <bjohn465+github@gmail.com>\nJason Bedard <jason+jquery@jbedard.ca>\nKyle Robinson Young <kyle@dontkry.com>\nRenato Oliveira dos Santos <ros3@cin.ufpe.br>\nChris Talkington <chris@talkingtontech.com>\nEddie Monge <eddie@eddiemonge.com>\nTerry Jones <terry@jon.es>\nJason Merino <jasonmerino@gmail.com>\nJeremy Dunck <jdunck@gmail.com>\nChris Price <price.c@gmail.com>\nAmey Sakhadeo <me@ameyms.com>\nAnthony Ryan <anthonyryan1@gmail.com>\nDominik D. Geyer <dominik.geyer@gmail.com>\nGeorge Kats <katsgeorgeek@gmail.com>\nLihan Li <frankieteardrop@gmail.com>\nRonny Springer <springer.ronny@gmail.com>\nMarian Sollmann <marian.sollmann@cargomedia.ch>\nCorey Frang <gnarf37@gmail.com>\nChris Antaki <ChrisAntaki@gmail.com>\nNoah Hamann <njhamann@gmail.com>\nDavid Hong <d.hong@me.com>\nJakob Stoeck <jakob@pokermania.de>\nChristopher Jones <christopherjonesqed@gmail.com>\nForbes Lindesay <forbes@lindesay.co.uk>\nJohn Paul <john@johnkpaul.com>\nS. Andrew Sheppard <andrew@wq.io>\nLeonardo Balter <leonardo.balter@gmail.com>\nRoman Reiß <me@silverwind.io>\nBenjy Cui <benjytrys@gmail.com>\nRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>\nJohn Hoven <hovenj@gmail.com>\nChristian Kosmowski <ksmwsk@gmail.com>\nLiang Peng <poppinlp@gmail.com>\nTJ VanToll <tj.vantoll@gmail.com>\n"
  },
  {
    "path": "images/05_correlation/lib/jquery-1.11.3/jquery.js",
    "content": "/*!\n * jQuery JavaScript Library v1.11.3\n * http://jquery.com/\n *\n * Includes Sizzle.js\n * http://sizzlejs.com/\n *\n * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2015-04-28T16:19Z\n */\n\n(function( global, factory ) {\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\t\t// For CommonJS and CommonJS-like environments where a proper window is present,\n\t\t// execute the factory and get jQuery\n\t\t// For environments that do not inherently posses a window with a document\n\t\t// (such as Node.js), expose a jQuery-making factory as module.exports\n\t\t// This accentuates the need for the creation of a real window\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n}(typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Can't do this because several apps including ASP.NET trace\n// the stack via arguments.caller.callee and Firefox dies if\n// you try to trace through \"use strict\" call chains. (#13335)\n// Support: Firefox 18+\n//\n\nvar deletedIds = [];\n\nvar slice = deletedIds.slice;\n\nvar concat = deletedIds.concat;\n\nvar push = deletedIds.push;\n\nvar indexOf = deletedIds.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar support = {};\n\n\n\nvar\n\tversion = \"1.11.3\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t},\n\n\t// Support: Android<4.1, IE<9\n\t// Make sure we trim BOM and NBSP\n\trtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g,\n\n\t// Matches dashed string for camelizing\n\trmsPrefix = /^-ms-/,\n\trdashAlpha = /-([\\da-z])/gi,\n\n\t// Used by jQuery.camelCase as callback to replace()\n\tfcamelCase = function( all, letter ) {\n\t\treturn letter.toUpperCase();\n\t};\n\njQuery.fn = jQuery.prototype = {\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// Start with an empty selector\n\tselector: \"\",\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\t\treturn num != null ?\n\n\t\t\t// Return just the one element from the set\n\t\t\t( num < 0 ? this[ num + this.length ] : this[ num ] ) :\n\n\t\t\t// Return all the elements in a clean array\n\t\t\tslice.call( this );\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\t\tret.context = this.context;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\t// (You can seed the arguments with an array of args, but this is\n\t// only used internally.)\n\teach: function( callback, args ) {\n\t\treturn jQuery.each( this, callback, args );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map(this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t}));\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor(null);\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: deletedIds.sort,\n\tsplice: deletedIds.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar src, copyIsArray, copy, name, options, clone,\n\t\ttarget = arguments[0] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !jQuery.isFunction(target) ) {\n\t\ttarget = {};\n\t}\n\n\t// extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\t\t// Only deal with non-null/undefined values\n\t\tif ( (options = arguments[ i ]) != null ) {\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tsrc = target[ name ];\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {\n\t\t\t\t\tif ( copyIsArray ) {\n\t\t\t\t\t\tcopyIsArray = false;\n\t\t\t\t\t\tclone = src && jQuery.isArray(src) ? src : [];\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src && jQuery.isPlainObject(src) ? src : {};\n\t\t\t\t\t}\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend({\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\t// See test/unit/core.js for details concerning isFunction.\n\t// Since version 1.3, DOM methods and functions like alert\n\t// aren't supported. They return false on IE (#2968).\n\tisFunction: function( obj ) {\n\t\treturn jQuery.type(obj) === \"function\";\n\t},\n\n\tisArray: Array.isArray || function( obj ) {\n\t\treturn jQuery.type(obj) === \"array\";\n\t},\n\n\tisWindow: function( obj ) {\n\t\t/* jshint eqeqeq: false */\n\t\treturn obj != null && obj == obj.window;\n\t},\n\n\tisNumeric: function( obj ) {\n\t\t// parseFloat NaNs numeric-cast false positives (null|true|false|\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t// adding 1 corrects loss of precision from parseFloat (#15100)\n\t\treturn !jQuery.isArray( obj ) && (obj - parseFloat( obj ) + 1) >= 0;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\tisPlainObject: function( obj ) {\n\t\tvar key;\n\n\t\t// Must be an Object.\n\t\t// Because of IE, we also have to check the presence of the constructor property.\n\t\t// Make sure that DOM nodes and window objects don't pass through, as well\n\t\tif ( !obj || jQuery.type(obj) !== \"object\" || obj.nodeType || jQuery.isWindow( obj ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\ttry {\n\t\t\t// Not own constructor property must be Object\n\t\t\tif ( obj.constructor &&\n\t\t\t\t!hasOwn.call(obj, \"constructor\") &&\n\t\t\t\t!hasOwn.call(obj.constructor.prototype, \"isPrototypeOf\") ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\t// IE8,9 Will throw exceptions on certain host objects #9897\n\t\t\treturn false;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Handle iteration over inherited properties before own properties.\n\t\tif ( support.ownLast ) {\n\t\t\tfor ( key in obj ) {\n\t\t\t\treturn hasOwn.call( obj, key );\n\t\t\t}\n\t\t}\n\n\t\t// Own properties are enumerated firstly, so to speed up,\n\t\t// if last one is own, then all properties are own.\n\t\tfor ( key in obj ) {}\n\n\t\treturn key === undefined || hasOwn.call( obj, key );\n\t},\n\n\ttype: function( obj ) {\n\t\tif ( obj == null ) {\n\t\t\treturn obj + \"\";\n\t\t}\n\t\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\t\tclass2type[ toString.call(obj) ] || \"object\" :\n\t\t\ttypeof obj;\n\t},\n\n\t// Evaluates a script in a global context\n\t// Workarounds based on findings by Jim Driscoll\n\t// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context\n\tglobalEval: function( data ) {\n\t\tif ( data && jQuery.trim( data ) ) {\n\t\t\t// We use execScript on Internet Explorer\n\t\t\t// We use an anonymous function so that context is window\n\t\t\t// rather than jQuery in Firefox\n\t\t\t( window.execScript || function( data ) {\n\t\t\t\twindow[ \"eval\" ].call( window, data );\n\t\t\t} )( data );\n\t\t}\n\t},\n\n\t// Convert dashed to camelCase; used by the css and data modules\n\t// Microsoft forgot to hump their vendor prefix (#9572)\n\tcamelCase: function( string ) {\n\t\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n\t},\n\n\tnodeName: function( elem, name ) {\n\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\t},\n\n\t// args is for internal usage only\n\teach: function( obj, callback, args ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = obj.length,\n\t\t\tisArray = isArraylike( obj );\n\n\t\tif ( args ) {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// A special, fast, case for the most common use of each\n\t\t} else {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// Support: Android<4.1, IE<9\n\ttrim: function( text ) {\n\t\treturn text == null ?\n\t\t\t\"\" :\n\t\t\t( text + \"\" ).replace( rtrim, \"\" );\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArraylike( Object(arr) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\tvar len;\n\n\t\tif ( arr ) {\n\t\t\tif ( indexOf ) {\n\t\t\t\treturn indexOf.call( arr, elem, i );\n\t\t\t}\n\n\t\t\tlen = arr.length;\n\t\t\ti = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t// Skip accessing in sparse arrays\n\t\t\t\tif ( i in arr && arr[ i ] === elem ) {\n\t\t\t\t\treturn i;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn -1;\n\t},\n\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\twhile ( j < len ) {\n\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Workaround casting of .length to NaN on otherwise arraylike objects (e.g., NodeLists)\n\t\tif ( len !== len ) {\n\t\t\twhile ( second[j] !== undefined ) {\n\t\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t\t}\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tisArray = isArraylike( elems ),\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArray ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn concat.apply( [], ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// Bind a function to a context, optionally partially applying any\n\t// arguments.\n\tproxy: function( fn, context ) {\n\t\tvar args, proxy, tmp;\n\n\t\tif ( typeof context === \"string\" ) {\n\t\t\ttmp = fn[ context ];\n\t\t\tcontext = fn;\n\t\t\tfn = tmp;\n\t\t}\n\n\t\t// Quick check to determine if target is callable, in the spec\n\t\t// this throws a TypeError, but we will just return undefined.\n\t\tif ( !jQuery.isFunction( fn ) ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\t// Simulated bind\n\t\targs = slice.call( arguments, 2 );\n\t\tproxy = function() {\n\t\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t\t};\n\n\t\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\t\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\t\treturn proxy;\n\t},\n\n\tnow: function() {\n\t\treturn +( new Date() );\n\t},\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n});\n\n// Populate the class2type map\njQuery.each(\"Boolean Number String Function Array Date RegExp Object Error\".split(\" \"), function(i, name) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n});\n\nfunction isArraylike( obj ) {\n\n\t// Support: iOS 8.2 (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = \"length\" in obj && obj.length,\n\t\ttype = jQuery.type( obj );\n\n\tif ( type === \"function\" || jQuery.isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\tif ( obj.nodeType === 1 && length ) {\n\t\treturn true;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.2.0-pre\n * http://sizzlejs.com/\n *\n * Copyright 2008, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2014-12-16\n */\n(function( window ) {\n\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// General-purpose constants\n\tMAX_NEGATIVE = 1 << 31,\n\n\t// Instance methods\n\thasOwn = ({}).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpush_native = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\t// Use a stripped-down indexOf as it's faster than native\n\t// http://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[i] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\t// http://www.w3.org/TR/css3-syntax/#characters\n\tcharacterEncoding = \"(?:\\\\\\\\.|[\\\\w-]|[^\\\\x00-\\\\xa0])+\",\n\n\t// Loosely modeled on CSS identifier characters\n\t// An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors\n\t// Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier\n\tidentifier = characterEncoding.replace( \"w\", \"w#\" ),\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + characterEncoding + \")(?:\" + whitespace +\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\t\t// \"Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" + whitespace +\n\t\t\"*\\\\]\",\n\n\tpseudos = \":(\" + characterEncoding + \")(?:\\\\((\" +\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" + whitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace + \"*\" ),\n\n\trattributeQuotes = new RegExp( \"=\" + whitespace + \"*([^\\\\]'\\\"]*?)\" + whitespace + \"*\\\\]\", \"g\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + characterEncoding + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + characterEncoding + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + characterEncoding.replace( \"w\", \"w*\" ) + \")\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" + whitespace +\n\t\t\t\"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" + whitespace +\n\t\t\t\"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace + \"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" +\n\t\t\twhitespace + \"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\trescape = /'|\\\\/g,\n\n\t// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\([\\\\da-f]{1,6}\" + whitespace + \"?|(\" + whitespace + \")|.)\", \"ig\" ),\n\tfunescape = function( _, escaped, escapedWhitespace ) {\n\t\tvar high = \"0x\" + escaped - 0x10000;\n\t\t// NaN means non-codepoint\n\t\t// Support: Firefox<24\n\t\t// Workaround erroneous numeric interpretation of +\"0x\"\n\t\treturn high !== high || escapedWhitespace ?\n\t\t\tescaped :\n\t\t\thigh < 0 ?\n\t\t\t\t// BMP codepoint\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\t// Supplemental Plane codepoint (surrogate pair)\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t};\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t(arr = slice.call( preferredDoc.childNodes )),\n\t\tpreferredDoc.childNodes\n\t);\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpush_native.apply( target, slice.call(els) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( (target[j++] = els[i++]) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar match, elem, m, nodeType,\n\t\t// QSA vars\n\t\ti, groups, old, nid, newContext, newSelector;\n\n\tif ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\n\tcontext = context || document;\n\tresults = results || [];\n\tnodeType = context.nodeType;\n\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\tif ( !seed && documentIsHTML ) {\n\n\t\t// Try to shortcut find operations when possible (e.g., not under DocumentFragment)\n\t\tif ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {\n\t\t\t// Speed-up: Sizzle(\"#ID\")\n\t\t\tif ( (m = match[1]) ) {\n\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\telem = context.getElementById( m );\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document (jQuery #6963)\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE, Opera, and Webkit return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t// Context is not a document\n\t\t\t\t\tif ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&\n\t\t\t\t\t\tcontains( context, elem ) && elem.id === m ) {\n\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Speed-up: Sizzle(\"TAG\")\n\t\t\t} else if ( match[2] ) {\n\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\treturn results;\n\n\t\t\t// Speed-up: Sizzle(\".CLASS\")\n\t\t\t} else if ( (m = match[3]) && support.getElementsByClassName ) {\n\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\treturn results;\n\t\t\t}\n\t\t}\n\n\t\t// QSA path\n\t\tif ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {\n\t\t\tnid = old = expando;\n\t\t\tnewContext = context;\n\t\t\tnewSelector = nodeType !== 1 && selector;\n\n\t\t\t// qSA works strangely on Element-rooted queries\n\t\t\t// We can work around this by specifying an extra ID on the root\n\t\t\t// and working up from there (Thanks to Andrew Dupont for the technique)\n\t\t\t// IE 8 doesn't work on object elements\n\t\t\tif ( nodeType === 1 && context.nodeName.toLowerCase() !== \"object\" ) {\n\t\t\t\tgroups = tokenize( selector );\n\n\t\t\t\tif ( (old = context.getAttribute(\"id\")) ) {\n\t\t\t\t\tnid = old.replace( rescape, \"\\\\$&\" );\n\t\t\t\t} else {\n\t\t\t\t\tcontext.setAttribute( \"id\", nid );\n\t\t\t\t}\n\t\t\t\tnid = \"[id='\" + nid + \"'] \";\n\n\t\t\t\ti = groups.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tgroups[i] = nid + toSelector( groups[i] );\n\t\t\t\t}\n\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) || context;\n\t\t\t\tnewSelector = groups.join(\",\");\n\t\t\t}\n\n\t\t\tif ( newSelector ) {\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch(qsaError) {\n\t\t\t\t} finally {\n\t\t\t\t\tif ( !old ) {\n\t\t\t\t\t\tcontext.removeAttribute(\"id\");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {Function(string, Object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn (cache[ key + \" \" ] = value);\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created div and expects a boolean result\n */\nfunction assert( fn ) {\n\tvar div = document.createElement(\"div\");\n\n\ttry {\n\t\treturn !!fn( div );\n\t} catch (e) {\n\t\treturn false;\n\t} finally {\n\t\t// Remove from its parent by default\n\t\tif ( div.parentNode ) {\n\t\t\tdiv.parentNode.removeChild( div );\n\t\t}\n\t\t// release memory in IE\n\t\tdiv = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split(\"|\"),\n\t\ti = attrs.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[i] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\t( ~b.sourceIndex || MAX_NEGATIVE ) -\n\t\t\t( ~a.sourceIndex || MAX_NEGATIVE );\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( (cur = cur.nextSibling) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn (name === \"input\" || name === \"button\") && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction(function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction(function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ (j = matchIndexes[i]) ] ) {\n\t\t\t\t\tseed[j] = !(matches[j] = seed[j]);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t});\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\t// documentElement is verified for cases where it doesn't yet exist\n\t// (such as loading iframes in IE - #4833)\n\tvar documentElement = elem && (elem.ownerDocument || elem).documentElement;\n\treturn documentElement ? documentElement.nodeName !== \"HTML\" : false;\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, parent,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// If no document and documentElement is available, return\n\tif ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Set our document\n\tdocument = doc;\n\tdocElem = doc.documentElement;\n\tparent = doc.defaultView;\n\n\t// Support: IE>8\n\t// If iframe document is assigned to \"document\" variable and if iframe has been reloaded,\n\t// IE will throw \"permission denied\" error when accessing \"document\" variable, see jQuery #13936\n\t// IE6-8 do not support the defaultView property so parent will be undefined\n\tif ( parent && parent !== parent.top ) {\n\t\t// IE11 does not have attachEvent, so all must suffer\n\t\tif ( parent.addEventListener ) {\n\t\t\tparent.addEventListener( \"unload\", unloadHandler, false );\n\t\t} else if ( parent.attachEvent ) {\n\t\t\tparent.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t/* Support tests\n\t---------------------------------------------------------------------- */\n\tdocumentIsHTML = !isXML( doc );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert(function( div ) {\n\t\tdiv.className = \"i\";\n\t\treturn !div.getAttribute(\"className\");\n\t});\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert(function( div ) {\n\t\tdiv.appendChild( doc.createComment(\"\") );\n\t\treturn !div.getElementsByTagName(\"*\").length;\n\t});\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( doc.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert(function( div ) {\n\t\tdocElem.appendChild( div ).id = expando;\n\t\treturn !doc.getElementsByName || !doc.getElementsByName( expando ).length;\n\t});\n\n\t// ID find and filter\n\tif ( support.getById ) {\n\t\tExpr.find[\"ID\"] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar m = context.getElementById( id );\n\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\treturn m && m.parentNode ? [ m ] : [];\n\t\t\t}\n\t\t};\n\t\tExpr.filter[\"ID\"] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute(\"id\") === attrId;\n\t\t\t};\n\t\t};\n\t} else {\n\t\t// Support: IE6/7\n\t\t// getElementById is not reliable as a find shortcut\n\t\tdelete Expr.find[\"ID\"];\n\n\t\tExpr.filter[\"ID\"] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" && elem.getAttributeNode(\"id\");\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[\"TAG\"] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( (elem = results[i++]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[\"CLASS\"] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See http://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert(function( div ) {\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// http://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( div ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\f]' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( div.querySelectorAll(\"[msallowcapture^='']\").length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !div.querySelectorAll(\"[selected]\").length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.2+, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.7+\n\t\t\tif ( !div.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push(\"~=\");\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":checked\").length ) {\n\t\t\t\trbuggyQSA.push(\":checked\");\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibing-combinator selector` fails\n\t\t\tif ( !div.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push(\".#.+[+~]\");\n\t\t\t}\n\t\t});\n\n\t\tassert(function( div ) {\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = doc.createElement(\"input\");\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tdiv.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( div.querySelectorAll(\"[name=d]\").length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":enabled\").length ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tdiv.querySelectorAll(\"*,:x\");\n\t\t\trbuggyQSA.push(\",.*:\");\n\t\t});\n\t}\n\n\tif ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector) )) ) {\n\n\t\tassert(function( div ) {\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( div, \"div\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( div, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t});\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join(\"|\") );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join(\"|\") );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully does not implement inclusive descendent\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t));\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( (b = b.parentNode) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\tcompare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\tif ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t\tif ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\t\t\treturn a === doc ? -1 :\n\t\t\t\tb === doc ? 1 :\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[i] === bp[i] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[i], bp[i] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\tap[i] === preferredDoc ? -1 :\n\t\t\tbp[i] === preferredDoc ? 1 :\n\t\t\t0;\n\t};\n\n\treturn doc;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\t// Make sure that attribute selectors are quoted\n\texpr = expr.replace( rattributeQuotes, \"='$1']\" );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t// fragment in IE 9\n\t\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch (e) {}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\t// Set document vars if needed\n\tif ( ( context.ownerDocument || context ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t(val = elem.getAttributeNode(name)) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( (elem = results[i++]) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( (node = elem[i++]) ) {\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[1] = match[1].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[3] = ( match[3] || match[4] || match[5] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[2] === \"~=\" ) {\n\t\t\t\tmatch[3] = \" \" + match[3] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[1] = match[1].toLowerCase();\n\n\t\t\tif ( match[1].slice( 0, 3 ) === \"nth\" ) {\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[3] ) {\n\t\t\t\t\tSizzle.error( match[0] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === \"even\" || match[3] === \"odd\" ) );\n\t\t\t\tmatch[5] = +( ( match[7] + match[8] ) || match[3] === \"odd\" );\n\n\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[3] ) {\n\t\t\t\tSizzle.error( match[0] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[6] && match[2];\n\n\t\t\tif ( matchExpr[\"CHILD\"].test( match[0] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[3] ) {\n\t\t\t\tmatch[2] = match[4] || match[5] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t(excess = tokenize( unquoted, true )) &&\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t(excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[0] = match[0].slice( 0, excess );\n\t\t\t\tmatch[2] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() { return true; } :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t(pattern = new RegExp( \"(^|\" + whitespace + \")\" + className + \"(\" + whitespace + \"|$)\" )) &&\n\t\t\t\tclassCache( className, function( elem ) {\n\t\t\t\t\treturn pattern.test( typeof elem.className === \"string\" && elem.className || typeof elem.getAttribute !== \"undefined\" && elem.getAttribute(\"class\") || \"\" );\n\t\t\t\t});\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tvar cache, outerCache, node, diff, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( (node = node[ dir ]) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\t\t\t\t\t\t\touterCache = parent[ expando ] || (parent[ expando ] = {});\n\t\t\t\t\t\t\tcache = outerCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[0] === dirruns && cache[1];\n\t\t\t\t\t\t\tdiff = cache[0] === dirruns && cache[2];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\touterCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t} else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {\n\t\t\t\t\t\t\tdiff = cache[1];\n\n\t\t\t\t\t\t// xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\tif ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {\n\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t(node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction(function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[i] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[i] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction(function( selector ) {\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction(function( seed, matches, context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = unmatched[i]) ) {\n\t\t\t\t\t\t\tseed[i] = !(matches[i] = elem);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}) :\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tinput[0] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[0] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t}),\n\n\t\t\"has\": markFunction(function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t}),\n\n\t\t\"contains\": markFunction(function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t}),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test(lang || \"\") ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( (elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute(\"xml:lang\") || elem.getAttribute(\"lang\")) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( (elem = elem.parentNode) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t}),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": function( elem ) {\n\t\t\treturn elem.disabled === false;\n\t\t},\n\n\t\t\"disabled\": function( elem ) {\n\t\t\treturn elem.disabled === true;\n\t\t},\n\n\t\t\"checked\": function( elem ) {\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn (nodeName === \"input\" && !!elem.checked) || (nodeName === \"option\" && !!elem.selected);\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[\"empty\"]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( (attr = elem.getAttribute(\"type\")) == null || attr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo(function() {\n\t\t\treturn [ 0 ];\n\t\t}),\n\n\t\t\"last\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t}),\n\n\t\t\"eq\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t}),\n\n\t\t\"even\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"odd\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"lt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"gt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t})\n\t}\n};\n\nExpr.pseudos[\"nth\"] = Expr.pseudos[\"eq\"];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || (match = rcomma.exec( soFar )) ) {\n\t\t\tif ( match ) {\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[0].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( (tokens = []) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( (match = rcombinators.exec( soFar )) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push({\n\t\t\t\tvalue: matched,\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[0].replace( rtrim, \" \" )\n\t\t\t});\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||\n\t\t\t\t(match = preFilters[ type ]( match ))) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push({\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t});\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[i].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tcheckNonElements = base && dir === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from dir caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || (elem[ expando ] = {});\n\t\t\t\t\t\tif ( (oldCache = outerCache[ dir ]) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn (newCache[ 2 ] = oldCache[ 2 ]);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\touterCache[ dir ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[i]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[0];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[i], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (elem = unmatched[i]) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction(function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts( selector || \"*\", context.nodeType ? [ context ] : context, [] ),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( (elem = temp[i]) ) {\n\t\t\t\t\tmatcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = matcherOut[i]) ) {\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( (matcherIn[i] = elem) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, (matcherOut = []), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( (elem = matcherOut[i]) &&\n\t\t\t\t\t\t(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {\n\n\t\t\t\t\t\tseed[temp] = !(results[temp] = elem);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t});\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[0].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[\" \"],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t(checkContext = context).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (matcher = Expr.relative[ tokens[i].type ]) ) {\n\t\t\tmatchers = [ addCombinator(elementMatcher( matchers ), matcher) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[j].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\t\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\t\ttokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" })\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( (tokens = tokens.slice( j )) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[\"TAG\"]( \"*\", outermost ),\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\t\t\t\toutermostContext = context !== document && context;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Keep `i` a string if there are no elements so `matchedCount` will be \"00\" below\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && (elem = elems[i]) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (matcher = elementMatchers[j++]) ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( (elem = !matcher && elem) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\tmatchedCount += i;\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (matcher = setMatchers[j++]) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !(unmatched[i] || setMatched[i]) ) {\n\t\t\t\t\t\t\t\tsetMatched[i] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[i] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( (selector = compiled.selector || selector) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is no seed and only one group\n\tif ( match.length === 1 ) {\n\n\t\t// Take a shortcut and set the context if the root selector is an ID\n\t\ttokens = match[0] = match[0].slice( 0 );\n\t\tif ( tokens.length > 2 && (token = tokens[0]).type === \"ID\" &&\n\t\t\t\tsupport.getById && context.nodeType === 9 && documentIsHTML &&\n\t\t\t\tExpr.relative[ tokens[1].type ] ) {\n\n\t\t\tcontext = ( Expr.find[\"ID\"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[\"needsContext\"].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[i];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ (type = token.type) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( (find = Expr.find[ type ]) ) {\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( (seed = find(\n\t\t\t\t\ttoken.matches[0].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context\n\t\t\t\t)) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\trsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split(\"\").sort( sortOrder ).join(\"\") === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert(function( div1 ) {\n\t// Should return 1, but returns 4 (following)\n\treturn div1.compareDocumentPosition( document.createElement(\"div\") ) & 1;\n});\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert(function( div ) {\n\tdiv.innerHTML = \"<a href='#'></a>\";\n\treturn div.firstChild.getAttribute(\"href\") === \"#\" ;\n}) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert(function( div ) {\n\tdiv.innerHTML = \"<input/>\";\n\tdiv.firstChild.setAttribute( \"value\", \"\" );\n\treturn div.firstChild.getAttribute( \"value\" ) === \"\";\n}) ) {\n\taddHandle( \"value\", function( elem, name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert(function( div ) {\n\treturn div.getAttribute(\"disabled\") == null;\n}) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t\t(val = elem.getAttributeNode( name )) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\tnull;\n\t\t}\n\t});\n}\n\nreturn Sizzle;\n\n})( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\njQuery.expr[\":\"] = jQuery.expr.pseudos;\njQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\n\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\nvar rsingleTag = (/^<(\\w+)\\s*\\/?>(?:<\\/\\1>|)$/);\n\n\n\nvar risSimple = /^.[^:#\\[\\.,]*$/;\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( jQuery.isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\t/* jshint -W018 */\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t});\n\n\t}\n\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t});\n\n\t}\n\n\tif ( typeof qualifier === \"string\" ) {\n\t\tif ( risSimple.test( qualifier ) ) {\n\t\t\treturn jQuery.filter( qualifier, elements, not );\n\t\t}\n\n\t\tqualifier = jQuery.filter( qualifier, elements );\n\t}\n\n\treturn jQuery.grep( elements, function( elem ) {\n\t\treturn ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not;\n\t});\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\treturn elems.length === 1 && elem.nodeType === 1 ?\n\t\tjQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :\n\t\tjQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\t\treturn elem.nodeType === 1;\n\t\t}));\n};\n\njQuery.fn.extend({\n\tfind: function( selector ) {\n\t\tvar i,\n\t\t\tret = [],\n\t\t\tself = this,\n\t\t\tlen = self.length;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter(function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}) );\n\t\t}\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\t// Needed because $( selector, context ) becomes $( context ).find( selector )\n\t\tret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );\n\t\tret.selector = this.selector ? this.selector + \" \" + selector : selector;\n\t\treturn ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], false) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], true) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n});\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// Use the correct document accordingly with window argument (sandbox)\n\tdocument = window.document,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]*))$/,\n\n\tinit = jQuery.fn.init = function( selector, context ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector.charAt(0) === \"<\" && selector.charAt( selector.length - 1 ) === \">\" && selector.length >= 3 ) {\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && (match[1] || !context) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[1] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[0] : context;\n\n\t\t\t\t\t// scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[1],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( jQuery.isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[2] );\n\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE and Opera return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id !== match[2] ) {\n\t\t\t\t\t\t\treturn rootjQuery.find( selector );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Otherwise, we inject the element directly into the jQuery object\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t\tthis[0] = elem;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.context = document;\n\t\t\t\t\tthis.selector = selector;\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || rootjQuery ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis.context = this[0] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( jQuery.isFunction( selector ) ) {\n\t\t\treturn typeof rootjQuery.ready !== \"undefined\" ?\n\t\t\t\trootjQuery.ready( selector ) :\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\tif ( selector.selector !== undefined ) {\n\t\t\tthis.selector = selector.selector;\n\t\t\tthis.context = selector.context;\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\t// methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.extend({\n\tdir: function( elem, dir, until ) {\n\t\tvar matched = [],\n\t\t\tcur = elem[ dir ];\n\n\t\twhile ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {\n\t\t\tif ( cur.nodeType === 1 ) {\n\t\t\t\tmatched.push( cur );\n\t\t\t}\n\t\t\tcur = cur[dir];\n\t\t}\n\t\treturn matched;\n\t},\n\n\tsibling: function( n, elem ) {\n\t\tvar r = [];\n\n\t\tfor ( ; n; n = n.nextSibling ) {\n\t\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\t\tr.push( n );\n\t\t\t}\n\t\t}\n\n\t\treturn r;\n\t}\n});\n\njQuery.fn.extend({\n\thas: function( target ) {\n\t\tvar i,\n\t\t\ttargets = jQuery( target, this ),\n\t\t\tlen = targets.length;\n\n\t\treturn this.filter(function() {\n\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[i] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\tpos = rneedsContext.test( selectors ) || typeof selectors !== \"string\" ?\n\t\t\t\tjQuery( selectors, context || this.context ) :\n\t\t\t\t0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tfor ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) {\n\t\t\t\t// Always skip document fragments\n\t\t\t\tif ( cur.nodeType < 11 && (pos ?\n\t\t\t\t\tpos.index(cur) > -1 :\n\n\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\tjQuery.find.matchesSelector(cur, selectors)) ) {\n\n\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within\n\t// the matched set of elements\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn jQuery.inArray( this[0], jQuery( elem ) );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn jQuery.inArray(\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[0] : elem, this );\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.unique(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter(selector)\n\t\t);\n\t}\n});\n\nfunction sibling( cur, dir ) {\n\tdo {\n\t\tcur = cur[ dir ];\n\t} while ( cur && cur.nodeType !== 1 );\n\n\treturn cur;\n}\n\njQuery.each({\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn jQuery.dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn jQuery.sibling( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\treturn jQuery.nodeName( elem, \"iframe\" ) ?\n\t\t\telem.contentDocument || elem.contentWindow.document :\n\t\t\tjQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar ret = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tret = jQuery.filter( selector, ret );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tret = jQuery.unique( ret );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tret = ret.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\nvar rnotwhite = (/\\S+/g);\n\n\n\n// String to Object options format cache\nvar optionsCache = {};\n\n// Convert String-formatted options into Object-formatted ones and store in cache\nfunction createOptions( options ) {\n\tvar object = optionsCache[ options ] = {};\n\tjQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t});\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\t( optionsCache[ options ] || createOptions( options ) ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\t\t// Last fire value (for non-forgettable lists)\n\t\tmemory,\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\t\t// End of the loop when firing\n\t\tfiringLength,\n\t\t// Index of currently firing callback (modified by remove if needed)\n\t\tfiringIndex,\n\t\t// First callback to fire (used internally by add and fireWith)\n\t\tfiringStart,\n\t\t// Actual callback list\n\t\tlist = [],\n\t\t// Stack of fire calls for repeatable lists\n\t\tstack = !options.once && [],\n\t\t// Fire callbacks\n\t\tfire = function( data ) {\n\t\t\tmemory = options.memory && data;\n\t\t\tfired = true;\n\t\t\tfiringIndex = firingStart || 0;\n\t\t\tfiringStart = 0;\n\t\t\tfiringLength = list.length;\n\t\t\tfiring = true;\n\t\t\tfor ( ; list && firingIndex < firingLength; firingIndex++ ) {\n\t\t\t\tif ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {\n\t\t\t\t\tmemory = false; // To prevent further calls using add\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tfiring = false;\n\t\t\tif ( list ) {\n\t\t\t\tif ( stack ) {\n\t\t\t\t\tif ( stack.length ) {\n\t\t\t\t\t\tfire( stack.shift() );\n\t\t\t\t\t}\n\t\t\t\t} else if ( memory ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t} else {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t// Actual Callbacks object\n\t\tself = {\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\t// First, we save the current length\n\t\t\t\t\tvar start = list.length;\n\t\t\t\t\t(function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tvar type = jQuery.type( arg );\n\t\t\t\t\t\t\tif ( type === \"function\" ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && type !== \"string\" ) {\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t})( arguments );\n\t\t\t\t\t// Do we need to add the callbacks to the\n\t\t\t\t\t// current firing batch?\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tfiringLength = list.length;\n\t\t\t\t\t// With memory, if we're not firing then\n\t\t\t\t\t// we should call right away\n\t\t\t\t\t} else if ( memory ) {\n\t\t\t\t\t\tfiringStart = start;\n\t\t\t\t\t\tfire( memory );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\t\tvar index;\n\t\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\t\tlist.splice( index, 1 );\n\t\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\t\t\tif ( index <= firingLength ) {\n\t\t\t\t\t\t\t\t\tfiringLength--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );\n\t\t\t},\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tlist = [];\n\t\t\t\tfiringLength = 0;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Have the list do nothing anymore\n\t\t\tdisable: function() {\n\t\t\t\tlist = stack = memory = undefined;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it disabled?\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\t\t\t// Lock the list in its current state\n\t\t\tlock: function() {\n\t\t\t\tstack = undefined;\n\t\t\t\tif ( !memory ) {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it locked?\n\t\t\tlocked: function() {\n\t\t\t\treturn !stack;\n\t\t\t},\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( list && ( !fired || stack ) ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tstack.push( args );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tfire( args );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\njQuery.extend({\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\t\t\t\t// action, add listener, listener list, final state\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks(\"once memory\"), \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks(\"once memory\"), \"rejected\" ],\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks(\"memory\") ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\tthen: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\t\t\t\t\treturn jQuery.Deferred(function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\t\t\t\t\tvar fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];\n\t\t\t\t\t\t\t// deferred[ done | fail | progress ] for forwarding actions to newDefer\n\t\t\t\t\t\t\tdeferred[ tuple[1] ](function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && jQuery.isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject )\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t});\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t}).promise();\n\t\t\t\t},\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Keep pipe for back-compat\n\t\tpromise.pipe = promise.then;\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 3 ];\n\n\t\t\t// promise[ done | fail | progress ] = list.add\n\t\t\tpromise[ tuple[1] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(function() {\n\t\t\t\t\t// state = [ resolved | rejected ]\n\t\t\t\t\tstate = stateString;\n\n\t\t\t\t// [ reject_list | resolve_list ].disable; progress_list.lock\n\t\t\t\t}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );\n\t\t\t}\n\n\t\t\t// deferred[ resolve | reject | notify ]\n\t\t\tdeferred[ tuple[0] ] = function() {\n\t\t\t\tdeferred[ tuple[0] + \"With\" ]( this === deferred ? promise : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\t\t\tdeferred[ tuple[0] + \"With\" ] = list.fireWith;\n\t\t});\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( subordinate /* , ..., subordinateN */ ) {\n\t\tvar i = 0,\n\t\t\tresolveValues = slice.call( arguments ),\n\t\t\tlength = resolveValues.length,\n\n\t\t\t// the count of uncompleted subordinates\n\t\t\tremaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,\n\n\t\t\t// the master Deferred. If resolveValues consist of only a single Deferred, just use that.\n\t\t\tdeferred = remaining === 1 ? subordinate : jQuery.Deferred(),\n\n\t\t\t// Update function for both resolve and progress values\n\t\t\tupdateFunc = function( i, contexts, values ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tcontexts[ i ] = this;\n\t\t\t\t\tvalues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( values === progressValues ) {\n\t\t\t\t\t\tdeferred.notifyWith( contexts, values );\n\n\t\t\t\t\t} else if ( !(--remaining) ) {\n\t\t\t\t\t\tdeferred.resolveWith( contexts, values );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t},\n\n\t\t\tprogressValues, progressContexts, resolveContexts;\n\n\t\t// add listeners to Deferred subordinates; treat others as resolved\n\t\tif ( length > 1 ) {\n\t\t\tprogressValues = new Array( length );\n\t\t\tprogressContexts = new Array( length );\n\t\t\tresolveContexts = new Array( length );\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {\n\t\t\t\t\tresolveValues[ i ].promise()\n\t\t\t\t\t\t.done( updateFunc( i, resolveContexts, resolveValues ) )\n\t\t\t\t\t\t.fail( deferred.reject )\n\t\t\t\t\t\t.progress( updateFunc( i, progressContexts, progressValues ) );\n\t\t\t\t} else {\n\t\t\t\t\t--remaining;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// if we're not waiting on anything, resolve the master\n\t\tif ( !remaining ) {\n\t\t\tdeferred.resolveWith( resolveContexts, resolveValues );\n\t\t}\n\n\t\treturn deferred.promise();\n\t}\n});\n\n\n// The deferred used on DOM ready\nvar readyList;\n\njQuery.fn.ready = function( fn ) {\n\t// Add the callback\n\tjQuery.ready.promise().done( fn );\n\n\treturn this;\n};\n\njQuery.extend({\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Hold (or release) the ready event\n\tholdReady: function( hold ) {\n\t\tif ( hold ) {\n\t\t\tjQuery.readyWait++;\n\t\t} else {\n\t\t\tjQuery.ready( true );\n\t\t}\n\t},\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).\n\t\tif ( !document.body ) {\n\t\t\treturn setTimeout( jQuery.ready );\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\n\t\t// Trigger any bound ready events\n\t\tif ( jQuery.fn.triggerHandler ) {\n\t\t\tjQuery( document ).triggerHandler( \"ready\" );\n\t\t\tjQuery( document ).off( \"ready\" );\n\t\t}\n\t}\n});\n\n/**\n * Clean-up method for dom ready events\n */\nfunction detach() {\n\tif ( document.addEventListener ) {\n\t\tdocument.removeEventListener( \"DOMContentLoaded\", completed, false );\n\t\twindow.removeEventListener( \"load\", completed, false );\n\n\t} else {\n\t\tdocument.detachEvent( \"onreadystatechange\", completed );\n\t\twindow.detachEvent( \"onload\", completed );\n\t}\n}\n\n/**\n * The ready event handler and self cleanup method\n */\nfunction completed() {\n\t// readyState === \"complete\" is good enough for us to call the dom ready in oldIE\n\tif ( document.addEventListener || event.type === \"load\" || document.readyState === \"complete\" ) {\n\t\tdetach();\n\t\tjQuery.ready();\n\t}\n}\n\njQuery.ready.promise = function( obj ) {\n\tif ( !readyList ) {\n\n\t\treadyList = jQuery.Deferred();\n\n\t\t// Catch cases where $(document).ready() is called after the browser event has already occurred.\n\t\t// we once tried to use readyState \"interactive\" here, but it caused issues like the one\n\t\t// discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15\n\t\tif ( document.readyState === \"complete\" ) {\n\t\t\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\t\t\tsetTimeout( jQuery.ready );\n\n\t\t// Standards-based browsers support DOMContentLoaded\n\t\t} else if ( document.addEventListener ) {\n\t\t\t// Use the handy event callback\n\t\t\tdocument.addEventListener( \"DOMContentLoaded\", completed, false );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.addEventListener( \"load\", completed, false );\n\n\t\t// If IE event model is used\n\t\t} else {\n\t\t\t// Ensure firing before onload, maybe late but safe also for iframes\n\t\t\tdocument.attachEvent( \"onreadystatechange\", completed );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.attachEvent( \"onload\", completed );\n\n\t\t\t// If IE and not a frame\n\t\t\t// continually check to see if the document is ready\n\t\t\tvar top = false;\n\n\t\t\ttry {\n\t\t\t\ttop = window.frameElement == null && document.documentElement;\n\t\t\t} catch(e) {}\n\n\t\t\tif ( top && top.doScroll ) {\n\t\t\t\t(function doScrollCheck() {\n\t\t\t\t\tif ( !jQuery.isReady ) {\n\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t// Use the trick by Diego Perini\n\t\t\t\t\t\t\t// http://javascript.nwbox.com/IEContentLoaded/\n\t\t\t\t\t\t\ttop.doScroll(\"left\");\n\t\t\t\t\t\t} catch(e) {\n\t\t\t\t\t\t\treturn setTimeout( doScrollCheck, 50 );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// detach all dom ready events\n\t\t\t\t\t\tdetach();\n\n\t\t\t\t\t\t// and execute any waiting functions\n\t\t\t\t\t\tjQuery.ready();\n\t\t\t\t\t}\n\t\t\t\t})();\n\t\t\t}\n\t\t}\n\t}\n\treturn readyList.promise( obj );\n};\n\n\nvar strundefined = typeof undefined;\n\n\n\n// Support: IE<9\n// Iteration over object's inherited properties before its own\nvar i;\nfor ( i in jQuery( support ) ) {\n\tbreak;\n}\nsupport.ownLast = i !== \"0\";\n\n// Note: most support tests are defined in their respective modules.\n// false until the test is run\nsupport.inlineBlockNeedsLayout = false;\n\n// Execute ASAP in case we need to set body.style.zoom\njQuery(function() {\n\t// Minified: var a,b,c,d\n\tvar val, div, body, container;\n\n\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\tif ( !body || !body.style ) {\n\t\t// Return for frameset docs that don't have a body\n\t\treturn;\n\t}\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tcontainer = document.createElement( \"div\" );\n\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\tbody.appendChild( container ).appendChild( div );\n\n\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t// Support: IE<8\n\t\t// Check if natively block-level elements act like inline-block\n\t\t// elements when setting their display to 'inline' and giving\n\t\t// them layout\n\t\tdiv.style.cssText = \"display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1\";\n\n\t\tsupport.inlineBlockNeedsLayout = val = div.offsetWidth === 3;\n\t\tif ( val ) {\n\t\t\t// Prevent IE 6 from affecting layout for positioned elements #11048\n\t\t\t// Prevent IE from shrinking the body in IE 7 mode #12869\n\t\t\t// Support: IE<8\n\t\t\tbody.style.zoom = 1;\n\t\t}\n\t}\n\n\tbody.removeChild( container );\n});\n\n\n\n\n(function() {\n\tvar div = document.createElement( \"div\" );\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\n/**\n * Determines whether an object can have data\n */\njQuery.acceptData = function( elem ) {\n\tvar noData = jQuery.noData[ (elem.nodeName + \" \").toLowerCase() ],\n\t\tnodeType = +elem.nodeType || 1;\n\n\t// Do not set data on non-element DOM nodes because it will not be cleared (#8335).\n\treturn nodeType !== 1 && nodeType !== 9 ?\n\t\tfalse :\n\n\t\t// Nodes accept data unless otherwise specified; rejection can be conditional\n\t\t!noData || noData !== true && elem.getAttribute(\"classid\") === noData;\n};\n\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /([A-Z])/g;\n\nfunction dataAttr( elem, key, data ) {\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\n\t\tvar name = \"data-\" + key.replace( rmultiDash, \"-$1\" ).toLowerCase();\n\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = data === \"true\" ? true :\n\t\t\t\t\tdata === \"false\" ? false :\n\t\t\t\t\tdata === \"null\" ? null :\n\t\t\t\t\t// Only convert to a number if it doesn't change the string\n\t\t\t\t\t+data + \"\" === data ? +data :\n\t\t\t\t\trbrace.test( data ) ? jQuery.parseJSON( data ) :\n\t\t\t\t\tdata;\n\t\t\t} catch( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tjQuery.data( elem, key, data );\n\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\n\treturn data;\n}\n\n// checks a cache object for emptiness\nfunction isEmptyDataObject( obj ) {\n\tvar name;\n\tfor ( name in obj ) {\n\n\t\t// if the public data object is empty, the private is still empty\n\t\tif ( name === \"data\" && jQuery.isEmptyObject( obj[name] ) ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( name !== \"toJSON\" ) {\n\t\t\treturn false;\n\t\t}\n\t}\n\n\treturn true;\n}\n\nfunction internalData( elem, name, data, pvt /* Internal Use Only */ ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar ret, thisCache,\n\t\tinternalKey = jQuery.expando,\n\n\t\t// We have to handle DOM nodes and JS objects differently because IE6-7\n\t\t// can't GC object references properly across the DOM-JS boundary\n\t\tisNode = elem.nodeType,\n\n\t\t// Only DOM nodes need the global jQuery cache; JS object data is\n\t\t// attached directly to the object so GC can occur automatically\n\t\tcache = isNode ? jQuery.cache : elem,\n\n\t\t// Only defining an ID for JS objects if its cache already exists allows\n\t\t// the code to shortcut on the same path as a DOM node with no cache\n\t\tid = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;\n\n\t// Avoid doing any more work than we need to when trying to get data on an\n\t// object that has no data at all\n\tif ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === \"string\" ) {\n\t\treturn;\n\t}\n\n\tif ( !id ) {\n\t\t// Only DOM nodes need a new unique ID for each element since their data\n\t\t// ends up in the global cache\n\t\tif ( isNode ) {\n\t\t\tid = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++;\n\t\t} else {\n\t\t\tid = internalKey;\n\t\t}\n\t}\n\n\tif ( !cache[ id ] ) {\n\t\t// Avoid exposing jQuery metadata on plain JS objects when the object\n\t\t// is serialized using JSON.stringify\n\t\tcache[ id ] = isNode ? {} : { toJSON: jQuery.noop };\n\t}\n\n\t// An object can be passed to jQuery.data instead of a key/value pair; this gets\n\t// shallow copied over onto the existing cache\n\tif ( typeof name === \"object\" || typeof name === \"function\" ) {\n\t\tif ( pvt ) {\n\t\t\tcache[ id ] = jQuery.extend( cache[ id ], name );\n\t\t} else {\n\t\t\tcache[ id ].data = jQuery.extend( cache[ id ].data, name );\n\t\t}\n\t}\n\n\tthisCache = cache[ id ];\n\n\t// jQuery data() is stored in a separate object inside the object's internal data\n\t// cache in order to avoid key collisions between internal data and user-defined\n\t// data.\n\tif ( !pvt ) {\n\t\tif ( !thisCache.data ) {\n\t\t\tthisCache.data = {};\n\t\t}\n\n\t\tthisCache = thisCache.data;\n\t}\n\n\tif ( data !== undefined ) {\n\t\tthisCache[ jQuery.camelCase( name ) ] = data;\n\t}\n\n\t// Check for both converted-to-camel and non-converted data property names\n\t// If a data property was specified\n\tif ( typeof name === \"string\" ) {\n\n\t\t// First Try to find as-is property data\n\t\tret = thisCache[ name ];\n\n\t\t// Test for null|undefined property data\n\t\tif ( ret == null ) {\n\n\t\t\t// Try to find the camelCased property\n\t\t\tret = thisCache[ jQuery.camelCase( name ) ];\n\t\t}\n\t} else {\n\t\tret = thisCache;\n\t}\n\n\treturn ret;\n}\n\nfunction internalRemoveData( elem, name, pvt ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar thisCache, i,\n\t\tisNode = elem.nodeType,\n\n\t\t// See jQuery.data for more information\n\t\tcache = isNode ? jQuery.cache : elem,\n\t\tid = isNode ? elem[ jQuery.expando ] : jQuery.expando;\n\n\t// If there is already no cache entry for this object, there is no\n\t// purpose in continuing\n\tif ( !cache[ id ] ) {\n\t\treturn;\n\t}\n\n\tif ( name ) {\n\n\t\tthisCache = pvt ? cache[ id ] : cache[ id ].data;\n\n\t\tif ( thisCache ) {\n\n\t\t\t// Support array or space separated string names for data keys\n\t\t\tif ( !jQuery.isArray( name ) ) {\n\n\t\t\t\t// try the string as a key before any manipulation\n\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\tname = [ name ];\n\t\t\t\t} else {\n\n\t\t\t\t\t// split the camel cased version by spaces unless a key with the spaces exists\n\t\t\t\t\tname = jQuery.camelCase( name );\n\t\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\t\tname = [ name ];\n\t\t\t\t\t} else {\n\t\t\t\t\t\tname = name.split(\" \");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// If \"name\" is an array of keys...\n\t\t\t\t// When data is initially created, via (\"key\", \"val\") signature,\n\t\t\t\t// keys will be converted to camelCase.\n\t\t\t\t// Since there is no way to tell _how_ a key was added, remove\n\t\t\t\t// both plain key and camelCase key. #12786\n\t\t\t\t// This will only penalize the array argument path.\n\t\t\t\tname = name.concat( jQuery.map( name, jQuery.camelCase ) );\n\t\t\t}\n\n\t\t\ti = name.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete thisCache[ name[i] ];\n\t\t\t}\n\n\t\t\t// If there is no data left in the cache, we want to continue\n\t\t\t// and let the cache object itself get destroyed\n\t\t\tif ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t}\n\n\t// See jQuery.data for more information\n\tif ( !pvt ) {\n\t\tdelete cache[ id ].data;\n\n\t\t// Don't destroy the parent cache unless the internal data object\n\t\t// had been the only thing left in it\n\t\tif ( !isEmptyDataObject( cache[ id ] ) ) {\n\t\t\treturn;\n\t\t}\n\t}\n\n\t// Destroy the cache\n\tif ( isNode ) {\n\t\tjQuery.cleanData( [ elem ], true );\n\n\t// Use delete when supported for expandos or `cache` is not a window per isWindow (#10080)\n\t/* jshint eqeqeq: false */\n\t} else if ( support.deleteExpando || cache != cache.window ) {\n\t\t/* jshint eqeqeq: true */\n\t\tdelete cache[ id ];\n\n\t// When all else fails, null\n\t} else {\n\t\tcache[ id ] = null;\n\t}\n}\n\njQuery.extend({\n\tcache: {},\n\n\t// The following elements (space-suffixed to avoid Object.prototype collisions)\n\t// throw uncatchable exceptions if you attempt to set expando properties\n\tnoData: {\n\t\t\"applet \": true,\n\t\t\"embed \": true,\n\t\t// ...but Flash objects (which have this classid) *can* handle expandos\n\t\t\"object \": \"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"\n\t},\n\n\thasData: function( elem ) {\n\t\telem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];\n\t\treturn !!elem && !isEmptyDataObject( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name );\n\t},\n\n\t// For internal use only.\n\t_data: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data, true );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name, true );\n\t}\n});\n\njQuery.fn.extend({\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[0],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Special expections of .data basically thwart jQuery.access,\n\t\t// so implement the relevant behavior ourselves\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = jQuery.data( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !jQuery._data( elem, \"parsedAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE11+\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = jQuery.camelCase( name.slice(5) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tjQuery._data( elem, \"parsedAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each(function() {\n\t\t\t\tjQuery.data( this, key );\n\t\t\t});\n\t\t}\n\n\t\treturn arguments.length > 1 ?\n\n\t\t\t// Sets one value\n\t\t\tthis.each(function() {\n\t\t\t\tjQuery.data( this, key, value );\n\t\t\t}) :\n\n\t\t\t// Gets one value\n\t\t\t// Try to fetch any internally stored data first\n\t\t\telem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined;\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeData( this, key );\n\t\t});\n\t}\n});\n\n\njQuery.extend({\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = jQuery._data( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || jQuery.isArray(data) ) {\n\t\t\t\t\tqueue = jQuery._data( elem, type, jQuery.makeArray(data) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// not intended for public consumption - generates a queueHooks object, or returns the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn jQuery._data( elem, key ) || jQuery._data( elem, key, {\n\t\t\tempty: jQuery.Callbacks(\"once memory\").add(function() {\n\t\t\t\tjQuery._removeData( elem, type + \"queue\" );\n\t\t\t\tjQuery._removeData( elem, key );\n\t\t\t})\n\t\t});\n\t}\n});\n\njQuery.fn.extend({\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[0], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each(function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[0] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t});\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t});\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = jQuery._data( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n});\nvar pnum = (/[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/).source;\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar isHidden = function( elem, el ) {\n\t\t// isHidden might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\t\treturn jQuery.css( elem, \"display\" ) === \"none\" || !jQuery.contains( elem.ownerDocument, elem );\n\t};\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlength = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( jQuery.type( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\tjQuery.access( elems, fn, i, key[i], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !jQuery.isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tfn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn chainable ?\n\t\telems :\n\n\t\t// Gets\n\t\tbulk ?\n\t\t\tfn.call( elems ) :\n\t\t\tlength ? fn( elems[0], key ) : emptyGet;\n};\nvar rcheckableType = (/^(?:checkbox|radio)$/i);\n\n\n\n(function() {\n\t// Minified: var a,b,c\n\tvar input = document.createElement( \"input\" ),\n\t\tdiv = document.createElement( \"div\" ),\n\t\tfragment = document.createDocumentFragment();\n\n\t// Setup\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\n\t// IE strips leading whitespace when .innerHTML is used\n\tsupport.leadingWhitespace = div.firstChild.nodeType === 3;\n\n\t// Make sure that tbody elements aren't automatically inserted\n\t// IE will insert them into empty tables\n\tsupport.tbody = !div.getElementsByTagName( \"tbody\" ).length;\n\n\t// Make sure that link elements get serialized correctly by innerHTML\n\t// This requires a wrapper element in IE\n\tsupport.htmlSerialize = !!div.getElementsByTagName( \"link\" ).length;\n\n\t// Makes sure cloning an html5 element does not cause problems\n\t// Where outerHTML is undefined, this still works\n\tsupport.html5Clone =\n\t\tdocument.createElement( \"nav\" ).cloneNode( true ).outerHTML !== \"<:nav></:nav>\";\n\n\t// Check if a disconnected checkbox will retain its checked\n\t// value of true after appended to the DOM (IE6/7)\n\tinput.type = \"checkbox\";\n\tinput.checked = true;\n\tfragment.appendChild( input );\n\tsupport.appendChecked = input.checked;\n\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\t// Support: IE6-IE11+\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// #11217 - WebKit loses check when the name is after the checked attribute\n\tfragment.appendChild( div );\n\tdiv.innerHTML = \"<input type='radio' checked='checked' name='t'/>\";\n\n\t// Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3\n\t// old WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE<9\n\t// Opera does not clone events (and typeof div.attachEvent === undefined).\n\t// IE9-10 clones events bound via attachEvent, but they don't trigger with .click()\n\tsupport.noCloneEvent = true;\n\tif ( div.attachEvent ) {\n\t\tdiv.attachEvent( \"onclick\", function() {\n\t\t\tsupport.noCloneEvent = false;\n\t\t});\n\n\t\tdiv.cloneNode( true ).click();\n\t}\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n})();\n\n\n(function() {\n\tvar i, eventName,\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Support: IE<9 (lack submit/change bubble), Firefox 23+ (lack focusin event)\n\tfor ( i in { submit: true, change: true, focusin: true }) {\n\t\teventName = \"on\" + i;\n\n\t\tif ( !(support[ i + \"Bubbles\" ] = eventName in window) ) {\n\t\t\t// Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP)\n\t\t\tdiv.setAttribute( eventName, \"t\" );\n\t\t\tsupport[ i + \"Bubbles\" ] = div.attributes[ eventName ].expando === false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\nvar rformElems = /^(?:input|select|textarea)$/i,\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu)|click/,\n\trfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)$/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\t\tvar tmp, events, t, handleObjIn,\n\t\t\tspecial, eventHandle, handleObj,\n\t\t\thandlers, type, namespaces, origType,\n\t\t\telemData = jQuery._data( elem );\n\n\t\t// Don't attach events to noData or text/comment nodes (but allow plain objects)\n\t\tif ( !elemData ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !(events = elemData.events) ) {\n\t\t\tevents = elemData.events = {};\n\t\t}\n\t\tif ( !(eventHandle = elemData.handle) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== strundefined && (!e || jQuery.event.triggered !== e.type) ?\n\t\t\t\t\tjQuery.event.dispatch.apply( eventHandle.elem, arguments ) :\n\t\t\t\t\tundefined;\n\t\t\t};\n\t\t\t// Add elem as a property of the handle fn to prevent a memory leak with IE non-native events\n\t\t\teventHandle.elem = elem;\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend({\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join(\".\")\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !(handlers = events[ type ]) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener/attachEvent if the special events handler returns false\n\t\t\t\tif ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\t\t\t\t\t// Bind the global event handler to the element\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle, false );\n\n\t\t\t\t\t} else if ( elem.attachEvent ) {\n\t\t\t\t\t\telem.attachEvent( \"on\" + type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t\t// Nullify elem to prevent memory leaks in IE\n\t\telem = null;\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\t\tvar j, handleObj, tmp,\n\t\t\torigCount, t, events,\n\t\t\tspecial, handlers, type,\n\t\t\tnamespaces, origType,\n\t\t\telemData = jQuery.hasData( elem ) && jQuery._data( elem );\n\n\t\tif ( !elemData || !(events = elemData.events) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[2] && new RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector || selector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdelete elemData.handle;\n\n\t\t\t// removeData also checks for emptiness and clears the expando if empty\n\t\t\t// so use it instead of delete\n\t\t\tjQuery._removeData( elem, \"events\" );\n\t\t}\n\t},\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\t\tvar handle, ontype, cur,\n\t\t\tbubbleType, special, tmp, i,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split(\".\") : [];\n\n\t\tcur = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf(\".\") >= 0 ) {\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split(\".\");\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf(\":\") < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join(\".\");\n\t\tevent.namespace_re = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === (elem.ownerDocument || document) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {\n\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = ( jQuery._data( cur, \"events\" ) || {} )[ event.type ] && jQuery._data( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && jQuery.acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) &&\n\t\t\t\tjQuery.acceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name name as the event.\n\t\t\t\t// Can't use an .isFunction() check here because IE6/7 fails that test.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\t\t\t\t\ttry {\n\t\t\t\t\t\telem[ type ]();\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// IE<9 dies on focus/blur to hidden element (#1486,#12518)\n\t\t\t\t\t\t// only reproducible on winXP IE8 native, not IE9 in IE8 mode\n\t\t\t\t\t}\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\tdispatch: function( event ) {\n\n\t\t// Make a writable jQuery.Event from the native event object\n\t\tevent = jQuery.event.fix( event );\n\n\t\tvar i, ret, handleObj, matched, j,\n\t\t\thandlerQueue = [],\n\t\t\targs = slice.call( arguments ),\n\t\t\thandlers = ( jQuery._data( this, \"events\" ) || {} )[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[0] = event;\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// Triggered event must either 1) have no namespace, or\n\t\t\t\t// 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).\n\t\t\t\tif ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )\n\t\t\t\t\t\t\t.apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( (event.result = ret) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar sel, handleObj, matches, i,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\t// Black-hole SVG <use> instance trees (#13180)\n\t\t// Avoid non-left-click bubbling in Firefox (#3861)\n\t\tif ( delegateCount && cur.nodeType && (!event.button || event.type !== \"click\") ) {\n\n\t\t\t/* jshint eqeqeq: false */\n\t\t\tfor ( ; cur != this; cur = cur.parentNode || this ) {\n\t\t\t\t/* jshint eqeqeq: true */\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== \"click\") ) {\n\t\t\t\t\tmatches = [];\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matches[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatches[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) >= 0 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matches[ sel ] ) {\n\t\t\t\t\t\t\tmatches.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matches.length ) {\n\t\t\t\t\t\thandlerQueue.push({ elem: cur, handlers: matches });\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\tfix: function( event ) {\n\t\tif ( event[ jQuery.expando ] ) {\n\t\t\treturn event;\n\t\t}\n\n\t\t// Create a writable copy of the event object and normalize some properties\n\t\tvar i, prop, copy,\n\t\t\ttype = event.type,\n\t\t\toriginalEvent = event,\n\t\t\tfixHook = this.fixHooks[ type ];\n\n\t\tif ( !fixHook ) {\n\t\t\tthis.fixHooks[ type ] = fixHook =\n\t\t\t\trmouseEvent.test( type ) ? this.mouseHooks :\n\t\t\t\trkeyEvent.test( type ) ? this.keyHooks :\n\t\t\t\t{};\n\t\t}\n\t\tcopy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;\n\n\t\tevent = new jQuery.Event( originalEvent );\n\n\t\ti = copy.length;\n\t\twhile ( i-- ) {\n\t\t\tprop = copy[ i ];\n\t\t\tevent[ prop ] = originalEvent[ prop ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Fix target property (#1925)\n\t\tif ( !event.target ) {\n\t\t\tevent.target = originalEvent.srcElement || document;\n\t\t}\n\n\t\t// Support: Chrome 23+, Safari?\n\t\t// Target should not be a text node (#504, #13143)\n\t\tif ( event.target.nodeType === 3 ) {\n\t\t\tevent.target = event.target.parentNode;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// For mouse/key events, metaKey==false if it's undefined (#3368, #11328)\n\t\tevent.metaKey = !!event.metaKey;\n\n\t\treturn fixHook.filter ? fixHook.filter( event, originalEvent ) : event;\n\t},\n\n\t// Includes some event props shared by KeyEvent and MouseEvent\n\tprops: \"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which\".split(\" \"),\n\n\tfixHooks: {},\n\n\tkeyHooks: {\n\t\tprops: \"char charCode key keyCode\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\n\t\t\t// Add which for key events\n\t\t\tif ( event.which == null ) {\n\t\t\t\tevent.which = original.charCode != null ? original.charCode : original.keyCode;\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tmouseHooks: {\n\t\tprops: \"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\t\t\tvar body, eventDoc, doc,\n\t\t\t\tbutton = original.button,\n\t\t\t\tfromElement = original.fromElement;\n\n\t\t\t// Calculate pageX/Y if missing and clientX/Y available\n\t\t\tif ( event.pageX == null && original.clientX != null ) {\n\t\t\t\teventDoc = event.target.ownerDocument || document;\n\t\t\t\tdoc = eventDoc.documentElement;\n\t\t\t\tbody = eventDoc.body;\n\n\t\t\t\tevent.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );\n\t\t\t\tevent.pageY = original.clientY + ( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) - ( doc && doc.clientTop  || body && body.clientTop  || 0 );\n\t\t\t}\n\n\t\t\t// Add relatedTarget, if necessary\n\t\t\tif ( !event.relatedTarget && fromElement ) {\n\t\t\t\tevent.relatedTarget = fromElement === event.target ? original.toElement : fromElement;\n\t\t\t}\n\n\t\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\t\t// Note: button is not normalized, so don't use it\n\t\t\tif ( !event.which && button !== undefined ) {\n\t\t\t\tevent.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tspecial: {\n\t\tload: {\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tfocus: {\n\t\t\t// Fire native event if possible so blur/focus sequence is correct\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this !== safeActiveElement() && this.focus ) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tthis.focus();\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// If we error on focus to hidden element (#1486, #12518),\n\t\t\t\t\t\t// let .trigger() run the handlers\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusin\"\n\t\t},\n\t\tblur: {\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this === safeActiveElement() && this.blur ) {\n\t\t\t\t\tthis.blur();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusout\"\n\t\t},\n\t\tclick: {\n\t\t\t// For checkbox, fire native event so checked state will be right\n\t\t\ttrigger: function() {\n\t\t\t\tif ( jQuery.nodeName( this, \"input\" ) && this.type === \"checkbox\" && this.click ) {\n\t\t\t\t\tthis.click();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, don't fire native .click() on links\n\t\t\t_default: function( event ) {\n\t\t\t\treturn jQuery.nodeName( event.target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tsimulate: function( type, elem, event, bubble ) {\n\t\t// Piggyback on a donor event to simulate a different one.\n\t\t// Fake originalEvent to avoid donor's stopPropagation, but if the\n\t\t// simulated event prevents default then we do the same on the donor.\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true,\n\t\t\t\toriginalEvent: {}\n\t\t\t}\n\t\t);\n\t\tif ( bubble ) {\n\t\t\tjQuery.event.trigger( e, null, elem );\n\t\t} else {\n\t\t\tjQuery.event.dispatch.call( elem, e );\n\t\t}\n\t\tif ( e.isDefaultPrevented() ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\t}\n};\n\njQuery.removeEvent = document.removeEventListener ?\n\tfunction( elem, type, handle ) {\n\t\tif ( elem.removeEventListener ) {\n\t\t\telem.removeEventListener( type, handle, false );\n\t\t}\n\t} :\n\tfunction( elem, type, handle ) {\n\t\tvar name = \"on\" + type;\n\n\t\tif ( elem.detachEvent ) {\n\n\t\t\t// #8545, #7054, preventing memory leaks for custom events in IE6-8\n\t\t\t// detachEvent needed property on element, by name of that event, to properly expose it to GC\n\t\t\tif ( typeof elem[ name ] === strundefined ) {\n\t\t\t\telem[ name ] = null;\n\t\t\t}\n\n\t\t\telem.detachEvent( name, handle );\n\t\t}\n\t};\n\njQuery.Event = function( src, props ) {\n\t// Allow instantiation without the 'new' keyword\n\tif ( !(this instanceof jQuery.Event) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\t\t\t\t// Support: IE < 9, Android < 4.0\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || jQuery.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If preventDefault exists, run it on the original event\n\t\tif ( e.preventDefault ) {\n\t\t\te.preventDefault();\n\n\t\t// Support: IE\n\t\t// Otherwise set the returnValue property of the original event to false\n\t\t} else {\n\t\t\te.returnValue = false;\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\t\t// If stopPropagation exists, run it on the original event\n\t\tif ( e.stopPropagation ) {\n\t\t\te.stopPropagation();\n\t\t}\n\n\t\t// Support: IE\n\t\t// Set the cancelBubble property of the original event to true\n\t\te.cancelBubble = true;\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && e.stopImmediatePropagation ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\njQuery.each({\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mousenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || (related !== target && !jQuery.contains( target, related )) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n});\n\n// IE submit delegation\nif ( !support.submitBubbles ) {\n\n\tjQuery.event.special.submit = {\n\t\tsetup: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Lazy-add a submit handler when a descendant form may potentially be submitted\n\t\t\tjQuery.event.add( this, \"click._submit keypress._submit\", function( e ) {\n\t\t\t\t// Node name check avoids a VML-related crash in IE (#9807)\n\t\t\t\tvar elem = e.target,\n\t\t\t\t\tform = jQuery.nodeName( elem, \"input\" ) || jQuery.nodeName( elem, \"button\" ) ? elem.form : undefined;\n\t\t\t\tif ( form && !jQuery._data( form, \"submitBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( form, \"submit._submit\", function( event ) {\n\t\t\t\t\t\tevent._submit_bubble = true;\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( form, \"submitBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t\t// return undefined since we don't need an event listener\n\t\t},\n\n\t\tpostDispatch: function( event ) {\n\t\t\t// If form was submitted by the user, bubble the event up the tree\n\t\t\tif ( event._submit_bubble ) {\n\t\t\t\tdelete event._submit_bubble;\n\t\t\t\tif ( this.parentNode && !event.isTrigger ) {\n\t\t\t\t\tjQuery.event.simulate( \"submit\", this.parentNode, event, true );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Remove delegated handlers; cleanData eventually reaps submit handlers attached above\n\t\t\tjQuery.event.remove( this, \"._submit\" );\n\t\t}\n\t};\n}\n\n// IE change delegation and checkbox/radio fix\nif ( !support.changeBubbles ) {\n\n\tjQuery.event.special.change = {\n\n\t\tsetup: function() {\n\n\t\t\tif ( rformElems.test( this.nodeName ) ) {\n\t\t\t\t// IE doesn't fire change on a check/radio until blur; trigger it on click\n\t\t\t\t// after a propertychange. Eat the blur-change in special.change.handle.\n\t\t\t\t// This still fires onchange a second time for check/radio after blur.\n\t\t\t\tif ( this.type === \"checkbox\" || this.type === \"radio\" ) {\n\t\t\t\t\tjQuery.event.add( this, \"propertychange._change\", function( event ) {\n\t\t\t\t\t\tif ( event.originalEvent.propertyName === \"checked\" ) {\n\t\t\t\t\t\t\tthis._just_changed = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery.event.add( this, \"click._change\", function( event ) {\n\t\t\t\t\t\tif ( this._just_changed && !event.isTrigger ) {\n\t\t\t\t\t\t\tthis._just_changed = false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// Allow triggered, simulated change events (#11500)\n\t\t\t\t\t\tjQuery.event.simulate( \"change\", this, event, true );\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t// Delegated event; lazy-add a change handler on descendant inputs\n\t\t\tjQuery.event.add( this, \"beforeactivate._change\", function( e ) {\n\t\t\t\tvar elem = e.target;\n\n\t\t\t\tif ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, \"changeBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( elem, \"change._change\", function( event ) {\n\t\t\t\t\t\tif ( this.parentNode && !event.isSimulated && !event.isTrigger ) {\n\t\t\t\t\t\t\tjQuery.event.simulate( \"change\", this.parentNode, event, true );\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( elem, \"changeBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t},\n\n\t\thandle: function( event ) {\n\t\t\tvar elem = event.target;\n\n\t\t\t// Swallow native change events from checkbox/radio, we already triggered them above\n\t\t\tif ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== \"radio\" && elem.type !== \"checkbox\") ) {\n\t\t\t\treturn event.handleObj.handler.apply( this, arguments );\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\tjQuery.event.remove( this, \"._change\" );\n\n\t\t\treturn !rformElems.test( this.nodeName );\n\t\t}\n\t};\n}\n\n// Create \"bubbling\" focus and blur events\nif ( !support.focusinBubbles ) {\n\tjQuery.each({ focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );\n\t\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tjQuery._data( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tjQuery._removeData( doc, fix );\n\t\t\t\t} else {\n\t\t\t\t\tjQuery._data( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\njQuery.fn.extend({\n\n\ton: function( types, selector, data, fn, /*INTERNAL*/ one ) {\n\t\tvar type, origFn;\n\n\t\t// Types can be a map of types/handlers\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-Object, selector, data )\n\t\t\tif ( typeof selector !== \"string\" ) {\n\t\t\t\t// ( types-Object, data )\n\t\t\t\tdata = data || selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.on( type, selector, data, types[ type ], one );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( data == null && fn == null ) {\n\t\t\t// ( types, fn )\n\t\t\tfn = selector;\n\t\t\tdata = selector = undefined;\n\t\t} else if ( fn == null ) {\n\t\t\tif ( typeof selector === \"string\" ) {\n\t\t\t\t// ( types, selector, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = undefined;\n\t\t\t} else {\n\t\t\t\t// ( types, data, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t} else if ( !fn ) {\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( one === 1 ) {\n\t\t\torigFn = fn;\n\t\t\tfn = function( event ) {\n\t\t\t\t// Can use an empty set, since event contains the info\n\t\t\t\tjQuery().off( event );\n\t\t\t\treturn origFn.apply( this, arguments );\n\t\t\t};\n\t\t\t// Use same guid so caller can remove using origFn\n\t\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.add( this, types, fn, data, selector );\n\t\t});\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn this.on( types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ? handleObj.origType + \".\" + handleObj.namespace : handleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t});\n\t},\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t});\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[0];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n});\n\n\nfunction createSafeFragment( document ) {\n\tvar list = nodeNames.split( \"|\" ),\n\t\tsafeFrag = document.createDocumentFragment();\n\n\tif ( safeFrag.createElement ) {\n\t\twhile ( list.length ) {\n\t\t\tsafeFrag.createElement(\n\t\t\t\tlist.pop()\n\t\t\t);\n\t\t}\n\t}\n\treturn safeFrag;\n}\n\nvar nodeNames = \"abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|\" +\n\t\t\"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video\",\n\trinlinejQuery = / jQuery\\d+=\"(?:null|\\d+)\"/g,\n\trnoshimcache = new RegExp(\"<(?:\" + nodeNames + \")[\\\\s/>]\", \"i\"),\n\trleadingWhitespace = /^\\s+/,\n\trxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>]*)\\/>/gi,\n\trtagName = /<([\\w:]+)/,\n\trtbody = /<tbody/i,\n\trhtml = /<|&#?\\w+;/,\n\trnoInnerhtml = /<(?:script|style|link)/i,\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trscriptType = /^$|\\/(?:java|ecma)script/i,\n\trscriptTypeMasked = /^true\\/(.*)/,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g,\n\n\t// We have to close these tags to support XHTML (#13200)\n\twrapMap = {\n\t\toption: [ 1, \"<select multiple='multiple'>\", \"</select>\" ],\n\t\tlegend: [ 1, \"<fieldset>\", \"</fieldset>\" ],\n\t\tarea: [ 1, \"<map>\", \"</map>\" ],\n\t\tparam: [ 1, \"<object>\", \"</object>\" ],\n\t\tthead: [ 1, \"<table>\", \"</table>\" ],\n\t\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\t\tcol: [ 2, \"<table><tbody></tbody><colgroup>\", \"</colgroup></table>\" ],\n\t\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t\t// IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags,\n\t\t// unless wrapped in a div with non-breaking characters in front of it.\n\t\t_default: support.htmlSerialize ? [ 0, \"\", \"\" ] : [ 1, \"X<div>\", \"</div>\"  ]\n\t},\n\tsafeFragment = createSafeFragment( document ),\n\tfragmentDiv = safeFragment.appendChild( document.createElement(\"div\") );\n\nwrapMap.optgroup = wrapMap.option;\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\nfunction getAll( context, tag ) {\n\tvar elems, elem,\n\t\ti = 0,\n\t\tfound = typeof context.getElementsByTagName !== strundefined ? context.getElementsByTagName( tag || \"*\" ) :\n\t\t\ttypeof context.querySelectorAll !== strundefined ? context.querySelectorAll( tag || \"*\" ) :\n\t\t\tundefined;\n\n\tif ( !found ) {\n\t\tfor ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( !tag || jQuery.nodeName( elem, tag ) ) {\n\t\t\t\tfound.push( elem );\n\t\t\t} else {\n\t\t\t\tjQuery.merge( found, getAll( elem, tag ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn tag === undefined || tag && jQuery.nodeName( context, tag ) ?\n\t\tjQuery.merge( [ context ], found ) :\n\t\tfound;\n}\n\n// Used in buildFragment, fixes the defaultChecked property\nfunction fixDefaultChecked( elem ) {\n\tif ( rcheckableType.test( elem.type ) ) {\n\t\telem.defaultChecked = elem.checked;\n\t}\n}\n\n// Support: IE<8\n// Manipulating tables requires a tbody\nfunction manipulationTarget( elem, content ) {\n\treturn jQuery.nodeName( elem, \"table\" ) &&\n\t\tjQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ?\n\n\t\telem.getElementsByTagName(\"tbody\")[0] ||\n\t\t\telem.appendChild( elem.ownerDocument.createElement(\"tbody\") ) :\n\t\telem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = (jQuery.find.attr( elem, \"type\" ) !== null) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tvar match = rscriptTypeMasked.exec( elem.type );\n\tif ( match ) {\n\t\telem.type = match[1];\n\t} else {\n\t\telem.removeAttribute(\"type\");\n\t}\n\treturn elem;\n}\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar elem,\n\t\ti = 0;\n\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\tjQuery._data( elem, \"globalEval\", !refElements || jQuery._data( refElements[i], \"globalEval\" ) );\n\t}\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\n\tif ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {\n\t\treturn;\n\t}\n\n\tvar type, i, l,\n\t\toldData = jQuery._data( src ),\n\t\tcurData = jQuery._data( dest, oldData ),\n\t\tevents = oldData.events;\n\n\tif ( events ) {\n\t\tdelete curData.handle;\n\t\tcurData.events = {};\n\n\t\tfor ( type in events ) {\n\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t}\n\t\t}\n\t}\n\n\t// make the cloned public data object a copy from the original\n\tif ( curData.data ) {\n\t\tcurData.data = jQuery.extend( {}, curData.data );\n\t}\n}\n\nfunction fixCloneNodeIssues( src, dest ) {\n\tvar nodeName, e, data;\n\n\t// We do not need to do anything for non-Elements\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\tnodeName = dest.nodeName.toLowerCase();\n\n\t// IE6-8 copies events bound via attachEvent when using cloneNode.\n\tif ( !support.noCloneEvent && dest[ jQuery.expando ] ) {\n\t\tdata = jQuery._data( dest );\n\n\t\tfor ( e in data.events ) {\n\t\t\tjQuery.removeEvent( dest, e, data.handle );\n\t\t}\n\n\t\t// Event data gets referenced instead of copied if the expando gets copied too\n\t\tdest.removeAttribute( jQuery.expando );\n\t}\n\n\t// IE blanks contents when cloning scripts, and tries to evaluate newly-set text\n\tif ( nodeName === \"script\" && dest.text !== src.text ) {\n\t\tdisableScript( dest ).text = src.text;\n\t\trestoreScript( dest );\n\n\t// IE6-10 improperly clones children of object elements using classid.\n\t// IE10 throws NoModificationAllowedError if parent is null, #12132.\n\t} else if ( nodeName === \"object\" ) {\n\t\tif ( dest.parentNode ) {\n\t\t\tdest.outerHTML = src.outerHTML;\n\t\t}\n\n\t\t// This path appears unavoidable for IE9. When cloning an object\n\t\t// element in IE9, the outerHTML strategy above is not sufficient.\n\t\t// If the src has innerHTML and the destination does not,\n\t\t// copy the src.innerHTML into the dest.innerHTML. #10324\n\t\tif ( support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) {\n\t\t\tdest.innerHTML = src.innerHTML;\n\t\t}\n\n\t} else if ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\t// IE6-8 fails to persist the checked state of a cloned checkbox\n\t\t// or radio button. Worse, IE6-7 fail to give the cloned element\n\t\t// a checked appearance if the defaultChecked value isn't also set\n\n\t\tdest.defaultChecked = dest.checked = src.checked;\n\n\t\t// IE6-7 get confused and end up setting the value of a cloned\n\t\t// checkbox/radio button to an empty string instead of \"on\"\n\t\tif ( dest.value !== src.value ) {\n\t\t\tdest.value = src.value;\n\t\t}\n\n\t// IE6-8 fails to return the selected option to the default selected\n\t// state when cloning options\n\t} else if ( nodeName === \"option\" ) {\n\t\tdest.defaultSelected = dest.selected = src.defaultSelected;\n\n\t// IE6-8 fails to set the defaultValue to the correct value when\n\t// cloning other types of input fields\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\njQuery.extend({\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar destElements, node, clone, i, srcElements,\n\t\t\tinPage = jQuery.contains( elem.ownerDocument, elem );\n\n\t\tif ( support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( \"<\" + elem.nodeName + \">\" ) ) {\n\t\t\tclone = elem.cloneNode( true );\n\n\t\t// IE<=8 does not properly clone detached, unknown element nodes\n\t\t} else {\n\t\t\tfragmentDiv.innerHTML = elem.outerHTML;\n\t\t\tfragmentDiv.removeChild( clone = fragmentDiv.firstChild );\n\t\t}\n\n\t\tif ( (!support.noCloneEvent || !support.noCloneChecked) &&\n\t\t\t\t(elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\t// Fix all IE cloning issues\n\t\t\tfor ( i = 0; (node = srcElements[i]) != null; ++i ) {\n\t\t\t\t// Ensure that the destination node is not null; Fixes #9587\n\t\t\t\tif ( destElements[i] ) {\n\t\t\t\t\tfixCloneNodeIssues( node, destElements[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0; (node = srcElements[i]) != null; i++ ) {\n\t\t\t\t\tcloneCopyEvent( node, destElements[i] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\tdestElements = srcElements = node = null;\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tbuildFragment: function( elems, context, scripts, selection ) {\n\t\tvar j, elem, contains,\n\t\t\ttmp, tag, tbody, wrap,\n\t\t\tl = elems.length,\n\n\t\t\t// Ensure a safe fragment\n\t\t\tsafe = createSafeFragment( context ),\n\n\t\t\tnodes = [],\n\t\t\ti = 0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\telem = elems[ i ];\n\n\t\t\tif ( elem || elem === 0 ) {\n\n\t\t\t\t// Add nodes directly\n\t\t\t\tif ( jQuery.type( elem ) === \"object\" ) {\n\t\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t\t// Convert non-html into a text node\n\t\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t\t// Convert html into DOM nodes\n\t\t\t\t} else {\n\t\t\t\t\ttmp = tmp || safe.appendChild( context.createElement(\"div\") );\n\n\t\t\t\t\t// Deserialize a standard representation\n\t\t\t\t\ttag = (rtagName.exec( elem ) || [ \"\", \"\" ])[ 1 ].toLowerCase();\n\t\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\n\t\t\t\t\ttmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, \"<$1></$2>\" ) + wrap[2];\n\n\t\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\t\tj = wrap[0];\n\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Manually add leading whitespace removed by IE\n\t\t\t\t\tif ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {\n\t\t\t\t\t\tnodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove IE's autoinserted <tbody> from table fragments\n\t\t\t\t\tif ( !support.tbody ) {\n\n\t\t\t\t\t\t// String was a <table>, *may* have spurious <tbody>\n\t\t\t\t\t\telem = tag === \"table\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\ttmp.firstChild :\n\n\t\t\t\t\t\t\t// String was a bare <thead> or <tfoot>\n\t\t\t\t\t\t\twrap[1] === \"<table>\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\t\ttmp :\n\t\t\t\t\t\t\t\t0;\n\n\t\t\t\t\t\tj = elem && elem.childNodes.length;\n\t\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\t\tif ( jQuery.nodeName( (tbody = elem.childNodes[j]), \"tbody\" ) && !tbody.childNodes.length ) {\n\t\t\t\t\t\t\t\telem.removeChild( tbody );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t\t// Fix #12392 for WebKit and IE > 9\n\t\t\t\t\ttmp.textContent = \"\";\n\n\t\t\t\t\t// Fix #12392 for oldIE\n\t\t\t\t\twhile ( tmp.firstChild ) {\n\t\t\t\t\t\ttmp.removeChild( tmp.firstChild );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remember the top-level container for proper cleanup\n\t\t\t\t\ttmp = safe.lastChild;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Fix #11356: Clear elements from fragment\n\t\tif ( tmp ) {\n\t\t\tsafe.removeChild( tmp );\n\t\t}\n\n\t\t// Reset defaultChecked for any radios and checkboxes\n\t\t// about to be appended to the DOM in IE 6/7 (#8060)\n\t\tif ( !support.appendChecked ) {\n\t\t\tjQuery.grep( getAll( nodes, \"input\" ), fixDefaultChecked );\n\t\t}\n\n\t\ti = 0;\n\t\twhile ( (elem = nodes[ i++ ]) ) {\n\n\t\t\t// #4087 - If origin and destination elements are the same, and this is\n\t\t\t// that element, do not do anything\n\t\t\tif ( selection && jQuery.inArray( elem, selection ) !== -1 ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tcontains = jQuery.contains( elem.ownerDocument, elem );\n\n\t\t\t// Append to fragment\n\t\t\ttmp = getAll( safe.appendChild( elem ), \"script\" );\n\n\t\t\t// Preserve script evaluation history\n\t\t\tif ( contains ) {\n\t\t\t\tsetGlobalEval( tmp );\n\t\t\t}\n\n\t\t\t// Capture executables\n\t\t\tif ( scripts ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (elem = tmp[ j++ ]) ) {\n\t\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\t\tscripts.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\ttmp = null;\n\n\t\treturn safe;\n\t},\n\n\tcleanData: function( elems, /* internal */ acceptData ) {\n\t\tvar elem, type, id, data,\n\t\t\ti = 0,\n\t\t\tinternalKey = jQuery.expando,\n\t\t\tcache = jQuery.cache,\n\t\t\tdeleteExpando = support.deleteExpando,\n\t\t\tspecial = jQuery.event.special;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( acceptData || jQuery.acceptData( elem ) ) {\n\n\t\t\t\tid = elem[ internalKey ];\n\t\t\t\tdata = id && cache[ id ];\n\n\t\t\t\tif ( data ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove cache only if it was not already removed by jQuery.event.remove\n\t\t\t\t\tif ( cache[ id ] ) {\n\n\t\t\t\t\t\tdelete cache[ id ];\n\n\t\t\t\t\t\t// IE does not allow us to delete expando properties from nodes,\n\t\t\t\t\t\t// nor does it have a removeAttribute function on Document nodes;\n\t\t\t\t\t\t// we must handle all of these cases\n\t\t\t\t\t\tif ( deleteExpando ) {\n\t\t\t\t\t\t\tdelete elem[ internalKey ];\n\n\t\t\t\t\t\t} else if ( typeof elem.removeAttribute !== strundefined ) {\n\t\t\t\t\t\t\telem.removeAttribute( internalKey );\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\telem[ internalKey ] = null;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tdeletedIds.push( id );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\njQuery.fn.extend({\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t});\n\t},\n\n\tprepend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t});\n\t},\n\n\tbefore: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t});\n\t},\n\n\tafter: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t});\n\t},\n\n\tremove: function( selector, keepData /* Internal Use Only */ ) {\n\t\tvar elem,\n\t\t\telems = selector ? jQuery.filter( selector, this ) : this,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\n\t\t\tif ( !keepData && elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem ) );\n\t\t\t}\n\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\tif ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\t\tsetGlobalEval( getAll( elem, \"script\" ) );\n\t\t\t\t}\n\t\t\t\telem.parentNode.removeChild( elem );\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = this[i]) != null; i++ ) {\n\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t}\n\n\t\t\t// Remove any remaining nodes\n\t\t\twhile ( elem.firstChild ) {\n\t\t\t\telem.removeChild( elem.firstChild );\n\t\t\t}\n\n\t\t\t// If this is a select, ensure that it displays empty (#12336)\n\t\t\t// Support: IE<9\n\t\t\tif ( elem.options && jQuery.nodeName( elem, \"select\" ) ) {\n\t\t\t\telem.options.length = 0;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map(function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t});\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined ) {\n\t\t\t\treturn elem.nodeType === 1 ?\n\t\t\t\t\telem.innerHTML.replace( rinlinejQuery, \"\" ) :\n\t\t\t\t\tundefined;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t( support.htmlSerialize || !rnoshimcache.test( value )  ) &&\n\t\t\t\t( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&\n\t\t\t\t!wrapMap[ (rtagName.exec( value ) || [ \"\", \"\" ])[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = value.replace( rxhtmlTag, \"<$1></$2>\" );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor (; i < l; i++ ) {\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\telem = this[i] || {};\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar arg = arguments[ 0 ];\n\n\t\t// Make the changes, replacing each context element with the new content\n\t\tthis.domManip( arguments, function( elem ) {\n\t\t\targ = this.parentNode;\n\n\t\t\tjQuery.cleanData( getAll( this ) );\n\n\t\t\tif ( arg ) {\n\t\t\t\targ.replaceChild( elem, this );\n\t\t\t}\n\t\t});\n\n\t\t// Force removal if there was no new content (e.g., from empty arguments)\n\t\treturn arg && (arg.length || arg.nodeType) ? this : this.remove();\n\t},\n\n\tdetach: function( selector ) {\n\t\treturn this.remove( selector, true );\n\t},\n\n\tdomManip: function( args, callback ) {\n\n\t\t// Flatten any nested arrays\n\t\targs = concat.apply( [], args );\n\n\t\tvar first, node, hasScripts,\n\t\t\tscripts, doc, fragment,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tset = this,\n\t\t\tiNoClone = l - 1,\n\t\t\tvalue = args[0],\n\t\t\tisFunction = jQuery.isFunction( value );\n\n\t\t// We can't cloneNode fragments that contain checked, in WebKit\n\t\tif ( isFunction ||\n\t\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\t\treturn this.each(function( index ) {\n\t\t\t\tvar self = set.eq( index );\n\t\t\t\tif ( isFunction ) {\n\t\t\t\t\targs[0] = value.call( this, index, self.html() );\n\t\t\t\t}\n\t\t\t\tself.domManip( args, callback );\n\t\t\t});\n\t\t}\n\n\t\tif ( l ) {\n\t\t\tfragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );\n\t\t\tfirst = fragment.firstChild;\n\n\t\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\t\tfragment = first;\n\t\t\t}\n\n\t\t\tif ( first ) {\n\t\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\t\thasScripts = scripts.length;\n\n\t\t\t\t// Use the original fragment for the last item instead of the first because it can end up\n\t\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\tnode = fragment;\n\n\t\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tcallback.call( this[i], node, i );\n\t\t\t\t}\n\n\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t\t// Reenable scripts\n\t\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t\t!jQuery._data( node, \"globalEval\" ) && jQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\t\tif ( node.src ) {\n\t\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\t\tif ( jQuery._evalUrl ) {\n\t\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.globalEval( ( node.text || node.textContent || node.innerHTML || \"\" ).replace( rcleanScript, \"\" ) );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Fix #11809: Avoid leaking memory\n\t\t\t\tfragment = first = null;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t}\n});\n\njQuery.each({\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\ti = 0,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone(true);\n\t\t\tjQuery( insert[i] )[ original ]( elems );\n\n\t\t\t// Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get()\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\n\n\nvar iframe,\n\telemdisplay = {};\n\n/**\n * Retrieve the actual display of a element\n * @param {String} name nodeName of the element\n * @param {Object} doc Document object\n */\n// Called only from within defaultDisplay\nfunction actualDisplay( name, doc ) {\n\tvar style,\n\t\telem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),\n\n\t\t// getDefaultComputedStyle might be reliably used only on attached element\n\t\tdisplay = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ?\n\n\t\t\t// Use of this method is a temporary fix (more like optmization) until something better comes along,\n\t\t\t// since it was removed from specification and supported only in FF\n\t\t\tstyle.display : jQuery.css( elem[ 0 ], \"display\" );\n\n\t// We don't have any data stored on the element,\n\t// so use \"detach\" method as fast way to get rid of the element\n\telem.detach();\n\n\treturn display;\n}\n\n/**\n * Try to determine the default display value of an element\n * @param {String} nodeName\n */\nfunction defaultDisplay( nodeName ) {\n\tvar doc = document,\n\t\tdisplay = elemdisplay[ nodeName ];\n\n\tif ( !display ) {\n\t\tdisplay = actualDisplay( nodeName, doc );\n\n\t\t// If the simple way fails, read from inside an iframe\n\t\tif ( display === \"none\" || !display ) {\n\n\t\t\t// Use the already-created iframe if possible\n\t\t\tiframe = (iframe || jQuery( \"<iframe frameborder='0' width='0' height='0'/>\" )).appendTo( doc.documentElement );\n\n\t\t\t// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse\n\t\t\tdoc = ( iframe[ 0 ].contentWindow || iframe[ 0 ].contentDocument ).document;\n\n\t\t\t// Support: IE\n\t\t\tdoc.write();\n\t\t\tdoc.close();\n\n\t\t\tdisplay = actualDisplay( nodeName, doc );\n\t\t\tiframe.detach();\n\t\t}\n\n\t\t// Store the correct default display\n\t\telemdisplay[ nodeName ] = display;\n\t}\n\n\treturn display;\n}\n\n\n(function() {\n\tvar shrinkWrapBlocksVal;\n\n\tsupport.shrinkWrapBlocks = function() {\n\t\tif ( shrinkWrapBlocksVal != null ) {\n\t\t\treturn shrinkWrapBlocksVal;\n\t\t}\n\n\t\t// Will be changed later if needed.\n\t\tshrinkWrapBlocksVal = false;\n\n\t\t// Minified: var b,c,d\n\t\tvar div, body, container;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\t// Support: IE6\n\t\t// Check if elements with layout shrink-wrap their children\n\t\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t\t// Reset CSS: box-sizing; display; margin; border\n\t\t\tdiv.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;\" +\n\t\t\t\t\"padding:1px;width:1px;zoom:1\";\n\t\t\tdiv.appendChild( document.createElement( \"div\" ) ).style.width = \"5px\";\n\t\t\tshrinkWrapBlocksVal = div.offsetWidth !== 3;\n\t\t}\n\n\t\tbody.removeChild( container );\n\n\t\treturn shrinkWrapBlocksVal;\n\t};\n\n})();\nvar rmargin = (/^margin/);\n\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\n\n\nvar getStyles, curCSS,\n\trposition = /^(top|right|bottom|left)$/;\n\nif ( window.getComputedStyle ) {\n\tgetStyles = function( elem ) {\n\t\t// Support: IE<=11+, Firefox<=30+ (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tif ( elem.ownerDocument.defaultView.opener ) {\n\t\t\treturn elem.ownerDocument.defaultView.getComputedStyle( elem, null );\n\t\t}\n\n\t\treturn window.getComputedStyle( elem, null );\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar width, minWidth, maxWidth, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\n\t\t// getPropertyValue is only needed for .css('filter') in IE9, see #12537\n\t\tret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;\n\n\t\tif ( computed ) {\n\n\t\t\tif ( ret === \"\" && !jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\tret = jQuery.style( elem, name );\n\t\t\t}\n\n\t\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t\t// Chrome < 17 and Safari 5.0 uses \"computed value\" instead of \"used value\" for margin-right\n\t\t\t// Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels\n\t\t\t// this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values\n\t\t\tif ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {\n\n\t\t\t\t// Remember the original values\n\t\t\t\twidth = style.width;\n\t\t\t\tminWidth = style.minWidth;\n\t\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t\t// Put in the new values to get a computed value out\n\t\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\t\tret = computed.width;\n\n\t\t\t\t// Revert the changed values\n\t\t\t\tstyle.width = width;\n\t\t\t\tstyle.minWidth = minWidth;\n\t\t\t\tstyle.maxWidth = maxWidth;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\";\n\t};\n} else if ( document.documentElement.currentStyle ) {\n\tgetStyles = function( elem ) {\n\t\treturn elem.currentStyle;\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar left, rs, rsLeft, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\t\tret = computed ? computed[ name ] : undefined;\n\n\t\t// Avoid setting ret to empty string here\n\t\t// so we don't default to auto\n\t\tif ( ret == null && style && style[ name ] ) {\n\t\t\tret = style[ name ];\n\t\t}\n\n\t\t// From the awesome hack by Dean Edwards\n\t\t// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291\n\n\t\t// If we're not dealing with a regular pixel number\n\t\t// but a number that has a weird ending, we need to convert it to pixels\n\t\t// but not position css attributes, as those are proportional to the parent element instead\n\t\t// and we can't measure the parent instead because it might trigger a \"stacking dolls\" problem\n\t\tif ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\tleft = style.left;\n\t\t\trs = elem.runtimeStyle;\n\t\t\trsLeft = rs && rs.left;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = elem.currentStyle.left;\n\t\t\t}\n\t\t\tstyle.left = name === \"fontSize\" ? \"1em\" : ret;\n\t\t\tret = style.pixelLeft + \"px\";\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.left = left;\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = rsLeft;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\" || \"auto\";\n\t};\n}\n\n\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tvar condition = conditionFn();\n\n\t\t\tif ( condition == null ) {\n\t\t\t\t// The test was not ready at this point; screw the hook this time\n\t\t\t\t// but check again when needed next time.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( condition ) {\n\t\t\t\t// Hook not needed (or it's not possible to use it due to missing dependency),\n\t\t\t\t// remove it.\n\t\t\t\t// Since there are no other hooks for marginRight, remove the whole object.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\n\t\t\treturn (this.get = hookFn).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\n(function() {\n\t// Minified: var b,c,d,e,f,g, h,i\n\tvar div, style, a, pixelPositionVal, boxSizingReliableVal,\n\t\treliableHiddenOffsetsVal, reliableMarginRightVal;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName( \"a\" )[ 0 ];\n\tstyle = a && a.style;\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !style ) {\n\t\treturn;\n\t}\n\n\tstyle.cssText = \"float:left;opacity:.5\";\n\n\t// Support: IE<9\n\t// Make sure that element opacity exists (as opposed to filter)\n\tsupport.opacity = style.opacity === \"0.5\";\n\n\t// Verify style float existence\n\t// (IE uses styleFloat instead of cssFloat)\n\tsupport.cssFloat = !!style.cssFloat;\n\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\t// Support: Firefox<29, Android 2.3\n\t// Vendor-prefix box-sizing\n\tsupport.boxSizing = style.boxSizing === \"\" || style.MozBoxSizing === \"\" ||\n\t\tstyle.WebkitBoxSizing === \"\";\n\n\tjQuery.extend(support, {\n\t\treliableHiddenOffsets: function() {\n\t\t\tif ( reliableHiddenOffsetsVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableHiddenOffsetsVal;\n\t\t},\n\n\t\tboxSizingReliable: function() {\n\t\t\tif ( boxSizingReliableVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\n\t\tpixelPosition: function() {\n\t\t\tif ( pixelPositionVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn pixelPositionVal;\n\t\t},\n\n\t\t// Support: Android 2.3\n\t\treliableMarginRight: function() {\n\t\t\tif ( reliableMarginRightVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableMarginRightVal;\n\t\t}\n\t});\n\n\tfunction computeStyleTests() {\n\t\t// Minified: var b,c,d,j\n\t\tvar div, body, container, contents;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\tdiv.style.cssText =\n\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t// Vendor-prefix box-sizing\n\t\t\t\"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;\" +\n\t\t\t\"box-sizing:border-box;display:block;margin-top:1%;top:1%;\" +\n\t\t\t\"border:1px;padding:1px;width:4px;position:absolute\";\n\n\t\t// Support: IE<9\n\t\t// Assume reasonable values in the absence of getComputedStyle\n\t\tpixelPositionVal = boxSizingReliableVal = false;\n\t\treliableMarginRightVal = true;\n\n\t\t// Check for getComputedStyle so that this code is not run in IE<9.\n\t\tif ( window.getComputedStyle ) {\n\t\t\tpixelPositionVal = ( window.getComputedStyle( div, null ) || {} ).top !== \"1%\";\n\t\t\tboxSizingReliableVal =\n\t\t\t\t( window.getComputedStyle( div, null ) || { width: \"4px\" } ).width === \"4px\";\n\n\t\t\t// Support: Android 2.3\n\t\t\t// Div with explicit width and no margin-right incorrectly\n\t\t\t// gets computed margin-right based on width of container (#3333)\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\tcontents = div.appendChild( document.createElement( \"div\" ) );\n\n\t\t\t// Reset CSS: box-sizing; display; margin; border; padding\n\t\t\tcontents.style.cssText = div.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;padding:0\";\n\t\t\tcontents.style.marginRight = contents.style.width = \"0\";\n\t\t\tdiv.style.width = \"1px\";\n\n\t\t\treliableMarginRightVal =\n\t\t\t\t!parseFloat( ( window.getComputedStyle( contents, null ) || {} ).marginRight );\n\n\t\t\tdiv.removeChild( contents );\n\t\t}\n\n\t\t// Support: IE8\n\t\t// Check if table cells still have offsetWidth/Height when they are set\n\t\t// to display:none and there are still other visible table cells in a\n\t\t// table row; if so, offsetWidth/Height are not reliable for use when\n\t\t// determining if an element has been hidden directly using\n\t\t// display:none (it is still safe to use offsets if a parent element is\n\t\t// hidden; don safety goggles and see bug #4512 for more information).\n\t\tdiv.innerHTML = \"<table><tr><td></td><td>t</td></tr></table>\";\n\t\tcontents = div.getElementsByTagName( \"td\" );\n\t\tcontents[ 0 ].style.cssText = \"margin:0;border:0;padding:0;display:none\";\n\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\tif ( reliableHiddenOffsetsVal ) {\n\t\t\tcontents[ 0 ].style.display = \"\";\n\t\t\tcontents[ 1 ].style.display = \"none\";\n\t\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\t}\n\n\t\tbody.removeChild( container );\n\t}\n\n})();\n\n\n// A method for quickly swapping in/out CSS properties to get correct calculations.\njQuery.swap = function( elem, options, callback, args ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.apply( elem, args || [] );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar\n\t\tralpha = /alpha\\([^)]*\\)/i,\n\tropacity = /opacity\\s*=\\s*([^)]*)/,\n\n\t// swappable if display is none or starts with table except \"table\", \"table-cell\", or \"table-caption\"\n\t// see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trnumsplit = new RegExp( \"^(\" + pnum + \")(.*)$\", \"i\" ),\n\trrelNum = new RegExp( \"^([+-])=(\" + pnum + \")\", \"i\" ),\n\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t},\n\n\tcssPrefixes = [ \"Webkit\", \"O\", \"Moz\", \"ms\" ];\n\n\n// return a css property mapped to a potentially vendor prefixed property\nfunction vendorPropName( style, name ) {\n\n\t// shortcut for names that are not vendor prefixed\n\tif ( name in style ) {\n\t\treturn name;\n\t}\n\n\t// check for vendor prefixed names\n\tvar capName = name.charAt(0).toUpperCase() + name.slice(1),\n\t\torigName = name,\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in style ) {\n\t\t\treturn name;\n\t\t}\n\t}\n\n\treturn origName;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem, hidden,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\" );\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\t\t\t// Reset the inline display of this element to learn if it is\n\t\t\t// being hidden by cascaded rules or not\n\t\t\tif ( !values[ index ] && display === \"none\" ) {\n\t\t\t\telem.style.display = \"\";\n\t\t\t}\n\n\t\t\t// Set elements which have been overridden with display: none\n\t\t\t// in a stylesheet to whatever the default browser style is\n\t\t\t// for such an element\n\t\t\tif ( elem.style.display === \"\" && isHidden( elem ) ) {\n\t\t\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\", defaultDisplay(elem.nodeName) );\n\t\t\t}\n\t\t} else {\n\t\t\thidden = isHidden( elem );\n\n\t\t\tif ( display && display !== \"none\" || !hidden ) {\n\t\t\t\tjQuery._data( elem, \"olddisplay\", hidden ? display : jQuery.css( elem, \"display\" ) );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of most of the elements in a second loop\n\t// to avoid the constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( !show || elem.style.display === \"none\" || elem.style.display === \"\" ) {\n\t\t\telem.style.display = show ? values[ index ] || \"\" : \"none\";\n\t\t}\n\t}\n\n\treturn elements;\n}\n\nfunction setPositiveNumber( elem, value, subtract ) {\n\tvar matches = rnumsplit.exec( value );\n\treturn matches ?\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {\n\tvar i = extra === ( isBorderBox ? \"border\" : \"content\" ) ?\n\t\t// If we already have the right measurement, avoid augmentation\n\t\t4 :\n\t\t// Otherwise initialize for horizontal or vertical properties\n\t\tname === \"width\" ? 1 : 0,\n\n\t\tval = 0;\n\n\tfor ( ; i < 4; i += 2 ) {\n\t\t// both box models exclude margin, so add it if we want it\n\t\tif ( extra === \"margin\" ) {\n\t\t\tval += jQuery.css( elem, extra + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\tif ( isBorderBox ) {\n\t\t\t// border-box includes padding, so remove it if we want content\n\t\t\tif ( extra === \"content\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// at this point, extra isn't border nor margin, so remove border\n\t\t\tif ( extra !== \"margin\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t} else {\n\t\t\t// at this point, extra isn't content, so add padding\n\t\t\tval += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// at this point, extra isn't content nor padding, so add border\n\t\t\tif ( extra !== \"padding\" ) {\n\t\t\t\tval += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn val;\n}\n\nfunction getWidthOrHeight( elem, name, extra ) {\n\n\t// Start with offset property, which is equivalent to the border-box value\n\tvar valueIsBorderBox = true,\n\t\tval = name === \"width\" ? elem.offsetWidth : elem.offsetHeight,\n\t\tstyles = getStyles( elem ),\n\t\tisBorderBox = support.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t// some non-html elements return undefined for offsetWidth, so check for null/undefined\n\t// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285\n\t// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668\n\tif ( val <= 0 || val == null ) {\n\t\t// Fall back to computed then uncomputed css if necessary\n\t\tval = curCSS( elem, name, styles );\n\t\tif ( val < 0 || val == null ) {\n\t\t\tval = elem.style[ name ];\n\t\t}\n\n\t\t// Computed unit is not pixels. Stop here and return.\n\t\tif ( rnumnonpx.test(val) ) {\n\t\t\treturn val;\n\t\t}\n\n\t\t// we need the check for style in case a browser which returns unreliable values\n\t\t// for getComputedStyle silently falls back to the reliable elem.style\n\t\tvalueIsBorderBox = isBorderBox && ( support.boxSizingReliable() || val === elem.style[ name ] );\n\n\t\t// Normalize \"\", auto, and prepare for extra\n\t\tval = parseFloat( val ) || 0;\n\t}\n\n\t// use the active box-sizing model to add/subtract irrelevant styles\n\treturn ( val +\n\t\taugmentWidthOrHeight(\n\t\t\telem,\n\t\t\tname,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend({\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {\n\t\t// normalize float css property\n\t\t\"float\": support.cssFloat ? \"cssFloat\" : \"styleFloat\"\n\t},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = jQuery.camelCase( name ),\n\t\t\tstyle = elem.style;\n\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// convert relative number strings (+= or -=) to relative numbers. #7345\n\t\t\tif ( type === \"string\" && (ret = rrelNum.exec( value )) ) {\n\t\t\t\tvalue = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set. See: #7116\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add 'px' to the (except for certain CSS properties)\n\t\t\tif ( type === \"number\" && !jQuery.cssNumber[ origName ] ) {\n\t\t\t\tvalue += \"px\";\n\t\t\t}\n\n\t\t\t// Fixes #8908, it can be done more correctly by specifing setters in cssHooks,\n\t\t\t// but it would mean to define eight (for every problematic property) identical functions\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf(\"background\") === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !(\"set\" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {\n\n\t\t\t\t// Support: IE\n\t\t\t\t// Swallow errors from 'invalid' CSS values (#5509)\n\t\t\t\ttry {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t} else {\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar num, val, hooks,\n\t\t\torigName = jQuery.camelCase( name );\n\n\t\t// Make sure that we're working with the right name\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t//convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Return, converting to number if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || jQuery.isNumeric( num ) ? num || 0 : val;\n\t\t}\n\t\treturn val;\n\t}\n});\n\njQuery.each([ \"height\", \"width\" ], function( i, name ) {\n\tjQuery.cssHooks[ name ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\t\t\t\t// certain elements can have dimension info if we invisibly show them\n\t\t\t\t// however, it must have a current display style that would benefit from this\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) && elem.offsetWidth === 0 ?\n\t\t\t\t\tjQuery.swap( elem, cssShow, function() {\n\t\t\t\t\t\treturn getWidthOrHeight( elem, name, extra );\n\t\t\t\t\t}) :\n\t\t\t\t\tgetWidthOrHeight( elem, name, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar styles = extra && getStyles( elem );\n\t\t\treturn setPositiveNumber( elem, value, extra ?\n\t\t\t\taugmentWidthOrHeight(\n\t\t\t\t\telem,\n\t\t\t\t\tname,\n\t\t\t\t\textra,\n\t\t\t\t\tsupport.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\t\tstyles\n\t\t\t\t) : 0\n\t\t\t);\n\t\t}\n\t};\n});\n\nif ( !support.opacity ) {\n\tjQuery.cssHooks.opacity = {\n\t\tget: function( elem, computed ) {\n\t\t\t// IE uses filters for opacity\n\t\t\treturn ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || \"\" ) ?\n\t\t\t\t( 0.01 * parseFloat( RegExp.$1 ) ) + \"\" :\n\t\t\t\tcomputed ? \"1\" : \"\";\n\t\t},\n\n\t\tset: function( elem, value ) {\n\t\t\tvar style = elem.style,\n\t\t\t\tcurrentStyle = elem.currentStyle,\n\t\t\t\topacity = jQuery.isNumeric( value ) ? \"alpha(opacity=\" + value * 100 + \")\" : \"\",\n\t\t\t\tfilter = currentStyle && currentStyle.filter || style.filter || \"\";\n\n\t\t\t// IE has trouble with opacity if it does not have layout\n\t\t\t// Force it by setting the zoom level\n\t\t\tstyle.zoom = 1;\n\n\t\t\t// if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652\n\t\t\t// if value === \"\", then remove inline opacity #12685\n\t\t\tif ( ( value >= 1 || value === \"\" ) &&\n\t\t\t\t\tjQuery.trim( filter.replace( ralpha, \"\" ) ) === \"\" &&\n\t\t\t\t\tstyle.removeAttribute ) {\n\n\t\t\t\t// Setting style.filter to null, \"\" & \" \" still leave \"filter:\" in the cssText\n\t\t\t\t// if \"filter:\" is present at all, clearType is disabled, we want to avoid this\n\t\t\t\t// style.removeAttribute is IE Only, but so apparently is this code path...\n\t\t\t\tstyle.removeAttribute( \"filter\" );\n\n\t\t\t\t// if there is no filter style applied in a css rule or unset inline opacity, we are done\n\t\t\t\tif ( value === \"\" || currentStyle && !currentStyle.filter ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// otherwise, set new filter values\n\t\t\tstyle.filter = ralpha.test( filter ) ?\n\t\t\t\tfilter.replace( ralpha, opacity ) :\n\t\t\t\tfilter + \" \" + opacity;\n\t\t}\n\t};\n}\n\njQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\t// Work around by temporarily setting element display to inline-block\n\t\t\treturn jQuery.swap( elem, { \"display\": \"inline-block\" },\n\t\t\t\tcurCSS, [ elem, \"marginRight\" ] );\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each({\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split(\" \") : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( !rmargin.test( prefix ) ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n});\n\njQuery.fn.extend({\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( jQuery.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t},\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( isHidden( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t});\n\t}\n});\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || \"swing\";\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\tif ( tween.elem[ tween.prop ] != null &&\n\t\t\t\t(!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails\n\t\t\t// so, simple values such as \"10px\" are parsed to Float.\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\t\t\t// use step hook for back compat - use cssHook if its there - use .style if its\n\t\t\t// available and use plain properties where available\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9\n// Panic based approach to setting things on disconnected nodes\n\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t}\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back Compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, timerId,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trfxnum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" ),\n\trrun = /queueHooks$/,\n\tanimationPrefilters = [ defaultPrefilter ],\n\ttweeners = {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value ),\n\t\t\t\ttarget = tween.cur(),\n\t\t\t\tparts = rfxnum.exec( value ),\n\t\t\t\tunit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t\t\t// Starting value computation is required for potential unit mismatches\n\t\t\t\tstart = ( jQuery.cssNumber[ prop ] || unit !== \"px\" && +target ) &&\n\t\t\t\t\trfxnum.exec( jQuery.css( tween.elem, prop ) ),\n\t\t\t\tscale = 1,\n\t\t\t\tmaxIterations = 20;\n\n\t\t\tif ( start && start[ 3 ] !== unit ) {\n\t\t\t\t// Trust units reported by jQuery.css\n\t\t\t\tunit = unit || start[ 3 ];\n\n\t\t\t\t// Make sure we update the tween properties later on\n\t\t\t\tparts = parts || [];\n\n\t\t\t\t// Iteratively approximate from a nonzero starting point\n\t\t\t\tstart = +target || 1;\n\n\t\t\t\tdo {\n\t\t\t\t\t// If previous iteration zeroed out, double until we get *something*\n\t\t\t\t\t// Use a string for doubling factor so we don't accidentally see scale as unchanged below\n\t\t\t\t\tscale = scale || \".5\";\n\n\t\t\t\t\t// Adjust and apply\n\t\t\t\t\tstart = start / scale;\n\t\t\t\t\tjQuery.style( tween.elem, prop, start + unit );\n\n\t\t\t\t// Update scale, tolerating zero or NaN from tween.cur()\n\t\t\t\t// And breaking the loop if scale is unchanged or perfect, or if we've just had enough\n\t\t\t\t} while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );\n\t\t\t}\n\n\t\t\t// Update tween properties\n\t\t\tif ( parts ) {\n\t\t\t\tstart = tween.start = +start || +target || 0;\n\t\t\t\ttween.unit = unit;\n\t\t\t\t// If a +=/-= token was provided, we're doing a relative animation\n\t\t\t\ttween.end = parts[ 1 ] ?\n\t\t\t\t\tstart + ( parts[ 1 ] + 1 ) * parts[ 2 ] :\n\t\t\t\t\t+parts[ 2 ];\n\t\t\t}\n\n\t\t\treturn tween;\n\t\t} ]\n\t};\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\tsetTimeout(function() {\n\t\tfxNow = undefined;\n\t});\n\treturn ( fxNow = jQuery.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\tattrs = { height: type },\n\t\ti = 0;\n\n\t// if we include width, step value is 1 to do all cssExpand values,\n\t// if we don't include width, step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4 ; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( tweeners[ prop ] || [] ).concat( tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( (tween = collection[ index ].call( animation, prop, value )) ) {\n\n\t\t\t// we're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\t/* jshint validthis: true */\n\tvar prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHidden( elem ),\n\t\tdataShow = jQuery._data( elem, \"fxshow\" );\n\n\t// handle queue: false promises\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always(function() {\n\t\t\t// doing this makes sure that the complete handler will be called\n\t\t\t// before this completes\n\t\t\tanim.always(function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t}\n\n\t// height/width overflow pass\n\tif ( elem.nodeType === 1 && ( \"height\" in props || \"width\" in props ) ) {\n\t\t// Make sure that nothing sneaks out\n\t\t// Record all 3 overflow attributes because IE does not\n\t\t// change the overflow attribute when overflowX and\n\t\t// overflowY are set to the same value\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Set display property to inline-block for height/width\n\t\t// animations on inline elements that are having width/height animated\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\n\t\t// Test default display if display is currently \"none\"\n\t\tcheckDisplay = display === \"none\" ?\n\t\t\tjQuery._data( elem, \"olddisplay\" ) || defaultDisplay( elem.nodeName ) : display;\n\n\t\tif ( checkDisplay === \"inline\" && jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t// inline-level elements accept inline-block;\n\t\t\t// block-level elements need to be inline with layout\n\t\t\tif ( !support.inlineBlockNeedsLayout || defaultDisplay( elem.nodeName ) === \"inline\" ) {\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t} else {\n\t\t\t\tstyle.zoom = 1;\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tif ( !support.shrinkWrapBlocks() ) {\n\t\t\tanim.always(function() {\n\t\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t\t});\n\t\t}\n\t}\n\n\t// show/hide pass\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.exec( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\n\t\t// Any non-fx value stops us from restoring the original display value\n\t\t} else {\n\t\t\tdisplay = undefined;\n\t\t}\n\t}\n\n\tif ( !jQuery.isEmptyObject( orig ) ) {\n\t\tif ( dataShow ) {\n\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\thidden = dataShow.hidden;\n\t\t\t}\n\t\t} else {\n\t\t\tdataShow = jQuery._data( elem, \"fxshow\", {} );\n\t\t}\n\n\t\t// store state if its toggle - enables .stop().toggle() to \"reverse\"\n\t\tif ( toggle ) {\n\t\t\tdataShow.hidden = !hidden;\n\t\t}\n\t\tif ( hidden ) {\n\t\t\tjQuery( elem ).show();\n\t\t} else {\n\t\t\tanim.done(function() {\n\t\t\t\tjQuery( elem ).hide();\n\t\t\t});\n\t\t}\n\t\tanim.done(function() {\n\t\t\tvar prop;\n\t\t\tjQuery._removeData( elem, \"fxshow\" );\n\t\t\tfor ( prop in orig ) {\n\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t}\n\t\t});\n\t\tfor ( prop in orig ) {\n\t\t\ttween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\n\t\t\tif ( !( prop in dataShow ) ) {\n\t\t\t\tdataShow[ prop ] = tween.start;\n\t\t\t\tif ( hidden ) {\n\t\t\t\t\ttween.end = tween.start;\n\t\t\t\t\ttween.start = prop === \"width\" || prop === \"height\" ? 1 : 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t// If this is a noop like .hide().hide(), restore an overwritten display value\n\t} else if ( (display === \"none\" ? defaultDisplay( elem.nodeName ) : display) === \"inline\" ) {\n\t\tstyle.display = display;\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = jQuery.camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( jQuery.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// not quite $.extend, this wont overwrite keys already present.\n\t\t\t// also - reusing 'index' from above because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = animationPrefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\t\t\t// don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t}),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\t\t\t\t// archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ]);\n\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t} else {\n\t\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\t\tanimation = deferred.promise({\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, { specialEasing: {} }, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\t\t\t\t\t// if we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// resolve when we played the last frame\n\t\t\t\t// otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t}),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length ; index++ ) {\n\t\tresult = animationPrefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( jQuery.isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t})\n\t);\n\n\t// attach callbacks from options\n\treturn animation.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\ttweener: function( props, callback ) {\n\t\tif ( jQuery.isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.split(\" \");\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length ; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\ttweeners[ prop ] = tweeners[ prop ] || [];\n\t\t\ttweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tanimationPrefilters.unshift( callback );\n\t\t} else {\n\t\t\tanimationPrefilters.push( callback );\n\t\t}\n\t}\n});\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tjQuery.isFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !jQuery.isFunction( easing ) && easing\n\t};\n\n\topt.duration = jQuery.fx.off ? 0 : typeof opt.duration === \"number\" ? opt.duration :\n\t\topt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;\n\n\t// normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( jQuery.isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend({\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHidden ).css( \"opacity\", 0 ).show()\n\n\t\t\t// animate to the value specified\n\t\t\t.end().animate({ opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || jQuery._data( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue && type !== false ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = jQuery._data( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// start the next in the queue if the last step wasn't forced\n\t\t\t// timers currently will call their complete callbacks, which will dequeue\n\t\t\t// but only if they were gotoEnd\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t});\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tvar index,\n\t\t\t\tdata = jQuery._data( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t});\n\t}\n});\n\njQuery.each([ \"toggle\", \"show\", \"hide\" ], function( i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n});\n\n// Generate shortcuts for custom animations\njQuery.each({\n\tslideDown: genFx(\"show\"),\n\tslideUp: genFx(\"hide\"),\n\tslideToggle: genFx(\"toggle\"),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n});\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ttimers = jQuery.timers,\n\t\ti = 0;\n\n\tfxNow = jQuery.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\t\t// Checks the timer has not already been removed\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tif ( timer() ) {\n\t\tjQuery.fx.start();\n\t} else {\n\t\tjQuery.timers.pop();\n\t}\n};\n\njQuery.fx.interval = 13;\n\njQuery.fx.start = function() {\n\tif ( !timerId ) {\n\t\ttimerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );\n\t}\n};\n\njQuery.fx.stop = function() {\n\tclearInterval( timerId );\n\ttimerId = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\tclearTimeout( timeout );\n\t\t};\n\t});\n};\n\n\n(function() {\n\t// Minified: var a,b,c,d,e\n\tvar input, div, select, a, opt;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.setAttribute( \"className\", \"t\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName(\"a\")[ 0 ];\n\n\t// First batch of tests.\n\tselect = document.createElement(\"select\");\n\topt = select.appendChild( document.createElement(\"option\") );\n\tinput = div.getElementsByTagName(\"input\")[ 0 ];\n\n\ta.style.cssText = \"top:1px\";\n\n\t// Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)\n\tsupport.getSetAttribute = div.className !== \"t\";\n\n\t// Get the style information from getAttribute\n\t// (IE uses .cssText instead)\n\tsupport.style = /top/.test( a.getAttribute(\"style\") );\n\n\t// Make sure that URLs aren't manipulated\n\t// (IE normalizes it by default)\n\tsupport.hrefNormalized = a.getAttribute(\"href\") === \"/a\";\n\n\t// Check the default checkbox/radio value (\"\" on WebKit; \"on\" elsewhere)\n\tsupport.checkOn = !!input.value;\n\n\t// Make sure that a selected-by-default option has a working selected property.\n\t// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)\n\tsupport.optSelected = opt.selected;\n\n\t// Tests for enctype support on a form (#6743)\n\tsupport.enctype = !!document.createElement(\"form\").enctype;\n\n\t// Make sure that the options inside disabled selects aren't marked as disabled\n\t// (WebKit marks them as disabled)\n\tselect.disabled = true;\n\tsupport.optDisabled = !opt.disabled;\n\n\t// Support: IE8 only\n\t// Check if we can trust getAttribute(\"value\")\n\tinput = document.createElement( \"input\" );\n\tinput.setAttribute( \"value\", \"\" );\n\tsupport.input = input.getAttribute( \"value\" ) === \"\";\n\n\t// Check if an input maintains its value after becoming a radio\n\tinput.value = \"t\";\n\tinput.setAttribute( \"type\", \"radio\" );\n\tsupport.radioValue = input.value === \"t\";\n})();\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend({\n\tval: function( value ) {\n\t\tvar hooks, ret, isFunction,\n\t\t\telem = this[0];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, \"value\" )) !== undefined ) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\treturn typeof ret === \"string\" ?\n\t\t\t\t\t// handle most common string cases\n\t\t\t\t\tret.replace(rreturn, \"\") :\n\t\t\t\t\t// handle cases where value is null/undef or number\n\t\t\t\t\tret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tisFunction = jQuery.isFunction( value );\n\n\t\treturn this.each(function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( isFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\t\t\t} else if ( jQuery.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t});\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !(\"set\" in hooks) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\t\t\t\t\t// Support: IE10-11+\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\tjQuery.trim( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\" || index < 0,\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length,\n\t\t\t\t\ti = index < 0 ?\n\t\t\t\t\t\tmax :\n\t\t\t\t\t\tone ? index : 0;\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// oldIE doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t( support.optDisabled ? !option.disabled : option.getAttribute(\"disabled\") === null ) &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\tif ( jQuery.inArray( jQuery.valHooks.option.get( option ), values ) >= 0 ) {\n\n\t\t\t\t\t\t// Support: IE6\n\t\t\t\t\t\t// When new option element is added to select box we need to\n\t\t\t\t\t\t// force reflow of newly added node in order to workaround delay\n\t\t\t\t\t\t// of initialization properties\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\toption.selected = optionSet = true;\n\n\t\t\t\t\t\t} catch ( _ ) {\n\n\t\t\t\t\t\t\t// Will be executed only in IE6\n\t\t\t\t\t\t\toption.scrollHeight;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\toption.selected = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\n\t\t\t\treturn options;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Radios and checkboxes getter/setter\njQuery.each([ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( jQuery.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\t// Support: Webkit\n\t\t\t// \"\" is returned instead of \"on\" if a value isn't specified\n\t\t\treturn elem.getAttribute(\"value\") === null ? \"on\" : elem.value;\n\t\t};\n\t}\n});\n\n\n\n\nvar nodeHook, boolHook,\n\tattrHandle = jQuery.expr.attrHandle,\n\truseDefault = /^(?:checked|selected)$/i,\n\tgetSetAttribute = support.getSetAttribute,\n\tgetSetInput = support.input;\n\njQuery.fn.extend({\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tattr: function( elem, name, value ) {\n\t\tvar hooks, ret,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set attributes on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === strundefined ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// All attributes are lowercase\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\tname = name.toLowerCase();\n\t\t\thooks = jQuery.attrHooks[ name ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\n\t\t\t} else if ( hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {\n\t\t\t\treturn ret;\n\n\t\t\t} else {\n\t\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\t\treturn value;\n\t\t\t}\n\n\t\t} else if ( hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ) {\n\t\t\treturn ret;\n\n\t\t} else {\n\t\t\tret = jQuery.find.attr( elem, name );\n\n\t\t\t// Non-existent attributes return null, we normalize to undefined\n\t\t\treturn ret == null ?\n\t\t\t\tundefined :\n\t\t\t\tret;\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name, propName,\n\t\t\ti = 0,\n\t\t\tattrNames = value && value.match( rnotwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( (name = attrNames[i++]) ) {\n\t\t\t\tpropName = jQuery.propFix[ name ] || name;\n\n\t\t\t\t// Boolean attributes get special treatment (#10870)\n\t\t\t\tif ( jQuery.expr.match.bool.test( name ) ) {\n\t\t\t\t\t// Set corresponding property to false\n\t\t\t\t\tif ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t// Also clear defaultChecked/defaultSelected (if appropriate)\n\t\t\t\t\t} else {\n\t\t\t\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] =\n\t\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t}\n\n\t\t\t\t// See #9699 for explanation of this approach (setting first, then removal)\n\t\t\t\t} else {\n\t\t\t\t\tjQuery.attr( elem, name, \"\" );\n\t\t\t\t}\n\n\t\t\t\telem.removeAttribute( getSetAttribute ? name : propName );\n\t\t\t}\n\t\t}\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" && jQuery.nodeName(elem, \"input\") ) {\n\t\t\t\t\t// Setting the type on a radio button after the value resets the value in IE6-9\n\t\t\t\t\t// Reset value to default in case type is set after value during creation\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Hook for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t// IE<8 needs the *property* name\n\t\t\telem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name );\n\n\t\t// Use defaultChecked and defaultSelected for oldIE\n\t\t} else {\n\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] = elem[ name ] = true;\n\t\t}\n\n\t\treturn name;\n\t}\n};\n\n// Retrieve booleans specially\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( i, name ) {\n\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ?\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret, handle;\n\t\t\tif ( !isXML ) {\n\t\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\t\thandle = attrHandle[ name ];\n\t\t\t\tattrHandle[ name ] = ret;\n\t\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t\tattrHandle[ name ] = handle;\n\t\t\t}\n\t\t\treturn ret;\n\t\t} :\n\t\tfunction( elem, name, isXML ) {\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn elem[ jQuery.camelCase( \"default-\" + name ) ] ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n});\n\n// fix oldIE attroperties\nif ( !getSetInput || !getSetAttribute ) {\n\tjQuery.attrHooks.value = {\n\t\tset: function( elem, value, name ) {\n\t\t\tif ( jQuery.nodeName( elem, \"input\" ) ) {\n\t\t\t\t// Does not return so that setAttribute is also used\n\t\t\t\telem.defaultValue = value;\n\t\t\t} else {\n\t\t\t\t// Use nodeHook if defined (#1954); otherwise setAttribute is fine\n\t\t\t\treturn nodeHook && nodeHook.set( elem, value, name );\n\t\t\t}\n\t\t}\n\t};\n}\n\n// IE6/7 do not support getting/setting some attributes with get/setAttribute\nif ( !getSetAttribute ) {\n\n\t// Use this for any attribute in IE6/7\n\t// This fixes almost every IE6/7 issue\n\tnodeHook = {\n\t\tset: function( elem, value, name ) {\n\t\t\t// Set the existing or create a new attribute node\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( !ret ) {\n\t\t\t\telem.setAttributeNode(\n\t\t\t\t\t(ret = elem.ownerDocument.createAttribute( name ))\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tret.value = value += \"\";\n\n\t\t\t// Break association with cloned elements by also using setAttribute (#9646)\n\t\t\tif ( name === \"value\" || value === elem.getAttribute( name ) ) {\n\t\t\t\treturn value;\n\t\t\t}\n\t\t}\n\t};\n\n\t// Some attributes are constructed with empty-string values when not defined\n\tattrHandle.id = attrHandle.name = attrHandle.coords =\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret;\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn (ret = elem.getAttributeNode( name )) && ret.value !== \"\" ?\n\t\t\t\t\tret.value :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n\n\t// Fixing value retrieval on a button requires this module\n\tjQuery.valHooks.button = {\n\t\tget: function( elem, name ) {\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( ret && ret.specified ) {\n\t\t\t\treturn ret.value;\n\t\t\t}\n\t\t},\n\t\tset: nodeHook.set\n\t};\n\n\t// Set contenteditable to false on removals(#10429)\n\t// Setting to empty string throws an error as an invalid value\n\tjQuery.attrHooks.contenteditable = {\n\t\tset: function( elem, value, name ) {\n\t\t\tnodeHook.set( elem, value === \"\" ? false : value, name );\n\t\t}\n\t};\n\n\t// Set width and height to auto instead of 0 on empty string( Bug #8150 )\n\t// This is for removals\n\tjQuery.each([ \"width\", \"height\" ], function( i, name ) {\n\t\tjQuery.attrHooks[ name ] = {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( value === \"\" ) {\n\t\t\t\t\telem.setAttribute( name, \"auto\" );\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\nif ( !support.style ) {\n\tjQuery.attrHooks.style = {\n\t\tget: function( elem ) {\n\t\t\t// Return undefined in the case of empty string\n\t\t\t// Note: IE uppercases css property names, but if we were to .toLowerCase()\n\t\t\t// .cssText, that would destroy case senstitivity in URL's, like in \"background\"\n\t\t\treturn elem.style.cssText || undefined;\n\t\t},\n\t\tset: function( elem, value ) {\n\t\t\treturn ( elem.style.cssText = value + \"\" );\n\t\t}\n\t};\n}\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button|object)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend({\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\tname = jQuery.propFix[ name ] || name;\n\t\treturn this.each(function() {\n\t\t\t// try/catch handles cases where IE balks (such as removing a property on window)\n\t\t\ttry {\n\t\t\t\tthis[ name ] = undefined;\n\t\t\t\tdelete this[ name ];\n\t\t\t} catch( e ) {}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t},\n\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks, notxml,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set properties on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tnotxml = nType !== 1 || !jQuery.isXMLDoc( elem );\n\n\t\tif ( notxml ) {\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\treturn hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?\n\t\t\t\tret :\n\t\t\t\t( elem[ name ] = value );\n\n\t\t} else {\n\t\t\treturn hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ?\n\t\t\t\tret :\n\t\t\t\telem[ name ];\n\t\t}\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\t\t\t\t// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set\n\t\t\t\t// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\treturn tabindex ?\n\t\t\t\t\tparseInt( tabindex, 10 ) :\n\t\t\t\t\trfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?\n\t\t\t\t\t\t0 :\n\t\t\t\t\t\t-1;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Some attributes require a special call on IE\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !support.hrefNormalized ) {\n\t// href/src property should get the full normalized URL (#10299/#12915)\n\tjQuery.each([ \"href\", \"src\" ], function( i, name ) {\n\t\tjQuery.propHooks[ name ] = {\n\t\t\tget: function( elem ) {\n\t\t\t\treturn elem.getAttribute( name, 4 );\n\t\t\t}\n\t\t};\n\t});\n}\n\n// Support: Safari, IE9+\n// mis-reports the default selected property of an option\n// Accessing the parent's selectedIndex property fixes it\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\t// Make sure that it also works with optgroups, see #5701\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\t};\n}\n\njQuery.each([\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n});\n\n// IE6/7 call enctype encoding\nif ( !support.enctype ) {\n\tjQuery.propFix.enctype = \"encoding\";\n}\n\n\n\n\nvar rclass = /[\\t\\r\\n\\f]/g;\n\njQuery.fn.extend({\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\n\t\tif ( proceed ) {\n\t\t\t// The disjunction here is for better compressibility (see removeClass)\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\" \"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = jQuery.trim( cur );\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = arguments.length === 0 || typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\t\tif ( proceed ) {\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\"\"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) >= 0 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = value ? jQuery.trim( cur ) : \"\";\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value;\n\n\t\tif ( typeof stateVal === \"boolean\" && type === \"string\" ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tjQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( type === \"string\" ) {\n\t\t\t\t// toggle individual class names\n\t\t\t\tvar className,\n\t\t\t\t\ti = 0,\n\t\t\t\t\tself = jQuery( this ),\n\t\t\t\t\tclassNames = value.match( rnotwhite ) || [];\n\n\t\t\t\twhile ( (className = classNames[ i++ ]) ) {\n\t\t\t\t\t// check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( type === strundefined || type === \"boolean\" ) {\n\t\t\t\tif ( this.className ) {\n\t\t\t\t\t// store className if set\n\t\t\t\t\tjQuery._data( this, \"__className__\", this.className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed \"false\",\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tthis.className = this.className || value === false ? \"\" : jQuery._data( this, \"__className__\" ) || \"\";\n\t\t\t}\n\t\t});\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className = \" \" + selector + \" \",\n\t\t\ti = 0,\n\t\t\tl = this.length;\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tif ( this[i].nodeType === 1 && (\" \" + this[i].className + \" \").replace(rclass, \" \").indexOf( className ) >= 0 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n});\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\njQuery.each( (\"blur focus focusin focusout load resize scroll unload click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup error contextmenu\").split(\" \"), function( i, name ) {\n\n\t// Handle event binding\n\tjQuery.fn[ name ] = function( data, fn ) {\n\t\treturn arguments.length > 0 ?\n\t\t\tthis.on( name, null, data, fn ) :\n\t\t\tthis.trigger( name );\n\t};\n});\n\njQuery.fn.extend({\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t},\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ? this.off( selector, \"**\" ) : this.off( types, selector || \"**\", fn );\n\t}\n});\n\n\nvar nonce = jQuery.now();\n\nvar rquery = (/\\?/);\n\n\n\nvar rvalidtokens = /(,)|(\\[|{)|(}|])|\"(?:[^\"\\\\\\r\\n]|\\\\[\"\\\\\\/bfnrt]|\\\\u[\\da-fA-F]{4})*\"\\s*:?|true|false|null|-?(?!0\\d)\\d+(?:\\.\\d+|)(?:[eE][+-]?\\d+|)/g;\n\njQuery.parseJSON = function( data ) {\n\t// Attempt to parse using the native JSON parser first\n\tif ( window.JSON && window.JSON.parse ) {\n\t\t// Support: Android 2.3\n\t\t// Workaround failure to string-cast null input\n\t\treturn window.JSON.parse( data + \"\" );\n\t}\n\n\tvar requireNonComma,\n\t\tdepth = null,\n\t\tstr = jQuery.trim( data + \"\" );\n\n\t// Guard against invalid (and possibly dangerous) input by ensuring that nothing remains\n\t// after removing valid tokens\n\treturn str && !jQuery.trim( str.replace( rvalidtokens, function( token, comma, open, close ) {\n\n\t\t// Force termination if we see a misplaced comma\n\t\tif ( requireNonComma && comma ) {\n\t\t\tdepth = 0;\n\t\t}\n\n\t\t// Perform no more replacements after returning to outermost depth\n\t\tif ( depth === 0 ) {\n\t\t\treturn token;\n\t\t}\n\n\t\t// Commas must not follow \"[\", \"{\", or \",\"\n\t\trequireNonComma = open || comma;\n\n\t\t// Determine new depth\n\t\t// array/object open (\"[\" or \"{\"): depth += true - false (increment)\n\t\t// array/object close (\"]\" or \"}\"): depth += false - true (decrement)\n\t\t// other cases (\",\" or primitive): depth += true - true (numeric cast)\n\t\tdepth += !close - !open;\n\n\t\t// Remove this token\n\t\treturn \"\";\n\t}) ) ?\n\t\t( Function( \"return \" + str ) )() :\n\t\tjQuery.error( \"Invalid JSON: \" + data );\n};\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml, tmp;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\ttry {\n\t\tif ( window.DOMParser ) { // Standard\n\t\t\ttmp = new DOMParser();\n\t\t\txml = tmp.parseFromString( data, \"text/xml\" );\n\t\t} else { // IE\n\t\t\txml = new ActiveXObject( \"Microsoft.XMLDOM\" );\n\t\t\txml.async = \"false\";\n\t\t\txml.loadXML( data );\n\t\t}\n\t} catch( e ) {\n\t\txml = undefined;\n\t}\n\tif ( !xml || !xml.documentElement || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\t// Document location\n\tajaxLocParts,\n\tajaxLocation,\n\n\trhash = /#.*$/,\n\trts = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)\\r?$/mg, // IE leaves an \\r character at EOL\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\trurl = /^([\\w.+-]+:)(?:\\/\\/(?:[^\\/?#]*@|)([^\\/?#:]*)(?::(\\d+)|)|)/,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat(\"*\");\n\n// #8138, IE may throw an exception when accessing\n// a field from window.location if document.domain has been set\ntry {\n\tajaxLocation = location.href;\n} catch( e ) {\n\t// Use the href attribute of an A element\n\t// since IE will modify it given document.location\n\tajaxLocation = document.createElement( \"a\" );\n\tajaxLocation.href = \"\";\n\tajaxLocation = ajaxLocation.href;\n}\n\n// Segment location into parts\najaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];\n\n\t\tif ( jQuery.isFunction( func ) ) {\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( (dataType = dataTypes[i++]) ) {\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType.charAt( 0 ) === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t});\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar deep, key,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\tvar firstDataType, ct, finalDataType, type,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader(\"Content-Type\");\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[0] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s[ \"throws\" ] ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn { state: \"parsererror\", error: conv ? e : \"No conversion from \" + prev + \" to \" + current };\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend({\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: ajaxLocation,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /xml/,\n\t\t\thtml: /html/,\n\t\t\tjson: /json/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": jQuery.parseJSON,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar // Cross-domain detection vars\n\t\t\tparts,\n\t\t\t// Loop variable\n\t\t\ti,\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\t\t\t// Response headers as string\n\t\t\tresponseHeadersString,\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\ttransport,\n\t\t\t// Response headers\n\t\t\tresponseHeaders,\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\tjQuery.event,\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks(\"once memory\"),\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\t\t\t// The jqXHR state\n\t\t\tstate = 0,\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( state === 2 ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( (match = rheaders.exec( responseHeadersString )) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[1].toLowerCase() ] = match[ 2 ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match;\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn state === 2 ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tvar lname = name.toLowerCase();\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\tname = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\t// Lazy-add the new callback in a way that preserves old ones\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR ).complete = completeDeferred.add;\n\t\tjqXHR.success = jqXHR.done;\n\t\tjqXHR.error = jqXHR.fail;\n\n\t\t// Remove hash character (#7531: and string promotion)\n\t\t// Add protocol if not provided (#5866: IE7 issue with protocol-less urls)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || ajaxLocation ) + \"\" ).replace( rhash, \"\" ).replace( rprotocol, ajaxLocParts[ 1 ] + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = jQuery.trim( s.dataType || \"*\" ).toLowerCase().match( rnotwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when we have a protocol:host:port mismatch\n\t\tif ( s.crossDomain == null ) {\n\t\t\tparts = rurl.exec( s.url.toLowerCase() );\n\t\t\ts.crossDomain = !!( parts &&\n\t\t\t\t( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||\n\t\t\t\t\t( parts[ 3 ] || ( parts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) !==\n\t\t\t\t\t\t( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) )\n\t\t\t);\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( state === 2 ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger(\"ajaxStart\");\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\tcacheURL = s.url;\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// If data is available, append data to url\n\t\t\tif ( s.data ) {\n\t\t\t\tcacheURL = ( s.url += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data );\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add anti-cache in url if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\ts.url = rts.test( cacheURL ) ?\n\n\t\t\t\t\t// If there is already a '_' parameter, set its value\n\t\t\t\t\tcacheURL.replace( rts, \"$1_=\" + nonce++ ) :\n\n\t\t\t\t\t// Otherwise add one to the end\n\t\t\t\t\tcacheURL + ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + nonce++;\n\t\t\t}\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tfor ( i in { success: 1, error: 1, complete: 1 } ) {\n\t\t\tjqXHR[ i ]( s[ i ] );\n\t\t}\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = setTimeout(function() {\n\t\t\t\t\tjqXHR.abort(\"timeout\");\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tstate = 1;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\t\t\t\t// Propagate exception as error if not done\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tdone( -1, e );\n\t\t\t\t// Simply rethrow otherwise\n\t\t\t\t} else {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Called once\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// State is \"done\" now\n\t\t\tstate = 2;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\tclearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"Last-Modified\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"etag\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// We extract error from statusText\n\t\t\t\t// then normalize statusText and status for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger(\"ajaxStop\");\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n});\n\njQuery.each( [ \"get\", \"post\" ], function( i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\t\t// shift arguments if data argument was omitted\n\t\tif ( jQuery.isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\treturn jQuery.ajax({\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t});\n\t};\n});\n\n\njQuery._evalUrl = function( url ) {\n\treturn jQuery.ajax({\n\t\turl: url,\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tasync: false,\n\t\tglobal: false,\n\t\t\"throws\": true\n\t});\n};\n\n\njQuery.fn.extend({\n\twrapAll: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapAll( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\tif ( this[0] ) {\n\t\t\t// The elements to wrap the target around\n\t\t\tvar wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);\n\n\t\t\tif ( this[0].parentNode ) {\n\t\t\t\twrap.insertBefore( this[0] );\n\t\t\t}\n\n\t\t\twrap.map(function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstChild && elem.firstChild.nodeType === 1 ) {\n\t\t\t\t\telem = elem.firstChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t}).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapInner( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t});\n\t},\n\n\twrap: function( html ) {\n\t\tvar isFunction = jQuery.isFunction( html );\n\n\t\treturn this.each(function(i) {\n\t\t\tjQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );\n\t\t});\n\t},\n\n\tunwrap: function() {\n\t\treturn this.parent().each(function() {\n\t\t\tif ( !jQuery.nodeName( this, \"body\" ) ) {\n\t\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t\t}\n\t\t}).end();\n\t}\n});\n\n\njQuery.expr.filters.hidden = function( elem ) {\n\t// Support: Opera <= 12.12\n\t// Opera reports offsetWidths and offsetHeights less than zero on some elements\n\treturn elem.offsetWidth <= 0 && elem.offsetHeight <= 0 ||\n\t\t(!support.reliableHiddenOffsets() &&\n\t\t\t((elem.style && elem.style.display) || jQuery.css( elem, \"display\" )) === \"none\");\n};\n\njQuery.expr.filters.visible = function( elem ) {\n\treturn !jQuery.expr.filters.hidden( elem );\n};\n\n\n\n\nvar r20 = /%20/g,\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( jQuery.isArray( obj ) ) {\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams( prefix + \"[\" + ( typeof v === \"object\" ? i : \"\" ) + \"]\", v, traditional, add );\n\t\t\t}\n\t\t});\n\n\t} else if ( !traditional && jQuery.type( obj ) === \"object\" ) {\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, value ) {\n\t\t\t// If value is a function, invoke it and return its value\n\t\t\tvalue = jQuery.isFunction( value ) ? value() : ( value == null ? \"\" : value );\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" + encodeURIComponent( value );\n\t\t};\n\n\t// Set traditional to true for jQuery <= 1.3.2 behavior.\n\tif ( traditional === undefined ) {\n\t\ttraditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t});\n\n\t} else {\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" ).replace( r20, \"+\" );\n};\n\njQuery.fn.extend({\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map(function() {\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t})\n\t\t.filter(function() {\n\t\t\tvar type = this.type;\n\t\t\t// Use .is(\":disabled\") so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t})\n\t\t.map(function( i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\treturn val == null ?\n\t\t\t\tnull :\n\t\t\t\tjQuery.isArray( val ) ?\n\t\t\t\t\tjQuery.map( val, function( val ) {\n\t\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t\t}) :\n\t\t\t\t\t{ name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t}).get();\n\t}\n});\n\n\n// Create the request object\n// (This is still attached to ajaxSettings for backward compatibility)\njQuery.ajaxSettings.xhr = window.ActiveXObject !== undefined ?\n\t// Support: IE6+\n\tfunction() {\n\n\t\t// XHR cannot access local files, always use ActiveX for that case\n\t\treturn !this.isLocal &&\n\n\t\t\t// Support: IE7-8\n\t\t\t// oldIE XHR does not support non-RFC2616 methods (#13240)\n\t\t\t// See http://msdn.microsoft.com/en-us/library/ie/ms536648(v=vs.85).aspx\n\t\t\t// and http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9\n\t\t\t// Although this check for six methods instead of eight\n\t\t\t// since IE also does not support \"trace\" and \"connect\"\n\t\t\t/^(get|post|head|put|delete|options)$/i.test( this.type ) &&\n\n\t\t\tcreateStandardXHR() || createActiveXHR();\n\t} :\n\t// For all other browsers, use the standard XMLHttpRequest object\n\tcreateStandardXHR;\n\nvar xhrId = 0,\n\txhrCallbacks = {},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\n// Support: IE<10\n// Open requests must be manually aborted on unload (#5280)\n// See https://support.microsoft.com/kb/2856746 for more info\nif ( window.attachEvent ) {\n\twindow.attachEvent( \"onunload\", function() {\n\t\tfor ( var key in xhrCallbacks ) {\n\t\t\txhrCallbacks[ key ]( undefined, true );\n\t\t}\n\t});\n}\n\n// Determine support properties\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nxhrSupported = support.ajax = !!xhrSupported;\n\n// Create transport if the browser can provide an xhr\nif ( xhrSupported ) {\n\n\tjQuery.ajaxTransport(function( options ) {\n\t\t// Cross domain only allowed if supported through XMLHttpRequest\n\t\tif ( !options.crossDomain || support.cors ) {\n\n\t\t\tvar callback;\n\n\t\t\treturn {\n\t\t\t\tsend: function( headers, complete ) {\n\t\t\t\t\tvar i,\n\t\t\t\t\t\txhr = options.xhr(),\n\t\t\t\t\t\tid = ++xhrId;\n\n\t\t\t\t\t// Open the socket\n\t\t\t\t\txhr.open( options.type, options.url, options.async, options.username, options.password );\n\n\t\t\t\t\t// Apply custom fields if provided\n\t\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Override mime type if needed\n\t\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t\t}\n\n\t\t\t\t\t// X-Requested-With header\n\t\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\t\tif ( !options.crossDomain && !headers[\"X-Requested-With\"] ) {\n\t\t\t\t\t\theaders[\"X-Requested-With\"] = \"XMLHttpRequest\";\n\t\t\t\t\t}\n\n\t\t\t\t\t// Set headers\n\t\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// IE's ActiveXObject throws a 'Type Mismatch' exception when setting\n\t\t\t\t\t\t// request header to a null-value.\n\t\t\t\t\t\t//\n\t\t\t\t\t\t// To keep consistent with other XHR implementations, cast the value\n\t\t\t\t\t\t// to string and ignore `undefined`.\n\t\t\t\t\t\tif ( headers[ i ] !== undefined ) {\n\t\t\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] + \"\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Do send the request\n\t\t\t\t\t// This may raise an exception which is actually\n\t\t\t\t\t// handled in jQuery.ajax (so no try/catch here)\n\t\t\t\t\txhr.send( ( options.hasContent && options.data ) || null );\n\n\t\t\t\t\t// Listener\n\t\t\t\t\tcallback = function( _, isAbort ) {\n\t\t\t\t\t\tvar status, statusText, responses;\n\n\t\t\t\t\t\t// Was never called and is aborted or complete\n\t\t\t\t\t\tif ( callback && ( isAbort || xhr.readyState === 4 ) ) {\n\t\t\t\t\t\t\t// Clean up\n\t\t\t\t\t\t\tdelete xhrCallbacks[ id ];\n\t\t\t\t\t\t\tcallback = undefined;\n\t\t\t\t\t\t\txhr.onreadystatechange = jQuery.noop;\n\n\t\t\t\t\t\t\t// Abort manually if needed\n\t\t\t\t\t\t\tif ( isAbort ) {\n\t\t\t\t\t\t\t\tif ( xhr.readyState !== 4 ) {\n\t\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tresponses = {};\n\t\t\t\t\t\t\t\tstatus = xhr.status;\n\n\t\t\t\t\t\t\t\t// Support: IE<10\n\t\t\t\t\t\t\t\t// Accessing binary-data responseText throws an exception\n\t\t\t\t\t\t\t\t// (#11426)\n\t\t\t\t\t\t\t\tif ( typeof xhr.responseText === \"string\" ) {\n\t\t\t\t\t\t\t\t\tresponses.text = xhr.responseText;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Firefox throws an exception when accessing\n\t\t\t\t\t\t\t\t// statusText for faulty cross-domain requests\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tstatusText = xhr.statusText;\n\t\t\t\t\t\t\t\t} catch( e ) {\n\t\t\t\t\t\t\t\t\t// We normalize with Webkit giving an empty statusText\n\t\t\t\t\t\t\t\t\tstatusText = \"\";\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Filter status for non standard behaviors\n\n\t\t\t\t\t\t\t\t// If the request is local and we have data: assume a success\n\t\t\t\t\t\t\t\t// (success with no data won't get notified, that's the best we\n\t\t\t\t\t\t\t\t// can do given current implementations)\n\t\t\t\t\t\t\t\tif ( !status && options.isLocal && !options.crossDomain ) {\n\t\t\t\t\t\t\t\t\tstatus = responses.text ? 200 : 404;\n\t\t\t\t\t\t\t\t// IE - #1450: sometimes returns 1223 when it should be 204\n\t\t\t\t\t\t\t\t} else if ( status === 1223 ) {\n\t\t\t\t\t\t\t\t\tstatus = 204;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Call complete if needed\n\t\t\t\t\t\tif ( responses ) {\n\t\t\t\t\t\t\tcomplete( status, statusText, responses, xhr.getAllResponseHeaders() );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\tif ( !options.async ) {\n\t\t\t\t\t\t// if we're in sync mode we fire the callback\n\t\t\t\t\t\tcallback();\n\t\t\t\t\t} else if ( xhr.readyState === 4 ) {\n\t\t\t\t\t\t// (IE6 & IE7) if it's in cache and has been\n\t\t\t\t\t\t// retrieved directly we need to fire the callback\n\t\t\t\t\t\tsetTimeout( callback );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// Add to the list of active xhr callbacks\n\t\t\t\t\t\txhr.onreadystatechange = xhrCallbacks[ id ] = callback;\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tabort: function() {\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tcallback( undefined, true );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t});\n}\n\n// Functions to create xhrs\nfunction createStandardXHR() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch( e ) {}\n}\n\nfunction createActiveXHR() {\n\ttry {\n\t\treturn new window.ActiveXObject( \"Microsoft.XMLHTTP\" );\n\t} catch( e ) {}\n}\n\n\n\n\n// Install script dataType\njQuery.ajaxSetup({\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /(?:java|ecma)script/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n});\n\n// Handle cache's special case and global\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t\ts.global = false;\n\t}\n});\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function(s) {\n\n\t// This transport only deals with cross domain requests\n\tif ( s.crossDomain ) {\n\n\t\tvar script,\n\t\t\thead = document.head || jQuery(\"head\")[0] || document.documentElement;\n\n\t\treturn {\n\n\t\t\tsend: function( _, callback ) {\n\n\t\t\t\tscript = document.createElement(\"script\");\n\n\t\t\t\tscript.async = true;\n\n\t\t\t\tif ( s.scriptCharset ) {\n\t\t\t\t\tscript.charset = s.scriptCharset;\n\t\t\t\t}\n\n\t\t\t\tscript.src = s.url;\n\n\t\t\t\t// Attach handlers for all browsers\n\t\t\t\tscript.onload = script.onreadystatechange = function( _, isAbort ) {\n\n\t\t\t\t\tif ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {\n\n\t\t\t\t\t\t// Handle memory leak in IE\n\t\t\t\t\t\tscript.onload = script.onreadystatechange = null;\n\n\t\t\t\t\t\t// Remove the script\n\t\t\t\t\t\tif ( script.parentNode ) {\n\t\t\t\t\t\t\tscript.parentNode.removeChild( script );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Dereference the script\n\t\t\t\t\t\tscript = null;\n\n\t\t\t\t\t\t// Callback if not abort\n\t\t\t\t\t\tif ( !isAbort ) {\n\t\t\t\t\t\t\tcallback( 200, \"success\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\t// Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\thead.insertBefore( script, head.firstChild );\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( script ) {\n\t\t\t\t\tscript.onload( undefined, true );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n});\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup({\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n});\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" && !( s.contentType || \"\" ).indexOf(\"application/x-www-form-urlencoded\") && rjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[\"script json\"] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always(function() {\n\t\t\t// Restore preexisting value\n\t\t\twindow[ callbackName ] = overwritten;\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\t\t\t\t// make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && jQuery.isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t});\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n});\n\n\n\n\n// data: string of html\n// context (optional): If specified, the fragment will be created in this context, defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\tcontext = context || document;\n\n\tvar parsed = rsingleTag.exec( data ),\n\t\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[1] ) ];\n\t}\n\n\tparsed = jQuery.buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n// Keep a copy of the old load method\nvar _load = jQuery.fn.load;\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tif ( typeof url !== \"string\" && _load ) {\n\t\treturn _load.apply( this, arguments );\n\t}\n\n\tvar selector, response, type,\n\t\tself = this,\n\t\toff = url.indexOf(\" \");\n\n\tif ( off >= 0 ) {\n\t\tselector = jQuery.trim( url.slice( off, url.length ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( jQuery.isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax({\n\t\t\turl: url,\n\n\t\t\t// if \"type\" variable is undefined, then \"GET\" method will be used\n\t\t\ttype: type,\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t}).done(function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery(\"<div>\").append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t}).complete( callback && function( jqXHR, status ) {\n\t\t\tself.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t});\n\t}\n\n\treturn this;\n};\n\n\n\n\n// Attach a bunch of functions for handling common AJAX events\njQuery.each( [ \"ajaxStart\", \"ajaxStop\", \"ajaxComplete\", \"ajaxError\", \"ajaxSuccess\", \"ajaxSend\" ], function( i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n});\n\n\n\n\njQuery.expr.filters.animated = function( elem ) {\n\treturn jQuery.grep(jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t}).length;\n};\n\n\n\n\n\nvar docElem = window.document.documentElement;\n\n/**\n * Gets a window from an element\n */\nfunction getWindow( elem ) {\n\treturn jQuery.isWindow( elem ) ?\n\t\telem :\n\t\telem.nodeType === 9 ?\n\t\t\telem.defaultView || elem.parentWindow :\n\t\t\tfalse;\n}\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\tjQuery.inArray(\"auto\", [ curCSSTop, curCSSLeft ] ) > -1;\n\n\t\t// need to be able to calculate position if either top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( jQuery.isFunction( options ) ) {\n\t\t\toptions = options.call( elem, i, curOffset );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend({\n\toffset: function( options ) {\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each(function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t});\n\t\t}\n\n\t\tvar docElem, win,\n\t\t\tbox = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ],\n\t\t\tdoc = elem && elem.ownerDocument;\n\n\t\tif ( !doc ) {\n\t\t\treturn;\n\t\t}\n\n\t\tdocElem = doc.documentElement;\n\n\t\t// Make sure it's not a disconnected DOM node\n\t\tif ( !jQuery.contains( docElem, elem ) ) {\n\t\t\treturn box;\n\t\t}\n\n\t\t// If we don't have gBCR, just use 0,0 rather than error\n\t\t// BlackBerry 5, iOS 3 (original iPhone)\n\t\tif ( typeof elem.getBoundingClientRect !== strundefined ) {\n\t\t\tbox = elem.getBoundingClientRect();\n\t\t}\n\t\twin = getWindow( doc );\n\t\treturn {\n\t\t\ttop: box.top  + ( win.pageYOffset || docElem.scrollTop )  - ( docElem.clientTop  || 0 ),\n\t\t\tleft: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 )\n\t\t};\n\t},\n\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset,\n\t\t\tparentOffset = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ];\n\n\t\t// fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is its only offset parent\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\t\t\t// we assume that getBoundingClientRect is available when computed position is fixed\n\t\t\toffset = elem.getBoundingClientRect();\n\t\t} else {\n\t\t\t// Get *real* offsetParent\n\t\t\toffsetParent = this.offsetParent();\n\n\t\t\t// Get correct offsets\n\t\t\toffset = this.offset();\n\t\t\tif ( !jQuery.nodeName( offsetParent[ 0 ], \"html\" ) ) {\n\t\t\t\tparentOffset = offsetParent.offset();\n\t\t\t}\n\n\t\t\t// Add offsetParent borders\n\t\t\tparentOffset.top  += jQuery.css( offsetParent[ 0 ], \"borderTopWidth\", true );\n\t\t\tparentOffset.left += jQuery.css( offsetParent[ 0 ], \"borderLeftWidth\", true );\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\t// note: when an element has margin: auto the offsetLeft and marginLeft\n\t\t// are the same in Safari causing offset.left to incorrectly be 0\n\t\treturn {\n\t\t\ttop:  offset.top  - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true)\n\t\t};\n\t},\n\n\toffsetParent: function() {\n\t\treturn this.map(function() {\n\t\t\tvar offsetParent = this.offsetParent || docElem;\n\n\t\t\twhile ( offsetParent && ( !jQuery.nodeName( offsetParent, \"html\" ) && jQuery.css( offsetParent, \"position\" ) === \"static\" ) ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\t\t\treturn offsetParent || docElem;\n\t\t});\n\t}\n});\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = /Y/.test( prop );\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\t\t\tvar win = getWindow( elem );\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? (prop in win) ? win[ prop ] :\n\t\t\t\t\twin.document.documentElement[ method ] :\n\t\t\t\t\telem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : jQuery( win ).scrollLeft(),\n\t\t\t\t\ttop ? val : jQuery( win ).scrollTop()\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length, null );\n\t};\n});\n\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// getComputedStyle returns percent when specified for top/left/bottom/right\n// rather than make the css module depend on the offset module, we just check for it here\njQuery.each( [ \"top\", \"left\" ], function( i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\t\t\t\t// if curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n});\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name }, function( defaultExtra, funcName ) {\n\t\t// margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( jQuery.isWindow( elem ) ) {\n\t\t\t\t\t// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there\n\t\t\t\t\t// isn't a whole lot we can do. See pull request at this URL for discussion:\n\t\t\t\t\t// https://github.com/jquery/jquery/pull/764\n\t\t\t\t\treturn elem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest\n\t\t\t\t\t// unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it.\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable, null );\n\t\t};\n\t});\n});\n\n\n// The number of elements contained in the matched element set\njQuery.fn.size = function() {\n\treturn this.length;\n};\n\njQuery.fn.andSelf = jQuery.fn.addBack;\n\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t});\n}\n\n\n\n\nvar\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in\n// AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === strundefined ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n\n}));\n"
  },
  {
    "path": "images/05_correlation/lib/jquery-3.5.1/jquery-AUTHORS.txt",
    "content": "Authors ordered by first contribution.\n\nJohn Resig <jeresig@gmail.com>\nGilles van den Hoven <gilles0181@gmail.com>\nMichael Geary <mike@geary.com>\nStefan Petre <stefan.petre@gmail.com>\nYehuda Katz <wycats@gmail.com>\nCorey Jewett <cj@syntheticplayground.com>\nKlaus Hartl <klaus.hartl@gmail.com>\nFranck Marcia <franck.marcia@gmail.com>\nJörn Zaefferer <joern.zaefferer@gmail.com>\nPaul Bakaus <paul.bakaus@gmail.com>\nBrandon Aaron <brandon.aaron@gmail.com>\nMike Alsup <malsup@gmail.com>\nDave Methvin <dave.methvin@gmail.com>\nEd Engelhardt <edengelhardt@gmail.com>\nSean Catchpole <littlecooldude@gmail.com>\nPaul Mclanahan <pmclanahan@gmail.com>\nDavid Serduke <davidserduke@gmail.com>\nRichard D. Worth <rdworth@gmail.com>\nScott González <scott.gonzalez@gmail.com>\nAriel Flesler <aflesler@gmail.com>\nCheah Chu Yeow <chuyeow@gmail.com>\nAndrew Chalkley <andrew@chalkley.org>\nFabio Buffoni <fabio.buffoni@bitmaster.it>\nStefan Bauckmeier  <stefan@bauckmeier.de>\nJon Evans <jon@springyweb.com>\nTJ Holowaychuk <tj@vision-media.ca>\nRiccardo De Agostini <rdeago@gmail.com>\nMichael Bensoussan <mickey@seesmic.com>\nLouis-Rémi Babé <lrbabe@gmail.com>\nRobert Katić <robert.katic@gmail.com>\nDamian Janowski <damian.janowski@gmail.com>\nAnton Kovalyov <anton@kovalyov.net>\nDušan B. Jovanovic <dbjdbj@gmail.com>\nEarle Castledine <mrspeaker@gmail.com>\nRich Dougherty <rich@rd.gen.nz>\nKim Dalsgaard <kim@kimdalsgaard.com>\nAndrea Giammarchi <andrea.giammarchi@gmail.com>\nFabian Jakobs <fabian.jakobs@web.de>\nMark Gibson <jollytoad@gmail.com>\nKarl Swedberg <kswedberg@gmail.com>\nJustin Meyer <justinbmeyer@gmail.com>\nBen Alman <cowboy@rj3.net>\nJames Padolsey <cla@padolsey.net>\nDavid Petersen <public@petersendidit.com>\nBatiste Bieler <batiste.bieler@gmail.com>\nJake Archibald <jake.archibald@bbc.co.uk>\nAlexander Farkas <info@corrupt-system.de>\nFilipe Fortes <filipe@fortes.com>\nRick Waldron <waldron.rick@gmail.com>\nNeeraj Singh <neerajdotname@gmail.com>\nPaul Irish <paul.irish@gmail.com>\nIraê Carvalho <irae@irae.pro.br>\nMatt Curry <matt@pseudocoder.com>\nMichael Monteleone <michael@michaelmonteleone.net>\nNoah Sloan <noah.sloan@gmail.com>\nTom Viner <github@viner.tv>\nJ. Ryan Stinnett <jryans@gmail.com>\nDouglas Neiner <doug@dougneiner.com>\nAdam J. Sontag <ajpiano@ajpiano.com>\nHeungsub Lee <h@subl.ee>\nDave Reed <dareed@microsoft.com>\nCarl Fürstenberg <azatoth@gmail.com>\nJacob Wright <jacwright@gmail.com>\nRalph Whitbeck <ralph.whitbeck@gmail.com>\nunknown <Igen005@.upcorp.ad.uprr.com>\ntemp01 <temp01irc@gmail.com>\nColin Snover <github.com@zetafleet.com>\nJared Grippe <jared@deadlyicon.com>\nRyan W Tenney <ryan@10e.us>\nAlex Sexton <AlexSexton@gmail.com>\nPinhook <contact@pinhooklabs.com>\nRon Otten <r.j.g.otten@gmail.com>\nJephte Clain <Jephte.Clain@univ-reunion.fr>\nAnton Matzneller <obhvsbypqghgc@gmail.com>\nDan Heberden <danheberden@gmail.com>\nHenri Wiechers <hwiechers@gmail.com>\nRussell Holbrook <russell.holbrook@patch.com>\nJulian Aubourg <aubourg.julian@gmail.com>\nGianni Alessandro Chiappetta <gianni@runlevel6.org>\nScott Jehl <scottjehl@gmail.com>\nJames Burke <jrburke@gmail.com>\nJonas Pfenniger <jonas@pfenniger.name>\nXavi Ramirez <xavi.rmz@gmail.com>\nSylvester Keil <sylvester@keil.or.at>\nBrandon Sterne <bsterne@mozilla.com>\nMathias Bynens <mathias@qiwi.be>\nLee Carpenter <elcarpie@gmail.com>\nTimmy Willison <4timmywil@gmail.com>\nCorey Frang <gnarf37@gmail.com>\nDigitalxero <digitalxero>\nDavid Murdoch <david@davidmurdoch.com>\nJosh Varner <josh.varner@gmail.com>\nCharles McNulty <cmcnulty@kznf.com>\nJordan Boesch <jboesch26@gmail.com>\nJess Thrysoee <jess@thrysoee.dk>\nMichael Murray <m@murz.net>\nAlexis Abril <me@alexisabril.com>\nRob Morgan <robbym@gmail.com>\nJohn Firebaugh <john_firebaugh@bigfix.com>\nSam Bisbee <sam@sbisbee.com>\nGilmore Davidson <gilmoreorless@gmail.com>\nBrian Brennan <me@brianlovesthings.com>\nXavier Montillet <xavierm02.net@gmail.com>\nDaniel Pihlstrom <sciolist.se@gmail.com>\nSahab Yazdani <sahab.yazdani+github@gmail.com>\navaly <github-com@agachi.name>\nScott Hughes <hi@scott-hughes.me>\nMike Sherov <mike.sherov@gmail.com>\nGreg Hazel <ghazel@gmail.com>\nSchalk Neethling <schalk@ossreleasefeed.com>\nDenis Knauf <Denis.Knauf@gmail.com>\nTimo Tijhof <krinklemail@gmail.com>\nSteen Nielsen <swinedk@gmail.com>\nAnton Ryzhov <anton@ryzhov.me>\nShi Chuan <shichuanr@gmail.com>\nMatt Mueller <mattmuelle@gmail.com>\nBerker Peksag <berker.peksag@gmail.com>\nToby Brain <tobyb@freshview.com>\nJustin <drakefjustin@gmail.com>\nDaniel Herman <daniel.c.herman@gmail.com>\nOleg Gaidarenko <markelog@gmail.com>\nRock Hymas <rock@fogcreek.com>\nRichard Gibson <richard.gibson@gmail.com>\nRafaël Blais Masson <rafbmasson@gmail.com>\ncmc3cn <59194618@qq.com>\nJoe Presbrey <presbrey@gmail.com>\nSindre Sorhus <sindresorhus@gmail.com>\nArne de Bree <arne@bukkie.nl>\nVladislav Zarakovsky <vlad.zar@gmail.com>\nAndrew E Monat <amonat@gmail.com>\nOskari <admin@o-programs.com>\nJoao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>\ntsinha <tsinha@Anthonys-MacBook-Pro.local>\nDominik D. Geyer <dominik.geyer@gmail.com>\nMatt Farmer <matt@frmr.me>\nTrey Hunner <treyhunner@gmail.com>\nJason Moon <jmoon@socialcast.com>\nJeffery To <jeffery.to@gmail.com>\nKris Borchers <kris.borchers@gmail.com>\nVladimir Zhuravlev <private.face@gmail.com>\nJacob Thornton <jacobthornton@gmail.com>\nChad Killingsworth <chadkillingsworth@missouristate.edu>\nVitya Muhachev <vic99999@yandex.ru>\nNowres Rafid <nowres.rafed@gmail.com>\nDavid Benjamin <davidben@mit.edu>\nAlan Plum <github@ap.apsq.de>\nUri Gilad <antishok@gmail.com>\nChris Faulkner <thefaulkner@gmail.com>\nMarcel Greter <marcel.greter@ocbnet.ch>\nElijah Manor <elijah.manor@gmail.com>\nDaniel Chatfield <chatfielddaniel@gmail.com>\nDaniel Gálvez <dgalvez@editablething.com>\nNikita Govorov <nikita.govorov@gmail.com>\nWesley Walser <waw325@gmail.com>\nMike Pennisi <mike@mikepennisi.com>\nMatthias Jäggli <matthias.jaeggli@gmail.com>\nDevin Cooper <cooper.semantics@gmail.com>\nMarkus Staab <markus.staab@redaxo.de>\nDave Riddle <david@joyvuu.com>\nCallum Macrae <callum@lynxphp.com>\nJonathan Sampson <jjdsampson@gmail.com>\nBenjamin Truyman <bentruyman@gmail.com>\nJay Merrifield <fracmak@gmail.com>\nJames Huston <james@jameshuston.net>\nSai Lung Wong <sai.wong@huffingtonpost.com>\nErick Ruiz de Chávez <erickrdch@gmail.com>\nDavid Bonner <dbonner@cogolabs.com>\nAllen J Schmidt Jr <cobrasoft@gmail.com>\nAkintayo Akinwunmi <aakinwunmi@judge.com>\nMORGAN <morgan@morgangraphics.com>\nIsmail Khair <ismail.khair@gmail.com>\nCarl Danley <carldanley@gmail.com>\nMike Petrovich <michael.c.petrovich@gmail.com>\nGreg Lavallee <greglavallee@wapolabs.com>\nTom H Fuertes <TomFuertes@gmail.com>\nRoland Eckl <eckl.roland@googlemail.com>\nYiming He <yiminghe@gmail.com>\nDavid Fox <dfoxinator@gmail.com>\nBennett Sorbo <bsorbo@gmail.com>\nPaul Ramos <paul.b.ramos@gmail.com>\nRod Vagg <rod@vagg.org>\nSebastian Burkhard <sebi.burkhard@gmail.com>\nZachary Adam Kaplan <razic@viralkitty.com>\nAdam Coulombe <me@adam.co>\nnanto_vi <nanto@moon.email.ne.jp>\nnanto <nanto@moon.email.ne.jp>\nDanil Somsikov <danilasomsikov@gmail.com>\nRyunosuke SATO <tricknotes.rs@gmail.com>\nDiego Tres <diegotres@gmail.com>\nJean Boussier <jean.boussier@gmail.com>\nAndrew Plummer <plummer.andrew@gmail.com>\nMark Raddatz <mraddatz@gmail.com>\nPascal Borreli <pascal@borreli.com>\nIsaac Z. Schlueter <i@izs.me>\nKarl Sieburg <ksieburg@yahoo.com>\nNguyen Phuc Lam <ruado1987@gmail.com>\nDmitry Gusev <dmitry.gusev@gmail.com>\nSteven Benner <admin@stevenbenner.com>\nLi Xudong <istonelee@gmail.com>\nMichał Gołębiowski-Owczarek <m.goleb@gmail.com>\nRenato Oliveira dos Santos <ros3@cin.ufpe.br>\nFrederic Junod <frederic.junod@camptocamp.com>\nTom H Fuertes <tomfuertes@gmail.com>\nMitch Foley <mitch@thefoley.net>\nros3cin <ros3@cin.ufpe.br>\nKyle Robinson Young <kyle@dontkry.com>\nJohn Paul <john@johnkpaul.com>\nJason Bedard <jason+jquery@jbedard.ca>\nChris Talkington <chris@talkingtontech.com>\nEddie Monge <eddie@eddiemonge.com>\nTerry Jones <terry@jon.es>\nJason Merino <jasonmerino@gmail.com>\nDan Burzo <danburzo@gmail.com>\nJeremy Dunck <jdunck@gmail.com>\nChris Price <price.c@gmail.com>\nGuy Bedford <guybedford@gmail.com>\nnjhamann <njhamann@gmail.com>\nGoare Mao <mygoare@gmail.com>\nAmey Sakhadeo <me@ameyms.com>\nMike Sidorov <mikes.ekb@gmail.com>\nAnthony Ryan <anthonyryan1@gmail.com>\nLihan Li <frankieteardrop@gmail.com>\nGeorge Kats <katsgeorgeek@gmail.com>\nDongseok Paeng <dongseok83.paeng@lge.com>\nRonny Springer <springer.ronny@gmail.com>\nIlya Kantor <iliakan@gmail.com>\nMarian Sollmann <marian.sollmann@cargomedia.ch>\nChris Antaki <ChrisAntaki@gmail.com>\nDavid Hong <d.hong@me.com>\nJakob Stoeck <jakob@pokermania.de>\nChristopher Jones <chris@cjqed.com>\nForbes Lindesay <forbes@lindesay.co.uk>\nS. Andrew Sheppard <andrew@wq.io>\nLeonardo Balter <leonardo.balter@gmail.com>\nRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>\nDaniel Husar <dano.husar@gmail.com>\nPhilip Jägenstedt <philip@foolip.org>\nJohn Hoven <hovenj@gmail.com>\nRoman Reiß <me@silverwind.io>\nBenjy Cui <benjytrys@gmail.com>\nChristian Kosmowski <ksmwsk@gmail.com>\nDavid Corbacho <davidcorbacho@gmail.com>\nLiang Peng <poppinlp@gmail.com>\nTJ VanToll <tj.vantoll@gmail.com>\nAurelio De Rosa <aurelioderosa@gmail.com>\nSenya Pugach <upisfree@outlook.com>\nDan Hart <danhart@notonthehighstreet.com>\nNazar Mokrynskyi <nazar@mokrynskyi.com>\nBenjamin Tan <demoneaux@gmail.com>\nAmit Merchant <bullredeyes@gmail.com>\nJason Bedard <jason+github@jbedard.ca>\nVeaceslav Grimalschi <grimalschi@yandex.ru>\nRichard McDaniel <rm0026@uah.edu>\nArthur Verschaeve <contact@arthurverschaeve.be>\nShivaji Varma <contact@shivajivarma.com>\nBen Toews <mastahyeti@gmail.com>\nBin Xin <rhyzix@gmail.com>\nNeftaly Hernandez <neftaly.hernandez@gmail.com>\nT.J. Crowder <tj.crowder@farsightsoftware.com>\nNicolas HENRY <icewil@gmail.com>\nFrederic Hemberger <mail@frederic-hemberger.de>\nVictor Homyakov <vkhomyackov@gmail.com>\nAditya Raghavan <araghavan3@gmail.com>\nAnne-Gaelle Colom <coloma@westminster.ac.uk>\nLeonardo Braga <leonardo.braga@gmail.com>\nGeorge Mauer <gmauer@gmail.com>\nStephen Edgar <stephen@netweb.com.au>\nThomas Tortorini <thomastortorini@gmail.com>\nJörn Wagner <joern.wagner@explicatis.com>\nJon Hester <jon.d.hester@gmail.com>\nColin Frick <colin@bash.li>\nWinston Howes <winstonhowes@gmail.com>\nAlexander O'Mara <me@alexomara.com>\nChris Rebert <github@rebertia.com>\nBastian Buchholz <buchholz.bastian@googlemail.com>\nMu Haibao <mhbseal@163.com>\nCalvin Metcalf <calvin.metcalf@gmail.com>\nArthur Stolyar <nekr.fabula@gmail.com>\nGabriel Schulhof <gabriel.schulhof@intel.com>\nGilad Peleg <giladp007@gmail.com>\nJulian Alexander Murillo <julian.alexander.murillo@gmail.com>\nKevin Kirsche <Kev.Kirsche+GitHub@gmail.com>\nMartin Naumann <martin@geekonaut.de>\nYongwoo Jeon <yongwoo.jeon@navercorp.com>\nJohn-David Dalton <john.david.dalton@gmail.com>\nMarek Lewandowski <m.lewandowski@cksource.com>\nBruno Pérel <brunoperel@gmail.com>\nDaniel Nill <daniellnill@gmail.com>\nReed Loden <reed@reedloden.com>\nSean Henderson <seanh.za@gmail.com>\nGary Ye <garysye@gmail.com>\nRichard Kraaijenhagen <stdin+git@riichard.com>\nConnor Atherton <c.liam.atherton@gmail.com>\nChristian Grete <webmaster@christiangrete.com>\nTom von Clef <thomas.vonclef@gmail.com>\nLiza Ramo <liza.h.ramo@gmail.com>\nJoelle Fleurantin <joasqueeniebee@gmail.com>\nSteve Mao <maochenyan@gmail.com>\nJon Dufresne <jon.dufresne@gmail.com>\nJae Sung Park <alberto.park@gmail.com>\nJosh Soref <apache@soref.com>\nSaptak Sengupta <saptak013@gmail.com>\nHenry Wong <henryw4k@gmail.com>\nJun Sun <klsforever@gmail.com>\nMartijn W. van der Lee <martijn@vanderlee.com>\nDevin Wilson <dwilson6.github@gmail.com>\nDamian Senn <jquery@topaxi.codes>\nZack Hall <zackhall@outlook.com>\nVitaliy Terziev <vitaliyterziev@gmail.com>\nTodor Prikumov <tono_pr@abv.bg>\nBernhard M. Wiedemann <jquerybmw@lsmod.de>\nJha Naman <createnaman@gmail.com>\nAlexander Lisianoi <all3fox@gmail.com>\nWilliam Robinet <william.robinet@conostix.com>\nJoe Trumbull <trumbull.j@gmail.com>\nAlexander K <xpyro@ya.ru>\nRalin Chimev <ralin.chimev@gmail.com>\nFelipe Sateler <fsateler@gmail.com>\nChristophe Tafani-Dereeper <christophetd@hotmail.fr>\nManoj Kumar <nithmanoj@gmail.com>\nDavid Broder-Rodgers <broder93@gmail.com>\nAlex Louden <alex@louden.com>\nAlex Padilla <alexonezero@outlook.com>\nkaran-96 <karanbatra96@gmail.com>\n南漂一卒 <shiy007@qq.com>\nErik Lax <erik@datahack.se>\nBoom Lee <teabyii@gmail.com>\nAndreas Solleder <asol@num42.de>\nPierre Spring <pierre@nelm.io>\nShashanka Nataraj <shashankan.10@gmail.com>\nCDAGaming <cstack2011@yahoo.com>\nMatan Kotler-Berkowitz <205matan@gmail.com>\nJordan Beland <jordan.beland@gmail.com>\nHenry Zhu <hi@henryzoo.com>\nNilton Cesar <niltoncms@gmail.com>\nbasil.belokon <basil.belokon@gmail.com>\nAndrey Meshkov <ay.meshkov@gmail.com>\ntmybr11 <tomas.perone@gmail.com>\nLuis Emilio Velasco Sanchez <emibloque@gmail.com>\nEd S <ejsanders@gmail.com>\nBert Zhang <enbo@users.noreply.github.com>\nSébastien Règne <regseb@users.noreply.github.com>\nwartmanm <3869625+wartmanm@users.noreply.github.com>\nSiddharth Dungarwal <sd5869@gmail.com>\nabnud1 <ahmad13932013@hotmail.com>\nAndrei Fangli <andrei_fangli@outlook.com>\nMarja Hölttä <marja.holtta@gmail.com>\nbuddh4 <mail@jharrer.de>\nHoang <dangkyokhoang@gmail.com>\nWonseop Kim <wonseop.kim@samsung.com>\nPat O'Callaghan <patocallaghan@gmail.com>\nJuanMa Ruiz <ruizjuanma@gmail.com>\nAhmed.S.ElAfifi <ahmed.s.elafifi@gmail.com>\nSean Robinson <sean.robinson@scottsdalecc.edu>\nChristian Oliff <christianoliff@pm.me>\n"
  },
  {
    "path": "images/05_correlation/lib/jquery-3.5.1/jquery.js",
    "content": "/*!\n * jQuery JavaScript Library v3.5.1\n * https://jquery.com/\n *\n * Includes Sizzle.js\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://jquery.org/license\n *\n * Date: 2020-05-04T22:49Z\n */\n( function( global, factory ) {\n\n\t\"use strict\";\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\n\t\t// For CommonJS and CommonJS-like environments where a proper `window`\n\t\t// is present, execute the factory and get jQuery.\n\t\t// For environments that do not have a `window` with a `document`\n\t\t// (such as Node.js), expose a factory as module.exports.\n\t\t// This accentuates the need for the creation of a real `window`.\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info.\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n} )( typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1\n// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode\n// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common\n// enough that all such attempts are guarded in a try block.\n\"use strict\";\n\nvar arr = [];\n\nvar getProto = Object.getPrototypeOf;\n\nvar slice = arr.slice;\n\nvar flat = arr.flat ? function( array ) {\n\treturn arr.flat.call( array );\n} : function( array ) {\n\treturn arr.concat.apply( [], array );\n};\n\n\nvar push = arr.push;\n\nvar indexOf = arr.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar fnToString = hasOwn.toString;\n\nvar ObjectFunctionString = fnToString.call( Object );\n\nvar support = {};\n\nvar isFunction = function isFunction( obj ) {\n\n      // Support: Chrome <=57, Firefox <=52\n      // In some browsers, typeof returns \"function\" for HTML <object> elements\n      // (i.e., `typeof document.createElement( \"object\" ) === \"function\"`).\n      // We don't want to classify *any* DOM node as a function.\n      return typeof obj === \"function\" && typeof obj.nodeType !== \"number\";\n  };\n\n\nvar isWindow = function isWindow( obj ) {\n\t\treturn obj != null && obj === obj.window;\n\t};\n\n\nvar document = window.document;\n\n\n\n\tvar preservedScriptAttributes = {\n\t\ttype: true,\n\t\tsrc: true,\n\t\tnonce: true,\n\t\tnoModule: true\n\t};\n\n\tfunction DOMEval( code, node, doc ) {\n\t\tdoc = doc || document;\n\n\t\tvar i, val,\n\t\t\tscript = doc.createElement( \"script\" );\n\n\t\tscript.text = code;\n\t\tif ( node ) {\n\t\t\tfor ( i in preservedScriptAttributes ) {\n\n\t\t\t\t// Support: Firefox 64+, Edge 18+\n\t\t\t\t// Some browsers don't support the \"nonce\" property on scripts.\n\t\t\t\t// On the other hand, just using `getAttribute` is not enough as\n\t\t\t\t// the `nonce` attribute is reset to an empty string whenever it\n\t\t\t\t// becomes browsing-context connected.\n\t\t\t\t// See https://github.com/whatwg/html/issues/2369\n\t\t\t\t// See https://html.spec.whatwg.org/#nonce-attributes\n\t\t\t\t// The `node.getAttribute` check was added for the sake of\n\t\t\t\t// `jQuery.globalEval` so that it can fake a nonce-containing node\n\t\t\t\t// via an object.\n\t\t\t\tval = node[ i ] || node.getAttribute && node.getAttribute( i );\n\t\t\t\tif ( val ) {\n\t\t\t\t\tscript.setAttribute( i, val );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tdoc.head.appendChild( script ).parentNode.removeChild( script );\n\t}\n\n\nfunction toType( obj ) {\n\tif ( obj == null ) {\n\t\treturn obj + \"\";\n\t}\n\n\t// Support: Android <=2.3 only (functionish RegExp)\n\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\tclass2type[ toString.call( obj ) ] || \"object\" :\n\t\ttypeof obj;\n}\n/* global Symbol */\n// Defining this global in .eslintrc.json would create a danger of using the global\n// unguarded in another place, it seems safer to define global only for this module\n\n\n\nvar\n\tversion = \"3.5.1\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t};\n\njQuery.fn = jQuery.prototype = {\n\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\n\t\t// Return all the elements in a clean array\n\t\tif ( num == null ) {\n\t\t\treturn slice.call( this );\n\t\t}\n\n\t\t// Return just the one element from the set\n\t\treturn num < 0 ? this[ num + this.length ] : this[ num ];\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\teach: function( callback ) {\n\t\treturn jQuery.each( this, callback );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map( this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t} ) );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teven: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn ( i + 1 ) % 2;\n\t\t} ) );\n\t},\n\n\todd: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn i % 2;\n\t\t} ) );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor();\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: arr.sort,\n\tsplice: arr.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[ 0 ] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// Skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !isFunction( target ) ) {\n\t\ttarget = {};\n\t}\n\n\t// Extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\n\t\t// Only deal with non-null/undefined values\n\t\tif ( ( options = arguments[ i ] ) != null ) {\n\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent Object.prototype pollution\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( name === \"__proto__\" || target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject( copy ) ||\n\t\t\t\t\t( copyIsArray = Array.isArray( copy ) ) ) ) {\n\t\t\t\t\tsrc = target[ name ];\n\n\t\t\t\t\t// Ensure proper type for the source value\n\t\t\t\t\tif ( copyIsArray && !Array.isArray( src ) ) {\n\t\t\t\t\t\tclone = [];\n\t\t\t\t\t} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {\n\t\t\t\t\t\tclone = {};\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src;\n\t\t\t\t\t}\n\t\t\t\t\tcopyIsArray = false;\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend( {\n\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\tisPlainObject: function( obj ) {\n\t\tvar proto, Ctor;\n\n\t\t// Detect obvious negatives\n\t\t// Use toString instead of jQuery.type to catch host objects\n\t\tif ( !obj || toString.call( obj ) !== \"[object Object]\" ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tproto = getProto( obj );\n\n\t\t// Objects with no prototype (e.g., `Object.create( null )`) are plain\n\t\tif ( !proto ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Objects with prototype are plain iff they were constructed by a global Object function\n\t\tCtor = hasOwn.call( proto, \"constructor\" ) && proto.constructor;\n\t\treturn typeof Ctor === \"function\" && fnToString.call( Ctor ) === ObjectFunctionString;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\t// Evaluates a script in a provided context; falls back to the global one\n\t// if not specified.\n\tglobalEval: function( code, options, doc ) {\n\t\tDOMEval( code, { nonce: options && options.nonce }, doc );\n\t},\n\n\teach: function( obj, callback ) {\n\t\tvar length, i = 0;\n\n\t\tif ( isArrayLike( obj ) ) {\n\t\t\tlength = obj.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tfor ( i in obj ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArrayLike( Object( arr ) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\treturn arr == null ? -1 : indexOf.call( arr, elem, i );\n\t},\n\n\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t// push.apply(_, arraylike) throws on ancient WebKit\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\tfor ( ; j < len; j++ ) {\n\t\t\tfirst[ i++ ] = second[ j ];\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar length, value,\n\t\t\ti = 0,\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArrayLike( elems ) ) {\n\t\t\tlength = elems.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn flat( ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n} );\n\nif ( typeof Symbol === \"function\" ) {\n\tjQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];\n}\n\n// Populate the class2type map\njQuery.each( \"Boolean Number String Function Array Date RegExp Object Error Symbol\".split( \" \" ),\nfunction( _i, name ) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n} );\n\nfunction isArrayLike( obj ) {\n\n\t// Support: real iOS 8.2 only (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = !!obj && \"length\" in obj && obj.length,\n\t\ttype = toType( obj );\n\n\tif ( isFunction( obj ) || isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.3.5\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://js.foundation/\n *\n * Date: 2020-03-14\n */\n( function( window ) {\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tnonnativeSelectorCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// Instance methods\n\thasOwn = ( {} ).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpushNative = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\n\t// Use a stripped-down indexOf as it's faster than native\n\t// https://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[ i ] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|\" +\n\t\t\"ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\n\t// https://www.w3.org/TR/css-syntax-3/#ident-token-diagram\n\tidentifier = \"(?:\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace +\n\t\t\"?|\\\\\\\\[^\\\\r\\\\n\\\\f]|[\\\\w-]|[^\\0-\\\\x7f])+\",\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + identifier + \")(?:\" + whitespace +\n\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\n\t\t// \"Attribute values must be CSS identifiers [capture 5]\n\t\t// or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" +\n\t\twhitespace + \"*\\\\]\",\n\n\tpseudos = \":(\" + identifier + \")(?:\\\\((\" +\n\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" +\n\t\twhitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace +\n\t\t\"*\" ),\n\trdescend = new RegExp( whitespace + \"|>\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + identifier + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + identifier + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + identifier + \"|[*])\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" +\n\t\t\twhitespace + \"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" +\n\t\t\twhitespace + \"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace +\n\t\t\t\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" + whitespace +\n\t\t\t\"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trhtml = /HTML$/i,\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\n\t// CSS escapes\n\t// http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace + \"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\", \"g\" ),\n\tfunescape = function( escape, nonHex ) {\n\t\tvar high = \"0x\" + escape.slice( 1 ) - 0x10000;\n\n\t\treturn nonHex ?\n\n\t\t\t// Strip the backslash prefix from a non-hex escape sequence\n\t\t\tnonHex :\n\n\t\t\t// Replace a hexadecimal escape sequence with the encoded Unicode code point\n\t\t\t// Support: IE <=11+\n\t\t\t// For values outside the Basic Multilingual Plane (BMP), manually construct a\n\t\t\t// surrogate pair\n\t\t\thigh < 0 ?\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// CSS string/identifier serialization\n\t// https://drafts.csswg.org/cssom/#common-serializing-idioms\n\trcssescape = /([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,\n\tfcssescape = function( ch, asCodePoint ) {\n\t\tif ( asCodePoint ) {\n\n\t\t\t// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER\n\t\t\tif ( ch === \"\\0\" ) {\n\t\t\t\treturn \"\\uFFFD\";\n\t\t\t}\n\n\t\t\t// Control characters and (dependent upon position) numbers get escaped as code points\n\t\t\treturn ch.slice( 0, -1 ) + \"\\\\\" +\n\t\t\t\tch.charCodeAt( ch.length - 1 ).toString( 16 ) + \" \";\n\t\t}\n\n\t\t// Other potentially-special ASCII characters get backslash-escaped\n\t\treturn \"\\\\\" + ch;\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t},\n\n\tinDisabledFieldset = addCombinator(\n\t\tfunction( elem ) {\n\t\t\treturn elem.disabled === true && elem.nodeName.toLowerCase() === \"fieldset\";\n\t\t},\n\t\t{ dir: \"parentNode\", next: \"legend\" }\n\t);\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t( arr = slice.call( preferredDoc.childNodes ) ),\n\t\tpreferredDoc.childNodes\n\t);\n\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\t// eslint-disable-next-line no-unused-expressions\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpushNative.apply( target, slice.call( els ) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( ( target[ j++ ] = els[ i++ ] ) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar m, i, elem, nid, match, groups, newSelector,\n\t\tnewContext = context && context.ownerDocument,\n\n\t\t// nodeType defaults to 9, since context defaults to document\n\t\tnodeType = context ? context.nodeType : 9;\n\n\tresults = results || [];\n\n\t// Return early from calls with invalid selector or context\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\t// Try to shortcut find operations (as opposed to filters) in HTML documents\n\tif ( !seed ) {\n\t\tsetDocument( context );\n\t\tcontext = context || document;\n\n\t\tif ( documentIsHTML ) {\n\n\t\t\t// If the selector is sufficiently simple, try using a \"get*By*\" DOM method\n\t\t\t// (excepting DocumentFragment context, where the methods don't exist)\n\t\t\tif ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) {\n\n\t\t\t\t// ID selector\n\t\t\t\tif ( ( m = match[ 1 ] ) ) {\n\n\t\t\t\t\t// Document context\n\t\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\t\tif ( ( elem = context.getElementById( m ) ) ) {\n\n\t\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// Element context\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\tif ( newContext && ( elem = newContext.getElementById( m ) ) &&\n\t\t\t\t\t\t\tcontains( context, elem ) &&\n\t\t\t\t\t\t\telem.id === m ) {\n\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t// Type selector\n\t\t\t\t} else if ( match[ 2 ] ) {\n\t\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\t\treturn results;\n\n\t\t\t\t// Class selector\n\t\t\t\t} else if ( ( m = match[ 3 ] ) && support.getElementsByClassName &&\n\t\t\t\t\tcontext.getElementsByClassName ) {\n\n\t\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\t\treturn results;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Take advantage of querySelectorAll\n\t\t\tif ( support.qsa &&\n\t\t\t\t!nonnativeSelectorCache[ selector + \" \" ] &&\n\t\t\t\t( !rbuggyQSA || !rbuggyQSA.test( selector ) ) &&\n\n\t\t\t\t// Support: IE 8 only\n\t\t\t\t// Exclude object elements\n\t\t\t\t( nodeType !== 1 || context.nodeName.toLowerCase() !== \"object\" ) ) {\n\n\t\t\t\tnewSelector = selector;\n\t\t\t\tnewContext = context;\n\n\t\t\t\t// qSA considers elements outside a scoping root when evaluating child or\n\t\t\t\t// descendant combinators, which is not what we want.\n\t\t\t\t// In such cases, we work around the behavior by prefixing every selector in the\n\t\t\t\t// list with an ID selector referencing the scope context.\n\t\t\t\t// The technique has to be used as well when a leading combinator is used\n\t\t\t\t// as such selectors are not recognized by querySelectorAll.\n\t\t\t\t// Thanks to Andrew Dupont for this technique.\n\t\t\t\tif ( nodeType === 1 &&\n\t\t\t\t\t( rdescend.test( selector ) || rcombinators.test( selector ) ) ) {\n\n\t\t\t\t\t// Expand context for sibling selectors\n\t\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext;\n\n\t\t\t\t\t// We can use :scope instead of the ID hack if the browser\n\t\t\t\t\t// supports it & if we're not changing the context.\n\t\t\t\t\tif ( newContext !== context || !support.scope ) {\n\n\t\t\t\t\t\t// Capture the context ID, setting it first if necessary\n\t\t\t\t\t\tif ( ( nid = context.getAttribute( \"id\" ) ) ) {\n\t\t\t\t\t\t\tnid = nid.replace( rcssescape, fcssescape );\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tcontext.setAttribute( \"id\", ( nid = expando ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prefix every selector in the list\n\t\t\t\t\tgroups = tokenize( selector );\n\t\t\t\t\ti = groups.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tgroups[ i ] = ( nid ? \"#\" + nid : \":scope\" ) + \" \" +\n\t\t\t\t\t\t\ttoSelector( groups[ i ] );\n\t\t\t\t\t}\n\t\t\t\t\tnewSelector = groups.join( \",\" );\n\t\t\t\t}\n\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch ( qsaError ) {\n\t\t\t\t\tnonnativeSelectorCache( selector, true );\n\t\t\t\t} finally {\n\t\t\t\t\tif ( nid === expando ) {\n\t\t\t\t\t\tcontext.removeAttribute( \"id\" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {function(string, object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn ( cache[ key + \" \" ] = value );\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created element and returns a boolean result\n */\nfunction assert( fn ) {\n\tvar el = document.createElement( \"fieldset\" );\n\n\ttry {\n\t\treturn !!fn( el );\n\t} catch ( e ) {\n\t\treturn false;\n\t} finally {\n\n\t\t// Remove from its parent by default\n\t\tif ( el.parentNode ) {\n\t\t\tel.parentNode.removeChild( el );\n\t\t}\n\n\t\t// release memory in IE\n\t\tel = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split( \"|\" ),\n\t\ti = arr.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[ i ] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\ta.sourceIndex - b.sourceIndex;\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( ( cur = cur.nextSibling ) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn ( name === \"input\" || name === \"button\" ) && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for :enabled/:disabled\n * @param {Boolean} disabled true for :disabled; false for :enabled\n */\nfunction createDisabledPseudo( disabled ) {\n\n\t// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable\n\treturn function( elem ) {\n\n\t\t// Only certain elements can match :enabled or :disabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled\n\t\tif ( \"form\" in elem ) {\n\n\t\t\t// Check for inherited disabledness on relevant non-disabled elements:\n\t\t\t// * listed form-associated elements in a disabled fieldset\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#category-listed\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled\n\t\t\t// * option elements in a disabled optgroup\n\t\t\t//   https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled\n\t\t\t// All such elements have a \"form\" property.\n\t\t\tif ( elem.parentNode && elem.disabled === false ) {\n\n\t\t\t\t// Option elements defer to a parent optgroup if present\n\t\t\t\tif ( \"label\" in elem ) {\n\t\t\t\t\tif ( \"label\" in elem.parentNode ) {\n\t\t\t\t\t\treturn elem.parentNode.disabled === disabled;\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn elem.disabled === disabled;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Support: IE 6 - 11\n\t\t\t\t// Use the isDisabled shortcut property to check for disabled fieldset ancestors\n\t\t\t\treturn elem.isDisabled === disabled ||\n\n\t\t\t\t\t// Where there is no isDisabled, check manually\n\t\t\t\t\t/* jshint -W018 */\n\t\t\t\t\telem.isDisabled !== !disabled &&\n\t\t\t\t\tinDisabledFieldset( elem ) === disabled;\n\t\t\t}\n\n\t\t\treturn elem.disabled === disabled;\n\n\t\t// Try to winnow out elements that can't be disabled before trusting the disabled property.\n\t\t// Some victims get caught in our net (label, legend, menu, track), but it shouldn't\n\t\t// even exist on them, let alone have a boolean value.\n\t\t} else if ( \"label\" in elem ) {\n\t\t\treturn elem.disabled === disabled;\n\t\t}\n\n\t\t// Remaining elements are neither :enabled nor :disabled\n\t\treturn false;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction( function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction( function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ ( j = matchIndexes[ i ] ) ] ) {\n\t\t\t\t\tseed[ j ] = !( matches[ j ] = seed[ j ] );\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t} );\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\tvar namespace = elem.namespaceURI,\n\t\tdocElem = ( elem.ownerDocument || elem ).documentElement;\n\n\t// Support: IE <=8\n\t// Assume HTML when documentElement doesn't yet exist, such as inside loading iframes\n\t// https://bugs.jquery.com/ticket/4833\n\treturn !rhtml.test( namespace || docElem && docElem.nodeName || \"HTML\" );\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, subWindow,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// Return early if doc is invalid or already selected\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Update global variables\n\tdocument = doc;\n\tdocElem = document.documentElement;\n\tdocumentIsHTML = !isXML( document );\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t// Accessing iframe documents after unload throws \"permission denied\" errors (jQuery #13936)\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( preferredDoc != document &&\n\t\t( subWindow = document.defaultView ) && subWindow.top !== subWindow ) {\n\n\t\t// Support: IE 11, Edge\n\t\tif ( subWindow.addEventListener ) {\n\t\t\tsubWindow.addEventListener( \"unload\", unloadHandler, false );\n\n\t\t// Support: IE 9 - 10 only\n\t\t} else if ( subWindow.attachEvent ) {\n\t\t\tsubWindow.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t// Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only,\n\t// Safari 4 - 5 only, Opera <=11.6 - 12.x only\n\t// IE/Edge & older browsers don't support the :scope pseudo-class.\n\t// Support: Safari 6.0 only\n\t// Safari 6.0 supports :scope but it's an alias of :root there.\n\tsupport.scope = assert( function( el ) {\n\t\tdocElem.appendChild( el ).appendChild( document.createElement( \"div\" ) );\n\t\treturn typeof el.querySelectorAll !== \"undefined\" &&\n\t\t\t!el.querySelectorAll( \":scope fieldset div\" ).length;\n\t} );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert( function( el ) {\n\t\tel.className = \"i\";\n\t\treturn !el.getAttribute( \"className\" );\n\t} );\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert( function( el ) {\n\t\tel.appendChild( document.createComment( \"\" ) );\n\t\treturn !el.getElementsByTagName( \"*\" ).length;\n\t} );\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( document.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programmatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert( function( el ) {\n\t\tdocElem.appendChild( el ).id = expando;\n\t\treturn !document.getElementsByName || !document.getElementsByName( expando ).length;\n\t} );\n\n\t// ID filter and find\n\tif ( support.getById ) {\n\t\tExpr.filter[ \"ID\" ] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute( \"id\" ) === attrId;\n\t\t\t};\n\t\t};\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar elem = context.getElementById( id );\n\t\t\t\treturn elem ? [ elem ] : [];\n\t\t\t}\n\t\t};\n\t} else {\n\t\tExpr.filter[ \"ID\" ] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" &&\n\t\t\t\t\telem.getAttributeNode( \"id\" );\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\n\t\t// Support: IE 6 - 7 only\n\t\t// getElementById is not reliable as a find shortcut\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar node, i, elems,\n\t\t\t\t\telem = context.getElementById( id );\n\n\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t// Verify the id attribute\n\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t}\n\n\t\t\t\t\t// Fall back on getElementsByName\n\t\t\t\t\telems = context.getElementsByName( id );\n\t\t\t\t\ti = 0;\n\t\t\t\t\twhile ( ( elem = elems[ i++ ] ) ) {\n\t\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn [];\n\t\t\t}\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[ \"TAG\" ] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[ \"CLASS\" ] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See https://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) {\n\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert( function( el ) {\n\n\t\t\tvar input;\n\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// https://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( el ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\r\\\\' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( el.querySelectorAll( \"[msallowcapture^='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !el.querySelectorAll( \"[selected]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+\n\t\t\tif ( !el.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"~=\" );\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 15 - 18+\n\t\t\t// IE 11/Edge don't find elements on a `[name='']` query in some cases.\n\t\t\t// Adding a temporary attribute to the document before the selection works\n\t\t\t// around the issue.\n\t\t\t// Interestingly, IE 10 & older don't seem to have the issue.\n\t\t\tinput = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"name\", \"\" );\n\t\t\tel.appendChild( input );\n\t\t\tif ( !el.querySelectorAll( \"[name='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*name\" + whitespace + \"*=\" +\n\t\t\t\t\twhitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !el.querySelectorAll( \":checked\" ).length ) {\n\t\t\t\trbuggyQSA.push( \":checked\" );\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibling-combinator selector` fails\n\t\t\tif ( !el.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push( \".#.+[+~]\" );\n\t\t\t}\n\n\t\t\t// Support: Firefox <=3.6 - 5 only\n\t\t\t// Old Firefox doesn't throw on a badly-escaped identifier.\n\t\t\tel.querySelectorAll( \"\\\\\\f\" );\n\t\t\trbuggyQSA.push( \"[\\\\r\\\\n\\\\f]\" );\n\t\t} );\n\n\t\tassert( function( el ) {\n\t\t\tel.innerHTML = \"<a href='' disabled='disabled'></a>\" +\n\t\t\t\t\"<select disabled='disabled'><option/></select>\";\n\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tel.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( el.querySelectorAll( \"[name=d]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( el.querySelectorAll( \":enabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: IE9-11+\n\t\t\t// IE's :disabled selector does not pick up the children of disabled fieldsets\n\t\t\tdocElem.appendChild( el ).disabled = true;\n\t\t\tif ( el.querySelectorAll( \":disabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: Opera 10 - 11 only\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tel.querySelectorAll( \"*,:x\" );\n\t\t\trbuggyQSA.push( \",.*:\" );\n\t\t} );\n\t}\n\n\tif ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector ) ) ) ) {\n\n\t\tassert( function( el ) {\n\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( el, \"*\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( el, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t} );\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( \"|\" ) );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( \"|\" ) );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully self-exclusive\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t) );\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( ( b = b.parentNode ) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t// two documents; shallow comparisons work.\n\t\t// eslint-disable-next-line eqeqeq\n\t\tcompare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( a == document || a.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, a ) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( b == document || b.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, b ) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\treturn a == document ? -1 :\n\t\t\t\tb == document ? 1 :\n\t\t\t\t/* eslint-enable eqeqeq */\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[ i ] === bp[ i ] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[ i ], bp[ i ] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\tap[ i ] == preferredDoc ? -1 :\n\t\t\tbp[ i ] == preferredDoc ? 1 :\n\t\t\t/* eslint-enable eqeqeq */\n\t\t\t0;\n\t};\n\n\treturn document;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\tsetDocument( elem );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t!nonnativeSelectorCache[ expr + \" \" ] &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\n\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t// fragment in IE 9\n\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\tnonnativeSelectorCache( expr, true );\n\t\t}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( context.ownerDocument || context ) != document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( elem.ownerDocument || elem ) != document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.escape = function( sel ) {\n\treturn ( sel + \"\" ).replace( rcssescape, fcssescape );\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( ( node = elem[ i++ ] ) ) {\n\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[ 1 ] = match[ 1 ].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[ 3 ] = ( match[ 3 ] || match[ 4 ] ||\n\t\t\t\tmatch[ 5 ] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[ 2 ] === \"~=\" ) {\n\t\t\t\tmatch[ 3 ] = \" \" + match[ 3 ] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[ 1 ] = match[ 1 ].toLowerCase();\n\n\t\t\tif ( match[ 1 ].slice( 0, 3 ) === \"nth\" ) {\n\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[ 3 ] ) {\n\t\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[ 4 ] = +( match[ 4 ] ?\n\t\t\t\t\tmatch[ 5 ] + ( match[ 6 ] || 1 ) :\n\t\t\t\t\t2 * ( match[ 3 ] === \"even\" || match[ 3 ] === \"odd\" ) );\n\t\t\t\tmatch[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === \"odd\" );\n\n\t\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[ 3 ] ) {\n\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[ 6 ] && match[ 2 ];\n\n\t\t\tif ( matchExpr[ \"CHILD\" ].test( match[ 0 ] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[ 3 ] ) {\n\t\t\t\tmatch[ 2 ] = match[ 4 ] || match[ 5 ] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t( excess = tokenize( unquoted, true ) ) &&\n\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t( excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length ) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[ 0 ] = match[ 0 ].slice( 0, excess );\n\t\t\t\tmatch[ 2 ] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() {\n\t\t\t\t\treturn true;\n\t\t\t\t} :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t( pattern = new RegExp( \"(^|\" + whitespace +\n\t\t\t\t\t\")\" + className + \"(\" + whitespace + \"|$)\" ) ) && classCache(\n\t\t\t\t\t\tclassName, function( elem ) {\n\t\t\t\t\t\t\treturn pattern.test(\n\t\t\t\t\t\t\t\ttypeof elem.className === \"string\" && elem.className ||\n\t\t\t\t\t\t\t\ttypeof elem.getAttribute !== \"undefined\" &&\n\t\t\t\t\t\t\t\t\telem.getAttribute( \"class\" ) ||\n\t\t\t\t\t\t\t\t\"\"\n\t\t\t\t\t\t\t);\n\t\t\t\t} );\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\t/* eslint-disable max-len */\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t\t/* eslint-enable max-len */\n\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, _argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tvar cache, uniqueCache, outerCache, node, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType,\n\t\t\t\t\t\tdiff = false;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( ( node = node[ dir ] ) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) {\n\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\n\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\tnode = parent;\n\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\tdiff = nodeIndex && cache[ 2 ];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t\tif ( useCache ) {\n\n\t\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\t\tdiff = nodeIndex;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// xml :nth-child(...)\n\t\t\t\t\t\t\t// or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t\tif ( diff === false ) {\n\n\t\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t\tif ( ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) &&\n\t\t\t\t\t\t\t\t\t\t++diff ) {\n\n\t\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t\touterCache = node[ expando ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction( function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[ i ] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[ i ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t} ) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction( function( selector ) {\n\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction( function( seed, matches, _context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\t\t\t\t\tseed[ i ] = !( matches[ i ] = elem );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} ) :\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tinput[ 0 ] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[ 0 ] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t} ),\n\n\t\t\"has\": markFunction( function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t} ),\n\n\t\t\"contains\": markFunction( function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t} ),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test( lang || \"\" ) ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( ( elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute( \"xml:lang\" ) || elem.getAttribute( \"lang\" ) ) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( ( elem = elem.parentNode ) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t} ),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement &&\n\t\t\t\t( !document.hasFocus || document.hasFocus() ) &&\n\t\t\t\t!!( elem.type || elem.href || ~elem.tabIndex );\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": createDisabledPseudo( false ),\n\t\t\"disabled\": createDisabledPseudo( true ),\n\n\t\t\"checked\": function( elem ) {\n\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn ( nodeName === \"input\" && !!elem.checked ) ||\n\t\t\t\t( nodeName === \"option\" && !!elem.selected );\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\t// eslint-disable-next-line no-unused-expressions\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[ \"empty\" ]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( ( attr = elem.getAttribute( \"type\" ) ) == null ||\n\t\t\t\t\tattr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo( function() {\n\t\t\treturn [ 0 ];\n\t\t} ),\n\n\t\t\"last\": createPositionalPseudo( function( _matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t} ),\n\n\t\t\"eq\": createPositionalPseudo( function( _matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t} ),\n\n\t\t\"even\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"odd\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"lt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ?\n\t\t\t\targument + length :\n\t\t\t\targument > length ?\n\t\t\t\t\tlength :\n\t\t\t\t\targument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"gt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} )\n\t}\n};\n\nExpr.pseudos[ \"nth\" ] = Expr.pseudos[ \"eq\" ];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || ( match = rcomma.exec( soFar ) ) ) {\n\t\t\tif ( match ) {\n\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[ 0 ].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( ( tokens = [] ) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( ( match = rcombinators.exec( soFar ) ) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push( {\n\t\t\t\tvalue: matched,\n\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[ 0 ].replace( rtrim, \" \" )\n\t\t\t} );\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] ||\n\t\t\t\t( match = preFilters[ type ]( match ) ) ) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push( {\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t} );\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[ i ].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tskip = combinator.next,\n\t\tkey = skip || dir,\n\t\tcheckNonElements = base && key === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, uniqueCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || ( elem[ expando ] = {} );\n\n\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\tuniqueCache = outerCache[ elem.uniqueID ] ||\n\t\t\t\t\t\t\t( outerCache[ elem.uniqueID ] = {} );\n\n\t\t\t\t\t\tif ( skip && skip === elem.nodeName.toLowerCase() ) {\n\t\t\t\t\t\t\telem = elem[ dir ] || elem;\n\t\t\t\t\t\t} else if ( ( oldCache = uniqueCache[ key ] ) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn ( newCache[ 2 ] = oldCache[ 2 ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\tuniqueCache[ key ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[ i ]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[ 0 ];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[ i ], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction( function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts(\n\t\t\t\tselector || \"*\",\n\t\t\t\tcontext.nodeType ? [ context ] : context,\n\t\t\t\t[]\n\t\t\t),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( ( elem = temp[ i ] ) ) {\n\t\t\t\t\tmatcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) ) {\n\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( ( matcherIn[ i ] = elem ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, ( matcherOut = [] ), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) &&\n\t\t\t\t\t\t( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) {\n\n\t\t\t\t\t\tseed[ temp ] = !( results[ temp ] = elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t} );\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[ 0 ].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[ \" \" ],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t( checkContext = context ).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) {\n\t\t\tmatchers = [ addCombinator( elementMatcher( matchers ), matcher ) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[ j ].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\n\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\ttokens\n\t\t\t\t\t\t.slice( 0, i - 1 )\n\t\t\t\t\t\t.concat( { value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" } )\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[ \"TAG\" ]( \"*\", outermost ),\n\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\n\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\toutermostContext = context == document || context || outermost;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\n\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\tif ( !context && elem.ownerDocument != document ) {\n\t\t\t\t\t\tsetDocument( elem );\n\t\t\t\t\t\txml = !documentIsHTML;\n\t\t\t\t\t}\n\t\t\t\t\twhile ( ( matcher = elementMatchers[ j++ ] ) ) {\n\t\t\t\t\t\tif ( matcher( elem, context || document, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( ( elem = !matcher && elem ) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// `i` is now the count of elements visited above, and adding it to `matchedCount`\n\t\t\t// makes the latter nonnegative.\n\t\t\tmatchedCount += i;\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\t// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n\t\t\t// equals `i`), unless we didn't visit _any_ elements in the above loop because we have\n\t\t\t// no element matchers and no seed.\n\t\t\t// Incrementing an initially-string \"0\" `i` allows `i` to remain a string only in that\n\t\t\t// case, which will result in a \"00\" `matchedCount` that differs from `i` but is also\n\t\t\t// numerically zero.\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( ( matcher = setMatchers[ j++ ] ) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !( unmatched[ i ] || setMatched[ i ] ) ) {\n\t\t\t\t\t\t\t\tsetMatched[ i ] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[ i ] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache(\n\t\t\tselector,\n\t\t\tmatcherFromGroupMatchers( elementMatchers, setMatchers )\n\t\t);\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( ( selector = compiled.selector || selector ) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is only one selector in the list and no seed\n\t// (the latter of which guarantees us context)\n\tif ( match.length === 1 ) {\n\n\t\t// Reduce context if the leading compound selector is an ID\n\t\ttokens = match[ 0 ] = match[ 0 ].slice( 0 );\n\t\tif ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === \"ID\" &&\n\t\t\tcontext.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) {\n\n\t\t\tcontext = ( Expr.find[ \"ID\" ]( token.matches[ 0 ]\n\t\t\t\t.replace( runescape, funescape ), context ) || [] )[ 0 ];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[ \"needsContext\" ].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[ i ];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ ( type = token.type ) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( ( find = Expr.find[ type ] ) ) {\n\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( ( seed = find(\n\t\t\t\t\ttoken.matches[ 0 ].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext\n\t\t\t\t) ) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\t!context || rsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split( \"\" ).sort( sortOrder ).join( \"\" ) === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert( function( el ) {\n\n\t// Should return 1, but returns 4 (following)\n\treturn el.compareDocumentPosition( document.createElement( \"fieldset\" ) ) & 1;\n} );\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert( function( el ) {\n\tel.innerHTML = \"<a href='#'></a>\";\n\treturn el.firstChild.getAttribute( \"href\" ) === \"#\";\n} ) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert( function( el ) {\n\tel.innerHTML = \"<input/>\";\n\tel.firstChild.setAttribute( \"value\", \"\" );\n\treturn el.firstChild.getAttribute( \"value\" ) === \"\";\n} ) ) {\n\taddHandle( \"value\", function( elem, _name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert( function( el ) {\n\treturn el.getAttribute( \"disabled\" ) == null;\n} ) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\t\tnull;\n\t\t}\n\t} );\n}\n\nreturn Sizzle;\n\n} )( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\n\n// Deprecated\njQuery.expr[ \":\" ] = jQuery.expr.pseudos;\njQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\njQuery.escapeSelector = Sizzle.escape;\n\n\n\n\nvar dir = function( elem, dir, until ) {\n\tvar matched = [],\n\t\ttruncate = until !== undefined;\n\n\twhile ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {\n\t\tif ( elem.nodeType === 1 ) {\n\t\t\tif ( truncate && jQuery( elem ).is( until ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tmatched.push( elem );\n\t\t}\n\t}\n\treturn matched;\n};\n\n\nvar siblings = function( n, elem ) {\n\tvar matched = [];\n\n\tfor ( ; n; n = n.nextSibling ) {\n\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\tmatched.push( n );\n\t\t}\n\t}\n\n\treturn matched;\n};\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\n\n\nfunction nodeName( elem, name ) {\n\n  return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\n};\nvar rsingleTag = ( /^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i );\n\n\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t} );\n\t}\n\n\t// Single element\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t} );\n\t}\n\n\t// Arraylike of elements (jQuery, arguments, Array)\n\tif ( typeof qualifier !== \"string\" ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( indexOf.call( qualifier, elem ) > -1 ) !== not;\n\t\t} );\n\t}\n\n\t// Filtered directly for both simple and complex selectors\n\treturn jQuery.filter( qualifier, elements, not );\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\tif ( elems.length === 1 && elem.nodeType === 1 ) {\n\t\treturn jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];\n\t}\n\n\treturn jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\treturn elem.nodeType === 1;\n\t} ) );\n};\n\njQuery.fn.extend( {\n\tfind: function( selector ) {\n\t\tvar i, ret,\n\t\t\tlen = this.length,\n\t\t\tself = this;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter( function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} ) );\n\t\t}\n\n\t\tret = this.pushStack( [] );\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\treturn len > 1 ? jQuery.uniqueSort( ret ) : ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], false ) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], true ) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n} );\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\t// Shortcut simple #id case for speed\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/,\n\n\tinit = jQuery.fn.init = function( selector, context, root ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Method init() accepts an alternate rootjQuery\n\t\t// so migrate can support jQuery.sub (gh-2101)\n\t\troot = root || rootjQuery;\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector[ 0 ] === \"<\" &&\n\t\t\t\tselector[ selector.length - 1 ] === \">\" &&\n\t\t\t\tselector.length >= 3 ) {\n\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && ( match[ 1 ] || !context ) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[ 1 ] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[ 0 ] : context;\n\n\t\t\t\t\t// Option to run scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[ 1 ],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[ 2 ] );\n\n\t\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t\t// Inject the element directly into the jQuery object\n\t\t\t\t\t\tthis[ 0 ] = elem;\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || root ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis[ 0 ] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( isFunction( selector ) ) {\n\t\t\treturn root.ready !== undefined ?\n\t\t\t\troot.ready( selector ) :\n\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\n\t// Methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend( {\n\thas: function( target ) {\n\t\tvar targets = jQuery( target, this ),\n\t\t\tl = targets.length;\n\n\t\treturn this.filter( function() {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[ i ] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\ttargets = typeof selectors !== \"string\" && jQuery( selectors );\n\n\t\t// Positional selectors never match, since there's no _selection_ context\n\t\tif ( !rneedsContext.test( selectors ) ) {\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tfor ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {\n\n\t\t\t\t\t// Always skip document fragments\n\t\t\t\t\tif ( cur.nodeType < 11 && ( targets ?\n\t\t\t\t\t\ttargets.index( cur ) > -1 :\n\n\t\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\t\tjQuery.find.matchesSelector( cur, selectors ) ) ) {\n\n\t\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within the set\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// Index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn indexOf.call( jQuery( elem ), this[ 0 ] );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn indexOf.call( this,\n\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[ 0 ] : elem\n\t\t);\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.uniqueSort(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t}\n} );\n\nfunction sibling( cur, dir ) {\n\twhile ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}\n\treturn cur;\n}\n\njQuery.each( {\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn siblings( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn siblings( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\tif ( elem.contentDocument != null &&\n\n\t\t\t// Support: IE 11+\n\t\t\t// <object> elements with no `data` attribute has an object\n\t\t\t// `contentDocument` with a `null` prototype.\n\t\t\tgetProto( elem.contentDocument ) ) {\n\n\t\t\treturn elem.contentDocument;\n\t\t}\n\n\t\t// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only\n\t\t// Treat the template element as a regular one in browsers that\n\t\t// don't support it.\n\t\tif ( nodeName( elem, \"template\" ) ) {\n\t\t\telem = elem.content || elem;\n\t\t}\n\n\t\treturn jQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar matched = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tmatched = jQuery.filter( selector, matched );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tjQuery.uniqueSort( matched );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tmatched.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched );\n\t};\n} );\nvar rnothtmlwhite = ( /[^\\x20\\t\\r\\n\\f]+/g );\n\n\n\n// Convert String-formatted options into Object-formatted ones\nfunction createOptions( options ) {\n\tvar object = {};\n\tjQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t} );\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\tcreateOptions( options ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\n\t\t// Last fire value for non-forgettable lists\n\t\tmemory,\n\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\n\t\t// Flag to prevent firing\n\t\tlocked,\n\n\t\t// Actual callback list\n\t\tlist = [],\n\n\t\t// Queue of execution data for repeatable lists\n\t\tqueue = [],\n\n\t\t// Index of currently firing callback (modified by add/remove as needed)\n\t\tfiringIndex = -1,\n\n\t\t// Fire callbacks\n\t\tfire = function() {\n\n\t\t\t// Enforce single-firing\n\t\t\tlocked = locked || options.once;\n\n\t\t\t// Execute callbacks for all pending executions,\n\t\t\t// respecting firingIndex overrides and runtime changes\n\t\t\tfired = firing = true;\n\t\t\tfor ( ; queue.length; firingIndex = -1 ) {\n\t\t\t\tmemory = queue.shift();\n\t\t\t\twhile ( ++firingIndex < list.length ) {\n\n\t\t\t\t\t// Run callback and check for early termination\n\t\t\t\t\tif ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&\n\t\t\t\t\t\toptions.stopOnFalse ) {\n\n\t\t\t\t\t\t// Jump to end and forget the data so .add doesn't re-fire\n\t\t\t\t\t\tfiringIndex = list.length;\n\t\t\t\t\t\tmemory = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Forget the data if we're done with it\n\t\t\tif ( !options.memory ) {\n\t\t\t\tmemory = false;\n\t\t\t}\n\n\t\t\tfiring = false;\n\n\t\t\t// Clean up if we're done firing for good\n\t\t\tif ( locked ) {\n\n\t\t\t\t// Keep an empty list if we have data for future add calls\n\t\t\t\tif ( memory ) {\n\t\t\t\t\tlist = [];\n\n\t\t\t\t// Otherwise, this object is spent\n\t\t\t\t} else {\n\t\t\t\t\tlist = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t// Actual Callbacks object\n\t\tself = {\n\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\n\t\t\t\t\t// If we have memory from a past run, we should fire after adding\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfiringIndex = list.length - 1;\n\t\t\t\t\t\tqueue.push( memory );\n\t\t\t\t\t}\n\n\t\t\t\t\t( function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tif ( isFunction( arg ) ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && toType( arg ) !== \"string\" ) {\n\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t} )( arguments );\n\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\tvar index;\n\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\tlist.splice( index, 1 );\n\n\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ?\n\t\t\t\t\tjQuery.inArray( fn, list ) > -1 :\n\t\t\t\t\tlist.length > 0;\n\t\t\t},\n\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Disable .fire and .add\n\t\t\t// Abort any current/pending executions\n\t\t\t// Clear all callbacks and values\n\t\t\tdisable: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tlist = memory = \"\";\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\n\t\t\t// Disable .fire\n\t\t\t// Also disable .add unless we have memory (since it would have no effect)\n\t\t\t// Abort any pending executions\n\t\t\tlock: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tif ( !memory && !firing ) {\n\t\t\t\t\tlist = memory = \"\";\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tlocked: function() {\n\t\t\t\treturn !!locked;\n\t\t\t},\n\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( !locked ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tqueue.push( args );\n\t\t\t\t\tif ( !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\nfunction Identity( v ) {\n\treturn v;\n}\nfunction Thrower( ex ) {\n\tthrow ex;\n}\n\nfunction adoptValue( value, resolve, reject, noValue ) {\n\tvar method;\n\n\ttry {\n\n\t\t// Check for promise aspect first to privilege synchronous behavior\n\t\tif ( value && isFunction( ( method = value.promise ) ) ) {\n\t\t\tmethod.call( value ).done( resolve ).fail( reject );\n\n\t\t// Other thenables\n\t\t} else if ( value && isFunction( ( method = value.then ) ) ) {\n\t\t\tmethod.call( value, resolve, reject );\n\n\t\t// Other non-thenables\n\t\t} else {\n\n\t\t\t// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:\n\t\t\t// * false: [ value ].slice( 0 ) => resolve( value )\n\t\t\t// * true: [ value ].slice( 1 ) => resolve()\n\t\t\tresolve.apply( undefined, [ value ].slice( noValue ) );\n\t\t}\n\n\t// For Promises/A+, convert exceptions into rejections\n\t// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in\n\t// Deferred#then to conditionally suppress rejection.\n\t} catch ( value ) {\n\n\t\t// Support: Android 4.0 only\n\t\t// Strict mode functions invoked without .call/.apply get global-object context\n\t\treject.apply( undefined, [ value ] );\n\t}\n}\n\njQuery.extend( {\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\n\t\t\t\t// action, add listener, callbacks,\n\t\t\t\t// ... .then handlers, argument index, [final state]\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks( \"memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"memory\" ), 2 ],\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 0, \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 1, \"rejected\" ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\t\"catch\": function( fn ) {\n\t\t\t\t\treturn promise.then( null, fn );\n\t\t\t\t},\n\n\t\t\t\t// Keep pipe for back-compat\n\t\t\t\tpipe: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( _i, tuple ) {\n\n\t\t\t\t\t\t\t// Map tuples (progress, done, fail) to arguments (done, fail, progress)\n\t\t\t\t\t\t\tvar fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];\n\n\t\t\t\t\t\t\t// deferred.progress(function() { bind to newDefer or newDefer.notify })\n\t\t\t\t\t\t\t// deferred.done(function() { bind to newDefer or newDefer.resolve })\n\t\t\t\t\t\t\t// deferred.fail(function() { bind to newDefer or newDefer.reject })\n\t\t\t\t\t\t\tdeferred[ tuple[ 1 ] ]( function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify )\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ](\n\t\t\t\t\t\t\t\t\t\tthis,\n\t\t\t\t\t\t\t\t\t\tfn ? [ returned ] : arguments\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t} );\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\t\t\t\tthen: function( onFulfilled, onRejected, onProgress ) {\n\t\t\t\t\tvar maxDepth = 0;\n\t\t\t\t\tfunction resolve( depth, deferred, handler, special ) {\n\t\t\t\t\t\treturn function() {\n\t\t\t\t\t\t\tvar that = this,\n\t\t\t\t\t\t\t\targs = arguments,\n\t\t\t\t\t\t\t\tmightThrow = function() {\n\t\t\t\t\t\t\t\t\tvar returned, then;\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.3\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-59\n\t\t\t\t\t\t\t\t\t// Ignore double-resolution attempts\n\t\t\t\t\t\t\t\t\tif ( depth < maxDepth ) {\n\t\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\treturned = handler.apply( that, args );\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.1\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-48\n\t\t\t\t\t\t\t\t\tif ( returned === deferred.promise() ) {\n\t\t\t\t\t\t\t\t\t\tthrow new TypeError( \"Thenable self-resolution\" );\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ sections 2.3.3.1, 3.5\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-54\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-75\n\t\t\t\t\t\t\t\t\t// Retrieve `then` only once\n\t\t\t\t\t\t\t\t\tthen = returned &&\n\n\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.4\n\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-64\n\t\t\t\t\t\t\t\t\t\t// Only check objects and functions for thenability\n\t\t\t\t\t\t\t\t\t\t( typeof returned === \"object\" ||\n\t\t\t\t\t\t\t\t\t\t\ttypeof returned === \"function\" ) &&\n\t\t\t\t\t\t\t\t\t\treturned.then;\n\n\t\t\t\t\t\t\t\t\t// Handle a returned thenable\n\t\t\t\t\t\t\t\t\tif ( isFunction( then ) ) {\n\n\t\t\t\t\t\t\t\t\t\t// Special processors (notify) just wait for resolution\n\t\t\t\t\t\t\t\t\t\tif ( special ) {\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special )\n\t\t\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\t\t// Normal processors (resolve) also hook into progress\n\t\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t\t// ...and disregard older resolution values\n\t\t\t\t\t\t\t\t\t\t\tmaxDepth++;\n\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdeferred.notifyWith )\n\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Handle all other returned values\n\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\tif ( handler !== Identity ) {\n\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\targs = [ returned ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t// Process the value(s)\n\t\t\t\t\t\t\t\t\t\t// Default process is resolve\n\t\t\t\t\t\t\t\t\t\t( special || deferred.resolveWith )( that, args );\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},\n\n\t\t\t\t\t\t\t\t// Only normal processors (resolve) catch and reject exceptions\n\t\t\t\t\t\t\t\tprocess = special ?\n\t\t\t\t\t\t\t\t\tmightThrow :\n\t\t\t\t\t\t\t\t\tfunction() {\n\t\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\t\tmightThrow();\n\t\t\t\t\t\t\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t\t\t\t\t\t\tif ( jQuery.Deferred.exceptionHook ) {\n\t\t\t\t\t\t\t\t\t\t\t\tjQuery.Deferred.exceptionHook( e,\n\t\t\t\t\t\t\t\t\t\t\t\t\tprocess.stackTrace );\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.4.1\n\t\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-61\n\t\t\t\t\t\t\t\t\t\t\t// Ignore post-resolution exceptions\n\t\t\t\t\t\t\t\t\t\t\tif ( depth + 1 >= maxDepth ) {\n\n\t\t\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\t\t\tif ( handler !== Thrower ) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\t\t\targs = [ e ];\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tdeferred.rejectWith( that, args );\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t};\n\n\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.1\n\t\t\t\t\t\t\t// https://promisesaplus.com/#point-57\n\t\t\t\t\t\t\t// Re-resolve promises immediately to dodge false rejection from\n\t\t\t\t\t\t\t// subsequent errors\n\t\t\t\t\t\t\tif ( depth ) {\n\t\t\t\t\t\t\t\tprocess();\n\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t// Call an optional hook to record the stack, in case of exception\n\t\t\t\t\t\t\t\t// since it's otherwise lost when execution goes async\n\t\t\t\t\t\t\t\tif ( jQuery.Deferred.getStackHook ) {\n\t\t\t\t\t\t\t\t\tprocess.stackTrace = jQuery.Deferred.getStackHook();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\twindow.setTimeout( process );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\n\t\t\t\t\t\t// progress_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 0 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onProgress ) ?\n\t\t\t\t\t\t\t\t\tonProgress :\n\t\t\t\t\t\t\t\t\tIdentity,\n\t\t\t\t\t\t\t\tnewDefer.notifyWith\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// fulfilled_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 1 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onFulfilled ) ?\n\t\t\t\t\t\t\t\t\tonFulfilled :\n\t\t\t\t\t\t\t\t\tIdentity\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// rejected_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 2 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onRejected ) ?\n\t\t\t\t\t\t\t\t\tonRejected :\n\t\t\t\t\t\t\t\t\tThrower\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 5 ];\n\n\t\t\t// promise.progress = list.add\n\t\t\t// promise.done = list.add\n\t\t\t// promise.fail = list.add\n\t\t\tpromise[ tuple[ 1 ] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(\n\t\t\t\t\tfunction() {\n\n\t\t\t\t\t\t// state = \"resolved\" (i.e., fulfilled)\n\t\t\t\t\t\t// state = \"rejected\"\n\t\t\t\t\t\tstate = stateString;\n\t\t\t\t\t},\n\n\t\t\t\t\t// rejected_callbacks.disable\n\t\t\t\t\t// fulfilled_callbacks.disable\n\t\t\t\t\ttuples[ 3 - i ][ 2 ].disable,\n\n\t\t\t\t\t// rejected_handlers.disable\n\t\t\t\t\t// fulfilled_handlers.disable\n\t\t\t\t\ttuples[ 3 - i ][ 3 ].disable,\n\n\t\t\t\t\t// progress_callbacks.lock\n\t\t\t\t\ttuples[ 0 ][ 2 ].lock,\n\n\t\t\t\t\t// progress_handlers.lock\n\t\t\t\t\ttuples[ 0 ][ 3 ].lock\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// progress_handlers.fire\n\t\t\t// fulfilled_handlers.fire\n\t\t\t// rejected_handlers.fire\n\t\t\tlist.add( tuple[ 3 ].fire );\n\n\t\t\t// deferred.notify = function() { deferred.notifyWith(...) }\n\t\t\t// deferred.resolve = function() { deferred.resolveWith(...) }\n\t\t\t// deferred.reject = function() { deferred.rejectWith(...) }\n\t\t\tdeferred[ tuple[ 0 ] ] = function() {\n\t\t\t\tdeferred[ tuple[ 0 ] + \"With\" ]( this === deferred ? undefined : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\n\t\t\t// deferred.notifyWith = list.fireWith\n\t\t\t// deferred.resolveWith = list.fireWith\n\t\t\t// deferred.rejectWith = list.fireWith\n\t\t\tdeferred[ tuple[ 0 ] + \"With\" ] = list.fireWith;\n\t\t} );\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( singleValue ) {\n\t\tvar\n\n\t\t\t// count of uncompleted subordinates\n\t\t\tremaining = arguments.length,\n\n\t\t\t// count of unprocessed arguments\n\t\t\ti = remaining,\n\n\t\t\t// subordinate fulfillment data\n\t\t\tresolveContexts = Array( i ),\n\t\t\tresolveValues = slice.call( arguments ),\n\n\t\t\t// the master Deferred\n\t\t\tmaster = jQuery.Deferred(),\n\n\t\t\t// subordinate callback factory\n\t\t\tupdateFunc = function( i ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tresolveContexts[ i ] = this;\n\t\t\t\t\tresolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( !( --remaining ) ) {\n\t\t\t\t\t\tmaster.resolveWith( resolveContexts, resolveValues );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t};\n\n\t\t// Single- and empty arguments are adopted like Promise.resolve\n\t\tif ( remaining <= 1 ) {\n\t\t\tadoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject,\n\t\t\t\t!remaining );\n\n\t\t\t// Use .then() to unwrap secondary thenables (cf. gh-3000)\n\t\t\tif ( master.state() === \"pending\" ||\n\t\t\t\tisFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {\n\n\t\t\t\treturn master.then();\n\t\t\t}\n\t\t}\n\n\t\t// Multiple arguments are aggregated like Promise.all array elements\n\t\twhile ( i-- ) {\n\t\t\tadoptValue( resolveValues[ i ], updateFunc( i ), master.reject );\n\t\t}\n\n\t\treturn master.promise();\n\t}\n} );\n\n\n// These usually indicate a programmer mistake during development,\n// warn about them ASAP rather than swallowing them by default.\nvar rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;\n\njQuery.Deferred.exceptionHook = function( error, stack ) {\n\n\t// Support: IE 8 - 9 only\n\t// Console exists when dev tools are open, which can happen at any time\n\tif ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {\n\t\twindow.console.warn( \"jQuery.Deferred exception: \" + error.message, error.stack, stack );\n\t}\n};\n\n\n\n\njQuery.readyException = function( error ) {\n\twindow.setTimeout( function() {\n\t\tthrow error;\n\t} );\n};\n\n\n\n\n// The deferred used on DOM ready\nvar readyList = jQuery.Deferred();\n\njQuery.fn.ready = function( fn ) {\n\n\treadyList\n\t\t.then( fn )\n\n\t\t// Wrap jQuery.readyException in a function so that the lookup\n\t\t// happens at the time of error handling instead of callback\n\t\t// registration.\n\t\t.catch( function( error ) {\n\t\t\tjQuery.readyException( error );\n\t\t} );\n\n\treturn this;\n};\n\njQuery.extend( {\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\t}\n} );\n\njQuery.ready.then = readyList.then;\n\n// The ready event handler and self cleanup method\nfunction completed() {\n\tdocument.removeEventListener( \"DOMContentLoaded\", completed );\n\twindow.removeEventListener( \"load\", completed );\n\tjQuery.ready();\n}\n\n// Catch cases where $(document).ready() is called\n// after the browser event has already occurred.\n// Support: IE <=9 - 10 only\n// Older IE sometimes signals \"interactive\" too soon\nif ( document.readyState === \"complete\" ||\n\t( document.readyState !== \"loading\" && !document.documentElement.doScroll ) ) {\n\n\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\twindow.setTimeout( jQuery.ready );\n\n} else {\n\n\t// Use the handy event callback\n\tdocument.addEventListener( \"DOMContentLoaded\", completed );\n\n\t// A fallback to window.onload, that will always work\n\twindow.addEventListener( \"load\", completed );\n}\n\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlen = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( toType( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\taccess( elems, fn, i, key[ i ], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, _key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\tfn(\n\t\t\t\t\telems[ i ], key, raw ?\n\t\t\t\t\tvalue :\n\t\t\t\t\tvalue.call( elems[ i ], i, fn( elems[ i ], key ) )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( chainable ) {\n\t\treturn elems;\n\t}\n\n\t// Gets\n\tif ( bulk ) {\n\t\treturn fn.call( elems );\n\t}\n\n\treturn len ? fn( elems[ 0 ], key ) : emptyGet;\n};\n\n\n// Matches dashed string for camelizing\nvar rmsPrefix = /^-ms-/,\n\trdashAlpha = /-([a-z])/g;\n\n// Used by camelCase as callback to replace()\nfunction fcamelCase( _all, letter ) {\n\treturn letter.toUpperCase();\n}\n\n// Convert dashed to camelCase; used by the css and data modules\n// Support: IE <=9 - 11, Edge 12 - 15\n// Microsoft forgot to hump their vendor prefix (#9572)\nfunction camelCase( string ) {\n\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n}\nvar acceptData = function( owner ) {\n\n\t// Accepts only:\n\t//  - Node\n\t//    - Node.ELEMENT_NODE\n\t//    - Node.DOCUMENT_NODE\n\t//  - Object\n\t//    - Any\n\treturn owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );\n};\n\n\n\n\nfunction Data() {\n\tthis.expando = jQuery.expando + Data.uid++;\n}\n\nData.uid = 1;\n\nData.prototype = {\n\n\tcache: function( owner ) {\n\n\t\t// Check if the owner object already has a cache\n\t\tvar value = owner[ this.expando ];\n\n\t\t// If not, create one\n\t\tif ( !value ) {\n\t\t\tvalue = {};\n\n\t\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t\t// but we should not, see #8335.\n\t\t\t// Always return an empty object.\n\t\t\tif ( acceptData( owner ) ) {\n\n\t\t\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t\t\t// use plain assignment\n\t\t\t\tif ( owner.nodeType ) {\n\t\t\t\t\towner[ this.expando ] = value;\n\n\t\t\t\t// Otherwise secure it in a non-enumerable property\n\t\t\t\t// configurable must be true to allow the property to be\n\t\t\t\t// deleted when data is removed\n\t\t\t\t} else {\n\t\t\t\t\tObject.defineProperty( owner, this.expando, {\n\t\t\t\t\t\tvalue: value,\n\t\t\t\t\t\tconfigurable: true\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn value;\n\t},\n\tset: function( owner, data, value ) {\n\t\tvar prop,\n\t\t\tcache = this.cache( owner );\n\n\t\t// Handle: [ owner, key, value ] args\n\t\t// Always use camelCase key (gh-2257)\n\t\tif ( typeof data === \"string\" ) {\n\t\t\tcache[ camelCase( data ) ] = value;\n\n\t\t// Handle: [ owner, { properties } ] args\n\t\t} else {\n\n\t\t\t// Copy the properties one-by-one to the cache object\n\t\t\tfor ( prop in data ) {\n\t\t\t\tcache[ camelCase( prop ) ] = data[ prop ];\n\t\t\t}\n\t\t}\n\t\treturn cache;\n\t},\n\tget: function( owner, key ) {\n\t\treturn key === undefined ?\n\t\t\tthis.cache( owner ) :\n\n\t\t\t// Always use camelCase key (gh-2257)\n\t\t\towner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];\n\t},\n\taccess: function( owner, key, value ) {\n\n\t\t// In cases where either:\n\t\t//\n\t\t//   1. No key was specified\n\t\t//   2. A string key was specified, but no value provided\n\t\t//\n\t\t// Take the \"read\" path and allow the get method to determine\n\t\t// which value to return, respectively either:\n\t\t//\n\t\t//   1. The entire cache object\n\t\t//   2. The data stored at the key\n\t\t//\n\t\tif ( key === undefined ||\n\t\t\t\t( ( key && typeof key === \"string\" ) && value === undefined ) ) {\n\n\t\t\treturn this.get( owner, key );\n\t\t}\n\n\t\t// When the key is not a string, or both a key and value\n\t\t// are specified, set or extend (existing objects) with either:\n\t\t//\n\t\t//   1. An object of properties\n\t\t//   2. A key and value\n\t\t//\n\t\tthis.set( owner, key, value );\n\n\t\t// Since the \"set\" path can have two possible entry points\n\t\t// return the expected data based on which path was taken[*]\n\t\treturn value !== undefined ? value : key;\n\t},\n\tremove: function( owner, key ) {\n\t\tvar i,\n\t\t\tcache = owner[ this.expando ];\n\n\t\tif ( cache === undefined ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key !== undefined ) {\n\n\t\t\t// Support array or space separated string of keys\n\t\t\tif ( Array.isArray( key ) ) {\n\n\t\t\t\t// If key is an array of keys...\n\t\t\t\t// We always set camelCase keys, so remove that.\n\t\t\t\tkey = key.map( camelCase );\n\t\t\t} else {\n\t\t\t\tkey = camelCase( key );\n\n\t\t\t\t// If a key with the spaces exists, use it.\n\t\t\t\t// Otherwise, create an array by matching non-whitespace\n\t\t\t\tkey = key in cache ?\n\t\t\t\t\t[ key ] :\n\t\t\t\t\t( key.match( rnothtmlwhite ) || [] );\n\t\t\t}\n\n\t\t\ti = key.length;\n\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete cache[ key[ i ] ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if there's no more data\n\t\tif ( key === undefined || jQuery.isEmptyObject( cache ) ) {\n\n\t\t\t// Support: Chrome <=35 - 45\n\t\t\t// Webkit & Blink performance suffers when deleting properties\n\t\t\t// from DOM nodes, so set to undefined instead\n\t\t\t// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)\n\t\t\tif ( owner.nodeType ) {\n\t\t\t\towner[ this.expando ] = undefined;\n\t\t\t} else {\n\t\t\t\tdelete owner[ this.expando ];\n\t\t\t}\n\t\t}\n\t},\n\thasData: function( owner ) {\n\t\tvar cache = owner[ this.expando ];\n\t\treturn cache !== undefined && !jQuery.isEmptyObject( cache );\n\t}\n};\nvar dataPriv = new Data();\n\nvar dataUser = new Data();\n\n\n\n//\tImplementation Summary\n//\n//\t1. Enforce API surface and semantic compatibility with 1.9.x branch\n//\t2. Improve the module's maintainability by reducing the storage\n//\t\tpaths to a single mechanism.\n//\t3. Use the same single mechanism to support \"private\" and \"user\" data.\n//\t4. _Never_ expose \"private\" data to user code (TODO: Drop _data, _removeData)\n//\t5. Avoid exposing implementation details on user objects (eg. expando properties)\n//\t6. Provide a clear path for implementation upgrade to WeakMap in 2014\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /[A-Z]/g;\n\nfunction getData( data ) {\n\tif ( data === \"true\" ) {\n\t\treturn true;\n\t}\n\n\tif ( data === \"false\" ) {\n\t\treturn false;\n\t}\n\n\tif ( data === \"null\" ) {\n\t\treturn null;\n\t}\n\n\t// Only convert to a number if it doesn't change the string\n\tif ( data === +data + \"\" ) {\n\t\treturn +data;\n\t}\n\n\tif ( rbrace.test( data ) ) {\n\t\treturn JSON.parse( data );\n\t}\n\n\treturn data;\n}\n\nfunction dataAttr( elem, key, data ) {\n\tvar name;\n\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\t\tname = \"data-\" + key.replace( rmultiDash, \"-$&\" ).toLowerCase();\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = getData( data );\n\t\t\t} catch ( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tdataUser.set( elem, key, data );\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\treturn data;\n}\n\njQuery.extend( {\n\thasData: function( elem ) {\n\t\treturn dataUser.hasData( elem ) || dataPriv.hasData( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn dataUser.access( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\tdataUser.remove( elem, name );\n\t},\n\n\t// TODO: Now that all calls to _data and _removeData have been replaced\n\t// with direct calls to dataPriv methods, these can be deprecated.\n\t_data: function( elem, name, data ) {\n\t\treturn dataPriv.access( elem, name, data );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\tdataPriv.remove( elem, name );\n\t}\n} );\n\njQuery.fn.extend( {\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[ 0 ],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = dataUser.get( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !dataPriv.get( elem, \"hasDataAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE 11 only\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = camelCase( name.slice( 5 ) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tdataPriv.set( elem, \"hasDataAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tdataUser.set( this, key );\n\t\t\t} );\n\t\t}\n\n\t\treturn access( this, function( value ) {\n\t\t\tvar data;\n\n\t\t\t// The calling jQuery object (element matches) is not empty\n\t\t\t// (and therefore has an element appears at this[ 0 ]) and the\n\t\t\t// `value` parameter was not undefined. An empty jQuery object\n\t\t\t// will result in `undefined` for elem = this[ 0 ] which will\n\t\t\t// throw an exception if an attempt to read a data cache is made.\n\t\t\tif ( elem && value === undefined ) {\n\n\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t// The key will always be camelCased in Data\n\t\t\t\tdata = dataUser.get( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Attempt to \"discover\" the data in\n\t\t\t\t// HTML5 custom data-* attrs\n\t\t\t\tdata = dataAttr( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// We tried really hard, but the data doesn't exist.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Set the data...\n\t\t\tthis.each( function() {\n\n\t\t\t\t// We always store the camelCased key\n\t\t\t\tdataUser.set( this, key, value );\n\t\t\t} );\n\t\t}, null, value, arguments.length > 1, null, true );\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each( function() {\n\t\t\tdataUser.remove( this, key );\n\t\t} );\n\t}\n} );\n\n\njQuery.extend( {\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = dataPriv.get( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || Array.isArray( data ) ) {\n\t\t\t\t\tqueue = dataPriv.access( elem, type, jQuery.makeArray( data ) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// Clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// Not public - generate a queueHooks object, or return the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn dataPriv.get( elem, key ) || dataPriv.access( elem, key, {\n\t\t\tempty: jQuery.Callbacks( \"once memory\" ).add( function() {\n\t\t\t\tdataPriv.remove( elem, [ type + \"queue\", key ] );\n\t\t\t} )\n\t\t} );\n\t}\n} );\n\njQuery.fn.extend( {\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[ 0 ], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each( function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// Ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[ 0 ] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t} );\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t} );\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = dataPriv.get( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n} );\nvar pnum = ( /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/ ).source;\n\nvar rcssNum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" );\n\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar documentElement = document.documentElement;\n\n\n\n\tvar isAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem );\n\t\t},\n\t\tcomposed = { composed: true };\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only\n\t// Check attachment across shadow DOM boundaries when possible (gh-3504)\n\t// Support: iOS 10.0-10.2 only\n\t// Early iOS 10 versions support `attachShadow` but not `getRootNode`,\n\t// leading to errors. We need to check for `getRootNode`.\n\tif ( documentElement.getRootNode ) {\n\t\tisAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem ) ||\n\t\t\t\telem.getRootNode( composed ) === elem.ownerDocument;\n\t\t};\n\t}\nvar isHiddenWithinTree = function( elem, el ) {\n\n\t\t// isHiddenWithinTree might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\n\t\t// Inline style trumps all\n\t\treturn elem.style.display === \"none\" ||\n\t\t\telem.style.display === \"\" &&\n\n\t\t\t// Otherwise, check computed style\n\t\t\t// Support: Firefox <=43 - 45\n\t\t\t// Disconnected elements can have computed display: none, so first confirm that elem is\n\t\t\t// in the document.\n\t\t\tisAttached( elem ) &&\n\n\t\t\tjQuery.css( elem, \"display\" ) === \"none\";\n\t};\n\n\n\nfunction adjustCSS( elem, prop, valueParts, tween ) {\n\tvar adjusted, scale,\n\t\tmaxIterations = 20,\n\t\tcurrentValue = tween ?\n\t\t\tfunction() {\n\t\t\t\treturn tween.cur();\n\t\t\t} :\n\t\t\tfunction() {\n\t\t\t\treturn jQuery.css( elem, prop, \"\" );\n\t\t\t},\n\t\tinitial = currentValue(),\n\t\tunit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t// Starting value computation is required for potential unit mismatches\n\t\tinitialInUnit = elem.nodeType &&\n\t\t\t( jQuery.cssNumber[ prop ] || unit !== \"px\" && +initial ) &&\n\t\t\trcssNum.exec( jQuery.css( elem, prop ) );\n\n\tif ( initialInUnit && initialInUnit[ 3 ] !== unit ) {\n\n\t\t// Support: Firefox <=54\n\t\t// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)\n\t\tinitial = initial / 2;\n\n\t\t// Trust units reported by jQuery.css\n\t\tunit = unit || initialInUnit[ 3 ];\n\n\t\t// Iteratively approximate from a nonzero starting point\n\t\tinitialInUnit = +initial || 1;\n\n\t\twhile ( maxIterations-- ) {\n\n\t\t\t// Evaluate and update our best guess (doubling guesses that zero out).\n\t\t\t// Finish if the scale equals or crosses 1 (making the old*new product non-positive).\n\t\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\t\t\tif ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {\n\t\t\t\tmaxIterations = 0;\n\t\t\t}\n\t\t\tinitialInUnit = initialInUnit / scale;\n\n\t\t}\n\n\t\tinitialInUnit = initialInUnit * 2;\n\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\n\t\t// Make sure we update the tween properties later on\n\t\tvalueParts = valueParts || [];\n\t}\n\n\tif ( valueParts ) {\n\t\tinitialInUnit = +initialInUnit || +initial || 0;\n\n\t\t// Apply relative offset (+=/-=) if specified\n\t\tadjusted = valueParts[ 1 ] ?\n\t\t\tinitialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :\n\t\t\t+valueParts[ 2 ];\n\t\tif ( tween ) {\n\t\t\ttween.unit = unit;\n\t\t\ttween.start = initialInUnit;\n\t\t\ttween.end = adjusted;\n\t\t}\n\t}\n\treturn adjusted;\n}\n\n\nvar defaultDisplayMap = {};\n\nfunction getDefaultDisplay( elem ) {\n\tvar temp,\n\t\tdoc = elem.ownerDocument,\n\t\tnodeName = elem.nodeName,\n\t\tdisplay = defaultDisplayMap[ nodeName ];\n\n\tif ( display ) {\n\t\treturn display;\n\t}\n\n\ttemp = doc.body.appendChild( doc.createElement( nodeName ) );\n\tdisplay = jQuery.css( temp, \"display\" );\n\n\ttemp.parentNode.removeChild( temp );\n\n\tif ( display === \"none\" ) {\n\t\tdisplay = \"block\";\n\t}\n\tdefaultDisplayMap[ nodeName ] = display;\n\n\treturn display;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\t// Determine new display value for elements that need to change\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\n\t\t\t// Since we force visibility upon cascade-hidden elements, an immediate (and slow)\n\t\t\t// check is required in this first loop unless we have a nonempty display value (either\n\t\t\t// inline or about-to-be-restored)\n\t\t\tif ( display === \"none\" ) {\n\t\t\t\tvalues[ index ] = dataPriv.get( elem, \"display\" ) || null;\n\t\t\t\tif ( !values[ index ] ) {\n\t\t\t\t\telem.style.display = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( elem.style.display === \"\" && isHiddenWithinTree( elem ) ) {\n\t\t\t\tvalues[ index ] = getDefaultDisplay( elem );\n\t\t\t}\n\t\t} else {\n\t\t\tif ( display !== \"none\" ) {\n\t\t\t\tvalues[ index ] = \"none\";\n\n\t\t\t\t// Remember what we're overwriting\n\t\t\t\tdataPriv.set( elem, \"display\", display );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of the elements in a second loop to avoid constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\tif ( values[ index ] != null ) {\n\t\t\telements[ index ].style.display = values[ index ];\n\t\t}\n\t}\n\n\treturn elements;\n}\n\njQuery.fn.extend( {\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tif ( isHiddenWithinTree( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t} );\n\t}\n} );\nvar rcheckableType = ( /^(?:checkbox|radio)$/i );\n\nvar rtagName = ( /<([a-z][^\\/\\0>\\x20\\t\\r\\n\\f]*)/i );\n\nvar rscriptType = ( /^$|^module$|\\/(?:java|ecma)script/i );\n\n\n\n( function() {\n\tvar fragment = document.createDocumentFragment(),\n\t\tdiv = fragment.appendChild( document.createElement( \"div\" ) ),\n\t\tinput = document.createElement( \"input\" );\n\n\t// Support: Android 4.0 - 4.3 only\n\t// Check state lost if the name is set (#11217)\n\t// Support: Windows Web Apps (WWA)\n\t// `name` and `type` must use .setAttribute for WWA (#14901)\n\tinput.setAttribute( \"type\", \"radio\" );\n\tinput.setAttribute( \"checked\", \"checked\" );\n\tinput.setAttribute( \"name\", \"t\" );\n\n\tdiv.appendChild( input );\n\n\t// Support: Android <=4.1 only\n\t// Older WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE <=11 only\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// Support: IE <=9 only\n\t// IE <=9 replaces <option> tags with their contents when inserted outside of\n\t// the select element.\n\tdiv.innerHTML = \"<option></option>\";\n\tsupport.option = !!div.lastChild;\n} )();\n\n\n// We have to close these tags to support XHTML (#13200)\nvar wrapMap = {\n\n\t// XHTML parsers do not magically insert elements in the\n\t// same way that tag soup parsers do. So we cannot shorten\n\t// this by omitting <tbody> or other required elements.\n\tthead: [ 1, \"<table>\", \"</table>\" ],\n\tcol: [ 2, \"<table><colgroup>\", \"</colgroup></table>\" ],\n\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t_default: [ 0, \"\", \"\" ]\n};\n\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n// Support: IE <=9 only\nif ( !support.option ) {\n\twrapMap.optgroup = wrapMap.option = [ 1, \"<select multiple='multiple'>\", \"</select>\" ];\n}\n\n\nfunction getAll( context, tag ) {\n\n\t// Support: IE <=9 - 11 only\n\t// Use typeof to avoid zero-argument method invocation on host objects (#15151)\n\tvar ret;\n\n\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\tret = context.getElementsByTagName( tag || \"*\" );\n\n\t} else if ( typeof context.querySelectorAll !== \"undefined\" ) {\n\t\tret = context.querySelectorAll( tag || \"*\" );\n\n\t} else {\n\t\tret = [];\n\t}\n\n\tif ( tag === undefined || tag && nodeName( context, tag ) ) {\n\t\treturn jQuery.merge( [ context ], ret );\n\t}\n\n\treturn ret;\n}\n\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar i = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\tdataPriv.set(\n\t\t\telems[ i ],\n\t\t\t\"globalEval\",\n\t\t\t!refElements || dataPriv.get( refElements[ i ], \"globalEval\" )\n\t\t);\n\t}\n}\n\n\nvar rhtml = /<|&#?\\w+;/;\n\nfunction buildFragment( elems, context, scripts, selection, ignored ) {\n\tvar elem, tmp, tag, wrap, attached, j,\n\t\tfragment = context.createDocumentFragment(),\n\t\tnodes = [],\n\t\ti = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\telem = elems[ i ];\n\n\t\tif ( elem || elem === 0 ) {\n\n\t\t\t// Add nodes directly\n\t\t\tif ( toType( elem ) === \"object\" ) {\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t// Convert non-html into a text node\n\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t// Convert html into DOM nodes\n\t\t\t} else {\n\t\t\t\ttmp = tmp || fragment.appendChild( context.createElement( \"div\" ) );\n\n\t\t\t\t// Deserialize a standard representation\n\t\t\t\ttag = ( rtagName.exec( elem ) || [ \"\", \"\" ] )[ 1 ].toLowerCase();\n\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\t\t\t\ttmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];\n\n\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\tj = wrap[ 0 ];\n\t\t\t\twhile ( j-- ) {\n\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t}\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t// Remember the top-level container\n\t\t\t\ttmp = fragment.firstChild;\n\n\t\t\t\t// Ensure the created nodes are orphaned (#12392)\n\t\t\t\ttmp.textContent = \"\";\n\t\t\t}\n\t\t}\n\t}\n\n\t// Remove wrapper from fragment\n\tfragment.textContent = \"\";\n\n\ti = 0;\n\twhile ( ( elem = nodes[ i++ ] ) ) {\n\n\t\t// Skip elements already in the context collection (trac-4087)\n\t\tif ( selection && jQuery.inArray( elem, selection ) > -1 ) {\n\t\t\tif ( ignored ) {\n\t\t\t\tignored.push( elem );\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tattached = isAttached( elem );\n\n\t\t// Append to fragment\n\t\ttmp = getAll( fragment.appendChild( elem ), \"script\" );\n\n\t\t// Preserve script evaluation history\n\t\tif ( attached ) {\n\t\t\tsetGlobalEval( tmp );\n\t\t}\n\n\t\t// Capture executables\n\t\tif ( scripts ) {\n\t\t\tj = 0;\n\t\t\twhile ( ( elem = tmp[ j++ ] ) ) {\n\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\tscripts.push( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn fragment;\n}\n\n\nvar\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\n// Support: IE <=9 - 11+\n// focus() and blur() are asynchronous, except when they are no-op.\n// So expect focus to be synchronous when the element is already active,\n// and blur to be synchronous when the element is not already active.\n// (focus and blur are always synchronous in other supported browsers,\n// this just defines when we can count on it).\nfunction expectSync( elem, type ) {\n\treturn ( elem === safeActiveElement() ) === ( type === \"focus\" );\n}\n\n// Support: IE <=9 only\n// Accessing document.activeElement can throw unexpectedly\n// https://bugs.jquery.com/ticket/13393\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\nfunction on( elem, types, selector, data, fn, one ) {\n\tvar origFn, type;\n\n\t// Types can be a map of types/handlers\n\tif ( typeof types === \"object\" ) {\n\n\t\t// ( types-Object, selector, data )\n\t\tif ( typeof selector !== \"string\" ) {\n\n\t\t\t// ( types-Object, data )\n\t\t\tdata = data || selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tfor ( type in types ) {\n\t\t\ton( elem, type, selector, data, types[ type ], one );\n\t\t}\n\t\treturn elem;\n\t}\n\n\tif ( data == null && fn == null ) {\n\n\t\t// ( types, fn )\n\t\tfn = selector;\n\t\tdata = selector = undefined;\n\t} else if ( fn == null ) {\n\t\tif ( typeof selector === \"string\" ) {\n\n\t\t\t// ( types, selector, fn )\n\t\t\tfn = data;\n\t\t\tdata = undefined;\n\t\t} else {\n\n\t\t\t// ( types, data, fn )\n\t\t\tfn = data;\n\t\t\tdata = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t}\n\tif ( fn === false ) {\n\t\tfn = returnFalse;\n\t} else if ( !fn ) {\n\t\treturn elem;\n\t}\n\n\tif ( one === 1 ) {\n\t\torigFn = fn;\n\t\tfn = function( event ) {\n\n\t\t\t// Can use an empty set, since event contains the info\n\t\t\tjQuery().off( event );\n\t\t\treturn origFn.apply( this, arguments );\n\t\t};\n\n\t\t// Use same guid so caller can remove using origFn\n\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t}\n\treturn elem.each( function() {\n\t\tjQuery.event.add( this, types, fn, data, selector );\n\t} );\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\n\t\tvar handleObjIn, eventHandle, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.get( elem );\n\n\t\t// Only attach events to objects that accept data\n\t\tif ( !acceptData( elem ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Ensure that invalid selectors throw exceptions at attach time\n\t\t// Evaluate against documentElement in case elem is a non-element node (e.g., document)\n\t\tif ( selector ) {\n\t\t\tjQuery.find.matchesSelector( documentElement, selector );\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !( events = elemData.events ) ) {\n\t\t\tevents = elemData.events = Object.create( null );\n\t\t}\n\t\tif ( !( eventHandle = elemData.handle ) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" && jQuery.event.triggered !== e.type ?\n\t\t\t\t\tjQuery.event.dispatch.apply( elem, arguments ) : undefined;\n\t\t\t};\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend( {\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join( \".\" )\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !( handlers = events[ type ] ) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener if the special events handler returns false\n\t\t\t\tif ( !special.setup ||\n\t\t\t\t\tspecial.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\n\t\tvar j, origCount, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.hasData( elem ) && dataPriv.get( elem );\n\n\t\tif ( !elemData || !( events = elemData.events ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[ 2 ] &&\n\t\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector ||\n\t\t\t\t\t\tselector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown ||\n\t\t\t\t\tspecial.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove data and the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdataPriv.remove( elem, \"handle events\" );\n\t\t}\n\t},\n\n\tdispatch: function( nativeEvent ) {\n\n\t\tvar i, j, ret, matched, handleObj, handlerQueue,\n\t\t\targs = new Array( arguments.length ),\n\n\t\t\t// Make a writable jQuery.Event from the native event object\n\t\t\tevent = jQuery.event.fix( nativeEvent ),\n\n\t\t\thandlers = (\n\t\t\t\t\tdataPriv.get( this, \"events\" ) || Object.create( null )\n\t\t\t\t)[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[ 0 ] = event;\n\n\t\tfor ( i = 1; i < arguments.length; i++ ) {\n\t\t\targs[ i ] = arguments[ i ];\n\t\t}\n\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( ( handleObj = matched.handlers[ j++ ] ) &&\n\t\t\t\t!event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// If the event is namespaced, then each handler is only invoked if it is\n\t\t\t\t// specially universal or its namespaces are a superset of the event's.\n\t\t\t\tif ( !event.rnamespace || handleObj.namespace === false ||\n\t\t\t\t\tevent.rnamespace.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||\n\t\t\t\t\t\thandleObj.handler ).apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( ( event.result = ret ) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar i, handleObj, sel, matchedHandlers, matchedSelectors,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\tif ( delegateCount &&\n\n\t\t\t// Support: IE <=9\n\t\t\t// Black-hole SVG <use> instance trees (trac-13180)\n\t\t\tcur.nodeType &&\n\n\t\t\t// Support: Firefox <=42\n\t\t\t// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)\n\t\t\t// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click\n\t\t\t// Support: IE 11 only\n\t\t\t// ...but not arrow key \"clicks\" of radio inputs, which can have `button` -1 (gh-2343)\n\t\t\t!( event.type === \"click\" && event.button >= 1 ) ) {\n\n\t\t\tfor ( ; cur !== this; cur = cur.parentNode || this ) {\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && !( event.type === \"click\" && cur.disabled === true ) ) {\n\t\t\t\t\tmatchedHandlers = [];\n\t\t\t\t\tmatchedSelectors = {};\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatchedSelectors[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) > -1 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] ) {\n\t\t\t\t\t\t\tmatchedHandlers.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matchedHandlers.length ) {\n\t\t\t\t\t\thandlerQueue.push( { elem: cur, handlers: matchedHandlers } );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tcur = this;\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\taddProp: function( name, hook ) {\n\t\tObject.defineProperty( jQuery.Event.prototype, name, {\n\t\t\tenumerable: true,\n\t\t\tconfigurable: true,\n\n\t\t\tget: isFunction( hook ) ?\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\t\treturn hook( this.originalEvent );\n\t\t\t\t\t}\n\t\t\t\t} :\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\t\treturn this.originalEvent[ name ];\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\tset: function( value ) {\n\t\t\t\tObject.defineProperty( this, name, {\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tconfigurable: true,\n\t\t\t\t\twritable: true,\n\t\t\t\t\tvalue: value\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\t},\n\n\tfix: function( originalEvent ) {\n\t\treturn originalEvent[ jQuery.expando ] ?\n\t\t\toriginalEvent :\n\t\t\tnew jQuery.Event( originalEvent );\n\t},\n\n\tspecial: {\n\t\tload: {\n\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tclick: {\n\n\t\t\t// Utilize native event to ensure correct state for checkable inputs\n\t\t\tsetup: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Claim the first handler\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\t// dataPriv.set( el, \"click\", ... )\n\t\t\t\t\tleverageNative( el, \"click\", returnTrue );\n\t\t\t\t}\n\n\t\t\t\t// Return false to allow normal processing in the caller\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\ttrigger: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Force setup before triggering a click\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\tleverageNative( el, \"click\" );\n\t\t\t\t}\n\n\t\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\t\treturn true;\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, suppress native .click() on links\n\t\t\t// Also prevent it if we're currently inside a leveraged native-event stack\n\t\t\t_default: function( event ) {\n\t\t\t\tvar target = event.target;\n\t\t\t\treturn rcheckableType.test( target.type ) &&\n\t\t\t\t\ttarget.click && nodeName( target, \"input\" ) &&\n\t\t\t\t\tdataPriv.get( target, \"click\" ) ||\n\t\t\t\t\tnodeName( target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Ensure the presence of an event listener that handles manually-triggered\n// synthetic events by interrupting progress until reinvoked in response to\n// *native* events that it fires directly, ensuring that state changes have\n// already occurred before other listeners are invoked.\nfunction leverageNative( el, type, expectSync ) {\n\n\t// Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add\n\tif ( !expectSync ) {\n\t\tif ( dataPriv.get( el, type ) === undefined ) {\n\t\t\tjQuery.event.add( el, type, returnTrue );\n\t\t}\n\t\treturn;\n\t}\n\n\t// Register the controller as a special universal handler for all event namespaces\n\tdataPriv.set( el, type, false );\n\tjQuery.event.add( el, type, {\n\t\tnamespace: false,\n\t\thandler: function( event ) {\n\t\t\tvar notAsync, result,\n\t\t\t\tsaved = dataPriv.get( this, type );\n\n\t\t\tif ( ( event.isTrigger & 1 ) && this[ type ] ) {\n\n\t\t\t\t// Interrupt processing of the outer synthetic .trigger()ed event\n\t\t\t\t// Saved data should be false in such cases, but might be a leftover capture object\n\t\t\t\t// from an async native handler (gh-4350)\n\t\t\t\tif ( !saved.length ) {\n\n\t\t\t\t\t// Store arguments for use when handling the inner native event\n\t\t\t\t\t// There will always be at least one argument (an event object), so this array\n\t\t\t\t\t// will not be confused with a leftover capture object.\n\t\t\t\t\tsaved = slice.call( arguments );\n\t\t\t\t\tdataPriv.set( this, type, saved );\n\n\t\t\t\t\t// Trigger the native event and capture its result\n\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t// focus() and blur() are asynchronous\n\t\t\t\t\tnotAsync = expectSync( this, type );\n\t\t\t\t\tthis[ type ]();\n\t\t\t\t\tresult = dataPriv.get( this, type );\n\t\t\t\t\tif ( saved !== result || notAsync ) {\n\t\t\t\t\t\tdataPriv.set( this, type, false );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = {};\n\t\t\t\t\t}\n\t\t\t\t\tif ( saved !== result ) {\n\n\t\t\t\t\t\t// Cancel the outer synthetic event\n\t\t\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\treturn result.value;\n\t\t\t\t\t}\n\n\t\t\t\t// If this is an inner synthetic event for an event with a bubbling surrogate\n\t\t\t\t// (focus or blur), assume that the surrogate already propagated from triggering the\n\t\t\t\t// native event and prevent that from happening again here.\n\t\t\t\t// This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the\n\t\t\t\t// bubbling surrogate propagates *after* the non-bubbling base), but that seems\n\t\t\t\t// less bad than duplication.\n\t\t\t\t} else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {\n\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t}\n\n\t\t\t// If this is a native event triggered above, everything is now in order\n\t\t\t// Fire an inner synthetic event with the original arguments\n\t\t\t} else if ( saved.length ) {\n\n\t\t\t\t// ...and capture the result\n\t\t\t\tdataPriv.set( this, type, {\n\t\t\t\t\tvalue: jQuery.event.trigger(\n\n\t\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t\t// Extend with the prototype to reset the above stopImmediatePropagation()\n\t\t\t\t\t\tjQuery.extend( saved[ 0 ], jQuery.Event.prototype ),\n\t\t\t\t\t\tsaved.slice( 1 ),\n\t\t\t\t\t\tthis\n\t\t\t\t\t)\n\t\t\t\t} );\n\n\t\t\t\t// Abort handling of the native event\n\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t}\n\t\t}\n\t} );\n}\n\njQuery.removeEvent = function( elem, type, handle ) {\n\n\t// This \"if\" is needed for plain objects\n\tif ( elem.removeEventListener ) {\n\t\telem.removeEventListener( type, handle );\n\t}\n};\n\njQuery.Event = function( src, props ) {\n\n\t// Allow instantiation without the 'new' keyword\n\tif ( !( this instanceof jQuery.Event ) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\n\t\t\t\t// Support: Android <=2.3 only\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t\t// Create target properties\n\t\t// Support: Safari <=6 - 7 only\n\t\t// Target should not be a text node (#504, #13143)\n\t\tthis.target = ( src.target && src.target.nodeType === 3 ) ?\n\t\t\tsrc.target.parentNode :\n\t\t\tsrc.target;\n\n\t\tthis.currentTarget = src.currentTarget;\n\t\tthis.relatedTarget = src.relatedTarget;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || Date.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tconstructor: jQuery.Event,\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\tisSimulated: false,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.preventDefault();\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopPropagation();\n\t\t}\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Includes all common event props including KeyEvent and MouseEvent specific props\njQuery.each( {\n\taltKey: true,\n\tbubbles: true,\n\tcancelable: true,\n\tchangedTouches: true,\n\tctrlKey: true,\n\tdetail: true,\n\teventPhase: true,\n\tmetaKey: true,\n\tpageX: true,\n\tpageY: true,\n\tshiftKey: true,\n\tview: true,\n\t\"char\": true,\n\tcode: true,\n\tcharCode: true,\n\tkey: true,\n\tkeyCode: true,\n\tbutton: true,\n\tbuttons: true,\n\tclientX: true,\n\tclientY: true,\n\toffsetX: true,\n\toffsetY: true,\n\tpointerId: true,\n\tpointerType: true,\n\tscreenX: true,\n\tscreenY: true,\n\ttargetTouches: true,\n\ttoElement: true,\n\ttouches: true,\n\n\twhich: function( event ) {\n\t\tvar button = event.button;\n\n\t\t// Add which for key events\n\t\tif ( event.which == null && rkeyEvent.test( event.type ) ) {\n\t\t\treturn event.charCode != null ? event.charCode : event.keyCode;\n\t\t}\n\n\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\tif ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) {\n\t\t\tif ( button & 1 ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\tif ( button & 2 ) {\n\t\t\t\treturn 3;\n\t\t\t}\n\n\t\t\tif ( button & 4 ) {\n\t\t\t\treturn 2;\n\t\t\t}\n\n\t\t\treturn 0;\n\t\t}\n\n\t\treturn event.which;\n\t}\n}, jQuery.event.addProp );\n\njQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( type, delegateType ) {\n\tjQuery.event.special[ type ] = {\n\n\t\t// Utilize native event if possible so blur/focus sequence is correct\n\t\tsetup: function() {\n\n\t\t\t// Claim the first handler\n\t\t\t// dataPriv.set( this, \"focus\", ... )\n\t\t\t// dataPriv.set( this, \"blur\", ... )\n\t\t\tleverageNative( this, type, expectSync );\n\n\t\t\t// Return false to allow normal processing in the caller\n\t\t\treturn false;\n\t\t},\n\t\ttrigger: function() {\n\n\t\t\t// Force setup before trigger\n\t\t\tleverageNative( this, type );\n\n\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\treturn true;\n\t\t},\n\n\t\tdelegateType: delegateType\n\t};\n} );\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\n// so that event delegation works in jQuery.\n// Do the same for pointerenter/pointerleave and pointerover/pointerout\n//\n// Support: Safari 7 only\n// Safari sends mouseenter too often; see:\n// https://bugs.chromium.org/p/chromium/issues/detail?id=470258\n// for the description of the bug (it existed in older Chrome versions as well).\njQuery.each( {\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mouseenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n} );\n\njQuery.fn.extend( {\n\n\ton: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn );\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ?\n\t\t\t\t\thandleObj.origType + \".\" + handleObj.namespace :\n\t\t\t\t\thandleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t} );\n\t}\n} );\n\n\nvar\n\n\t// Support: IE <=10 - 11, Edge 12 - 13 only\n\t// In IE/Edge using regex groups here causes severe slowdowns.\n\t// See https://connect.microsoft.com/IE/feedback/details/1736512/\n\trnoInnerhtml = /<script|<style|<link/i,\n\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g;\n\n// Prefer a tbody over its parent table for containing new rows\nfunction manipulationTarget( elem, content ) {\n\tif ( nodeName( elem, \"table\" ) &&\n\t\tnodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ) {\n\n\t\treturn jQuery( elem ).children( \"tbody\" )[ 0 ] || elem;\n\t}\n\n\treturn elem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = ( elem.getAttribute( \"type\" ) !== null ) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tif ( ( elem.type || \"\" ).slice( 0, 5 ) === \"true/\" ) {\n\t\telem.type = elem.type.slice( 5 );\n\t} else {\n\t\telem.removeAttribute( \"type\" );\n\t}\n\n\treturn elem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\tvar i, l, type, pdataOld, udataOld, udataCur, events;\n\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\t// 1. Copy private data: events, handlers, etc.\n\tif ( dataPriv.hasData( src ) ) {\n\t\tpdataOld = dataPriv.get( src );\n\t\tevents = pdataOld.events;\n\n\t\tif ( events ) {\n\t\t\tdataPriv.remove( dest, \"handle events\" );\n\n\t\t\tfor ( type in events ) {\n\t\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// 2. Copy user data\n\tif ( dataUser.hasData( src ) ) {\n\t\tudataOld = dataUser.access( src );\n\t\tudataCur = jQuery.extend( {}, udataOld );\n\n\t\tdataUser.set( dest, udataCur );\n\t}\n}\n\n// Fix IE bugs, see support tests\nfunction fixInput( src, dest ) {\n\tvar nodeName = dest.nodeName.toLowerCase();\n\n\t// Fails to persist the checked state of a cloned checkbox or radio button.\n\tif ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\tdest.checked = src.checked;\n\n\t// Fails to return the selected option to the default selected state when cloning options\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\nfunction domManip( collection, args, callback, ignored ) {\n\n\t// Flatten any nested arrays\n\targs = flat( args );\n\n\tvar fragment, first, scripts, hasScripts, node, doc,\n\t\ti = 0,\n\t\tl = collection.length,\n\t\tiNoClone = l - 1,\n\t\tvalue = args[ 0 ],\n\t\tvalueIsFunction = isFunction( value );\n\n\t// We can't cloneNode fragments that contain checked, in WebKit\n\tif ( valueIsFunction ||\n\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\treturn collection.each( function( index ) {\n\t\t\tvar self = collection.eq( index );\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\targs[ 0 ] = value.call( this, index, self.html() );\n\t\t\t}\n\t\t\tdomManip( self, args, callback, ignored );\n\t\t} );\n\t}\n\n\tif ( l ) {\n\t\tfragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );\n\t\tfirst = fragment.firstChild;\n\n\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\tfragment = first;\n\t\t}\n\n\t\t// Require either new content or an interest in ignored elements to invoke the callback\n\t\tif ( first || ignored ) {\n\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\thasScripts = scripts.length;\n\n\t\t\t// Use the original fragment for the last item\n\t\t\t// instead of the first because it can end up\n\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tnode = fragment;\n\n\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\tif ( hasScripts ) {\n\n\t\t\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcallback.call( collection[ i ], node, i );\n\t\t\t}\n\n\t\t\tif ( hasScripts ) {\n\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t// Reenable scripts\n\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t!dataPriv.access( node, \"globalEval\" ) &&\n\t\t\t\t\t\tjQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\tif ( node.src && ( node.type || \"\" ).toLowerCase()  !== \"module\" ) {\n\n\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\tif ( jQuery._evalUrl && !node.noModule ) {\n\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src, {\n\t\t\t\t\t\t\t\t\tnonce: node.nonce || node.getAttribute( \"nonce\" )\n\t\t\t\t\t\t\t\t}, doc );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tDOMEval( node.textContent.replace( rcleanScript, \"\" ), node, doc );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn collection;\n}\n\nfunction remove( elem, selector, keepData ) {\n\tvar node,\n\t\tnodes = selector ? jQuery.filter( selector, elem ) : elem,\n\t\ti = 0;\n\n\tfor ( ; ( node = nodes[ i ] ) != null; i++ ) {\n\t\tif ( !keepData && node.nodeType === 1 ) {\n\t\t\tjQuery.cleanData( getAll( node ) );\n\t\t}\n\n\t\tif ( node.parentNode ) {\n\t\t\tif ( keepData && isAttached( node ) ) {\n\t\t\t\tsetGlobalEval( getAll( node, \"script\" ) );\n\t\t\t}\n\t\t\tnode.parentNode.removeChild( node );\n\t\t}\n\t}\n\n\treturn elem;\n}\n\njQuery.extend( {\n\thtmlPrefilter: function( html ) {\n\t\treturn html;\n\t},\n\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar i, l, srcElements, destElements,\n\t\t\tclone = elem.cloneNode( true ),\n\t\t\tinPage = isAttached( elem );\n\n\t\t// Fix IE cloning issues\n\t\tif ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&\n\t\t\t\t!jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\tfixInput( srcElements[ i ], destElements[ i ] );\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\t\tcloneCopyEvent( srcElements[ i ], destElements[ i ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tcleanData: function( elems ) {\n\t\tvar data, elem, type,\n\t\t\tspecial = jQuery.event.special,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {\n\t\t\tif ( acceptData( elem ) ) {\n\t\t\t\tif ( ( data = elem[ dataPriv.expando ] ) ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataPriv.expando ] = undefined;\n\t\t\t\t}\n\t\t\t\tif ( elem[ dataUser.expando ] ) {\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataUser.expando ] = undefined;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n} );\n\njQuery.fn.extend( {\n\tdetach: function( selector ) {\n\t\treturn remove( this, selector, true );\n\t},\n\n\tremove: function( selector ) {\n\t\treturn remove( this, selector );\n\t},\n\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().each( function() {\n\t\t\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\t\t\tthis.textContent = value;\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t} );\n\t},\n\n\tprepend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t} );\n\t},\n\n\tbefore: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t} );\n\t},\n\n\tafter: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t} );\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = this[ i ] ) != null; i++ ) {\n\t\t\tif ( elem.nodeType === 1 ) {\n\n\t\t\t\t// Prevent memory leaks\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\n\t\t\t\t// Remove any remaining nodes\n\t\t\t\telem.textContent = \"\";\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t} );\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined && elem.nodeType === 1 ) {\n\t\t\t\treturn elem.innerHTML;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t!wrapMap[ ( rtagName.exec( value ) || [ \"\", \"\" ] )[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = jQuery.htmlPrefilter( value );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\t\telem = this[ i ] || {};\n\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch ( e ) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar ignored = [];\n\n\t\t// Make the changes, replacing each non-ignored context element with the new content\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tvar parent = this.parentNode;\n\n\t\t\tif ( jQuery.inArray( this, ignored ) < 0 ) {\n\t\t\t\tjQuery.cleanData( getAll( this ) );\n\t\t\t\tif ( parent ) {\n\t\t\t\t\tparent.replaceChild( elem, this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Force callback invocation\n\t\t}, ignored );\n\t}\n} );\n\njQuery.each( {\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1,\n\t\t\ti = 0;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone( true );\n\t\t\tjQuery( insert[ i ] )[ original ]( elems );\n\n\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t// .get() because push.apply(_, arraylike) throws on ancient WebKit\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n} );\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\nvar getStyles = function( elem ) {\n\n\t\t// Support: IE <=11 only, Firefox <=30 (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tvar view = elem.ownerDocument.defaultView;\n\n\t\tif ( !view || !view.opener ) {\n\t\t\tview = window;\n\t\t}\n\n\t\treturn view.getComputedStyle( elem );\n\t};\n\nvar swap = function( elem, options, callback ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.call( elem );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar rboxStyle = new RegExp( cssExpand.join( \"|\" ), \"i\" );\n\n\n\n( function() {\n\n\t// Executing both pixelPosition & boxSizingReliable tests require only one layout\n\t// so they're executed at the same time to save the second computation.\n\tfunction computeStyleTests() {\n\n\t\t// This is a singleton, we need to execute it only once\n\t\tif ( !div ) {\n\t\t\treturn;\n\t\t}\n\n\t\tcontainer.style.cssText = \"position:absolute;left:-11111px;width:60px;\" +\n\t\t\t\"margin-top:1px;padding:0;border:0\";\n\t\tdiv.style.cssText =\n\t\t\t\"position:relative;display:block;box-sizing:border-box;overflow:scroll;\" +\n\t\t\t\"margin:auto;border:1px;padding:1px;\" +\n\t\t\t\"width:60%;top:1%\";\n\t\tdocumentElement.appendChild( container ).appendChild( div );\n\n\t\tvar divStyle = window.getComputedStyle( div );\n\t\tpixelPositionVal = divStyle.top !== \"1%\";\n\n\t\t// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44\n\t\treliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;\n\n\t\t// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3\n\t\t// Some styles come back with percentage values, even though they shouldn't\n\t\tdiv.style.right = \"60%\";\n\t\tpixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;\n\n\t\t// Support: IE 9 - 11 only\n\t\t// Detect misreporting of content dimensions for box-sizing:border-box elements\n\t\tboxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;\n\n\t\t// Support: IE 9 only\n\t\t// Detect overflow:scroll screwiness (gh-3699)\n\t\t// Support: Chrome <=64\n\t\t// Don't get tricked when zoom affects offsetWidth (gh-4029)\n\t\tdiv.style.position = \"absolute\";\n\t\tscrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12;\n\n\t\tdocumentElement.removeChild( container );\n\n\t\t// Nullify the div so it wouldn't be stored in the memory and\n\t\t// it will also be a sign that checks already performed\n\t\tdiv = null;\n\t}\n\n\tfunction roundPixelMeasures( measure ) {\n\t\treturn Math.round( parseFloat( measure ) );\n\t}\n\n\tvar pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,\n\t\treliableTrDimensionsVal, reliableMarginLeftVal,\n\t\tcontainer = document.createElement( \"div\" ),\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !div.style ) {\n\t\treturn;\n\t}\n\n\t// Support: IE <=9 - 11 only\n\t// Style of cloned element affects source element cloned (#8908)\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\tjQuery.extend( support, {\n\t\tboxSizingReliable: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\t\tpixelBoxStyles: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelBoxStylesVal;\n\t\t},\n\t\tpixelPosition: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelPositionVal;\n\t\t},\n\t\treliableMarginLeft: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn reliableMarginLeftVal;\n\t\t},\n\t\tscrollboxSize: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn scrollboxSizeVal;\n\t\t},\n\n\t\t// Support: IE 9 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Behavior in IE 9 is more subtle than in newer versions & it passes\n\t\t// some versions of this test; make sure not to make it pass there!\n\t\treliableTrDimensions: function() {\n\t\t\tvar table, tr, trChild, trStyle;\n\t\t\tif ( reliableTrDimensionsVal == null ) {\n\t\t\t\ttable = document.createElement( \"table\" );\n\t\t\t\ttr = document.createElement( \"tr\" );\n\t\t\t\ttrChild = document.createElement( \"div\" );\n\n\t\t\t\ttable.style.cssText = \"position:absolute;left:-11111px\";\n\t\t\t\ttr.style.height = \"1px\";\n\t\t\t\ttrChild.style.height = \"9px\";\n\n\t\t\t\tdocumentElement\n\t\t\t\t\t.appendChild( table )\n\t\t\t\t\t.appendChild( tr )\n\t\t\t\t\t.appendChild( trChild );\n\n\t\t\t\ttrStyle = window.getComputedStyle( tr );\n\t\t\t\treliableTrDimensionsVal = parseInt( trStyle.height ) > 3;\n\n\t\t\t\tdocumentElement.removeChild( table );\n\t\t\t}\n\t\t\treturn reliableTrDimensionsVal;\n\t\t}\n\t} );\n} )();\n\n\nfunction curCSS( elem, name, computed ) {\n\tvar width, minWidth, maxWidth, ret,\n\n\t\t// Support: Firefox 51+\n\t\t// Retrieving style before computed somehow\n\t\t// fixes an issue with getting wrong values\n\t\t// on detached elements\n\t\tstyle = elem.style;\n\n\tcomputed = computed || getStyles( elem );\n\n\t// getPropertyValue is needed for:\n\t//   .css('filter') (IE 9 only, #12537)\n\t//   .css('--customProperty) (#3144)\n\tif ( computed ) {\n\t\tret = computed.getPropertyValue( name ) || computed[ name ];\n\n\t\tif ( ret === \"\" && !isAttached( elem ) ) {\n\t\t\tret = jQuery.style( elem, name );\n\t\t}\n\n\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t// Android Browser returns percentage for some values,\n\t\t// but width seems to be reliably pixels.\n\t\t// This is against the CSSOM draft spec:\n\t\t// https://drafts.csswg.org/cssom/#resolved-values\n\t\tif ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\twidth = style.width;\n\t\t\tminWidth = style.minWidth;\n\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\tret = computed.width;\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.width = width;\n\t\t\tstyle.minWidth = minWidth;\n\t\t\tstyle.maxWidth = maxWidth;\n\t\t}\n\t}\n\n\treturn ret !== undefined ?\n\n\t\t// Support: IE <=9 - 11 only\n\t\t// IE returns zIndex value as an integer.\n\t\tret + \"\" :\n\t\tret;\n}\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tif ( conditionFn() ) {\n\n\t\t\t\t// Hook not needed (or it's not possible to use it due\n\t\t\t\t// to missing dependency), remove it.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\t\t\treturn ( this.get = hookFn ).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\nvar cssPrefixes = [ \"Webkit\", \"Moz\", \"ms\" ],\n\temptyStyle = document.createElement( \"div\" ).style,\n\tvendorProps = {};\n\n// Return a vendor-prefixed property or undefined\nfunction vendorPropName( name ) {\n\n\t// Check for vendor prefixed names\n\tvar capName = name[ 0 ].toUpperCase() + name.slice( 1 ),\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in emptyStyle ) {\n\t\t\treturn name;\n\t\t}\n\t}\n}\n\n// Return a potentially-mapped jQuery.cssProps or vendor prefixed property\nfunction finalPropName( name ) {\n\tvar final = jQuery.cssProps[ name ] || vendorProps[ name ];\n\n\tif ( final ) {\n\t\treturn final;\n\t}\n\tif ( name in emptyStyle ) {\n\t\treturn name;\n\t}\n\treturn vendorProps[ name ] = vendorPropName( name ) || name;\n}\n\n\nvar\n\n\t// Swappable if display is none or starts with table\n\t// except \"table\", \"table-cell\", or \"table-caption\"\n\t// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trcustomProp = /^--/,\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t};\n\nfunction setPositiveNumber( _elem, value, subtract ) {\n\n\t// Any relative (+/-) values have already been\n\t// normalized at this point\n\tvar matches = rcssNum.exec( value );\n\treturn matches ?\n\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {\n\tvar i = dimension === \"width\" ? 1 : 0,\n\t\textra = 0,\n\t\tdelta = 0;\n\n\t// Adjustment may not be necessary\n\tif ( box === ( isBorderBox ? \"border\" : \"content\" ) ) {\n\t\treturn 0;\n\t}\n\n\tfor ( ; i < 4; i += 2 ) {\n\n\t\t// Both box models exclude margin\n\t\tif ( box === \"margin\" ) {\n\t\t\tdelta += jQuery.css( elem, box + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\t// If we get here with a content-box, we're seeking \"padding\" or \"border\" or \"margin\"\n\t\tif ( !isBorderBox ) {\n\n\t\t\t// Add padding\n\t\t\tdelta += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// For \"border\" or \"margin\", add border\n\t\t\tif ( box !== \"padding\" ) {\n\t\t\t\tdelta += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\n\t\t\t// But still keep track of it otherwise\n\t\t\t} else {\n\t\t\t\textra += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\n\t\t// If we get here with a border-box (content + padding + border), we're seeking \"content\" or\n\t\t// \"padding\" or \"margin\"\n\t\t} else {\n\n\t\t\t// For \"content\", subtract padding\n\t\t\tif ( box === \"content\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// For \"content\" or \"padding\", subtract border\n\t\t\tif ( box !== \"margin\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Account for positive content-box scroll gutter when requested by providing computedVal\n\tif ( !isBorderBox && computedVal >= 0 ) {\n\n\t\t// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border\n\t\t// Assuming integer scroll gutter, subtract the rest and round down\n\t\tdelta += Math.max( 0, Math.ceil(\n\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\tcomputedVal -\n\t\t\tdelta -\n\t\t\textra -\n\t\t\t0.5\n\n\t\t// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter\n\t\t// Use an explicit zero to avoid NaN (gh-3964)\n\t\t) ) || 0;\n\t}\n\n\treturn delta;\n}\n\nfunction getWidthOrHeight( elem, dimension, extra ) {\n\n\t// Start with computed style\n\tvar styles = getStyles( elem ),\n\n\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).\n\t\t// Fake content-box until we know it's needed to know the true value.\n\t\tboxSizingNeeded = !support.boxSizingReliable() || extra,\n\t\tisBorderBox = boxSizingNeeded &&\n\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\tvalueIsBorderBox = isBorderBox,\n\n\t\tval = curCSS( elem, dimension, styles ),\n\t\toffsetProp = \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 );\n\n\t// Support: Firefox <=54\n\t// Return a confounding non-pixel value or feign ignorance, as appropriate.\n\tif ( rnumnonpx.test( val ) ) {\n\t\tif ( !extra ) {\n\t\t\treturn val;\n\t\t}\n\t\tval = \"auto\";\n\t}\n\n\n\t// Support: IE 9 - 11 only\n\t// Use offsetWidth/offsetHeight for when box sizing is unreliable.\n\t// In those cases, the computed value can be trusted to be border-box.\n\tif ( ( !support.boxSizingReliable() && isBorderBox ||\n\n\t\t// Support: IE 10 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Interestingly, in some cases IE 9 doesn't suffer from this issue.\n\t\t!support.reliableTrDimensions() && nodeName( elem, \"tr\" ) ||\n\n\t\t// Fall back to offsetWidth/offsetHeight when value is \"auto\"\n\t\t// This happens for inline elements with no explicit setting (gh-3571)\n\t\tval === \"auto\" ||\n\n\t\t// Support: Android <=4.1 - 4.3 only\n\t\t// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)\n\t\t!parseFloat( val ) && jQuery.css( elem, \"display\", false, styles ) === \"inline\" ) &&\n\n\t\t// Make sure the element is visible & connected\n\t\telem.getClientRects().length ) {\n\n\t\tisBorderBox = jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t\t// Where available, offsetWidth/offsetHeight approximate border box dimensions.\n\t\t// Where not available (e.g., SVG), assume unreliable box-sizing and interpret the\n\t\t// retrieved value as a content box dimension.\n\t\tvalueIsBorderBox = offsetProp in elem;\n\t\tif ( valueIsBorderBox ) {\n\t\t\tval = elem[ offsetProp ];\n\t\t}\n\t}\n\n\t// Normalize \"\" and auto\n\tval = parseFloat( val ) || 0;\n\n\t// Adjust for the element's box model\n\treturn ( val +\n\t\tboxModelAdjustment(\n\t\t\telem,\n\t\t\tdimension,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles,\n\n\t\t\t// Provide the current computed size to request scroll gutter calculation (gh-3589)\n\t\t\tval\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend( {\n\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"animationIterationCount\": true,\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"gridArea\": true,\n\t\t\"gridColumn\": true,\n\t\t\"gridColumnEnd\": true,\n\t\t\"gridColumnStart\": true,\n\t\t\"gridRow\": true,\n\t\t\"gridRowEnd\": true,\n\t\t\"gridRowStart\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name ),\n\t\t\tstyle = elem.style;\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to query the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Gets hook for the prefixed version, then unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// Convert \"+=\" or \"-=\" to relative numbers (#7345)\n\t\t\tif ( type === \"string\" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {\n\t\t\t\tvalue = adjustCSS( elem, name, ret );\n\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set (#7116)\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add the unit (except for certain CSS properties)\n\t\t\t// The isCustomProp check can be removed in jQuery 4.0 when we only auto-append\n\t\t\t// \"px\" to a few hardcoded values.\n\t\t\tif ( type === \"number\" && !isCustomProp ) {\n\t\t\t\tvalue += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? \"\" : \"px\" );\n\t\t\t}\n\n\t\t\t// background-* props affect original clone's values\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf( \"background\" ) === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !( \"set\" in hooks ) ||\n\t\t\t\t( value = hooks.set( elem, value, extra ) ) !== undefined ) {\n\n\t\t\t\tif ( isCustomProp ) {\n\t\t\t\t\tstyle.setProperty( name, value );\n\t\t\t\t} else {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else {\n\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks &&\n\t\t\t\t( ret = hooks.get( elem, false, extra ) ) !== undefined ) {\n\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar val, num, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name );\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to modify the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Try prefixed name followed by the unprefixed name\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t// Convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Make numeric if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || isFinite( num ) ? num || 0 : val;\n\t\t}\n\n\t\treturn val;\n\t}\n} );\n\njQuery.each( [ \"height\", \"width\" ], function( _i, dimension ) {\n\tjQuery.cssHooks[ dimension ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\n\t\t\t\t// Certain elements can have dimension info if we invisibly show them\n\t\t\t\t// but it must have a current display style that would benefit\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) &&\n\n\t\t\t\t\t// Support: Safari 8+\n\t\t\t\t\t// Table columns in Safari have non-zero offsetWidth & zero\n\t\t\t\t\t// getBoundingClientRect().width unless display is changed.\n\t\t\t\t\t// Support: IE <=11 only\n\t\t\t\t\t// Running getBoundingClientRect on a disconnected node\n\t\t\t\t\t// in IE throws an error.\n\t\t\t\t\t( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?\n\t\t\t\t\t\tswap( elem, cssShow, function() {\n\t\t\t\t\t\t\treturn getWidthOrHeight( elem, dimension, extra );\n\t\t\t\t\t\t} ) :\n\t\t\t\t\t\tgetWidthOrHeight( elem, dimension, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar matches,\n\t\t\t\tstyles = getStyles( elem ),\n\n\t\t\t\t// Only read styles.position if the test has a chance to fail\n\t\t\t\t// to avoid forcing a reflow.\n\t\t\t\tscrollboxSizeBuggy = !support.scrollboxSize() &&\n\t\t\t\t\tstyles.position === \"absolute\",\n\n\t\t\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)\n\t\t\t\tboxSizingNeeded = scrollboxSizeBuggy || extra,\n\t\t\t\tisBorderBox = boxSizingNeeded &&\n\t\t\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\tsubtract = extra ?\n\t\t\t\t\tboxModelAdjustment(\n\t\t\t\t\t\telem,\n\t\t\t\t\t\tdimension,\n\t\t\t\t\t\textra,\n\t\t\t\t\t\tisBorderBox,\n\t\t\t\t\t\tstyles\n\t\t\t\t\t) :\n\t\t\t\t\t0;\n\n\t\t\t// Account for unreliable border-box dimensions by comparing offset* to computed and\n\t\t\t// faking a content-box to get border and padding (gh-3699)\n\t\t\tif ( isBorderBox && scrollboxSizeBuggy ) {\n\t\t\t\tsubtract -= Math.ceil(\n\t\t\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\t\t\tparseFloat( styles[ dimension ] ) -\n\t\t\t\t\tboxModelAdjustment( elem, dimension, \"border\", false, styles ) -\n\t\t\t\t\t0.5\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Convert to pixels if value adjustment is needed\n\t\t\tif ( subtract && ( matches = rcssNum.exec( value ) ) &&\n\t\t\t\t( matches[ 3 ] || \"px\" ) !== \"px\" ) {\n\n\t\t\t\telem.style[ dimension ] = value;\n\t\t\t\tvalue = jQuery.css( elem, dimension );\n\t\t\t}\n\n\t\t\treturn setPositiveNumber( elem, value, subtract );\n\t\t}\n\t};\n} );\n\njQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn ( parseFloat( curCSS( elem, \"marginLeft\" ) ) ||\n\t\t\t\telem.getBoundingClientRect().left -\n\t\t\t\t\tswap( elem, { marginLeft: 0 }, function() {\n\t\t\t\t\t\treturn elem.getBoundingClientRect().left;\n\t\t\t\t\t} )\n\t\t\t\t) + \"px\";\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each( {\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// Assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split( \" \" ) : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( prefix !== \"margin\" ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n} );\n\njQuery.fn.extend( {\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( Array.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t}\n} );\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || jQuery.easing._default;\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\t// Use a property on the element directly when it is not a DOM element,\n\t\t\t// or when there is no matching style property that exists.\n\t\t\tif ( tween.elem.nodeType !== 1 ||\n\t\t\t\ttween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// Passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails.\n\t\t\t// Simple values such as \"10px\" are parsed to Float;\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as-is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\n\t\t\t// Use step hook for back compat.\n\t\t\t// Use cssHook if its there.\n\t\t\t// Use .style if available and use plain properties where available.\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.nodeType === 1 && (\n\t\t\t\t\tjQuery.cssHooks[ tween.prop ] ||\n\t\t\t\t\ttween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9 only\n// Panic based approach to setting things on disconnected nodes\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t},\n\t_default: \"swing\"\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, inProgress,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trrun = /queueHooks$/;\n\nfunction schedule() {\n\tif ( inProgress ) {\n\t\tif ( document.hidden === false && window.requestAnimationFrame ) {\n\t\t\twindow.requestAnimationFrame( schedule );\n\t\t} else {\n\t\t\twindow.setTimeout( schedule, jQuery.fx.interval );\n\t\t}\n\n\t\tjQuery.fx.tick();\n\t}\n}\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\twindow.setTimeout( function() {\n\t\tfxNow = undefined;\n\t} );\n\treturn ( fxNow = Date.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\ti = 0,\n\t\tattrs = { height: type };\n\n\t// If we include width, step value is 1 to do all cssExpand values,\n\t// otherwise step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {\n\n\t\t\t// We're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\tvar prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,\n\t\tisBox = \"width\" in props || \"height\" in props,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHiddenWithinTree( elem ),\n\t\tdataShow = dataPriv.get( elem, \"fxshow\" );\n\n\t// Queue-skipping animations hijack the fx hooks\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always( function() {\n\n\t\t\t// Ensure the complete handler is called before this completes\n\t\t\tanim.always( function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\t}\n\n\t// Detect show/hide animations\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.test( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// Pretend to be hidden if this is a \"show\" and\n\t\t\t\t// there is still data from a stopped show/hide\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\n\t\t\t\t// Ignore all other no-op show/hide data\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\t\t}\n\t}\n\n\t// Bail out if this is a no-op like .hide().hide()\n\tpropTween = !jQuery.isEmptyObject( props );\n\tif ( !propTween && jQuery.isEmptyObject( orig ) ) {\n\t\treturn;\n\t}\n\n\t// Restrict \"overflow\" and \"display\" styles during box animations\n\tif ( isBox && elem.nodeType === 1 ) {\n\n\t\t// Support: IE <=9 - 11, Edge 12 - 15\n\t\t// Record all 3 overflow attributes because IE does not infer the shorthand\n\t\t// from identically-valued overflowX and overflowY and Edge just mirrors\n\t\t// the overflowX value there.\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Identify a display type, preferring old show/hide data over the CSS cascade\n\t\trestoreDisplay = dataShow && dataShow.display;\n\t\tif ( restoreDisplay == null ) {\n\t\t\trestoreDisplay = dataPriv.get( elem, \"display\" );\n\t\t}\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\tif ( display === \"none\" ) {\n\t\t\tif ( restoreDisplay ) {\n\t\t\t\tdisplay = restoreDisplay;\n\t\t\t} else {\n\n\t\t\t\t// Get nonempty value(s) by temporarily forcing visibility\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t\trestoreDisplay = elem.style.display || restoreDisplay;\n\t\t\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\t\t\tshowHide( [ elem ] );\n\t\t\t}\n\t\t}\n\n\t\t// Animate inline elements as inline-block\n\t\tif ( display === \"inline\" || display === \"inline-block\" && restoreDisplay != null ) {\n\t\t\tif ( jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t\t// Restore the original display value at the end of pure show/hide animations\n\t\t\t\tif ( !propTween ) {\n\t\t\t\t\tanim.done( function() {\n\t\t\t\t\t\tstyle.display = restoreDisplay;\n\t\t\t\t\t} );\n\t\t\t\t\tif ( restoreDisplay == null ) {\n\t\t\t\t\t\tdisplay = style.display;\n\t\t\t\t\t\trestoreDisplay = display === \"none\" ? \"\" : display;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tanim.always( function() {\n\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t} );\n\t}\n\n\t// Implement show/hide animations\n\tpropTween = false;\n\tfor ( prop in orig ) {\n\n\t\t// General show/hide setup for this element animation\n\t\tif ( !propTween ) {\n\t\t\tif ( dataShow ) {\n\t\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\t\thidden = dataShow.hidden;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdataShow = dataPriv.access( elem, \"fxshow\", { display: restoreDisplay } );\n\t\t\t}\n\n\t\t\t// Store hidden/visible for toggle so `.stop().toggle()` \"reverses\"\n\t\t\tif ( toggle ) {\n\t\t\t\tdataShow.hidden = !hidden;\n\t\t\t}\n\n\t\t\t// Show elements before animating them\n\t\t\tif ( hidden ) {\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t}\n\n\t\t\t/* eslint-disable no-loop-func */\n\n\t\t\tanim.done( function() {\n\n\t\t\t/* eslint-enable no-loop-func */\n\n\t\t\t\t// The final step of a \"hide\" animation is actually hiding the element\n\t\t\t\tif ( !hidden ) {\n\t\t\t\t\tshowHide( [ elem ] );\n\t\t\t\t}\n\t\t\t\tdataPriv.remove( elem, \"fxshow\" );\n\t\t\t\tfor ( prop in orig ) {\n\t\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Per-property setup\n\t\tpropTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\t\tif ( !( prop in dataShow ) ) {\n\t\t\tdataShow[ prop ] = propTween.start;\n\t\t\tif ( hidden ) {\n\t\t\t\tpropTween.end = propTween.start;\n\t\t\t\tpropTween.start = 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( Array.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// Not quite $.extend, this won't overwrite existing keys.\n\t\t\t// Reusing 'index' because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = Animation.prefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\n\t\t\t// Don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t} ),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\n\t\t\t\t// Support: Android 2.3 only\n\t\t\t\t// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ] );\n\n\t\t\t// If there's more to do, yield\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t}\n\n\t\t\t// If this was an empty animation, synthesize a final progress notification\n\t\t\tif ( !length ) {\n\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t}\n\n\t\t\t// Resolve the animation and report its conclusion\n\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\treturn false;\n\t\t},\n\t\tanimation = deferred.promise( {\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, {\n\t\t\t\tspecialEasing: {},\n\t\t\t\teasing: jQuery.easing._default\n\t\t\t}, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\n\t\t\t\t\t// If we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// Resolve when we played the last frame; otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t} ),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length; index++ ) {\n\t\tresult = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\tif ( isFunction( result.stop ) ) {\n\t\t\t\tjQuery._queueHooks( animation.elem, animation.opts.queue ).stop =\n\t\t\t\t\tresult.stop.bind( result );\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\t// Attach callbacks from options\n\tanimation\n\t\t.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t} )\n\t);\n\n\treturn animation;\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\n\ttweeners: {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value );\n\t\t\tadjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );\n\t\t\treturn tween;\n\t\t} ]\n\t},\n\n\ttweener: function( props, callback ) {\n\t\tif ( isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.match( rnothtmlwhite );\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\tAnimation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];\n\t\t\tAnimation.tweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilters: [ defaultPrefilter ],\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tAnimation.prefilters.unshift( callback );\n\t\t} else {\n\t\t\tAnimation.prefilters.push( callback );\n\t\t}\n\t}\n} );\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tisFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !isFunction( easing ) && easing\n\t};\n\n\t// Go to the end state if fx are off\n\tif ( jQuery.fx.off ) {\n\t\topt.duration = 0;\n\n\t} else {\n\t\tif ( typeof opt.duration !== \"number\" ) {\n\t\t\tif ( opt.duration in jQuery.fx.speeds ) {\n\t\t\t\topt.duration = jQuery.fx.speeds[ opt.duration ];\n\n\t\t\t} else {\n\t\t\t\topt.duration = jQuery.fx.speeds._default;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend( {\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// Show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHiddenWithinTree ).css( \"opacity\", 0 ).show()\n\n\t\t\t// Animate to the value specified\n\t\t\t.end().animate( { opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || dataPriv.get( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = dataPriv.get( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this &&\n\t\t\t\t\t( type == null || timers[ index ].queue === type ) ) {\n\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Start the next in the queue if the last step wasn't forced.\n\t\t\t// Timers currently will call their complete callbacks, which\n\t\t\t// will dequeue but only if they were gotoEnd.\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t} );\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tvar index,\n\t\t\t\tdata = dataPriv.get( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// Enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// Empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// Look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t} );\n\t}\n} );\n\njQuery.each( [ \"toggle\", \"show\", \"hide\" ], function( _i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n} );\n\n// Generate shortcuts for custom animations\njQuery.each( {\n\tslideDown: genFx( \"show\" ),\n\tslideUp: genFx( \"hide\" ),\n\tslideToggle: genFx( \"toggle\" ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n} );\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ti = 0,\n\t\ttimers = jQuery.timers;\n\n\tfxNow = Date.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\n\t\t// Run the timer and safely remove it when done (allowing for external removal)\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tjQuery.fx.start();\n};\n\njQuery.fx.interval = 13;\njQuery.fx.start = function() {\n\tif ( inProgress ) {\n\t\treturn;\n\t}\n\n\tinProgress = true;\n\tschedule();\n};\n\njQuery.fx.stop = function() {\n\tinProgress = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = window.setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\twindow.clearTimeout( timeout );\n\t\t};\n\t} );\n};\n\n\n( function() {\n\tvar input = document.createElement( \"input\" ),\n\t\tselect = document.createElement( \"select\" ),\n\t\topt = select.appendChild( document.createElement( \"option\" ) );\n\n\tinput.type = \"checkbox\";\n\n\t// Support: Android <=4.3 only\n\t// Default value for a checkbox should be \"on\"\n\tsupport.checkOn = input.value !== \"\";\n\n\t// Support: IE <=11 only\n\t// Must access selectedIndex to make default options select\n\tsupport.optSelected = opt.selected;\n\n\t// Support: IE <=11 only\n\t// An input loses its value after becoming a radio\n\tinput = document.createElement( \"input\" );\n\tinput.value = \"t\";\n\tinput.type = \"radio\";\n\tsupport.radioValue = input.value === \"t\";\n} )();\n\n\nvar boolHook,\n\tattrHandle = jQuery.expr.attrHandle;\n\njQuery.fn.extend( {\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tattr: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set attributes on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// Attribute hooks are determined by the lowercase version\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\thooks = jQuery.attrHooks[ name.toLowerCase() ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\treturn value;\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tret = jQuery.find.attr( elem, name );\n\n\t\t// Non-existent attributes return null, we normalize to undefined\n\t\treturn ret == null ? undefined : ret;\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" &&\n\t\t\t\t\tnodeName( elem, \"input\" ) ) {\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name,\n\t\t\ti = 0,\n\n\t\t\t// Attribute names can contain non-HTML whitespace characters\n\t\t\t// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n\t\t\tattrNames = value && value.match( rnothtmlwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( ( name = attrNames[ i++ ] ) ) {\n\t\t\t\telem.removeAttribute( name );\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Hooks for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else {\n\t\t\telem.setAttribute( name, name );\n\t\t}\n\t\treturn name;\n\t}\n};\n\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( _i, name ) {\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = function( elem, name, isXML ) {\n\t\tvar ret, handle,\n\t\t\tlowercaseName = name.toLowerCase();\n\n\t\tif ( !isXML ) {\n\n\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\thandle = attrHandle[ lowercaseName ];\n\t\t\tattrHandle[ lowercaseName ] = ret;\n\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\tlowercaseName :\n\t\t\t\tnull;\n\t\t\tattrHandle[ lowercaseName ] = handle;\n\t\t}\n\t\treturn ret;\n\t};\n} );\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend( {\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tdelete this[ jQuery.propFix[ name ] || name ];\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set properties on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\treturn ( elem[ name ] = value );\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\treturn elem[ name ];\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\t// Support: IE <=9 - 11 only\n\t\t\t\t// elem.tabIndex doesn't always return the\n\t\t\t\t// correct value when it hasn't been explicitly set\n\t\t\t\t// https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\tif ( tabindex ) {\n\t\t\t\t\treturn parseInt( tabindex, 10 );\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\trfocusable.test( elem.nodeName ) ||\n\t\t\t\t\trclickable.test( elem.nodeName ) &&\n\t\t\t\t\telem.href\n\t\t\t\t) {\n\t\t\t\t\treturn 0;\n\t\t\t\t}\n\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t}\n} );\n\n// Support: IE <=11 only\n// Accessing the selectedIndex property\n// forces the browser to respect setting selected\n// on the option\n// The getter ensures a default option is selected\n// when in an optgroup\n// eslint rule \"no-unused-expressions\" is disabled for this code\n// since it considers such accessions noop\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent && parent.parentNode ) {\n\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\t\tset: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\njQuery.each( [\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n} );\n\n\n\n\n\t// Strip and collapse whitespace according to HTML spec\n\t// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace\n\tfunction stripAndCollapse( value ) {\n\t\tvar tokens = value.match( rnothtmlwhite ) || [];\n\t\treturn tokens.join( \" \" );\n\t}\n\n\nfunction getClass( elem ) {\n\treturn elem.getAttribute && elem.getAttribute( \"class\" ) || \"\";\n}\n\nfunction classesToArray( value ) {\n\tif ( Array.isArray( value ) ) {\n\t\treturn value;\n\t}\n\tif ( typeof value === \"string\" ) {\n\t\treturn value.match( rnothtmlwhite ) || [];\n\t}\n\treturn [];\n}\n\njQuery.fn.extend( {\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( !arguments.length ) {\n\t\t\treturn this.attr( \"class\", \"\" );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) > -1 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value,\n\t\t\tisValidValue = type === \"string\" || Array.isArray( value );\n\n\t\tif ( typeof stateVal === \"boolean\" && isValidValue ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).toggleClass(\n\t\t\t\t\tvalue.call( this, i, getClass( this ), stateVal ),\n\t\t\t\t\tstateVal\n\t\t\t\t);\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar className, i, self, classNames;\n\n\t\t\tif ( isValidValue ) {\n\n\t\t\t\t// Toggle individual class names\n\t\t\t\ti = 0;\n\t\t\t\tself = jQuery( this );\n\t\t\t\tclassNames = classesToArray( value );\n\n\t\t\t\twhile ( ( className = classNames[ i++ ] ) ) {\n\n\t\t\t\t\t// Check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( value === undefined || type === \"boolean\" ) {\n\t\t\t\tclassName = getClass( this );\n\t\t\t\tif ( className ) {\n\n\t\t\t\t\t// Store className if set\n\t\t\t\t\tdataPriv.set( this, \"__className__\", className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed `false`,\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tif ( this.setAttribute ) {\n\t\t\t\t\tthis.setAttribute( \"class\",\n\t\t\t\t\t\tclassName || value === false ?\n\t\t\t\t\t\t\"\" :\n\t\t\t\t\t\tdataPriv.get( this, \"__className__\" ) || \"\"\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className, elem,\n\t\t\ti = 0;\n\n\t\tclassName = \" \" + selector + \" \";\n\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\tif ( elem.nodeType === 1 &&\n\t\t\t\t( \" \" + stripAndCollapse( getClass( elem ) ) + \" \" ).indexOf( className ) > -1 ) {\n\t\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n} );\n\n\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend( {\n\tval: function( value ) {\n\t\tvar hooks, ret, valueIsFunction,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] ||\n\t\t\t\t\tjQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks &&\n\t\t\t\t\t\"get\" in hooks &&\n\t\t\t\t\t( ret = hooks.get( elem, \"value\" ) ) !== undefined\n\t\t\t\t) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\t// Handle most common string cases\n\t\t\t\tif ( typeof ret === \"string\" ) {\n\t\t\t\t\treturn ret.replace( rreturn, \"\" );\n\t\t\t\t}\n\n\t\t\t\t// Handle cases where value is null/undef or number\n\t\t\t\treturn ret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tvalueIsFunction = isFunction( value );\n\n\t\treturn this.each( function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\n\t\t\t} else if ( Array.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !( \"set\" in hooks ) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\n\t\t\t\t\t// Support: IE <=10 - 11 only\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\t// Strip and collapse whitespace\n\t\t\t\t\t// https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n\t\t\t\t\tstripAndCollapse( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option, i,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\",\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length;\n\n\t\t\t\tif ( index < 0 ) {\n\t\t\t\t\ti = max;\n\n\t\t\t\t} else {\n\t\t\t\t\ti = one ? index : 0;\n\t\t\t\t}\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t// IE8-9 doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t!option.disabled &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled ||\n\t\t\t\t\t\t\t\t!nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t/* eslint-disable no-cond-assign */\n\n\t\t\t\t\tif ( option.selected =\n\t\t\t\t\t\tjQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1\n\t\t\t\t\t) {\n\t\t\t\t\t\toptionSet = true;\n\t\t\t\t\t}\n\n\t\t\t\t\t/* eslint-enable no-cond-assign */\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\t\t\t\treturn values;\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Radios and checkboxes getter/setter\njQuery.each( [ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( Array.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\treturn elem.getAttribute( \"value\" ) === null ? \"on\" : elem.value;\n\t\t};\n\t}\n} );\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\nsupport.focusin = \"onfocusin\" in window;\n\n\nvar rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\tstopPropagationCallback = function( e ) {\n\t\te.stopPropagation();\n\t};\n\njQuery.extend( jQuery.event, {\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\n\t\tvar i, cur, tmp, bubbleType, ontype, handle, special, lastElement,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split( \".\" ) : [];\n\n\t\tcur = lastElement = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) > -1 ) {\n\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split( \".\" );\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf( \":\" ) < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.rnamespace = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === ( elem.ownerDocument || document ) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tlastElement = cur;\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = (\n\t\t\t\t\tdataPriv.get( cur, \"events\" ) || Object.create( null )\n\t\t\t\t)[ event.type ] &&\n\t\t\t\tdataPriv.get( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( ( !special._default ||\n\t\t\t\tspecial._default.apply( eventPath.pop(), data ) === false ) &&\n\t\t\t\tacceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name as the event.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.addEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\telem[ type ]();\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.removeEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\t// Piggyback on a donor event to simulate a different one\n\t// Used only for `focus(in | out)` events\n\tsimulate: function( type, elem, event ) {\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true\n\t\t\t}\n\t\t);\n\n\t\tjQuery.event.trigger( e, null, elem );\n\t}\n\n} );\n\njQuery.fn.extend( {\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t} );\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[ 0 ];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n} );\n\n\n// Support: Firefox <=44\n// Firefox doesn't have focus(in | out) events\n// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n//\n// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1\n// focus(in | out) events fire after focus & blur events,\n// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857\nif ( !support.focusin ) {\n\tjQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );\n\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\n\t\t\t\t// Handle: regular nodes (via `this.ownerDocument`), window\n\t\t\t\t// (via `this.document`) & document (via `this`).\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tdataPriv.access( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tdataPriv.remove( doc, fix );\n\n\t\t\t\t} else {\n\t\t\t\t\tdataPriv.access( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t} );\n}\nvar location = window.location;\n\nvar nonce = { guid: Date.now() };\n\nvar rquery = ( /\\?/ );\n\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\n\t// Support: IE 9 - 11 only\n\t// IE throws on parseFromString with invalid input.\n\ttry {\n\t\txml = ( new window.DOMParser() ).parseFromString( data, \"text/xml\" );\n\t} catch ( e ) {\n\t\txml = undefined;\n\t}\n\n\tif ( !xml || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( Array.isArray( obj ) ) {\n\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams(\n\t\t\t\t\tprefix + \"[\" + ( typeof v === \"object\" && v != null ? i : \"\" ) + \"]\",\n\t\t\t\t\tv,\n\t\t\t\t\ttraditional,\n\t\t\t\t\tadd\n\t\t\t\t);\n\t\t\t}\n\t\t} );\n\n\t} else if ( !traditional && toType( obj ) === \"object\" ) {\n\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, valueOrFunction ) {\n\n\t\t\t// If value is a function, invoke it and use its return value\n\t\t\tvar value = isFunction( valueOrFunction ) ?\n\t\t\t\tvalueOrFunction() :\n\t\t\t\tvalueOrFunction;\n\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" +\n\t\t\t\tencodeURIComponent( value == null ? \"\" : value );\n\t\t};\n\n\tif ( a == null ) {\n\t\treturn \"\";\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t} );\n\n\t} else {\n\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" );\n};\n\njQuery.fn.extend( {\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map( function() {\n\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t} )\n\t\t.filter( function() {\n\t\t\tvar type = this.type;\n\n\t\t\t// Use .is( \":disabled\" ) so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t} )\n\t\t.map( function( _i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\tif ( val == null ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tif ( Array.isArray( val ) ) {\n\t\t\t\treturn jQuery.map( val, function( val ) {\n\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t} ).get();\n\t}\n} );\n\n\nvar\n\tr20 = /%20/g,\n\trhash = /#.*$/,\n\trantiCache = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)$/mg,\n\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat( \"*\" ),\n\n\t// Anchor tag for parsing the document origin\n\toriginAnchor = document.createElement( \"a\" );\n\toriginAnchor.href = location.href;\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];\n\n\t\tif ( isFunction( func ) ) {\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( ( dataType = dataTypes[ i++ ] ) ) {\n\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType[ 0 ] === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" &&\n\t\t\t\t!seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t} );\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar key, deep,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\n\tvar ct, type, finalDataType, firstDataType,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"Content-Type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[ 0 ] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s.throws ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tstate: \"parsererror\",\n\t\t\t\t\t\t\t\terror: conv ? e : \"No conversion from \" + prev + \" to \" + current\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend( {\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: location.href,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( location.protocol ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /\\bxml\\b/,\n\t\t\thtml: /\\bhtml/,\n\t\t\tjson: /\\bjson\\b/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": JSON.parse,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar transport,\n\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\n\t\t\t// Response headers\n\t\t\tresponseHeadersString,\n\t\t\tresponseHeaders,\n\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// Url cleanup var\n\t\t\turlAnchor,\n\n\t\t\t// Request state (becomes false upon send and true upon completion)\n\t\t\tcompleted,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\t// Loop variable\n\t\t\ti,\n\n\t\t\t// uncached part of the url\n\t\t\tuncached,\n\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context &&\n\t\t\t\t( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\t\tjQuery.event,\n\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( completed ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[ 1 ].toLowerCase() + \" \" ] =\n\t\t\t\t\t\t\t\t\t( responseHeaders[ match[ 1 ].toLowerCase() + \" \" ] || [] )\n\t\t\t\t\t\t\t\t\t\t.concat( match[ 2 ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() + \" \" ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match.join( \", \" );\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn completed ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\tname = requestHeadersNames[ name.toLowerCase() ] =\n\t\t\t\t\t\t\trequestHeadersNames[ name.toLowerCase() ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( completed ) {\n\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Lazy-add the new callbacks in a way that preserves old ones\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR );\n\n\t\t// Add protocol if not provided (prefilters might expect it)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || location.href ) + \"\" )\n\t\t\t.replace( rprotocol, location.protocol + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = ( s.dataType || \"*\" ).toLowerCase().match( rnothtmlwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when the origin doesn't match the current origin.\n\t\tif ( s.crossDomain == null ) {\n\t\t\turlAnchor = document.createElement( \"a\" );\n\n\t\t\t// Support: IE <=8 - 11, Edge 12 - 15\n\t\t\t// IE throws exception on accessing the href property if url is malformed,\n\t\t\t// e.g. http://example.com:80x/\n\t\t\ttry {\n\t\t\t\turlAnchor.href = s.url;\n\n\t\t\t\t// Support: IE <=8 - 11 only\n\t\t\t\t// Anchor's host property isn't correctly set when s.url is relative\n\t\t\t\turlAnchor.href = urlAnchor.href;\n\t\t\t\ts.crossDomain = originAnchor.protocol + \"//\" + originAnchor.host !==\n\t\t\t\t\turlAnchor.protocol + \"//\" + urlAnchor.host;\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// If there is an error parsing the URL, assume it is crossDomain,\n\t\t\t\t// it can be rejected by the transport if it is invalid\n\t\t\t\ts.crossDomain = true;\n\t\t\t}\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( completed ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\t// Remove hash to simplify url manipulation\n\t\tcacheURL = s.url.replace( rhash, \"\" );\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// Remember the hash so we can put it back\n\t\t\tuncached = s.url.slice( cacheURL.length );\n\n\t\t\t// If data is available and should be processed, append data to url\n\t\t\tif ( s.data && ( s.processData || typeof s.data === \"string\" ) ) {\n\t\t\t\tcacheURL += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data;\n\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add or update anti-cache param if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\tcacheURL = cacheURL.replace( rantiCache, \"$1\" );\n\t\t\t\tuncached = ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + ( nonce.guid++ ) +\n\t\t\t\t\tuncached;\n\t\t\t}\n\n\t\t\t// Put hash and anti-cache on the URL that will be requested (gh-1732)\n\t\t\ts.url = cacheURL + uncached;\n\n\t\t// Change '%20' to '+' if this is encoded form body content (gh-2658)\n\t\t} else if ( s.data && s.processData &&\n\t\t\t( s.contentType || \"\" ).indexOf( \"application/x-www-form-urlencoded\" ) === 0 ) {\n\t\t\ts.data = s.data.replace( r20, \"+\" );\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[ 0 ] ] +\n\t\t\t\t\t( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend &&\n\t\t\t( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {\n\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// Aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tcompleteDeferred.add( s.complete );\n\t\tjqXHR.done( s.success );\n\t\tjqXHR.fail( s.error );\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\n\t\t\t// If request was aborted inside ajaxSend, stop there\n\t\t\tif ( completed ) {\n\t\t\t\treturn jqXHR;\n\t\t\t}\n\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = window.setTimeout( function() {\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tcompleted = false;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// Rethrow post-completion exceptions\n\t\t\t\tif ( completed ) {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\n\t\t\t\t// Propagate others as results\n\t\t\t\tdone( -1, e );\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Ignore repeat invocations\n\t\t\tif ( completed ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tcompleted = true;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\twindow.clearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Use a noop converter for missing script\n\t\t\tif ( !isSuccess && jQuery.inArray( \"script\", s.dataTypes ) > -1 ) {\n\t\t\t\ts.converters[ \"text script\" ] = function() {};\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"Last-Modified\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"etag\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Extract error from statusText and normalize for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n} );\n\njQuery.each( [ \"get\", \"post\" ], function( _i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\n\t\t// Shift arguments if data argument was omitted\n\t\tif ( isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\t// The url can be an options object (which then must have .url)\n\t\treturn jQuery.ajax( jQuery.extend( {\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t}, jQuery.isPlainObject( url ) && url ) );\n\t};\n} );\n\njQuery.ajaxPrefilter( function( s ) {\n\tvar i;\n\tfor ( i in s.headers ) {\n\t\tif ( i.toLowerCase() === \"content-type\" ) {\n\t\t\ts.contentType = s.headers[ i ] || \"\";\n\t\t}\n\t}\n} );\n\n\njQuery._evalUrl = function( url, options, doc ) {\n\treturn jQuery.ajax( {\n\t\turl: url,\n\n\t\t// Make this explicit, since user can override this through ajaxSetup (#11264)\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tcache: true,\n\t\tasync: false,\n\t\tglobal: false,\n\n\t\t// Only evaluate the response if it is successful (gh-4126)\n\t\t// dataFilter is not invoked for failure responses, so using it instead\n\t\t// of the default converter is kludgy but it works.\n\t\tconverters: {\n\t\t\t\"text script\": function() {}\n\t\t},\n\t\tdataFilter: function( response ) {\n\t\t\tjQuery.globalEval( response, options, doc );\n\t\t}\n\t} );\n};\n\n\njQuery.fn.extend( {\n\twrapAll: function( html ) {\n\t\tvar wrap;\n\n\t\tif ( this[ 0 ] ) {\n\t\t\tif ( isFunction( html ) ) {\n\t\t\t\thtml = html.call( this[ 0 ] );\n\t\t\t}\n\n\t\t\t// The elements to wrap the target around\n\t\t\twrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );\n\n\t\t\tif ( this[ 0 ].parentNode ) {\n\t\t\t\twrap.insertBefore( this[ 0 ] );\n\t\t\t}\n\n\t\t\twrap.map( function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstElementChild ) {\n\t\t\t\t\telem = elem.firstElementChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t} ).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapInner( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t} );\n\t},\n\n\twrap: function( html ) {\n\t\tvar htmlIsFunction = isFunction( html );\n\n\t\treturn this.each( function( i ) {\n\t\t\tjQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );\n\t\t} );\n\t},\n\n\tunwrap: function( selector ) {\n\t\tthis.parent( selector ).not( \"body\" ).each( function() {\n\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t} );\n\t\treturn this;\n\t}\n} );\n\n\njQuery.expr.pseudos.hidden = function( elem ) {\n\treturn !jQuery.expr.pseudos.visible( elem );\n};\njQuery.expr.pseudos.visible = function( elem ) {\n\treturn !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );\n};\n\n\n\n\njQuery.ajaxSettings.xhr = function() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch ( e ) {}\n};\n\nvar xhrSuccessStatus = {\n\n\t\t// File protocol always yields status code 0, assume 200\n\t\t0: 200,\n\n\t\t// Support: IE <=9 only\n\t\t// #1450: sometimes IE returns 1223 when it should be 204\n\t\t1223: 204\n\t},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nsupport.ajax = xhrSupported = !!xhrSupported;\n\njQuery.ajaxTransport( function( options ) {\n\tvar callback, errorCallback;\n\n\t// Cross domain only allowed if supported through XMLHttpRequest\n\tif ( support.cors || xhrSupported && !options.crossDomain ) {\n\t\treturn {\n\t\t\tsend: function( headers, complete ) {\n\t\t\t\tvar i,\n\t\t\t\t\txhr = options.xhr();\n\n\t\t\t\txhr.open(\n\t\t\t\t\toptions.type,\n\t\t\t\t\toptions.url,\n\t\t\t\t\toptions.async,\n\t\t\t\t\toptions.username,\n\t\t\t\t\toptions.password\n\t\t\t\t);\n\n\t\t\t\t// Apply custom fields if provided\n\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Override mime type if needed\n\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t}\n\n\t\t\t\t// X-Requested-With header\n\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\tif ( !options.crossDomain && !headers[ \"X-Requested-With\" ] ) {\n\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t}\n\n\t\t\t\t// Set headers\n\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] );\n\t\t\t\t}\n\n\t\t\t\t// Callback\n\t\t\t\tcallback = function( type ) {\n\t\t\t\t\treturn function() {\n\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\tcallback = errorCallback = xhr.onload =\n\t\t\t\t\t\t\t\txhr.onerror = xhr.onabort = xhr.ontimeout =\n\t\t\t\t\t\t\t\t\txhr.onreadystatechange = null;\n\n\t\t\t\t\t\t\tif ( type === \"abort\" ) {\n\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t} else if ( type === \"error\" ) {\n\n\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t// On a manual native abort, IE9 throws\n\t\t\t\t\t\t\t\t// errors on any property access that is not readyState\n\t\t\t\t\t\t\t\tif ( typeof xhr.status !== \"number\" ) {\n\t\t\t\t\t\t\t\t\tcomplete( 0, \"error\" );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcomplete(\n\n\t\t\t\t\t\t\t\t\t\t// File: protocol always yields status 0; see #8605, #14207\n\t\t\t\t\t\t\t\t\t\txhr.status,\n\t\t\t\t\t\t\t\t\t\txhr.statusText\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tcomplete(\n\t\t\t\t\t\t\t\t\txhrSuccessStatus[ xhr.status ] || xhr.status,\n\t\t\t\t\t\t\t\t\txhr.statusText,\n\n\t\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t\t// IE9 has no XHR2 but throws on binary (trac-11426)\n\t\t\t\t\t\t\t\t\t// For XHR2 non-text, let the caller handle it (gh-2498)\n\t\t\t\t\t\t\t\t\t( xhr.responseType || \"text\" ) !== \"text\"  ||\n\t\t\t\t\t\t\t\t\ttypeof xhr.responseText !== \"string\" ?\n\t\t\t\t\t\t\t\t\t\t{ binary: xhr.response } :\n\t\t\t\t\t\t\t\t\t\t{ text: xhr.responseText },\n\t\t\t\t\t\t\t\t\txhr.getAllResponseHeaders()\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t};\n\n\t\t\t\t// Listen to events\n\t\t\t\txhr.onload = callback();\n\t\t\t\terrorCallback = xhr.onerror = xhr.ontimeout = callback( \"error\" );\n\n\t\t\t\t// Support: IE 9 only\n\t\t\t\t// Use onreadystatechange to replace onabort\n\t\t\t\t// to handle uncaught aborts\n\t\t\t\tif ( xhr.onabort !== undefined ) {\n\t\t\t\t\txhr.onabort = errorCallback;\n\t\t\t\t} else {\n\t\t\t\t\txhr.onreadystatechange = function() {\n\n\t\t\t\t\t\t// Check readyState before timeout as it changes\n\t\t\t\t\t\tif ( xhr.readyState === 4 ) {\n\n\t\t\t\t\t\t\t// Allow onerror to be called first,\n\t\t\t\t\t\t\t// but that will not handle a native abort\n\t\t\t\t\t\t\t// Also, save errorCallback to a variable\n\t\t\t\t\t\t\t// as xhr.onerror cannot be accessed\n\t\t\t\t\t\t\twindow.setTimeout( function() {\n\t\t\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\t\t\terrorCallback();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\t// Create the abort callback\n\t\t\t\tcallback = callback( \"abort\" );\n\n\t\t\t\ttry {\n\n\t\t\t\t\t// Do send the request (this may raise an exception)\n\t\t\t\t\txhr.send( options.hasContent && options.data || null );\n\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t// #14683: Only rethrow if this hasn't been notified as an error yet\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tthrow e;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\n// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)\njQuery.ajaxPrefilter( function( s ) {\n\tif ( s.crossDomain ) {\n\t\ts.contents.script = false;\n\t}\n} );\n\n// Install script dataType\njQuery.ajaxSetup( {\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, \" +\n\t\t\t\"application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /\\b(?:java|ecma)script\\b/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n} );\n\n// Handle cache's special case and crossDomain\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t}\n} );\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function( s ) {\n\n\t// This transport only deals with cross domain or forced-by-attrs requests\n\tif ( s.crossDomain || s.scriptAttrs ) {\n\t\tvar script, callback;\n\t\treturn {\n\t\t\tsend: function( _, complete ) {\n\t\t\t\tscript = jQuery( \"<script>\" )\n\t\t\t\t\t.attr( s.scriptAttrs || {} )\n\t\t\t\t\t.prop( { charset: s.scriptCharset, src: s.url } )\n\t\t\t\t\t.on( \"load error\", callback = function( evt ) {\n\t\t\t\t\t\tscript.remove();\n\t\t\t\t\t\tcallback = null;\n\t\t\t\t\t\tif ( evt ) {\n\t\t\t\t\t\t\tcomplete( evt.type === \"error\" ? 404 : 200, evt.type );\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\tdocument.head.appendChild( script[ 0 ] );\n\t\t\t},\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup( {\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce.guid++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n} );\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" &&\n\t\t\t\t( s.contentType || \"\" )\n\t\t\t\t\t.indexOf( \"application/x-www-form-urlencoded\" ) === 0 &&\n\t\t\t\trjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[ \"script json\" ] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// Force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always( function() {\n\n\t\t\t// If previous value didn't exist - remove it\n\t\t\tif ( overwritten === undefined ) {\n\t\t\t\tjQuery( window ).removeProp( callbackName );\n\n\t\t\t// Otherwise restore preexisting value\n\t\t\t} else {\n\t\t\t\twindow[ callbackName ] = overwritten;\n\t\t\t}\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\n\t\t\t\t// Make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// Save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t} );\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n} );\n\n\n\n\n// Support: Safari 8 only\n// In Safari 8 documents created via document.implementation.createHTMLDocument\n// collapse sibling forms: the second one becomes a child of the first one.\n// Because of that, this security measure has to be disabled in Safari 8.\n// https://bugs.webkit.org/show_bug.cgi?id=137337\nsupport.createHTMLDocument = ( function() {\n\tvar body = document.implementation.createHTMLDocument( \"\" ).body;\n\tbody.innerHTML = \"<form></form><form></form>\";\n\treturn body.childNodes.length === 2;\n} )();\n\n\n// Argument \"data\" should be string of html\n// context (optional): If specified, the fragment will be created in this context,\n// defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( typeof data !== \"string\" ) {\n\t\treturn [];\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\n\tvar base, parsed, scripts;\n\n\tif ( !context ) {\n\n\t\t// Stop scripts or inline event handlers from being executed immediately\n\t\t// by using document.implementation\n\t\tif ( support.createHTMLDocument ) {\n\t\t\tcontext = document.implementation.createHTMLDocument( \"\" );\n\n\t\t\t// Set the base href for the created document\n\t\t\t// so any parsed elements with URLs\n\t\t\t// are based on the document's URL (gh-2965)\n\t\t\tbase = context.createElement( \"base\" );\n\t\t\tbase.href = document.location.href;\n\t\t\tcontext.head.appendChild( base );\n\t\t} else {\n\t\t\tcontext = document;\n\t\t}\n\t}\n\n\tparsed = rsingleTag.exec( data );\n\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[ 1 ] ) ];\n\t}\n\n\tparsed = buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tvar selector, type, response,\n\t\tself = this,\n\t\toff = url.indexOf( \" \" );\n\n\tif ( off > -1 ) {\n\t\tselector = stripAndCollapse( url.slice( off ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax( {\n\t\t\turl: url,\n\n\t\t\t// If \"type\" variable is undefined, then \"GET\" method will be used.\n\t\t\t// Make value of this field explicit since\n\t\t\t// user can override it through ajaxSetup method\n\t\t\ttype: type || \"GET\",\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t} ).done( function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery( \"<div>\" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t// If the request succeeds, this function gets \"data\", \"status\", \"jqXHR\"\n\t\t// but they are ignored because response was set above.\n\t\t// If it fails, this function gets \"jqXHR\", \"status\", \"error\"\n\t\t} ).always( callback && function( jqXHR, status ) {\n\t\t\tself.each( function() {\n\t\t\t\tcallback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t\t} );\n\t\t} );\n\t}\n\n\treturn this;\n};\n\n\n\n\njQuery.expr.pseudos.animated = function( elem ) {\n\treturn jQuery.grep( jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t} ).length;\n};\n\n\n\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// Set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\t( curCSSTop + curCSSLeft ).indexOf( \"auto\" ) > -1;\n\n\t\t// Need to be able to calculate position if either\n\t\t// top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( isFunction( options ) ) {\n\n\t\t\t// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)\n\t\t\toptions = options.call( elem, i, jQuery.extend( {}, curOffset ) );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\n\t\t} else {\n\t\t\tif ( typeof props.top === \"number\" ) {\n\t\t\t\tprops.top += \"px\";\n\t\t\t}\n\t\t\tif ( typeof props.left === \"number\" ) {\n\t\t\t\tprops.left += \"px\";\n\t\t\t}\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend( {\n\n\t// offset() relates an element's border box to the document origin\n\toffset: function( options ) {\n\n\t\t// Preserve chaining for setter\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each( function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t} );\n\t\t}\n\n\t\tvar rect, win,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !elem ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Return zeros for disconnected and hidden (display: none) elements (gh-2310)\n\t\t// Support: IE <=11 only\n\t\t// Running getBoundingClientRect on a\n\t\t// disconnected node in IE throws an error\n\t\tif ( !elem.getClientRects().length ) {\n\t\t\treturn { top: 0, left: 0 };\n\t\t}\n\n\t\t// Get document-relative position by adding viewport scroll to viewport-relative gBCR\n\t\trect = elem.getBoundingClientRect();\n\t\twin = elem.ownerDocument.defaultView;\n\t\treturn {\n\t\t\ttop: rect.top + win.pageYOffset,\n\t\t\tleft: rect.left + win.pageXOffset\n\t\t};\n\t},\n\n\t// position() relates an element's margin box to its offset parent's padding box\n\t// This corresponds to the behavior of CSS absolute positioning\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset, doc,\n\t\t\telem = this[ 0 ],\n\t\t\tparentOffset = { top: 0, left: 0 };\n\n\t\t// position:fixed elements are offset from the viewport, which itself always has zero offset\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\n\t\t\t// Assume position:fixed implies availability of getBoundingClientRect\n\t\t\toffset = elem.getBoundingClientRect();\n\n\t\t} else {\n\t\t\toffset = this.offset();\n\n\t\t\t// Account for the *real* offset parent, which can be the document or its root element\n\t\t\t// when a statically positioned element is identified\n\t\t\tdoc = elem.ownerDocument;\n\t\t\toffsetParent = elem.offsetParent || doc.documentElement;\n\t\t\twhile ( offsetParent &&\n\t\t\t\t( offsetParent === doc.body || offsetParent === doc.documentElement ) &&\n\t\t\t\tjQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\n\t\t\t\toffsetParent = offsetParent.parentNode;\n\t\t\t}\n\t\t\tif ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {\n\n\t\t\t\t// Incorporate borders into its offset, since they are outside its content origin\n\t\t\t\tparentOffset = jQuery( offsetParent ).offset();\n\t\t\t\tparentOffset.top += jQuery.css( offsetParent, \"borderTopWidth\", true );\n\t\t\t\tparentOffset.left += jQuery.css( offsetParent, \"borderLeftWidth\", true );\n\t\t\t}\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\treturn {\n\t\t\ttop: offset.top - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true )\n\t\t};\n\t},\n\n\t// This method will return documentElement in the following cases:\n\t// 1) For the element inside the iframe without offsetParent, this method will return\n\t//    documentElement of the parent window\n\t// 2) For the hidden or detached element\n\t// 3) For body or html element, i.e. in case of the html node - it will return itself\n\t//\n\t// but those exceptions were never presented as a real life use-cases\n\t// and might be considered as more preferable results.\n\t//\n\t// This logic, however, is not guaranteed and can change at any point in the future\n\toffsetParent: function() {\n\t\treturn this.map( function() {\n\t\t\tvar offsetParent = this.offsetParent;\n\n\t\t\twhile ( offsetParent && jQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\n\t\t\treturn offsetParent || documentElement;\n\t\t} );\n\t}\n} );\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = \"pageYOffset\" === prop;\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\n\t\t\t// Coalesce documents and windows\n\t\t\tvar win;\n\t\t\tif ( isWindow( elem ) ) {\n\t\t\t\twin = elem;\n\t\t\t} else if ( elem.nodeType === 9 ) {\n\t\t\t\twin = elem.defaultView;\n\t\t\t}\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? win[ prop ] : elem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : win.pageXOffset,\n\t\t\t\t\ttop ? val : win.pageYOffset\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length );\n\t};\n} );\n\n// Support: Safari <=7 - 9.1, Chrome <=37 - 49\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347\n// getComputedStyle returns percent when specified for top/left/bottom/right;\n// rather than make the css module depend on the offset module, just check for it here\njQuery.each( [ \"top\", \"left\" ], function( _i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\n\t\t\t\t// If curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n} );\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name },\n\t\tfunction( defaultExtra, funcName ) {\n\n\t\t// Margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( isWindow( elem ) ) {\n\n\t\t\t\t\t// $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)\n\t\t\t\t\treturn funcName.indexOf( \"outer\" ) === 0 ?\n\t\t\t\t\t\telem[ \"inner\" + name ] :\n\t\t\t\t\t\telem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],\n\t\t\t\t\t// whichever is greatest\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable );\n\t\t};\n\t} );\n} );\n\n\njQuery.each( [\n\t\"ajaxStart\",\n\t\"ajaxStop\",\n\t\"ajaxComplete\",\n\t\"ajaxError\",\n\t\"ajaxSuccess\",\n\t\"ajaxSend\"\n], function( _i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n} );\n\n\n\n\njQuery.fn.extend( {\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ?\n\t\t\tthis.off( selector, \"**\" ) :\n\t\t\tthis.off( types, selector || \"**\", fn );\n\t},\n\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t}\n} );\n\njQuery.each( ( \"blur focus focusin focusout resize scroll click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup contextmenu\" ).split( \" \" ),\n\tfunction( _i, name ) {\n\n\t\t// Handle event binding\n\t\tjQuery.fn[ name ] = function( data, fn ) {\n\t\t\treturn arguments.length > 0 ?\n\t\t\t\tthis.on( name, null, data, fn ) :\n\t\t\t\tthis.trigger( name );\n\t\t};\n\t} );\n\n\n\n\n// Support: Android <=4.0 only\n// Make sure we trim BOM and NBSP\nvar rtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g;\n\n// Bind a function to a context, optionally partially applying any\n// arguments.\n// jQuery.proxy is deprecated to promote standards (specifically Function#bind)\n// However, it is not slated for removal any time soon\njQuery.proxy = function( fn, context ) {\n\tvar tmp, args, proxy;\n\n\tif ( typeof context === \"string\" ) {\n\t\ttmp = fn[ context ];\n\t\tcontext = fn;\n\t\tfn = tmp;\n\t}\n\n\t// Quick check to determine if target is callable, in the spec\n\t// this throws a TypeError, but we will just return undefined.\n\tif ( !isFunction( fn ) ) {\n\t\treturn undefined;\n\t}\n\n\t// Simulated bind\n\targs = slice.call( arguments, 2 );\n\tproxy = function() {\n\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t};\n\n\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\treturn proxy;\n};\n\njQuery.holdReady = function( hold ) {\n\tif ( hold ) {\n\t\tjQuery.readyWait++;\n\t} else {\n\t\tjQuery.ready( true );\n\t}\n};\njQuery.isArray = Array.isArray;\njQuery.parseJSON = JSON.parse;\njQuery.nodeName = nodeName;\njQuery.isFunction = isFunction;\njQuery.isWindow = isWindow;\njQuery.camelCase = camelCase;\njQuery.type = toType;\n\njQuery.now = Date.now;\n\njQuery.isNumeric = function( obj ) {\n\n\t// As of jQuery 3.0, isNumeric is limited to\n\t// strings and numbers (primitives or objects)\n\t// that can be coerced to finite numbers (gh-2662)\n\tvar type = jQuery.type( obj );\n\treturn ( type === \"number\" || type === \"string\" ) &&\n\n\t\t// parseFloat NaNs numeric-cast false positives (\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t!isNaN( obj - parseFloat( obj ) );\n};\n\njQuery.trim = function( text ) {\n\treturn text == null ?\n\t\t\"\" :\n\t\t( text + \"\" ).replace( rtrim, \"\" );\n};\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t} );\n}\n\n\n\n\nvar\n\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in AMD\n// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === \"undefined\" ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n} );\n"
  },
  {
    "path": "images/05_correlation/lib/plotly-binding-4.10.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    // Plotly.relayout() mutates the plot input object, so make sure to \n    // keep a reference to the user-supplied width/height *before*\n    // we call Plotly.plot();\n    var lay = x.layout || {};\n    instance.width = lay.width;\n    instance.height = lay.height;\n    instance.autosize = lay.autosize || true;\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if ((x.selectize || x.highlight.dynamic) && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.newPlot(graphDiv, x);\n      instance.plotly = true;\n      \n    } else if (x.layout.transition) {\n      \n      var plot = Plotly.react(graphDiv, x);\n    \n    } else {\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.newPlot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n            if (typeof pt.pointNumber === \"number\") {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber];\n            } else if (Array.isArray(pt.pointNumber)) {\n              obj[attrsToAttach[i]] = attr[pt.pointNumber[0]][pt.pointNumber[1]];\n            } else if (Array.isArray(pt.pointNumbers)) {\n              obj[attrsToAttach[i]] = pt.pointNumbers.map(function(idx) { return attr[idx]; });\n            }\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode && Shiny.setInputValue) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_sunburstclick: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "images/05_correlation/lib/plotly-binding-4.9.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if (x.selectize || x.highlight.dynamic && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.plot(graphDiv, x);\n      instance.plotly = true;\n      instance.autosize = x.layout.autosize || true;\n      instance.width = x.layout.width;\n      instance.height = x.layout.height;\n      \n    } else {\n      \n      // new x data could contain a new height/width...\n      // attach to instance so that resize logic knows about the new size\n      instance.width = x.layout.width || instance.width;\n      instance.height = x.layout.height || instance.height;\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.plot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n              // pointNumber can be an array (e.g., heatmaps)\n              // TODO: can pointNumber be 3D?\n              obj[attrsToAttach[i]] = typeof pt.pointNumber === \"number\" ? \n                attr[pt.pointNumber] : attr[pt.pointNumber[0]][pt.pointNumber[1]];\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "images/05_correlation/lib/plotly-htmlwidgets-css-1.46.1/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "images/05_correlation/lib/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "index.Rmd",
    "content": "---\ntitle: \"Index\"\noutput:\n  bookdown::html_document2:\n    includes:\n      in_header: assets/Landing_page.html\n    toc: false\n---\n"
  },
  {
    "path": "lib/crosstalk-1.0.0/css/crosstalk.css",
    "content": "/* Adjust margins outwards, so column contents line up with the edges of the\n   parent of container-fluid. */\n.container-fluid.crosstalk-bscols {\n  margin-left: -30px;\n  margin-right: -30px;\n  white-space: normal;\n}\n\n/* But don't adjust the margins outwards if we're directly under the body,\n   i.e. we were the top-level of something at the console. */\nbody > .container-fluid.crosstalk-bscols {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n  display: inline-block;\n  padding-right: 12px;\n  vertical-align: top;\n}\n\n@media only screen and (max-width:480px) {\n  .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {\n    display: block;\n    padding-right: inherit;\n  }\n}\n"
  },
  {
    "path": "lib/crosstalk-1.0.0/js/crosstalk.js",
    "content": "(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Events = function () {\n  function Events() {\n    _classCallCheck(this, Events);\n\n    this._types = {};\n    this._seq = 0;\n  }\n\n  _createClass(Events, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var subs = this._types[eventType];\n      if (!subs) {\n        subs = this._types[eventType] = {};\n      }\n      var sub = \"sub\" + this._seq++;\n      subs[sub] = listener;\n      return sub;\n    }\n\n    // Returns false if no match, or string for sub name if matched\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var subs = this._types[eventType];\n      if (typeof listener === \"function\") {\n        for (var key in subs) {\n          if (subs.hasOwnProperty(key)) {\n            if (subs[key] === listener) {\n              delete subs[key];\n              return key;\n            }\n          }\n        }\n        return false;\n      } else if (typeof listener === \"string\") {\n        if (subs && subs[listener]) {\n          delete subs[listener];\n          return listener;\n        }\n        return false;\n      } else {\n        throw new Error(\"Unexpected type for listener\");\n      }\n    }\n  }, {\n    key: \"trigger\",\n    value: function trigger(eventType, arg, thisObj) {\n      var subs = this._types[eventType];\n      for (var key in subs) {\n        if (subs.hasOwnProperty(key)) {\n          subs[key].call(thisObj, arg);\n        }\n      }\n    }\n  }]);\n\n  return Events;\n}();\n\nexports.default = Events;\n\n},{}],2:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.FilterHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _filterset = require(\"./filterset\");\n\nvar _filterset2 = _interopRequireDefault(_filterset);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction getFilterSet(group) {\n  var fsVar = group.var(\"filterset\");\n  var result = fsVar.get();\n  if (!result) {\n    result = new _filterset2.default();\n    fsVar.set(result);\n  }\n  return result;\n}\n\nvar id = 1;\nfunction nextId() {\n  return id++;\n}\n\nvar FilterHandle = exports.FilterHandle = function () {\n  /**\n   * @classdesc\n   * Use this class to contribute to, and listen for changes to, the filter set\n   * for the given group of widgets. Filter input controls should create one\n   * `FilterHandle` and only call {@link FilterHandle#set}. Output widgets that\n   * wish to displayed filtered data should create one `FilterHandle` and use\n   * the {@link FilterHandle#filteredKeys} property and listen for change\n   * events.\n   *\n   * If two (or more) `FilterHandle` instances in the same webpage share the\n   * same group name, they will contribute to a single \"filter set\". Each\n   * `FilterHandle` starts out with a `null` value, which means they take\n   * nothing away from the set of data that should be shown. To make a\n   * `FilterHandle` actually remove data from the filter set, set its value to\n   * an array of keys which should be displayed. Crosstalk will aggregate the\n   * various key arrays by finding their intersection; only keys that are\n   * present in all non-null filter handles are considered part of the filter\n   * set.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the @{link FilterHandle#setGroup} method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function FilterHandle(group, extraInfo) {\n    _classCallCheck(this, FilterHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The filterSet that we're tracking, if any. Can change over time.\n    this._filterSet = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._filterVar = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this._id = \"filter\" + nextId();\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this FilterHandle. If `set()` was\n   * previously called on this handle, switching groups will clear those keys\n   * from the old group's filter set. These keys will not be applied to the new\n   * group's filter set either. In other words, `setGroup()` effectively calls\n   * `clear()` before switching groups.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(FilterHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._filterVar) {\n        this._filterVar.off(\"change\", this._varOnChangeSub);\n        this.clear();\n        this._varOnChangeSub = null;\n        this._filterVar = null;\n        this._filterSet = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        group = (0, _group2.default)(group);\n        this._filterSet = getFilterSet(group);\n        this._filterVar = (0, _group2.default)(group).var(\"filter\");\n        var sub = this._filterVar.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Combine the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n    value: function _mergeExtraInfo(extraInfo) {\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Close the handle. This clears this handle's contribution to the filter set,\n     * and unsubscribes all event listeners.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.clear();\n      this.setGroup(null);\n    }\n\n    /**\n     * Clear this handle's contribution to the filter set.\n     *\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.clear(this._id);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * Set this handle's contribution to the filter set. This array should consist\n     * of the keys of the rows that _should_ be displayed; any keys that are not\n     * present in the array will be considered _filtered out_. Note that multiple\n     * `FilterHandle` instances in the group may each contribute an array of keys,\n     * and only those keys that appear in _all_ of the arrays make it through the\n     * filter.\n     *\n     * @param {string[]} keys - Empty array, or array of keys. To clear the\n     *   filter, don't pass an empty array; instead, use the\n     *   {@link FilterHandle#clear} method.\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `FilterHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(keys, extraInfo) {\n      if (!this._filterSet) return;\n      this._filterSet.update(this._id, keys);\n      this._onChange(extraInfo);\n    }\n\n    /**\n     * @return {string[]|null} - Either: 1) an array of keys that made it through\n     *   all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n     *   is being applied (all data should be displayed).\n     */\n\n  }, {\n    key: \"on\",\n\n\n    /**\n     * Subscribe to events on this `FilterHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {FilterHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n     *   this subscription.\n     */\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancel event subscriptions created by {@link FilterHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|FilterHandle~listener} listener - Either the callback\n     *   function previously passed into {@link FilterHandle#on}, or the\n     *   string that was returned from {@link FilterHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n  }, {\n    key: \"_onChange\",\n    value: function _onChange(extraInfo) {\n      if (!this._filterSet) return;\n      this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * @callback FilterHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the filter set, or `null` if no filter set is active),\n     *   `oldValue` (the previous value of the filter set), and `sender` (the\n     *   `FilterHandle` instance that made the change).\n     */\n\n    /**\n     * @event FilterHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the filter set, or `null`\n     *   if no filter set is active.\n     * @property {object} oldValue - The previous value of the filter set.\n     * @property {FilterHandle} sender - The `FilterHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"filteredKeys\",\n    get: function get() {\n      return this._filterSet ? this._filterSet.value : null;\n    }\n  }]);\n\n  return FilterHandle;\n}();\n\n},{\"./events\":1,\"./filterset\":3,\"./group\":4,\"./util\":11}],3:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _util = require(\"./util\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction naturalComparator(a, b) {\n  if (a === b) {\n    return 0;\n  } else if (a < b) {\n    return -1;\n  } else if (a > b) {\n    return 1;\n  }\n}\n\n/**\n * @private\n */\n\nvar FilterSet = function () {\n  function FilterSet() {\n    _classCallCheck(this, FilterSet);\n\n    this.reset();\n  }\n\n  _createClass(FilterSet, [{\n    key: \"reset\",\n    value: function reset() {\n      // Key: handle ID, Value: array of selected keys, or null\n      this._handles = {};\n      // Key: key string, Value: count of handles that include it\n      this._keys = {};\n      this._value = null;\n      this._activeHandles = 0;\n    }\n  }, {\n    key: \"update\",\n    value: function update(handleId, keys) {\n      if (keys !== null) {\n        keys = keys.slice(0); // clone before sorting\n        keys.sort(naturalComparator);\n      }\n\n      var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys),\n          added = _diffSortedLists.added,\n          removed = _diffSortedLists.removed;\n\n      this._handles[handleId] = keys;\n\n      for (var i = 0; i < added.length; i++) {\n        this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n      }\n      for (var _i = 0; _i < removed.length; _i++) {\n        this._keys[removed[_i]]--;\n      }\n\n      this._updateValue(keys);\n    }\n\n    /**\n     * @param {string[]} keys Sorted array of strings that indicate\n     * a superset of possible keys.\n     * @private\n     */\n\n  }, {\n    key: \"_updateValue\",\n    value: function _updateValue() {\n      var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys;\n\n      var handleCount = Object.keys(this._handles).length;\n      if (handleCount === 0) {\n        this._value = null;\n      } else {\n        this._value = [];\n        for (var i = 0; i < keys.length; i++) {\n          var count = this._keys[keys[i]];\n          if (count === handleCount) {\n            this._value.push(keys[i]);\n          }\n        }\n      }\n    }\n  }, {\n    key: \"clear\",\n    value: function clear(handleId) {\n      if (typeof this._handles[handleId] === \"undefined\") {\n        return;\n      }\n\n      var keys = this._handles[handleId];\n      if (!keys) {\n        keys = [];\n      }\n\n      for (var i = 0; i < keys.length; i++) {\n        this._keys[keys[i]]--;\n      }\n      delete this._handles[handleId];\n\n      this._updateValue();\n    }\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"_allKeys\",\n    get: function get() {\n      var allKeys = Object.keys(this._keys);\n      allKeys.sort(naturalComparator);\n      return allKeys;\n    }\n  }]);\n\n  return FilterSet;\n}();\n\nexports.default = FilterSet;\n\n},{\"./util\":11}],4:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.default = group;\n\nvar _var2 = require(\"./var\");\n\nvar _var3 = _interopRequireDefault(_var2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nvar groups = global.__crosstalk_groups;\n\nfunction group(groupName) {\n  if (groupName && typeof groupName === \"string\") {\n    if (!groups.hasOwnProperty(groupName)) {\n      groups[groupName] = new Group(groupName);\n    }\n    return groups[groupName];\n  } else if ((typeof groupName === \"undefined\" ? \"undefined\" : _typeof(groupName)) === \"object\" && groupName._vars && groupName.var) {\n    // Appears to already be a group object\n    return groupName;\n  } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === \"string\") {\n    return group(groupName[0]);\n  } else {\n    throw new Error(\"Invalid groupName argument\");\n  }\n}\n\nvar Group = function () {\n  function Group(name) {\n    _classCallCheck(this, Group);\n\n    this.name = name;\n    this._vars = {};\n  }\n\n  _createClass(Group, [{\n    key: \"var\",\n    value: function _var(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name);\n      return this._vars[name];\n    }\n  }, {\n    key: \"has\",\n    value: function has(name) {\n      if (!name || typeof name !== \"string\") {\n        throw new Error(\"Invalid var name\");\n      }\n\n      return this._vars.hasOwnProperty(name);\n    }\n  }]);\n\n  return Group;\n}();\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./var\":12}],5:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _selection = require(\"./selection\");\n\nvar _filter = require(\"./filter\");\n\nrequire(\"./input\");\n\nrequire(\"./input_selectize\");\n\nrequire(\"./input_checkboxgroup\");\n\nrequire(\"./input_slider\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar defaultGroup = (0, _group2.default)(\"default\");\n\nfunction var_(name) {\n  return defaultGroup.var(name);\n}\n\nfunction has(name) {\n  return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n  global.Shiny.addCustomMessageHandler(\"update-client-value\", function (message) {\n    if (typeof message.group === \"string\") {\n      (0, _group2.default)(message.group).var(message.name).set(message.value);\n    } else {\n      var_(message.name).set(message.value);\n    }\n  });\n}\n\nvar crosstalk = {\n  group: _group2.default,\n  var: var_,\n  has: has,\n  SelectionHandle: _selection.SelectionHandle,\n  FilterHandle: _filter.FilterHandle\n};\n\n/**\n * @namespace crosstalk\n */\nexports.default = crosstalk;\n\nglobal.crosstalk = crosstalk;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./group\":4,\"./input\":6,\"./input_checkboxgroup\":7,\"./input_selectize\":8,\"./input_slider\":9,\"./selection\":10}],6:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.register = register;\nvar $ = global.jQuery;\n\nvar bindings = {};\n\nfunction register(reg) {\n  bindings[reg.className] = reg;\n  if (global.document && global.document.readyState !== \"complete\") {\n    $(function () {\n      bind();\n    });\n  } else if (global.document) {\n    setTimeout(bind, 100);\n  }\n}\n\nfunction bind() {\n  Object.keys(bindings).forEach(function (className) {\n    var binding = bindings[className];\n    $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function (i, el) {\n      bindInstance(binding, el);\n    });\n  });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n  return val.replace(/([!\"#$%&'()*+,.\\/:;<=>?@\\[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n  var $el = $(el);\n  Object.keys(bindings).forEach(function (className) {\n    if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n      var binding = bindings[className];\n      bindInstance(binding, el);\n    }\n  });\n}\n\nfunction bindInstance(binding, el) {\n  var jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n  var data = JSON.parse(jsonEl[0].innerText);\n\n  var instance = binding.factory(el, data);\n  $(el).data(\"crosstalk-instance\", instance);\n  $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n  (function () {\n    var inputBinding = new global.Shiny.InputBinding();\n    var $ = global.jQuery;\n    $.extend(inputBinding, {\n      find: function find(scope) {\n        return $(scope).find(\".crosstalk-input\");\n      },\n      initialize: function initialize(el) {\n        if (!$(el).hasClass(\"crosstalk-input-bound\")) {\n          bindEl(el);\n        }\n      },\n      getId: function getId(el) {\n        return el.id;\n      },\n      getValue: function getValue(el) {},\n      setValue: function setValue(el, value) {},\n      receiveMessage: function receiveMessage(el, data) {},\n      subscribe: function subscribe(el, callback) {\n        $(el).data(\"crosstalk-instance\").resume();\n      },\n      unsubscribe: function unsubscribe(el) {\n        $(el).data(\"crosstalk-instance\").suspend();\n      }\n    });\n    global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n  })();\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{}],7:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-checkboxgroup\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    var $el = $(el);\n    $el.on(\"change\", \"input[type='checkbox']\", function () {\n      var checked = $el.find(\"input[type='checkbox']:checked\");\n      if (checked.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          checked.each(function () {\n            data.map[this.value].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],8:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\n\ninput.register({\n  className: \"crosstalk-input-select\",\n\n  factory: function factory(el, data) {\n    /*\n     * items: {value: [...], label: [...]}\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n\n    var first = [{ value: \"\", label: \"(All)\" }];\n    var items = util.dataframeToD3(data.items);\n    var opts = {\n      options: first.concat(items),\n      valueField: \"value\",\n      labelField: \"label\",\n      searchField: \"label\"\n    };\n\n    var select = $(el).find(\"select\")[0];\n\n    var selectize = $(select).selectize(opts)[0].selectize;\n\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var lastKnownKeys = void 0;\n    selectize.on(\"change\", function () {\n      if (selectize.items.length === 0) {\n        lastKnownKeys = null;\n        ctHandle.clear();\n      } else {\n        (function () {\n          var keys = {};\n          selectize.items.forEach(function (group) {\n            data.map[group].forEach(function (key) {\n              keys[key] = true;\n            });\n          });\n          var keyArray = Object.keys(keys);\n          keyArray.sort();\n          lastKnownKeys = keyArray;\n          ctHandle.set(keyArray);\n        })();\n      }\n    });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6,\"./util\":11}],9:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\nvar _input = require(\"./input\");\n\nvar input = _interopRequireWildcard(_input);\n\nvar _filter = require(\"./filter\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nvar $ = global.jQuery;\nvar strftime = global.strftime;\n\ninput.register({\n  className: \"crosstalk-input-slider\",\n\n  factory: function factory(el, data) {\n    /*\n     * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n     * group: \"ct-groupname\"\n     */\n    var ctHandle = new _filter.FilterHandle(data.group);\n\n    var opts = {};\n    var $el = $(el).find(\"input\");\n    var dataType = $el.data(\"data-type\");\n    var timeFormat = $el.data(\"time-format\");\n    var timeFormatter = void 0;\n\n    // Set up formatting functions\n    if (dataType === \"date\") {\n      timeFormatter = strftime.utc();\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    } else if (dataType === \"datetime\") {\n      var timezone = $el.data(\"timezone\");\n      if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime;\n\n      opts.prettify = function (num) {\n        return timeFormatter(timeFormat, new Date(num));\n      };\n    }\n\n    $el.ionRangeSlider(opts);\n\n    function getValue() {\n      var result = $el.data(\"ionRangeSlider\").result;\n\n      // Function for converting numeric value from slider to appropriate type.\n      var convert = void 0;\n      var dataType = $el.data(\"data-type\");\n      if (dataType === \"date\") {\n        convert = function convert(val) {\n          return formatDateUTC(new Date(+val));\n        };\n      } else if (dataType === \"datetime\") {\n        convert = function convert(val) {\n          // Convert ms to s\n          return +val / 1000;\n        };\n      } else {\n        convert = function convert(val) {\n          return +val;\n        };\n      }\n\n      if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n        return [convert(result.from), convert(result.to)];\n      } else {\n        return convert(result.from);\n      }\n    }\n\n    var lastKnownKeys = null;\n\n    $el.on(\"change.crosstalkSliderInput\", function (event) {\n      if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n        var _getValue = getValue(),\n            _getValue2 = _slicedToArray(_getValue, 2),\n            from = _getValue2[0],\n            to = _getValue2[1];\n\n        var keys = [];\n        for (var i = 0; i < data.values.length; i++) {\n          var val = data.values[i];\n          if (val >= from && val <= to) {\n            keys.push(data.keys[i]);\n          }\n        }\n        keys.sort();\n        ctHandle.set(keys);\n        lastKnownKeys = keys;\n      }\n    });\n\n    // let $el = $(el);\n    // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n    //   let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n    //   if (checked.length === 0) {\n    //     ctHandle.clear();\n    //   } else {\n    //     let keys = {};\n    //     checked.each(function() {\n    //       data.map[this.value].forEach(function(key) {\n    //         keys[key] = true;\n    //       });\n    //     });\n    //     let keyArray = Object.keys(keys);\n    //     keyArray.sort();\n    //     ctHandle.set(keyArray);\n    //   }\n    // });\n\n    return {\n      suspend: function suspend() {\n        ctHandle.clear();\n      },\n      resume: function resume() {\n        if (lastKnownKeys) ctHandle.set(lastKnownKeys);\n      }\n    };\n  }\n});\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n  var str = n.toString();\n  while (str.length < digits) {\n    str = \"0\" + str;\n  }return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n  if (date instanceof Date) {\n    return date.getUTCFullYear() + \"-\" + padZeros(date.getUTCMonth() + 1, 2) + \"-\" + padZeros(date.getUTCDate(), 2);\n  } else {\n    return null;\n  }\n}\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./filter\":2,\"./input\":6}],10:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.SelectionHandle = undefined;\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nvar _group = require(\"./group\");\n\nvar _group2 = _interopRequireDefault(_group);\n\nvar _util = require(\"./util\");\n\nvar util = _interopRequireWildcard(_util);\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar SelectionHandle = exports.SelectionHandle = function () {\n\n  /**\n   * @classdesc\n   * Use this class to read and write (and listen for changes to) the selection\n   * for a Crosstalk group. This is intended to be used for linked brushing.\n   *\n   * If two (or more) `SelectionHandle` instances in the same webpage share the\n   * same group name, they will share the same state. Setting the selection using\n   * one `SelectionHandle` instance will result in the `value` property instantly\n   * changing across the others, and `\"change\"` event listeners on all instances\n   * (including the one that initiated the sending) will fire.\n   *\n   * @param {string} [group] - The name of the Crosstalk group, or if none,\n   *   null or undefined (or any other falsy value). This can be changed later\n   *   via the [SelectionHandle#setGroup](#setGroup) method.\n   * @param {Object} [extraInfo] - An object whose properties will be copied to\n   *   the event object whenever an event is emitted.\n   */\n  function SelectionHandle() {\n    var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n    var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n\n    _classCallCheck(this, SelectionHandle);\n\n    this._eventRelay = new _events2.default();\n    this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n    // Name of the group we're currently tracking, if any. Can change over time.\n    this._group = null;\n    // The Var we're currently tracking, if any. Can change over time.\n    this._var = null;\n    // The event handler subscription we currently have on var.on(\"change\").\n    this._varOnChangeSub = null;\n\n    this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n    this.setGroup(group);\n  }\n\n  /**\n   * Changes the Crosstalk group membership of this SelectionHandle. The group\n   * being switched away from (if any) will not have its selection value\n   * modified as a result of calling `setGroup`, even if this handle was the\n   * most recent handle to set the selection of the group.\n   *\n   * The group being switched to (if any) will also not have its selection value\n   * modified as a result of calling `setGroup`. If you want to set the\n   * selection value of the new group, call `set` explicitly.\n   *\n   * @param {string} group - The name of the Crosstalk group, or null (or\n   *   undefined) to clear the group.\n   */\n\n\n  _createClass(SelectionHandle, [{\n    key: \"setGroup\",\n    value: function setGroup(group) {\n      var _this = this;\n\n      // If group is unchanged, do nothing\n      if (this._group === group) return;\n      // Treat null, undefined, and other falsy values the same\n      if (!this._group && !group) return;\n\n      if (this._var) {\n        this._var.off(\"change\", this._varOnChangeSub);\n        this._var = null;\n        this._varOnChangeSub = null;\n      }\n\n      this._group = group;\n\n      if (group) {\n        this._var = (0, _group2.default)(group).var(\"selection\");\n        var sub = this._var.on(\"change\", function (e) {\n          _this._eventRelay.trigger(\"change\", e, _this);\n        });\n        this._varOnChangeSub = sub;\n      }\n    }\n\n    /**\n     * Retrieves the current selection for the group represented by this\n     * `SelectionHandle`.\n     *\n     * - If no selection is active, then this value will be falsy.\n     * - If a selection is active, but no data points are selected, then this\n     *   value will be an empty array.\n     * - If a selection is active, and data points are selected, then the keys\n     *   of the selected data points will be present in the array.\n     */\n\n  }, {\n    key: \"_mergeExtraInfo\",\n\n\n    /**\n     * Combines the given `extraInfo` (if any) with the handle's default\n     * `_extraInfo` (if any).\n     * @private\n     */\n    value: function _mergeExtraInfo(extraInfo) {\n      // Important incidental effect: shallow clone is returned\n      return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null);\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n     *   {@link SelectionHandle#value}).\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any options that were\n     *   passed into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"set\",\n    value: function set(selectedKeys, extraInfo) {\n      if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Overwrites the current selection for the group, and raises the `\"change\"`\n     * event among all of the group's '`SelectionHandle` instances (including\n     * this one).\n     *\n     * @fires SelectionHandle#change\n     * @param {Object} [extraInfo] - Extra properties to be included on the event\n     *   object that's passed to listeners (in addition to any that were passed\n     *   into the `SelectionHandle` constructor).\n     */\n\n  }, {\n    key: \"clear\",\n    value: function clear(extraInfo) {\n      if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo));\n    }\n\n    /**\n     * Subscribes to events on this `SelectionHandle`.\n     *\n     * @param {string} eventType - Indicates the type of events to listen to.\n     *   Currently, only `\"change\"` is supported.\n     * @param {SelectionHandle~listener} listener - The callback function that\n     *   will be invoked when the event occurs.\n     * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n     *   this subscription.\n     */\n\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._emitter.on(eventType, listener);\n    }\n\n    /**\n     * Cancels event subscriptions created by {@link SelectionHandle#on}.\n     *\n     * @param {string} eventType - The type of event to unsubscribe.\n     * @param {string|SelectionHandle~listener} listener - Either the callback\n     *   function previously passed into {@link SelectionHandle#on}, or the\n     *   string that was returned from {@link SelectionHandle#on}.\n     */\n\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._emitter.off(eventType, listener);\n    }\n\n    /**\n     * Shuts down the `SelectionHandle` object.\n     *\n     * Removes all event listeners that were added through this handle.\n     */\n\n  }, {\n    key: \"close\",\n    value: function close() {\n      this._emitter.removeAllListeners();\n      this.setGroup(null);\n    }\n\n    /**\n     * @callback SelectionHandle~listener\n     * @param {Object} event - An object containing details of the event. For\n     *   `\"change\"` events, this includes the properties `value` (the new\n     *   value of the selection, or `undefined` if no selection is active),\n     *   `oldValue` (the previous value of the selection), and `sender` (the\n     *   `SelectionHandle` instance that made the change).\n     */\n\n    /**\n     * @event SelectionHandle#change\n     * @type {object}\n     * @property {object} value - The new value of the selection, or `undefined`\n     *   if no selection is active.\n     * @property {object} oldValue - The previous value of the selection.\n     * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n     *   changed the value.\n     */\n\n  }, {\n    key: \"value\",\n    get: function get() {\n      return this._var ? this._var.get() : null;\n    }\n  }]);\n\n  return SelectionHandle;\n}();\n\n},{\"./events\":1,\"./group\":4,\"./util\":11}],11:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nexports.extend = extend;\nexports.checkSorted = checkSorted;\nexports.diffSortedLists = diffSortedLists;\nexports.dataframeToD3 = dataframeToD3;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction extend(target) {\n  for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n    sources[_key - 1] = arguments[_key];\n  }\n\n  for (var i = 0; i < sources.length; i++) {\n    var src = sources[i];\n    if (typeof src === \"undefined\" || src === null) continue;\n\n    for (var key in src) {\n      if (src.hasOwnProperty(key)) {\n        target[key] = src[key];\n      }\n    }\n  }\n  return target;\n}\n\nfunction checkSorted(list) {\n  for (var i = 1; i < list.length; i++) {\n    if (list[i] <= list[i - 1]) {\n      throw new Error(\"List is not sorted or contains duplicate\");\n    }\n  }\n}\n\nfunction diffSortedLists(a, b) {\n  var i_a = 0;\n  var i_b = 0;\n\n  if (!a) a = [];\n  if (!b) b = [];\n\n  var a_only = [];\n  var b_only = [];\n\n  checkSorted(a);\n  checkSorted(b);\n\n  while (i_a < a.length && i_b < b.length) {\n    if (a[i_a] === b[i_b]) {\n      i_a++;\n      i_b++;\n    } else if (a[i_a] < b[i_b]) {\n      a_only.push(a[i_a++]);\n    } else {\n      b_only.push(b[i_b++]);\n    }\n  }\n\n  if (i_a < a.length) a_only = a_only.concat(a.slice(i_a));\n  if (i_b < b.length) b_only = b_only.concat(b.slice(i_b));\n  return {\n    removed: a_only,\n    added: b_only\n  };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nfunction dataframeToD3(df) {\n  var names = [];\n  var length = void 0;\n  for (var name in df) {\n    if (df.hasOwnProperty(name)) names.push(name);\n    if (_typeof(df[name]) !== \"object\" || typeof df[name].length === \"undefined\") {\n      throw new Error(\"All fields must be arrays\");\n    } else if (typeof length !== \"undefined\" && length !== df[name].length) {\n      throw new Error(\"All fields must be arrays of the same length\");\n    }\n    length = df[name].length;\n  }\n  var results = [];\n  var item = void 0;\n  for (var row = 0; row < length; row++) {\n    item = {};\n    for (var col = 0; col < names.length; col++) {\n      item[names[col]] = df[names[col]][row];\n    }\n    results.push(item);\n  }\n  return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\n\nvar SubscriptionTracker = exports.SubscriptionTracker = function () {\n  function SubscriptionTracker(emitter) {\n    _classCallCheck(this, SubscriptionTracker);\n\n    this._emitter = emitter;\n    this._subs = {};\n  }\n\n  _createClass(SubscriptionTracker, [{\n    key: \"on\",\n    value: function on(eventType, listener) {\n      var sub = this._emitter.on(eventType, listener);\n      this._subs[sub] = eventType;\n      return sub;\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      var sub = this._emitter.off(eventType, listener);\n      if (sub) {\n        delete this._subs[sub];\n      }\n      return sub;\n    }\n  }, {\n    key: \"removeAllListeners\",\n    value: function removeAllListeners() {\n      var _this = this;\n\n      var current_subs = this._subs;\n      this._subs = {};\n      Object.keys(current_subs).forEach(function (sub) {\n        _this._emitter.off(current_subs[sub], sub);\n      });\n    }\n  }]);\n\n  return SubscriptionTracker;\n}();\n\n},{}],12:[function(require,module,exports){\n(function (global){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _events = require(\"./events\");\n\nvar _events2 = _interopRequireDefault(_events);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Var = function () {\n  function Var(group, name, /*optional*/value) {\n    _classCallCheck(this, Var);\n\n    this._group = group;\n    this._name = name;\n    this._value = value;\n    this._events = new _events2.default();\n  }\n\n  _createClass(Var, [{\n    key: \"get\",\n    value: function get() {\n      return this._value;\n    }\n  }, {\n    key: \"set\",\n    value: function set(value, /*optional*/event) {\n      if (this._value === value) {\n        // Do nothing; the value hasn't changed\n        return;\n      }\n      var oldValue = this._value;\n      this._value = value;\n      // Alert JavaScript listeners that the value has changed\n      var evt = {};\n      if (event && (typeof event === \"undefined\" ? \"undefined\" : _typeof(event)) === \"object\") {\n        for (var k in event) {\n          if (event.hasOwnProperty(k)) evt[k] = event[k];\n        }\n      }\n      evt.oldValue = oldValue;\n      evt.value = value;\n      this._events.trigger(\"change\", evt, this);\n\n      // TODO: Make this extensible, to let arbitrary back-ends know that\n      // something has changed\n      if (global.Shiny && global.Shiny.onInputChange) {\n        global.Shiny.onInputChange(\".clientValue-\" + (this._group.name !== null ? this._group.name + \"-\" : \"\") + this._name, typeof value === \"undefined\" ? null : value);\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(eventType, listener) {\n      return this._events.on(eventType, listener);\n    }\n  }, {\n    key: \"off\",\n    value: function off(eventType, listener) {\n      return this._events.off(eventType, listener);\n    }\n  }]);\n\n  return Var;\n}();\n\nexports.default = Var;\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./events\":1}]},{},[5])\n//# sourceMappingURL=crosstalk.js.map\n"
  },
  {
    "path": "lib/htmlwidgets-1.2/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = eval(\"(\" + task + \")\");\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {};\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n  // Wait until after the document has loaded to render the widgets.\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      window.HTMLWidgets.staticRender();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        window.HTMLWidgets.staticRender();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = eval(\"(\" + o[part] + \")\");\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "lib/htmlwidgets-1.3/htmlwidgets.js",
    "content": "(function() {\n  // If window.HTMLWidgets is already defined, then use it; otherwise create a\n  // new object. This allows preceding code to set options that affect the\n  // initialization process (though none currently exist).\n  window.HTMLWidgets = window.HTMLWidgets || {};\n\n  // See if we're running in a viewer pane. If not, we're in a web browser.\n  var viewerMode = window.HTMLWidgets.viewerMode =\n      /\\bviewer_pane=1\\b/.test(window.location);\n\n  // See if we're running in Shiny mode. If not, it's a static document.\n  // Note that static widgets can appear in both Shiny and static modes, but\n  // obviously, Shiny widgets can only appear in Shiny apps/documents.\n  var shinyMode = window.HTMLWidgets.shinyMode =\n      typeof(window.Shiny) !== \"undefined\" && !!window.Shiny.outputBindings;\n\n  // We can't count on jQuery being available, so we implement our own\n  // version if necessary.\n  function querySelectorAll(scope, selector) {\n    if (typeof(jQuery) !== \"undefined\" && scope instanceof jQuery) {\n      return scope.find(selector);\n    }\n    if (scope.querySelectorAll) {\n      return scope.querySelectorAll(selector);\n    }\n  }\n\n  function asArray(value) {\n    if (value === null)\n      return [];\n    if ($.isArray(value))\n      return value;\n    return [value];\n  }\n\n  // Implement jQuery's extend\n  function extend(target /*, ... */) {\n    if (arguments.length == 1) {\n      return target;\n    }\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var prop in source) {\n        if (source.hasOwnProperty(prop)) {\n          target[prop] = source[prop];\n        }\n      }\n    }\n    return target;\n  }\n\n  // IE8 doesn't support Array.forEach.\n  function forEach(values, callback, thisArg) {\n    if (values.forEach) {\n      values.forEach(callback, thisArg);\n    } else {\n      for (var i = 0; i < values.length; i++) {\n        callback.call(thisArg, values[i], i, values);\n      }\n    }\n  }\n\n  // Replaces the specified method with the return value of funcSource.\n  //\n  // Note that funcSource should not BE the new method, it should be a function\n  // that RETURNS the new method. funcSource receives a single argument that is\n  // the overridden method, it can be called from the new method. The overridden\n  // method can be called like a regular function, it has the target permanently\n  // bound to it so \"this\" will work correctly.\n  function overrideMethod(target, methodName, funcSource) {\n    var superFunc = target[methodName] || function() {};\n    var superFuncBound = function() {\n      return superFunc.apply(target, arguments);\n    };\n    target[methodName] = funcSource(superFuncBound);\n  }\n\n  // Add a method to delegator that, when invoked, calls\n  // delegatee.methodName. If there is no such method on\n  // the delegatee, but there was one on delegator before\n  // delegateMethod was called, then the original version\n  // is invoked instead.\n  // For example:\n  //\n  // var a = {\n  //   method1: function() { console.log('a1'); }\n  //   method2: function() { console.log('a2'); }\n  // };\n  // var b = {\n  //   method1: function() { console.log('b1'); }\n  // };\n  // delegateMethod(a, b, \"method1\");\n  // delegateMethod(a, b, \"method2\");\n  // a.method1();\n  // a.method2();\n  //\n  // The output would be \"b1\", \"a2\".\n  function delegateMethod(delegator, delegatee, methodName) {\n    var inherited = delegator[methodName];\n    delegator[methodName] = function() {\n      var target = delegatee;\n      var method = delegatee[methodName];\n\n      // The method doesn't exist on the delegatee. Instead,\n      // call the method on the delegator, if it exists.\n      if (!method) {\n        target = delegator;\n        method = inherited;\n      }\n\n      if (method) {\n        return method.apply(target, arguments);\n      }\n    };\n  }\n\n  // Implement a vague facsimilie of jQuery's data method\n  function elementData(el, name, value) {\n    if (arguments.length == 2) {\n      return el[\"htmlwidget_data_\" + name];\n    } else if (arguments.length == 3) {\n      el[\"htmlwidget_data_\" + name] = value;\n      return el;\n    } else {\n      throw new Error(\"Wrong number of arguments for elementData: \" +\n        arguments.length);\n    }\n  }\n\n  // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex\n  function escapeRegExp(str) {\n    return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, \"\\\\$&\");\n  }\n\n  function hasClass(el, className) {\n    var re = new RegExp(\"\\\\b\" + escapeRegExp(className) + \"\\\\b\");\n    return re.test(el.className);\n  }\n\n  // elements - array (or array-like object) of HTML elements\n  // className - class name to test for\n  // include - if true, only return elements with given className;\n  //   if false, only return elements *without* given className\n  function filterByClass(elements, className, include) {\n    var results = [];\n    for (var i = 0; i < elements.length; i++) {\n      if (hasClass(elements[i], className) == include)\n        results.push(elements[i]);\n    }\n    return results;\n  }\n\n  function on(obj, eventName, func) {\n    if (obj.addEventListener) {\n      obj.addEventListener(eventName, func, false);\n    } else if (obj.attachEvent) {\n      obj.attachEvent(eventName, func);\n    }\n  }\n\n  function off(obj, eventName, func) {\n    if (obj.removeEventListener)\n      obj.removeEventListener(eventName, func, false);\n    else if (obj.detachEvent) {\n      obj.detachEvent(eventName, func);\n    }\n  }\n\n  // Translate array of values to top/right/bottom/left, as usual with\n  // the \"padding\" CSS property\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/padding\n  function unpackPadding(value) {\n    if (typeof(value) === \"number\")\n      value = [value];\n    if (value.length === 1) {\n      return {top: value[0], right: value[0], bottom: value[0], left: value[0]};\n    }\n    if (value.length === 2) {\n      return {top: value[0], right: value[1], bottom: value[0], left: value[1]};\n    }\n    if (value.length === 3) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[1]};\n    }\n    if (value.length === 4) {\n      return {top: value[0], right: value[1], bottom: value[2], left: value[3]};\n    }\n  }\n\n  // Convert an unpacked padding object to a CSS value\n  function paddingToCss(paddingObj) {\n    return paddingObj.top + \"px \" + paddingObj.right + \"px \" + paddingObj.bottom + \"px \" + paddingObj.left + \"px\";\n  }\n\n  // Makes a number suitable for CSS\n  function px(x) {\n    if (typeof(x) === \"number\")\n      return x + \"px\";\n    else\n      return x;\n  }\n\n  // Retrieves runtime widget sizing information for an element.\n  // The return value is either null, or an object with fill, padding,\n  // defaultWidth, defaultHeight fields.\n  function sizingPolicy(el) {\n    var sizingEl = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/htmlwidget-sizing']\");\n    if (!sizingEl)\n      return null;\n    var sp = JSON.parse(sizingEl.textContent || sizingEl.text || \"{}\");\n    if (viewerMode) {\n      return sp.viewer;\n    } else {\n      return sp.browser;\n    }\n  }\n\n  // @param tasks Array of strings (or falsy value, in which case no-op).\n  //   Each element must be a valid JavaScript expression that yields a\n  //   function. Or, can be an array of objects with \"code\" and \"data\"\n  //   properties; in this case, the \"code\" property should be a string\n  //   of JS that's an expr that yields a function, and \"data\" should be\n  //   an object that will be added as an additional argument when that\n  //   function is called.\n  // @param target The object that will be \"this\" for each function\n  //   execution.\n  // @param args Array of arguments to be passed to the functions. (The\n  //   same arguments will be passed to all functions.)\n  function evalAndRun(tasks, target, args) {\n    if (tasks) {\n      forEach(tasks, function(task) {\n        var theseArgs = args;\n        if (typeof(task) === \"object\") {\n          theseArgs = theseArgs.concat([task.data]);\n          task = task.code;\n        }\n        var taskFunc = eval(\"(\" + task + \")\");\n        if (typeof(taskFunc) !== \"function\") {\n          throw new Error(\"Task must be a function! Source:\\n\" + task);\n        }\n        taskFunc.apply(target, theseArgs);\n      });\n    }\n  }\n\n  function initSizing(el) {\n    var sizing = sizingPolicy(el);\n    if (!sizing)\n      return;\n\n    var cel = document.getElementById(\"htmlwidget_container\");\n    if (!cel)\n      return;\n\n    if (typeof(sizing.padding) !== \"undefined\") {\n      document.body.style.margin = \"0\";\n      document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));\n    }\n\n    if (sizing.fill) {\n      document.body.style.overflow = \"hidden\";\n      document.body.style.width = \"100%\";\n      document.body.style.height = \"100%\";\n      document.documentElement.style.width = \"100%\";\n      document.documentElement.style.height = \"100%\";\n      if (cel) {\n        cel.style.position = \"absolute\";\n        var pad = unpackPadding(sizing.padding);\n        cel.style.top = pad.top + \"px\";\n        cel.style.right = pad.right + \"px\";\n        cel.style.bottom = pad.bottom + \"px\";\n        cel.style.left = pad.left + \"px\";\n        el.style.width = \"100%\";\n        el.style.height = \"100%\";\n      }\n\n      return {\n        getWidth: function() { return cel.offsetWidth; },\n        getHeight: function() { return cel.offsetHeight; }\n      };\n\n    } else {\n      el.style.width = px(sizing.width);\n      el.style.height = px(sizing.height);\n\n      return {\n        getWidth: function() { return el.offsetWidth; },\n        getHeight: function() { return el.offsetHeight; }\n      };\n    }\n  }\n\n  // Default implementations for methods\n  var defaults = {\n    find: function(scope) {\n      return querySelectorAll(scope, \".\" + this.name);\n    },\n    renderError: function(el, err) {\n      var $el = $(el);\n\n      this.clearError(el);\n\n      // Add all these error classes, as Shiny does\n      var errClass = \"shiny-output-error\";\n      if (err.type !== null) {\n        // use the classes of the error condition as CSS class names\n        errClass = errClass + \" \" + $.map(asArray(err.type), function(type) {\n          return errClass + \"-\" + type;\n        }).join(\" \");\n      }\n      errClass = errClass + \" htmlwidgets-error\";\n\n      // Is el inline or block? If inline or inline-block, just display:none it\n      // and add an inline error.\n      var display = $el.css(\"display\");\n      $el.data(\"restore-display-mode\", display);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        $el.hide();\n        if (err.message !== \"\") {\n          var errorSpan = $(\"<span>\").addClass(errClass);\n          errorSpan.text(err.message);\n          $el.after(errorSpan);\n        }\n      } else if (display === \"block\") {\n        // If block, add an error just after the el, set visibility:none on the\n        // el, and position the error to be on top of the el.\n        // Mark it with a unique ID and CSS class so we can remove it later.\n        $el.css(\"visibility\", \"hidden\");\n        if (err.message !== \"\") {\n          var errorDiv = $(\"<div>\").addClass(errClass).css(\"position\", \"absolute\")\n            .css(\"top\", el.offsetTop)\n            .css(\"left\", el.offsetLeft)\n            // setting width can push out the page size, forcing otherwise\n            // unnecessary scrollbars to appear and making it impossible for\n            // the element to shrink; so use max-width instead\n            .css(\"maxWidth\", el.offsetWidth)\n            .css(\"height\", el.offsetHeight);\n          errorDiv.text(err.message);\n          $el.after(errorDiv);\n\n          // Really dumb way to keep the size/position of the error in sync with\n          // the parent element as the window is resized or whatever.\n          var intId = setInterval(function() {\n            if (!errorDiv[0].parentElement) {\n              clearInterval(intId);\n              return;\n            }\n            errorDiv\n              .css(\"top\", el.offsetTop)\n              .css(\"left\", el.offsetLeft)\n              .css(\"maxWidth\", el.offsetWidth)\n              .css(\"height\", el.offsetHeight);\n          }, 500);\n        }\n      }\n    },\n    clearError: function(el) {\n      var $el = $(el);\n      var display = $el.data(\"restore-display-mode\");\n      $el.data(\"restore-display-mode\", null);\n\n      if (display === \"inline\" || display === \"inline-block\") {\n        if (display)\n          $el.css(\"display\", display);\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      } else if (display === \"block\"){\n        $el.css(\"visibility\", \"inherit\");\n        $(el.nextSibling).filter(\".htmlwidgets-error\").remove();\n      }\n    },\n    sizing: {}\n  };\n\n  // Called by widget bindings to register a new type of widget. The definition\n  // object can contain the following properties:\n  // - name (required) - A string indicating the binding name, which will be\n  //   used by default as the CSS classname to look for.\n  // - initialize (optional) - A function(el) that will be called once per\n  //   widget element; if a value is returned, it will be passed as the third\n  //   value to renderValue.\n  // - renderValue (required) - A function(el, data, initValue) that will be\n  //   called with data. Static contexts will cause this to be called once per\n  //   element; Shiny apps will cause this to be called multiple times per\n  //   element, as the data changes.\n  window.HTMLWidgets.widget = function(definition) {\n    if (!definition.name) {\n      throw new Error(\"Widget must have a name\");\n    }\n    if (!definition.type) {\n      throw new Error(\"Widget must have a type\");\n    }\n    // Currently we only support output widgets\n    if (definition.type !== \"output\") {\n      throw new Error(\"Unrecognized widget type '\" + definition.type + \"'\");\n    }\n    // TODO: Verify that .name is a valid CSS classname\n\n    // Support new-style instance-bound definitions. Old-style class-bound\n    // definitions have one widget \"object\" per widget per type/class of\n    // widget; the renderValue and resize methods on such widget objects\n    // take el and instance arguments, because the widget object can't\n    // store them. New-style instance-bound definitions have one widget\n    // object per widget instance; the definition that's passed in doesn't\n    // provide renderValue or resize methods at all, just the single method\n    //   factory(el, width, height)\n    // which returns an object that has renderValue(x) and resize(w, h).\n    // This enables a far more natural programming style for the widget\n    // author, who can store per-instance state using either OO-style\n    // instance fields or functional-style closure variables (I guess this\n    // is in contrast to what can only be called C-style pseudo-OO which is\n    // what we required before).\n    if (definition.factory) {\n      definition = createLegacyDefinitionAdapter(definition);\n    }\n\n    if (!definition.renderValue) {\n      throw new Error(\"Widget must have a renderValue function\");\n    }\n\n    // For static rendering (non-Shiny), use a simple widget registration\n    // scheme. We also use this scheme for Shiny apps/documents that also\n    // contain static widgets.\n    window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];\n    // Merge defaults into the definition; don't mutate the original definition.\n    var staticBinding = extend({}, defaults, definition);\n    overrideMethod(staticBinding, \"find\", function(superfunc) {\n      return function(scope) {\n        var results = superfunc(scope);\n        // Filter out Shiny outputs, we only want the static kind\n        return filterByClass(results, \"html-widget-output\", false);\n      };\n    });\n    window.HTMLWidgets.widgets.push(staticBinding);\n\n    if (shinyMode) {\n      // Shiny is running. Register the definition with an output binding.\n      // The definition itself will not be the output binding, instead\n      // we will make an output binding object that delegates to the\n      // definition. This is because we foolishly used the same method\n      // name (renderValue) for htmlwidgets definition and Shiny bindings\n      // but they actually have quite different semantics (the Shiny\n      // bindings receive data that includes lots of metadata that it\n      // strips off before calling htmlwidgets renderValue). We can't\n      // just ignore the difference because in some widgets it's helpful\n      // to call this.renderValue() from inside of resize(), and if\n      // we're not delegating, then that call will go to the Shiny\n      // version instead of the htmlwidgets version.\n\n      // Merge defaults with definition, without mutating either.\n      var bindingDef = extend({}, defaults, definition);\n\n      // This object will be our actual Shiny binding.\n      var shinyBinding = new Shiny.OutputBinding();\n\n      // With a few exceptions, we'll want to simply use the bindingDef's\n      // version of methods if they are available, otherwise fall back to\n      // Shiny's defaults. NOTE: If Shiny's output bindings gain additional\n      // methods in the future, and we want them to be overrideable by\n      // HTMLWidget binding definitions, then we'll need to add them to this\n      // list.\n      delegateMethod(shinyBinding, bindingDef, \"getId\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueChange\");\n      delegateMethod(shinyBinding, bindingDef, \"onValueError\");\n      delegateMethod(shinyBinding, bindingDef, \"renderError\");\n      delegateMethod(shinyBinding, bindingDef, \"clearError\");\n      delegateMethod(shinyBinding, bindingDef, \"showProgress\");\n\n      // The find, renderValue, and resize are handled differently, because we\n      // want to actually decorate the behavior of the bindingDef methods.\n\n      shinyBinding.find = function(scope) {\n        var results = bindingDef.find(scope);\n\n        // Only return elements that are Shiny outputs, not static ones\n        var dynamicResults = results.filter(\".html-widget-output\");\n\n        // It's possible that whatever caused Shiny to think there might be\n        // new dynamic outputs, also caused there to be new static outputs.\n        // Since there might be lots of different htmlwidgets bindings, we\n        // schedule execution for later--no need to staticRender multiple\n        // times.\n        if (results.length !== dynamicResults.length)\n          scheduleStaticRender();\n\n        return dynamicResults;\n      };\n\n      // Wrap renderValue to handle initialization, which unfortunately isn't\n      // supported natively by Shiny at the time of this writing.\n\n      shinyBinding.renderValue = function(el, data) {\n        Shiny.renderDependencies(data.deps);\n        // Resolve strings marked as javascript literals to objects\n        if (!(data.evals instanceof Array)) data.evals = [data.evals];\n        for (var i = 0; data.evals && i < data.evals.length; i++) {\n          window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);\n        }\n        if (!bindingDef.renderOnNullValue) {\n          if (data.x === null) {\n            el.style.visibility = \"hidden\";\n            return;\n          } else {\n            el.style.visibility = \"inherit\";\n          }\n        }\n        if (!elementData(el, \"initialized\")) {\n          initSizing(el);\n\n          elementData(el, \"initialized\", true);\n          if (bindingDef.initialize) {\n            var result = bindingDef.initialize(el, el.offsetWidth,\n              el.offsetHeight);\n            elementData(el, \"init_result\", result);\n          }\n        }\n        bindingDef.renderValue(el, data.x, elementData(el, \"init_result\"));\n        evalAndRun(data.jsHooks.render, elementData(el, \"init_result\"), [el, data.x]);\n      };\n\n      // Only override resize if bindingDef implements it\n      if (bindingDef.resize) {\n        shinyBinding.resize = function(el, width, height) {\n          // Shiny can call resize before initialize/renderValue have been\n          // called, which doesn't make sense for widgets.\n          if (elementData(el, \"initialized\")) {\n            bindingDef.resize(el, width, height, elementData(el, \"init_result\"));\n          }\n        };\n      }\n\n      Shiny.outputBindings.register(shinyBinding, bindingDef.name);\n    }\n  };\n\n  var scheduleStaticRenderTimerId = null;\n  function scheduleStaticRender() {\n    if (!scheduleStaticRenderTimerId) {\n      scheduleStaticRenderTimerId = setTimeout(function() {\n        scheduleStaticRenderTimerId = null;\n        window.HTMLWidgets.staticRender();\n      }, 1);\n    }\n  }\n\n  // Render static widgets after the document finishes loading\n  // Statically render all elements that are of this widget's class\n  window.HTMLWidgets.staticRender = function() {\n    var bindings = window.HTMLWidgets.widgets || [];\n    forEach(bindings, function(binding) {\n      var matches = binding.find(document.documentElement);\n      forEach(matches, function(el) {\n        var sizeObj = initSizing(el, binding);\n\n        if (hasClass(el, \"html-widget-static-bound\"))\n          return;\n        el.className = el.className + \" html-widget-static-bound\";\n\n        var initResult;\n        if (binding.initialize) {\n          initResult = binding.initialize(el,\n            sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          );\n          elementData(el, \"init_result\", initResult);\n        }\n\n        if (binding.resize) {\n          var lastSize = {\n            w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n            h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n          };\n          var resizeHandler = function(e) {\n            var size = {\n              w: sizeObj ? sizeObj.getWidth() : el.offsetWidth,\n              h: sizeObj ? sizeObj.getHeight() : el.offsetHeight\n            };\n            if (size.w === 0 && size.h === 0)\n              return;\n            if (size.w === lastSize.w && size.h === lastSize.h)\n              return;\n            lastSize = size;\n            binding.resize(el, size.w, size.h, initResult);\n          };\n\n          on(window, \"resize\", resizeHandler);\n\n          // This is needed for cases where we're running in a Shiny\n          // app, but the widget itself is not a Shiny output, but\n          // rather a simple static widget. One example of this is\n          // an rmarkdown document that has runtime:shiny and widget\n          // that isn't in a render function. Shiny only knows to\n          // call resize handlers for Shiny outputs, not for static\n          // widgets, so we do it ourselves.\n          if (window.jQuery) {\n            window.jQuery(document).on(\n              \"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n            window.jQuery(document).on(\n              \"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets\",\n              resizeHandler\n            );\n          }\n\n          // This is needed for the specific case of ioslides, which\n          // flips slides between display:none and display:block.\n          // Ideally we would not have to have ioslide-specific code\n          // here, but rather have ioslides raise a generic event,\n          // but the rmarkdown package just went to CRAN so the\n          // window to getting that fixed may be long.\n          if (window.addEventListener) {\n            // It's OK to limit this to window.addEventListener\n            // browsers because ioslides itself only supports\n            // such browsers.\n            on(document, \"slideenter\", resizeHandler);\n            on(document, \"slideleave\", resizeHandler);\n          }\n        }\n\n        var scriptData = document.querySelector(\"script[data-for='\" + el.id + \"'][type='application/json']\");\n        if (scriptData) {\n          var data = JSON.parse(scriptData.textContent || scriptData.text);\n          // Resolve strings marked as javascript literals to objects\n          if (!(data.evals instanceof Array)) data.evals = [data.evals];\n          for (var k = 0; data.evals && k < data.evals.length; k++) {\n            window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);\n          }\n          binding.renderValue(el, data.x, initResult);\n          evalAndRun(data.jsHooks.render, initResult, [el, data.x]);\n        }\n      });\n    });\n\n    invokePostRenderHandlers();\n  }\n\n  // Wait until after the document has loaded to render the widgets.\n  if (document.addEventListener) {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      document.removeEventListener(\"DOMContentLoaded\", arguments.callee, false);\n      window.HTMLWidgets.staticRender();\n    }, false);\n  } else if (document.attachEvent) {\n    document.attachEvent(\"onreadystatechange\", function() {\n      if (document.readyState === \"complete\") {\n        document.detachEvent(\"onreadystatechange\", arguments.callee);\n        window.HTMLWidgets.staticRender();\n      }\n    });\n  }\n\n\n  window.HTMLWidgets.getAttachmentUrl = function(depname, key) {\n    // If no key, default to the first item\n    if (typeof(key) === \"undefined\")\n      key = 1;\n\n    var link = document.getElementById(depname + \"-\" + key + \"-attachment\");\n    if (!link) {\n      throw new Error(\"Attachment \" + depname + \"/\" + key + \" not found in document\");\n    }\n    return link.getAttribute(\"href\");\n  };\n\n  window.HTMLWidgets.dataframeToD3 = function(df) {\n    var names = [];\n    var length;\n    for (var name in df) {\n        if (df.hasOwnProperty(name))\n            names.push(name);\n        if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n            throw new Error(\"All fields must be arrays\");\n        } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n            throw new Error(\"All fields must be arrays of the same length\");\n        }\n        length = df[name].length;\n    }\n    var results = [];\n    var item;\n    for (var row = 0; row < length; row++) {\n        item = {};\n        for (var col = 0; col < names.length; col++) {\n            item[names[col]] = df[names[col]][row];\n        }\n        results.push(item);\n    }\n    return results;\n  };\n\n  window.HTMLWidgets.transposeArray2D = function(array) {\n      if (array.length === 0) return array;\n      var newArray = array[0].map(function(col, i) {\n          return array.map(function(row) {\n              return row[i]\n          })\n      });\n      return newArray;\n  };\n  // Split value at splitChar, but allow splitChar to be escaped\n  // using escapeChar. Any other characters escaped by escapeChar\n  // will be included as usual (including escapeChar itself).\n  function splitWithEscape(value, splitChar, escapeChar) {\n    var results = [];\n    var escapeMode = false;\n    var currentResult = \"\";\n    for (var pos = 0; pos < value.length; pos++) {\n      if (!escapeMode) {\n        if (value[pos] === splitChar) {\n          results.push(currentResult);\n          currentResult = \"\";\n        } else if (value[pos] === escapeChar) {\n          escapeMode = true;\n        } else {\n          currentResult += value[pos];\n        }\n      } else {\n        currentResult += value[pos];\n        escapeMode = false;\n      }\n    }\n    if (currentResult !== \"\") {\n      results.push(currentResult);\n    }\n    return results;\n  }\n  // Function authored by Yihui/JJ Allaire\n  window.HTMLWidgets.evaluateStringMember = function(o, member) {\n    var parts = splitWithEscape(member, '.', '\\\\');\n    for (var i = 0, l = parts.length; i < l; i++) {\n      var part = parts[i];\n      // part may be a character or 'numeric' member name\n      if (o !== null && typeof o === \"object\" && part in o) {\n        if (i == (l - 1)) { // if we are at the end of the line then evalulate\n          if (typeof o[part] === \"string\")\n            o[part] = eval(\"(\" + o[part] + \")\");\n        } else { // otherwise continue to next embedded object\n          o = o[part];\n        }\n      }\n    }\n  };\n\n  // Retrieve the HTMLWidget instance (i.e. the return value of an\n  // HTMLWidget binding's initialize() or factory() function)\n  // associated with an element, or null if none.\n  window.HTMLWidgets.getInstance = function(el) {\n    return elementData(el, \"init_result\");\n  };\n\n  // Finds the first element in the scope that matches the selector,\n  // and returns the HTMLWidget instance (i.e. the return value of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with that element, if any. If no element matches the\n  // selector, or the first matching element has no HTMLWidget\n  // instance associated with it, then null is returned.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.find = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var el = scope.querySelector(selector);\n    if (el === null) {\n      return null;\n    } else {\n      return window.HTMLWidgets.getInstance(el);\n    }\n  };\n\n  // Finds all elements in the scope that match the selector, and\n  // returns the HTMLWidget instances (i.e. the return values of\n  // an HTMLWidget binding's initialize() or factory() function)\n  // associated with the elements, in an array. If elements that\n  // match the selector don't have an associated HTMLWidget\n  // instance, the returned array will contain nulls.\n  //\n  // The scope argument is optional, and defaults to window.document.\n  window.HTMLWidgets.findAll = function(scope, selector) {\n    if (arguments.length == 1) {\n      selector = scope;\n      scope = document;\n    }\n\n    var nodes = scope.querySelectorAll(selector);\n    var results = [];\n    for (var i = 0; i < nodes.length; i++) {\n      results.push(window.HTMLWidgets.getInstance(nodes[i]));\n    }\n    return results;\n  };\n\n  var postRenderHandlers = [];\n  function invokePostRenderHandlers() {\n    while (postRenderHandlers.length) {\n      var handler = postRenderHandlers.shift();\n      if (handler) {\n        handler();\n      }\n    }\n  }\n\n  // Register the given callback function to be invoked after the\n  // next time static widgets are rendered.\n  window.HTMLWidgets.addPostRenderHandler = function(callback) {\n    postRenderHandlers.push(callback);\n  };\n\n  // Takes a new-style instance-bound definition, and returns an\n  // old-style class-bound definition. This saves us from having\n  // to rewrite all the logic in this file to accomodate both\n  // types of definitions.\n  function createLegacyDefinitionAdapter(defn) {\n    var result = {\n      name: defn.name,\n      type: defn.type,\n      initialize: function(el, width, height) {\n        return defn.factory(el, width, height);\n      },\n      renderValue: function(el, x, instance) {\n        return instance.renderValue(x);\n      },\n      resize: function(el, width, height, instance) {\n        return instance.resize(width, height);\n      }\n    };\n\n    if (defn.find)\n      result.find = defn.find;\n    if (defn.renderError)\n      result.renderError = defn.renderError;\n    if (defn.clearError)\n      result.clearError = defn.clearError;\n\n    return result;\n  }\n})();\n\n"
  },
  {
    "path": "lib/jquery-1.11.3/jquery-AUTHORS.txt",
    "content": "Authors ordered by first contribution.\n\nJohn Resig <jeresig@gmail.com>\nGilles van den Hoven <gilles0181@gmail.com>\nMichael Geary <mike@geary.com>\nStefan Petre <stefan.petre@gmail.com>\nYehuda Katz <wycats@gmail.com>\nCorey Jewett <cj@syntheticplayground.com>\nKlaus Hartl <klaus.hartl@googlemail.com>\nFranck Marcia <franck.marcia@gmail.com>\nJörn Zaefferer <joern.zaefferer@gmail.com>\nPaul Bakaus <paul.bakaus@googlemail.com>\nBrandon Aaron <brandon.aaron@gmail.com>\nMike Alsup <malsup@gmail.com>\nDave Methvin <dave.methvin@gmail.com>\nEd Engelhardt <edengelhardt@gmail.com>\nSean Catchpole <littlecooldude@gmail.com>\nPaul Mclanahan <pmclanahan@gmail.com>\nDavid Serduke <davidserduke@gmail.com>\nRichard D. Worth <rdworth@gmail.com>\nScott González <scott.gonzalez@gmail.com>\nAriel Flesler <aflesler@gmail.com>\nJon Evans <jon@springyweb.com>\nTJ Holowaychuk <tj@vision-media.ca>\nMichael Bensoussan <mickey@seesmic.com>\nRobert Katić <robert.katic@gmail.com>\nLouis-Rémi Babé <lrbabe@gmail.com>\nEarle Castledine <mrspeaker@gmail.com>\nDamian Janowski <damian.janowski@gmail.com>\nRich Dougherty <rich@rd.gen.nz>\nKim Dalsgaard <kim@kimdalsgaard.com>\nAndrea Giammarchi <andrea.giammarchi@gmail.com>\nMark Gibson <jollytoad@gmail.com>\nKarl Swedberg <kswedberg@gmail.com>\nJustin Meyer <justinbmeyer@gmail.com>\nBen Alman <cowboy@rj3.net>\nJames Padolsey <cla@padolsey.net>\nDavid Petersen <public@petersendidit.com>\nBatiste Bieler <batiste@gmail.com>\nAlexander Farkas <info@corrupt-system.de>\nRick Waldron <waldron.rick@gmail.com>\nFilipe Fortes <filipe@fortes.com>\nNeeraj Singh <neerajdotname@gmail.com>\nPaul Irish <paul.irish@gmail.com>\nIraê Carvalho <irae@irae.pro.br>\nMatt Curry <matt@pseudocoder.com>\nMichael Monteleone <michael@michaelmonteleone.net>\nNoah Sloan <noah.sloan@gmail.com>\nTom Viner <github@viner.tv>\nDouglas Neiner <doug@pixelgraphics.us>\nAdam J. Sontag <ajpiano@ajpiano.com>\nDave Reed <dareed@microsoft.com>\nRalph Whitbeck <ralph.whitbeck@gmail.com>\nCarl Fürstenberg <azatoth@gmail.com>\nJacob Wright <jacwright@gmail.com>\nJ. Ryan Stinnett <jryans@gmail.com>\nunknown <Igen005@.upcorp.ad.uprr.com>\ntemp01 <temp01irc@gmail.com>\nHeungsub Lee <h@subl.ee>\nColin Snover <colin@alpha.zetafleet.com>\nRyan W Tenney <ryan@10e.us>\nPinhook <contact@pinhooklabs.com>\nRon Otten <r.j.g.otten@gmail.com>\nJephte Clain <Jephte.Clain@univ-reunion.fr>\nAnton Matzneller <obhvsbypqghgc@gmail.com>\nAlex Sexton <AlexSexton@gmail.com>\nDan Heberden <danheberden@gmail.com>\nHenri Wiechers <hwiechers@gmail.com>\nRussell Holbrook <russell.holbrook@patch.com>\nJulian Aubourg <aubourg.julian@gmail.com>\nGianni Alessandro Chiappetta <gianni@runlevel6.org>\nScott Jehl <scott@scottjehl.com>\nJames Burke <jrburke@gmail.com>\nJonas Pfenniger <jonas@pfenniger.name>\nXavi Ramirez <xavi.rmz@gmail.com>\nJared Grippe <jared@deadlyicon.com>\nSylvester Keil <sylvester@keil.or.at>\nBrandon Sterne <bsterne@mozilla.com>\nMathias Bynens <mathias@qiwi.be>\nTimmy Willison <timmywillisn@gmail.com>\nCorey Frang <gnarf@gnarf.net>\nDigitalxero <digitalxero>\nAnton Kovalyov <anton@kovalyov.net>\nDavid Murdoch <musicisair@yahoo.com>\nJosh Varner <josh.varner@gmail.com>\nCharles McNulty <cmcnulty@kznf.com>\nJordan Boesch <jboesch26@gmail.com>\nJess Thrysoee <jess@thrysoee.dk>\nMichael Murray <m@murz.net>\nLee Carpenter <elcarpie@gmail.com>\nAlexis Abril <me@alexisabril.com>\nRob Morgan <robbym@gmail.com>\nJohn Firebaugh <john_firebaugh@bigfix.com>\nSam Bisbee <sam@sbisbee.com>\nGilmore Davidson <gilmoreorless@gmail.com>\nBrian Brennan <me@brianlovesthings.com>\nXavier Montillet <xavierm02.net@gmail.com>\nDaniel Pihlstrom <sciolist.se@gmail.com>\nSahab Yazdani <sahab.yazdani+github@gmail.com>\navaly <github-com@agachi.name>\nScott Hughes <hi@scott-hughes.me>\nMike Sherov <mike.sherov@gmail.com>\nGreg Hazel <ghazel@gmail.com>\nSchalk Neethling <schalk@ossreleasefeed.com>\nDenis Knauf <Denis.Knauf@gmail.com>\nTimo Tijhof <krinklemail@gmail.com>\nSteen Nielsen <swinedk@gmail.com>\nAnton Ryzhov <anton@ryzhov.me>\nShi Chuan <shichuanr@gmail.com>\nBerker Peksag <berker.peksag@gmail.com>\nToby Brain <tobyb@freshview.com>\nMatt Mueller <mattmuelle@gmail.com>\nJustin <drakefjustin@gmail.com>\nDaniel Herman <daniel.c.herman@gmail.com>\nOleg Gaidarenko <markelog@gmail.com>\nRichard Gibson <richard.gibson@gmail.com>\nRafaël Blais Masson <rafbmasson@gmail.com>\ncmc3cn <59194618@qq.com>\nJoe Presbrey <presbrey@gmail.com>\nSindre Sorhus <sindresorhus@gmail.com>\nArne de Bree <arne@bukkie.nl>\nVladislav Zarakovsky <vlad.zar@gmail.com>\nAndrew E Monat <amonat@gmail.com>\nOskari <admin@o-programs.com>\nJoao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>\ntsinha <tsinha@Anthonys-MacBook-Pro.local>\nMatt Farmer <matt@frmr.me>\nTrey Hunner <treyhunner@gmail.com>\nJason Moon <jmoon@socialcast.com>\nJeffery To <jeffery.to@gmail.com>\nKris Borchers <kris.borchers@gmail.com>\nVladimir Zhuravlev <private.face@gmail.com>\nJacob Thornton <jacobthornton@gmail.com>\nChad Killingsworth <chadkillingsworth@missouristate.edu>\nNowres Rafid <nowres.rafed@gmail.com>\nDavid Benjamin <davidben@mit.edu>\nUri Gilad <antishok@gmail.com>\nChris Faulkner <thefaulkner@gmail.com>\nElijah Manor <elijah.manor@gmail.com>\nDaniel Chatfield <chatfielddaniel@gmail.com>\nNikita Govorov <nikita.govorov@gmail.com>\nWesley Walser <wwalser@atlassian.com>\nMike Pennisi <mike@mikepennisi.com>\nMarkus Staab <markus.staab@redaxo.de>\nDave Riddle <david@joyvuu.com>\nCallum Macrae <callum@lynxphp.com>\nBenjamin Truyman <bentruyman@gmail.com>\nJames Huston <james@jameshuston.net>\nErick Ruiz de Chávez <erickrdch@gmail.com>\nDavid Bonner <dbonner@cogolabs.com>\nAkintayo Akinwunmi <aakinwunmi@judge.com>\nMORGAN <morgan@morgangraphics.com>\nIsmail Khair <ismail.khair@gmail.com>\nCarl Danley <carldanley@gmail.com>\nMike Petrovich <michael.c.petrovich@gmail.com>\nGreg Lavallee <greglavallee@wapolabs.com>\nDaniel Gálvez <dgalvez@editablething.com>\nSai Lung Wong <sai.wong@huffingtonpost.com>\nTom H Fuertes <TomFuertes@gmail.com>\nRoland Eckl <eckl.roland@googlemail.com>\nJay Merrifield <fracmak@gmail.com>\nAllen J Schmidt Jr <cobrasoft@gmail.com>\nJonathan Sampson <jjdsampson@gmail.com>\nMarcel Greter <marcel.greter@ocbnet.ch>\nMatthias Jäggli <matthias.jaeggli@gmail.com>\nDavid Fox <dfoxinator@gmail.com>\nYiming He <yiminghe@gmail.com>\nDevin Cooper <cooper.semantics@gmail.com>\nPaul Ramos <paul.b.ramos@gmail.com>\nRod Vagg <rod@vagg.org>\nBennett Sorbo <bsorbo@gmail.com>\nSebastian Burkhard <sebi.burkhard@gmail.com>\nnanto <nanto@moon.email.ne.jp>\nDanil Somsikov <danilasomsikov@gmail.com>\nRyunosuke SATO <tricknotes.rs@gmail.com>\nJean Boussier <jean.boussier@gmail.com>\nAdam Coulombe <me@adam.co>\nAndrew Plummer <plummer.andrew@gmail.com>\nMark Raddatz <mraddatz@gmail.com>\nDmitry Gusev <dmitry.gusev@gmail.com>\nMichał Gołębiowski <m.goleb@gmail.com>\nNguyen Phuc Lam <ruado1987@gmail.com>\nTom H Fuertes <tomfuertes@gmail.com>\nBrandon Johnson <bjohn465+github@gmail.com>\nJason Bedard <jason+jquery@jbedard.ca>\nKyle Robinson Young <kyle@dontkry.com>\nRenato Oliveira dos Santos <ros3@cin.ufpe.br>\nChris Talkington <chris@talkingtontech.com>\nEddie Monge <eddie@eddiemonge.com>\nTerry Jones <terry@jon.es>\nJason Merino <jasonmerino@gmail.com>\nJeremy Dunck <jdunck@gmail.com>\nChris Price <price.c@gmail.com>\nAmey Sakhadeo <me@ameyms.com>\nAnthony Ryan <anthonyryan1@gmail.com>\nDominik D. Geyer <dominik.geyer@gmail.com>\nGeorge Kats <katsgeorgeek@gmail.com>\nLihan Li <frankieteardrop@gmail.com>\nRonny Springer <springer.ronny@gmail.com>\nMarian Sollmann <marian.sollmann@cargomedia.ch>\nCorey Frang <gnarf37@gmail.com>\nChris Antaki <ChrisAntaki@gmail.com>\nNoah Hamann <njhamann@gmail.com>\nDavid Hong <d.hong@me.com>\nJakob Stoeck <jakob@pokermania.de>\nChristopher Jones <christopherjonesqed@gmail.com>\nForbes Lindesay <forbes@lindesay.co.uk>\nJohn Paul <john@johnkpaul.com>\nS. Andrew Sheppard <andrew@wq.io>\nLeonardo Balter <leonardo.balter@gmail.com>\nRoman Reiß <me@silverwind.io>\nBenjy Cui <benjytrys@gmail.com>\nRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>\nJohn Hoven <hovenj@gmail.com>\nChristian Kosmowski <ksmwsk@gmail.com>\nLiang Peng <poppinlp@gmail.com>\nTJ VanToll <tj.vantoll@gmail.com>\n"
  },
  {
    "path": "lib/jquery-1.11.3/jquery.js",
    "content": "/*!\n * jQuery JavaScript Library v1.11.3\n * http://jquery.com/\n *\n * Includes Sizzle.js\n * http://sizzlejs.com/\n *\n * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2015-04-28T16:19Z\n */\n\n(function( global, factory ) {\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\t\t// For CommonJS and CommonJS-like environments where a proper window is present,\n\t\t// execute the factory and get jQuery\n\t\t// For environments that do not inherently posses a window with a document\n\t\t// (such as Node.js), expose a jQuery-making factory as module.exports\n\t\t// This accentuates the need for the creation of a real window\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n}(typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Can't do this because several apps including ASP.NET trace\n// the stack via arguments.caller.callee and Firefox dies if\n// you try to trace through \"use strict\" call chains. (#13335)\n// Support: Firefox 18+\n//\n\nvar deletedIds = [];\n\nvar slice = deletedIds.slice;\n\nvar concat = deletedIds.concat;\n\nvar push = deletedIds.push;\n\nvar indexOf = deletedIds.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar support = {};\n\n\n\nvar\n\tversion = \"1.11.3\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t},\n\n\t// Support: Android<4.1, IE<9\n\t// Make sure we trim BOM and NBSP\n\trtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g,\n\n\t// Matches dashed string for camelizing\n\trmsPrefix = /^-ms-/,\n\trdashAlpha = /-([\\da-z])/gi,\n\n\t// Used by jQuery.camelCase as callback to replace()\n\tfcamelCase = function( all, letter ) {\n\t\treturn letter.toUpperCase();\n\t};\n\njQuery.fn = jQuery.prototype = {\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// Start with an empty selector\n\tselector: \"\",\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\t\treturn num != null ?\n\n\t\t\t// Return just the one element from the set\n\t\t\t( num < 0 ? this[ num + this.length ] : this[ num ] ) :\n\n\t\t\t// Return all the elements in a clean array\n\t\t\tslice.call( this );\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\t\tret.context = this.context;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\t// (You can seed the arguments with an array of args, but this is\n\t// only used internally.)\n\teach: function( callback, args ) {\n\t\treturn jQuery.each( this, callback, args );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map(this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t}));\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor(null);\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: deletedIds.sort,\n\tsplice: deletedIds.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar src, copyIsArray, copy, name, options, clone,\n\t\ttarget = arguments[0] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !jQuery.isFunction(target) ) {\n\t\ttarget = {};\n\t}\n\n\t// extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\t\t// Only deal with non-null/undefined values\n\t\tif ( (options = arguments[ i ]) != null ) {\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tsrc = target[ name ];\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {\n\t\t\t\t\tif ( copyIsArray ) {\n\t\t\t\t\t\tcopyIsArray = false;\n\t\t\t\t\t\tclone = src && jQuery.isArray(src) ? src : [];\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src && jQuery.isPlainObject(src) ? src : {};\n\t\t\t\t\t}\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend({\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\t// See test/unit/core.js for details concerning isFunction.\n\t// Since version 1.3, DOM methods and functions like alert\n\t// aren't supported. They return false on IE (#2968).\n\tisFunction: function( obj ) {\n\t\treturn jQuery.type(obj) === \"function\";\n\t},\n\n\tisArray: Array.isArray || function( obj ) {\n\t\treturn jQuery.type(obj) === \"array\";\n\t},\n\n\tisWindow: function( obj ) {\n\t\t/* jshint eqeqeq: false */\n\t\treturn obj != null && obj == obj.window;\n\t},\n\n\tisNumeric: function( obj ) {\n\t\t// parseFloat NaNs numeric-cast false positives (null|true|false|\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t// adding 1 corrects loss of precision from parseFloat (#15100)\n\t\treturn !jQuery.isArray( obj ) && (obj - parseFloat( obj ) + 1) >= 0;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\tisPlainObject: function( obj ) {\n\t\tvar key;\n\n\t\t// Must be an Object.\n\t\t// Because of IE, we also have to check the presence of the constructor property.\n\t\t// Make sure that DOM nodes and window objects don't pass through, as well\n\t\tif ( !obj || jQuery.type(obj) !== \"object\" || obj.nodeType || jQuery.isWindow( obj ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\ttry {\n\t\t\t// Not own constructor property must be Object\n\t\t\tif ( obj.constructor &&\n\t\t\t\t!hasOwn.call(obj, \"constructor\") &&\n\t\t\t\t!hasOwn.call(obj.constructor.prototype, \"isPrototypeOf\") ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\t// IE8,9 Will throw exceptions on certain host objects #9897\n\t\t\treturn false;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Handle iteration over inherited properties before own properties.\n\t\tif ( support.ownLast ) {\n\t\t\tfor ( key in obj ) {\n\t\t\t\treturn hasOwn.call( obj, key );\n\t\t\t}\n\t\t}\n\n\t\t// Own properties are enumerated firstly, so to speed up,\n\t\t// if last one is own, then all properties are own.\n\t\tfor ( key in obj ) {}\n\n\t\treturn key === undefined || hasOwn.call( obj, key );\n\t},\n\n\ttype: function( obj ) {\n\t\tif ( obj == null ) {\n\t\t\treturn obj + \"\";\n\t\t}\n\t\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\t\tclass2type[ toString.call(obj) ] || \"object\" :\n\t\t\ttypeof obj;\n\t},\n\n\t// Evaluates a script in a global context\n\t// Workarounds based on findings by Jim Driscoll\n\t// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context\n\tglobalEval: function( data ) {\n\t\tif ( data && jQuery.trim( data ) ) {\n\t\t\t// We use execScript on Internet Explorer\n\t\t\t// We use an anonymous function so that context is window\n\t\t\t// rather than jQuery in Firefox\n\t\t\t( window.execScript || function( data ) {\n\t\t\t\twindow[ \"eval\" ].call( window, data );\n\t\t\t} )( data );\n\t\t}\n\t},\n\n\t// Convert dashed to camelCase; used by the css and data modules\n\t// Microsoft forgot to hump their vendor prefix (#9572)\n\tcamelCase: function( string ) {\n\t\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n\t},\n\n\tnodeName: function( elem, name ) {\n\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\t},\n\n\t// args is for internal usage only\n\teach: function( obj, callback, args ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = obj.length,\n\t\t\tisArray = isArraylike( obj );\n\n\t\tif ( args ) {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// A special, fast, case for the most common use of each\n\t\t} else {\n\t\t\tif ( isArray ) {\n\t\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( i in obj ) {\n\t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\n\t\t\t\t\tif ( value === false ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// Support: Android<4.1, IE<9\n\ttrim: function( text ) {\n\t\treturn text == null ?\n\t\t\t\"\" :\n\t\t\t( text + \"\" ).replace( rtrim, \"\" );\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArraylike( Object(arr) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\tvar len;\n\n\t\tif ( arr ) {\n\t\t\tif ( indexOf ) {\n\t\t\t\treturn indexOf.call( arr, elem, i );\n\t\t\t}\n\n\t\t\tlen = arr.length;\n\t\t\ti = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t// Skip accessing in sparse arrays\n\t\t\t\tif ( i in arr && arr[ i ] === elem ) {\n\t\t\t\t\treturn i;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn -1;\n\t},\n\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\twhile ( j < len ) {\n\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Workaround casting of .length to NaN on otherwise arraylike objects (e.g., NodeLists)\n\t\tif ( len !== len ) {\n\t\t\twhile ( second[j] !== undefined ) {\n\t\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t\t}\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar value,\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tisArray = isArraylike( elems ),\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArray ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn concat.apply( [], ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// Bind a function to a context, optionally partially applying any\n\t// arguments.\n\tproxy: function( fn, context ) {\n\t\tvar args, proxy, tmp;\n\n\t\tif ( typeof context === \"string\" ) {\n\t\t\ttmp = fn[ context ];\n\t\t\tcontext = fn;\n\t\t\tfn = tmp;\n\t\t}\n\n\t\t// Quick check to determine if target is callable, in the spec\n\t\t// this throws a TypeError, but we will just return undefined.\n\t\tif ( !jQuery.isFunction( fn ) ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\t// Simulated bind\n\t\targs = slice.call( arguments, 2 );\n\t\tproxy = function() {\n\t\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t\t};\n\n\t\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\t\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\t\treturn proxy;\n\t},\n\n\tnow: function() {\n\t\treturn +( new Date() );\n\t},\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n});\n\n// Populate the class2type map\njQuery.each(\"Boolean Number String Function Array Date RegExp Object Error\".split(\" \"), function(i, name) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n});\n\nfunction isArraylike( obj ) {\n\n\t// Support: iOS 8.2 (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = \"length\" in obj && obj.length,\n\t\ttype = jQuery.type( obj );\n\n\tif ( type === \"function\" || jQuery.isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\tif ( obj.nodeType === 1 && length ) {\n\t\treturn true;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.2.0-pre\n * http://sizzlejs.com/\n *\n * Copyright 2008, 2014 jQuery Foundation, Inc. and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2014-12-16\n */\n(function( window ) {\n\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// General-purpose constants\n\tMAX_NEGATIVE = 1 << 31,\n\n\t// Instance methods\n\thasOwn = ({}).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpush_native = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\t// Use a stripped-down indexOf as it's faster than native\n\t// http://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[i] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\t// http://www.w3.org/TR/css3-syntax/#characters\n\tcharacterEncoding = \"(?:\\\\\\\\.|[\\\\w-]|[^\\\\x00-\\\\xa0])+\",\n\n\t// Loosely modeled on CSS identifier characters\n\t// An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors\n\t// Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier\n\tidentifier = characterEncoding.replace( \"w\", \"w#\" ),\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + characterEncoding + \")(?:\" + whitespace +\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\t\t// \"Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" + whitespace +\n\t\t\"*\\\\]\",\n\n\tpseudos = \":(\" + characterEncoding + \")(?:\\\\((\" +\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" + whitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace + \"*\" ),\n\n\trattributeQuotes = new RegExp( \"=\" + whitespace + \"*([^\\\\]'\\\"]*?)\" + whitespace + \"*\\\\]\", \"g\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + characterEncoding + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + characterEncoding + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + characterEncoding.replace( \"w\", \"w*\" ) + \")\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" + whitespace +\n\t\t\t\"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" + whitespace +\n\t\t\t\"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace + \"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" +\n\t\t\twhitespace + \"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\trescape = /'|\\\\/g,\n\n\t// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\([\\\\da-f]{1,6}\" + whitespace + \"?|(\" + whitespace + \")|.)\", \"ig\" ),\n\tfunescape = function( _, escaped, escapedWhitespace ) {\n\t\tvar high = \"0x\" + escaped - 0x10000;\n\t\t// NaN means non-codepoint\n\t\t// Support: Firefox<24\n\t\t// Workaround erroneous numeric interpretation of +\"0x\"\n\t\treturn high !== high || escapedWhitespace ?\n\t\t\tescaped :\n\t\t\thigh < 0 ?\n\t\t\t\t// BMP codepoint\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\t// Supplemental Plane codepoint (surrogate pair)\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t};\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t(arr = slice.call( preferredDoc.childNodes )),\n\t\tpreferredDoc.childNodes\n\t);\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpush_native.apply( target, slice.call(els) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( (target[j++] = els[i++]) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar match, elem, m, nodeType,\n\t\t// QSA vars\n\t\ti, groups, old, nid, newContext, newSelector;\n\n\tif ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\n\tcontext = context || document;\n\tresults = results || [];\n\tnodeType = context.nodeType;\n\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\tif ( !seed && documentIsHTML ) {\n\n\t\t// Try to shortcut find operations when possible (e.g., not under DocumentFragment)\n\t\tif ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {\n\t\t\t// Speed-up: Sizzle(\"#ID\")\n\t\t\tif ( (m = match[1]) ) {\n\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\telem = context.getElementById( m );\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document (jQuery #6963)\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE, Opera, and Webkit return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t// Context is not a document\n\t\t\t\t\tif ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&\n\t\t\t\t\t\tcontains( context, elem ) && elem.id === m ) {\n\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Speed-up: Sizzle(\"TAG\")\n\t\t\t} else if ( match[2] ) {\n\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\treturn results;\n\n\t\t\t// Speed-up: Sizzle(\".CLASS\")\n\t\t\t} else if ( (m = match[3]) && support.getElementsByClassName ) {\n\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\treturn results;\n\t\t\t}\n\t\t}\n\n\t\t// QSA path\n\t\tif ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {\n\t\t\tnid = old = expando;\n\t\t\tnewContext = context;\n\t\t\tnewSelector = nodeType !== 1 && selector;\n\n\t\t\t// qSA works strangely on Element-rooted queries\n\t\t\t// We can work around this by specifying an extra ID on the root\n\t\t\t// and working up from there (Thanks to Andrew Dupont for the technique)\n\t\t\t// IE 8 doesn't work on object elements\n\t\t\tif ( nodeType === 1 && context.nodeName.toLowerCase() !== \"object\" ) {\n\t\t\t\tgroups = tokenize( selector );\n\n\t\t\t\tif ( (old = context.getAttribute(\"id\")) ) {\n\t\t\t\t\tnid = old.replace( rescape, \"\\\\$&\" );\n\t\t\t\t} else {\n\t\t\t\t\tcontext.setAttribute( \"id\", nid );\n\t\t\t\t}\n\t\t\t\tnid = \"[id='\" + nid + \"'] \";\n\n\t\t\t\ti = groups.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tgroups[i] = nid + toSelector( groups[i] );\n\t\t\t\t}\n\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) || context;\n\t\t\t\tnewSelector = groups.join(\",\");\n\t\t\t}\n\n\t\t\tif ( newSelector ) {\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch(qsaError) {\n\t\t\t\t} finally {\n\t\t\t\t\tif ( !old ) {\n\t\t\t\t\t\tcontext.removeAttribute(\"id\");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {Function(string, Object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn (cache[ key + \" \" ] = value);\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created div and expects a boolean result\n */\nfunction assert( fn ) {\n\tvar div = document.createElement(\"div\");\n\n\ttry {\n\t\treturn !!fn( div );\n\t} catch (e) {\n\t\treturn false;\n\t} finally {\n\t\t// Remove from its parent by default\n\t\tif ( div.parentNode ) {\n\t\t\tdiv.parentNode.removeChild( div );\n\t\t}\n\t\t// release memory in IE\n\t\tdiv = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split(\"|\"),\n\t\ti = attrs.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[i] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\t( ~b.sourceIndex || MAX_NEGATIVE ) -\n\t\t\t( ~a.sourceIndex || MAX_NEGATIVE );\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( (cur = cur.nextSibling) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn (name === \"input\" || name === \"button\") && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction(function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction(function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ (j = matchIndexes[i]) ] ) {\n\t\t\t\t\tseed[j] = !(matches[j] = seed[j]);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t});\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\t// documentElement is verified for cases where it doesn't yet exist\n\t// (such as loading iframes in IE - #4833)\n\tvar documentElement = elem && (elem.ownerDocument || elem).documentElement;\n\treturn documentElement ? documentElement.nodeName !== \"HTML\" : false;\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, parent,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// If no document and documentElement is available, return\n\tif ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Set our document\n\tdocument = doc;\n\tdocElem = doc.documentElement;\n\tparent = doc.defaultView;\n\n\t// Support: IE>8\n\t// If iframe document is assigned to \"document\" variable and if iframe has been reloaded,\n\t// IE will throw \"permission denied\" error when accessing \"document\" variable, see jQuery #13936\n\t// IE6-8 do not support the defaultView property so parent will be undefined\n\tif ( parent && parent !== parent.top ) {\n\t\t// IE11 does not have attachEvent, so all must suffer\n\t\tif ( parent.addEventListener ) {\n\t\t\tparent.addEventListener( \"unload\", unloadHandler, false );\n\t\t} else if ( parent.attachEvent ) {\n\t\t\tparent.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t/* Support tests\n\t---------------------------------------------------------------------- */\n\tdocumentIsHTML = !isXML( doc );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert(function( div ) {\n\t\tdiv.className = \"i\";\n\t\treturn !div.getAttribute(\"className\");\n\t});\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert(function( div ) {\n\t\tdiv.appendChild( doc.createComment(\"\") );\n\t\treturn !div.getElementsByTagName(\"*\").length;\n\t});\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( doc.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert(function( div ) {\n\t\tdocElem.appendChild( div ).id = expando;\n\t\treturn !doc.getElementsByName || !doc.getElementsByName( expando ).length;\n\t});\n\n\t// ID find and filter\n\tif ( support.getById ) {\n\t\tExpr.find[\"ID\"] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar m = context.getElementById( id );\n\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\treturn m && m.parentNode ? [ m ] : [];\n\t\t\t}\n\t\t};\n\t\tExpr.filter[\"ID\"] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute(\"id\") === attrId;\n\t\t\t};\n\t\t};\n\t} else {\n\t\t// Support: IE6/7\n\t\t// getElementById is not reliable as a find shortcut\n\t\tdelete Expr.find[\"ID\"];\n\n\t\tExpr.filter[\"ID\"] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" && elem.getAttributeNode(\"id\");\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[\"TAG\"] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( (elem = results[i++]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[\"CLASS\"] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See http://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert(function( div ) {\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// http://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( div ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\f]' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( div.querySelectorAll(\"[msallowcapture^='']\").length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !div.querySelectorAll(\"[selected]\").length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.2+, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.7+\n\t\t\tif ( !div.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push(\"~=\");\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":checked\").length ) {\n\t\t\t\trbuggyQSA.push(\":checked\");\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibing-combinator selector` fails\n\t\t\tif ( !div.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push(\".#.+[+~]\");\n\t\t\t}\n\t\t});\n\n\t\tassert(function( div ) {\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = doc.createElement(\"input\");\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tdiv.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( div.querySelectorAll(\"[name=d]\").length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":enabled\").length ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tdiv.querySelectorAll(\"*,:x\");\n\t\t\trbuggyQSA.push(\",.*:\");\n\t\t});\n\t}\n\n\tif ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector) )) ) {\n\n\t\tassert(function( div ) {\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( div, \"div\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( div, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t});\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join(\"|\") );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join(\"|\") );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully does not implement inclusive descendent\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t));\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( (b = b.parentNode) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\tcompare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\tif ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t\tif ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\t\t\treturn a === doc ? -1 :\n\t\t\t\tb === doc ? 1 :\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[i] === bp[i] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[i], bp[i] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\tap[i] === preferredDoc ? -1 :\n\t\t\tbp[i] === preferredDoc ? 1 :\n\t\t\t0;\n\t};\n\n\treturn doc;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\t// Make sure that attribute selectors are quoted\n\texpr = expr.replace( rattributeQuotes, \"='$1']\" );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t// fragment in IE 9\n\t\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch (e) {}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\t// Set document vars if needed\n\tif ( ( context.ownerDocument || context ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t(val = elem.getAttributeNode(name)) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( (elem = results[i++]) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( (node = elem[i++]) ) {\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[1] = match[1].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[3] = ( match[3] || match[4] || match[5] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[2] === \"~=\" ) {\n\t\t\t\tmatch[3] = \" \" + match[3] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[1] = match[1].toLowerCase();\n\n\t\t\tif ( match[1].slice( 0, 3 ) === \"nth\" ) {\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[3] ) {\n\t\t\t\t\tSizzle.error( match[0] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === \"even\" || match[3] === \"odd\" ) );\n\t\t\t\tmatch[5] = +( ( match[7] + match[8] ) || match[3] === \"odd\" );\n\n\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[3] ) {\n\t\t\t\tSizzle.error( match[0] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[6] && match[2];\n\n\t\t\tif ( matchExpr[\"CHILD\"].test( match[0] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[3] ) {\n\t\t\t\tmatch[2] = match[4] || match[5] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t(excess = tokenize( unquoted, true )) &&\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t(excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[0] = match[0].slice( 0, excess );\n\t\t\t\tmatch[2] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() { return true; } :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t(pattern = new RegExp( \"(^|\" + whitespace + \")\" + className + \"(\" + whitespace + \"|$)\" )) &&\n\t\t\t\tclassCache( className, function( elem ) {\n\t\t\t\t\treturn pattern.test( typeof elem.className === \"string\" && elem.className || typeof elem.getAttribute !== \"undefined\" && elem.getAttribute(\"class\") || \"\" );\n\t\t\t\t});\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tvar cache, outerCache, node, diff, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( (node = node[ dir ]) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\t\t\t\t\t\t\touterCache = parent[ expando ] || (parent[ expando ] = {});\n\t\t\t\t\t\t\tcache = outerCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[0] === dirruns && cache[1];\n\t\t\t\t\t\t\tdiff = cache[0] === dirruns && cache[2];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\touterCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t} else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {\n\t\t\t\t\t\t\tdiff = cache[1];\n\n\t\t\t\t\t\t// xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\tif ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {\n\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t(node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction(function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[i] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[i] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction(function( selector ) {\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction(function( seed, matches, context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = unmatched[i]) ) {\n\t\t\t\t\t\t\tseed[i] = !(matches[i] = elem);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}) :\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tinput[0] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[0] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t}),\n\n\t\t\"has\": markFunction(function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t}),\n\n\t\t\"contains\": markFunction(function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t}),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test(lang || \"\") ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( (elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute(\"xml:lang\") || elem.getAttribute(\"lang\")) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( (elem = elem.parentNode) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t}),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": function( elem ) {\n\t\t\treturn elem.disabled === false;\n\t\t},\n\n\t\t\"disabled\": function( elem ) {\n\t\t\treturn elem.disabled === true;\n\t\t},\n\n\t\t\"checked\": function( elem ) {\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn (nodeName === \"input\" && !!elem.checked) || (nodeName === \"option\" && !!elem.selected);\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[\"empty\"]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( (attr = elem.getAttribute(\"type\")) == null || attr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo(function() {\n\t\t\treturn [ 0 ];\n\t\t}),\n\n\t\t\"last\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t}),\n\n\t\t\"eq\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t}),\n\n\t\t\"even\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"odd\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"lt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"gt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t})\n\t}\n};\n\nExpr.pseudos[\"nth\"] = Expr.pseudos[\"eq\"];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || (match = rcomma.exec( soFar )) ) {\n\t\t\tif ( match ) {\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[0].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( (tokens = []) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( (match = rcombinators.exec( soFar )) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push({\n\t\t\t\tvalue: matched,\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[0].replace( rtrim, \" \" )\n\t\t\t});\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||\n\t\t\t\t(match = preFilters[ type ]( match ))) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push({\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t});\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[i].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tcheckNonElements = base && dir === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from dir caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || (elem[ expando ] = {});\n\t\t\t\t\t\tif ( (oldCache = outerCache[ dir ]) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn (newCache[ 2 ] = oldCache[ 2 ]);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\touterCache[ dir ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[i]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[0];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[i], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (elem = unmatched[i]) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction(function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts( selector || \"*\", context.nodeType ? [ context ] : context, [] ),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( (elem = temp[i]) ) {\n\t\t\t\t\tmatcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = matcherOut[i]) ) {\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( (matcherIn[i] = elem) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, (matcherOut = []), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( (elem = matcherOut[i]) &&\n\t\t\t\t\t\t(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {\n\n\t\t\t\t\t\tseed[temp] = !(results[temp] = elem);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t});\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[0].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[\" \"],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t(checkContext = context).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (matcher = Expr.relative[ tokens[i].type ]) ) {\n\t\t\tmatchers = [ addCombinator(elementMatcher( matchers ), matcher) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[j].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\t\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\t\ttokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" })\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( (tokens = tokens.slice( j )) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[\"TAG\"]( \"*\", outermost ),\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\t\t\t\toutermostContext = context !== document && context;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Keep `i` a string if there are no elements so `matchedCount` will be \"00\" below\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && (elem = elems[i]) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (matcher = elementMatchers[j++]) ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( (elem = !matcher && elem) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\tmatchedCount += i;\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (matcher = setMatchers[j++]) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !(unmatched[i] || setMatched[i]) ) {\n\t\t\t\t\t\t\t\tsetMatched[i] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[i] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( (selector = compiled.selector || selector) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is no seed and only one group\n\tif ( match.length === 1 ) {\n\n\t\t// Take a shortcut and set the context if the root selector is an ID\n\t\ttokens = match[0] = match[0].slice( 0 );\n\t\tif ( tokens.length > 2 && (token = tokens[0]).type === \"ID\" &&\n\t\t\t\tsupport.getById && context.nodeType === 9 && documentIsHTML &&\n\t\t\t\tExpr.relative[ tokens[1].type ] ) {\n\n\t\t\tcontext = ( Expr.find[\"ID\"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[\"needsContext\"].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[i];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ (type = token.type) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( (find = Expr.find[ type ]) ) {\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( (seed = find(\n\t\t\t\t\ttoken.matches[0].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context\n\t\t\t\t)) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\trsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split(\"\").sort( sortOrder ).join(\"\") === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert(function( div1 ) {\n\t// Should return 1, but returns 4 (following)\n\treturn div1.compareDocumentPosition( document.createElement(\"div\") ) & 1;\n});\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert(function( div ) {\n\tdiv.innerHTML = \"<a href='#'></a>\";\n\treturn div.firstChild.getAttribute(\"href\") === \"#\" ;\n}) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert(function( div ) {\n\tdiv.innerHTML = \"<input/>\";\n\tdiv.firstChild.setAttribute( \"value\", \"\" );\n\treturn div.firstChild.getAttribute( \"value\" ) === \"\";\n}) ) {\n\taddHandle( \"value\", function( elem, name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert(function( div ) {\n\treturn div.getAttribute(\"disabled\") == null;\n}) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t\t(val = elem.getAttributeNode( name )) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\tnull;\n\t\t}\n\t});\n}\n\nreturn Sizzle;\n\n})( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\njQuery.expr[\":\"] = jQuery.expr.pseudos;\njQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\n\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\nvar rsingleTag = (/^<(\\w+)\\s*\\/?>(?:<\\/\\1>|)$/);\n\n\n\nvar risSimple = /^.[^:#\\[\\.,]*$/;\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( jQuery.isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\t/* jshint -W018 */\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t});\n\n\t}\n\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t});\n\n\t}\n\n\tif ( typeof qualifier === \"string\" ) {\n\t\tif ( risSimple.test( qualifier ) ) {\n\t\t\treturn jQuery.filter( qualifier, elements, not );\n\t\t}\n\n\t\tqualifier = jQuery.filter( qualifier, elements );\n\t}\n\n\treturn jQuery.grep( elements, function( elem ) {\n\t\treturn ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not;\n\t});\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\treturn elems.length === 1 && elem.nodeType === 1 ?\n\t\tjQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :\n\t\tjQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\t\treturn elem.nodeType === 1;\n\t\t}));\n};\n\njQuery.fn.extend({\n\tfind: function( selector ) {\n\t\tvar i,\n\t\t\tret = [],\n\t\t\tself = this,\n\t\t\tlen = self.length;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter(function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}) );\n\t\t}\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\t// Needed because $( selector, context ) becomes $( context ).find( selector )\n\t\tret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );\n\t\tret.selector = this.selector ? this.selector + \" \" + selector : selector;\n\t\treturn ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], false) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow(this, selector || [], true) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n});\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// Use the correct document accordingly with window argument (sandbox)\n\tdocument = window.document,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]*))$/,\n\n\tinit = jQuery.fn.init = function( selector, context ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector.charAt(0) === \"<\" && selector.charAt( selector.length - 1 ) === \">\" && selector.length >= 3 ) {\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && (match[1] || !context) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[1] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[0] : context;\n\n\t\t\t\t\t// scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[1],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( jQuery.isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[2] );\n\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\t\t\t\t\t\t// Handle the case where IE and Opera return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id !== match[2] ) {\n\t\t\t\t\t\t\treturn rootjQuery.find( selector );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Otherwise, we inject the element directly into the jQuery object\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t\tthis[0] = elem;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.context = document;\n\t\t\t\t\tthis.selector = selector;\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || rootjQuery ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis.context = this[0] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( jQuery.isFunction( selector ) ) {\n\t\t\treturn typeof rootjQuery.ready !== \"undefined\" ?\n\t\t\t\trootjQuery.ready( selector ) :\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\tif ( selector.selector !== undefined ) {\n\t\t\tthis.selector = selector.selector;\n\t\t\tthis.context = selector.context;\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\t// methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.extend({\n\tdir: function( elem, dir, until ) {\n\t\tvar matched = [],\n\t\t\tcur = elem[ dir ];\n\n\t\twhile ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {\n\t\t\tif ( cur.nodeType === 1 ) {\n\t\t\t\tmatched.push( cur );\n\t\t\t}\n\t\t\tcur = cur[dir];\n\t\t}\n\t\treturn matched;\n\t},\n\n\tsibling: function( n, elem ) {\n\t\tvar r = [];\n\n\t\tfor ( ; n; n = n.nextSibling ) {\n\t\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\t\tr.push( n );\n\t\t\t}\n\t\t}\n\n\t\treturn r;\n\t}\n});\n\njQuery.fn.extend({\n\thas: function( target ) {\n\t\tvar i,\n\t\t\ttargets = jQuery( target, this ),\n\t\t\tlen = targets.length;\n\n\t\treturn this.filter(function() {\n\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[i] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\tpos = rneedsContext.test( selectors ) || typeof selectors !== \"string\" ?\n\t\t\t\tjQuery( selectors, context || this.context ) :\n\t\t\t\t0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tfor ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) {\n\t\t\t\t// Always skip document fragments\n\t\t\t\tif ( cur.nodeType < 11 && (pos ?\n\t\t\t\t\tpos.index(cur) > -1 :\n\n\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\tjQuery.find.matchesSelector(cur, selectors)) ) {\n\n\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within\n\t// the matched set of elements\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn jQuery.inArray( this[0], jQuery( elem ) );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn jQuery.inArray(\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[0] : elem, this );\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.unique(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter(selector)\n\t\t);\n\t}\n});\n\nfunction sibling( cur, dir ) {\n\tdo {\n\t\tcur = cur[ dir ];\n\t} while ( cur && cur.nodeType !== 1 );\n\n\treturn cur;\n}\n\njQuery.each({\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn jQuery.dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, i, until ) {\n\t\treturn jQuery.dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn jQuery.sibling( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\treturn jQuery.nodeName( elem, \"iframe\" ) ?\n\t\t\telem.contentDocument || elem.contentWindow.document :\n\t\t\tjQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar ret = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tret = jQuery.filter( selector, ret );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tret = jQuery.unique( ret );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tret = ret.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\nvar rnotwhite = (/\\S+/g);\n\n\n\n// String to Object options format cache\nvar optionsCache = {};\n\n// Convert String-formatted options into Object-formatted ones and store in cache\nfunction createOptions( options ) {\n\tvar object = optionsCache[ options ] = {};\n\tjQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t});\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\t( optionsCache[ options ] || createOptions( options ) ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\t\t// Last fire value (for non-forgettable lists)\n\t\tmemory,\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\t\t// End of the loop when firing\n\t\tfiringLength,\n\t\t// Index of currently firing callback (modified by remove if needed)\n\t\tfiringIndex,\n\t\t// First callback to fire (used internally by add and fireWith)\n\t\tfiringStart,\n\t\t// Actual callback list\n\t\tlist = [],\n\t\t// Stack of fire calls for repeatable lists\n\t\tstack = !options.once && [],\n\t\t// Fire callbacks\n\t\tfire = function( data ) {\n\t\t\tmemory = options.memory && data;\n\t\t\tfired = true;\n\t\t\tfiringIndex = firingStart || 0;\n\t\t\tfiringStart = 0;\n\t\t\tfiringLength = list.length;\n\t\t\tfiring = true;\n\t\t\tfor ( ; list && firingIndex < firingLength; firingIndex++ ) {\n\t\t\t\tif ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {\n\t\t\t\t\tmemory = false; // To prevent further calls using add\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tfiring = false;\n\t\t\tif ( list ) {\n\t\t\t\tif ( stack ) {\n\t\t\t\t\tif ( stack.length ) {\n\t\t\t\t\t\tfire( stack.shift() );\n\t\t\t\t\t}\n\t\t\t\t} else if ( memory ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t} else {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t// Actual Callbacks object\n\t\tself = {\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\t// First, we save the current length\n\t\t\t\t\tvar start = list.length;\n\t\t\t\t\t(function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tvar type = jQuery.type( arg );\n\t\t\t\t\t\t\tif ( type === \"function\" ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && type !== \"string\" ) {\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t})( arguments );\n\t\t\t\t\t// Do we need to add the callbacks to the\n\t\t\t\t\t// current firing batch?\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tfiringLength = list.length;\n\t\t\t\t\t// With memory, if we're not firing then\n\t\t\t\t\t// we should call right away\n\t\t\t\t\t} else if ( memory ) {\n\t\t\t\t\t\tfiringStart = start;\n\t\t\t\t\t\tfire( memory );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\t\tvar index;\n\t\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\t\tlist.splice( index, 1 );\n\t\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\t\t\tif ( index <= firingLength ) {\n\t\t\t\t\t\t\t\t\tfiringLength--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );\n\t\t\t},\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tlist = [];\n\t\t\t\tfiringLength = 0;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Have the list do nothing anymore\n\t\t\tdisable: function() {\n\t\t\t\tlist = stack = memory = undefined;\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it disabled?\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\t\t\t// Lock the list in its current state\n\t\t\tlock: function() {\n\t\t\t\tstack = undefined;\n\t\t\t\tif ( !memory ) {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Is it locked?\n\t\t\tlocked: function() {\n\t\t\t\treturn !stack;\n\t\t\t},\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( list && ( !fired || stack ) ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tif ( firing ) {\n\t\t\t\t\t\tstack.push( args );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tfire( args );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\njQuery.extend({\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\t\t\t\t// action, add listener, listener list, final state\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks(\"once memory\"), \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks(\"once memory\"), \"rejected\" ],\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks(\"memory\") ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\tthen: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\t\t\t\t\treturn jQuery.Deferred(function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\t\t\t\t\tvar fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];\n\t\t\t\t\t\t\t// deferred[ done | fail | progress ] for forwarding actions to newDefer\n\t\t\t\t\t\t\tdeferred[ tuple[1] ](function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && jQuery.isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject )\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t});\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t}).promise();\n\t\t\t\t},\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Keep pipe for back-compat\n\t\tpromise.pipe = promise.then;\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 3 ];\n\n\t\t\t// promise[ done | fail | progress ] = list.add\n\t\t\tpromise[ tuple[1] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(function() {\n\t\t\t\t\t// state = [ resolved | rejected ]\n\t\t\t\t\tstate = stateString;\n\n\t\t\t\t// [ reject_list | resolve_list ].disable; progress_list.lock\n\t\t\t\t}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );\n\t\t\t}\n\n\t\t\t// deferred[ resolve | reject | notify ]\n\t\t\tdeferred[ tuple[0] ] = function() {\n\t\t\t\tdeferred[ tuple[0] + \"With\" ]( this === deferred ? promise : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\t\t\tdeferred[ tuple[0] + \"With\" ] = list.fireWith;\n\t\t});\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( subordinate /* , ..., subordinateN */ ) {\n\t\tvar i = 0,\n\t\t\tresolveValues = slice.call( arguments ),\n\t\t\tlength = resolveValues.length,\n\n\t\t\t// the count of uncompleted subordinates\n\t\t\tremaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,\n\n\t\t\t// the master Deferred. If resolveValues consist of only a single Deferred, just use that.\n\t\t\tdeferred = remaining === 1 ? subordinate : jQuery.Deferred(),\n\n\t\t\t// Update function for both resolve and progress values\n\t\t\tupdateFunc = function( i, contexts, values ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tcontexts[ i ] = this;\n\t\t\t\t\tvalues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( values === progressValues ) {\n\t\t\t\t\t\tdeferred.notifyWith( contexts, values );\n\n\t\t\t\t\t} else if ( !(--remaining) ) {\n\t\t\t\t\t\tdeferred.resolveWith( contexts, values );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t},\n\n\t\t\tprogressValues, progressContexts, resolveContexts;\n\n\t\t// add listeners to Deferred subordinates; treat others as resolved\n\t\tif ( length > 1 ) {\n\t\t\tprogressValues = new Array( length );\n\t\t\tprogressContexts = new Array( length );\n\t\t\tresolveContexts = new Array( length );\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {\n\t\t\t\t\tresolveValues[ i ].promise()\n\t\t\t\t\t\t.done( updateFunc( i, resolveContexts, resolveValues ) )\n\t\t\t\t\t\t.fail( deferred.reject )\n\t\t\t\t\t\t.progress( updateFunc( i, progressContexts, progressValues ) );\n\t\t\t\t} else {\n\t\t\t\t\t--remaining;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// if we're not waiting on anything, resolve the master\n\t\tif ( !remaining ) {\n\t\t\tdeferred.resolveWith( resolveContexts, resolveValues );\n\t\t}\n\n\t\treturn deferred.promise();\n\t}\n});\n\n\n// The deferred used on DOM ready\nvar readyList;\n\njQuery.fn.ready = function( fn ) {\n\t// Add the callback\n\tjQuery.ready.promise().done( fn );\n\n\treturn this;\n};\n\njQuery.extend({\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Hold (or release) the ready event\n\tholdReady: function( hold ) {\n\t\tif ( hold ) {\n\t\t\tjQuery.readyWait++;\n\t\t} else {\n\t\t\tjQuery.ready( true );\n\t\t}\n\t},\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).\n\t\tif ( !document.body ) {\n\t\t\treturn setTimeout( jQuery.ready );\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\n\t\t// Trigger any bound ready events\n\t\tif ( jQuery.fn.triggerHandler ) {\n\t\t\tjQuery( document ).triggerHandler( \"ready\" );\n\t\t\tjQuery( document ).off( \"ready\" );\n\t\t}\n\t}\n});\n\n/**\n * Clean-up method for dom ready events\n */\nfunction detach() {\n\tif ( document.addEventListener ) {\n\t\tdocument.removeEventListener( \"DOMContentLoaded\", completed, false );\n\t\twindow.removeEventListener( \"load\", completed, false );\n\n\t} else {\n\t\tdocument.detachEvent( \"onreadystatechange\", completed );\n\t\twindow.detachEvent( \"onload\", completed );\n\t}\n}\n\n/**\n * The ready event handler and self cleanup method\n */\nfunction completed() {\n\t// readyState === \"complete\" is good enough for us to call the dom ready in oldIE\n\tif ( document.addEventListener || event.type === \"load\" || document.readyState === \"complete\" ) {\n\t\tdetach();\n\t\tjQuery.ready();\n\t}\n}\n\njQuery.ready.promise = function( obj ) {\n\tif ( !readyList ) {\n\n\t\treadyList = jQuery.Deferred();\n\n\t\t// Catch cases where $(document).ready() is called after the browser event has already occurred.\n\t\t// we once tried to use readyState \"interactive\" here, but it caused issues like the one\n\t\t// discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15\n\t\tif ( document.readyState === \"complete\" ) {\n\t\t\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\t\t\tsetTimeout( jQuery.ready );\n\n\t\t// Standards-based browsers support DOMContentLoaded\n\t\t} else if ( document.addEventListener ) {\n\t\t\t// Use the handy event callback\n\t\t\tdocument.addEventListener( \"DOMContentLoaded\", completed, false );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.addEventListener( \"load\", completed, false );\n\n\t\t// If IE event model is used\n\t\t} else {\n\t\t\t// Ensure firing before onload, maybe late but safe also for iframes\n\t\t\tdocument.attachEvent( \"onreadystatechange\", completed );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.attachEvent( \"onload\", completed );\n\n\t\t\t// If IE and not a frame\n\t\t\t// continually check to see if the document is ready\n\t\t\tvar top = false;\n\n\t\t\ttry {\n\t\t\t\ttop = window.frameElement == null && document.documentElement;\n\t\t\t} catch(e) {}\n\n\t\t\tif ( top && top.doScroll ) {\n\t\t\t\t(function doScrollCheck() {\n\t\t\t\t\tif ( !jQuery.isReady ) {\n\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t// Use the trick by Diego Perini\n\t\t\t\t\t\t\t// http://javascript.nwbox.com/IEContentLoaded/\n\t\t\t\t\t\t\ttop.doScroll(\"left\");\n\t\t\t\t\t\t} catch(e) {\n\t\t\t\t\t\t\treturn setTimeout( doScrollCheck, 50 );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// detach all dom ready events\n\t\t\t\t\t\tdetach();\n\n\t\t\t\t\t\t// and execute any waiting functions\n\t\t\t\t\t\tjQuery.ready();\n\t\t\t\t\t}\n\t\t\t\t})();\n\t\t\t}\n\t\t}\n\t}\n\treturn readyList.promise( obj );\n};\n\n\nvar strundefined = typeof undefined;\n\n\n\n// Support: IE<9\n// Iteration over object's inherited properties before its own\nvar i;\nfor ( i in jQuery( support ) ) {\n\tbreak;\n}\nsupport.ownLast = i !== \"0\";\n\n// Note: most support tests are defined in their respective modules.\n// false until the test is run\nsupport.inlineBlockNeedsLayout = false;\n\n// Execute ASAP in case we need to set body.style.zoom\njQuery(function() {\n\t// Minified: var a,b,c,d\n\tvar val, div, body, container;\n\n\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\tif ( !body || !body.style ) {\n\t\t// Return for frameset docs that don't have a body\n\t\treturn;\n\t}\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tcontainer = document.createElement( \"div\" );\n\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\tbody.appendChild( container ).appendChild( div );\n\n\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t// Support: IE<8\n\t\t// Check if natively block-level elements act like inline-block\n\t\t// elements when setting their display to 'inline' and giving\n\t\t// them layout\n\t\tdiv.style.cssText = \"display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1\";\n\n\t\tsupport.inlineBlockNeedsLayout = val = div.offsetWidth === 3;\n\t\tif ( val ) {\n\t\t\t// Prevent IE 6 from affecting layout for positioned elements #11048\n\t\t\t// Prevent IE from shrinking the body in IE 7 mode #12869\n\t\t\t// Support: IE<8\n\t\t\tbody.style.zoom = 1;\n\t\t}\n\t}\n\n\tbody.removeChild( container );\n});\n\n\n\n\n(function() {\n\tvar div = document.createElement( \"div\" );\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\n/**\n * Determines whether an object can have data\n */\njQuery.acceptData = function( elem ) {\n\tvar noData = jQuery.noData[ (elem.nodeName + \" \").toLowerCase() ],\n\t\tnodeType = +elem.nodeType || 1;\n\n\t// Do not set data on non-element DOM nodes because it will not be cleared (#8335).\n\treturn nodeType !== 1 && nodeType !== 9 ?\n\t\tfalse :\n\n\t\t// Nodes accept data unless otherwise specified; rejection can be conditional\n\t\t!noData || noData !== true && elem.getAttribute(\"classid\") === noData;\n};\n\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /([A-Z])/g;\n\nfunction dataAttr( elem, key, data ) {\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\n\t\tvar name = \"data-\" + key.replace( rmultiDash, \"-$1\" ).toLowerCase();\n\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = data === \"true\" ? true :\n\t\t\t\t\tdata === \"false\" ? false :\n\t\t\t\t\tdata === \"null\" ? null :\n\t\t\t\t\t// Only convert to a number if it doesn't change the string\n\t\t\t\t\t+data + \"\" === data ? +data :\n\t\t\t\t\trbrace.test( data ) ? jQuery.parseJSON( data ) :\n\t\t\t\t\tdata;\n\t\t\t} catch( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tjQuery.data( elem, key, data );\n\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\n\treturn data;\n}\n\n// checks a cache object for emptiness\nfunction isEmptyDataObject( obj ) {\n\tvar name;\n\tfor ( name in obj ) {\n\n\t\t// if the public data object is empty, the private is still empty\n\t\tif ( name === \"data\" && jQuery.isEmptyObject( obj[name] ) ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( name !== \"toJSON\" ) {\n\t\t\treturn false;\n\t\t}\n\t}\n\n\treturn true;\n}\n\nfunction internalData( elem, name, data, pvt /* Internal Use Only */ ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar ret, thisCache,\n\t\tinternalKey = jQuery.expando,\n\n\t\t// We have to handle DOM nodes and JS objects differently because IE6-7\n\t\t// can't GC object references properly across the DOM-JS boundary\n\t\tisNode = elem.nodeType,\n\n\t\t// Only DOM nodes need the global jQuery cache; JS object data is\n\t\t// attached directly to the object so GC can occur automatically\n\t\tcache = isNode ? jQuery.cache : elem,\n\n\t\t// Only defining an ID for JS objects if its cache already exists allows\n\t\t// the code to shortcut on the same path as a DOM node with no cache\n\t\tid = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;\n\n\t// Avoid doing any more work than we need to when trying to get data on an\n\t// object that has no data at all\n\tif ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === \"string\" ) {\n\t\treturn;\n\t}\n\n\tif ( !id ) {\n\t\t// Only DOM nodes need a new unique ID for each element since their data\n\t\t// ends up in the global cache\n\t\tif ( isNode ) {\n\t\t\tid = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++;\n\t\t} else {\n\t\t\tid = internalKey;\n\t\t}\n\t}\n\n\tif ( !cache[ id ] ) {\n\t\t// Avoid exposing jQuery metadata on plain JS objects when the object\n\t\t// is serialized using JSON.stringify\n\t\tcache[ id ] = isNode ? {} : { toJSON: jQuery.noop };\n\t}\n\n\t// An object can be passed to jQuery.data instead of a key/value pair; this gets\n\t// shallow copied over onto the existing cache\n\tif ( typeof name === \"object\" || typeof name === \"function\" ) {\n\t\tif ( pvt ) {\n\t\t\tcache[ id ] = jQuery.extend( cache[ id ], name );\n\t\t} else {\n\t\t\tcache[ id ].data = jQuery.extend( cache[ id ].data, name );\n\t\t}\n\t}\n\n\tthisCache = cache[ id ];\n\n\t// jQuery data() is stored in a separate object inside the object's internal data\n\t// cache in order to avoid key collisions between internal data and user-defined\n\t// data.\n\tif ( !pvt ) {\n\t\tif ( !thisCache.data ) {\n\t\t\tthisCache.data = {};\n\t\t}\n\n\t\tthisCache = thisCache.data;\n\t}\n\n\tif ( data !== undefined ) {\n\t\tthisCache[ jQuery.camelCase( name ) ] = data;\n\t}\n\n\t// Check for both converted-to-camel and non-converted data property names\n\t// If a data property was specified\n\tif ( typeof name === \"string\" ) {\n\n\t\t// First Try to find as-is property data\n\t\tret = thisCache[ name ];\n\n\t\t// Test for null|undefined property data\n\t\tif ( ret == null ) {\n\n\t\t\t// Try to find the camelCased property\n\t\t\tret = thisCache[ jQuery.camelCase( name ) ];\n\t\t}\n\t} else {\n\t\tret = thisCache;\n\t}\n\n\treturn ret;\n}\n\nfunction internalRemoveData( elem, name, pvt ) {\n\tif ( !jQuery.acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar thisCache, i,\n\t\tisNode = elem.nodeType,\n\n\t\t// See jQuery.data for more information\n\t\tcache = isNode ? jQuery.cache : elem,\n\t\tid = isNode ? elem[ jQuery.expando ] : jQuery.expando;\n\n\t// If there is already no cache entry for this object, there is no\n\t// purpose in continuing\n\tif ( !cache[ id ] ) {\n\t\treturn;\n\t}\n\n\tif ( name ) {\n\n\t\tthisCache = pvt ? cache[ id ] : cache[ id ].data;\n\n\t\tif ( thisCache ) {\n\n\t\t\t// Support array or space separated string names for data keys\n\t\t\tif ( !jQuery.isArray( name ) ) {\n\n\t\t\t\t// try the string as a key before any manipulation\n\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\tname = [ name ];\n\t\t\t\t} else {\n\n\t\t\t\t\t// split the camel cased version by spaces unless a key with the spaces exists\n\t\t\t\t\tname = jQuery.camelCase( name );\n\t\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\t\tname = [ name ];\n\t\t\t\t\t} else {\n\t\t\t\t\t\tname = name.split(\" \");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// If \"name\" is an array of keys...\n\t\t\t\t// When data is initially created, via (\"key\", \"val\") signature,\n\t\t\t\t// keys will be converted to camelCase.\n\t\t\t\t// Since there is no way to tell _how_ a key was added, remove\n\t\t\t\t// both plain key and camelCase key. #12786\n\t\t\t\t// This will only penalize the array argument path.\n\t\t\t\tname = name.concat( jQuery.map( name, jQuery.camelCase ) );\n\t\t\t}\n\n\t\t\ti = name.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete thisCache[ name[i] ];\n\t\t\t}\n\n\t\t\t// If there is no data left in the cache, we want to continue\n\t\t\t// and let the cache object itself get destroyed\n\t\t\tif ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t}\n\n\t// See jQuery.data for more information\n\tif ( !pvt ) {\n\t\tdelete cache[ id ].data;\n\n\t\t// Don't destroy the parent cache unless the internal data object\n\t\t// had been the only thing left in it\n\t\tif ( !isEmptyDataObject( cache[ id ] ) ) {\n\t\t\treturn;\n\t\t}\n\t}\n\n\t// Destroy the cache\n\tif ( isNode ) {\n\t\tjQuery.cleanData( [ elem ], true );\n\n\t// Use delete when supported for expandos or `cache` is not a window per isWindow (#10080)\n\t/* jshint eqeqeq: false */\n\t} else if ( support.deleteExpando || cache != cache.window ) {\n\t\t/* jshint eqeqeq: true */\n\t\tdelete cache[ id ];\n\n\t// When all else fails, null\n\t} else {\n\t\tcache[ id ] = null;\n\t}\n}\n\njQuery.extend({\n\tcache: {},\n\n\t// The following elements (space-suffixed to avoid Object.prototype collisions)\n\t// throw uncatchable exceptions if you attempt to set expando properties\n\tnoData: {\n\t\t\"applet \": true,\n\t\t\"embed \": true,\n\t\t// ...but Flash objects (which have this classid) *can* handle expandos\n\t\t\"object \": \"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"\n\t},\n\n\thasData: function( elem ) {\n\t\telem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];\n\t\treturn !!elem && !isEmptyDataObject( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name );\n\t},\n\n\t// For internal use only.\n\t_data: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data, true );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name, true );\n\t}\n});\n\njQuery.fn.extend({\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[0],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Special expections of .data basically thwart jQuery.access,\n\t\t// so implement the relevant behavior ourselves\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = jQuery.data( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !jQuery._data( elem, \"parsedAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE11+\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = jQuery.camelCase( name.slice(5) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tjQuery._data( elem, \"parsedAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each(function() {\n\t\t\t\tjQuery.data( this, key );\n\t\t\t});\n\t\t}\n\n\t\treturn arguments.length > 1 ?\n\n\t\t\t// Sets one value\n\t\t\tthis.each(function() {\n\t\t\t\tjQuery.data( this, key, value );\n\t\t\t}) :\n\n\t\t\t// Gets one value\n\t\t\t// Try to fetch any internally stored data first\n\t\t\telem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined;\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeData( this, key );\n\t\t});\n\t}\n});\n\n\njQuery.extend({\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = jQuery._data( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || jQuery.isArray(data) ) {\n\t\t\t\t\tqueue = jQuery._data( elem, type, jQuery.makeArray(data) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// not intended for public consumption - generates a queueHooks object, or returns the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn jQuery._data( elem, key ) || jQuery._data( elem, key, {\n\t\t\tempty: jQuery.Callbacks(\"once memory\").add(function() {\n\t\t\t\tjQuery._removeData( elem, type + \"queue\" );\n\t\t\t\tjQuery._removeData( elem, key );\n\t\t\t})\n\t\t});\n\t}\n});\n\njQuery.fn.extend({\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[0], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each(function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[0] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t});\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t});\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = jQuery._data( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n});\nvar pnum = (/[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/).source;\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar isHidden = function( elem, el ) {\n\t\t// isHidden might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\t\treturn jQuery.css( elem, \"display\" ) === \"none\" || !jQuery.contains( elem.ownerDocument, elem );\n\t};\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlength = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( jQuery.type( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\tjQuery.access( elems, fn, i, key[i], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !jQuery.isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tfn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn chainable ?\n\t\telems :\n\n\t\t// Gets\n\t\tbulk ?\n\t\t\tfn.call( elems ) :\n\t\t\tlength ? fn( elems[0], key ) : emptyGet;\n};\nvar rcheckableType = (/^(?:checkbox|radio)$/i);\n\n\n\n(function() {\n\t// Minified: var a,b,c\n\tvar input = document.createElement( \"input\" ),\n\t\tdiv = document.createElement( \"div\" ),\n\t\tfragment = document.createDocumentFragment();\n\n\t// Setup\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\n\t// IE strips leading whitespace when .innerHTML is used\n\tsupport.leadingWhitespace = div.firstChild.nodeType === 3;\n\n\t// Make sure that tbody elements aren't automatically inserted\n\t// IE will insert them into empty tables\n\tsupport.tbody = !div.getElementsByTagName( \"tbody\" ).length;\n\n\t// Make sure that link elements get serialized correctly by innerHTML\n\t// This requires a wrapper element in IE\n\tsupport.htmlSerialize = !!div.getElementsByTagName( \"link\" ).length;\n\n\t// Makes sure cloning an html5 element does not cause problems\n\t// Where outerHTML is undefined, this still works\n\tsupport.html5Clone =\n\t\tdocument.createElement( \"nav\" ).cloneNode( true ).outerHTML !== \"<:nav></:nav>\";\n\n\t// Check if a disconnected checkbox will retain its checked\n\t// value of true after appended to the DOM (IE6/7)\n\tinput.type = \"checkbox\";\n\tinput.checked = true;\n\tfragment.appendChild( input );\n\tsupport.appendChecked = input.checked;\n\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\t// Support: IE6-IE11+\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// #11217 - WebKit loses check when the name is after the checked attribute\n\tfragment.appendChild( div );\n\tdiv.innerHTML = \"<input type='radio' checked='checked' name='t'/>\";\n\n\t// Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3\n\t// old WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE<9\n\t// Opera does not clone events (and typeof div.attachEvent === undefined).\n\t// IE9-10 clones events bound via attachEvent, but they don't trigger with .click()\n\tsupport.noCloneEvent = true;\n\tif ( div.attachEvent ) {\n\t\tdiv.attachEvent( \"onclick\", function() {\n\t\t\tsupport.noCloneEvent = false;\n\t\t});\n\n\t\tdiv.cloneNode( true ).click();\n\t}\n\n\t// Execute the test only if not already executed in another module.\n\tif (support.deleteExpando == null) {\n\t\t// Support: IE<9\n\t\tsupport.deleteExpando = true;\n\t\ttry {\n\t\t\tdelete div.test;\n\t\t} catch( e ) {\n\t\t\tsupport.deleteExpando = false;\n\t\t}\n\t}\n})();\n\n\n(function() {\n\tvar i, eventName,\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Support: IE<9 (lack submit/change bubble), Firefox 23+ (lack focusin event)\n\tfor ( i in { submit: true, change: true, focusin: true }) {\n\t\teventName = \"on\" + i;\n\n\t\tif ( !(support[ i + \"Bubbles\" ] = eventName in window) ) {\n\t\t\t// Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP)\n\t\t\tdiv.setAttribute( eventName, \"t\" );\n\t\t\tsupport[ i + \"Bubbles\" ] = div.attributes[ eventName ].expando === false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n})();\n\n\nvar rformElems = /^(?:input|select|textarea)$/i,\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu)|click/,\n\trfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)$/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\t\tvar tmp, events, t, handleObjIn,\n\t\t\tspecial, eventHandle, handleObj,\n\t\t\thandlers, type, namespaces, origType,\n\t\t\telemData = jQuery._data( elem );\n\n\t\t// Don't attach events to noData or text/comment nodes (but allow plain objects)\n\t\tif ( !elemData ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !(events = elemData.events) ) {\n\t\t\tevents = elemData.events = {};\n\t\t}\n\t\tif ( !(eventHandle = elemData.handle) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== strundefined && (!e || jQuery.event.triggered !== e.type) ?\n\t\t\t\t\tjQuery.event.dispatch.apply( eventHandle.elem, arguments ) :\n\t\t\t\t\tundefined;\n\t\t\t};\n\t\t\t// Add elem as a property of the handle fn to prevent a memory leak with IE non-native events\n\t\t\teventHandle.elem = elem;\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend({\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join(\".\")\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !(handlers = events[ type ]) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener/attachEvent if the special events handler returns false\n\t\t\t\tif ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\t\t\t\t\t// Bind the global event handler to the element\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle, false );\n\n\t\t\t\t\t} else if ( elem.attachEvent ) {\n\t\t\t\t\t\telem.attachEvent( \"on\" + type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t\t// Nullify elem to prevent memory leaks in IE\n\t\telem = null;\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\t\tvar j, handleObj, tmp,\n\t\t\torigCount, t, events,\n\t\t\tspecial, handlers, type,\n\t\t\tnamespaces, origType,\n\t\t\telemData = jQuery.hasData( elem ) && jQuery._data( elem );\n\n\t\tif ( !elemData || !(events = elemData.events) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\t\t\ttype = origType = tmp[1];\n\t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[2] && new RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector || selector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdelete elemData.handle;\n\n\t\t\t// removeData also checks for emptiness and clears the expando if empty\n\t\t\t// so use it instead of delete\n\t\t\tjQuery._removeData( elem, \"events\" );\n\t\t}\n\t},\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\t\tvar handle, ontype, cur,\n\t\t\tbubbleType, special, tmp, i,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split(\".\") : [];\n\n\t\tcur = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf(\".\") >= 0 ) {\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split(\".\");\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf(\":\") < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join(\".\");\n\t\tevent.namespace_re = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === (elem.ownerDocument || document) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {\n\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = ( jQuery._data( cur, \"events\" ) || {} )[ event.type ] && jQuery._data( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && jQuery.acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) &&\n\t\t\t\tjQuery.acceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name name as the event.\n\t\t\t\t// Can't use an .isFunction() check here because IE6/7 fails that test.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\t\t\t\t\ttry {\n\t\t\t\t\t\telem[ type ]();\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// IE<9 dies on focus/blur to hidden element (#1486,#12518)\n\t\t\t\t\t\t// only reproducible on winXP IE8 native, not IE9 in IE8 mode\n\t\t\t\t\t}\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\tdispatch: function( event ) {\n\n\t\t// Make a writable jQuery.Event from the native event object\n\t\tevent = jQuery.event.fix( event );\n\n\t\tvar i, ret, handleObj, matched, j,\n\t\t\thandlerQueue = [],\n\t\t\targs = slice.call( arguments ),\n\t\t\thandlers = ( jQuery._data( this, \"events\" ) || {} )[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[0] = event;\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// Triggered event must either 1) have no namespace, or\n\t\t\t\t// 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).\n\t\t\t\tif ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )\n\t\t\t\t\t\t\t.apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( (event.result = ret) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar sel, handleObj, matches, i,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\t// Black-hole SVG <use> instance trees (#13180)\n\t\t// Avoid non-left-click bubbling in Firefox (#3861)\n\t\tif ( delegateCount && cur.nodeType && (!event.button || event.type !== \"click\") ) {\n\n\t\t\t/* jshint eqeqeq: false */\n\t\t\tfor ( ; cur != this; cur = cur.parentNode || this ) {\n\t\t\t\t/* jshint eqeqeq: true */\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== \"click\") ) {\n\t\t\t\t\tmatches = [];\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matches[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatches[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) >= 0 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matches[ sel ] ) {\n\t\t\t\t\t\t\tmatches.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matches.length ) {\n\t\t\t\t\t\thandlerQueue.push({ elem: cur, handlers: matches });\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\tfix: function( event ) {\n\t\tif ( event[ jQuery.expando ] ) {\n\t\t\treturn event;\n\t\t}\n\n\t\t// Create a writable copy of the event object and normalize some properties\n\t\tvar i, prop, copy,\n\t\t\ttype = event.type,\n\t\t\toriginalEvent = event,\n\t\t\tfixHook = this.fixHooks[ type ];\n\n\t\tif ( !fixHook ) {\n\t\t\tthis.fixHooks[ type ] = fixHook =\n\t\t\t\trmouseEvent.test( type ) ? this.mouseHooks :\n\t\t\t\trkeyEvent.test( type ) ? this.keyHooks :\n\t\t\t\t{};\n\t\t}\n\t\tcopy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;\n\n\t\tevent = new jQuery.Event( originalEvent );\n\n\t\ti = copy.length;\n\t\twhile ( i-- ) {\n\t\t\tprop = copy[ i ];\n\t\t\tevent[ prop ] = originalEvent[ prop ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Fix target property (#1925)\n\t\tif ( !event.target ) {\n\t\t\tevent.target = originalEvent.srcElement || document;\n\t\t}\n\n\t\t// Support: Chrome 23+, Safari?\n\t\t// Target should not be a text node (#504, #13143)\n\t\tif ( event.target.nodeType === 3 ) {\n\t\t\tevent.target = event.target.parentNode;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// For mouse/key events, metaKey==false if it's undefined (#3368, #11328)\n\t\tevent.metaKey = !!event.metaKey;\n\n\t\treturn fixHook.filter ? fixHook.filter( event, originalEvent ) : event;\n\t},\n\n\t// Includes some event props shared by KeyEvent and MouseEvent\n\tprops: \"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which\".split(\" \"),\n\n\tfixHooks: {},\n\n\tkeyHooks: {\n\t\tprops: \"char charCode key keyCode\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\n\t\t\t// Add which for key events\n\t\t\tif ( event.which == null ) {\n\t\t\t\tevent.which = original.charCode != null ? original.charCode : original.keyCode;\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tmouseHooks: {\n\t\tprops: \"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement\".split(\" \"),\n\t\tfilter: function( event, original ) {\n\t\t\tvar body, eventDoc, doc,\n\t\t\t\tbutton = original.button,\n\t\t\t\tfromElement = original.fromElement;\n\n\t\t\t// Calculate pageX/Y if missing and clientX/Y available\n\t\t\tif ( event.pageX == null && original.clientX != null ) {\n\t\t\t\teventDoc = event.target.ownerDocument || document;\n\t\t\t\tdoc = eventDoc.documentElement;\n\t\t\t\tbody = eventDoc.body;\n\n\t\t\t\tevent.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );\n\t\t\t\tevent.pageY = original.clientY + ( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) - ( doc && doc.clientTop  || body && body.clientTop  || 0 );\n\t\t\t}\n\n\t\t\t// Add relatedTarget, if necessary\n\t\t\tif ( !event.relatedTarget && fromElement ) {\n\t\t\t\tevent.relatedTarget = fromElement === event.target ? original.toElement : fromElement;\n\t\t\t}\n\n\t\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\t\t// Note: button is not normalized, so don't use it\n\t\t\tif ( !event.which && button !== undefined ) {\n\t\t\t\tevent.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tspecial: {\n\t\tload: {\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tfocus: {\n\t\t\t// Fire native event if possible so blur/focus sequence is correct\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this !== safeActiveElement() && this.focus ) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tthis.focus();\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// If we error on focus to hidden element (#1486, #12518),\n\t\t\t\t\t\t// let .trigger() run the handlers\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusin\"\n\t\t},\n\t\tblur: {\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this === safeActiveElement() && this.blur ) {\n\t\t\t\t\tthis.blur();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusout\"\n\t\t},\n\t\tclick: {\n\t\t\t// For checkbox, fire native event so checked state will be right\n\t\t\ttrigger: function() {\n\t\t\t\tif ( jQuery.nodeName( this, \"input\" ) && this.type === \"checkbox\" && this.click ) {\n\t\t\t\t\tthis.click();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, don't fire native .click() on links\n\t\t\t_default: function( event ) {\n\t\t\t\treturn jQuery.nodeName( event.target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tsimulate: function( type, elem, event, bubble ) {\n\t\t// Piggyback on a donor event to simulate a different one.\n\t\t// Fake originalEvent to avoid donor's stopPropagation, but if the\n\t\t// simulated event prevents default then we do the same on the donor.\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true,\n\t\t\t\toriginalEvent: {}\n\t\t\t}\n\t\t);\n\t\tif ( bubble ) {\n\t\t\tjQuery.event.trigger( e, null, elem );\n\t\t} else {\n\t\t\tjQuery.event.dispatch.call( elem, e );\n\t\t}\n\t\tif ( e.isDefaultPrevented() ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\t}\n};\n\njQuery.removeEvent = document.removeEventListener ?\n\tfunction( elem, type, handle ) {\n\t\tif ( elem.removeEventListener ) {\n\t\t\telem.removeEventListener( type, handle, false );\n\t\t}\n\t} :\n\tfunction( elem, type, handle ) {\n\t\tvar name = \"on\" + type;\n\n\t\tif ( elem.detachEvent ) {\n\n\t\t\t// #8545, #7054, preventing memory leaks for custom events in IE6-8\n\t\t\t// detachEvent needed property on element, by name of that event, to properly expose it to GC\n\t\t\tif ( typeof elem[ name ] === strundefined ) {\n\t\t\t\telem[ name ] = null;\n\t\t\t}\n\n\t\t\telem.detachEvent( name, handle );\n\t\t}\n\t};\n\njQuery.Event = function( src, props ) {\n\t// Allow instantiation without the 'new' keyword\n\tif ( !(this instanceof jQuery.Event) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\t\t\t\t// Support: IE < 9, Android < 4.0\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || jQuery.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If preventDefault exists, run it on the original event\n\t\tif ( e.preventDefault ) {\n\t\t\te.preventDefault();\n\n\t\t// Support: IE\n\t\t// Otherwise set the returnValue property of the original event to false\n\t\t} else {\n\t\t\te.returnValue = false;\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\t\t// If stopPropagation exists, run it on the original event\n\t\tif ( e.stopPropagation ) {\n\t\t\te.stopPropagation();\n\t\t}\n\n\t\t// Support: IE\n\t\t// Set the cancelBubble property of the original event to true\n\t\te.cancelBubble = true;\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && e.stopImmediatePropagation ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\njQuery.each({\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mousenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || (related !== target && !jQuery.contains( target, related )) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n});\n\n// IE submit delegation\nif ( !support.submitBubbles ) {\n\n\tjQuery.event.special.submit = {\n\t\tsetup: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Lazy-add a submit handler when a descendant form may potentially be submitted\n\t\t\tjQuery.event.add( this, \"click._submit keypress._submit\", function( e ) {\n\t\t\t\t// Node name check avoids a VML-related crash in IE (#9807)\n\t\t\t\tvar elem = e.target,\n\t\t\t\t\tform = jQuery.nodeName( elem, \"input\" ) || jQuery.nodeName( elem, \"button\" ) ? elem.form : undefined;\n\t\t\t\tif ( form && !jQuery._data( form, \"submitBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( form, \"submit._submit\", function( event ) {\n\t\t\t\t\t\tevent._submit_bubble = true;\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( form, \"submitBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t\t// return undefined since we don't need an event listener\n\t\t},\n\n\t\tpostDispatch: function( event ) {\n\t\t\t// If form was submitted by the user, bubble the event up the tree\n\t\t\tif ( event._submit_bubble ) {\n\t\t\t\tdelete event._submit_bubble;\n\t\t\t\tif ( this.parentNode && !event.isTrigger ) {\n\t\t\t\t\tjQuery.event.simulate( \"submit\", this.parentNode, event, true );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Remove delegated handlers; cleanData eventually reaps submit handlers attached above\n\t\t\tjQuery.event.remove( this, \"._submit\" );\n\t\t}\n\t};\n}\n\n// IE change delegation and checkbox/radio fix\nif ( !support.changeBubbles ) {\n\n\tjQuery.event.special.change = {\n\n\t\tsetup: function() {\n\n\t\t\tif ( rformElems.test( this.nodeName ) ) {\n\t\t\t\t// IE doesn't fire change on a check/radio until blur; trigger it on click\n\t\t\t\t// after a propertychange. Eat the blur-change in special.change.handle.\n\t\t\t\t// This still fires onchange a second time for check/radio after blur.\n\t\t\t\tif ( this.type === \"checkbox\" || this.type === \"radio\" ) {\n\t\t\t\t\tjQuery.event.add( this, \"propertychange._change\", function( event ) {\n\t\t\t\t\t\tif ( event.originalEvent.propertyName === \"checked\" ) {\n\t\t\t\t\t\t\tthis._just_changed = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery.event.add( this, \"click._change\", function( event ) {\n\t\t\t\t\t\tif ( this._just_changed && !event.isTrigger ) {\n\t\t\t\t\t\t\tthis._just_changed = false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// Allow triggered, simulated change events (#11500)\n\t\t\t\t\t\tjQuery.event.simulate( \"change\", this, event, true );\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t// Delegated event; lazy-add a change handler on descendant inputs\n\t\t\tjQuery.event.add( this, \"beforeactivate._change\", function( e ) {\n\t\t\t\tvar elem = e.target;\n\n\t\t\t\tif ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, \"changeBubbles\" ) ) {\n\t\t\t\t\tjQuery.event.add( elem, \"change._change\", function( event ) {\n\t\t\t\t\t\tif ( this.parentNode && !event.isSimulated && !event.isTrigger ) {\n\t\t\t\t\t\t\tjQuery.event.simulate( \"change\", this.parentNode, event, true );\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tjQuery._data( elem, \"changeBubbles\", true );\n\t\t\t\t}\n\t\t\t});\n\t\t},\n\n\t\thandle: function( event ) {\n\t\t\tvar elem = event.target;\n\n\t\t\t// Swallow native change events from checkbox/radio, we already triggered them above\n\t\t\tif ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== \"radio\" && elem.type !== \"checkbox\") ) {\n\t\t\t\treturn event.handleObj.handler.apply( this, arguments );\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\tjQuery.event.remove( this, \"._change\" );\n\n\t\t\treturn !rformElems.test( this.nodeName );\n\t\t}\n\t};\n}\n\n// Create \"bubbling\" focus and blur events\nif ( !support.focusinBubbles ) {\n\tjQuery.each({ focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );\n\t\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tjQuery._data( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tjQuery._removeData( doc, fix );\n\t\t\t\t} else {\n\t\t\t\t\tjQuery._data( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\njQuery.fn.extend({\n\n\ton: function( types, selector, data, fn, /*INTERNAL*/ one ) {\n\t\tvar type, origFn;\n\n\t\t// Types can be a map of types/handlers\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-Object, selector, data )\n\t\t\tif ( typeof selector !== \"string\" ) {\n\t\t\t\t// ( types-Object, data )\n\t\t\t\tdata = data || selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.on( type, selector, data, types[ type ], one );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( data == null && fn == null ) {\n\t\t\t// ( types, fn )\n\t\t\tfn = selector;\n\t\t\tdata = selector = undefined;\n\t\t} else if ( fn == null ) {\n\t\t\tif ( typeof selector === \"string\" ) {\n\t\t\t\t// ( types, selector, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = undefined;\n\t\t\t} else {\n\t\t\t\t// ( types, data, fn )\n\t\t\t\tfn = data;\n\t\t\t\tdata = selector;\n\t\t\t\tselector = undefined;\n\t\t\t}\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t} else if ( !fn ) {\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( one === 1 ) {\n\t\t\torigFn = fn;\n\t\t\tfn = function( event ) {\n\t\t\t\t// Can use an empty set, since event contains the info\n\t\t\t\tjQuery().off( event );\n\t\t\t\treturn origFn.apply( this, arguments );\n\t\t\t};\n\t\t\t// Use same guid so caller can remove using origFn\n\t\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.add( this, types, fn, data, selector );\n\t\t});\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn this.on( types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ? handleObj.origType + \".\" + handleObj.namespace : handleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t});\n\t},\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t});\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[0];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n});\n\n\nfunction createSafeFragment( document ) {\n\tvar list = nodeNames.split( \"|\" ),\n\t\tsafeFrag = document.createDocumentFragment();\n\n\tif ( safeFrag.createElement ) {\n\t\twhile ( list.length ) {\n\t\t\tsafeFrag.createElement(\n\t\t\t\tlist.pop()\n\t\t\t);\n\t\t}\n\t}\n\treturn safeFrag;\n}\n\nvar nodeNames = \"abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|\" +\n\t\t\"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video\",\n\trinlinejQuery = / jQuery\\d+=\"(?:null|\\d+)\"/g,\n\trnoshimcache = new RegExp(\"<(?:\" + nodeNames + \")[\\\\s/>]\", \"i\"),\n\trleadingWhitespace = /^\\s+/,\n\trxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>]*)\\/>/gi,\n\trtagName = /<([\\w:]+)/,\n\trtbody = /<tbody/i,\n\trhtml = /<|&#?\\w+;/,\n\trnoInnerhtml = /<(?:script|style|link)/i,\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trscriptType = /^$|\\/(?:java|ecma)script/i,\n\trscriptTypeMasked = /^true\\/(.*)/,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g,\n\n\t// We have to close these tags to support XHTML (#13200)\n\twrapMap = {\n\t\toption: [ 1, \"<select multiple='multiple'>\", \"</select>\" ],\n\t\tlegend: [ 1, \"<fieldset>\", \"</fieldset>\" ],\n\t\tarea: [ 1, \"<map>\", \"</map>\" ],\n\t\tparam: [ 1, \"<object>\", \"</object>\" ],\n\t\tthead: [ 1, \"<table>\", \"</table>\" ],\n\t\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\t\tcol: [ 2, \"<table><tbody></tbody><colgroup>\", \"</colgroup></table>\" ],\n\t\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t\t// IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags,\n\t\t// unless wrapped in a div with non-breaking characters in front of it.\n\t\t_default: support.htmlSerialize ? [ 0, \"\", \"\" ] : [ 1, \"X<div>\", \"</div>\"  ]\n\t},\n\tsafeFragment = createSafeFragment( document ),\n\tfragmentDiv = safeFragment.appendChild( document.createElement(\"div\") );\n\nwrapMap.optgroup = wrapMap.option;\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\nfunction getAll( context, tag ) {\n\tvar elems, elem,\n\t\ti = 0,\n\t\tfound = typeof context.getElementsByTagName !== strundefined ? context.getElementsByTagName( tag || \"*\" ) :\n\t\t\ttypeof context.querySelectorAll !== strundefined ? context.querySelectorAll( tag || \"*\" ) :\n\t\t\tundefined;\n\n\tif ( !found ) {\n\t\tfor ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( !tag || jQuery.nodeName( elem, tag ) ) {\n\t\t\t\tfound.push( elem );\n\t\t\t} else {\n\t\t\t\tjQuery.merge( found, getAll( elem, tag ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn tag === undefined || tag && jQuery.nodeName( context, tag ) ?\n\t\tjQuery.merge( [ context ], found ) :\n\t\tfound;\n}\n\n// Used in buildFragment, fixes the defaultChecked property\nfunction fixDefaultChecked( elem ) {\n\tif ( rcheckableType.test( elem.type ) ) {\n\t\telem.defaultChecked = elem.checked;\n\t}\n}\n\n// Support: IE<8\n// Manipulating tables requires a tbody\nfunction manipulationTarget( elem, content ) {\n\treturn jQuery.nodeName( elem, \"table\" ) &&\n\t\tjQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ?\n\n\t\telem.getElementsByTagName(\"tbody\")[0] ||\n\t\t\telem.appendChild( elem.ownerDocument.createElement(\"tbody\") ) :\n\t\telem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = (jQuery.find.attr( elem, \"type\" ) !== null) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tvar match = rscriptTypeMasked.exec( elem.type );\n\tif ( match ) {\n\t\telem.type = match[1];\n\t} else {\n\t\telem.removeAttribute(\"type\");\n\t}\n\treturn elem;\n}\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar elem,\n\t\ti = 0;\n\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\tjQuery._data( elem, \"globalEval\", !refElements || jQuery._data( refElements[i], \"globalEval\" ) );\n\t}\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\n\tif ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {\n\t\treturn;\n\t}\n\n\tvar type, i, l,\n\t\toldData = jQuery._data( src ),\n\t\tcurData = jQuery._data( dest, oldData ),\n\t\tevents = oldData.events;\n\n\tif ( events ) {\n\t\tdelete curData.handle;\n\t\tcurData.events = {};\n\n\t\tfor ( type in events ) {\n\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t}\n\t\t}\n\t}\n\n\t// make the cloned public data object a copy from the original\n\tif ( curData.data ) {\n\t\tcurData.data = jQuery.extend( {}, curData.data );\n\t}\n}\n\nfunction fixCloneNodeIssues( src, dest ) {\n\tvar nodeName, e, data;\n\n\t// We do not need to do anything for non-Elements\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\tnodeName = dest.nodeName.toLowerCase();\n\n\t// IE6-8 copies events bound via attachEvent when using cloneNode.\n\tif ( !support.noCloneEvent && dest[ jQuery.expando ] ) {\n\t\tdata = jQuery._data( dest );\n\n\t\tfor ( e in data.events ) {\n\t\t\tjQuery.removeEvent( dest, e, data.handle );\n\t\t}\n\n\t\t// Event data gets referenced instead of copied if the expando gets copied too\n\t\tdest.removeAttribute( jQuery.expando );\n\t}\n\n\t// IE blanks contents when cloning scripts, and tries to evaluate newly-set text\n\tif ( nodeName === \"script\" && dest.text !== src.text ) {\n\t\tdisableScript( dest ).text = src.text;\n\t\trestoreScript( dest );\n\n\t// IE6-10 improperly clones children of object elements using classid.\n\t// IE10 throws NoModificationAllowedError if parent is null, #12132.\n\t} else if ( nodeName === \"object\" ) {\n\t\tif ( dest.parentNode ) {\n\t\t\tdest.outerHTML = src.outerHTML;\n\t\t}\n\n\t\t// This path appears unavoidable for IE9. When cloning an object\n\t\t// element in IE9, the outerHTML strategy above is not sufficient.\n\t\t// If the src has innerHTML and the destination does not,\n\t\t// copy the src.innerHTML into the dest.innerHTML. #10324\n\t\tif ( support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) {\n\t\t\tdest.innerHTML = src.innerHTML;\n\t\t}\n\n\t} else if ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\t// IE6-8 fails to persist the checked state of a cloned checkbox\n\t\t// or radio button. Worse, IE6-7 fail to give the cloned element\n\t\t// a checked appearance if the defaultChecked value isn't also set\n\n\t\tdest.defaultChecked = dest.checked = src.checked;\n\n\t\t// IE6-7 get confused and end up setting the value of a cloned\n\t\t// checkbox/radio button to an empty string instead of \"on\"\n\t\tif ( dest.value !== src.value ) {\n\t\t\tdest.value = src.value;\n\t\t}\n\n\t// IE6-8 fails to return the selected option to the default selected\n\t// state when cloning options\n\t} else if ( nodeName === \"option\" ) {\n\t\tdest.defaultSelected = dest.selected = src.defaultSelected;\n\n\t// IE6-8 fails to set the defaultValue to the correct value when\n\t// cloning other types of input fields\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\njQuery.extend({\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar destElements, node, clone, i, srcElements,\n\t\t\tinPage = jQuery.contains( elem.ownerDocument, elem );\n\n\t\tif ( support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( \"<\" + elem.nodeName + \">\" ) ) {\n\t\t\tclone = elem.cloneNode( true );\n\n\t\t// IE<=8 does not properly clone detached, unknown element nodes\n\t\t} else {\n\t\t\tfragmentDiv.innerHTML = elem.outerHTML;\n\t\t\tfragmentDiv.removeChild( clone = fragmentDiv.firstChild );\n\t\t}\n\n\t\tif ( (!support.noCloneEvent || !support.noCloneChecked) &&\n\t\t\t\t(elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\t// Fix all IE cloning issues\n\t\t\tfor ( i = 0; (node = srcElements[i]) != null; ++i ) {\n\t\t\t\t// Ensure that the destination node is not null; Fixes #9587\n\t\t\t\tif ( destElements[i] ) {\n\t\t\t\t\tfixCloneNodeIssues( node, destElements[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0; (node = srcElements[i]) != null; i++ ) {\n\t\t\t\t\tcloneCopyEvent( node, destElements[i] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\tdestElements = srcElements = node = null;\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tbuildFragment: function( elems, context, scripts, selection ) {\n\t\tvar j, elem, contains,\n\t\t\ttmp, tag, tbody, wrap,\n\t\t\tl = elems.length,\n\n\t\t\t// Ensure a safe fragment\n\t\t\tsafe = createSafeFragment( context ),\n\n\t\t\tnodes = [],\n\t\t\ti = 0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\telem = elems[ i ];\n\n\t\t\tif ( elem || elem === 0 ) {\n\n\t\t\t\t// Add nodes directly\n\t\t\t\tif ( jQuery.type( elem ) === \"object\" ) {\n\t\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t\t// Convert non-html into a text node\n\t\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t\t// Convert html into DOM nodes\n\t\t\t\t} else {\n\t\t\t\t\ttmp = tmp || safe.appendChild( context.createElement(\"div\") );\n\n\t\t\t\t\t// Deserialize a standard representation\n\t\t\t\t\ttag = (rtagName.exec( elem ) || [ \"\", \"\" ])[ 1 ].toLowerCase();\n\t\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\n\t\t\t\t\ttmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, \"<$1></$2>\" ) + wrap[2];\n\n\t\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\t\tj = wrap[0];\n\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Manually add leading whitespace removed by IE\n\t\t\t\t\tif ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {\n\t\t\t\t\t\tnodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove IE's autoinserted <tbody> from table fragments\n\t\t\t\t\tif ( !support.tbody ) {\n\n\t\t\t\t\t\t// String was a <table>, *may* have spurious <tbody>\n\t\t\t\t\t\telem = tag === \"table\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\ttmp.firstChild :\n\n\t\t\t\t\t\t\t// String was a bare <thead> or <tfoot>\n\t\t\t\t\t\t\twrap[1] === \"<table>\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\t\ttmp :\n\t\t\t\t\t\t\t\t0;\n\n\t\t\t\t\t\tj = elem && elem.childNodes.length;\n\t\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\t\tif ( jQuery.nodeName( (tbody = elem.childNodes[j]), \"tbody\" ) && !tbody.childNodes.length ) {\n\t\t\t\t\t\t\t\telem.removeChild( tbody );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t\t// Fix #12392 for WebKit and IE > 9\n\t\t\t\t\ttmp.textContent = \"\";\n\n\t\t\t\t\t// Fix #12392 for oldIE\n\t\t\t\t\twhile ( tmp.firstChild ) {\n\t\t\t\t\t\ttmp.removeChild( tmp.firstChild );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remember the top-level container for proper cleanup\n\t\t\t\t\ttmp = safe.lastChild;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Fix #11356: Clear elements from fragment\n\t\tif ( tmp ) {\n\t\t\tsafe.removeChild( tmp );\n\t\t}\n\n\t\t// Reset defaultChecked for any radios and checkboxes\n\t\t// about to be appended to the DOM in IE 6/7 (#8060)\n\t\tif ( !support.appendChecked ) {\n\t\t\tjQuery.grep( getAll( nodes, \"input\" ), fixDefaultChecked );\n\t\t}\n\n\t\ti = 0;\n\t\twhile ( (elem = nodes[ i++ ]) ) {\n\n\t\t\t// #4087 - If origin and destination elements are the same, and this is\n\t\t\t// that element, do not do anything\n\t\t\tif ( selection && jQuery.inArray( elem, selection ) !== -1 ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tcontains = jQuery.contains( elem.ownerDocument, elem );\n\n\t\t\t// Append to fragment\n\t\t\ttmp = getAll( safe.appendChild( elem ), \"script\" );\n\n\t\t\t// Preserve script evaluation history\n\t\t\tif ( contains ) {\n\t\t\t\tsetGlobalEval( tmp );\n\t\t\t}\n\n\t\t\t// Capture executables\n\t\t\tif ( scripts ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (elem = tmp[ j++ ]) ) {\n\t\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\t\tscripts.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\ttmp = null;\n\n\t\treturn safe;\n\t},\n\n\tcleanData: function( elems, /* internal */ acceptData ) {\n\t\tvar elem, type, id, data,\n\t\t\ti = 0,\n\t\t\tinternalKey = jQuery.expando,\n\t\t\tcache = jQuery.cache,\n\t\t\tdeleteExpando = support.deleteExpando,\n\t\t\tspecial = jQuery.event.special;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\t\t\tif ( acceptData || jQuery.acceptData( elem ) ) {\n\n\t\t\t\tid = elem[ internalKey ];\n\t\t\t\tdata = id && cache[ id ];\n\n\t\t\t\tif ( data ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove cache only if it was not already removed by jQuery.event.remove\n\t\t\t\t\tif ( cache[ id ] ) {\n\n\t\t\t\t\t\tdelete cache[ id ];\n\n\t\t\t\t\t\t// IE does not allow us to delete expando properties from nodes,\n\t\t\t\t\t\t// nor does it have a removeAttribute function on Document nodes;\n\t\t\t\t\t\t// we must handle all of these cases\n\t\t\t\t\t\tif ( deleteExpando ) {\n\t\t\t\t\t\t\tdelete elem[ internalKey ];\n\n\t\t\t\t\t\t} else if ( typeof elem.removeAttribute !== strundefined ) {\n\t\t\t\t\t\t\telem.removeAttribute( internalKey );\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\telem[ internalKey ] = null;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tdeletedIds.push( id );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\njQuery.fn.extend({\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t});\n\t},\n\n\tprepend: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t});\n\t},\n\n\tbefore: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t});\n\t},\n\n\tafter: function() {\n\t\treturn this.domManip( arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t});\n\t},\n\n\tremove: function( selector, keepData /* Internal Use Only */ ) {\n\t\tvar elem,\n\t\t\telems = selector ? jQuery.filter( selector, this ) : this,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\n\t\t\tif ( !keepData && elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem ) );\n\t\t\t}\n\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\tif ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\t\tsetGlobalEval( getAll( elem, \"script\" ) );\n\t\t\t\t}\n\t\t\t\telem.parentNode.removeChild( elem );\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; (elem = this[i]) != null; i++ ) {\n\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t}\n\n\t\t\t// Remove any remaining nodes\n\t\t\twhile ( elem.firstChild ) {\n\t\t\t\telem.removeChild( elem.firstChild );\n\t\t\t}\n\n\t\t\t// If this is a select, ensure that it displays empty (#12336)\n\t\t\t// Support: IE<9\n\t\t\tif ( elem.options && jQuery.nodeName( elem, \"select\" ) ) {\n\t\t\t\telem.options.length = 0;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map(function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t});\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined ) {\n\t\t\t\treturn elem.nodeType === 1 ?\n\t\t\t\t\telem.innerHTML.replace( rinlinejQuery, \"\" ) :\n\t\t\t\t\tundefined;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t( support.htmlSerialize || !rnoshimcache.test( value )  ) &&\n\t\t\t\t( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&\n\t\t\t\t!wrapMap[ (rtagName.exec( value ) || [ \"\", \"\" ])[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = value.replace( rxhtmlTag, \"<$1></$2>\" );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor (; i < l; i++ ) {\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\telem = this[i] || {};\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar arg = arguments[ 0 ];\n\n\t\t// Make the changes, replacing each context element with the new content\n\t\tthis.domManip( arguments, function( elem ) {\n\t\t\targ = this.parentNode;\n\n\t\t\tjQuery.cleanData( getAll( this ) );\n\n\t\t\tif ( arg ) {\n\t\t\t\targ.replaceChild( elem, this );\n\t\t\t}\n\t\t});\n\n\t\t// Force removal if there was no new content (e.g., from empty arguments)\n\t\treturn arg && (arg.length || arg.nodeType) ? this : this.remove();\n\t},\n\n\tdetach: function( selector ) {\n\t\treturn this.remove( selector, true );\n\t},\n\n\tdomManip: function( args, callback ) {\n\n\t\t// Flatten any nested arrays\n\t\targs = concat.apply( [], args );\n\n\t\tvar first, node, hasScripts,\n\t\t\tscripts, doc, fragment,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tset = this,\n\t\t\tiNoClone = l - 1,\n\t\t\tvalue = args[0],\n\t\t\tisFunction = jQuery.isFunction( value );\n\n\t\t// We can't cloneNode fragments that contain checked, in WebKit\n\t\tif ( isFunction ||\n\t\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\t\treturn this.each(function( index ) {\n\t\t\t\tvar self = set.eq( index );\n\t\t\t\tif ( isFunction ) {\n\t\t\t\t\targs[0] = value.call( this, index, self.html() );\n\t\t\t\t}\n\t\t\t\tself.domManip( args, callback );\n\t\t\t});\n\t\t}\n\n\t\tif ( l ) {\n\t\t\tfragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );\n\t\t\tfirst = fragment.firstChild;\n\n\t\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\t\tfragment = first;\n\t\t\t}\n\n\t\t\tif ( first ) {\n\t\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\t\thasScripts = scripts.length;\n\n\t\t\t\t// Use the original fragment for the last item instead of the first because it can end up\n\t\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\tnode = fragment;\n\n\t\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tcallback.call( this[i], node, i );\n\t\t\t\t}\n\n\t\t\t\tif ( hasScripts ) {\n\t\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t\t// Reenable scripts\n\t\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t\t!jQuery._data( node, \"globalEval\" ) && jQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\t\tif ( node.src ) {\n\t\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\t\tif ( jQuery._evalUrl ) {\n\t\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.globalEval( ( node.text || node.textContent || node.innerHTML || \"\" ).replace( rcleanScript, \"\" ) );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Fix #11809: Avoid leaking memory\n\t\t\t\tfragment = first = null;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t}\n});\n\njQuery.each({\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\ti = 0,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone(true);\n\t\t\tjQuery( insert[i] )[ original ]( elems );\n\n\t\t\t// Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get()\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n});\n\n\nvar iframe,\n\telemdisplay = {};\n\n/**\n * Retrieve the actual display of a element\n * @param {String} name nodeName of the element\n * @param {Object} doc Document object\n */\n// Called only from within defaultDisplay\nfunction actualDisplay( name, doc ) {\n\tvar style,\n\t\telem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),\n\n\t\t// getDefaultComputedStyle might be reliably used only on attached element\n\t\tdisplay = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ?\n\n\t\t\t// Use of this method is a temporary fix (more like optmization) until something better comes along,\n\t\t\t// since it was removed from specification and supported only in FF\n\t\t\tstyle.display : jQuery.css( elem[ 0 ], \"display\" );\n\n\t// We don't have any data stored on the element,\n\t// so use \"detach\" method as fast way to get rid of the element\n\telem.detach();\n\n\treturn display;\n}\n\n/**\n * Try to determine the default display value of an element\n * @param {String} nodeName\n */\nfunction defaultDisplay( nodeName ) {\n\tvar doc = document,\n\t\tdisplay = elemdisplay[ nodeName ];\n\n\tif ( !display ) {\n\t\tdisplay = actualDisplay( nodeName, doc );\n\n\t\t// If the simple way fails, read from inside an iframe\n\t\tif ( display === \"none\" || !display ) {\n\n\t\t\t// Use the already-created iframe if possible\n\t\t\tiframe = (iframe || jQuery( \"<iframe frameborder='0' width='0' height='0'/>\" )).appendTo( doc.documentElement );\n\n\t\t\t// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse\n\t\t\tdoc = ( iframe[ 0 ].contentWindow || iframe[ 0 ].contentDocument ).document;\n\n\t\t\t// Support: IE\n\t\t\tdoc.write();\n\t\t\tdoc.close();\n\n\t\t\tdisplay = actualDisplay( nodeName, doc );\n\t\t\tiframe.detach();\n\t\t}\n\n\t\t// Store the correct default display\n\t\telemdisplay[ nodeName ] = display;\n\t}\n\n\treturn display;\n}\n\n\n(function() {\n\tvar shrinkWrapBlocksVal;\n\n\tsupport.shrinkWrapBlocks = function() {\n\t\tif ( shrinkWrapBlocksVal != null ) {\n\t\t\treturn shrinkWrapBlocksVal;\n\t\t}\n\n\t\t// Will be changed later if needed.\n\t\tshrinkWrapBlocksVal = false;\n\n\t\t// Minified: var b,c,d\n\t\tvar div, body, container;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\t// Support: IE6\n\t\t// Check if elements with layout shrink-wrap their children\n\t\tif ( typeof div.style.zoom !== strundefined ) {\n\t\t\t// Reset CSS: box-sizing; display; margin; border\n\t\t\tdiv.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;\" +\n\t\t\t\t\"padding:1px;width:1px;zoom:1\";\n\t\t\tdiv.appendChild( document.createElement( \"div\" ) ).style.width = \"5px\";\n\t\t\tshrinkWrapBlocksVal = div.offsetWidth !== 3;\n\t\t}\n\n\t\tbody.removeChild( container );\n\n\t\treturn shrinkWrapBlocksVal;\n\t};\n\n})();\nvar rmargin = (/^margin/);\n\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\n\n\nvar getStyles, curCSS,\n\trposition = /^(top|right|bottom|left)$/;\n\nif ( window.getComputedStyle ) {\n\tgetStyles = function( elem ) {\n\t\t// Support: IE<=11+, Firefox<=30+ (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tif ( elem.ownerDocument.defaultView.opener ) {\n\t\t\treturn elem.ownerDocument.defaultView.getComputedStyle( elem, null );\n\t\t}\n\n\t\treturn window.getComputedStyle( elem, null );\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar width, minWidth, maxWidth, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\n\t\t// getPropertyValue is only needed for .css('filter') in IE9, see #12537\n\t\tret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;\n\n\t\tif ( computed ) {\n\n\t\t\tif ( ret === \"\" && !jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\t\tret = jQuery.style( elem, name );\n\t\t\t}\n\n\t\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t\t// Chrome < 17 and Safari 5.0 uses \"computed value\" instead of \"used value\" for margin-right\n\t\t\t// Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels\n\t\t\t// this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values\n\t\t\tif ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {\n\n\t\t\t\t// Remember the original values\n\t\t\t\twidth = style.width;\n\t\t\t\tminWidth = style.minWidth;\n\t\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t\t// Put in the new values to get a computed value out\n\t\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\t\tret = computed.width;\n\n\t\t\t\t// Revert the changed values\n\t\t\t\tstyle.width = width;\n\t\t\t\tstyle.minWidth = minWidth;\n\t\t\t\tstyle.maxWidth = maxWidth;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\";\n\t};\n} else if ( document.documentElement.currentStyle ) {\n\tgetStyles = function( elem ) {\n\t\treturn elem.currentStyle;\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar left, rs, rsLeft, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\t\tret = computed ? computed[ name ] : undefined;\n\n\t\t// Avoid setting ret to empty string here\n\t\t// so we don't default to auto\n\t\tif ( ret == null && style && style[ name ] ) {\n\t\t\tret = style[ name ];\n\t\t}\n\n\t\t// From the awesome hack by Dean Edwards\n\t\t// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291\n\n\t\t// If we're not dealing with a regular pixel number\n\t\t// but a number that has a weird ending, we need to convert it to pixels\n\t\t// but not position css attributes, as those are proportional to the parent element instead\n\t\t// and we can't measure the parent instead because it might trigger a \"stacking dolls\" problem\n\t\tif ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\tleft = style.left;\n\t\t\trs = elem.runtimeStyle;\n\t\t\trsLeft = rs && rs.left;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = elem.currentStyle.left;\n\t\t\t}\n\t\t\tstyle.left = name === \"fontSize\" ? \"1em\" : ret;\n\t\t\tret = style.pixelLeft + \"px\";\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.left = left;\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = rsLeft;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\" || \"auto\";\n\t};\n}\n\n\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tvar condition = conditionFn();\n\n\t\t\tif ( condition == null ) {\n\t\t\t\t// The test was not ready at this point; screw the hook this time\n\t\t\t\t// but check again when needed next time.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( condition ) {\n\t\t\t\t// Hook not needed (or it's not possible to use it due to missing dependency),\n\t\t\t\t// remove it.\n\t\t\t\t// Since there are no other hooks for marginRight, remove the whole object.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\n\t\t\treturn (this.get = hookFn).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\n(function() {\n\t// Minified: var b,c,d,e,f,g, h,i\n\tvar div, style, a, pixelPositionVal, boxSizingReliableVal,\n\t\treliableHiddenOffsetsVal, reliableMarginRightVal;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName( \"a\" )[ 0 ];\n\tstyle = a && a.style;\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !style ) {\n\t\treturn;\n\t}\n\n\tstyle.cssText = \"float:left;opacity:.5\";\n\n\t// Support: IE<9\n\t// Make sure that element opacity exists (as opposed to filter)\n\tsupport.opacity = style.opacity === \"0.5\";\n\n\t// Verify style float existence\n\t// (IE uses styleFloat instead of cssFloat)\n\tsupport.cssFloat = !!style.cssFloat;\n\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\t// Support: Firefox<29, Android 2.3\n\t// Vendor-prefix box-sizing\n\tsupport.boxSizing = style.boxSizing === \"\" || style.MozBoxSizing === \"\" ||\n\t\tstyle.WebkitBoxSizing === \"\";\n\n\tjQuery.extend(support, {\n\t\treliableHiddenOffsets: function() {\n\t\t\tif ( reliableHiddenOffsetsVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableHiddenOffsetsVal;\n\t\t},\n\n\t\tboxSizingReliable: function() {\n\t\t\tif ( boxSizingReliableVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\n\t\tpixelPosition: function() {\n\t\t\tif ( pixelPositionVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn pixelPositionVal;\n\t\t},\n\n\t\t// Support: Android 2.3\n\t\treliableMarginRight: function() {\n\t\t\tif ( reliableMarginRightVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableMarginRightVal;\n\t\t}\n\t});\n\n\tfunction computeStyleTests() {\n\t\t// Minified: var b,c,d,j\n\t\tvar div, body, container, contents;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\tdiv.style.cssText =\n\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t// Vendor-prefix box-sizing\n\t\t\t\"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;\" +\n\t\t\t\"box-sizing:border-box;display:block;margin-top:1%;top:1%;\" +\n\t\t\t\"border:1px;padding:1px;width:4px;position:absolute\";\n\n\t\t// Support: IE<9\n\t\t// Assume reasonable values in the absence of getComputedStyle\n\t\tpixelPositionVal = boxSizingReliableVal = false;\n\t\treliableMarginRightVal = true;\n\n\t\t// Check for getComputedStyle so that this code is not run in IE<9.\n\t\tif ( window.getComputedStyle ) {\n\t\t\tpixelPositionVal = ( window.getComputedStyle( div, null ) || {} ).top !== \"1%\";\n\t\t\tboxSizingReliableVal =\n\t\t\t\t( window.getComputedStyle( div, null ) || { width: \"4px\" } ).width === \"4px\";\n\n\t\t\t// Support: Android 2.3\n\t\t\t// Div with explicit width and no margin-right incorrectly\n\t\t\t// gets computed margin-right based on width of container (#3333)\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\tcontents = div.appendChild( document.createElement( \"div\" ) );\n\n\t\t\t// Reset CSS: box-sizing; display; margin; border; padding\n\t\t\tcontents.style.cssText = div.style.cssText =\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;padding:0\";\n\t\t\tcontents.style.marginRight = contents.style.width = \"0\";\n\t\t\tdiv.style.width = \"1px\";\n\n\t\t\treliableMarginRightVal =\n\t\t\t\t!parseFloat( ( window.getComputedStyle( contents, null ) || {} ).marginRight );\n\n\t\t\tdiv.removeChild( contents );\n\t\t}\n\n\t\t// Support: IE8\n\t\t// Check if table cells still have offsetWidth/Height when they are set\n\t\t// to display:none and there are still other visible table cells in a\n\t\t// table row; if so, offsetWidth/Height are not reliable for use when\n\t\t// determining if an element has been hidden directly using\n\t\t// display:none (it is still safe to use offsets if a parent element is\n\t\t// hidden; don safety goggles and see bug #4512 for more information).\n\t\tdiv.innerHTML = \"<table><tr><td></td><td>t</td></tr></table>\";\n\t\tcontents = div.getElementsByTagName( \"td\" );\n\t\tcontents[ 0 ].style.cssText = \"margin:0;border:0;padding:0;display:none\";\n\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\tif ( reliableHiddenOffsetsVal ) {\n\t\t\tcontents[ 0 ].style.display = \"\";\n\t\t\tcontents[ 1 ].style.display = \"none\";\n\t\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\t}\n\n\t\tbody.removeChild( container );\n\t}\n\n})();\n\n\n// A method for quickly swapping in/out CSS properties to get correct calculations.\njQuery.swap = function( elem, options, callback, args ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.apply( elem, args || [] );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar\n\t\tralpha = /alpha\\([^)]*\\)/i,\n\tropacity = /opacity\\s*=\\s*([^)]*)/,\n\n\t// swappable if display is none or starts with table except \"table\", \"table-cell\", or \"table-caption\"\n\t// see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trnumsplit = new RegExp( \"^(\" + pnum + \")(.*)$\", \"i\" ),\n\trrelNum = new RegExp( \"^([+-])=(\" + pnum + \")\", \"i\" ),\n\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t},\n\n\tcssPrefixes = [ \"Webkit\", \"O\", \"Moz\", \"ms\" ];\n\n\n// return a css property mapped to a potentially vendor prefixed property\nfunction vendorPropName( style, name ) {\n\n\t// shortcut for names that are not vendor prefixed\n\tif ( name in style ) {\n\t\treturn name;\n\t}\n\n\t// check for vendor prefixed names\n\tvar capName = name.charAt(0).toUpperCase() + name.slice(1),\n\t\torigName = name,\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in style ) {\n\t\t\treturn name;\n\t\t}\n\t}\n\n\treturn origName;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem, hidden,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\" );\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\t\t\t// Reset the inline display of this element to learn if it is\n\t\t\t// being hidden by cascaded rules or not\n\t\t\tif ( !values[ index ] && display === \"none\" ) {\n\t\t\t\telem.style.display = \"\";\n\t\t\t}\n\n\t\t\t// Set elements which have been overridden with display: none\n\t\t\t// in a stylesheet to whatever the default browser style is\n\t\t\t// for such an element\n\t\t\tif ( elem.style.display === \"\" && isHidden( elem ) ) {\n\t\t\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\", defaultDisplay(elem.nodeName) );\n\t\t\t}\n\t\t} else {\n\t\t\thidden = isHidden( elem );\n\n\t\t\tif ( display && display !== \"none\" || !hidden ) {\n\t\t\t\tjQuery._data( elem, \"olddisplay\", hidden ? display : jQuery.css( elem, \"display\" ) );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of most of the elements in a second loop\n\t// to avoid the constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( !show || elem.style.display === \"none\" || elem.style.display === \"\" ) {\n\t\t\telem.style.display = show ? values[ index ] || \"\" : \"none\";\n\t\t}\n\t}\n\n\treturn elements;\n}\n\nfunction setPositiveNumber( elem, value, subtract ) {\n\tvar matches = rnumsplit.exec( value );\n\treturn matches ?\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {\n\tvar i = extra === ( isBorderBox ? \"border\" : \"content\" ) ?\n\t\t// If we already have the right measurement, avoid augmentation\n\t\t4 :\n\t\t// Otherwise initialize for horizontal or vertical properties\n\t\tname === \"width\" ? 1 : 0,\n\n\t\tval = 0;\n\n\tfor ( ; i < 4; i += 2 ) {\n\t\t// both box models exclude margin, so add it if we want it\n\t\tif ( extra === \"margin\" ) {\n\t\t\tval += jQuery.css( elem, extra + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\tif ( isBorderBox ) {\n\t\t\t// border-box includes padding, so remove it if we want content\n\t\t\tif ( extra === \"content\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// at this point, extra isn't border nor margin, so remove border\n\t\t\tif ( extra !== \"margin\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t} else {\n\t\t\t// at this point, extra isn't content, so add padding\n\t\t\tval += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// at this point, extra isn't content nor padding, so add border\n\t\t\tif ( extra !== \"padding\" ) {\n\t\t\t\tval += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn val;\n}\n\nfunction getWidthOrHeight( elem, name, extra ) {\n\n\t// Start with offset property, which is equivalent to the border-box value\n\tvar valueIsBorderBox = true,\n\t\tval = name === \"width\" ? elem.offsetWidth : elem.offsetHeight,\n\t\tstyles = getStyles( elem ),\n\t\tisBorderBox = support.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t// some non-html elements return undefined for offsetWidth, so check for null/undefined\n\t// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285\n\t// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668\n\tif ( val <= 0 || val == null ) {\n\t\t// Fall back to computed then uncomputed css if necessary\n\t\tval = curCSS( elem, name, styles );\n\t\tif ( val < 0 || val == null ) {\n\t\t\tval = elem.style[ name ];\n\t\t}\n\n\t\t// Computed unit is not pixels. Stop here and return.\n\t\tif ( rnumnonpx.test(val) ) {\n\t\t\treturn val;\n\t\t}\n\n\t\t// we need the check for style in case a browser which returns unreliable values\n\t\t// for getComputedStyle silently falls back to the reliable elem.style\n\t\tvalueIsBorderBox = isBorderBox && ( support.boxSizingReliable() || val === elem.style[ name ] );\n\n\t\t// Normalize \"\", auto, and prepare for extra\n\t\tval = parseFloat( val ) || 0;\n\t}\n\n\t// use the active box-sizing model to add/subtract irrelevant styles\n\treturn ( val +\n\t\taugmentWidthOrHeight(\n\t\t\telem,\n\t\t\tname,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend({\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {\n\t\t// normalize float css property\n\t\t\"float\": support.cssFloat ? \"cssFloat\" : \"styleFloat\"\n\t},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = jQuery.camelCase( name ),\n\t\t\tstyle = elem.style;\n\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// convert relative number strings (+= or -=) to relative numbers. #7345\n\t\t\tif ( type === \"string\" && (ret = rrelNum.exec( value )) ) {\n\t\t\t\tvalue = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set. See: #7116\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add 'px' to the (except for certain CSS properties)\n\t\t\tif ( type === \"number\" && !jQuery.cssNumber[ origName ] ) {\n\t\t\t\tvalue += \"px\";\n\t\t\t}\n\n\t\t\t// Fixes #8908, it can be done more correctly by specifing setters in cssHooks,\n\t\t\t// but it would mean to define eight (for every problematic property) identical functions\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf(\"background\") === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !(\"set\" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {\n\n\t\t\t\t// Support: IE\n\t\t\t\t// Swallow errors from 'invalid' CSS values (#5509)\n\t\t\t\ttry {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t} catch(e) {}\n\t\t\t}\n\n\t\t} else {\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar num, val, hooks,\n\t\t\torigName = jQuery.camelCase( name );\n\n\t\t// Make sure that we're working with the right name\n\t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t//convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Return, converting to number if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || jQuery.isNumeric( num ) ? num || 0 : val;\n\t\t}\n\t\treturn val;\n\t}\n});\n\njQuery.each([ \"height\", \"width\" ], function( i, name ) {\n\tjQuery.cssHooks[ name ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\t\t\t\t// certain elements can have dimension info if we invisibly show them\n\t\t\t\t// however, it must have a current display style that would benefit from this\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) && elem.offsetWidth === 0 ?\n\t\t\t\t\tjQuery.swap( elem, cssShow, function() {\n\t\t\t\t\t\treturn getWidthOrHeight( elem, name, extra );\n\t\t\t\t\t}) :\n\t\t\t\t\tgetWidthOrHeight( elem, name, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar styles = extra && getStyles( elem );\n\t\t\treturn setPositiveNumber( elem, value, extra ?\n\t\t\t\taugmentWidthOrHeight(\n\t\t\t\t\telem,\n\t\t\t\t\tname,\n\t\t\t\t\textra,\n\t\t\t\t\tsupport.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\t\tstyles\n\t\t\t\t) : 0\n\t\t\t);\n\t\t}\n\t};\n});\n\nif ( !support.opacity ) {\n\tjQuery.cssHooks.opacity = {\n\t\tget: function( elem, computed ) {\n\t\t\t// IE uses filters for opacity\n\t\t\treturn ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || \"\" ) ?\n\t\t\t\t( 0.01 * parseFloat( RegExp.$1 ) ) + \"\" :\n\t\t\t\tcomputed ? \"1\" : \"\";\n\t\t},\n\n\t\tset: function( elem, value ) {\n\t\t\tvar style = elem.style,\n\t\t\t\tcurrentStyle = elem.currentStyle,\n\t\t\t\topacity = jQuery.isNumeric( value ) ? \"alpha(opacity=\" + value * 100 + \")\" : \"\",\n\t\t\t\tfilter = currentStyle && currentStyle.filter || style.filter || \"\";\n\n\t\t\t// IE has trouble with opacity if it does not have layout\n\t\t\t// Force it by setting the zoom level\n\t\t\tstyle.zoom = 1;\n\n\t\t\t// if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652\n\t\t\t// if value === \"\", then remove inline opacity #12685\n\t\t\tif ( ( value >= 1 || value === \"\" ) &&\n\t\t\t\t\tjQuery.trim( filter.replace( ralpha, \"\" ) ) === \"\" &&\n\t\t\t\t\tstyle.removeAttribute ) {\n\n\t\t\t\t// Setting style.filter to null, \"\" & \" \" still leave \"filter:\" in the cssText\n\t\t\t\t// if \"filter:\" is present at all, clearType is disabled, we want to avoid this\n\t\t\t\t// style.removeAttribute is IE Only, but so apparently is this code path...\n\t\t\t\tstyle.removeAttribute( \"filter\" );\n\n\t\t\t\t// if there is no filter style applied in a css rule or unset inline opacity, we are done\n\t\t\t\tif ( value === \"\" || currentStyle && !currentStyle.filter ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// otherwise, set new filter values\n\t\t\tstyle.filter = ralpha.test( filter ) ?\n\t\t\t\tfilter.replace( ralpha, opacity ) :\n\t\t\t\tfilter + \" \" + opacity;\n\t\t}\n\t};\n}\n\njQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\t// Work around by temporarily setting element display to inline-block\n\t\t\treturn jQuery.swap( elem, { \"display\": \"inline-block\" },\n\t\t\t\tcurCSS, [ elem, \"marginRight\" ] );\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each({\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split(\" \") : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( !rmargin.test( prefix ) ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n});\n\njQuery.fn.extend({\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( jQuery.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t},\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( isHidden( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t});\n\t}\n});\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || \"swing\";\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\tif ( tween.elem[ tween.prop ] != null &&\n\t\t\t\t(!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails\n\t\t\t// so, simple values such as \"10px\" are parsed to Float.\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\t\t\t// use step hook for back compat - use cssHook if its there - use .style if its\n\t\t\t// available and use plain properties where available\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9\n// Panic based approach to setting things on disconnected nodes\n\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t}\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back Compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, timerId,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trfxnum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" ),\n\trrun = /queueHooks$/,\n\tanimationPrefilters = [ defaultPrefilter ],\n\ttweeners = {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value ),\n\t\t\t\ttarget = tween.cur(),\n\t\t\t\tparts = rfxnum.exec( value ),\n\t\t\t\tunit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t\t\t// Starting value computation is required for potential unit mismatches\n\t\t\t\tstart = ( jQuery.cssNumber[ prop ] || unit !== \"px\" && +target ) &&\n\t\t\t\t\trfxnum.exec( jQuery.css( tween.elem, prop ) ),\n\t\t\t\tscale = 1,\n\t\t\t\tmaxIterations = 20;\n\n\t\t\tif ( start && start[ 3 ] !== unit ) {\n\t\t\t\t// Trust units reported by jQuery.css\n\t\t\t\tunit = unit || start[ 3 ];\n\n\t\t\t\t// Make sure we update the tween properties later on\n\t\t\t\tparts = parts || [];\n\n\t\t\t\t// Iteratively approximate from a nonzero starting point\n\t\t\t\tstart = +target || 1;\n\n\t\t\t\tdo {\n\t\t\t\t\t// If previous iteration zeroed out, double until we get *something*\n\t\t\t\t\t// Use a string for doubling factor so we don't accidentally see scale as unchanged below\n\t\t\t\t\tscale = scale || \".5\";\n\n\t\t\t\t\t// Adjust and apply\n\t\t\t\t\tstart = start / scale;\n\t\t\t\t\tjQuery.style( tween.elem, prop, start + unit );\n\n\t\t\t\t// Update scale, tolerating zero or NaN from tween.cur()\n\t\t\t\t// And breaking the loop if scale is unchanged or perfect, or if we've just had enough\n\t\t\t\t} while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );\n\t\t\t}\n\n\t\t\t// Update tween properties\n\t\t\tif ( parts ) {\n\t\t\t\tstart = tween.start = +start || +target || 0;\n\t\t\t\ttween.unit = unit;\n\t\t\t\t// If a +=/-= token was provided, we're doing a relative animation\n\t\t\t\ttween.end = parts[ 1 ] ?\n\t\t\t\t\tstart + ( parts[ 1 ] + 1 ) * parts[ 2 ] :\n\t\t\t\t\t+parts[ 2 ];\n\t\t\t}\n\n\t\t\treturn tween;\n\t\t} ]\n\t};\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\tsetTimeout(function() {\n\t\tfxNow = undefined;\n\t});\n\treturn ( fxNow = jQuery.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\tattrs = { height: type },\n\t\ti = 0;\n\n\t// if we include width, step value is 1 to do all cssExpand values,\n\t// if we don't include width, step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4 ; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( tweeners[ prop ] || [] ).concat( tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( (tween = collection[ index ].call( animation, prop, value )) ) {\n\n\t\t\t// we're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\t/* jshint validthis: true */\n\tvar prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHidden( elem ),\n\t\tdataShow = jQuery._data( elem, \"fxshow\" );\n\n\t// handle queue: false promises\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always(function() {\n\t\t\t// doing this makes sure that the complete handler will be called\n\t\t\t// before this completes\n\t\t\tanim.always(function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t}\n\n\t// height/width overflow pass\n\tif ( elem.nodeType === 1 && ( \"height\" in props || \"width\" in props ) ) {\n\t\t// Make sure that nothing sneaks out\n\t\t// Record all 3 overflow attributes because IE does not\n\t\t// change the overflow attribute when overflowX and\n\t\t// overflowY are set to the same value\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Set display property to inline-block for height/width\n\t\t// animations on inline elements that are having width/height animated\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\n\t\t// Test default display if display is currently \"none\"\n\t\tcheckDisplay = display === \"none\" ?\n\t\t\tjQuery._data( elem, \"olddisplay\" ) || defaultDisplay( elem.nodeName ) : display;\n\n\t\tif ( checkDisplay === \"inline\" && jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t// inline-level elements accept inline-block;\n\t\t\t// block-level elements need to be inline with layout\n\t\t\tif ( !support.inlineBlockNeedsLayout || defaultDisplay( elem.nodeName ) === \"inline\" ) {\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t} else {\n\t\t\t\tstyle.zoom = 1;\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tif ( !support.shrinkWrapBlocks() ) {\n\t\t\tanim.always(function() {\n\t\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t\t});\n\t\t}\n\t}\n\n\t// show/hide pass\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.exec( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\n\t\t// Any non-fx value stops us from restoring the original display value\n\t\t} else {\n\t\t\tdisplay = undefined;\n\t\t}\n\t}\n\n\tif ( !jQuery.isEmptyObject( orig ) ) {\n\t\tif ( dataShow ) {\n\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\thidden = dataShow.hidden;\n\t\t\t}\n\t\t} else {\n\t\t\tdataShow = jQuery._data( elem, \"fxshow\", {} );\n\t\t}\n\n\t\t// store state if its toggle - enables .stop().toggle() to \"reverse\"\n\t\tif ( toggle ) {\n\t\t\tdataShow.hidden = !hidden;\n\t\t}\n\t\tif ( hidden ) {\n\t\t\tjQuery( elem ).show();\n\t\t} else {\n\t\t\tanim.done(function() {\n\t\t\t\tjQuery( elem ).hide();\n\t\t\t});\n\t\t}\n\t\tanim.done(function() {\n\t\t\tvar prop;\n\t\t\tjQuery._removeData( elem, \"fxshow\" );\n\t\t\tfor ( prop in orig ) {\n\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t}\n\t\t});\n\t\tfor ( prop in orig ) {\n\t\t\ttween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\n\t\t\tif ( !( prop in dataShow ) ) {\n\t\t\t\tdataShow[ prop ] = tween.start;\n\t\t\t\tif ( hidden ) {\n\t\t\t\t\ttween.end = tween.start;\n\t\t\t\t\ttween.start = prop === \"width\" || prop === \"height\" ? 1 : 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t// If this is a noop like .hide().hide(), restore an overwritten display value\n\t} else if ( (display === \"none\" ? defaultDisplay( elem.nodeName ) : display) === \"inline\" ) {\n\t\tstyle.display = display;\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = jQuery.camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( jQuery.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// not quite $.extend, this wont overwrite keys already present.\n\t\t\t// also - reusing 'index' from above because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = animationPrefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\t\t\t// don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t}),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\t\t\t\t// archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ]);\n\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t} else {\n\t\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\t\tanimation = deferred.promise({\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, { specialEasing: {} }, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\t\t\t\t\t// if we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// resolve when we played the last frame\n\t\t\t\t// otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t}),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length ; index++ ) {\n\t\tresult = animationPrefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( jQuery.isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t})\n\t);\n\n\t// attach callbacks from options\n\treturn animation.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\ttweener: function( props, callback ) {\n\t\tif ( jQuery.isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.split(\" \");\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length ; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\ttweeners[ prop ] = tweeners[ prop ] || [];\n\t\t\ttweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tanimationPrefilters.unshift( callback );\n\t\t} else {\n\t\t\tanimationPrefilters.push( callback );\n\t\t}\n\t}\n});\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tjQuery.isFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !jQuery.isFunction( easing ) && easing\n\t};\n\n\topt.duration = jQuery.fx.off ? 0 : typeof opt.duration === \"number\" ? opt.duration :\n\t\topt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;\n\n\t// normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( jQuery.isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend({\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHidden ).css( \"opacity\", 0 ).show()\n\n\t\t\t// animate to the value specified\n\t\t\t.end().animate({ opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || jQuery._data( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue && type !== false ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = jQuery._data( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// start the next in the queue if the last step wasn't forced\n\t\t\t// timers currently will call their complete callbacks, which will dequeue\n\t\t\t// but only if they were gotoEnd\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t});\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each(function() {\n\t\t\tvar index,\n\t\t\t\tdata = jQuery._data( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t});\n\t}\n});\n\njQuery.each([ \"toggle\", \"show\", \"hide\" ], function( i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n});\n\n// Generate shortcuts for custom animations\njQuery.each({\n\tslideDown: genFx(\"show\"),\n\tslideUp: genFx(\"hide\"),\n\tslideToggle: genFx(\"toggle\"),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n});\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ttimers = jQuery.timers,\n\t\ti = 0;\n\n\tfxNow = jQuery.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\t\t// Checks the timer has not already been removed\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tif ( timer() ) {\n\t\tjQuery.fx.start();\n\t} else {\n\t\tjQuery.timers.pop();\n\t}\n};\n\njQuery.fx.interval = 13;\n\njQuery.fx.start = function() {\n\tif ( !timerId ) {\n\t\ttimerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );\n\t}\n};\n\njQuery.fx.stop = function() {\n\tclearInterval( timerId );\n\ttimerId = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\tclearTimeout( timeout );\n\t\t};\n\t});\n};\n\n\n(function() {\n\t// Minified: var a,b,c,d,e\n\tvar input, div, select, a, opt;\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.setAttribute( \"className\", \"t\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName(\"a\")[ 0 ];\n\n\t// First batch of tests.\n\tselect = document.createElement(\"select\");\n\topt = select.appendChild( document.createElement(\"option\") );\n\tinput = div.getElementsByTagName(\"input\")[ 0 ];\n\n\ta.style.cssText = \"top:1px\";\n\n\t// Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)\n\tsupport.getSetAttribute = div.className !== \"t\";\n\n\t// Get the style information from getAttribute\n\t// (IE uses .cssText instead)\n\tsupport.style = /top/.test( a.getAttribute(\"style\") );\n\n\t// Make sure that URLs aren't manipulated\n\t// (IE normalizes it by default)\n\tsupport.hrefNormalized = a.getAttribute(\"href\") === \"/a\";\n\n\t// Check the default checkbox/radio value (\"\" on WebKit; \"on\" elsewhere)\n\tsupport.checkOn = !!input.value;\n\n\t// Make sure that a selected-by-default option has a working selected property.\n\t// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)\n\tsupport.optSelected = opt.selected;\n\n\t// Tests for enctype support on a form (#6743)\n\tsupport.enctype = !!document.createElement(\"form\").enctype;\n\n\t// Make sure that the options inside disabled selects aren't marked as disabled\n\t// (WebKit marks them as disabled)\n\tselect.disabled = true;\n\tsupport.optDisabled = !opt.disabled;\n\n\t// Support: IE8 only\n\t// Check if we can trust getAttribute(\"value\")\n\tinput = document.createElement( \"input\" );\n\tinput.setAttribute( \"value\", \"\" );\n\tsupport.input = input.getAttribute( \"value\" ) === \"\";\n\n\t// Check if an input maintains its value after becoming a radio\n\tinput.value = \"t\";\n\tinput.setAttribute( \"type\", \"radio\" );\n\tsupport.radioValue = input.value === \"t\";\n})();\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend({\n\tval: function( value ) {\n\t\tvar hooks, ret, isFunction,\n\t\t\telem = this[0];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, \"value\" )) !== undefined ) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\treturn typeof ret === \"string\" ?\n\t\t\t\t\t// handle most common string cases\n\t\t\t\t\tret.replace(rreturn, \"\") :\n\t\t\t\t\t// handle cases where value is null/undef or number\n\t\t\t\t\tret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tisFunction = jQuery.isFunction( value );\n\n\t\treturn this.each(function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( isFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\t\t\t} else if ( jQuery.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t});\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !(\"set\" in hooks) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\t\t\t\t\t// Support: IE10-11+\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\tjQuery.trim( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\" || index < 0,\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length,\n\t\t\t\t\ti = index < 0 ?\n\t\t\t\t\t\tmax :\n\t\t\t\t\t\tone ? index : 0;\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// oldIE doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t( support.optDisabled ? !option.disabled : option.getAttribute(\"disabled\") === null ) &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\tif ( jQuery.inArray( jQuery.valHooks.option.get( option ), values ) >= 0 ) {\n\n\t\t\t\t\t\t// Support: IE6\n\t\t\t\t\t\t// When new option element is added to select box we need to\n\t\t\t\t\t\t// force reflow of newly added node in order to workaround delay\n\t\t\t\t\t\t// of initialization properties\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\toption.selected = optionSet = true;\n\n\t\t\t\t\t\t} catch ( _ ) {\n\n\t\t\t\t\t\t\t// Will be executed only in IE6\n\t\t\t\t\t\t\toption.scrollHeight;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\toption.selected = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\n\t\t\t\treturn options;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Radios and checkboxes getter/setter\njQuery.each([ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( jQuery.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\t// Support: Webkit\n\t\t\t// \"\" is returned instead of \"on\" if a value isn't specified\n\t\t\treturn elem.getAttribute(\"value\") === null ? \"on\" : elem.value;\n\t\t};\n\t}\n});\n\n\n\n\nvar nodeHook, boolHook,\n\tattrHandle = jQuery.expr.attrHandle,\n\truseDefault = /^(?:checked|selected)$/i,\n\tgetSetAttribute = support.getSetAttribute,\n\tgetSetInput = support.input;\n\njQuery.fn.extend({\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each(function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tattr: function( elem, name, value ) {\n\t\tvar hooks, ret,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set attributes on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === strundefined ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// All attributes are lowercase\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\tname = name.toLowerCase();\n\t\t\thooks = jQuery.attrHooks[ name ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\n\t\t\t} else if ( hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {\n\t\t\t\treturn ret;\n\n\t\t\t} else {\n\t\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\t\treturn value;\n\t\t\t}\n\n\t\t} else if ( hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ) {\n\t\t\treturn ret;\n\n\t\t} else {\n\t\t\tret = jQuery.find.attr( elem, name );\n\n\t\t\t// Non-existent attributes return null, we normalize to undefined\n\t\t\treturn ret == null ?\n\t\t\t\tundefined :\n\t\t\t\tret;\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name, propName,\n\t\t\ti = 0,\n\t\t\tattrNames = value && value.match( rnotwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( (name = attrNames[i++]) ) {\n\t\t\t\tpropName = jQuery.propFix[ name ] || name;\n\n\t\t\t\t// Boolean attributes get special treatment (#10870)\n\t\t\t\tif ( jQuery.expr.match.bool.test( name ) ) {\n\t\t\t\t\t// Set corresponding property to false\n\t\t\t\t\tif ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t// Also clear defaultChecked/defaultSelected (if appropriate)\n\t\t\t\t\t} else {\n\t\t\t\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] =\n\t\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t}\n\n\t\t\t\t// See #9699 for explanation of this approach (setting first, then removal)\n\t\t\t\t} else {\n\t\t\t\t\tjQuery.attr( elem, name, \"\" );\n\t\t\t\t}\n\n\t\t\t\telem.removeAttribute( getSetAttribute ? name : propName );\n\t\t\t}\n\t\t}\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" && jQuery.nodeName(elem, \"input\") ) {\n\t\t\t\t\t// Setting the type on a radio button after the value resets the value in IE6-9\n\t\t\t\t\t// Reset value to default in case type is set after value during creation\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Hook for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t// IE<8 needs the *property* name\n\t\t\telem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name );\n\n\t\t// Use defaultChecked and defaultSelected for oldIE\n\t\t} else {\n\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] = elem[ name ] = true;\n\t\t}\n\n\t\treturn name;\n\t}\n};\n\n// Retrieve booleans specially\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( i, name ) {\n\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ?\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret, handle;\n\t\t\tif ( !isXML ) {\n\t\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\t\thandle = attrHandle[ name ];\n\t\t\t\tattrHandle[ name ] = ret;\n\t\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t\tattrHandle[ name ] = handle;\n\t\t\t}\n\t\t\treturn ret;\n\t\t} :\n\t\tfunction( elem, name, isXML ) {\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn elem[ jQuery.camelCase( \"default-\" + name ) ] ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n});\n\n// fix oldIE attroperties\nif ( !getSetInput || !getSetAttribute ) {\n\tjQuery.attrHooks.value = {\n\t\tset: function( elem, value, name ) {\n\t\t\tif ( jQuery.nodeName( elem, \"input\" ) ) {\n\t\t\t\t// Does not return so that setAttribute is also used\n\t\t\t\telem.defaultValue = value;\n\t\t\t} else {\n\t\t\t\t// Use nodeHook if defined (#1954); otherwise setAttribute is fine\n\t\t\t\treturn nodeHook && nodeHook.set( elem, value, name );\n\t\t\t}\n\t\t}\n\t};\n}\n\n// IE6/7 do not support getting/setting some attributes with get/setAttribute\nif ( !getSetAttribute ) {\n\n\t// Use this for any attribute in IE6/7\n\t// This fixes almost every IE6/7 issue\n\tnodeHook = {\n\t\tset: function( elem, value, name ) {\n\t\t\t// Set the existing or create a new attribute node\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( !ret ) {\n\t\t\t\telem.setAttributeNode(\n\t\t\t\t\t(ret = elem.ownerDocument.createAttribute( name ))\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tret.value = value += \"\";\n\n\t\t\t// Break association with cloned elements by also using setAttribute (#9646)\n\t\t\tif ( name === \"value\" || value === elem.getAttribute( name ) ) {\n\t\t\t\treturn value;\n\t\t\t}\n\t\t}\n\t};\n\n\t// Some attributes are constructed with empty-string values when not defined\n\tattrHandle.id = attrHandle.name = attrHandle.coords =\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret;\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn (ret = elem.getAttributeNode( name )) && ret.value !== \"\" ?\n\t\t\t\t\tret.value :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n\n\t// Fixing value retrieval on a button requires this module\n\tjQuery.valHooks.button = {\n\t\tget: function( elem, name ) {\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( ret && ret.specified ) {\n\t\t\t\treturn ret.value;\n\t\t\t}\n\t\t},\n\t\tset: nodeHook.set\n\t};\n\n\t// Set contenteditable to false on removals(#10429)\n\t// Setting to empty string throws an error as an invalid value\n\tjQuery.attrHooks.contenteditable = {\n\t\tset: function( elem, value, name ) {\n\t\t\tnodeHook.set( elem, value === \"\" ? false : value, name );\n\t\t}\n\t};\n\n\t// Set width and height to auto instead of 0 on empty string( Bug #8150 )\n\t// This is for removals\n\tjQuery.each([ \"width\", \"height\" ], function( i, name ) {\n\t\tjQuery.attrHooks[ name ] = {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( value === \"\" ) {\n\t\t\t\t\telem.setAttribute( name, \"auto\" );\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t});\n}\n\nif ( !support.style ) {\n\tjQuery.attrHooks.style = {\n\t\tget: function( elem ) {\n\t\t\t// Return undefined in the case of empty string\n\t\t\t// Note: IE uppercases css property names, but if we were to .toLowerCase()\n\t\t\t// .cssText, that would destroy case senstitivity in URL's, like in \"background\"\n\t\t\treturn elem.style.cssText || undefined;\n\t\t},\n\t\tset: function( elem, value ) {\n\t\t\treturn ( elem.style.cssText = value + \"\" );\n\t\t}\n\t};\n}\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button|object)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend({\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\tname = jQuery.propFix[ name ] || name;\n\t\treturn this.each(function() {\n\t\t\t// try/catch handles cases where IE balks (such as removing a property on window)\n\t\t\ttry {\n\t\t\t\tthis[ name ] = undefined;\n\t\t\t\tdelete this[ name ];\n\t\t\t} catch( e ) {}\n\t\t});\n\t}\n});\n\njQuery.extend({\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t},\n\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks, notxml,\n\t\t\tnType = elem.nodeType;\n\n\t\t// don't get/set properties on text, comment and attribute nodes\n\t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tnotxml = nType !== 1 || !jQuery.isXMLDoc( elem );\n\n\t\tif ( notxml ) {\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\treturn hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?\n\t\t\t\tret :\n\t\t\t\t( elem[ name ] = value );\n\n\t\t} else {\n\t\t\treturn hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ?\n\t\t\t\tret :\n\t\t\t\telem[ name ];\n\t\t}\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\t\t\t\t// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set\n\t\t\t\t// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\treturn tabindex ?\n\t\t\t\t\tparseInt( tabindex, 10 ) :\n\t\t\t\t\trfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?\n\t\t\t\t\t\t0 :\n\t\t\t\t\t\t-1;\n\t\t\t}\n\t\t}\n\t}\n});\n\n// Some attributes require a special call on IE\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !support.hrefNormalized ) {\n\t// href/src property should get the full normalized URL (#10299/#12915)\n\tjQuery.each([ \"href\", \"src\" ], function( i, name ) {\n\t\tjQuery.propHooks[ name ] = {\n\t\t\tget: function( elem ) {\n\t\t\t\treturn elem.getAttribute( name, 4 );\n\t\t\t}\n\t\t};\n\t});\n}\n\n// Support: Safari, IE9+\n// mis-reports the default selected property of an option\n// Accessing the parent's selectedIndex property fixes it\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\t// Make sure that it also works with optgroups, see #5701\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\t};\n}\n\njQuery.each([\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n});\n\n// IE6/7 call enctype encoding\nif ( !support.enctype ) {\n\tjQuery.propFix.enctype = \"encoding\";\n}\n\n\n\n\nvar rclass = /[\\t\\r\\n\\f]/g;\n\njQuery.fn.extend({\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\n\t\tif ( proceed ) {\n\t\t\t// The disjunction here is for better compressibility (see removeClass)\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\" \"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = jQuery.trim( cur );\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, clazz, j, finalValue,\n\t\t\ti = 0,\n\t\t\tlen = this.length,\n\t\t\tproceed = arguments.length === 0 || typeof value === \"string\" && value;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, this.className ) );\n\t\t\t});\n\t\t}\n\t\tif ( proceed ) {\n\t\t\tclasses = ( value || \"\" ).match( rnotwhite ) || [];\n\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\telem = this[ i ];\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\t\t\t\t\t\"\"\n\t\t\t\t);\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) >= 0 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = value ? jQuery.trim( cur ) : \"\";\n\t\t\t\t\tif ( elem.className !== finalValue ) {\n\t\t\t\t\t\telem.className = finalValue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value;\n\n\t\tif ( typeof stateVal === \"boolean\" && type === \"string\" ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each(function( i ) {\n\t\t\t\tjQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tif ( type === \"string\" ) {\n\t\t\t\t// toggle individual class names\n\t\t\t\tvar className,\n\t\t\t\t\ti = 0,\n\t\t\t\t\tself = jQuery( this ),\n\t\t\t\t\tclassNames = value.match( rnotwhite ) || [];\n\n\t\t\t\twhile ( (className = classNames[ i++ ]) ) {\n\t\t\t\t\t// check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( type === strundefined || type === \"boolean\" ) {\n\t\t\t\tif ( this.className ) {\n\t\t\t\t\t// store className if set\n\t\t\t\t\tjQuery._data( this, \"__className__\", this.className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed \"false\",\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tthis.className = this.className || value === false ? \"\" : jQuery._data( this, \"__className__\" ) || \"\";\n\t\t\t}\n\t\t});\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className = \" \" + selector + \" \",\n\t\t\ti = 0,\n\t\t\tl = this.length;\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tif ( this[i].nodeType === 1 && (\" \" + this[i].className + \" \").replace(rclass, \" \").indexOf( className ) >= 0 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n});\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\njQuery.each( (\"blur focus focusin focusout load resize scroll unload click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup error contextmenu\").split(\" \"), function( i, name ) {\n\n\t// Handle event binding\n\tjQuery.fn[ name ] = function( data, fn ) {\n\t\treturn arguments.length > 0 ?\n\t\t\tthis.on( name, null, data, fn ) :\n\t\t\tthis.trigger( name );\n\t};\n});\n\njQuery.fn.extend({\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t},\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ? this.off( selector, \"**\" ) : this.off( types, selector || \"**\", fn );\n\t}\n});\n\n\nvar nonce = jQuery.now();\n\nvar rquery = (/\\?/);\n\n\n\nvar rvalidtokens = /(,)|(\\[|{)|(}|])|\"(?:[^\"\\\\\\r\\n]|\\\\[\"\\\\\\/bfnrt]|\\\\u[\\da-fA-F]{4})*\"\\s*:?|true|false|null|-?(?!0\\d)\\d+(?:\\.\\d+|)(?:[eE][+-]?\\d+|)/g;\n\njQuery.parseJSON = function( data ) {\n\t// Attempt to parse using the native JSON parser first\n\tif ( window.JSON && window.JSON.parse ) {\n\t\t// Support: Android 2.3\n\t\t// Workaround failure to string-cast null input\n\t\treturn window.JSON.parse( data + \"\" );\n\t}\n\n\tvar requireNonComma,\n\t\tdepth = null,\n\t\tstr = jQuery.trim( data + \"\" );\n\n\t// Guard against invalid (and possibly dangerous) input by ensuring that nothing remains\n\t// after removing valid tokens\n\treturn str && !jQuery.trim( str.replace( rvalidtokens, function( token, comma, open, close ) {\n\n\t\t// Force termination if we see a misplaced comma\n\t\tif ( requireNonComma && comma ) {\n\t\t\tdepth = 0;\n\t\t}\n\n\t\t// Perform no more replacements after returning to outermost depth\n\t\tif ( depth === 0 ) {\n\t\t\treturn token;\n\t\t}\n\n\t\t// Commas must not follow \"[\", \"{\", or \",\"\n\t\trequireNonComma = open || comma;\n\n\t\t// Determine new depth\n\t\t// array/object open (\"[\" or \"{\"): depth += true - false (increment)\n\t\t// array/object close (\"]\" or \"}\"): depth += false - true (decrement)\n\t\t// other cases (\",\" or primitive): depth += true - true (numeric cast)\n\t\tdepth += !close - !open;\n\n\t\t// Remove this token\n\t\treturn \"\";\n\t}) ) ?\n\t\t( Function( \"return \" + str ) )() :\n\t\tjQuery.error( \"Invalid JSON: \" + data );\n};\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml, tmp;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\ttry {\n\t\tif ( window.DOMParser ) { // Standard\n\t\t\ttmp = new DOMParser();\n\t\t\txml = tmp.parseFromString( data, \"text/xml\" );\n\t\t} else { // IE\n\t\t\txml = new ActiveXObject( \"Microsoft.XMLDOM\" );\n\t\t\txml.async = \"false\";\n\t\t\txml.loadXML( data );\n\t\t}\n\t} catch( e ) {\n\t\txml = undefined;\n\t}\n\tif ( !xml || !xml.documentElement || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\t// Document location\n\tajaxLocParts,\n\tajaxLocation,\n\n\trhash = /#.*$/,\n\trts = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)\\r?$/mg, // IE leaves an \\r character at EOL\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\trurl = /^([\\w.+-]+:)(?:\\/\\/(?:[^\\/?#]*@|)([^\\/?#:]*)(?::(\\d+)|)|)/,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat(\"*\");\n\n// #8138, IE may throw an exception when accessing\n// a field from window.location if document.domain has been set\ntry {\n\tajaxLocation = location.href;\n} catch( e ) {\n\t// Use the href attribute of an A element\n\t// since IE will modify it given document.location\n\tajaxLocation = document.createElement( \"a\" );\n\tajaxLocation.href = \"\";\n\tajaxLocation = ajaxLocation.href;\n}\n\n// Segment location into parts\najaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];\n\n\t\tif ( jQuery.isFunction( func ) ) {\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( (dataType = dataTypes[i++]) ) {\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType.charAt( 0 ) === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t(structure[ dataType ] = structure[ dataType ] || []).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t});\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar deep, key,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\tvar firstDataType, ct, finalDataType, type,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader(\"Content-Type\");\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[0] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s[ \"throws\" ] ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn { state: \"parsererror\", error: conv ? e : \"No conversion from \" + prev + \" to \" + current };\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend({\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: ajaxLocation,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /xml/,\n\t\t\thtml: /html/,\n\t\t\tjson: /json/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": jQuery.parseJSON,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar // Cross-domain detection vars\n\t\t\tparts,\n\t\t\t// Loop variable\n\t\t\ti,\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\t\t\t// Response headers as string\n\t\t\tresponseHeadersString,\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\ttransport,\n\t\t\t// Response headers\n\t\t\tresponseHeaders,\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\tjQuery.event,\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks(\"once memory\"),\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\t\t\t// The jqXHR state\n\t\t\tstate = 0,\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( state === 2 ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( (match = rheaders.exec( responseHeadersString )) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[1].toLowerCase() ] = match[ 2 ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match;\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn state === 2 ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tvar lname = name.toLowerCase();\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\tname = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\t// Lazy-add the new callback in a way that preserves old ones\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR ).complete = completeDeferred.add;\n\t\tjqXHR.success = jqXHR.done;\n\t\tjqXHR.error = jqXHR.fail;\n\n\t\t// Remove hash character (#7531: and string promotion)\n\t\t// Add protocol if not provided (#5866: IE7 issue with protocol-less urls)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || ajaxLocation ) + \"\" ).replace( rhash, \"\" ).replace( rprotocol, ajaxLocParts[ 1 ] + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = jQuery.trim( s.dataType || \"*\" ).toLowerCase().match( rnotwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when we have a protocol:host:port mismatch\n\t\tif ( s.crossDomain == null ) {\n\t\t\tparts = rurl.exec( s.url.toLowerCase() );\n\t\t\ts.crossDomain = !!( parts &&\n\t\t\t\t( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||\n\t\t\t\t\t( parts[ 3 ] || ( parts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) !==\n\t\t\t\t\t\t( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) )\n\t\t\t);\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( state === 2 ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger(\"ajaxStart\");\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\tcacheURL = s.url;\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// If data is available, append data to url\n\t\t\tif ( s.data ) {\n\t\t\t\tcacheURL = ( s.url += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data );\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add anti-cache in url if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\ts.url = rts.test( cacheURL ) ?\n\n\t\t\t\t\t// If there is already a '_' parameter, set its value\n\t\t\t\t\tcacheURL.replace( rts, \"$1_=\" + nonce++ ) :\n\n\t\t\t\t\t// Otherwise add one to the end\n\t\t\t\t\tcacheURL + ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + nonce++;\n\t\t\t}\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tfor ( i in { success: 1, error: 1, complete: 1 } ) {\n\t\t\tjqXHR[ i ]( s[ i ] );\n\t\t}\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = setTimeout(function() {\n\t\t\t\t\tjqXHR.abort(\"timeout\");\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tstate = 1;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\t\t\t\t// Propagate exception as error if not done\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tdone( -1, e );\n\t\t\t\t// Simply rethrow otherwise\n\t\t\t\t} else {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Called once\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// State is \"done\" now\n\t\t\tstate = 2;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\tclearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"Last-Modified\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader(\"etag\");\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// We extract error from statusText\n\t\t\t\t// then normalize statusText and status for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger(\"ajaxStop\");\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n});\n\njQuery.each( [ \"get\", \"post\" ], function( i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\t\t// shift arguments if data argument was omitted\n\t\tif ( jQuery.isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\treturn jQuery.ajax({\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t});\n\t};\n});\n\n\njQuery._evalUrl = function( url ) {\n\treturn jQuery.ajax({\n\t\turl: url,\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tasync: false,\n\t\tglobal: false,\n\t\t\"throws\": true\n\t});\n};\n\n\njQuery.fn.extend({\n\twrapAll: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapAll( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\tif ( this[0] ) {\n\t\t\t// The elements to wrap the target around\n\t\t\tvar wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);\n\n\t\t\tif ( this[0].parentNode ) {\n\t\t\t\twrap.insertBefore( this[0] );\n\t\t\t}\n\n\t\t\twrap.map(function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstChild && elem.firstChild.nodeType === 1 ) {\n\t\t\t\t\telem = elem.firstChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t}).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each(function(i) {\n\t\t\t\tjQuery(this).wrapInner( html.call(this, i) );\n\t\t\t});\n\t\t}\n\n\t\treturn this.each(function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t});\n\t},\n\n\twrap: function( html ) {\n\t\tvar isFunction = jQuery.isFunction( html );\n\n\t\treturn this.each(function(i) {\n\t\t\tjQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );\n\t\t});\n\t},\n\n\tunwrap: function() {\n\t\treturn this.parent().each(function() {\n\t\t\tif ( !jQuery.nodeName( this, \"body\" ) ) {\n\t\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t\t}\n\t\t}).end();\n\t}\n});\n\n\njQuery.expr.filters.hidden = function( elem ) {\n\t// Support: Opera <= 12.12\n\t// Opera reports offsetWidths and offsetHeights less than zero on some elements\n\treturn elem.offsetWidth <= 0 && elem.offsetHeight <= 0 ||\n\t\t(!support.reliableHiddenOffsets() &&\n\t\t\t((elem.style && elem.style.display) || jQuery.css( elem, \"display\" )) === \"none\");\n};\n\njQuery.expr.filters.visible = function( elem ) {\n\treturn !jQuery.expr.filters.hidden( elem );\n};\n\n\n\n\nvar r20 = /%20/g,\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( jQuery.isArray( obj ) ) {\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams( prefix + \"[\" + ( typeof v === \"object\" ? i : \"\" ) + \"]\", v, traditional, add );\n\t\t\t}\n\t\t});\n\n\t} else if ( !traditional && jQuery.type( obj ) === \"object\" ) {\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, value ) {\n\t\t\t// If value is a function, invoke it and return its value\n\t\t\tvalue = jQuery.isFunction( value ) ? value() : ( value == null ? \"\" : value );\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" + encodeURIComponent( value );\n\t\t};\n\n\t// Set traditional to true for jQuery <= 1.3.2 behavior.\n\tif ( traditional === undefined ) {\n\t\ttraditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t});\n\n\t} else {\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" ).replace( r20, \"+\" );\n};\n\njQuery.fn.extend({\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map(function() {\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t})\n\t\t.filter(function() {\n\t\t\tvar type = this.type;\n\t\t\t// Use .is(\":disabled\") so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t})\n\t\t.map(function( i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\treturn val == null ?\n\t\t\t\tnull :\n\t\t\t\tjQuery.isArray( val ) ?\n\t\t\t\t\tjQuery.map( val, function( val ) {\n\t\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t\t}) :\n\t\t\t\t\t{ name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t}).get();\n\t}\n});\n\n\n// Create the request object\n// (This is still attached to ajaxSettings for backward compatibility)\njQuery.ajaxSettings.xhr = window.ActiveXObject !== undefined ?\n\t// Support: IE6+\n\tfunction() {\n\n\t\t// XHR cannot access local files, always use ActiveX for that case\n\t\treturn !this.isLocal &&\n\n\t\t\t// Support: IE7-8\n\t\t\t// oldIE XHR does not support non-RFC2616 methods (#13240)\n\t\t\t// See http://msdn.microsoft.com/en-us/library/ie/ms536648(v=vs.85).aspx\n\t\t\t// and http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9\n\t\t\t// Although this check for six methods instead of eight\n\t\t\t// since IE also does not support \"trace\" and \"connect\"\n\t\t\t/^(get|post|head|put|delete|options)$/i.test( this.type ) &&\n\n\t\t\tcreateStandardXHR() || createActiveXHR();\n\t} :\n\t// For all other browsers, use the standard XMLHttpRequest object\n\tcreateStandardXHR;\n\nvar xhrId = 0,\n\txhrCallbacks = {},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\n// Support: IE<10\n// Open requests must be manually aborted on unload (#5280)\n// See https://support.microsoft.com/kb/2856746 for more info\nif ( window.attachEvent ) {\n\twindow.attachEvent( \"onunload\", function() {\n\t\tfor ( var key in xhrCallbacks ) {\n\t\t\txhrCallbacks[ key ]( undefined, true );\n\t\t}\n\t});\n}\n\n// Determine support properties\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nxhrSupported = support.ajax = !!xhrSupported;\n\n// Create transport if the browser can provide an xhr\nif ( xhrSupported ) {\n\n\tjQuery.ajaxTransport(function( options ) {\n\t\t// Cross domain only allowed if supported through XMLHttpRequest\n\t\tif ( !options.crossDomain || support.cors ) {\n\n\t\t\tvar callback;\n\n\t\t\treturn {\n\t\t\t\tsend: function( headers, complete ) {\n\t\t\t\t\tvar i,\n\t\t\t\t\t\txhr = options.xhr(),\n\t\t\t\t\t\tid = ++xhrId;\n\n\t\t\t\t\t// Open the socket\n\t\t\t\t\txhr.open( options.type, options.url, options.async, options.username, options.password );\n\n\t\t\t\t\t// Apply custom fields if provided\n\t\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Override mime type if needed\n\t\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t\t}\n\n\t\t\t\t\t// X-Requested-With header\n\t\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\t\tif ( !options.crossDomain && !headers[\"X-Requested-With\"] ) {\n\t\t\t\t\t\theaders[\"X-Requested-With\"] = \"XMLHttpRequest\";\n\t\t\t\t\t}\n\n\t\t\t\t\t// Set headers\n\t\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// IE's ActiveXObject throws a 'Type Mismatch' exception when setting\n\t\t\t\t\t\t// request header to a null-value.\n\t\t\t\t\t\t//\n\t\t\t\t\t\t// To keep consistent with other XHR implementations, cast the value\n\t\t\t\t\t\t// to string and ignore `undefined`.\n\t\t\t\t\t\tif ( headers[ i ] !== undefined ) {\n\t\t\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] + \"\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Do send the request\n\t\t\t\t\t// This may raise an exception which is actually\n\t\t\t\t\t// handled in jQuery.ajax (so no try/catch here)\n\t\t\t\t\txhr.send( ( options.hasContent && options.data ) || null );\n\n\t\t\t\t\t// Listener\n\t\t\t\t\tcallback = function( _, isAbort ) {\n\t\t\t\t\t\tvar status, statusText, responses;\n\n\t\t\t\t\t\t// Was never called and is aborted or complete\n\t\t\t\t\t\tif ( callback && ( isAbort || xhr.readyState === 4 ) ) {\n\t\t\t\t\t\t\t// Clean up\n\t\t\t\t\t\t\tdelete xhrCallbacks[ id ];\n\t\t\t\t\t\t\tcallback = undefined;\n\t\t\t\t\t\t\txhr.onreadystatechange = jQuery.noop;\n\n\t\t\t\t\t\t\t// Abort manually if needed\n\t\t\t\t\t\t\tif ( isAbort ) {\n\t\t\t\t\t\t\t\tif ( xhr.readyState !== 4 ) {\n\t\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tresponses = {};\n\t\t\t\t\t\t\t\tstatus = xhr.status;\n\n\t\t\t\t\t\t\t\t// Support: IE<10\n\t\t\t\t\t\t\t\t// Accessing binary-data responseText throws an exception\n\t\t\t\t\t\t\t\t// (#11426)\n\t\t\t\t\t\t\t\tif ( typeof xhr.responseText === \"string\" ) {\n\t\t\t\t\t\t\t\t\tresponses.text = xhr.responseText;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Firefox throws an exception when accessing\n\t\t\t\t\t\t\t\t// statusText for faulty cross-domain requests\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tstatusText = xhr.statusText;\n\t\t\t\t\t\t\t\t} catch( e ) {\n\t\t\t\t\t\t\t\t\t// We normalize with Webkit giving an empty statusText\n\t\t\t\t\t\t\t\t\tstatusText = \"\";\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Filter status for non standard behaviors\n\n\t\t\t\t\t\t\t\t// If the request is local and we have data: assume a success\n\t\t\t\t\t\t\t\t// (success with no data won't get notified, that's the best we\n\t\t\t\t\t\t\t\t// can do given current implementations)\n\t\t\t\t\t\t\t\tif ( !status && options.isLocal && !options.crossDomain ) {\n\t\t\t\t\t\t\t\t\tstatus = responses.text ? 200 : 404;\n\t\t\t\t\t\t\t\t// IE - #1450: sometimes returns 1223 when it should be 204\n\t\t\t\t\t\t\t\t} else if ( status === 1223 ) {\n\t\t\t\t\t\t\t\t\tstatus = 204;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Call complete if needed\n\t\t\t\t\t\tif ( responses ) {\n\t\t\t\t\t\t\tcomplete( status, statusText, responses, xhr.getAllResponseHeaders() );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\tif ( !options.async ) {\n\t\t\t\t\t\t// if we're in sync mode we fire the callback\n\t\t\t\t\t\tcallback();\n\t\t\t\t\t} else if ( xhr.readyState === 4 ) {\n\t\t\t\t\t\t// (IE6 & IE7) if it's in cache and has been\n\t\t\t\t\t\t// retrieved directly we need to fire the callback\n\t\t\t\t\t\tsetTimeout( callback );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// Add to the list of active xhr callbacks\n\t\t\t\t\t\txhr.onreadystatechange = xhrCallbacks[ id ] = callback;\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tabort: function() {\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tcallback( undefined, true );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t});\n}\n\n// Functions to create xhrs\nfunction createStandardXHR() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch( e ) {}\n}\n\nfunction createActiveXHR() {\n\ttry {\n\t\treturn new window.ActiveXObject( \"Microsoft.XMLHTTP\" );\n\t} catch( e ) {}\n}\n\n\n\n\n// Install script dataType\njQuery.ajaxSetup({\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /(?:java|ecma)script/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n});\n\n// Handle cache's special case and global\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t\ts.global = false;\n\t}\n});\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function(s) {\n\n\t// This transport only deals with cross domain requests\n\tif ( s.crossDomain ) {\n\n\t\tvar script,\n\t\t\thead = document.head || jQuery(\"head\")[0] || document.documentElement;\n\n\t\treturn {\n\n\t\t\tsend: function( _, callback ) {\n\n\t\t\t\tscript = document.createElement(\"script\");\n\n\t\t\t\tscript.async = true;\n\n\t\t\t\tif ( s.scriptCharset ) {\n\t\t\t\t\tscript.charset = s.scriptCharset;\n\t\t\t\t}\n\n\t\t\t\tscript.src = s.url;\n\n\t\t\t\t// Attach handlers for all browsers\n\t\t\t\tscript.onload = script.onreadystatechange = function( _, isAbort ) {\n\n\t\t\t\t\tif ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {\n\n\t\t\t\t\t\t// Handle memory leak in IE\n\t\t\t\t\t\tscript.onload = script.onreadystatechange = null;\n\n\t\t\t\t\t\t// Remove the script\n\t\t\t\t\t\tif ( script.parentNode ) {\n\t\t\t\t\t\t\tscript.parentNode.removeChild( script );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Dereference the script\n\t\t\t\t\t\tscript = null;\n\n\t\t\t\t\t\t// Callback if not abort\n\t\t\t\t\t\tif ( !isAbort ) {\n\t\t\t\t\t\t\tcallback( 200, \"success\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\t// Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\thead.insertBefore( script, head.firstChild );\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( script ) {\n\t\t\t\t\tscript.onload( undefined, true );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n});\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup({\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n});\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" && !( s.contentType || \"\" ).indexOf(\"application/x-www-form-urlencoded\") && rjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[\"script json\"] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always(function() {\n\t\t\t// Restore preexisting value\n\t\t\twindow[ callbackName ] = overwritten;\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\t\t\t\t// make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && jQuery.isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t});\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n});\n\n\n\n\n// data: string of html\n// context (optional): If specified, the fragment will be created in this context, defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\tcontext = context || document;\n\n\tvar parsed = rsingleTag.exec( data ),\n\t\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[1] ) ];\n\t}\n\n\tparsed = jQuery.buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n// Keep a copy of the old load method\nvar _load = jQuery.fn.load;\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tif ( typeof url !== \"string\" && _load ) {\n\t\treturn _load.apply( this, arguments );\n\t}\n\n\tvar selector, response, type,\n\t\tself = this,\n\t\toff = url.indexOf(\" \");\n\n\tif ( off >= 0 ) {\n\t\tselector = jQuery.trim( url.slice( off, url.length ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( jQuery.isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax({\n\t\t\turl: url,\n\n\t\t\t// if \"type\" variable is undefined, then \"GET\" method will be used\n\t\t\ttype: type,\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t}).done(function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery(\"<div>\").append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t}).complete( callback && function( jqXHR, status ) {\n\t\t\tself.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t});\n\t}\n\n\treturn this;\n};\n\n\n\n\n// Attach a bunch of functions for handling common AJAX events\njQuery.each( [ \"ajaxStart\", \"ajaxStop\", \"ajaxComplete\", \"ajaxError\", \"ajaxSuccess\", \"ajaxSend\" ], function( i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n});\n\n\n\n\njQuery.expr.filters.animated = function( elem ) {\n\treturn jQuery.grep(jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t}).length;\n};\n\n\n\n\n\nvar docElem = window.document.documentElement;\n\n/**\n * Gets a window from an element\n */\nfunction getWindow( elem ) {\n\treturn jQuery.isWindow( elem ) ?\n\t\telem :\n\t\telem.nodeType === 9 ?\n\t\t\telem.defaultView || elem.parentWindow :\n\t\t\tfalse;\n}\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\tjQuery.inArray(\"auto\", [ curCSSTop, curCSSLeft ] ) > -1;\n\n\t\t// need to be able to calculate position if either top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( jQuery.isFunction( options ) ) {\n\t\t\toptions = options.call( elem, i, curOffset );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend({\n\toffset: function( options ) {\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each(function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t});\n\t\t}\n\n\t\tvar docElem, win,\n\t\t\tbox = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ],\n\t\t\tdoc = elem && elem.ownerDocument;\n\n\t\tif ( !doc ) {\n\t\t\treturn;\n\t\t}\n\n\t\tdocElem = doc.documentElement;\n\n\t\t// Make sure it's not a disconnected DOM node\n\t\tif ( !jQuery.contains( docElem, elem ) ) {\n\t\t\treturn box;\n\t\t}\n\n\t\t// If we don't have gBCR, just use 0,0 rather than error\n\t\t// BlackBerry 5, iOS 3 (original iPhone)\n\t\tif ( typeof elem.getBoundingClientRect !== strundefined ) {\n\t\t\tbox = elem.getBoundingClientRect();\n\t\t}\n\t\twin = getWindow( doc );\n\t\treturn {\n\t\t\ttop: box.top  + ( win.pageYOffset || docElem.scrollTop )  - ( docElem.clientTop  || 0 ),\n\t\t\tleft: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 )\n\t\t};\n\t},\n\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset,\n\t\t\tparentOffset = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ];\n\n\t\t// fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is its only offset parent\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\t\t\t// we assume that getBoundingClientRect is available when computed position is fixed\n\t\t\toffset = elem.getBoundingClientRect();\n\t\t} else {\n\t\t\t// Get *real* offsetParent\n\t\t\toffsetParent = this.offsetParent();\n\n\t\t\t// Get correct offsets\n\t\t\toffset = this.offset();\n\t\t\tif ( !jQuery.nodeName( offsetParent[ 0 ], \"html\" ) ) {\n\t\t\t\tparentOffset = offsetParent.offset();\n\t\t\t}\n\n\t\t\t// Add offsetParent borders\n\t\t\tparentOffset.top  += jQuery.css( offsetParent[ 0 ], \"borderTopWidth\", true );\n\t\t\tparentOffset.left += jQuery.css( offsetParent[ 0 ], \"borderLeftWidth\", true );\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\t// note: when an element has margin: auto the offsetLeft and marginLeft\n\t\t// are the same in Safari causing offset.left to incorrectly be 0\n\t\treturn {\n\t\t\ttop:  offset.top  - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true)\n\t\t};\n\t},\n\n\toffsetParent: function() {\n\t\treturn this.map(function() {\n\t\t\tvar offsetParent = this.offsetParent || docElem;\n\n\t\t\twhile ( offsetParent && ( !jQuery.nodeName( offsetParent, \"html\" ) && jQuery.css( offsetParent, \"position\" ) === \"static\" ) ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\t\t\treturn offsetParent || docElem;\n\t\t});\n\t}\n});\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = /Y/.test( prop );\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\t\t\tvar win = getWindow( elem );\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? (prop in win) ? win[ prop ] :\n\t\t\t\t\twin.document.documentElement[ method ] :\n\t\t\t\t\telem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : jQuery( win ).scrollLeft(),\n\t\t\t\t\ttop ? val : jQuery( win ).scrollTop()\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length, null );\n\t};\n});\n\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// getComputedStyle returns percent when specified for top/left/bottom/right\n// rather than make the css module depend on the offset module, we just check for it here\njQuery.each( [ \"top\", \"left\" ], function( i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\t\t\t\t// if curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n});\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name }, function( defaultExtra, funcName ) {\n\t\t// margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( jQuery.isWindow( elem ) ) {\n\t\t\t\t\t// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there\n\t\t\t\t\t// isn't a whole lot we can do. See pull request at this URL for discussion:\n\t\t\t\t\t// https://github.com/jquery/jquery/pull/764\n\t\t\t\t\treturn elem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest\n\t\t\t\t\t// unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it.\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable, null );\n\t\t};\n\t});\n});\n\n\n// The number of elements contained in the matched element set\njQuery.fn.size = function() {\n\treturn this.length;\n};\n\njQuery.fn.andSelf = jQuery.fn.addBack;\n\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t});\n}\n\n\n\n\nvar\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in\n// AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( typeof noGlobal === strundefined ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\n\n\n\nreturn jQuery;\n\n}));\n"
  },
  {
    "path": "lib/plotly-binding-4.8.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if (x.selectize || x.highlight.dynamic && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // remove \"sendDataToCloud\", unless user has specified they want it\n    x.config = x.config || {};\n    if (!x.config.cloud) {\n      x.config.modeBarButtonsToRemove = x.config.modeBarButtonsToRemove || [];\n      x.config.modeBarButtonsToRemove.push(\"sendDataToCloud\");\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.plot(graphDiv, x);\n      instance.plotly = true;\n      instance.autosize = x.layout.autosize || true;\n      instance.width = x.layout.width;\n      instance.height = x.layout.height;\n      \n    } else {\n      \n      // new x data could contain a new height/width...\n      // attach to instance so that resize logic knows about the new size\n      instance.width = x.layout.width || instance.width;\n      instance.height = x.layout.height || instance.height;\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.plot(graphDiv, x);\n      \n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        // Add other attributes here, if desired\n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\", \"z\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [\"z\"];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n              // pointNumber can be an array (e.g., heatmaps)\n              // TODO: can pointNumber be 3D?\n              obj[attrsToAttach[i]] = typeof pt.pointNumber === \"number\" ? \n                attr[pt.pointNumber] : attr[pt.pointNumber[0]][pt.pointNumber[1]];\n          }\n        }\n        return obj;\n      });\n    }\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode) {\n      // https://plot.ly/javascript/zoom-events/\n      graphDiv.on('plotly_relayout', function(d) {\n        Shiny.onInputChange(\n          \".clientValue-plotly_relayout-\" + x.source, \n          JSON.stringify(d)\n        );\n      });\n      graphDiv.on('plotly_hover', function(d) {\n        Shiny.onInputChange(\n          \".clientValue-plotly_hover-\" + x.source, \n          JSON.stringify(eventDataWithKey(d))\n        );\n      });\n      graphDiv.on('plotly_click', function(d) {\n        Shiny.onInputChange(\n          \".clientValue-plotly_click-\" + x.source, \n          JSON.stringify(eventDataWithKey(d))\n        );\n      });\n      graphDiv.on('plotly_selected', function(d) {\n        Shiny.onInputChange(\n          \".clientValue-plotly_selected-\" + x.source, \n          JSON.stringify(eventDataWithKey(d))\n        );\n      });\n      graphDiv.on('plotly_unhover', function(eventData) {\n        Shiny.onInputChange(\".clientValue-plotly_hover-\" + x.source, null);\n      });\n      graphDiv.on('plotly_doubleclick', function(eventData) {\n        Shiny.onInputChange(\".clientValue-plotly_click-\" + x.source, null);\n      });\n      // 'plotly_deselect' is code for doubleclick when in select mode\n      graphDiv.on('plotly_deselect', function(eventData) {\n        Shiny.onInputChange(\".clientValue-plotly_selected-\" + x.source, null);\n        Shiny.onInputChange(\".clientValue-plotly_click-\" + x.source, null);\n      });\n    } \n    \n    \n    // send user input event data to dashR\n    // TODO: make this more consistent with Graph() props?\n    var dashRwidgets = window.dashRwidgets || {};\n    var dashRmode = typeof el.setProps === \"function\" &&\n                    typeof dashRwidgets.htmlwidget === \"function\";\n    if (dashRmode) {\n      graphDiv.on('plotly_relayout', function(d) {\n        el.setProps({\"input_plotly_relayout\": d});\n      });\n      graphDiv.on('plotly_hover', function(d) {\n        el.setProps({\"input_plotly_hover\": eventDataWithKey(d)});\n      });\n      graphDiv.on('plotly_click', function(d) {\n        el.setProps({\"input_plotly_click\": eventDataWithKey(d)});\n      });\n      graphDiv.on('plotly_selected', function(d) {\n        el.setProps({\"input_plotly_selected\": eventDataWithKey(d)});\n      });\n      graphDiv.on('plotly_unhover', function(eventData) {\n        el.setProps({\"input_plotly_hover\": null});\n      });\n      graphDiv.on('plotly_doubleclick', function(eventData) {\n        el.setProps({\"input_plotly_click\": null});\n      });\n      // 'plotly_deselect' is code for doubleclick when in select mode\n      graphDiv.on('plotly_deselect', function(eventData) {\n        el.setProps({\"input_plotly_selected\": null});\n        el.setProps({\"input_plotly_click\": null});\n      });\n    } \n    \n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity || 1;\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = this.origData.length; i < this.gd.data.length; i++) {\n      tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "lib/plotly-binding-4.9.0/plotly.js",
    "content": "\nHTMLWidgets.widget({\n  name: \"plotly\",\n  type: \"output\",\n\n  initialize: function(el, width, height) {\n    return {};\n  },\n\n  resize: function(el, width, height, instance) {\n    if (instance.autosize) {\n      var width = instance.width || width;\n      var height = instance.height || height;\n      Plotly.relayout(el.id, {width: width, height: height});\n    }\n  },  \n  \n  renderValue: function(el, x, instance) {\n    \n    /* \n    / 'inform the world' about highlighting options this is so other\n    / crosstalk libraries have a chance to respond to special settings \n    / such as persistent selection. \n    / AFAIK, leaflet is the only library with such intergration\n    / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154\n    */\n    var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight);\n      \n    if (typeof(window) !== \"undefined\") {\n      // make sure plots don't get created outside the network (for on-prem)\n      window.PLOTLYENV = window.PLOTLYENV || {};\n      window.PLOTLYENV.BASE_URL = x.base_url;\n      \n      // Enable persistent selection when shift key is down\n      // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down\n      var persistOnShift = function(e) {\n        if (!e) window.event;\n        if (e.shiftKey) { \n          x.highlight.persistent = true; \n          x.highlight.persistentShift = true;\n        } else {\n          x.highlight.persistent = false; \n          x.highlight.persistentShift = false;\n        }\n      };\n      \n      // Only relevant if we haven't forced persistent mode at command line\n      if (!x.highlight.persistent) {\n        window.onmousemove = persistOnShift;\n      }\n    }\n\n    var graphDiv = document.getElementById(el.id);\n    \n    // TODO: move the control panel injection strategy inside here...\n    HTMLWidgets.addPostRenderHandler(function() {\n      \n      // lower the z-index of the modebar to prevent it from highjacking hover\n      // (TODO: do this via CSS?)\n      // https://github.com/ropensci/plotly/issues/956\n      // https://www.w3schools.com/jsref/prop_style_zindex.asp\n      var modebars = document.querySelectorAll(\".js-plotly-plot .plotly .modebar\");\n      for (var i = 0; i < modebars.length; i++) {\n        modebars[i].style.zIndex = 1;\n      }\n    });\n      \n      // inject a \"control panel\" holding selectize/dynamic color widget(s)\n    if (x.selectize || x.highlight.dynamic && !instance.plotly) {\n      var flex = document.createElement(\"div\");\n      flex.class = \"plotly-crosstalk-control-panel\";\n      flex.style = \"display: flex; flex-wrap: wrap\";\n      \n      // inject the colourpicker HTML container into the flexbox\n      if (x.highlight.dynamic) {\n        var pickerDiv = document.createElement(\"div\");\n        \n        var pickerInput = document.createElement(\"input\");\n        pickerInput.id = el.id + \"-colourpicker\";\n        pickerInput.placeholder = \"asdasd\";\n        \n        var pickerLabel = document.createElement(\"label\");\n        pickerLabel.for = pickerInput.id;\n        pickerLabel.innerHTML = \"Brush color&nbsp;&nbsp;\";\n        \n        pickerDiv.appendChild(pickerLabel);\n        pickerDiv.appendChild(pickerInput);\n        flex.appendChild(pickerDiv);\n      }\n      \n      // inject selectize HTML containers (one for every crosstalk group)\n      if (x.selectize) {\n        var ids = Object.keys(x.selectize);\n        \n        for (var i = 0; i < ids.length; i++) {\n          var container = document.createElement(\"div\");\n          container.id = ids[i];\n          container.style = \"width: 80%; height: 10%\";\n          container.class = \"form-group crosstalk-input-plotly-highlight\";\n          \n          var label = document.createElement(\"label\");\n          label.for = ids[i];\n          label.innerHTML = x.selectize[ids[i]].group;\n          label.class = \"control-label\";\n          \n          var selectDiv = document.createElement(\"div\");\n          var select = document.createElement(\"select\");\n          select.multiple = true;\n          \n          selectDiv.appendChild(select);\n          container.appendChild(label);\n          container.appendChild(selectDiv);\n          flex.appendChild(container);\n        }\n      }\n      \n      // finally, insert the flexbox inside the htmlwidget container,\n      // but before the plotly graph div\n      graphDiv.parentElement.insertBefore(flex, graphDiv);\n      \n      if (x.highlight.dynamic) {\n        var picker = $(\"#\" + pickerInput.id);\n        var colors = x.highlight.color || [];\n        // TODO: let users specify options?\n        var opts = {\n          value: colors[0],\n          showColour: \"both\",\n          palette: \"limited\",\n          allowedCols: colors.join(\" \"),\n          width: \"20%\",\n          height: \"10%\"\n        };\n        picker.colourpicker({changeDelay: 0});\n        picker.colourpicker(\"settings\", opts);\n        picker.colourpicker(\"value\", opts.value);\n        // inform crosstalk about a change in the current selection colour\n        var grps = x.highlight.ctGroups || [];\n        for (var i = 0; i < grps.length; i++) {\n          crosstalk.group(grps[i]).var('plotlySelectionColour')\n            .set(picker.colourpicker('value'));\n        }\n        picker.on(\"change\", function() {\n          for (var i = 0; i < grps.length; i++) {\n            crosstalk.group(grps[i]).var('plotlySelectionColour')\n              .set(picker.colourpicker('value'));\n          }\n        });\n      }\n    }\n    \n    // if no plot exists yet, create one with a particular configuration\n    if (!instance.plotly) {\n      \n      var plot = Plotly.plot(graphDiv, x);\n      instance.plotly = true;\n      instance.autosize = x.layout.autosize || true;\n      instance.width = x.layout.width;\n      instance.height = x.layout.height;\n      \n    } else {\n      \n      // new x data could contain a new height/width...\n      // attach to instance so that resize logic knows about the new size\n      instance.width = x.layout.width || instance.width;\n      instance.height = x.layout.height || instance.height;\n      \n      // this is essentially equivalent to Plotly.newPlot(), but avoids creating \n      // a new webgl context\n      // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532\n\n      // TODO: restore crosstalk selections?\n      Plotly.purge(graphDiv);\n      // TODO: why is this necessary to get crosstalk working?\n      graphDiv.data = undefined;\n      graphDiv.layout = undefined;\n      var plot = Plotly.plot(graphDiv, x);\n    }\n    \n    // Trigger plotly.js calls defined via `plotlyProxy()`\n    plot.then(function() {\n      if (HTMLWidgets.shinyMode) {\n        Shiny.addCustomMessageHandler(\"plotly-calls\", function(msg) {\n          var gd = document.getElementById(msg.id);\n          if (!gd) {\n            throw new Error(\"Couldn't find plotly graph with id: \" + msg.id);\n          }\n          // This isn't an official plotly.js method, but it's the only current way to \n          // change just the configuration of a plot \n          // https://community.plot.ly/t/update-config-function/9057\n          if (msg.method == \"reconfig\") {\n            Plotly.react(gd, gd.data, gd.layout, msg.args);\n            return;\n          }\n          if (!Plotly[msg.method]) {\n            throw new Error(\"Unknown method \" + msg.method);\n          }\n          var args = [gd].concat(msg.args);\n          Plotly[msg.method].apply(null, args);\n        });\n      }\n      \n      // plotly's mapbox API doesn't currently support setting bounding boxes\n      // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/\n      // so we do this manually...\n      // TODO: make sure this triggers on a redraw and relayout as well as on initial draw\n      var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || [];\n      for (var i = 0; i < mapboxIDs.length; i++) {\n        var id = mapboxIDs[i];\n        var mapOpts = x.layout[id] || {};\n        var args = mapOpts._fitBounds || {};\n        if (!args) {\n          continue;\n        }\n        var mapObj = graphDiv._fullLayout[id]._subplot.map;\n        mapObj.fitBounds(args.bounds, args.options);\n      }\n      \n    });\n    \n    // Attach attributes (e.g., \"key\", \"z\") to plotly event data\n    function eventDataWithKey(eventData) {\n      if (eventData === undefined || !eventData.hasOwnProperty(\"points\")) {\n        return null;\n      }\n      return eventData.points.map(function(pt) {\n        var obj = {\n          curveNumber: pt.curveNumber, \n          pointNumber: pt.pointNumber, \n          x: pt.x,\n          y: pt.y\n        };\n        \n        // If 'z' is reported with the event data, then use it!\n        if (pt.hasOwnProperty(\"z\")) {\n          obj.z = pt.z;\n        }\n        \n        if (pt.hasOwnProperty(\"customdata\")) {\n          obj.customdata = pt.customdata;\n        }\n        \n        /* \n          TL;DR: (I think) we have to select the graph div (again) to attach keys...\n          \n          Why? Remember that crosstalk will dynamically add/delete traces \n          (see traceManager.prototype.updateSelection() below)\n          For this reason, we can't simply grab keys from x.data (like we did previously)\n          Moreover, we can't use _fullData, since that doesn't include \n          unofficial attributes. It's true that click/hover events fire with \n          pt.data, but drag events don't...\n        */\n        var gd = document.getElementById(el.id);\n        var trace = gd.data[pt.curveNumber];\n        \n        if (!trace._isSimpleKey) {\n          var attrsToAttach = [\"key\"];\n        } else {\n          // simple keys fire the whole key\n          obj.key = trace.key;\n          var attrsToAttach = [];\n        }\n        \n        for (var i = 0; i < attrsToAttach.length; i++) {\n          var attr = trace[attrsToAttach[i]];\n          if (Array.isArray(attr)) {\n              // pointNumber can be an array (e.g., heatmaps)\n              // TODO: can pointNumber be 3D?\n              obj[attrsToAttach[i]] = typeof pt.pointNumber === \"number\" ? \n                attr[pt.pointNumber] : attr[pt.pointNumber[0]][pt.pointNumber[1]];\n          }\n        }\n        return obj;\n      });\n    }\n    \n    \n    var legendEventData = function(d) {\n      // if legendgroup is not relevant just return the trace\n      var trace = d.data[d.curveNumber];\n      if (!trace.legendgroup) return trace;\n      \n      // if legendgroup was specified, return all traces that match the group\n      var legendgrps = d.data.map(function(trace){ return trace.legendgroup; });\n      var traces = [];\n      for (i = 0; i < legendgrps.length; i++) {\n        if (legendgrps[i] == trace.legendgroup) {\n          traces.push(d.data[i]);\n        }\n      }\n      \n      return traces;\n    };\n\n    \n    // send user input event data to shiny\n    if (HTMLWidgets.shinyMode) {\n      \n      // Some events clear other input values\n      // TODO: always register these?\n      var eventClearMap = {\n        plotly_deselect: [\"plotly_selected\", \"plotly_selecting\", \"plotly_brushed\", \"plotly_brushing\", \"plotly_click\"],\n        plotly_unhover: [\"plotly_hover\"],\n        plotly_doubleclick: [\"plotly_click\"]\n      };\n    \n      Object.keys(eventClearMap).map(function(evt) {\n        graphDiv.on(evt, function() {\n          var inputsToClear = eventClearMap[evt];\n          inputsToClear.map(function(input) {\n            Shiny.setInputValue(input + \"-\" + x.source, null, {priority: \"event\"});\n          });\n        });\n      });\n      \n      var eventDataFunctionMap = {\n        plotly_click: eventDataWithKey,\n        plotly_hover: eventDataWithKey,\n        plotly_unhover: eventDataWithKey,\n        // If 'plotly_selected' has already been fired, and you click\n        // on the plot afterwards, this event fires `undefined`?!?\n        // That might be considered a plotly.js bug, but it doesn't make \n        // sense for this input change to occur if `d` is falsy because,\n        // even in the empty selection case, `d` is truthy (an object),\n        // and the 'plotly_deselect' event will reset this input\n        plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } },\n        plotly_brushed: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_brushing: function(d) {\n          if (d) { return d.range ? d.range : d.lassoPoints; }\n        },\n        plotly_legendclick: legendEventData,\n        plotly_legenddoubleclick: legendEventData,\n        plotly_clickannotation: function(d) { return d.fullAnnotation }\n      };\n      \n      var registerShinyValue = function(event) {\n        var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id };\n        // some events are unique to the R package\n        var plotlyJSevent = (event == \"plotly_brushed\") ? \"plotly_selected\" : (event == \"plotly_brushing\") ? \"plotly_selecting\" : event;\n        // register the event\n        graphDiv.on(plotlyJSevent, function(d) {\n          Shiny.setInputValue(\n            event + \"-\" + x.source,\n            JSON.stringify(eventDataPreProcessor(d)),\n            {priority: \"event\"}\n          );\n        });\n      }\n    \n      var shinyEvents = x.shinyEvents || [];\n      shinyEvents.map(registerShinyValue);\n    }\n    \n    // Given an array of {curveNumber: x, pointNumber: y} objects,\n    // return a hash of {\n    //   set1: {value: [key1, key2, ...], _isSimpleKey: false}, \n    //   set2: {value: [key3, key4, ...], _isSimpleKey: false}\n    // }\n    function pointsToKeys(points) {\n      var keysBySet = {};\n      for (var i = 0; i < points.length; i++) {\n        \n        var trace = graphDiv.data[points[i].curveNumber];\n        if (!trace.key || !trace.set) {\n          continue;\n        }\n        \n        // set defaults for this keySet\n        // note that we don't track the nested property (yet) since we always \n        // emit the union -- http://cpsievert.github.io/talks/20161212b/#21\n        keysBySet[trace.set] = keysBySet[trace.set] || {\n          value: [],\n          _isSimpleKey: trace._isSimpleKey\n        };\n        \n        // Use pointNumber by default, but aggregated traces should emit pointNumbers\n        var ptNum = points[i].pointNumber;\n        var hasPtNum = typeof ptNum === \"number\";\n        var ptNum = hasPtNum ? ptNum : points[i].pointNumbers;\n        \n        // selecting a point of a \"simple\" trace means: select the \n        // entire key attached to this trace, which is useful for,\n        // say clicking on a fitted line to select corresponding observations \n        var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum];\n        // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript\n        var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key;\n        \n        // TODO: better to only add new values?\n        keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat);\n      }\n      \n      return keysBySet;\n    }\n    \n    \n    x.highlight.color = x.highlight.color || [];\n    // make sure highlight color is an array\n    if (!Array.isArray(x.highlight.color)) {\n      x.highlight.color = [x.highlight.color];\n    }\n\n    var traceManager = new TraceManager(graphDiv, x.highlight);\n\n    // Gather all *unique* sets.\n    var allSets = [];\n    for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) {\n      var newSet = x.data[curveIdx].set;\n      if (newSet) {\n        if (allSets.indexOf(newSet) === -1) {\n          allSets.push(newSet);\n        }\n      }\n    }\n\n    // register event listeners for all sets\n    for (var i = 0; i < allSets.length; i++) {\n      \n      var set = allSets[i];\n      var selection = new crosstalk.SelectionHandle(set);\n      var filter = new crosstalk.FilterHandle(set);\n      \n      var filterChange = function(e) {\n        removeBrush(el);\n        traceManager.updateFilter(set, e.value);\n      };\n      filter.on(\"change\", filterChange);\n      \n      \n      var selectionChange = function(e) {\n        \n        // Workaround for 'plotly_selected' now firing previously selected\n        // points (in addition to new ones) when holding shift key. In our case,\n        // we just want the new keys \n        if (x.highlight.on === \"plotly_selected\" && x.highlight.persistentShift) {\n          // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript\n          Array.prototype.diff = function(a) {\n              return this.filter(function(i) {return a.indexOf(i) < 0;});\n          };\n          e.value = e.value.diff(e.oldValue);\n        }\n        \n        // array of \"event objects\" tracking the selection history\n        // this is used to avoid adding redundant selections\n        var selectionHistory = crosstalk.var(\"plotlySelectionHistory\").get() || [];\n        \n        // Construct an event object \"defining\" the current event. \n        var event = {\n          receiverID: traceManager.gd.id,\n          plotlySelectionColour: crosstalk.group(set).var(\"plotlySelectionColour\").get()\n        };\n        event[set] = e.value;\n        // TODO: is there a smarter way to check object equality?\n        if (selectionHistory.length > 0) {\n          var ev = JSON.stringify(event);\n          for (var i = 0; i < selectionHistory.length; i++) {\n            var sel = JSON.stringify(selectionHistory[i]);\n            if (sel == ev) {\n              return;\n            }\n          }\n        }\n        \n        // accumulate history for persistent selection\n        if (!x.highlight.persistent) {\n          selectionHistory = [event];\n        } else {\n          selectionHistory.push(event);\n        }\n        crosstalk.var(\"plotlySelectionHistory\").set(selectionHistory);\n        \n        // do the actual updating of traces, frames, and the selectize widget\n        traceManager.updateSelection(set, e.value);\n        // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items\n        if (x.selectize) {\n          if (!x.highlight.persistent || e.value === null) {\n            selectize.clear(true);\n          }\n          selectize.addItems(e.value, true);\n          selectize.close();\n        }\n      }\n      selection.on(\"change\", selectionChange);\n      \n      // Set a crosstalk variable selection value, triggering an update\n      var turnOn = function(e) {\n        if (e) {\n          var selectedKeys = pointsToKeys(e.points);\n          // Keys are group names, values are array of selected keys from group.\n          for (var set in selectedKeys) {\n            if (selectedKeys.hasOwnProperty(set)) {\n              selection.set(selectedKeys[set].value, {sender: el});\n            }\n          }\n        }\n      };\n      if (x.highlight.debounce > 0) {\n        turnOn = debounce(turnOn, x.highlight.debounce);\n      }\n      graphDiv.on(x.highlight.on, turnOn);\n      \n      graphDiv.on(x.highlight.off, function turnOff(e) {\n        // remove any visual clues\n        removeBrush(el);\n        // remove any selection history\n        crosstalk.var(\"plotlySelectionHistory\").set(null);\n        // trigger the actual removal of selection traces\n        selection.set(null, {sender: el});\n      });\n          \n      // register a callback for selectize so that there is bi-directional\n      // communication between the widget and direct manipulation events\n      if (x.selectize) {\n        var selectizeID = Object.keys(x.selectize)[i];\n        var items = x.selectize[selectizeID].items;\n        var first = [{value: \"\", label: \"(All)\"}];\n        var opts = {\n          options: first.concat(items),\n          searchField: \"label\",\n          valueField: \"value\",\n          labelField: \"label\",\n          maxItems: 50\n        };\n        var select = $(\"#\" + selectizeID).find(\"select\")[0];\n        var selectize = $(select).selectize(opts)[0].selectize;\n        // NOTE: this callback is triggered when *directly* altering \n        // dropdown items\n        selectize.on(\"change\", function() {\n          var currentItems = traceManager.groupSelections[set] || [];\n          if (!x.highlight.persistent) {\n            removeBrush(el);\n            for (var i = 0; i < currentItems.length; i++) {\n              selectize.removeItem(currentItems[i], true);\n            }\n          }\n          var newItems = selectize.items.filter(function(idx) { \n            return currentItems.indexOf(idx) < 0;\n          });\n          if (newItems.length > 0) {\n            traceManager.updateSelection(set, newItems);\n          } else {\n            // Item has been removed...\n            // TODO: this logic won't work for dynamically changing palette \n            traceManager.updateSelection(set, null);\n            traceManager.updateSelection(set, selectize.items);\n          }\n        });\n      }\n    } // end of selectionChange\n    \n  } // end of renderValue\n}); // end of widget definition\n\n/**\n * @param graphDiv The Plotly graph div\n * @param highlight An object with options for updating selection(s)\n */\nfunction TraceManager(graphDiv, highlight) {\n  // The Plotly graph div\n  this.gd = graphDiv;\n\n  // Preserve the original data.\n  // TODO: try using Lib.extendFlat() as done in  \n  // https://github.com/plotly/plotly.js/pull/1136 \n  this.origData = JSON.parse(JSON.stringify(graphDiv.data));\n  \n  // avoid doing this over and over\n  this.origOpacity = [];\n  for (var i = 0; i < this.origData.length; i++) {\n    this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1);\n  }\n\n  // key: group name, value: null or array of keys representing the\n  // most recently received selection for that group.\n  this.groupSelections = {};\n  \n  // selection parameters (e.g., transient versus persistent selection)\n  this.highlight = highlight;\n}\n\nTraceManager.prototype.close = function() {\n  // TODO: Unhook all event handlers\n};\n\nTraceManager.prototype.updateFilter = function(group, keys) {\n\n  if (typeof(keys) === \"undefined\" || keys === null) {\n    \n    this.gd.data = JSON.parse(JSON.stringify(this.origData));\n    \n  } else {\n  \n    var traces = [];\n    for (var i = 0; i < this.origData.length; i++) {\n      var trace = this.origData[i];\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        if (!trace._isSimpleKey) {\n          // subsetArrayAttrs doesn't mutate trace (it makes a modified clone)\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        traces.push(trace);\n      }\n    }\n  }\n  \n  this.gd.data = traces;\n  Plotly.redraw(this.gd);\n  \n  // NOTE: we purposely do _not_ restore selection(s), since on filter,\n  // axis likely will update, changing the pixel -> data mapping, leading \n  // to a likely mismatch in the brush outline and highlighted marks\n  \n};\n\nTraceManager.prototype.updateSelection = function(group, keys) {\n  \n  if (keys !== null && !Array.isArray(keys)) {\n    throw new Error(\"Invalid keys argument; null or array expected\");\n  }\n  \n  // if selection has been cleared, or if this is transient\n  // selection, delete the \"selection traces\"\n  var nNewTraces = this.gd.data.length - this.origData.length;\n  if (keys === null || !this.highlight.persistent && nNewTraces > 0) {\n    var tracesToRemove = [];\n    for (var i = 0; i < this.gd.data.length; i++) {\n      if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i);\n    }\n    Plotly.deleteTraces(this.gd, tracesToRemove);\n    this.groupSelections[group] = keys;\n  } else {\n    // add to the groupSelection, rather than overwriting it\n    // TODO: can this be removed?\n    this.groupSelections[group] = this.groupSelections[group] || [];\n    for (var i = 0; i < keys.length; i++) {\n      var k = keys[i];\n      if (this.groupSelections[group].indexOf(k) < 0) {\n        this.groupSelections[group].push(k);\n      }\n    }\n  }\n  \n  if (keys === null) {\n    \n    Plotly.restyle(this.gd, {\"opacity\": this.origOpacity});\n    \n  } else if (keys.length >= 1) {\n    \n    // placeholder for new \"selection traces\"\n    var traces = [];\n    // this variable is set in R/highlight.R\n    var selectionColour = crosstalk.group(group).var(\"plotlySelectionColour\").get() || \n      this.highlight.color[0];\n\n    for (var i = 0; i < this.origData.length; i++) {\n      // TODO: try using Lib.extendFlat() as done in  \n      // https://github.com/plotly/plotly.js/pull/1136 \n      var trace = JSON.parse(JSON.stringify(this.gd.data[i]));\n      if (!trace.key || trace.set !== group) {\n        continue;\n      }\n      // Get sorted array of matching indices in trace.key\n      var matchFunc = getMatchFunc(trace);\n      var matches = matchFunc(trace.key, keys);\n      \n      if (matches.length > 0) {\n        // If this is a \"simple\" key, that means select the entire trace\n        if (!trace._isSimpleKey) {\n          trace = subsetArrayAttrs(trace, matches);\n        }\n        // reach into the full trace object so we can properly reflect the \n        // selection attributes in every view\n        var d = this.gd._fullData[i];\n        \n        /* \n        / Recursively inherit selection attributes from various sources, \n        / in order of preference:\n        /  (1) official plotly.js selected attribute\n        /  (2) highlight(selected = attrs_selected(...))\n        */\n        // TODO: it would be neat to have a dropdown to dynamically specify these!\n        $.extend(true, trace, this.highlight.selected);\n        \n        // if it is defined, override color with the \"dynamic brush color\"\"\n        if (d.marker) {\n          trace.marker = trace.marker || {};\n          trace.marker.color =  selectionColour || trace.marker.color || d.marker.color;\n        }\n        if (d.line) {\n          trace.line = trace.line || {};\n          trace.line.color =  selectionColour || trace.line.color || d.line.color;\n        }\n        if (d.textfont) {\n          trace.textfont = trace.textfont || {};\n          trace.textfont.color =  selectionColour || trace.textfont.color || d.textfont.color;\n        }\n        if (d.fillcolor) {\n          // TODO: should selectionColour inherit alpha from the existing fillcolor?\n          trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor;\n        }\n        // attach a sensible name/legendgroup\n        trace.name = trace.name || keys.join(\"<br />\");\n        trace.legendgroup = trace.legendgroup || keys.join(\"<br />\");\n        \n        // keep track of mapping between this new trace and the trace it targets\n        // (necessary for updating frames to reflect the selection traces)\n        trace._originalIndex = i;\n        trace._newIndex = this.gd._fullData.length + traces.length;\n        trace._isCrosstalkTrace = true;\n        traces.push(trace);\n      }\n    }\n    \n    if (traces.length > 0) {\n      \n      Plotly.addTraces(this.gd, traces).then(function(gd) {\n        // incrementally add selection traces to frames\n        // (this is heavily inspired by Plotly.Plots.modifyFrames() \n        // in src/plots/plots.js)\n        var _hash = gd._transitionData._frameHash;\n        var _frames = gd._transitionData._frames || [];\n        \n        for (var i = 0; i < _frames.length; i++) {\n          \n          // add to _frames[i].traces *if* this frame references selected trace(s)\n          var newIndices = [];\n          for (var j = 0; j < traces.length; j++) {\n            var tr = traces[j];\n            if (_frames[i].traces.indexOf(tr._originalIndex) > -1) {\n              newIndices.push(tr._newIndex);\n              _frames[i].traces.push(tr._newIndex);\n            }\n          }\n          \n          // nothing to do...\n          if (newIndices.length === 0) {\n            continue;\n          }\n          \n          var ctr = 0;\n          var nFrameTraces = _frames[i].data.length;\n          \n          for (var j = 0; j < nFrameTraces; j++) {\n            var frameTrace = _frames[i].data[j];\n            if (!frameTrace.key || frameTrace.set !== group) {\n              continue;\n            }\n            \n            var matchFunc = getMatchFunc(frameTrace);\n            var matches = matchFunc(frameTrace.key, keys);\n            \n            if (matches.length > 0) {\n              if (!trace._isSimpleKey) {\n                frameTrace = subsetArrayAttrs(frameTrace, matches);\n              }\n              var d = gd._fullData[newIndices[ctr]];\n              if (d.marker) {\n                frameTrace.marker = d.marker;\n              }\n              if (d.line) {\n                frameTrace.line = d.line;\n              }\n              if (d.textfont) {\n                frameTrace.textfont = d.textfont;\n              }\n              ctr = ctr + 1;\n              _frames[i].data.push(frameTrace);\n            }\n          }\n          \n          // update gd._transitionData._frameHash\n          _hash[_frames[i].name] = _frames[i];\n        }\n      \n      });\n      \n      // dim traces that have a set matching the set of selection sets\n      var tracesToDim = [],\n          opacities = [],\n          sets = Object.keys(this.groupSelections),\n          n = this.origData.length;\n          \n      for (var i = 0; i < n; i++) {\n        var opacity = this.origOpacity[i] || 1;\n        // have we already dimmed this trace? Or is this even worth doing?\n        if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) {\n          continue;\n        }\n        // is this set an element of the set of selection sets?\n        var matches = findMatches(sets, [this.gd.data[i].set]);\n        if (matches.length) {\n          tracesToDim.push(i);\n          opacities.push(opacity * this.highlight.opacityDim);\n        }\n      }\n      \n      if (tracesToDim.length > 0) {\n        Plotly.restyle(this.gd, {\"opacity\": opacities}, tracesToDim);\n        // turn off the selected/unselected API\n        Plotly.restyle(this.gd, {\"selectedpoints\": null});\n      }\n      \n    }\n    \n  }\n};\n\n/* \nNote: in all of these match functions, we assume needleSet (i.e. the selected keys)\nis a 1D (or flat) array. The real difference is the meaning of haystack.\nfindMatches() does the usual thing you'd expect for \nlinked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff \nhaystack is a subset of the needleSet. findNestedMatches() returns \n*/\n\nfunction getMatchFunc(trace) {\n  return (trace._isNestedKey) ? findNestedMatches : \n    (trace._isSimpleKey) ? findSimpleMatches : findMatches;\n}\n\n// find matches for \"flat\" keys\nfunction findMatches(haystack, needleSet) {\n  var matches = [];\n  haystack.forEach(function(obj, i) {\n    if (obj === null || needleSet.indexOf(obj) >= 0) {\n      matches.push(i);\n    }\n  });\n  return matches;\n}\n\n// find matches for \"simple\" keys\nfunction findSimpleMatches(haystack, needleSet) {\n  var match = haystack.every(function(val) {\n    return val === null || needleSet.indexOf(val) >= 0;\n  });\n  // yes, this doesn't make much sense other than conforming \n  // to the output type of the other match functions\n  return (match) ? [0] : []\n}\n\n// find matches for a \"nested\" haystack (2D arrays)\nfunction findNestedMatches(haystack, needleSet) {\n  var matches = [];\n  for (var i = 0; i < haystack.length; i++) {\n    var hay = haystack[i];\n    var match = hay.every(function(val) { \n      return val === null || needleSet.indexOf(val) >= 0; \n    });\n    if (match) {\n      matches.push(i);\n    }\n  }\n  return matches;\n}\n\nfunction isPlainObject(obj) {\n  return (\n    Object.prototype.toString.call(obj) === '[object Object]' &&\n    Object.getPrototypeOf(obj) === Object.prototype\n  );\n}\n\nfunction subsetArrayAttrs(obj, indices) {\n  var newObj = {};\n  Object.keys(obj).forEach(function(k) {\n    var val = obj[k];\n\n    if (k.charAt(0) === \"_\") {\n      newObj[k] = val;\n    } else if (k === \"transforms\" && Array.isArray(val)) {\n      newObj[k] = val.map(function(transform) {\n        return subsetArrayAttrs(transform, indices);\n      });\n    } else if (k === \"colorscale\" && Array.isArray(val)) {\n      newObj[k] = val;\n    } else if (isPlainObject(val)) {\n      newObj[k] = subsetArrayAttrs(val, indices);\n    } else if (Array.isArray(val)) {\n      newObj[k] = subsetArray(val, indices);\n    } else {\n      newObj[k] = val;\n    }\n  });\n  return newObj;\n}\n\nfunction subsetArray(arr, indices) {\n  var result = [];\n  for (var i = 0; i < indices.length; i++) {\n    result.push(arr[indices[i]]);\n  }\n  return result;\n}\n\n// Convenience function for removing plotly's brush \nfunction removeBrush(el) {\n  var outlines = el.querySelectorAll(\".select-outline\");\n  for (var i = 0; i < outlines.length; i++) {\n    outlines[i].remove();\n  }\n}\n\n\n// https://davidwalsh.name/javascript-debounce-function\n\n// Returns a function, that, as long as it continues to be invoked, will not\n// be triggered. The function will be called after it stops being called for\n// N milliseconds. If `immediate` is passed, trigger the function on the\n// leading edge, instead of the trailing.\nfunction debounce(func, wait, immediate) {\n\tvar timeout;\n\treturn function() {\n\t\tvar context = this, args = arguments;\n\t\tvar later = function() {\n\t\t\ttimeout = null;\n\t\t\tif (!immediate) func.apply(context, args);\n\t\t};\n\t\tvar callNow = immediate && !timeout;\n\t\tclearTimeout(timeout);\n\t\ttimeout = setTimeout(later, wait);\n\t\tif (callNow) func.apply(context, args);\n\t};\n};\n"
  },
  {
    "path": "lib/plotly-htmlwidgets-css-1.39.2/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "lib/plotly-htmlwidgets-css-1.46.1/plotly-htmlwidgets.css",
    "content": "/*\njust here so that plotly works\ncorrectly with ioslides.\nsee https://github.com/ropensci/plotly/issues/463\n*/\n\nslide:not(.current) .plotly.html-widget{\n  display: none;\n}\n"
  },
  {
    "path": "renv/.gitignore",
    "content": "library/\nlocal/\ncellar/\nlock/\npython/\nstaging/\n"
  },
  {
    "path": "renv/activate.R",
    "content": "\nlocal({\n\n  # the requested version of renv\n  version <- \"0.15.4\"\n\n  # the project directory\n  project <- getwd()\n\n  # figure out whether the autoloader is enabled\n  enabled <- local({\n\n    # first, check config option\n    override <- getOption(\"renv.config.autoloader.enabled\")\n    if (!is.null(override))\n      return(override)\n\n    # next, check environment variables\n    # TODO: prefer using the configuration one in the future\n    envvars <- c(\n      \"RENV_CONFIG_AUTOLOADER_ENABLED\",\n      \"RENV_AUTOLOADER_ENABLED\",\n      \"RENV_ACTIVATE_PROJECT\"\n    )\n\n    for (envvar in envvars) {\n      envval <- Sys.getenv(envvar, unset = NA)\n      if (!is.na(envval))\n        return(tolower(envval) %in% c(\"true\", \"t\", \"1\"))\n    }\n\n    # enable by default\n    TRUE\n\n  })\n\n  if (!enabled)\n    return(FALSE)\n\n  # avoid recursion\n  if (identical(getOption(\"renv.autoloader.running\"), TRUE)) {\n    warning(\"ignoring recursive attempt to run renv autoloader\")\n    return(invisible(TRUE))\n  }\n\n  # signal that we're loading renv during R startup\n  options(renv.autoloader.running = TRUE)\n  on.exit(options(renv.autoloader.running = NULL), add = TRUE)\n\n  # signal that we've consented to use renv\n  options(renv.consent = TRUE)\n\n  # load the 'utils' package eagerly -- this ensures that renv shims, which\n  # mask 'utils' packages, will come first on the search path\n  library(utils, lib.loc = .Library)\n\n  # unload renv if it's already been laoded\n  if (\"renv\" %in% loadedNamespaces())\n    unloadNamespace(\"renv\")\n\n  # load bootstrap tools   \n  `%||%` <- function(x, y) {\n    if (is.environment(x) || length(x)) x else y\n  }\n  \n  bootstrap <- function(version, library) {\n  \n    # attempt to download renv\n    tarball <- tryCatch(renv_bootstrap_download(version), error = identity)\n    if (inherits(tarball, \"error\"))\n      stop(\"failed to download renv \", version)\n  \n    # now attempt to install\n    status <- tryCatch(renv_bootstrap_install(version, tarball, library), error = identity)\n    if (inherits(status, \"error\"))\n      stop(\"failed to install renv \", version)\n  \n  }\n  \n  renv_bootstrap_tests_running <- function() {\n    getOption(\"renv.tests.running\", default = FALSE)\n  }\n  \n  renv_bootstrap_repos <- function() {\n  \n    # check for repos override\n    repos <- Sys.getenv(\"RENV_CONFIG_REPOS_OVERRIDE\", unset = NA)\n    if (!is.na(repos))\n      return(repos)\n  \n    # check for lockfile repositories\n    repos <- tryCatch(renv_bootstrap_repos_lockfile(), error = identity)\n    if (!inherits(repos, \"error\") && length(repos))\n      return(repos)\n  \n    # if we're testing, re-use the test repositories\n    if (renv_bootstrap_tests_running())\n      return(getOption(\"renv.tests.repos\"))\n  \n    # retrieve current repos\n    repos <- getOption(\"repos\")\n  \n    # ensure @CRAN@ entries are resolved\n    repos[repos == \"@CRAN@\"] <- getOption(\n      \"renv.repos.cran\",\n      \"https://cloud.r-project.org\"\n    )\n  \n    # add in renv.bootstrap.repos if set\n    default <- c(FALLBACK = \"https://cloud.r-project.org\")\n    extra <- getOption(\"renv.bootstrap.repos\", default = default)\n    repos <- c(repos, extra)\n  \n    # remove duplicates that might've snuck in\n    dupes <- duplicated(repos) | duplicated(names(repos))\n    repos[!dupes]\n  \n  }\n  \n  renv_bootstrap_repos_lockfile <- function() {\n  \n    lockpath <- Sys.getenv(\"RENV_PATHS_LOCKFILE\", unset = \"renv.lock\")\n    if (!file.exists(lockpath))\n      return(NULL)\n  \n    lockfile <- tryCatch(renv_json_read(lockpath), error = identity)\n    if (inherits(lockfile, \"error\")) {\n      warning(lockfile)\n      return(NULL)\n    }\n  \n    repos <- lockfile$R$Repositories\n    if (length(repos) == 0)\n      return(NULL)\n  \n    keys <- vapply(repos, `[[`, \"Name\", FUN.VALUE = character(1))\n    vals <- vapply(repos, `[[`, \"URL\", FUN.VALUE = character(1))\n    names(vals) <- keys\n  \n    return(vals)\n  \n  }\n  \n  renv_bootstrap_download <- function(version) {\n  \n    # if the renv version number has 4 components, assume it must\n    # be retrieved via github\n    nv <- numeric_version(version)\n    components <- unclass(nv)[[1]]\n  \n    # if this appears to be a development version of 'renv', we'll\n    # try to restore from github\n    dev <- length(components) == 4L\n  \n    # begin collecting different methods for finding renv\n    methods <- c(\n      renv_bootstrap_download_tarball,\n      if (dev)\n        renv_bootstrap_download_github\n      else c(\n        renv_bootstrap_download_cran_latest,\n        renv_bootstrap_download_cran_archive\n      )\n    )\n  \n    for (method in methods) {\n      path <- tryCatch(method(version), error = identity)\n      if (is.character(path) && file.exists(path))\n        return(path)\n    }\n  \n    stop(\"failed to download renv \", version)\n  \n  }\n  \n  renv_bootstrap_download_impl <- function(url, destfile) {\n  \n    mode <- \"wb\"\n  \n    # https://bugs.r-project.org/bugzilla/show_bug.cgi?id=17715\n    fixup <-\n      Sys.info()[[\"sysname\"]] == \"Windows\" &&\n      substring(url, 1L, 5L) == \"file:\"\n  \n    if (fixup)\n      mode <- \"w+b\"\n  \n    utils::download.file(\n      url      = url,\n      destfile = destfile,\n      mode     = mode,\n      quiet    = TRUE\n    )\n  \n  }\n  \n  renv_bootstrap_download_cran_latest <- function(version) {\n  \n    spec <- renv_bootstrap_download_cran_latest_find(version)\n  \n    message(\"* Downloading renv \", version, \" ... \", appendLF = FALSE)\n  \n    type  <- spec$type\n    repos <- spec$repos\n  \n    info <- tryCatch(\n      utils::download.packages(\n        pkgs    = \"renv\",\n        destdir = tempdir(),\n        repos   = repos,\n        type    = type,\n        quiet   = TRUE\n      ),\n      condition = identity\n    )\n  \n    if (inherits(info, \"condition\")) {\n      message(\"FAILED\")\n      return(FALSE)\n    }\n  \n    # report success and return\n    message(\"OK (downloaded \", type, \")\")\n    info[1, 2]\n  \n  }\n  \n  renv_bootstrap_download_cran_latest_find <- function(version) {\n  \n    # check whether binaries are supported on this system\n    binary <-\n      getOption(\"renv.bootstrap.binary\", default = TRUE) &&\n      !identical(.Platform$pkgType, \"source\") &&\n      !identical(getOption(\"pkgType\"), \"source\") &&\n      Sys.info()[[\"sysname\"]] %in% c(\"Darwin\", \"Windows\")\n  \n    types <- c(if (binary) \"binary\", \"source\")\n  \n    # iterate over types + repositories\n    for (type in types) {\n      for (repos in renv_bootstrap_repos()) {\n  \n        # retrieve package database\n        db <- tryCatch(\n          as.data.frame(\n            utils::available.packages(type = type, repos = repos),\n            stringsAsFactors = FALSE\n          ),\n          error = identity\n        )\n  \n        if (inherits(db, \"error\"))\n          next\n  \n        # check for compatible entry\n        entry <- db[db$Package %in% \"renv\" & db$Version %in% version, ]\n        if (nrow(entry) == 0)\n          next\n  \n        # found it; return spec to caller\n        spec <- list(entry = entry, type = type, repos = repos)\n        return(spec)\n  \n      }\n    }\n  \n    # if we got here, we failed to find renv\n    fmt <- \"renv %s is not available from your declared package repositories\"\n    stop(sprintf(fmt, version))\n  \n  }\n  \n  renv_bootstrap_download_cran_archive <- function(version) {\n  \n    name <- sprintf(\"renv_%s.tar.gz\", version)\n    repos <- renv_bootstrap_repos()\n    urls <- file.path(repos, \"src/contrib/Archive/renv\", name)\n    destfile <- file.path(tempdir(), name)\n  \n    message(\"* Downloading renv \", version, \" ... \", appendLF = FALSE)\n  \n    for (url in urls) {\n  \n      status <- tryCatch(\n        renv_bootstrap_download_impl(url, destfile),\n        condition = identity\n      )\n  \n      if (identical(status, 0L)) {\n        message(\"OK\")\n        return(destfile)\n      }\n  \n    }\n  \n    message(\"FAILED\")\n    return(FALSE)\n  \n  }\n  \n  renv_bootstrap_download_tarball <- function(version) {\n  \n    # if the user has provided the path to a tarball via\n    # an environment variable, then use it\n    tarball <- Sys.getenv(\"RENV_BOOTSTRAP_TARBALL\", unset = NA)\n    if (is.na(tarball))\n      return()\n  \n    # allow directories\n    info <- file.info(tarball, extra_cols = FALSE)\n    if (identical(info$isdir, TRUE)) {\n      name <- sprintf(\"renv_%s.tar.gz\", version)\n      tarball <- file.path(tarball, name)\n    }\n  \n    # bail if it doesn't exist\n    if (!file.exists(tarball))\n      return()\n  \n    fmt <- \"* Bootstrapping with tarball at path '%s'.\"\n    msg <- sprintf(fmt, tarball)\n    message(msg)\n  \n    tarball\n  \n  }\n  \n  renv_bootstrap_download_github <- function(version) {\n  \n    enabled <- Sys.getenv(\"RENV_BOOTSTRAP_FROM_GITHUB\", unset = \"TRUE\")\n    if (!identical(enabled, \"TRUE\"))\n      return(FALSE)\n  \n    # prepare download options\n    pat <- Sys.getenv(\"GITHUB_PAT\")\n    if (nzchar(Sys.which(\"curl\")) && nzchar(pat)) {\n      fmt <- \"--location --fail --header \\\"Authorization: token %s\\\"\"\n      extra <- sprintf(fmt, pat)\n      saved <- options(\"download.file.method\", \"download.file.extra\")\n      options(download.file.method = \"curl\", download.file.extra = extra)\n      on.exit(do.call(base::options, saved), add = TRUE)\n    } else if (nzchar(Sys.which(\"wget\")) && nzchar(pat)) {\n      fmt <- \"--header=\\\"Authorization: token %s\\\"\"\n      extra <- sprintf(fmt, pat)\n      saved <- options(\"download.file.method\", \"download.file.extra\")\n      options(download.file.method = \"wget\", download.file.extra = extra)\n      on.exit(do.call(base::options, saved), add = TRUE)\n    }\n  \n    message(\"* Downloading renv \", version, \" from GitHub ... \", appendLF = FALSE)\n  \n    url <- file.path(\"https://api.github.com/repos/rstudio/renv/tarball\", version)\n    name <- sprintf(\"renv_%s.tar.gz\", version)\n    destfile <- file.path(tempdir(), name)\n  \n    status <- tryCatch(\n      renv_bootstrap_download_impl(url, destfile),\n      condition = identity\n    )\n  \n    if (!identical(status, 0L)) {\n      message(\"FAILED\")\n      return(FALSE)\n    }\n  \n    message(\"OK\")\n    return(destfile)\n  \n  }\n  \n  renv_bootstrap_install <- function(version, tarball, library) {\n  \n    # attempt to install it into project library\n    message(\"* Installing renv \", version, \" ... \", appendLF = FALSE)\n    dir.create(library, showWarnings = FALSE, recursive = TRUE)\n  \n    # invoke using system2 so we can capture and report output\n    bin <- R.home(\"bin\")\n    exe <- if (Sys.info()[[\"sysname\"]] == \"Windows\") \"R.exe\" else \"R\"\n    r <- file.path(bin, exe)\n  \n    args <- c(\n      \"--vanilla\", \"CMD\", \"INSTALL\", \"--no-multiarch\",\n      \"-l\", shQuote(path.expand(library)),\n      shQuote(path.expand(tarball))\n    )\n  \n    output <- system2(r, args, stdout = TRUE, stderr = TRUE)\n    message(\"Done!\")\n  \n    # check for successful install\n    status <- attr(output, \"status\")\n    if (is.numeric(status) && !identical(status, 0L)) {\n      header <- \"Error installing renv:\"\n      lines <- paste(rep.int(\"=\", nchar(header)), collapse = \"\")\n      text <- c(header, lines, output)\n      writeLines(text, con = stderr())\n    }\n  \n    status\n  \n  }\n  \n  renv_bootstrap_platform_prefix <- function() {\n  \n    # construct version prefix\n    version <- paste(R.version$major, R.version$minor, sep = \".\")\n    prefix <- paste(\"R\", numeric_version(version)[1, 1:2], sep = \"-\")\n  \n    # include SVN revision for development versions of R\n    # (to avoid sharing platform-specific artefacts with released versions of R)\n    devel <-\n      identical(R.version[[\"status\"]],   \"Under development (unstable)\") ||\n      identical(R.version[[\"nickname\"]], \"Unsuffered Consequences\")\n  \n    if (devel)\n      prefix <- paste(prefix, R.version[[\"svn rev\"]], sep = \"-r\")\n  \n    # build list of path components\n    components <- c(prefix, R.version$platform)\n  \n    # include prefix if provided by user\n    prefix <- renv_bootstrap_platform_prefix_impl()\n    if (!is.na(prefix) && nzchar(prefix))\n      components <- c(prefix, components)\n  \n    # build prefix\n    paste(components, collapse = \"/\")\n  \n  }\n  \n  renv_bootstrap_platform_prefix_impl <- function() {\n  \n    # if an explicit prefix has been supplied, use it\n    prefix <- Sys.getenv(\"RENV_PATHS_PREFIX\", unset = NA)\n    if (!is.na(prefix))\n      return(prefix)\n  \n    # if the user has requested an automatic prefix, generate it\n    auto <- Sys.getenv(\"RENV_PATHS_PREFIX_AUTO\", unset = NA)\n    if (auto %in% c(\"TRUE\", \"True\", \"true\", \"1\"))\n      return(renv_bootstrap_platform_prefix_auto())\n  \n    # empty string on failure\n    \"\"\n  \n  }\n  \n  renv_bootstrap_platform_prefix_auto <- function() {\n  \n    prefix <- tryCatch(renv_bootstrap_platform_os(), error = identity)\n    if (inherits(prefix, \"error\") || prefix %in% \"unknown\") {\n  \n      msg <- paste(\n        \"failed to infer current operating system\",\n        \"please file a bug report at https://github.com/rstudio/renv/issues\",\n        sep = \"; \"\n      )\n  \n      warning(msg)\n  \n    }\n  \n    prefix\n  \n  }\n  \n  renv_bootstrap_platform_os <- function() {\n  \n    sysinfo <- Sys.info()\n    sysname <- sysinfo[[\"sysname\"]]\n  \n    # handle Windows + macOS up front\n    if (sysname == \"Windows\")\n      return(\"windows\")\n    else if (sysname == \"Darwin\")\n      return(\"macos\")\n  \n    # check for os-release files\n    for (file in c(\"/etc/os-release\", \"/usr/lib/os-release\"))\n      if (file.exists(file))\n        return(renv_bootstrap_platform_os_via_os_release(file, sysinfo))\n  \n    # check for redhat-release files\n    if (file.exists(\"/etc/redhat-release\"))\n      return(renv_bootstrap_platform_os_via_redhat_release())\n  \n    \"unknown\"\n  \n  }\n  \n  renv_bootstrap_platform_os_via_os_release <- function(file, sysinfo) {\n  \n    # read /etc/os-release\n    release <- utils::read.table(\n      file             = file,\n      sep              = \"=\",\n      quote            = c(\"\\\"\", \"'\"),\n      col.names        = c(\"Key\", \"Value\"),\n      comment.char     = \"#\",\n      stringsAsFactors = FALSE\n    )\n  \n    vars <- as.list(release$Value)\n    names(vars) <- release$Key\n  \n    # get os name\n    os <- tolower(sysinfo[[\"sysname\"]])\n  \n    # read id\n    id <- \"unknown\"\n    for (field in c(\"ID\", \"ID_LIKE\")) {\n      if (field %in% names(vars) && nzchar(vars[[field]])) {\n        id <- vars[[field]]\n        break\n      }\n    }\n  \n    # read version\n    version <- \"unknown\"\n    for (field in c(\"UBUNTU_CODENAME\", \"VERSION_CODENAME\", \"VERSION_ID\", \"BUILD_ID\")) {\n      if (field %in% names(vars) && nzchar(vars[[field]])) {\n        version <- vars[[field]]\n        break\n      }\n    }\n  \n    # join together\n    paste(c(os, id, version), collapse = \"-\")\n  \n  }\n  \n  renv_bootstrap_platform_os_via_redhat_release <- function() {\n  \n    # read /etc/redhat-release\n    contents <- readLines(\"/etc/redhat-release\", warn = FALSE)\n  \n    # infer id\n    id <- if (grepl(\"centos\", contents, ignore.case = TRUE))\n      \"centos\"\n    else if (grepl(\"redhat\", contents, ignore.case = TRUE))\n      \"redhat\"\n    else\n      \"unknown\"\n  \n    # try to find a version component (very hacky)\n    version <- \"unknown\"\n  \n    parts <- strsplit(contents, \"[[:space:]]\")[[1L]]\n    for (part in parts) {\n  \n      nv <- tryCatch(numeric_version(part), error = identity)\n      if (inherits(nv, \"error\"))\n        next\n  \n      version <- nv[1, 1]\n      break\n  \n    }\n  \n    paste(c(\"linux\", id, version), collapse = \"-\")\n  \n  }\n  \n  renv_bootstrap_library_root_name <- function(project) {\n  \n    # use project name as-is if requested\n    asis <- Sys.getenv(\"RENV_PATHS_LIBRARY_ROOT_ASIS\", unset = \"FALSE\")\n    if (asis)\n      return(basename(project))\n  \n    # otherwise, disambiguate based on project's path\n    id <- substring(renv_bootstrap_hash_text(project), 1L, 8L)\n    paste(basename(project), id, sep = \"-\")\n  \n  }\n  \n  renv_bootstrap_library_root <- function(project) {\n  \n    prefix <- renv_bootstrap_profile_prefix()\n  \n    path <- Sys.getenv(\"RENV_PATHS_LIBRARY\", unset = NA)\n    if (!is.na(path))\n      return(paste(c(path, prefix), collapse = \"/\"))\n  \n    path <- renv_bootstrap_library_root_impl(project)\n    if (!is.null(path)) {\n      name <- renv_bootstrap_library_root_name(project)\n      return(paste(c(path, prefix, name), collapse = \"/\"))\n    }\n  \n    renv_bootstrap_paths_renv(\"library\", project = project)\n  \n  }\n  \n  renv_bootstrap_library_root_impl <- function(project) {\n  \n    root <- Sys.getenv(\"RENV_PATHS_LIBRARY_ROOT\", unset = NA)\n    if (!is.na(root))\n      return(root)\n  \n    type <- renv_bootstrap_project_type(project)\n    if (identical(type, \"package\")) {\n      userdir <- renv_bootstrap_user_dir()\n      return(file.path(userdir, \"library\"))\n    }\n  \n  }\n  \n  renv_bootstrap_validate_version <- function(version) {\n  \n    loadedversion <- utils::packageDescription(\"renv\", fields = \"Version\")\n    if (version == loadedversion)\n      return(TRUE)\n  \n    # assume four-component versions are from GitHub; three-component\n    # versions are from CRAN\n    components <- strsplit(loadedversion, \"[.-]\")[[1]]\n    remote <- if (length(components) == 4L)\n      paste(\"rstudio/renv\", loadedversion, sep = \"@\")\n    else\n      paste(\"renv\", loadedversion, sep = \"@\")\n  \n    fmt <- paste(\n      \"renv %1$s was loaded from project library, but this project is configured to use renv %2$s.\",\n      \"Use `renv::record(\\\"%3$s\\\")` to record renv %1$s in the lockfile.\",\n      \"Use `renv::restore(packages = \\\"renv\\\")` to install renv %2$s into the project library.\",\n      sep = \"\\n\"\n    )\n  \n    msg <- sprintf(fmt, loadedversion, version, remote)\n    warning(msg, call. = FALSE)\n  \n    FALSE\n  \n  }\n  \n  renv_bootstrap_hash_text <- function(text) {\n  \n    hashfile <- tempfile(\"renv-hash-\")\n    on.exit(unlink(hashfile), add = TRUE)\n  \n    writeLines(text, con = hashfile)\n    tools::md5sum(hashfile)\n  \n  }\n  \n  renv_bootstrap_load <- function(project, libpath, version) {\n  \n    # try to load renv from the project library\n    if (!requireNamespace(\"renv\", lib.loc = libpath, quietly = TRUE))\n      return(FALSE)\n  \n    # warn if the version of renv loaded does not match\n    renv_bootstrap_validate_version(version)\n  \n    # load the project\n    renv::load(project)\n  \n    TRUE\n  \n  }\n  \n  renv_bootstrap_profile_load <- function(project) {\n  \n    # if RENV_PROFILE is already set, just use that\n    profile <- Sys.getenv(\"RENV_PROFILE\", unset = NA)\n    if (!is.na(profile) && nzchar(profile))\n      return(profile)\n  \n    # check for a profile file (nothing to do if it doesn't exist)\n    path <- renv_bootstrap_paths_renv(\"profile\", profile = FALSE)\n    if (!file.exists(path))\n      return(NULL)\n  \n    # read the profile, and set it if it exists\n    contents <- readLines(path, warn = FALSE)\n    if (length(contents) == 0L)\n      return(NULL)\n  \n    # set RENV_PROFILE\n    profile <- contents[[1L]]\n    if (!profile %in% c(\"\", \"default\"))\n      Sys.setenv(RENV_PROFILE = profile)\n  \n    profile\n  \n  }\n  \n  renv_bootstrap_profile_prefix <- function() {\n    profile <- renv_bootstrap_profile_get()\n    if (!is.null(profile))\n      return(file.path(\"profiles\", profile, \"renv\"))\n  }\n  \n  renv_bootstrap_profile_get <- function() {\n    profile <- Sys.getenv(\"RENV_PROFILE\", unset = \"\")\n    renv_bootstrap_profile_normalize(profile)\n  }\n  \n  renv_bootstrap_profile_set <- function(profile) {\n    profile <- renv_bootstrap_profile_normalize(profile)\n    if (is.null(profile))\n      Sys.unsetenv(\"RENV_PROFILE\")\n    else\n      Sys.setenv(RENV_PROFILE = profile)\n  }\n  \n  renv_bootstrap_profile_normalize <- function(profile) {\n  \n    if (is.null(profile) || profile %in% c(\"\", \"default\"))\n      return(NULL)\n  \n    profile\n  \n  }\n  \n  renv_bootstrap_path_absolute <- function(path) {\n  \n    substr(path, 1L, 1L) %in% c(\"~\", \"/\", \"\\\\\") || (\n      substr(path, 1L, 1L) %in% c(letters, LETTERS) &&\n      substr(path, 2L, 3L) %in% c(\":/\", \":\\\\\")\n    )\n  \n  }\n  \n  renv_bootstrap_paths_renv <- function(..., profile = TRUE, project = NULL) {\n    renv <- Sys.getenv(\"RENV_PATHS_RENV\", unset = \"renv\")\n    root <- if (renv_bootstrap_path_absolute(renv)) NULL else project\n    prefix <- if (profile) renv_bootstrap_profile_prefix()\n    components <- c(root, renv, prefix, ...)\n    paste(components, collapse = \"/\")\n  }\n  \n  renv_bootstrap_project_type <- function(path) {\n  \n    descpath <- file.path(path, \"DESCRIPTION\")\n    if (!file.exists(descpath))\n      return(\"unknown\")\n  \n    desc <- tryCatch(\n      read.dcf(descpath, all = TRUE),\n      error = identity\n    )\n  \n    if (inherits(desc, \"error\"))\n      return(\"unknown\")\n  \n    type <- desc$Type\n    if (!is.null(type))\n      return(tolower(type))\n  \n    package <- desc$Package\n    if (!is.null(package))\n      return(\"package\")\n  \n    \"unknown\"\n  \n  }\n  \n  renv_bootstrap_user_dir <- function() {\n    dir <- renv_bootstrap_user_dir_impl()\n    path.expand(chartr(\"\\\\\", \"/\", dir))\n  }\n  \n  renv_bootstrap_user_dir_impl <- function() {\n  \n    # use local override if set\n    override <- getOption(\"renv.userdir.override\")\n    if (!is.null(override))\n      return(override)\n  \n    # use R_user_dir if available\n    tools <- asNamespace(\"tools\")\n    if (is.function(tools$R_user_dir))\n      return(tools$R_user_dir(\"renv\", \"cache\"))\n  \n    # try using our own backfill for older versions of R\n    envvars <- c(\"R_USER_CACHE_DIR\", \"XDG_CACHE_HOME\")\n    for (envvar in envvars) {\n      root <- Sys.getenv(envvar, unset = NA)\n      if (!is.na(root))\n        return(file.path(root, \"R/renv\"))\n    }\n  \n    # use platform-specific default fallbacks\n    if (Sys.info()[[\"sysname\"]] == \"Windows\")\n      file.path(Sys.getenv(\"LOCALAPPDATA\"), \"R/cache/R/renv\")\n    else if (Sys.info()[[\"sysname\"]] == \"Darwin\")\n      \"~/Library/Caches/org.R-project.R/R/renv\"\n    else\n      \"~/.cache/R/renv\"\n  \n  }\n  \n  \n  renv_json_read <- function(file = NULL, text = NULL) {\n  \n    text <- paste(text %||% read(file), collapse = \"\\n\")\n  \n    # find strings in the JSON\n    pattern <- '[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]'\n    locs <- gregexpr(pattern, text)[[1]]\n  \n    # if any are found, replace them with placeholders\n    replaced <- text\n    strings <- character()\n    replacements <- character()\n  \n    if (!identical(c(locs), -1L)) {\n  \n      # get the string values\n      starts <- locs\n      ends <- locs + attr(locs, \"match.length\") - 1L\n      strings <- substring(text, starts, ends)\n  \n      # only keep those requiring escaping\n      strings <- grep(\"[[\\\\]{}:]\", strings, perl = TRUE, value = TRUE)\n  \n      # compute replacements\n      replacements <- sprintf('\"\\032%i\\032\"', seq_along(strings))\n  \n      # replace the strings\n      mapply(function(string, replacement) {\n        replaced <<- sub(string, replacement, replaced, fixed = TRUE)\n      }, strings, replacements)\n  \n    }\n  \n    # transform the JSON into something the R parser understands\n    transformed <- replaced\n    transformed <- gsub(\"[[{]\", \"list(\", transformed)\n    transformed <- gsub(\"[]}]\", \")\", transformed)\n    transformed <- gsub(\":\", \"=\", transformed, fixed = TRUE)\n    text <- paste(transformed, collapse = \"\\n\")\n  \n    # parse it\n    json <- parse(text = text, keep.source = FALSE, srcfile = NULL)[[1L]]\n  \n    # construct map between source strings, replaced strings\n    map <- as.character(parse(text = strings))\n    names(map) <- as.character(parse(text = replacements))\n  \n    # convert to list\n    map <- as.list(map)\n  \n    # remap strings in object\n    remapped <- renv_json_remap(json, map)\n  \n    # evaluate\n    eval(remapped, envir = baseenv())\n  \n  }\n  \n  renv_json_remap <- function(json, map) {\n  \n    # fix names\n    if (!is.null(names(json))) {\n      lhs <- match(names(json), names(map), nomatch = 0L)\n      rhs <- match(names(map), names(json), nomatch = 0L)\n      names(json)[rhs] <- map[lhs]\n    }\n  \n    # fix values\n    if (is.character(json))\n      return(map[[json]] %||% json)\n  \n    # handle true, false, null\n    if (is.name(json)) {\n      text <- as.character(json)\n      if (text == \"true\")\n        return(TRUE)\n      else if (text == \"false\")\n        return(FALSE)\n      else if (text == \"null\")\n        return(NULL)\n    }\n  \n    # recurse\n    if (is.recursive(json)) {\n      for (i in seq_along(json)) {\n        json[i] <- list(renv_json_remap(json[[i]], map))\n      }\n    }\n  \n    json\n  \n  }\n\n  # load the renv profile, if any\n  renv_bootstrap_profile_load(project)\n\n  # construct path to library root\n  root <- renv_bootstrap_library_root(project)\n\n  # construct library prefix for platform\n  prefix <- renv_bootstrap_platform_prefix()\n\n  # construct full libpath\n  libpath <- file.path(root, prefix)\n\n  # attempt to load\n  if (renv_bootstrap_load(project, libpath, version))\n    return(TRUE)\n\n  # load failed; inform user we're about to bootstrap\n  prefix <- paste(\"# Bootstrapping renv\", version)\n  postfix <- paste(rep.int(\"-\", 77L - nchar(prefix)), collapse = \"\")\n  header <- paste(prefix, postfix)\n  message(header)\n\n  # perform bootstrap\n  bootstrap(version, libpath)\n\n  # exit early if we're just testing bootstrap\n  if (!is.na(Sys.getenv(\"RENV_BOOTSTRAP_INSTALL_ONLY\", unset = NA)))\n    return(TRUE)\n\n  # try again to load\n  if (requireNamespace(\"renv\", lib.loc = libpath, quietly = TRUE)) {\n    message(\"* Successfully installed and loaded renv \", version, \".\")\n    return(renv::load())\n  }\n\n  # failed to download or load renv; warn the user\n  msg <- c(\n    \"Failed to find an renv installation: the project will not be loaded.\",\n    \"Use `renv::activate()` to re-initialize the project.\"\n  )\n\n  warning(paste(msg, collapse = \"\\n\"), call. = FALSE)\n\n})\n"
  },
  {
    "path": "renv/settings.dcf",
    "content": "bioconductor.version:\nexternal.libraries:\nignored.packages:\npackage.dependency.fields: Imports, Depends, LinkingTo\nr.version:\nsnapshot.type: implicit\nuse.cache: TRUE\nvcs.ignore.cellar: TRUE\nvcs.ignore.library: TRUE\nvcs.ignore.local: TRUE\n"
  }
]